/* External fonts */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-Lgt.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-Mdm.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-LgtItl.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-MdmItl.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-ItalicMT.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-ItalicMT_1.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/ArialMT.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldMT_1.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldMT_2.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldItalicMT.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Arial";
  src: url("../fonts/Arial-BoldItalicMT_1.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

/* ---------------- Basic css ------------------ */
:root {
  scroll-behavior: unset;
  --white: #ffffff;
  --black: #000000;
  --body: #555555;
  --accent-color: #333333;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);
  --gray_img: brightness(0) saturate(100%) invert(86%) sepia(10%) saturate(189%)
    hue-rotate(167deg) brightness(90%) contrast(100%);

  --primaryfont: "Inter Tight", sans-serif;
  --secondaryfont: "Arial", sans-serif;
  --thirdfont: "Roboto", sans-serif;
  --figtree: "Figtree", sans-serif;

  --menuHeight: 8.7rem;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
}

.f-right {
  float: right;
}
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--body);
  overflow-x: hidden;
  font-family: var(--primaryfont);
  background: var(--white);
}

.container {
  padding-left: 0;
  padding-right: 0;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: var(--menuHeight);
}

.mt_0 {
  margin-top: 0 !important;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: var(--primaryfont);
  color: var(--accent-color);
  letter-spacing: -0.03em;
  font-family: var(--secondaryfont);
  text-transform: capitalize;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}
.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* titles */
.title_56 {
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 120%;
}

.title_40 {
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
}

.title_24 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.112rem;
}

/* spacing0 */
.spacing0 {
  letter-spacing: 0;
}

/* texts */
.text_xl {
  font-size: 2rem;
}
.text_lg {
  font-size: 1.8rem;
}
.text_md {
  font-size: 1.6rem;
}
.text_sm {
  font-size: 1.4rem;
}
.text_xsm {
  font-size: 1.2rem;
}

/* ========================= #Progress ======================= */
.progress-wrap {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  height: 4.5rem;
  width: 4.5rem;
  cursor: pointer;
  display: block;
  border-radius: 5rem;
  box-shadow: inset 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #333333;
}
.progress-wrap:hover {
  background: #222222;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.arrow_top {
  width: 2rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  filter: var(--white_img);
}

.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--white); /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* ============= Buttons area ============== */
.button {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.6rem !important;
  height: 3.9rem;
  border-radius: 0.8rem;
  color: var(--white);
  min-width: 13.1rem;
  width: fit-content;
  transition: 0.25s;
  position: relative;
  box-shadow: 0.5rem 0.6rem 0 0 rgba(0, 0, 0, 0.33);
}

.button span {
  position: relative;
  z-index: 1;
}

.button::after,
.button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  right: -0.5rem;
  bottom: -0.5rem;
  position: absolute;
  background: #cccccc;
  display: block;
  transition: 0.25s;
}

.button::before {
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  z-index: 1;
}

.button_green {
  width: fit-content;
  min-width: auto;
}

.button_green::before {
  background: #e46768;
}

.button:hover::before {
  background: #000000;
}

/* mx-auto */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  height: var(--menuHeight);
  display: flex;
  align-items: center;
}

.site_header.sticky {
  background: #fff;
  box-shadow: 0 0 1.2rem 0.1rem #00000020;
}

.site_header .row {
  position: relative;
  z-index: 999;
}

.logo img {
  width: 11.3rem;
}

.menu_container {
  gap: 5.6rem;
}

.menu_link_style {
  font-weight: 400;
  color: #111111;
  font-size: 1.4rem;
  text-transform: capitalize;
}

.menu_link_style:not(.active):hover {
  color: #796565;
}

.menu_link_style.active {
  font-weight: 700;
}

.header_right .button {
  height: 3.5rem;
}

/* ============ Hero area ============= */
.click_box {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: max-content;
}

.click_text {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
  background: #fff;
  color: #000;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  font-size: 1.2rem;
  white-space: nowrap;
  box-shadow: 0 0 1.6rem 0 #00000020;
}

.click_images.hovered .click_text {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* clicked_text */
.clicked_text {
  min-width: 12rem;
  padding: 0.8rem 2rem;
  border-radius: 0.8rem;
  background: #000000b5;
  color: #fff;
  backdrop-filter: blur(0.15rem);
  position: absolute;
  left: calc(50% + -3.5rem);
  transform: translateX(-50%) rotate(-16deg);
  top: 0rem;
  transition: 0.25s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  text-align: center;
  line-height: 1.15;
}

.clicked_text span {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  padding-bottom: 0.6rem;
}

.click_box.active .clicked_text {
  opacity: 1;
}


/* =========== click area updates =========== */
.click_box2 .clicked_text,
.click_box4 .clicked_text {
  left: calc(50% + 0rem);
  transform: translateX(-50%) rotate(0deg);
  top: -2.5rem;
}

.click_box4 .clicked_text {
  top: -4rem;
}

.click_box3 .clicked_text {
  transform: translateX(-50%) rotate(13deg);
  left: calc(50% + 2rem);
  top: -1.5rem;
}

.click_box5 .clicked_text {
  top: -2rem;
  left: calc(50% + -1.5rem);
}

.click_box6 .clicked_text {
  top: -2.5rem;
  transform: translateX(-50%) rotate(12.5deg);
  left: calc(50% + 1.6rem);
}

.click_box7 .clicked_text {
  left: calc(50% + 3rem);
  transform: translateX(-50%) rotate(15deg);
  top: -1.5rem;
}
/* ======= click_box ======= */
.click_box1 img {
  width: 13.8rem;
}

.click_box2 img {
  width: 11rem;
}

.click_box3 img {
  width: 14.5rem;
}

.click_box4 img {
  width: 11rem;
}

.click_box5 img {
  width: 13.5rem;
}

.click_box6 img {
  width: 16rem;
}

.click_box7 img {
  width: 13rem;
}

.click_images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.click_box:not(.click_box1) {
  margin-left: -2rem;
}

.click_box2 {
  margin-left: -3.5rem !important;
}

.click_box3 {
  margin-top: -2rem;
}

.click_box4 {
  margin-top: 1rem;
}

.click_box5 {
  margin-left: -1.25rem !important;
}

.click_box6 {
  margin-left: -4rem !important;
  margin-top: -3.6rem;
}

.click_box7 {
  margin-left: -4.5rem !important;
}

/* ============== partners_area ============== */
.partner1 {
  width: 14.9rem;
}

.partner2 {
  width: 15rem;
}

.partner3 {
  width: 12.9rem;
}

.partner4 {
  width: 18.5rem;
}

.partner5 {
  width: 16rem;
}

.partner6 {
  width: 14.3rem;
}

.partners a:hover {
  filter: hue-rotate(45deg);
}

/* ============== aboutus_area ================= */
.about_title_img {
  width: 25.5rem;
}

.about_box {
  padding: 3.2rem;
  border-radius: 2.4rem;
  background: #f8ffff;
  position: relative;
  overflow: hidden;
}

.about_box img {
  position: absolute;
  width: 13.4rem;
  right: 0;
  bottom: 0;
  transition: 0.35s ease;
}

.about_box:hover img {
  transform: scale(1.1);
}

.aboutus_area .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 4rem;
}

.about_box2 {
  background: #ffffef;
}

.about_box3 {
  background: #fcfcfc;
}

.about_box4 {
  background: #fffff5;
}

.about_box5 {
  background: #fafcfc;
}

.about_box6 {
  background: #fcfcf4;
}

.about_box > div {
  position: relative;
  z-index: 1;
}

/* ====================== Story area =================== */
.stories_img {
  width: 23.4rem;
}

.story_box {
  box-shadow: 0 0 1.6rem 0 #55555514;
  padding: 3rem 2.4rem;
  border-radius: 2.4rem;
  background: #fff;
}

.story_box a {
  display: flex;
  gap: 1.6rem;
}

.story_box a img {
  width: 5.6rem;
}

.story_box a div {
  padding-top: 0.8rem;
}

.stories_area .row {
  --bs-gutter-x: 3.2rem;
  --bs-gutter-y: 3.2rem;
}

.stories_boxes {
  height: 55rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 6rem;
}

.stories_boxes::-webkit-scrollbar {
  scrollbar-width: 0;
  display: none;
}

.stories_area {
  position: relative;
}

.stories_area:before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  height: 25rem;
  width: 100vw;
  position: absolute;
  content: "";
  left: 0;
  z-index: 99;
  bottom: 5rem;
}

.story_boxes {
  display: grid;
  gap: 3.2rem 0;
}

/* ================= blog_area ================= */
.blog_info_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog_info {
  padding: 1.6rem 1.6rem 3.2rem 1.6rem;
}

.blog_box {
  background: #fbfbfb;
  border-radius: 1.6rem;
}

.readmore_link img {
  width: 2.3rem;
  transition: 0.35s ease;
}

.readmore_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  height: 3.8rem;
  width: fit-content;
  color: #333333;
  border: 0.1rem solid #333333;
  transition: 0.35s ease;
}

.readmore_link:hover {
  background: #333333;
  color: #ffffff;
}

.readmore_link:hover img {
  transform: translateX(0.5rem);
  filter: var(--white_img);
}

.blog_area .row {
  --bs-gutter-x: 1.6rem;
}

.blog_title {
  font-size: 2rem;
  color: #333333;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  margin: 1.2rem 0 4rem;
}

/* =============== funnel_area ================= */
.funnel_area .content > span {
  color: #555555;
  font-size: 2.6rem;
  font-weight: 400;
}

.funnel_area .row {
  --bs-gutter-x: 0;
}

/* =============== studies_area ================= */
.blog_box.v2 .blog_info_top {
  justify-content: flex-start;
  gap: 1.2rem;
}

.blog_box.v2 .blog_info_top p {
  font-size: 1.4rem;
  color: #555555;
  height: 3rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border: 0.1rem solid #000000;
  border-radius: 10rem;
}

.blog_box.v2 .blog_title {
  margin: 1.5rem 0 1.5rem;
}

.blog_box.v2 .blog_info {
  padding: 2.4rem 1.6rem 3.2rem 1.6rem;
}

.blog_box.v2 {
  background: #fff;
}

.blog_box.v2:hover {
  background: #fbfbfb;
}

.Studies_top_img {
  width: 23rem;
}

.studies_area .row {
  --bs-gutter-x: 4rem;
}

/* =============== Accordion_area ================= */
.plus_icon {
  width: 2.4rem;
  transition: 0.25s ease;
}

.accordion_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion_item {
  padding: 3.6rem;
  border-radius: 1rem;
}

.accordion_item.active {
  background: #f5f5f5;
}

.accordion_content {
  padding-top: 1.6rem;
  border-top: 0.3rem solid #edd5d6;
  margin-top: 2rem;
}

.accordion_content p {
  color: #694f54;
  font-size: 1.6rem;
  line-height: 1.4;
}

.accordion {
  max-width: 87.2rem;
  margin: 0 auto;
}

.accordion_item.active .plus_icon {
  transform: rotate(45deg);
}

/* accordion */
.accordion_content {
  display: none;
}

/* ==================== Team area ==================== */
.team_top_img {
  width: 23.5rem;
}

.team_images {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6.4rem;
}

.team_img {
  width: 10.6rem;
  transition: 0.35s ease;
}

.team_box:hover .team_img {
  filter: sepia(1) brightness(0.95);
  transform: rotate(13deg) scale(1.1);
}

.team_box.roate_reverse:hover .team_img {
  transform: rotate(-13deg) scale(1.05);
}

.team_hover {
  min-width: 12rem;
  padding: 1.4rem 2rem;
  border-radius: 0.8rem;
  background: #000000b5;
  color: #fff;
  backdrop-filter: blur(0.15rem);
  position: absolute;
  left: 6rem;
  transform: rotate(-10deg);
  bottom: -2.5rem;
  transition: 0.25s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.team_hover h5 {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
  padding-bottom: 0.6rem;
}

.team_hover p {
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}

.team_box,
.team_box_v2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.team_box:hover .team_hover {
  opacity: 1;
}

.team_box_v2 img {
  width: 8.6rem;
}

.team_box_v2 {
  display: flex;
  align-items: center;
}

/* =============== footer_section ================ */
.footer_box_v2 ul li {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.social_icons a {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  border-radius: 10rem;
}

.social_icons a img {
  width: 2.4rem;
}

.social_icons {
  gap: 0.8rem;
}

.social_icons a:hover {
  background: #181818;
}

.footer_top {
  margin-bottom: 2.5rem;
  border-bottom: 0.1rem solid #cfb5b5;
  padding-bottom: 2.5rem;
}

.footer_section {
  background: #fbfbfb;
  padding-top: 3.2rem;
}

.footer_box ul * {
  font-family: var(--thirdfont);
  font-size: 1.41rem;
  font-weight: 400;
  color: #646464;
}

.footer_box a,
.footer_box li {
  line-height: 1.4;
}

.footer_box ul {
  display: grid;
  gap: 0.8rem;
}

.footer_box ul li a:hover {
  color: #000000;
}

.copywrite p {
  color: #979797;
}

.footer_top .button {
  height: 3.5rem;
  min-width: fit-content;
}

.footer_logo {
  display: flex;
  width: 15.1rem;
}

/* ===================== uiux_design ===================== */
.uiux_design {
  padding: 16rem 0 6rem;
  background: #fffff5;
}

.uxui_content_left .title_56 {
  padding: 7.2rem 0 2rem;
}

.uxui_content_left p a {
  text-decoration: underline !important;
}

.uxui_content_left p a:hover {
  text-decoration: none !important;
}

.uxui_content_left {
  max-width: 97.2rem;
  position: relative;
  z-index: 1;
}

.uxui_content_left p {
  font-size: 1.6rem;
}

.uxui_content_left span {
  font-family: var(--figtree);
  font-size: 1.6rem;
  font-weight: 300;
}

.uxui_content {
  position: relative;
}

.uiux_design_img {
  max-width: 39.7rem;
  position: absolute;
  bottom: -6rem;
  right: -8rem;
}

.casstudy_img {
  max-width: 24rem;
  right: 0;
}

/* ================= pagination ================= */
.pagination a {
  width: 3.2rem;
  height: 3.2rem;
  border: 0.1rem solid #dfe3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #212b36;
}

.pagination {
  gap: 0.8rem;
}

.pagination_num:hover {
  border-color: #4200ff;
  color: #4200ff;
}

.pagination_arrow:hover {
  background: #c8cfd5;
  border-color: #c8cfd5;
}

.pagination_arrow:hover img {
  filter: var(--white_img);
}

/* =============== career_top =============== */
.career_top {
  padding: 16.7rem 0 3.3rem;
  background: #fffff5;
}

.career_top .col-lg-7 p {
  font-weight: 300;
  font-size: 1.6rem;
}

.career_top_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.career_top .row {
  --bs-gutter-x: 4.5rem;
  --bs-gutter-y: 0;
}

.career_top_list p {
  color: #333333;
}

.career_top_list span {
  font-weight: 500;
}

/* ============= scales ============ */
.scales {
  padding-left: 3.6rem;
  padding-right: 3.6rem;
}

.scale_box h5 {
  font-size: 4rem;
  line-height: 1;
  color: #7f6de7;
}

.scale_box p {
  color: #000000;
  line-height: 1.35;
}

/* ============= contact_area ============ */
.contact_area {
  background: linear-gradient(180deg, #ffffff 0%, #f8ffff 79.71%);
  padding: 16rem 0 0;
  position: relative;
}

.contact_area .content img {
  width: 22rem;
}

.form_group label {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1;
  display: block;
  padding: 0 0 1.6rem 1.4rem;
}

.form_group label span {
  color: #ff5c45;
}

.form_control {
  height: 5.6rem;
  border-radius: 0.8rem;
  border: 0.1rem solid #d9d9d9;
  padding: 1.5rem;
  z-index: 1;
  position: relative;
  width: 100%;
}

.input_wrap {
  position: relative;
  display: flex;
}

.input_wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #d9d9d9;
  position: absolute;
  border-radius: 0.8rem;
  right: -0.6rem;
  bottom: -0.6rem;
}

.textarea_control {
  height: 8rem;
}

form .row {
  --bs-gutter-x: 3.4rem;
  --bs-gutter-y: 2.2rem;
}

.form_control:focus {
  border-color: #000000;
}

.transformation_bg1 {
  width: 11rem;
  position: absolute;
  right: 0;
  top: 4.7rem;
}

.contact_area .content .transformation_bg2 {
  width: 22.3rem;
  margin-left: -4rem;
}

/* =============== location_area =============== */
.location_box {
  background: #fbfbfb;
  border-radius: 1.6rem;
  transition: 0.35s ease;
}

.location_img {
  width: 19.6rem;
}

.location_content .row {
  --bs-gutter-x: 4rem;
}

.location_box a {
  color: #000000;
}

.location_box span {
  color: #555555;
  font-size: 1.4rem;
  line-height: 1;
}

.location_box a:hover {
  opacity: 0.75;
}

.location_box:hover {
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.25);
}

/* ============== Location_area ================ */
.flag img {
  width: 8rem;
}

.flag p {
  color: #333333;
  font-size: 2rem;
}

.flags {
  gap: 15rem;
  padding-top: 8rem;
}

/* ============== Our_story ================ */
.our_story_img {
  width: 30.4rem;
}

.about_box3.v2 {
  padding: 7.7rem 3.2rem;
}

.about_box.v2 {
  height: 100%;
  display: flex;
}

.about_box.v2 .title_40 {
  font-weight: 700;
}

/* ================ core_area ================= */
.title_32 {
  font-size: 3.2rem;
  line-height: 1.4;
}

.core_area .row .col-lg-4:nth-child(1) .core_box {
  background: #eedffb;
}

.core_box {
  border-radius: 2.4rem;
  height: 100%;
  display: grid;
  align-content: center;
}

.core_area .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 4rem;
}

.core_area .row .col-lg-4:nth-child(2) .core_box {
  background: #dcf4dc;
}

.core_area .row .col-lg-4:nth-child(3) .core_box {
  background: #d9fcf5;
}

.core_area .row .col-lg-4:nth-child(4) .core_box {
  background: #fdd9d8;
}

.core_area .row .col-lg-4:nth-child(5) .core_box {
  background: #d9eafc;
}

.core_area .row .col-lg-4:nth-child(6) .core_box {
  background: #f3ecd0;
}

/* ================ inspires_area =============== */
.inspires_area .inspires_top_img {
  width: 19.6rem;
}

.inspires_area .row .col-lg-4:nth-child(1) .core_box {
  background: #f8ffff;
}

.inspires_area .row .col-lg-4:nth-child(2) .core_box {
  background: #fcfcf4;
}

.inspires_area .row .col-lg-4:nth-child(3) .core_box {
  background: #fcfcfc;
}

.inspires_img {
  width: 13.3rem;
  margin-left: auto;
  display: block;
  margin-right: -3.2rem;
}

.inspires_area .core_box {
  padding-bottom: 0;
  overflow: hidden;
}

/* about_box v3 */

.about_box.about_box4.v3 {
  background: #f8ffff;
}

.about_box.about_box6.v3 {
  background: #fcfcfc;
}

/* navigation */

.navigation {
  font-size: 1.6rem;
  font-weight: 400;
  gap: 0.6rem;
  font-family: var(--figtree);
}

.navigation a:hover {
  text-decoration: underline !important;
  color: #000;
}

/* ===================== Services Area ===================== */
.blog_img_wrap {
  position: relative;
}

.badge {
  height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 9.7rem;
  padding: 0 2rem;
  position: absolute;
  left: 0;
  top: 3rem;
}

.badge.popular {
  background: #7f6de7;
}

.badge.best_seller {
  width: 12.8rem;
  background: #ff9933;
}

.badge.new {
  background: #ff5c45;
}

.badge.deal {
  background: #e46667;
  width: 10.4rem;
}

.career_top .col-lg-7 p a:hover,
.link:hover {
  text-decoration: underline !important;
  color: #000;
}

/* ================= studies_area v3 =================== */
.star_img {
  width: 9.4rem;
}

.stars p {
  line-height: 1;
}

.blog_info.v2 .title_24 {
  line-height: 1.2;
}

.studies_area.v3 .blog_box .blog_info.v2 {
  padding: 4rem 2rem 0 2rem;
}

.studies_area.v3 .blog_box:hover {
  background: transparent;
}

.blog_info.v2 .readmore_link {
  width: 100%;
  justify-content: center;
}

.blog_info.v2 ul {
  color: #333333;
}

.studies_area .row {
  --bs-gutter-y: 6rem;
}

.blog_img_wrap img {
  border-radius: 2.4rem;
}
