@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap");
:is(h1, h2, h3, h4, h5, h6, p) {
  margin: 0px;
  height: fit-content;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

img {
  user-select: none;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  background-color: white;
  font-family: "Assistant", sans-serif;
}

.row {
  padding: 0;
  margin: 0;
}

.heading span {
  font-size: 24px;
  line-height: 144.1%;
}

.heading h2 {
  font-size: 35px;
  line-height: 144.1%;
}

.ctm_btn {
  color: #3f3f3f;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 212.5% */
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  transition: all 1s;
  position: relative;
}

.ctm_btn::after {
  content: ">>>";
  color: #0378b5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-87%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}

.ctm_btn span {
  color: #0378b5;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 34px !important;
  transition: all 2s;
}

.ctm_btn:hover span {
  transform: translateX(-5px);
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}

.ctm_btn:hover::after {
  opacity: 1;
  visibility: visible;
}

.btn_filled {
  color: #3f3f3f;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 188.889% */

  width: 113px;
  height: 37px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fff;
  margin: auto;
  transition: all 1s;
}

.btn_filled:hover {
  background: #0378b5;
  color: #fff;
}

/* HEADER CSS */
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  margin-top: 0;
  background: transparent;
  padding-top: 47px;
  transition: all 0.3s ease;
}

header.sticky {
  /* animation: header 1s forwards ; */
  height: 110px;
  background-color: #00000087;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding-top: 20px;

  transition: all 0.3s ease;
}

/* @keyframes header {
  from {
    top: -50%;
  }

  to {
    top: 0%;
  }
} */

header .ctm_container {
  max-width: 1401px;
  margin: auto;
}

header .flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

header .flx .nav_flx,
header .flx nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 59px;
}

header .flx .language a:hover {
  color: #000;
}

header .flx .language a,
header .flx nav ul li a {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  transition: all 0.3s ease;
}

header .flx nav ul li a {
  padding-bottom: 7px;
}

header .flx nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

header .flx nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}

header .header-logo {
  max-width: 338.756px;
  height: 95px;
}

header .header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header.sticky .header-logo {
  max-width: 278.756px;
  height: 75px;
}

/* BANNER CSS */
.banner {
  width: 100%;
  height: 796px;
  margin-top: 0;
  transition: all 2s;
  position: relative;
  margin-top: -142px;
  overflow: hidden;
}

.banner .img-wrapper {
  width: 100%;
  height: 796px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background-attachment: unset;
  background-size: cover;
  transition: all 2s;
}

.banner:hover .img-wrapper {
  transform: scale(1.2);
}

/* .banner .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s;
} */
/* 
.banner:hover .img-wrapper img {
  transform: scale(1.1);
} */

.banner .logo-wrapper {
  position: relative;
  display: inline-block;
  width: 118px;
  height: 182px;
}

.banner .logo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* img1 stays relative */
.banner .img1 {
  position: relative;
  opacity: 0;
  width: 100% !important;
  object-fit: cover;
  animation: zoomGroup 4s ease-in-out infinite;
}

.banner .img2 {
  position: absolute;
  width: 100%;
  height: auto;
  left: 13%;
  top: -3px;
  max-width: 52.177px;
  height: 74.876px;
  transform: translate(-50%, -20px);
  opacity: 0;
  animation: zoomGroup 4s ease-in-out infinite;
}

.banner .img3 {
  position: absolute;
  width: 100%;
  height: auto;
  left: 13.8%;
  top: 53.3%;
  max-width: 49.297px;
  height: 42.336px;
  transform: translate(-50%, -20px);
  opacity: 0;
  animation: zoomGroup 4s ease-in-out infinite;
}

.banner .img4 {
  position: absolute;
  width: 100%;
  height: auto;
  left: 42%;
  top: 47%;
  max-width: 28.481px;
  height: 34.558px;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: zoomFly 4s ease-in-out infinite;
}

/* Fixed only this part 👇 */
@keyframes zoomGroup {
  0% {
    opacity: 0;
    transform: scale(0.9); 
  }
  15% {
    opacity: 1;
    transform: scale(1); 
  }
  85% {
    opacity: 1;
    transform: scale(1); 
  }
  100% {
    opacity: 0;
    transform: scale(0.9); /* same as start → smooth loop */
  }
}

@keyframes zoomFly {
  0% {
    opacity: 0;
    transform: translate(-240%, -220%) scale(0.8);
  }
  20% {
    opacity: 1;
    transform: translate(150%, 50%) scale(1); 
  }
  80% {
    opacity: 1;
    transform: translate(160%, 60%) scale(1); 
  }
  100% {
    opacity: 0;
    transform: translate(-70%, 5%) scale(0.8);
  }
}


.banner .text-wrapper {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 44.5%;
  transform: translate(-50%, -50%);
  gap: 50px;
}

.banner .text-wrapper h1 {
  color: #0f2c4c;
  text-align: right;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 127.1%; /* 63.55px */
  max-width: 410px;
}

/* NEW SECTION (example) */
.new-section {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 80px 0;
}

.shuki_law .ctm_container {
  max-width: 1151px;
  margin: auto;
}

.shuki_law .shuki_levy {
  max-width: 1041px;
}

.shuki_law .shuki_levy .text-wrapper span {
  color: #0378b5;
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 34.584px */
}

.shuki_law .shuki_levy .text-wrapper h2 {
  color: #3f3f3f;
  font-family: Assistant;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
  margin-bottom: 20px;
}

.shuki_law .shuki_levy .text-wrapper p,
.shuki_law .shuki_levy .text-wrapper strong {
  color: #3f3f3f;
  text-align: right;
  font-family: Assistant;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px; /* 188.889% */
}

.shuki_law .shuki_levy .text-wrapper p {
  font-weight: 400;
  margin-top: 20px;
}

.shuki_law .shuki_levy .text-wrapper {
  max-width: 470px;
}

.shuki_law .shuki_levy .img-wrapper {
  max-width: 409px;
  height: 409px;
  width: 100%;
  border-radius: 100%;
  background: linear-gradient(90deg, #0378b5 -0.65%, #014570 38.35%, #00132c 79.35%, #000012 99.35%);
}

.shuki_law .shuki_levy .img-wrapper img {
  max-width: 360.47px;
  height: 360.352px;
  width: 100%;
  border-radius: 100%;
  display: block;
  transform: translate(-3.9%, 13.6%);
}

.shuki_law .shuki_levy .img-wrapper img {
  animation: move1 2s ease-in-out infinite alternate;
}

@keyframes move1 {
  0% {
    transform: translate(-3.9%, 0);
  }
  100% {
    transform: translate(-3.9%, 13%);
  }
}

.shuki_law .shuki_levy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.shuki_law {
  padding: 67px 20px 127px 20px;
}

.shuki_law .shuki_levy.s_about_me {
  flex-direction: row-reverse;
  margin-top: 101px;
}

.shuki_law .shuki_levy.s_about_me .img-wrapper img {
  max-width: 360.47px;
  height: 360.352px;
  width: 100%;
  border-radius: 100%;
  display: block;
  transform: translate(0.1%, 13.6%);
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  object-fit: cover;
  object-position: 100% 0%;
}

.shuki_law .shuki_levy.s_about_me .img-wrapper img {
  animation: moveUpDown 2s ease-in-out infinite alternate;
}

@keyframes moveUpDown {
  0% {
    transform: translate(-12.1%, 1.2%);
  }
  100% {
    transform: translate(0.1%, 13.6%);
  }
}

.areas_of_expertise .bg_color {
  max-width: 1706px;
  min-height: 826px;
  margin: auto;
  position: relative;
  padding: 68px 20px 87px 20px;
}

.areas_of_expertise .bg_color::after {
  content: "";
  border-radius: 0 0 413px 413px;
  opacity: 0.58;
  background: #eff2f6;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.areas_of_expertise .ctm_container {
  max-width: 839px;
  margin: auto;
}

.areas_of_expertise .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.areas_of_expertise .heading h2 {
  color: #0378b5;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
  margin-bottom: 5px;
}

.areas_of_expertise .heading p {
  color: #3f3f3f;
  font-family: Assistant;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
}

.areas_of_expertise .expertise-wrapper {
  /* display: grid; */
  /* grid-template-columns: repeat(3, 1fr); */
  direction: ltr;
  gap: 16px;
  row-gap: 60px;
  margin-top: 102px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.areas_of_expertise .expertise-wrapper .area_card {
  position: relative; /* zaroori hai */
  display: flex;
  flex-direction: column;
  gap: 61px;
  align-items: center;
  max-width: 269px;
  width: 100%;

  overflow: hidden;

  transition: all 1s ease;
  padding: 20px 0;
}

.areas_of_expertise .expertise-wrapper .area_card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 61px;
  align-items: center;
  max-width: 269px;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  height: 260px; /* fixed height */
}

.areas_of_expertise .expertise-wrapper .area_card {
  position: relative;
  overflow: visible;
}

.areas_of_expertise .expertise-wrapper .area_card::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  width: 44px;
  height: 1px;
  border-top: 1px solid #87c4e3;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.areas_of_expertise .expertise-wrapper .area_card::after {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #87c4e3;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  z-index: -2;
  transition: transform 0.6s ease;
}

.areas_of_expertise .expertise-wrapper .area_card:hover::after {
  transform: translate(-50%, -50%) scale(1); /* grow from center */
}

.areas_of_expertise .expertise-wrapper .area_card * {
  position: relative;
  z-index: 1;
  min-height: 55px;
  margin-top: auto;
  display: flex;
  height: 100%;
  align-items: center;
}

.areas_of_expertise .expertise-wrapper .area_card.area1 img {
  max-width: 99px;
  height: 55px;
  width: 100%;
}

.areas_of_expertise .expertise-wrapper .area_card h6 {
  color: #0f2c4c;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
  min-height: 51.84px;
  height: 100%;
}

.areas_of_expertise .expertise-wrapper .area_card.area2 img {
  max-width: 81px;
  height: 71px;
  width: 100%;
}

.areas_of_expertise .expertise-wrapper .area_card.area3 img {
  max-width: 76.207px;
  height: 71.872px;
  width: 100%;
}

.areas_of_expertise .expertise-wrapper .area_card.area4 img {
  max-width: 70.511px;
  height: 83px;
  width: 100%;
}

.areas_of_expertise .expertise-wrapper .area_card.area5 img {
  max-width: 84px;
  height: 89.362px;
  width: 100%;
}

.areas_of_expertise .expertise-wrapper .area_card.area6 img {
  max-width: 86.204px;
  height: 83.205px;
  width: 100%;
}

.about {
  padding: 73px 20px 83px 0px;
  margin-top: 90px;
  margin-bottom: 83px;
}

.about .ctm_container {
  max-width: 1508px;
  margin: auto;
  margin-left: 0;
}

.about .flx .text-wrapper span {
  color: #0378b5;
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 34.584px */
}

.about .flx .text-wrapper h2 {
  color: #3f3f3f;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
  margin-bottom: 11px;
}

.about .flx .text-wrapper p {
  color: #3f3f3f;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 37px; /* 205.556% */
}

.about .flx .text-wrapper {
  max-width: 437px;
  position: relative;
}

.about .flx .text-wrapper::after {
  content: "";
  width: 1480px;
  height: 663px;
  right: -399px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  background: #f6f8fa;
  z-index: -1;
}

.about .img-wrapper {
  max-width: 958px;
  height: 487px;
  width: 100%;
}

.about .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 243.5px;
  border-bottom-right-radius: 243.5px;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
}

.about .flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.testimonial {
  border-radius: 368.5px;
  background: #0f2c4c;
  padding: 52px 20px 45px 20px;
  overflow-x: hidden;
  margin-bottom: 75px;
}

.testimonial .heading span {
  color: #0378b5;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 34.584px */
}

.testimonial .heading h2 {
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
}

.testimonial .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.testimonial .text-wrapper p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 194.444% */
  max-width: 994px;
  margin: auto;
}

.testimonial .s_flx {
  display: flex;
  justify-items: center;
}

.testimonial .main_wrapper strong {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 144.1%;
  margin-top: 120px;
}

.testimonial .main_wrapper {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1028px;
  position: relative;
}

.testimonial .main_wrapper .img {
  position: absolute;
  top: -60px;
  right: -30px;
  width: 68px;
  height: 50px;
}

.testimonial .main_wrapper .img2 {
  right: auto;
  left: 0;
  bottom: 60px;
  top: auto;
}

.articles .slick-prev,
.articles .slick-next,
.testimonial .slick-prev,
.testimonial .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 10;
}

.testimonial .slick-prev::before {
  content: "";
  background-image: url("../images/s-arrow.png");
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
}

.testimonial .slick-next::before {
  content: "";
  background-image: url("../images/s-arrow.png");
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(-1);
}

.testimonial .slick-prev {
  left: 160px;
  right: auto;
  top: 25%;
}

.testimonial .slick-next {
  right: 160px;
  left: auto;
  top: 21%;
}

.testimonial .slick-list {
  overflow: unset;
}

.articles {
  padding: 97px 0 59px 0;
}

.articles .heading span {
  color: #0378b5;
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 34.584px */
}

.articles .heading h2 {
  color: #3f3f3f;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
}

.articles .heading {
  max-width: 1340px;
  margin: auto;
  margin-bottom: 37px;
}

.articles .testimoial_1 .img-wrapper {
  max-width: 1114px;
  height: 476px;
}

.articles .testimoial_1 .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* mix-blend-mode: luminosity; */
  filter: grayscale(1);
}

.articles .testimoial_1 .text-wrapper {
  max-width: 824px;
  height: 328px;
  border-radius: 164px;
  background: #fff;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  position: absolute;
  width: 100%;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
}

.articles .testimoial_1 .text-wrapper h6 {
  color: #014570;
  text-align: right;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 144.1%;
  margin-bottom: 20px;
}

.articles .testimoial_1 .text-wrapper p {
  color: #3f3f3f;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 188.889% */
  margin-bottom: 20px;
}

.articles .testimoial_1 .text-wrapper .flx {
  max-width: 591px;
  margin: auto;
}

.articles .testimoial_1 {
  display: flex;
  align-items: center;
  position: relative;
}

.articles .slick-prev::before {
  content: "";
  background-image: url("../images/t_arrowss.png");
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  transform: scale(-1);
}

.articles .slick-next::before {
  content: "";
  background-image: url("../images/s-arrow.png");
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
}

.articles .slick-prev {
  left: 292px;
  right: auto;
  top: 50%;
  z-index: 999;
  display: none !important;
}

.articles .slick-next {
  right: auto;
  left: 292px;
  right: auto;
  top: 50%;
  z-index: 999;
  display: block !important;
}

.articles .slider .slick-track {
  direction: ltr !important;
}

.articles .slider .slick-slide {
  direction: rtl !important;
}

.lets_work {
  background-image: url("../images/lets_work.jpg");
  height: 375px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  transition: all 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

/* .lets_work:hover {
  background-position: 100% 15%;
} */

.lets_work .text-wrapper h2 {
  color: #fff;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 144.1%; /* 72.05px */
}

.lets_work .text-wrapper p {
  color: #fff;
  font-size: 29px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
  margin-bottom: 40px;
}

.lets_work .btn_filled {
  color: #3f3f3f;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 188.889% */

  width: 113px;
  height: 37px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fff;
  margin: auto;
  transition: all 1s;
}

.lets_work .btn_filled:hover {
  background: #0378b5;
  /* color: #fff; */
}

footer {
  padding: 85px 0 20px 0;
}

footer .ctm_container {
  max-width: 1274px;
  margin: auto;
  padding: 0 20px;
}

footer .flx {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

footer a {
  color: #0f2c4c;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
}

footer strong {
  color: #aa9369;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 22px;
}

.a_about_after {
  position: relative;
}

.a_about_after::after {
  content: "";
  background-image: url("../images/a_ab_after.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 46%;
  transform: translateY(-50%);
  display: block;
  height: 1197.869px;
  width: 348px;
}

.lets_work {
  position: relative;
}

.lets_work::after {
  content: "";
  width: 302.787px;
  height: 468px;
  position: absolute;
  right: 200px;
  top: 80px;
  background-image: url("../images/lets_work_after.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}

footer .flx .social_icon {
  display: flex;
  gap: 20px;
  align-items: center;
  direction: ltr;
}

footer .copy-right {
  background: #aa9369;
  height: 43px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

footer .c_text {
  max-width: 1404px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

footer .copy-right a {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.033px; /* 113.555% */
}

.banner.about_banner {
  height: auto;
  position: relative;
  top: 0;
  z-index: 0;
  margin-top: -142px;
}

.banner.about_banner::after {
  content: "";
  opacity: 0.88;
  background: linear-gradient(181deg, #14396e 11.3%, rgba(102, 102, 102, 0) 98.91%);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.banner.about_banner::before {
  content: "";
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner.about_banner .img-wrapper {
  height: 432px;
  position: unset;
  background-attachment: fixed;
  background-position: 100% center;
}

/* .banner.about_banner .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2s;
  object-position: 100% 0;
}

.banner.about_banner:hover .img-wrapper img {
  object-position: 100% 28.8%;
  transform: scale(1);
} */

.banner.about_banner .text-wrapper {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.banner.about_banner .text-wrapper h1 {
  color: #fff;
  text-align: center;
  /* font-size: 50px; */
  font-style: normal;
  font-weight: 400;
  /* line-height: 127.1%; 63.55px */
  max-width: 565px;
}

.Representing {
  padding: 51px 20px 75px 20px;
  transition: all 2s;
}

.Representing .text-wrapper {
  max-width: 567px;
}

.Representing .text-wrapper .heading,
.Representing .text-wrapper h6,
.Representing .text-wrapper p {
  margin-bottom: 20px;
}

.Representing .text-wrapper .heading span {
  color: #0378b5;
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 34.584px */
}

.Representing .text-wrapper .heading h6 {
  color: #3f3f3f;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
}

.Representing .text-wrapper strong {
  color: #3f3f3f;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px; /* 188.889% */
}

.Representing .text-wrapper p {
  color: #3f3f3f;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}

.Representing .text-wrapper:first-child p {
  margin-top: 20px;
}

.Representing .img-wrapper {
  width: 372.596px;
  height: 368.541px;
  border-radius: 100%;
  background: linear-gradient(90deg, #0378b5 -0.65%, #014570 38.35%, #00132c 79.35%, #000012 99.35%);
  transition: all 4s;
}

.Representing .img-wrapper img {
  max-width: 328.385px;
  height: 328.006px;
  border-radius: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 4s;
}

.Representing .flx .main-wrapper,
.Representing .flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.Representing .ctm_container {
  max-width: 1525px;
  margin: auto;
}

.Representing .img-wrapper.img1 img {
  transform: translate(-8px, 42px);
}

.Representing .img-wrapper.img2 img {
  transform: translate(-11px, -1px);
}

.Representing .img-wrapper.img1 {
  transform: translate(0px, 90px);
}

.Representing .img-wrapper.img2 {
  transform: translate(0px, -107px);
}

.Representing:hover .img-wrapper.img1 img {
  transform: translate(-22px, -18px);
}

.Representing:hover .img-wrapper.img2 img {
  transform: translate(-42px, 43px);
}

.Representing:hover .img-wrapper.img1 {
  transform: translate(15px, -100px);
}

.uniques .flx .img-wrapper {
  max-width: 905px;
  height: 487px;
  width: 100%;
}

.uniques .flx .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 243.5px;
  border-bottom-right-radius: 243.5px;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  transform: scaleX(-1);
}

.uniques .text-wrapper .heading {
  margin-bottom: 30px;
}

.uniques .text-wrapper .heading span {
  color: #0378b5;
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 34.584px */
}

.uniques .text-wrapper .heading h2 {
  color: #3f3f3f;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
}

.uniques .text-wrapper ul li {
  color: #3f3f3f;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 53px;
  letter-spacing: 0.4px;
}

.uniques .flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.uniques .ctm_container {
  max-width: 1589px;
  margin: auto;
  margin-right: 0;
}

.uniques {
  padding: 78px 20px 57px 20px;
  position: relative;
  padding-right: 0;
}

.uniques::after {
  content: "";
  background: url("../images/about_after.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 540.792px;
  height: 835.869px;
  position: absolute;
  left: 0;
  top: 58%;
  display: block;
  transform: translateY(-50%);
}

.the_office .ctm_container {
  max-width: 1286px;
  margin: auto;
}

.the_office .heading {
  margin-bottom: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.the_office .heading span {
  color: #0378b5;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 34.584px */
}

.the_office .heading h2 {
  color: #3f3f3f;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
}

.the_office .office_card {
  position: relative;
  height: 222px;
  width: 222px;
  border-radius: 50%;
}

.the_office .office_card .text {
  background: #abdbf5;
  filter: drop-shadow(3px 4px 22px rgba(0, 0, 0, 0.17));
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.the_office .office_card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #009bec;
  filter: drop-shadow(3px 0px 12px rgba(0, 0, 0, 0.17));
  position: absolute;
  right: -15px;
  top: 0;
  display: block;
  z-index: -2;
  border-radius: 50%;
  transition: all 1s ease-in-out;
}

.the_office .office_card::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #0378b5;
  filter: drop-shadow(3px 0px 12px rgba(0, 0, 0, 0.17));
  position: absolute;
  left: -15px;
  top: 0;
  display: block;
  z-index: -2;
  border-radius: 50%;
  transition: all 1s ease-in-out;
}

.the_office .office_card:hover::before {
  top: 15px;
  left: 15px;
}

.the_office .office_card:hover::after {
  top: -15px;
  right: 10px;
}

.the_office .office_card .text h6 {
  color: #3f3f3f;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  max-width: 165px;
}

.the_office .flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.the_office {
  padding: 57px 20px 92px 20px;
}

.choose_me {
  overflow: hidden;
}

.choose_me .ctm_container {
  max-width: 1286px;
  margin: auto;
}

.choose_me .flx {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.choose_me .flx .text-wrapper .heading span {
  color: #0378b5;
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 34.584px */
}

.choose_me .flx .text-wrapper .heading h2 {
  color: #3f3f3f;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
}

.choose_me .flx .text-wrapper .heading {
  margin-bottom: 12px;
}

.choose_me .flx .text-wrapper p {
  color: #3f3f3f;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 37px; /* 205.556% */
  margin-bottom: 35px;
}

.choose_me .flx .text-wrapper {
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  padding: 109px 0 21px 0;
  right: 14px;
}

.choose_me .flx .text-wrapper .text {
  max-width: 645px;
  margin: auto;
}

.choose_me .flx .text-wrapper .text {
  margin: auto;
}

.choose_me .flx .text-wrapper::after {
  content: "";
  background: #f6f8fa;
  width: 1550px;
  height: 100%;
  position: absolute;
  left: -48.7%;
  top: 0;
  display: block;
  z-index: -1;
}

.choose_me .flx .choose_wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.choose_me .flx .choose_wrapper::after {
  content: "";
  width: 840px;
  height: 480px;
  border-top-left-radius: 240px;
  border-bottom-left-radius: 240px;
  background: #fff;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  position: absolute;
  right: -50%;
  top: 50%;
  z-index: 1;
  transform: translate(20%, -50%);
}

.choose_me .flx .img-wrapper {
  width: 418.195px;
  height: 414px;
  border-radius: 100%;
  background: var(--Style, linear-gradient(90deg, #0378b5 -0.65%, #014570 38.35%, #00132c 79.35%, #000012 99.35%));
  position: relative;
  z-index: 2;
}

.choose_me .flx .img-wrapper img {
  width: 373.859px;
  height: 380.305px;
  aspect-ratio: 373.86/380.3;
  border-radius: 100%;
  object-fit: cover;
  object-position: 100% 0%;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);

  transform: translate(6px, 37px);

  animation: moveImg 3s ease-in-out infinite alternate;
}

@keyframes moveImg {
  0% {
    transform: translate(6px, 37px);
  }
  100% {
    transform: translate(-46px, 2px);
  }
}

.banner.about_banner.about_shuki_banner .img-wrapper img {
  object-position: 100% 70%;
}

.banner.about_banner.about_shuki_banner:hover .img-wrapper img {
  object-position: 100% 24.2%;
}

.about_me_shuki .ctm_container {
  max-width: 1273px;
  margin: auto;
}

.about_me_shuki .flx .text-wrapper .heading span {
  color: #0378b5;
  text-align: right;
  font-style: normal;
  font-weight: 400;
}

.about_me_shuki .flx .text-wrapper .heading h2 {
  color: #3f3f3f;
  font-style: normal;
  font-weight: 400;
}

.about_me_shuki .flx .text-wrapper p {
  color: #3f3f3f;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px; /* 211.111% */
  margin-bottom: 20px;
}

.about_me_shuki .flx .text-wrapper {
  max-width: 619px;
  padding-top: 10px;
}

.about_me_shuki .flx .text-wrapper .heading {
  margin-bottom: 15px;
}

.about_me_shuki .flx .img-wrapper {
  max-width: 464px;
  height: 995px;
}

.about_me_shuki .flx .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 464/995;
}

.about_me_shuki .flx {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about_me_shuki {
  padding: 63px 20px 0 20px;
  position: relative;
  overflow-x: clip;
}

.about_me_shuki::after {
  content: "";
  background-image: url("../images/about_after.png");
  width: 540.793px;
  height: 835.869px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -15px;
  bottom: -182px;
  display: block;
  z-index: 22;
}

.operate_in .ctm_container {
  max-width: 1328px;
  margin: auto;
}

.operate_in .flx {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.operate_in .text-wrapper {
  max-width: 621px;
}

.operate_in .text-wrapper p {
  color: #3f3f3f;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px; /* 211.111% */
  margin-bottom: 30px;
}

.operate_in .img-wrapper {
  width: 409px;
  height: 404.885px;
  border-radius: 100%;
  background: linear-gradient(90deg, #0378b5 -0.65%, #014570 38.35%, #00132c 79.35%, #000012 99.35%);
}

.operate_in .img-wrapper img {
  width: 360.47px;
  height: 360.352px;
  object-fit: cover;
  border-radius: 100%;
  transform: translate(-13px, 45px);
  transition: all 2s;
}

.operate_in {
  background: #f6f8fa;
  padding: 100px 20px 70px 20px;
}

.operate_in:hover .img-wrapper img {
  transform: translate(-54px, -15px);
}

.why_us .ctm_container {
  max-width: 1303px;
  margin: auto;
}

.why_us .heading span {
  color: #0378b5;
  text-align: right;
  font-style: normal;
  font-weight: 400;
}

.why_us .heading h2 {
  color: #3f3f3f;
  font-style: normal;
  font-weight: 400;
}

.why_us .text-wrapper {
  max-width: 964px;
  width: 100%;
}

.why_us .text-wrapper ul li {
  color: #3f3f3f;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 58px; /* 290% */
  border-bottom: 1px solid #fff;
}

.why_us {
  background: #e4eef7;
  padding: 31px 20px 61px 20px;
}

.why_us .flx {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.why_us .text-wrapper ul li:last-child {
  border-bottom: unset;
}

.why_us .social_bar {
  /* border-radius: 32px; */
  background: #fff;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  width: 1628px;
  height: 64px;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-left: 23px;
  margin-top: 32px;
  margin-right: -19px;
}

.why_us .social_bar .ctm_btn {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  border-radius: 50px;
  background: #0378b5;
  width: 113px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-right: 30px;
}

.why_us .social_bar a {
  color: #0f2c4c;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
}

.why_us .social_bar a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.why_us .social_bar .social_icon {
  display: flex;
  gap: 20px;
  align-items: center;
}

.why_us .social_bar .s_flx {
  display: flex;
  justify-content: end;
  gap: 32px;
}

.appartment_owner .ctm_container {
  max-width: 1184px;
  margin: auto;
}

.a_card .flx {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.a_card .text-wrapper .heading span {
  color: #0378b5;
  text-align: right;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 24.497px */
}

.a_card .text-wrapper .heading h2 {
  color: #3f3f3f;
  text-align: right;
  font-style: normal;
  font-weight: 400;
  max-width: 350px;
}

.a_card .text-wrapper p {
  color: #3f3f3f;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 188.889% */
}

.a_card .text-wrapper {
  max-width: 393px;
}

.a_card .img-wrapper {
  max-width: 700px;
  height: 338px;
  width: 100%;
  border-radius: 243.5px;
  overflow: hidden;
  position: relative;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
}

.a_card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17); */
  transition: transform 1s ease;
  transition: all 1s ease;
}

.a_card .img-wrapper img:hover {
  transform: scale(1.3);
  transition: all 1s ease;
}

.appartment_owner {
  padding: 75px 20px 55px 20px;
}

.appartment_owner.bg {
  background: #f6f8fa;
  padding: 77px 20px 52px 20px;
  position: relative;
}

.appartment_owner.bg::after {
  content: "";
  background: url("../images/a_ab_after.png");
  width: 540.793px;
  height: 835.869px;
  position: absolute;
  right: -305px;
  top: 85px;
  transform: unset;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.appartment_owner.bg.ap2::after {
  display: none;
}

.appartment_owner.bg .main_flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.appartment_owner .main_flx .a_card .flx {
  flex-direction: column-reverse;
  gap: 37px;
}

.appartment_owner .main_flx .a_card .flx .img-wrapper {
  width: 514px;
  height: 248px;
}

.appartment_owner .main_flx .a_card .flx .text-wrapper {
  padding-right: 0;
  margin-left: 12px;
}

.appartment_owner .main_flx .a_card .flx .text-wrapper {
  max-width: 425px;
}

.a_card .flx .ctm_btn {
  margin: auto;
  margin-left: 0;
  margin-top: 10px;
}

.appartment_owner.bg.ap2 {
  background: #fff;
  padding: 58px 20px 41px 20px;
}

.banner.about_banner.articles_in_banner .img-wrapper img {
  object-position: 100% 34%;
  transform: scaleX(-1);
}

.banner.about_banner.articles_in_banner:hover .img-wrapper img {
  object-position: 100% 45%;
}

.urban_renewal .ctm_container {
  max-width: 753px;
  margin: auto;
}

.urban_renewal .text-wrapper .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.urban_renewal .text-wrapper .heading span {
  color: #0378b5;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 24.497px */
}

.urban_renewal .text-wrapper .heading h1 {
  color: #3f3f3f;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
  margin-bottom: 20px;
}

.urban_renewal .text-wrapper p {
  color: #3f3f3f;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px; /* 188.889% */
  margin-top: 7px;
}

.urban_renewal .text-wrapper {
  border-bottom: 1px solid #0378b5;
  padding-bottom: 30px;
}

.urban_renewal .share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 47px;
}

.urban_renewal .share img {
  height: 15.974px;
  object-fit: cover;
}

.urban_renewal {
  padding: 37px 20px 68px 20px;
  position: relative;
}

.urban_renewal::after {
  content: "";
  background: url("../images/a_ab_after.png");
  width: 318px;
  height: 835.869px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -4.5%;
  top: 170px;
  display: block;
}

.more_articles .appartment_owner .ctm_container {
  max-width: 1137px;
  margin: auto;
}

.more_articles .a_card .img-wrapper {
  box-shadow: unset;
}

.more_articles .a_card .img-wrapper img {
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  transform: unset;
}

.more_articles {
  padding: 56px 0px 82px 0px;
}

.more_articles .heading {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  margin-bottom: 88px;
}

.more_articles .heading span {
  color: #0378b5;
  font-size: 24px !important;
  text-align: center;
  font-style: normal;
  font-weight: 400;
}

.more_articles .heading h2 {
  color: #3f3f3f;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.Evacuation {
  padding: 64px 20px 104px 0;
  overflow: hidden;
}

.Evacuation .ctm_container {
  max-width: 1239px;
  margin: auto;
}

.Evacuation .text-wrapper .heading span {
  color: #0378b5;
  text-align: right;
  font-style: normal;
  font-weight: 400;
}

.Evacuation .text-wrapper .heading h2 {
  color: #000;
  font-style: normal;
  font-weight: 400;
}

.Evacuation .text-wrapper p {
  color: #3f3f3f;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px; /* 188.889% */
  margin-top: 20px;
}

.Evacuation .text-wrapper {
  max-width: 567px;
}

.Evacuation .flx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.Evacuation .img-wrapper {
  width: 486px;
  height: 481px;
  border-radius: 100%;
  background: linear-gradient(90deg, #0378b5 -0.65%, #014570 38.35%, #00132c 79.35%, #000012 99.35%);
  position: relative;
}

.Evacuation .img-wrapper::after {
  content: "";
  background: #f6f8fa;
  width: 682px;
  height: 483px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  z-index: -1;
  margin-left: -413px;
}

.Evacuation .img-wrapper img {
  width: 446px;
  height: 432px;
  border-radius: 100%;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  transform: translate(-4px, 30px);
  animation: moveing 4s ease-in-out infinite;
  object-fit: cover;
}

@keyframes moveing {
  0% {
    transform: translate(-4px, 30px);
  }
  50% {
    transform: translate(-40px, 30px);
  }
  100% {
    transform: translate(-4px, 30px);
  }
}

.projects-section .appartment_owner.project.bg-apprt {
  background: #f6f8fa;
}

.projects-section .appartment_owner.project {
  padding: 89px 20px 84px 20px;
}

.projects-section .appartment_owner.project .text-wrapper h1,
.projects-section .appartment_owner.project .text-wrapper h2 {
  color: #0378b5;
  text-align: right;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%; /* 50.435px */
  margin-bottom: 27px;
}

.projects-section .appartment_owner.project .text-wrapper p {
  color: #000;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 177.778% */
}

.projects-section .appartment_owner.project .text-wrapper {
  max-width: 505px;
}

.projects-section .ctm_container {
  max-width: 1416px;
  margin: auto;
}

.projects-section .project .flx {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.projects-section .a_card .img-wrapper img {
  transform: scaleX(1);
  transition: all;
}

.projects-section .project.apprt_1 .flx {
  flex-direction: row-reverse;
}

.projects-section .a_card .img-wrapper img:hover {
  transform: scale(1.1);
}

.banner.contact_banner .img-wrapper {
  height: 988px;
}

/* .banner.contact_banner .img-wrapper img {
  transition: all 2.2s;
}

.banner.contact_banner:hover .img-wrapper img {
  transform: unset;
  object-position: 38% 100%;
  transform: matrix(1, 0, 0, 1, 0, 73);
} */

.banner.contact_banner .img-wrapper img {
  object-position: 0 100%;
}

.contact-us .ctm_container {
  max-width: 1100px;
  margin: auto;
}

.contact-us .heading span {
  color: #0378b5;
  text-align: right;
  font-style: normal;
  font-weight: 400;
}

.contact-us .heading h1 {
  color: #000;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
}

.contact-us .text-wrapper .form-wrapper label,
.contact-us .text-wrapper .form-wrapper input {
  color: #000;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.1%;
  padding-right: 16px;
  padding-bottom: 10px;
}

.contact-us .text-wrapper .form-wrapper input,
.contact-us .text-wrapper .form-wrapper textarea {
  width: 407px;
  height: 43px;
  border-radius: 32px;
  border: 1px solid #dcdcdc;
  background: #fff;
  resize: unset;
  padding-right: 20px;
}

.contact-us .form_flx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  row-gap: 11px;
  margin-bottom: 11px;
}

.contact-us .text-wrapper .form_btn {
  width: 113px;
  height: 37px;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  background: #aa9369;
  border: unset;
  margin: auto;
  margin-left: 0;
  margin-top: 29px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: all 1s;
}

.contact-us .text-wrapper .form_btn:hover {
  background: #0378b5;
}

.contact-us .text-wrapper {
  max-width: 828px;
  width: 100%;
}

.contact-us .text-wrapper form {
  border-bottom: 1px solid #0378b5;
}

.contact-us .text-wrapper .s_links a {
  color: #0f2c4c;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-us .text-wrapper .s_links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.contact-us .text-wrapper .social_links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: end;
  padding-top: 38px;
}

.contact-us .text-wrapper .social_icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-us .heading {
  margin-bottom: 25px;
}

.contact-us .c_links span {
  color: #aa9369;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
  margin-bottom: 22px;
}

.contact-us .c_links p,
.contact-us .c_links a,
.contact-us .c_links a span {
  color: #0f2c4c;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 125% */
}

.contact-us .c_links .l_flx {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-us .c_links p {
  margin: 20px 0;
}

.contact-us .flx {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.contact-us {
  content: "";
  border-top-left-radius: 243.5px;
  border-bottom-left-radius: 243.5px;
  background: #fff;
  width: 1471px;
  height: 554px;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  position: absolute;
  right: 0;
  top: 55.2%;
  display: block;
  z-index: 1;
  transform: translateY(-50%);
  padding: 27.6px 150px 24px 20px;
}

.lets_work.contact_page_work {
  background: unset;
  height: auto;
}

.lets_work.contact_page_work::after {
  right: 200px;
  top: -269px;
}

.ai_button {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  left: 0;
  top: 650px;
}

.ai_button img {
  width: 54.07px;
  height: 42.3px;
}

header .flx .nav_flx {
  position: relative;
}

header .mega-menu {
  width: 1036px;
  height: 203px;
  border: 1px solid #0378b5;
  opacity: 0.88;
  background: rgb(239 242 246 / 88%);
  padding: 38px 93px 32px 67px;
  box-shadow: 3px 4px 22px 0 rgba(0, 0, 0, 0.17);
  position: absolute;
  right: -93px;
  top: 41px;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

header .mega-menu ul li a {
  color: #0f2c4c !important;
  text-align: right !important;
  font-size: 16px !important;
  font-style: normal !important ;
  font-weight: 400 !important;
  line-height: 144.1% !important; /* 23.056px */
  display: flex;
  flex-direction: row-reverse;
  gap: 11px;
  align-items: center;
  justify-content: flex-end;
}

header .mega-menu ul {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0px !important;
}

header .mega-menu ul li a img {
  width: auto;
  height: 51px;
  /* filter: brightness(1) contrast(3); */
  object-fit: cover;
}

header .mega-menu ul li a:hover::after {
  display: none;
}

header ul li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

header ul li {
  transition: all 1s;
}

header .mega-menu ul li {
  transition: all 1s;
  padding: 5px 5px;
  position: relative;
  height: 81px;
}

header .mega-menu ul li::after {
  content: "";
  background: #b7e3f9;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  opacity: 0;
  transform: translate(-30%, -65%);
  visibility: hidden;
  z-index: 0;
}

header .mega-menu ul li:hover::after {
  opacity: 1;
  visibility: visible;
  width: 286px;
}

header .mega-menu ul li a {
  position: relative;
  z-index: 99;
}

.more_articles .appartment_owner {
  padding: 0;
}

.choose_me .ctm_btn {
  margin-left: 30px;
}

.Evacuation h1 {
  margin-top: 15px;
}

.single-post header .flx nav #menu-item-id-41 a::after,
header .flx nav ul li.current-menu-parent a::after,
header .flx nav ul li.current_page_item a::after {
  transform: scaleX(1);
  transform-origin: right;
}

.shuki_law .shuki_levy .text-wrapper a.ctm_btn {
  margin-top: 50px;
}

.why_us .social_bar .ctm_btn::after {
  display: none;
}

.appartment_owner .a_card .flx {
  align-items: end;
}

.urban_renewal .share h6 {
  color: #3f3f3f;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.more_articles .a_card .text-wrapper p {
  font-weight: 600;
}

header .mega-menu ul li {
  height: 81px;
}

.contact-us .heading h1 br {
  display: none;
}

.contact-us .heading h1 {
  max-width: 270px;
}

.projects-section .a_card .img-wrapper img,
.projects-section .a_card .img-wrapper {
  transition: all 1s;
}

.projects-section .a_card .img-wrapper:hover img {
  transform: scaleX(1) scale(1.3);
}

.projects-section a {
  pointer-events: all !important;
}

header .mega-menu ul li a img {
  object-fit: contain;
  width: 41.203px;
  height: 38.858px;
}

header .mega-menu ul li:nth-child(2) a img {
  width: 53.524px;
  height: 29.736px;
}

header .mega-menu ul li:nth-child(3) a img {
  width: 45.414px;
  height: 48.314px;
}

header .mega-menu ul li:nth-child(4) a img {
  width: 43.793px;
  height: 38.387px;
}

header .mega-menu ul li:nth-child(5) a img {
  width: 38.122px;
  height: 44.875px;
}

.postid-181 .more_articles .heading {
  align-items: center;
}

.more_articles .appartment_owner .heading {
  align-items: start;
  margin-bottom: 20px;
}

.more_articles .appartment_owner .a_card .flx {
  align-items: center;
}

.safari .wpcf7-not-valid-tip {
  position: unset;
}

.safari .contact-us .text-wrapper .form_btn {
  width: 100px;
  height: 35px;
  font-size: 17px;
  line-height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .mega-menu ul li a::after {
  display: none !important;
}
.allcards .a_card .text-wrapper .heading h2 {
  min-height: 200px;
}
