:root {
  /* colors */
  --primary: #00adb5;
  --dark_blue_text: #0e1010;
  --gray_text: #767a82;
  --gray_bg: rgba(249, 249, 249, 1);
  --white: #fff;
  --white_90: rgba(255, 255, 255, 0.9);
  --black: #000;
  --black_text: #0e1010;
  --black_content: #0b0b0b;
  --black_hover: #1a1a1a;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background-color: var(--white);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--black_text);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
}

p:last-of-type {
  margin-bottom: 0;
}
a {
  text-decoration: none;
}

.bg_primary {
  background-color: var(--primary);
}
.bg_white {
  background-color: #f9f9f9;
}
.bg_gray {
  background-color: #f0f0f0;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 600px) {
}

/* ---------------------------------------------------------------- */
/* WRAPPERS & SECTIONS */
#ac_header {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 27.7px 1px #0e101024;
}
#ac_header.ac_head_sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
.ac_section_top_banner {
  padding: 140px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  position: relative;
}
.ac_section_top_banner.bg_white {
  min-height: auto;
  padding: 140px 0 100px;
  background-color: var(--white);
}
.ac_section {
  padding: 100px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.ac_section.ac_footer_top_sec {
  padding: 80px 0;
}
.ac_section.ac_footer_bot_sec {
  padding: 0 0 60px;
}
.ac_section_full {
  padding: 80px 0 60px;
}
.ac_section_footer {
  padding: 80px 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.ac_bg_brand {
  background-color: var(--primary);
}
.ac_bg_gray {
  background-color: var(--gray_bg);
}
.ac_bg_black {
  background-color: #0e1010;
}
.ac_bg_white {
  background-color: var(--white);
}
.ac_transparent_bg {
  background-color: transparent !important;
}
.ac_container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
}
.ac_container_full {
  width: 100%;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .ac_section_top_banner {
    padding: 120px 0 80px;
  }
  .ac_section {
    padding: 80px 0;
  }
  .ac_section_footer {
    padding: 80px 0 0;
  }
}

@media only screen and (max-width: 940px) {
  .ac_section_top_banner {
    padding: 120px 0 60px;
  }
  .ac_section {
    padding: 60px 0;
  }
  .ac_section_footer {
    padding: 60px 0 0;
  }
  .ac_section.ac_footer_top_sec {
    padding: 60px 0;
  }
  .ac_section.ac_footer_bot_sec {
    padding: 0 0 40px;
  }
}

@media only screen and (max-width: 600px) {
  .ac_section_top_banner {
    padding: 120px 0 40px;
  }
  .ac_section {
    padding: 40px 0;
  }
  .ac_section_footer {
    padding: 40px 0 0;
  }
  .ac_container {
    padding: 0 16px;
  }
  .ac_section.ac_footer_top_sec {
    padding: 40px 0;
  }
  .ac_section.ac_footer_bot_sec {
    padding: 0 0 20px;
  }
}
/* WRAPPERS & SECTIONS END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* NAV */
.ac_header_content {
  width: 100%;
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.ac_header_logo a {
  display: block;
}
.ac_header_logo .ac_logo {
  height: 48px;
  display: block;
}
#ac_navigation {
  position: relative;
}
#ac_navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 48px;
}
#ac_navigation ul li {
  position: relative;
}
#ac_navigation ul li.ac_nav_last {
  width: 100%;
  border-top: 1px solid #ebf0eb;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#ac_navigation ul li.ac_nav_last img {
  height: 12px;
}
#ac_navigation ul li p a {
  display: flex;
  display: initial;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark_blue_text);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
#ac_navigation ul li a.ac_button {
  background-color: var(--primary);
  padding: 15px 43px;
  display: inline-block;
  color: var(--white);
  border-bottom: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease;
  border-radius: 22px;
}
#ac_navigation .ac_nav_dropdown {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.ac_nav_dropdown p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark_blue_text);
}
.ac_nav_dd_arrow {
  transition: transform 0.3s ease;
}
.ac_nav_arrow_rotate {
  transform: rotate(180deg);
}
#ac_navigation .ac_nav_dropdown_items {
  position: absolute;
  left: -20px;
  min-width: 220px;
  z-index: 2;
  border-radius: 12px;
  background-color: var(--white);
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#ac_navigation .ac_nav_dropdown_items ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px 24px;
}

#ac_hamb_btn,
#ac_hamb_btn_close {
  display: none;
  cursor: pointer;
}
#ac_hamb_btn img,
#ac_hamb_btn_close img {
  width: 34px;
  display: block;
}

/* HOVER */
@media (hover: hover) {
  #ac_navigation ul li p a:hover {
    border-bottom: 1px solid var(--black);
  }
  #ac_navigation ul li a.ac_button p:hover {
    border-bottom: none;
  }
  #ac_navigation ul li a.ac_button:hover {
    opacity: 0.8;
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  #ac_navigation {
    width: 300px;
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: -310px;
    background: var(--white);
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    transition: all 0.3s ease;
  }
  #ac_navigation.ac_open_nav {
    right: 0;
  }
  #ac_hamb_btn,
  #ac_hamb_btn_close {
    display: block;
  }
  #ac_hamb_btn_close {
    position: absolute;
    right: 20px;
    top: 18px;
  }
  #ac_navigation #ac_list_wrapper {
    flex-direction: column;
    padding: 80px 20px 40px;
    align-items: flex-start;
    height: 100%;
    overflow: auto;
  }
  #ac_navigation .ac_nav_dropdown p,
  #ac_navigation ul li p a {
    font-size: 24px;
  }
  #ac_list_wrapper .ac_nav_btn_wrap {
    width: 100%;
  }
  #ac_navigation ul li a.ac_button {
    width: 100%;
    text-align: center;
  }
  #ac_navigation .ac_nav_dropdown_items {
    position: static;
  }
  #ac_navigation .ac_nav_dropdown_items ul {
    gap: 24px;
    padding: 20px 0 0 20px;
  }
  .ac_nav_dd_arrow {
    width: 18px;
  }
}
/* NAV END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* HERO TOP BANNER */
.ac_hero_banner {
  position: relative;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ac_hero_banner h1 {
  font-weight: 500;
  font-style: Medium;
  font-size: 56px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--white);
  max-width: 784px;
  margin-bottom: 15px;
}
.ac_hero_banner p {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  max-width: 725px;
  color: var(--white_90);
  margin-bottom: 60px;
}
.ac_hero_banner.ac_real_white h1 {
  color: var(--black);
}
.ac_hero_banner.ac_real_white h2 {
  color: var(--black);
}
.ac_hero_banner.ac_real_white p {
  color: rgba(0, 0, 0, 0.8);
}
.ac_hero_contact {
  display: flex;
  align-items: center;
}
.ac_hero_contact_btn .ac_button {
  display: flex;
  align-items: center;
  background-color: var(--primary);
  color: var(--white);
  padding: 16px 44px;
  border-radius: 25px;
  border-bottom: none;
  gap: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  transition: all 0.3s ease;
}
.ac_hero_contact_btn .ac_button.ac_btn_tirk {
  background-color: transparent;
  padding: 0;
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.ac_hero_contact_btn .ac_button.ac_btn_tirk img {
  background-color: var(--black);
  padding: 16px;
  border-radius: 50%;
}
.ac_hero_contact_tel {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ac_hero_contact_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac_hero_contact_tel a {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  color: var(--black);
  transition: all 0.3s ease;
}
.ac_hero_logos_wrap {
  position: absolute;
  bottom: 40px;
  right: 0px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  max-width: 1240px;
  width: 100%;
  margin: auto;
}
.ac_hero_logos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 111px;
  margin-right: 20px;
}
.ac_hero_logos img {
  width: 100%;
  height: auto;
  display: block;
}

.ac_hero_banner_tjan {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.ac_hero_banner_tjan h1 {
  font-weight: 500;
  font-style: Medium;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--dark_blue_text);
  margin-bottom: 12px;
}
.ac_hero_banner_tjan p {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--gray_text);
  margin-bottom: 40px;
}
.ac_hero_banner_tjan_r {
  position: relative;
  max-width: 505px;
  width: 100%;
  aspect-ratio: 525 / 610;
  border-radius: 36px;
  overflow: hidden;
}
.ac_hero_banner_tjan_r img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* REFERENCE Hero */
.ac_hero_banner_ref {
  width: 100%;
}
.ac_hero_banner_ref_titles {
  margin-bottom: 140px;
  width: 100%;
}
.ac_hero_banner_ref_titles h1 {
  margin-bottom: 12px;
  color: var(--dark_blue_text);
  font-weight: 500;
  font-style: Medium;
  font-size: 70px;
  line-height: 120%;
  letter-spacing: 0%;
}
.ac_hero_banner_ref_titles p {
  color: var(--gray_text);
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  max-width: 735px;
  width: 100%;
}
.ac_hero_banner_ref_big_img {
  width: 100%;
}
.ac_hero_banner_ref_big_img img {
  border-radius: 36px;
  width: 100%;
  aspect-ratio: 1240/618;
  object-fit: cover;
  object-position: center;
}

/* MEDIA */
@media only screen and (max-width: 600px) {
  .ac_hero_banner_ref_titles h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .ac_hero_banner_ref_titles {
    margin-bottom: 40px;
  }
  .ac_hero_banner_ref_big_img img {
    aspect-ratio: 16/9;
  }
}

/* TJANSTER HERO */
.ac_hero_tjanster {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.ac_hero_banner_tjanster_l {
  max-width: 671px;
  width: 100%;
}
.ac_hero_banner_tjanster_l h1 {
  font-weight: 500;
  font-style: Medium;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 18px;
  color: var(--dark_blue_text);
}
.ac_hero_banner_tjanster_l p {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: var(--gray_text);
}
.ac_hero_banner_tjanster_l p:last-of-type {
  margin-bottom: 0;
}
.ac_hero_banner_tjanster_r {
  max-width: 525px;
  width: 100%;
}
.ac_hero_banner_tjanster_r img {
  width: 100%;
  aspect-ratio: 525/610;
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
}

/* HOVER */
@media (hover: hover) {
  .ac_hero_contact_btn .ac_button:hover {
    opacity: 0.8;
  }
  .ac_hero_banner.ac_real_white .ac_button:hover {
    background-color: var(--black_hover);
    color: var(--white);
  }
  .ac_hero_contact_tel a:hover {
    color: var(--black);
  }
  .ac_hero_contact_btn .ac_button.ac_btn_tirk:hover {
    background-color: transparent;
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 1024px) {
  .ac_hero_logos_wrap {
    position: relative;
    bottom: 0;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 940px) {
  .ac_hero_banner_tjan {
    flex-direction: column;
  }
  .ac_hero_banner_tjan_l,
  .ac_hero_banner_tjan_r {
    max-width: 100%;
    width: 100%;
  }
  .ac_hero_tjanster {
    flex-direction: column;
  }
  .ac_hero_banner_tjanster_r {
    max-width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .ac_hero_banner h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .ac_hero_banner h2 {
    font-size: 30px;
    line-height: 57.75px;
  }
  .ac_hero_banner p {
    font-size: 18px;
    line-height: 25.25px;
  }
  .ac_hero_contact {
    flex-direction: column;
  }
  .ac_hero_logos_wrap {
    justify-content: center;
    margin-top: 80px;
  }
  .ac_hero_logos {
    margin-right: 0;
  }
  .ac_hero_banner_tjan h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .ac_hero_banner_tjan p {
    font-size: 16px;
  }
  .ac_hero_banner_tjanster_l h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .ac_hero_banner_tjanster_l p {
    font-size: 18px;
    line-height: 25.25px;
  }
}

/* HERO TOP BANNER END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* FULL WIDTH IMG */
.ac_section.ac_img_header {
  padding: 0 0 100px;
}
.ac_full_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.ac_full_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.ac_full_img_layer {
  background: linear-gradient(
    289.08deg,
    rgba(14, 16, 16, 0) 0%,
    rgba(14, 16, 16, 0.5) 81.75%
  );

  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* MEDIA */
@media only screen and (max-width: 600px) {
  .ac_full_img {
    aspect-ratio: 4/3;
  }
}
/* FULL WIDTH IMG END*/
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* OM OSS NEW */
.ac_om_oss_n {
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.ac_section_title {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 12px;
  color: var(--primary);
  text-transform: uppercase;
}
.ac_om_oss_n_l h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  max-width: 490px;
  color: var(--dark_blue_text);
  margin-bottom: 18px;
}
.ac_om_oss_n_l p {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 20px;
  color: var(--gray_text);
  max-width: 630px;
}
.ac_om_oss_n_l .ac_om_oss_n_numbers {
  display: flex;
  gap: 50px;
}
.ac_om_oss_n_l .ac_om_oss_n_number .ac_om_oss_n_number_no {
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -5%;
  margin-bottom: 2px;
  color: var(--dark_blue_text);
}
.ac_om_oss_n_l .ac_om_oss_n_number p {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--gray_text);
  margin-bottom: 0;
}
.ac_om_oss_n_l .ac_om_oss_n_number:nth-child(1) p {
  max-width: 124px;
}
.ac_om_oss_n_l .ac_om_oss_n_number:nth-child(2) p {
  max-width: 190px;
}
.ac_om_oss_n_l .ac_om_oss_n_number:nth-child(3) p {
  max-width: 174px;
}
.ac_cta_single_wrap a {
  background-color: var(--primary);
  padding: 16px 47px;
  display: inline-block;
  color: var(--white);
  border-bottom: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease;
  border-radius: 25px;
}

.ac_om_oss_n_r {
  position: relative;
  aspect-ratio: 610 / 571;
  width: 100%;
  max-width: 610px;
  border-radius: 36px;
  overflow: hidden;
}
.ac_om_oss_n_r img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* HOVER */
@media (hover: hover) {
  .ac_cta_single_wrap a:hover {
    opacity: 0.8;
  }
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .ac_om_oss_n {
    flex-direction: column;
  }
  .ac_om_oss_n_l,
  .ac_om_oss_n_r {
    max-width: 100%;
    width: 100%;
  }
}

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

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

@media only screen and (max-width: 600px) {
  .ac_om_oss_n_l h2 {
    font-size: 34px;
  }
  .ac_om_oss_n_l p {
    font-size: 16px;
  }
  .ac_om_oss_n_l p:last-of-type {
    margin-bottom: 0;
  }
  .ac_om_oss_n_numbers {
    flex-direction: column;
    margin-top: 40px;
  }
  .ac_om_oss_n_number p {
    margin-bottom: 0;
  }
  .ac_cta_single_wrap a {
    margin-top: 40px;
  }
}
/* OM OSS NEW END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* TJANSTER NEW */
.ac_tjanster_n {
  width: 100%;
}
.ac_tjanster_n h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--dark_blue_text);
  margin-bottom: 60px;
}
.ac_tjanster_item {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  align-items: center;
}
.ac_tjanster_item_w {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex: 1;
}
.ac_tjanster_item_l {
  max-width: 286px;
  width: 100%;
}
.ac_tjanster_item_l h3 {
  max-width: 285px;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 12px;
  color: var(--dark_blue_text);
}
.ac_tjanster_item_l p {
  max-width: 286px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--gray_text);
  margin-bottom: 30px;
}
.ac_tjanster_item_l a {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--dark_blue_text);
}
.ac_tjanster_item_l a span {
  text-decoration: underline;
}
.ac_tjanster_item_m {
  display: flex;
  gap: 40px;
}
.ac_tjanster_item_m_l .ac_tjanster_item_m_l_item,
.ac_tjanster_item_m_r .ac_tjanster_item_m_l_item {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--gray_text);
  display: flex;
  width: 166px;
}
.ac_tjanster_item_m_l_item:before {
  content: "•";
  position: relative;
  margin-right: 10px;
}

.ac_tjanster_item_r {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 400px;
  border-radius: 36px;
  overflow: hidden;
}
.ac_tjanster_item_r img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ac_tjanster_divider {
  background-color: #dedede;
  width: 100%;
  height: 2px;
  margin: 40px 0;
}

/* HOVER */
@media (hover: hover) {
  .ac_tjanster_item_l a:hover {
    opacity: 0.8;
  }
}

/* MEDIA */
@media only screen and (max-width: 1279px) {
  .ac_tjanster_item {
    gap: 40px;
  }
  .ac_tjanster_item_w {
    flex: auto;
  }
}

@media only screen and (max-width: 1140px) {
  .ac_tjanster_item {
    flex-direction: column-reverse;
  }
  .ac_tjanster_item_r {
    max-width: 100%;
  }
  .ac_tjanster_item_w {
    width: 100%;
    justify-content: flex-start;
  }
}

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

@media only screen and (max-width: 600px) {
  .ac_section_title {
    font-size: 18px;
  }
  .ac_tjanster_n h2 {
    font-size: 34px;
  }
  .ac_tjanster_item_w {
    flex-direction: column;
  }
  .ac_tjanster_item_m {
    flex-wrap: wrap;
  }
  .ac_tjanster_item_l p {
    font-size: 16px;
  }
}
/* TJANSTER NEW END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* GRID 3x2x1 */
.ac_grid321_n {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.ac_grid321_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ac_grid321_item_solo {
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  border-radius: 36px;
  overflow: hidden;
  padding: 32px;
}
.ac_grid321_item_solo .ac_grid321_bg {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.ac_grid321_item_solo .ac_grid321_bg h2 {
  color: var(--white);
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: capitalize;
}
.ac_grid321_item_solo .ac_grid321_bg .ac_grid321_no_bot h3 {
  color: var(--white);
  font-weight: 500;
  font-style: Medium;
  font-size: 116px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.ac_grid321_item_solo .ac_grid321_bg .ac_grid321_no_bot p {
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
}
.ac_grid321_no {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 36px;
  overflow: hidden;
  background-color: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ac_grid321_no h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--dark_blue_text);
}
.ac_grid321_no_bot h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 100px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--dark_blue_text);
  margin-bottom: 20px;
}
.ac_grid321_no_bot p {
  color: var(--dark_blue_text);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
}
.ac_grid321_img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.ac_grid321_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .ac_grid321_no_bot h3,
  .ac_grid321_item_solo .ac_grid321_bg .ac_grid321_no_bot h3 {
    font-size: 90px;
  }
}

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

@media only screen and (max-width: 940px) {
  .ac_grid321_no_bot h3,
  .ac_grid321_item_solo .ac_grid321_bg .ac_grid321_no_bot h3 {
    font-size: 68px;
  }
}

@media only screen and (max-width: 768px) {
  .ac_grid321_n {
    grid-template-columns: 1fr;
  }
  .ac_grid321_no,
  .ac_grid321_bg {
    aspect-ratio: auto;
    gap: 40px;
  }
  .ac_grid321_item:nth-child(2) {
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 600px) {
  .ac_grid321_no,
  .ac_grid321_bg {
    aspect-ratio: 1/1;
    gap: 40px;
  }
}
/* GRID 3x2x1 END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* KMA NEW */
.ac_kma_n {
  width: 100%;
}
.ac_kma_n_titles {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.ac_kma_n_title {
  max-width: 589px;
  width: 100%;
}
.ac_kma_n_title h2 {
  color: var(--dark_blue_text);
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
}
.ac_kma_cta a {
  background-color: var(--primary);
  padding: 16px 44px;
  display: inline-block;
  color: var(--white);
  border-bottom: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease;
  border-radius: 25px;
}
.ac_kma_n_acc {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.ac_kma_n_acc_img {
  width: 100%;
  aspect-ratio: 505/600;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  max-width: 505px;
  width: 100%;
}
.ac_kma_n_acc_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ac_kma_n_acc_items {
  max-width: 610px;
  width: 100%;
  padding-top: 60px;
}

/* ACCORDIONS */
.ac_faq_accordion {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-bottom: 1px solid #dedede;
  padding: 0 0 0 0;
  transition: all 0.3s ease;
}
.ac_faq_accordion.ac_active {
  border-bottom: 1px solid var(--primary);
}
.ac_faq_accordion:last-of-type {
  margin-bottom: 0;
}
/* accordion */
/* Style the buttons that are used to open and close the accordion panel */
.ac_accordion {
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
}
.ac_accordion:after {
  content: url("../assets/icons/acc_arrow_open.svg");
  width: 20px;
  height: 20px;
  right: 4px;
  top: -4px;
  position: absolute;
}
.active:after {
  content: url("../assets/icons/acc_arrow.svg");
}
/* Style the accordion panel. Note: hidden by default */
.ac_panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.ac_panel p {
  color: var(--gray_text);
  padding: 0 20px 20px 0;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
}

/* HOVER */
@media (hover: hover) {
  .ac_kma_cta a:hover {
    opacity: 0.8;
  }
}

/* MEDIA */
@media only screen and (max-width: 1279px) {
}

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

@media only screen and (max-width: 940px) {
  .ac_kma_n_titles {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .ac_kma_n_acc {
    flex-direction: column;
  }
  .ac_kma_n_acc_items {
    padding-top: 0;
  }
  .ac_kma_n_acc_img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .ac_kma_n_title h2 {
    font-size: 34px;
  }
  .ac_accordion {
    font-size: 28px;
  }
}
/* KMA NEW END */
/* ---------------------------------------------------------------- */

/* --------------------------------------------------------------- */
/* TIMELINE */
.ac_timeline_wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ac_timeline_wrap h2 {
  color: var(--dark_blue_text);
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 60px;
}
.ac_timeiline {
  width: 100%;
  max-width: 1140px;
  position: relative;
}
.ac_timeiline:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background-color: var(--primary);
  left: 50%;
  transform: translateX(-50%);
}
.ac_timeiline_item {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
.ac_timeline_item_year {
  width: 100%;
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--dark_blue_text);
}
.ac_timeline_item_circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--black);
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.ac_timeline_item_desc {
  padding-left: 100px;
}
.ac_timeline_item_desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: var(--gray_text);
}
.ac_timeline_item_desc img {
  max-width: 100%;
}

/* media */
@media only screen and (max-width: 940px) {
  .ac_timeline_item_desc {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .ac_timeiline_item {
    grid-template-columns: 40% auto 1fr;
  }
  .ac_timeiline:before {
    left: calc(40% + 10px);
  }
  .ac_timeline_wrap h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }
}
/* TIMELINE END */
/* --------------------------------------------------------------- */

/* --------------------------------------------------------------- */
/* VISION  */
.ac_vision_full_img {
  display: block;
  width: 100%;
}
.bg_gray_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ac_vision_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 100px;
}
.ac_vision_l {
  width: 100%;
}
.ac_vision_r {
  width: 100%;
}
.ac_vision_l h2,
.ac_vision_r h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: var(--white);
}
.ac_vision_l p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--white_90);
  max-width: 361px;
}
.ac_vision_r p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--white_90);
  max-width: 544px;
}

.ac_parallax_wrap {
  background-image: url("../assets/om-oss/full.jpg");
  min-height: 500px;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* media parallax */
@media only screen and (max-device-width: 1366px) {
  .ac_parallax_wrap {
    background-attachment: scroll;
  }
}

/* media */
@media only screen and (max-width: 900px) {
  .ac_vision_wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .ac_vision_l p,
  .ac_vision_r p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .ac_vision_l h2,
  .ac_vision_r h2 {
    font-size: 34px;
  }
}
/* VISION END */
/* --------------------------------------------------------------- */

/* --------------------------------------------------------------- */
/* TEAM NEW */
.ac_team_n {
  max-width: 826px;
  width: 100%;
  margin: auto;
}
.ac_team_n h2 {
  color: var(--dark_blue_text);
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.ac_team_n_items {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.ac_team_n_item {
  border-radius: 36px;
  position: relative;
  background-color: #f4f4f4;
  overflow: hidden;
}
.ac_team_n_item_img {
  width: 100%;
  display: block;
}
.ac_team_n_item_img img {
  width: 100%;
  aspect-ratio: 403/443;
  display: block;
}
.ac_team_n_item_content {
  padding: 20px 40px 40px;
  background-color: #f4f4f4;
  border-radius: 0 0 36px 36px;
  position: relative;
  margin-top: -10px;
}
.ac_team_n_item_content_pos {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.ac_team_n_item_content h3 {
  color: var(--dark_blue_text);
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 12px;
}
.ac_team_n_item_content p {
  color: var(--gray_text);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 1279px) {
}

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

@media only screen and (max-width: 940px) {
  .ac_team_n_item_content {
    padding: 28px;
  }
}

@media only screen and (max-width: 600px) {
  .ac_team_n h2 {
    font-size: 34px;
  }
  .ac_team_n_items {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ac_team_n_item_content h3 {
    font-size: 28px;
  }
  .ac_team_n_item_content {
    padding: 20px;
  }
  .ac_team_n_item_content_pos {
    font-size: 14px;
  }
}
/* TEAM NEW END */
/* -------------------------------------------------------------------- */

/* -------------------------------------------------------------------- */
/* REFERENS  */
.ac_referens_wrap {
  width: 100%;
  padding-top: 30px;
}
.ac_referens_wrap h1 {
  font-weight: 500;
  font-style: Medium;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--dark_blue_text);
  margin-bottom: 50px;
}
.ac_referens_wrap h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--dark_blue_text);
  margin-bottom: 40px;
}
.ac_referens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ac_referens_item {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 36px;
  aspect-ratio: 610/410;
  overflow: hidden;
}
.ac_referens_item a {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  display: flex;
  align-items: flex-end;
}
.ac_referens_item_content {
  width: 100%;
}
.ac_referens_item_content_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.ac_referens_item_content_desc {
  position: relative;
  z-index: 1;
  padding: 40px;
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.ac_referens_item_content_desc h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--white);
  max-width: 330px;
}

/* media */
@media only screen and (max-width: 940px) {
  .ac_referens {
    grid-template-columns: 1fr;
  }
  .ac_referens_item_content_desc {
    padding: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .ac_referens_wrap {
    padding-top: 100px;
  }
  .ac_referens_wrap h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .ac_referens_wrap h2 {
    font-size: 34px;
  }
}
/* REFERENS END  */
/* -------------------------------------------------------------------- */

/* ------------------------------------------------------------------- */
/* VISION */
/* .ac_vision_n {
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.ac_vision_l,
.ac_vision_r {
  max-width: 362px;
  width: 100%;
}
.ac_vision_l h2,
.ac_vision_r h2 {
  color: var(--dark_blue_text);
  margin-bottom: 16px;
  font-weight: 500;
  font-style: Medium;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
}
.ac_vision_l p,
.ac_vision_r p {
  color: var(--gray_text);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 30px;
}
.ac_vision_l a,
.ac_vision_r a {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--dark_blue_text);
}
.ac_vision_l a span,
.ac_vision_r a span {
  text-decoration: underline;
}
.ac_vision_m {
  max-width: 400px;
  width: 100%;
}
.ac_vision_m {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 400px;
  border-radius: 36px;
  overflow: hidden;
}
.ac_vision_m img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
} */

/* HOVER */
/* @media (hover: hover) {
  .ac_vision_l a:hover,
  .ac_vision_r a:hover {
    opacity: 0.8;
  }
} */

/* MEDIA */
/* @media only screen and (max-width: 1279px) {
}

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

@media only screen and (max-width: 768px) {
  .ac_vision_n {
    flex-direction: column;
  }
  .ac_vision_l,
  .ac_vision_r,
  .ac_vision_m {
    max-width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .ac_vision_l h2,
  .ac_vision_r h2 {
    font-size: 30px;
  }
} */
/* VISION END */
/* -------------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* LEFT SCROLL RIGHT STICKY */
.ac_l_scroll_r_sticky {
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.ac_l_scroll {
  max-width: 586px;
  display: grid;
  gap: 40px;
}
.ac_l_scroll_item h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 12px;
  color: var(--dark_blue_text);
}
.ac_l_scroll_item p {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: var(--gray_text);
}
.ac_l_scroll_item p:last-of-type {
  margin-bottom: 0;
}
.ac_r_sticky {
  position: sticky;
  top: 100px;
  max-width: 525px;
  min-width: 288px;
  width: 100%;
}
.ac_r_sticky h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  border-bottom: 1px solid #dedede;
}
.ac_r_stick_href {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.ac_r_stick_href:last-of-type {
  margin-bottom: 0;
}
.ac_r_stick_href a {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration: underline;
  transition: all 0.3s ease;
  color: var(--primary);
}
.ac_r_sticky .ac_r_sticky_img {
  width: 100%;
}
.ac_r_sticky .ac_r_sticky_img img {
  width: 100%;
  aspect-ratio: 525/396;
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
}

/* HOVER */
@media (hover: hover) {
  .ac_r_stick_href a:hover {
    opacity: 0.8;
  }
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .ac_l_scroll_r_sticky {
    flex-direction: column;
  }
  .ac_l_scroll {
    max-width: 768px;
  }
  .ac_r_sticky {
    position: static;
  }
}

@media only screen and (max-width: 600px) {
  .ac_l_scroll_item h3 {
    font-size: 30px;
  }
  .ac_l_scroll_item p {
    font-size: 16px;
  }
}
/* LEFT SCROLL RIGHT STICKY */
/* ---------------------------------------------------------------- */

/* ------------------------------------ */
/* ------- MARQUEE LOGOS ------ */
/* ------------------------------------ */
.ac_marquee_title {
  text-align: center;
}
.ac_marquee_title h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  text-align: center;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 63px;
  color: var(--white);
}

/* .logo-marquee {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 20px 0;
} */

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: transparent;
}

/* LEFT FADE */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--primary) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* RIGHT FADE */
.logo-marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--primary) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 58px;
  margin: 0 20px;
  transition: all 0.3s ease;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 768px) {
  .logo-track img {
    height: 40px;
    margin: 0 20px;
  }
}

@media only screen and (max-width: 600px) {
  .ac_marquee_title h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }
}

/* ------------------------------------ */
/* ------- MARQUEE LOGOS END ------ */
/* ------------------------------------ */

/* ----------------------------------------------------------------- */
/*  2 TJANSTER CARDS */
.ac_tjanster_n_2 {
  width: 100%;
}
.ac_tjanster_n_2 h2 {
  margin-bottom: 40px;
  /* color: var(--dark_blue_text); */
  color: var(--white);
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
}
.ac_tjanster_2_items {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ac_tjanster_2_item {
  position: relative;
  width: 100%;
  aspect-ratio: 61 / 41;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px;
}
.ac_tjanster_2_item .ac_tj_2_img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.ac_tjanster_2_img_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 16, 16, 0) 0%,
    rgba(14, 16, 16, 0.4) 100%
  );
}
.ac_tjanster_2_item_content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.ac_tjanster_2_item_content h3 {
  color: var(--white);
  max-width: 340px;
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0%;
}
.ac_tjanster_2_item_cta a {
  display: block;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
}
.ac_tjanster_2_item_cta a img {
  display: block;
}

/* HOVER */
@media (hover: hover) {
  .ac_tjanster_2_item_cta a:hover {
    background-color: var(--primary);
  }
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .ac_l_scroll_r_sticky {
    flex-direction: column;
  }
  .ac_l_scroll {
    max-width: 768px;
  }
  .ac_r_sticky {
    position: static;
  }
}

@media only screen and (max-width: 768px) {
  .ac_tjanster_2_items {
    grid-template-columns: 1fr;
  }
  .ac_tjanster_2_item {
    padding: 20px;
  }
  .ac_tjanster_2_item_content h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 600px) {
  .ac_tjanster_n_2 h2 {
    font-size: 34px;
  }
}
/*  2 TJANSTER CARDS END */
/* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ */
/* VARA TJANSTER PAGE */
/* -------------------------------------------------------------------- */
.ac_tjanster_grid_img_text_wrap {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.ac_tjanster_grid_text {
  padding: 60px;
  flex: 1;
}
.ac_tjanster_grid_text h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--dark_blue_text);
  margin-bottom: 20px;
}
.ac_tjanster_grid_text p {
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: var(--gray_text);
}
.ac_tjanster_grid_text p:last-of-type {
  margin-bottom: 0;
}
.ac_tjanster_grid_img {
  max-width: 610px;
}
.ac_tjanster_grid_img img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .ac_tjanster_grid_img_text_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .ac_tjanster_grid_img_text_wrap.ac_grid_img_top {
    flex-direction: column-reverse;
  }
  .ac_tjanster_grid_text {
    padding: 0;
    max-width: 671px;
  }
  .ac_tjanster_grid_img {
    max-width: 100%;
  }
  .ac_tjanster_grid_text h2 {
    font-size: 34px;
  }
  .ac_tjanster_grid_text p {
    font-size: 16px;
  }
}
/* ------------------------------------------------------------------ */
/* VARA TJANSTER PAGE END */
/* -------------------------------------------------------------------- */

/* FOOTER */
/* ---------------------------------------------------------------- */
/* FOOTER TOP */
.ac_footer_top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ac_footer_top h2 {
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  max-width: 648px;
  color: var(--white);
}

.ac_footer_top a.ac_button {
  width: 116px;
  height: 116px;
  display: flex;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.ac_footer_top a.ac_button img {
  width: 40px;
}

.ac_footer_divider {
  width: 100%;
  height: 1px;
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* HOVER */
@media (hover: hover) {
  .ac_footer_top a.ac_button:hover {
    opacity: 0.8;
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}
@media only screen and (max-width: 940px) {
}
@media only screen and (max-width: 600px) {
}
@media only screen and (max-width: 320px) {
}
/* FOOTER TOP END*/
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* FOOTER BOT */
.ac_footer_bot {
  width: 100%;
}
.ac_footer_bot_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 74px;
}
.ac_footer_links_wrap {
  display: flex;
  gap: 76px;
}
.ac_footer_links_col {
  max-width: 230px;
}
.ac_footer_links_col:first-of-type {
  max-width: 371px;
}
.ac_footer_links_col h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
}
.ac_footer_links_col:first-of-type p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--gray_text);
}
.ac_footer_links_col h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--white);
  margin-bottom: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.ac_footer_links {
  display: flex;
  flex-direction: column;
}
.ac_footer_links p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 12px;
  color: var(--gray_text);
}
.ac_footer_links p:last-of-type {
  margin-bottom: 0;
}
.ac_footer_links p a,
.ac_footer_links p span {
  cursor: pointer;
  color: var(--secondary);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.ac_footer_lins_divider {
  width: 100%;
  height: 32px;
}
.ac_footer_soc_icn {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ac_footer_bot_rights {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}
.ac_footer_bot_rights p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--white);
}
.ac_footer_bot_rights a {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  transition: all 0.3s ease;
}

/* HOVER */
@media (hover: hover) {
  .ac_footer_links p a:hover,
  .ac_footer_links p span:hover,
  .ac_footer_bot a:hover {
    border-bottom: 1px solid var(--white);
  }
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .ac_footer_bot_content {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .ac_footer_links_col:first-of-type {
    max-width: 100%;
    width: 100%;
  }
  .ac_footer_links_col:first-of-type p {
    max-width: 768px;
    text-align: left;
  }
  .ac_footer_bot_cta {
    margin-bottom: 60px;
  }
  .ac_footer_links_col h3.mt-16 {
    margin-top: 40px;
  }
  .ac_footer_top h2 {
    font-size: 34px;
    max-width: 100%;
    flex: 1;
  }
}

@media only screen and (max-width: 600px) {
  .ac_footer_links_col {
    max-width: 100%;
    width: 100%;
  }
  .ac_footer_bot {
    flex-direction: column;
    gap: 20px;
  }
  .ac_footer_bot p {
    text-align: left;
  }
  .ac_footer_top {
    flex-direction: column;
    text-align: center;
  }
  .ac_footer_bot_rights {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .ac_footer_links_wrap {
    gap: 40px;
    width: 100%;
  }
}

/* FOOTER BOT END */
/* ---------------------------------------------------------------- */

/* PRIVACY BOOTOM UNDER FOOTER */
.privacy_popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.privacy_popup.privacy_show {
  display: flex;
}
.privacy_popup_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.privacy_popup_content {
  max-width: 768px;
  max-height: 90%;
  overflow: auto;
  margin: 20px;
  background-color: var(--white);
  padding: 24px;
  padding-top: 60px;
  z-index: 99999;
  position: relative;
  box-shadow: 0px 15px 39px 0px rgb(8 18 109 / 10%);
  text-align: left !important;
}

.privacy_popup_close_x {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  /* font-weight: bold; */
  cursor: pointer;
  color: var(--light-green);
  width: 20px;
}

.privacy_popup_content a {
  color: var(--light-green);
}

/* COOKIES BOOTOM UNDER FOOTER */
.cookie_popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.cookie_popup.cookie_show {
  display: flex;
}
.cookie_popup_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.cookie_popup_content {
  max-width: 768px;
  max-height: 90%;
  overflow: auto;
  margin: 20px;
  background-color: var(--white);
  padding: 24px;
  padding-top: 60px;
  z-index: 99999;
  position: relative;
  box-shadow: 0px 15px 39px 0px rgb(8 18 109 / 10%);
  text-align: left !important;
}

.cookie_popup_close_x {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  /* font-weight: bold; */
  cursor: pointer;
  color: var(--light-green);
  width: 20px;
}

.cookie_popup_content a {
  color: var(--light-green);
}
