:root {
  /* --------------------------------- colors --------------------------------- */
  --primary-color-black: #343434;
  --primary-color-grey: #565656;
  --primary-color-green: #65bc47;
  --primary-color-White: #ffffff;

  --Secondary--color-grey: #8d8d8d;
  --Secondary--color-light-grey: #f1f1f1;

  --tertiary-grey-light: #f8f8f8;
  --tertiary-black: #231f20;
  --tertiary-grey: #e8e6e6;

  /* ---------------------------------- sizes --------------------------------- */
  --rem-6: 0.375rem;
  --rem-8: 0.5rem;
  --rem-10: 0.625rem;
  --rem-12: 0.75rem;
  --rem-14: 0.875rem;
  --rem-base: 1rem;
  --rem-18: 1.125rem;
  --rem-20: 1.25rem;
  --rem-22: 1.375rem;
  --rem-24: 1.5rem;
  --rem-26: 1.625rem;
  --rem-28: 1.75rem;
  --rem-30: 1.875rem;
  --rem-32: 2rem;
  --rem-34: 2.125rem;
  --rem-36: 2.25rem;
  --rem-38: 2.375rem;
  --rem-40: 2.5rem;
  --rem-42: 2.625rem;
  --rem-44: 2.75rem;
  --rem-46: 2.875rem;
  --rem-48: 3rem;
  --rem-50: 3.125rem;
  --rem-52: 3.25rem;
  --rem-54: 3.375rem;
  --rem-56: 3.5rem;
  --rem-58: 3.625rem;
  --rem-60: 3.75rem;
  --rem-62: 3.875rem;
  --rem-64: 4rem;
  --rem-66: 4.125rem;
  --rem-68: 4.25rem;
  --rem-70: 4.375rem;
  --rem-72: 4.5rem;
  --rem-74: 4.625rem;
  --rem-76: 4.75rem;
  --rem-78: 4.875rem;
  --rem-80: 5rem;
  --rem-82: 5.125rem;
  --rem-84: 5.25rem;
  --rem-86: 5.375rem;
  --rem-88: 5.5rem;
  --rem-90: 5.625rem;
  --rem-92: 5.75rem;
  --rem-94: 5.875rem;
  --rem-96: 6rem;
  --rem-98: 6.125rem;
  --rem-100: 6.25rem;
  --rem-102: 6.375rem;
  --rem-104: 6.5rem;
  --rem-108: 6.75rem;
  --rem-110: 6.875rem;
  --rem-112: 7rem;
  --rem-114: 7.125rem;
  --rem-116: 7.25rem;
  --rem-118: 7.375rem;
  --rem-120: 7.5rem;
  --rem-122: 7.625rem;
  --rem-124: 7.75rem;

  /* ---------------------------------- fonts --------------------------------- */

  --Source-Sans-Pro: "Source Sans Pro";
  --Roboto: "Roboto";
}
address {
  font-style: normal;
}
/* -------------------------------------------------------------------------- */
/*                                   mobile                                   */
/* -------------------------------------------------------------------------- */

/* ---------------------------------- hero ---------------------------------- */
.hero {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background-color: var(--tertiary-grey-light);
  /* height: 31.063rem; */
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  background: url(../img/abstract_blue_geometric_shapes_background_mob.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  /* height: 31.063rem; */
  z-index: -1;
}

.hero_container {
  display: flex;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 3.875rem;
}
.hero_span {
  display: block;
  font-size: 1rem;
  line-height: var(--rem-30);
}
.hero_title {
  font-size: var(--rem-32);
  line-height: var(--rem-36);
  color: var(--primary-color-black);
}
.hero_descrip {
  font-size: var(--rem-14);
  line-height: var(--rem-20);
  margin-top: 1rem;
  color: var(--primary-color-black);
}
/* --------------------------------- listen --------------------------------- */

.listen {
  background-color: var(--tertiary-grey-light);
}
.listen_container {
  padding-top: var(--rem-20);
  padding-bottom: var(--rem-40);
}

.listen_span {
  display: block;
  font-size: 1rem;
  line-height: var(--rem-30);
}

.listen_title {
  font-size: var(--rem-30);
  line-height: var(--rem-36);
  max-width: 37.75rem;
}

.listen_des {
  font-size: var(--rem-14);
  line-height: var(--rem-20);
  margin-top: 1rem;
  max-width: 29.875rem;
}

.listen_cards_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: var(--rem-18);
}

.listen_card {
  position: relative;
  background-color: var(--primary-color-White);
  padding: var(--rem-52) var(--rem-20) var(--rem-24) var(--rem-20);
  border-radius: var(--rem-10);
  max-width: 24.5rem;
}
.listen_card::before {
  content: "";
  width: 0.313rem;
  height: var(--rem-40);
  background-color: var(--primary-color-green);
  position: absolute;
  top: var(--rem-10);
  left: 0;
  scale: 0;
  transition: scale 0.3s ease;
}
.listen_card:hover::before {
  scale: 1;
}

.listen_card_num span {
  font-size: var(--rem-22);
  line-height: var(--rem-60);
  position: absolute;
  top: 0;
  color: var(--tertiary-grey);
}
.listen_card_icon_wrap {
  position: absolute;
  top: var(--rem-24);
  right: var(--rem-20);
}
.listen_card_title {
  font-size: var(--rem-22);
  line-height: var(--rem-60);
  color: var(--primary-color-black);
}
.listen_card_des {
  font-size: var(--rem-14);
  line-height: var(--rem-20);
  color: var(--primary-color-grey);
}

/* -------------------------------- ourAgency ------------------------------- */
.ourAgency {
  background-color: var(--tertiary-grey-light);
}
.ourAgency_container {
  position: relative;

  padding-bottom: var(--rem-36);
}
.ourAgenc_left img {
  border-top-left-radius: var(--rem-10);
  border-top-right-radius: var(--rem-10);
}
.ourAgenc_right {
  margin-top: 1rem;
}
.ourAgenc_span {
  line-height: var(--rem-30);
  margin-top: var(--rem-22);
  display: block;
  text-transform: capitalize;
  color: var(--Secondary--color-grey);
}

.ourAgency_title {
  font-size: var(--rem-30);
  line-height: var(--rem-36);
  margin-top: var(--rem-6);
}
.ourAgency_des {
  line-height: var(--rem-20);
  margin-top: 1rem;
  font-size: var(--rem-14);
}

.green_dash {
  display: block;
  height: 0.125rem;
  width: var(--rem-36);
  background-color: var(--primary-color-green);
  margin-top: var(--rem-20);
}
/* ------------------------------- somthinCool ------------------------------ */

.somthinCool {
  position: relative;
  z-index: 1;
  background: url(../img/Lets_discuss_BGMobile.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 26.938rem;
}
.somthinCool_container {
  padding-top: var(--rem-20);
  padding-bottom: var(--rem-20);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.somthinCool_title {
  font-size: var(--rem-30);
  line-height: var(--rem-36);
  /* margin-top: var(--rem-100); */
  /* max-width: 50.813rem;
  margin-left: auto;
  margin-right: auto; */
}
.somthinCool_btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--rem-32);
}
.cs_shape_1,
.cs_shape_2,
.cs_shape_3,
.cs_shape_4 {
  position: absolute;
  width: var(--rem-12);
  height: var(--rem-12);
}
.cs_shape_1 {
  top: 15%;
  left: 20%;
  animation: rectRoteOne 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-animation: rectRoteOne 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs_shape_2 {
  right: 10%;
  top: 25%;
  animation: rectRoteTow 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-animation: rectRoteTow 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cs_shape_3 {
  right: 20%;
  bottom: 30%;
  animation: rectRoteThree 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-animation: rectRoteThree 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.cs_shape_4 {
  left: 13%;
  bottom: 20%;
  animation: rectRotefour 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-animation: rectRotefour 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* -------------------------------------------------------------------------- */
/*                                media queries                               */
/* -------------------------------------------------------------------------- */

/* ? -------------------------------------------------------------------------- */
/* ?                              media query 640px                             */
/* ? -------------------------------------------------------------------------- */
@media (min-width: 40em) {
}

/* ? -------------------------------------------------------------------------- */
/* ?                              media query 768px                             */
/* ? -------------------------------------------------------------------------- */
@media (min-width: 48em) {
  /* ---------------------------------- hero ---------------------------------- */
  /* .hero {
    height: 100vh;
  } */
  .hero::after {
    background: url(../img/Our_services_bg_Desktop.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 100vh; */
    height: 100%;
  }
  .hero_container {
    padding-top: 13.375rem;
    padding-bottom: 10.125rem;
  }
  .hero_span {
    font-size: var(--rem-18);
  }
  .hero_title {
    font-size: var(--rem-50);
    line-height: var(--rem-60);
  }
  .hero_descrip {
    font-size: 1rem;
    line-height: var(--rem-24);
  }
  /* --------------------------------- listen --------------------------------- */

  .listen_container {
    padding-bottom: var(--rem-40);
  }
  .listen_content {
    display: flex;
    gap: var(--rem-20);
  }
  .listen_cards_wrap {
    margin-top: 0;
    padding-top: var(--rem-52);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .listen_title {
    font-size: var(--rem-50);
    line-height: var(--rem-60);
  }
  .listen_des {
    font-size: 1rem;
    line-height: var(--rem-24);
  }
  /* -------------------------------- ourAgency ------------------------------- */

  .ourAgency_container {
    display: flex;
    gap: var(--rem-30);
    flex-direction: column;
    padding-bottom: var(--rem-60);
  }
  .ourAgenc_left {
    flex: 0.5;
  }
  .ourAgenc_right {
    flex: 0.5;
    margin-top: 0;
    align-self: center;
  }
  .ourAgenc_span {
    margin-top: 0;
  }
  .ourAgenc_span {
    font-size: var(--rem-18);
  }
  .ourAgency_title {
    font-size: var(--rem-50);
    line-height: var(--rem-60);
  }
  .ourAgency_des {
    margin-top: var(--rem-22);
    font-size: 1rem;
    line-height: var(--rem-24);
  }
  /* ------------------------------- somthinCool ------------------------------ */
  .somthinCool {
    background: url(../img/Lets_Discuss_BGDesktop.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .somthinCool_container {
    padding-top: var(--rem-76);
    padding-bottom: var(--rem-60);
  }
  .somthinCool_title {
    font-size: var(--rem-50);
    line-height: var(--rem-60);
  }
  .somthinCool_btn_wrap {
    margin-top: var(--rem-44);
  }
}

/* ? -------------------------------------------------------------------------- */
/* ?                             media query 1024px                             */
/* ? -------------------------------------------------------------------------- */
@media (min-width: 64em) {
  /* --------------------------------- listen --------------------------------- */
  .listen_container {
    padding-bottom: var(--rem-82);
  }
  .listen_cards_wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .listen_card::before {
    scale: 0;
  }
  .listen_card:hover::before {
    scale: 1;
  }
  .listen_content {
    justify-content: space-between;
  }
  /* -------------------------------- ourAgency ------------------------------- */
  .ourAgenc_right {
    align-self: center;
  }
}

/* ? -------------------------------------------------------------------------- */
/* ?                             media query 1280px                             */
/* ? -------------------------------------------------------------------------- */
@media (min-width: 80em) {
  /* ---------------------------------- hero ---------------------------------- */
  .hero_container {
    flex-direction: row;
  }
  .hero_left {
    flex: 0.6;
  }
  .hero_content {
    flex: 0.4;
  }
  .hero_descrip {
    margin-top: 2rem;
    max-width: 32.5rem;
    margin-left: auto;
  }
  /* --------------------------------- listen --------------------------------- */
  .listen_cards_wrap {
    row-gap: var(--rem-30);
    column-gap: var(--rem-50);
  }

  .listen_card {
    padding: var(--rem-44) var(--rem-30) var(--rem-26) var(--rem-30);
  }
  .listen_card_icon_wrap {
    right: var(--rem-30);
  }
  /* -------------------------------- ourAgency ------------------------------- */
  .ourAgency_container {
    gap: var(--rem-120);
    flex-direction: row;
  }
  .ourAgenc_left {
    flex: 0.5;
  }
  .ourAgenc_right {
    flex: 0.5;
    margin-top: 0;
    align-self: center;
  }
  .ourAgenc_left img {
    min-width: 37.75rem;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
  }

  /* ------------------------------- somthinCool ------------------------------ */
  .cs_shape_1,
  .cs_shape_3 {
    width: var(--rem-28);
    height: var(--rem-28);
  }
  .cs_shape_2,
  .cs_shape_4 {
    width: var(--rem-18);
    height: var(--rem-18);
  }
}

/* ? -------------------------------------------------------------------------- */
/* ?                             media query 1440px                             */
/* ? -------------------------------------------------------------------------- */
@media (min-width: 90em) {
  .ourAgenc_left {
    flex: 0.4;
  }
}

/* ? -------------------------------------------------------------------------- */
/* ?                             media query 1536px                             */
/* ? -------------------------------------------------------------------------- */
@media (min-width: 96em) {
}

/* -------------------------------- animation ------------------------------- */

@keyframes UpAndDown {
  0%,
  100% {
    top: 30%;
  }
  50% {
    top: 70%;
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@keyframes rectRoteOne {
  50% {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(25px) rotate(-53deg);
  }
}
@keyframes rectRoteTow {
  50% {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-25px) rotate(-53deg);
  }
}

@keyframes rectRoteThree {
  50% {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-25px) rotate(-53deg);
  }
}

@keyframes rectRotefour {
  50% {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(16px) rotate(53deg);
  }
}
