@import url(reset.css);
/* @font-face {
  font-family: 'Helvetica Neue LT Std';
  src: url("../fonts/HelveticaNeueLTStd-Md.eot");
  src: url("../fonts/HelveticaNeueLTStd-Md.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeueLTStd-Md.woff2") format("woff2"), url("../fonts/HelveticaNeueLTStd-Md.woff") format("woff"), url("../fonts/HelveticaNeueLTStd-Md.ttf") format("truetype"), url("../fonts/HelveticaNeueLTStd-Md.svg#HelveticaNeueLTStd-Md") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue LT Std';
  src: url("../fonts/HelveticaNeueLTStd-Blk.eot");
  src: url("../fonts/HelveticaNeueLTStd-Blk.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeueLTStd-Blk.woff2") format("woff2"), url("../fonts/HelveticaNeueLTStd-Blk.woff") format("woff"), url("../fonts/HelveticaNeueLTStd-Blk.ttf") format("truetype"), url("../fonts/HelveticaNeueLTStd-Blk.svg#HelveticaNeueLTStd-Blk") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
} */
@font-face {
  font-family: 'Hello America';
  src: url("../fonts/HelloAmerica.eot");
  src: url("../fonts/HelloAmerica.eot?#iefix") format("embedded-opentype"), url("../fonts/HelloAmerica.woff2") format("woff2"), url("../fonts/HelloAmerica.woff") format("woff"), url("../fonts/HelloAmerica.ttf") format("truetype"), url("../fonts/HelloAmerica.svg#HelloAmerica") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/opensans/OpenSans-Bold.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/opensans/OpenSans-BoldItalic.ttf") format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/opensans/OpenSans-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/opensans/OpenSans-Italic.ttf") format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --main-font: 'Open Sans';
  --hero-font: 'Hello America';
  --orange: #F15A22;
  --dark-blue: #00275E;
  --blue: #002E6E;
  --max-width: 1100px;
  --menu-max-width: 1240px;
  --fs-xl: clamp(4.5rem, 7vw, 6rem);
  /*50px-150px*/
  --fs-lg: clamp(1.8rem, 4.5vw, 3.75rem);
  --fs-l: clamp(1.35rem, 2.5vw, 2rem);
  /*30px-60px*/
  --fs-m: clamp(1.1rem, 2vw, 1.2rem);
  /*18px-30px*/
  --fs-s: clamp(0.875rem, 1.5vw, 1rem);
  /*14px-18px*/
  --blue-font-color: #002E6E;
}

html {
  font-family: var(--main-font);
  font-size: 15px;
  background: #002252;
  color: white;
  min-height: 100%;
}

.gap {
  height: clamp(3rem, 8vw, 6rem);
}

.swiper-scrollbar {
  height: 8px;
}

body {
  min-height: 100%;
}
body.geo_bg {
  background: url("../img/bg_1.jpg") top center repeat-y;
  background-size: 100% auto;
}
body.geo_bg:after {
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: linear-gradient(to bottom, #002e6e, rgba(0, 46, 110, 0));
  z-index: 0;
  width: 100%;
  pointer-events: none;
}
body.dot_bg {
  background: url("../img/bg_2.jpg") center 100vh repeat-y;
  background-size: 100% auto;
}

header {
  padding: 0 3rem;
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 10;
  top: 0;
}
header.static {
  position: relative;
}
header:after {
  background: linear-gradient(to bottom, #00275e, rgba(0, 39, 94, 0));
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  height: 130%;
  width: 100%;
  pointer-events: none;
}
header .inner_header {
  display: flex;
  align-items: flex-end;
  max-width: var(--menu-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}
header .logo img {
  width: clamp(11rem, 16vw, 14rem);
}
header .mobile_menu {
  display: none;
}
header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
header nav .close_menu {
  display: none;
  padding: 1rem;
  top: 3rem;
  right: 3rem;
  z-index: 1;
  position: absolute;
  cursor: pointer;
}
header nav .close_menu img {
  width: 2rem;
}
header nav a {
  font-size: var(--fs-m);
  margin-right: 0rem;
  color: white;
  padding: .5rem 2rem;
  position: relative;
}
header nav a:after {
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  height: 100%;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
}
header nav a:last-child {
  margin-right: 0;
}
header nav a:hover {
  color: var(--orange);
}
header nav a.active {
  color: var(--orange);
}

.main_hero {
  /*    background: url('../img/hero_bg.png') 50% 50% no-repeat;
      background-size: cover;*/
  position: relative;
  z-index: 1;
  padding-top: 6rem;
}
.main_hero:after {
  background: linear-gradient(to bottom, #002e6e, rgba(0, 46, 110, 0));
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  height: 20%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.main_hero > img {
  max-width: unset;
  width: 100%;
  vertical-align: bottom;
  visibility: hidden;
}
.main_hero .inner_main_hero {
  max-width: var(--max-width);
  width: 100%;
  position: absolute;
  padding-left: 3rem;
  padding-right: 3rem;
  left: 50%;
  top: 0;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.main_hero .hero_text {
  padding-top: 12rem;
  width: 50%;
  visibility: hidden;
}
.main_hero .hero_text > span {
  font-size: clamp(1.2rem, 2vw, 1.35rem);
  display: block;
}
.main_hero .hero_text h1 {
  font-family: var(--hero-font);
  color: var(--orange);
  font-size: var(--fs-xl);
  margin-top: 3rem;
  font-weight: normal;
  line-height: 1.2;
}
.main_hero .hero_text h1 span {
  display: block;
}

p {
  line-height: 1.6;
}

a {
  cursor: pointer;
}

.major_block {
  padding: 0 3rem clamp(1.5rem, 3vw, 2rem);
}
.major_block .inner {
  max-width: var(--max-width);
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.5rem, 3vw, 2rem) 3rem;
  margin-bottom: 1rem;
}
.major_block .inner h2 {
  font-size: var(--fs-l);
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}
.major_block.key_service {
  overflow: hidden;
}

.major_block.about .inner p {
  display: block;
  text-align: left;
  font-size: var(--fs-m);
}
.major_block.about .inner p span {
  display: block;
  margin-bottom: 2rem;
}
.major_block.about .inner p.hidden_text {
  display: none;
  margin: 0;
}
.major_block.about .inner p.hidden_text span:last-of-type {
  margin-bottom: 0;
}
.major_block.about .inner .btn_wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.major_block.about .inner .btn_wrap a.read_more {
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: white;
  color: var(--dark-blue);
  font-size: var(--fs-m);
  transition: all .35s;
  pointer-events: auto;
}
.major_block.about .inner .btn_wrap a.read_more.trans {
  background: var(--orange);
  color: white;
  pointer-events: none;
  opacity: 0;
}
.major_block.about .inner .btn_wrap .go_to_page {
  padding: 1rem 4rem;
  border-radius: 1rem;
  background: var(--orange);
  color: var(--dark-blue);
  font-size: var(--fs-m);
  position: absolute;
  left: 50%;
  display: inline-flex;
  align-items: center;
  height: 100%;
  top: 0;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  z-index: 1;
  opacity: 0;
}
.major_block.about .inner .btn_wrap .go_to_page img {
  height: 1.5rem;
}
.major_block.about .inner .btn_wrap .go_to_page.slide_up {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}

.major_block.key_service .inner .swiper {
  overflow: visible;
}
.major_block.key_service .inner .swiper-slide {
  width: 25%;
}
.major_block.key_service .inner .each_key_service {
  align-self: center;
  margin-right: 2%;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
}
.major_block.key_service .inner .each_key_service:last-of-type {
  margin-right: 0;
}
.major_block.key_service .inner .each_key_service .img_wrap {
  position: relative;
  overflow: hidden;
}
.major_block.key_service .inner .each_key_service .img_wrap .label {
  padding: 2rem;
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.major_block.key_service .inner .each_key_service .img_wrap img {
  transition: transform 5s;
}
.major_block.key_service .inner .each_key_service .img_wrap:after {
  background: var(--dark-blue);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  opacity: .5;
  transition: all .15s linear;
}
.major_block.key_service .inner .each_key_service:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
}
.major_block.key_service .inner .each_key_service:hover .img_wrap:after {
  background: var(--orange);
  /*opacity: .3;*/
}
.major_block.key_service .inner .each_key_service:hover .img_wrap img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.major_block.key_service .inner .each_key_service > a {
  position: absolute;
  z-index: 5;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.major_block.key_service .inner .each_key_service > span {
  color: var(--dark-blue);
  display: flex;
  text-align: center;
  padding: 1.25rem 0;
  font-size: var(--fs-m);
  cursor: pointer;
  position: absolute;
  width: 100%;
  bottom: 1rem;
  left: 0;
  z-index: 4;
  justify-content: center;
}
.major_block.key_service .inner .each_key_service > span img {
  height: 1.5rem;
}
.major_block.key_service .inner .each_key_service > span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 3;
}
.major_block.key_service.is_service_subpage .inner .swiper {
  padding-left: 12.5%;
  padding-right: 12.5%;
}
.major_block.key_service.is_service_subpage .inner .swiper .swiper-slide {
  width: 33.3333%;
}

.events_list {
  display: flex;
  flex-wrap: wrap;
}
.events_list .each_events_item {
  position: relative;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
  width: 30%;
  margin: 1.5%;
}
.events_list .each_events_item .hidden_des {
  position: absolute;
  left: 0;
  padding: 1rem;
  background: white;
  top: 100%;
  opacity: 0;
  transform: translateY(-10%);
  pointer-events: none;
  transition: all 0s linear 0s;
  border-radius: 0 0 1rem 1rem;
}
.events_list .each_events_item .hidden_des p {
  color: var(--blue);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: clamp(0.85rem, 2vw, 1rem);
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* number of lines to show */
}
.events_list .each_events_item:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.events_list .each_events_item:hover .hidden_des {
  opacity: 1;
  transform: translateY(0%);
  transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1) 0.25s;
}
.events_list .each_events_item:hover .img_wrap {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.events_list .each_events_item:hover .img_wrap:after {
  background: var(--orange);
  /*opacity: .3;*/
}
.events_list .each_events_item:hover .img_wrap img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.events_list .each_events_item .img_wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.events_list .each_events_item .img_wrap .label {
  padding: 2rem;
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;

  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.events_list .each_events_item .img_wrap img {
  transition: transform 5s;
}
.events_list .each_events_item .img_wrap:after {
  background: black;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  opacity: .5;
  transition: all .15s linear;
}
.events_list .each_events_item > a {
  position: absolute;
  z-index: 5;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.events_list .each_events_item > span {
  color: var(--dark-blue);
  display: flex;
  text-align: center;
  padding: 1.25rem 0;
  font-size: var(--fs-m);
  cursor: pointer;
  position: absolute;
  width: 100%;
  bottom: 1rem;
  left: 0;
  z-index: 4;
  justify-content: center;
}
.events_list .each_events_item > span img {
  height: 1.5rem;
}
.events_list .each_events_item > span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 3;
}

.major_block.events .inner .swiper {
  overflow: visible;
  padding: 0 3rem;
}
.major_block.events .inner .each_events_item {
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
}
.major_block.events .inner .each_events_item .hidden_des {
  position: absolute;
  left: 0;
  padding: 1rem;
  background: white;
  top: 100%;
  opacity: 0;
  transform: translateY(-10%);
  pointer-events: none;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 0 0 1rem 1rem;
}
.major_block.events .inner .each_events_item .hidden_des p {
  color: var(--blue);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--fs-s);
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* number of lines to show */
}
.major_block.events .inner .each_events_item:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
}
.major_block.events .inner .each_events_item:hover .hidden_des {
  opacity: 1;
  transform: translateY(0%);
}
.major_block.events .inner .each_events_item:hover .img_wrap {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.major_block.events .inner .each_events_item:hover .img_wrap:after {
  background: var(--orange);
  /*opacity: .3;*/
}
.major_block.events .inner .each_events_item:hover .img_wrap img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.major_block.events .inner .each_events_item .img_wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.major_block.events .inner .each_events_item .img_wrap .label {
  padding: 2rem;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
}
.major_block.events .inner .each_events_item .img_wrap img {
  transition: transform 5s;
}
.major_block.events .inner .each_events_item .img_wrap:after {
  background: black;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  opacity: .5;
  transition: all .15s linear;
}
.major_block.events .inner .each_events_item > a {
  position: absolute;
  z-index: 5;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.major_block.events .inner .each_events_item > span {
  color: var(--dark-blue);
  display: flex;
  text-align: center;
  padding: 1.25rem 0;
  font-size: var(--fs-m);
  cursor: pointer;
  position: absolute;
  width: 100%;
  bottom: 1rem;
  left: 0;
  z-index: 4;
  justify-content: center;
}
.major_block.events .inner .each_events_item > span img {
  height: 1.5rem;
}
.major_block.events .inner .each_events_item > span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 3;
}

.contact {
  display: flex;
  overflow: hidden;
  padding-bottom: 0rem;
}
.contact .contact_inner {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.5rem, 3vw, 2rem) 3rem;
  display: flex;
  align-items: center;
}
.contact .right {
  width: 50%;
  position: relative;
  padding: 2rem;
  display: flex;
  padding-right: 0;
}
.contact .right:after {
  position: absolute;
  top: 0;
  width: calc(110% + 8rem);
  left: -8rem;
  /*content: '';*/
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}
.contact .right_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  align-self: center;
}
.contact .right_content strong {
  display: block;
  text-align: center;
  padding: 1rem 0 0;
  font-weight: normal;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.contact .right_content .form_wrap {
  padding: 1.5rem 0 0;
}
.contact .right_content .form_wrap form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.contact .right_content .form_wrap form .each_input {
  width: 100%;
  position: relative;
}
.contact .right_content .form_wrap form .each_input .error_message {
  position: absolute;
  color: red;
  padding: 1rem;
  top: 50%;
  right: 0;
  font-size: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  display: none;
}
.contact .right_content .form_wrap form .each_input input {
  width: 100%;
  padding: 1rem;
  font-size: var(--fs-m);
  border: none;
  background: #E7EAEC;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  font-weight: normal;
}
.contact .right_content .form_wrap form .each_input input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #929497;
  opacity: 1;
  /* Firefox */
  font-weight: normal;
}
.contact .right_content .form_wrap form .each_input input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #929497;
  font-weight: normal;
}
.contact .right_content .form_wrap form .each_input input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #929497;
  font-weight: normal;
}
.contact .right_content .form_wrap form .each_input.half_width {
  width: 48%;
  margin-bottom: 1.25rem;
}
.contact .right_content .form_wrap .btn_wrap {
  width: 100%;
  margin-top: 1.25rem;
}
.contact .right_content .form_wrap .btn_wrap button {
  display: flex;
  align-items: center;
  background: white;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  padding: 1rem 2rem;
  color: #002E6E;
  font-size: calc(var(--fs-m) + .1rem);
}
.contact .right_content .form_wrap .btn_wrap button:hover {
  background: var(--orange);
}
.contact .right_content .form_wrap .btn_wrap button img {
  margin-left: 1.5rem;
  width: .7rem;
}
.contact .left {
  width: 50%;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  display: flex;
}
.contact .left .left_content span {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-bottom: 2rem;
  display: block;
}
.contact .left .left_content h2 {
  font-family: var(--hero-font);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  color: var(--orange);
  font-weight: normal;
}

.float_zendesk_btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  border-radius: 5rem;
  padding: 1rem 2rem;
  background: var(--blue);
  cursor: pointer;
  transition: all .15s linear;
}
.float_zendesk_btn:hover {
  transform: scale(1.05);
}
.float_zendesk_btn .inner_float_zendesk_btn {
  display: flex;
  align-items: center;
  font-size: var(--fs-m);
}
.float_zendesk_btn .inner_float_zendesk_btn img {
  width: 2.5rem;
  margin-right: 1rem;
}

.zendesk {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9;
  max-width: 260px;
  width: 100%;
  transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
}
.zendesk.shrink {
  -webkit-transform: translateY(calc(100% + 1rem));
  transform: translateY(calc(100% + 1rem));
  transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0);
}
.zendesk .head {
  padding: 1rem;
  position: relative;
  background: var(--blue);
  border-radius: 1rem 1rem 0 0;
  text-align: center;
  cursor: pointer;
}
.zendesk .head:hover span {
  opacity: .5;
}
.zendesk .head span {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: all .15s;
}
.zendesk .head span img {
  width: 1.25rem;
}
.zendesk .body {
  display: flex;
  align-items: center;
  background: var(--blue);
  padding: 1.5rem;
}
.zendesk .body p {
  font-size: 1.25rem;
  width: 60%;
}
.zendesk .body img {
  width: 35%;
  margin-left: auto;
}
.zendesk .bottom {
  background: white;
  border-radius: 0 0 1rem 1rem;
  padding: 0;
  display: flex;
  align-items: center;
}
.zendesk .bottom button, .zendesk .bottom input {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  flex-shrink: 0;
  outline: none;
}
.zendesk .bottom input {
  flex: 1;
  padding: 1rem 1.5rem;
  padding-right: 0;
}
.zendesk .bottom button {
  padding: 0 1rem;
}
.zendesk .bottom button img {
  width: 1.5rem;
}

.vacancy {
  position: relative;
  padding: clamp(2rem, 7vw, 6rem) 0 0;
}
.vacancy .inner {
  max-width: var(--max-width);
  width: 90%;
  padding: 3rem;
  padding-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.vacancy .inner .top_des {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  text-align: center;
  font-size: var(--fs-m);
}
.vacancy h2 {
  font-size: var(--fs-l);
  display: block;
  text-align: center;
  margin-bottom: 5rem;
}
.vacancy .vac_tabs {
  margin-top: 4rem;
}
.vacancy .tab_item {
  display: flex;
  align-items: center;
}
.vacancy .tab_item:last-of-type {
  border-bottom: 0;
}
.vacancy .tab_item .des {
  flex: 1;
  margin-right: 4rem;
  padding-bottom: 2.75rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.vacancy .tab_item .des strong {
  font-weight: 500;
  font-size: clamp(1.15rem, 2.25vw, 1.5rem);
  display: block;
  margin-bottom: 1rem;
}
.vacancy .tab_item .des p {
  font-size: var(--fs-m);
}
.vacancy .tab_item .read_more {
  flex-shrink: 0;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-size: var(--fs-m);
  margin-bottom: 2.75rem;
  text-transform: capitalize;
  color: var(--blue);
  transition: all .15s;
}
.vacancy .tab_item .read_more:hover {
  background: var(--orange);
  color: white;
}
.vacancy .vac_tab_btns {
  display: flex;
  align-items: center;
}
.vacancy .vac_tab_btns .tab_btn {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1rem 2rem;
  font-size: clamp(1.45rem, 2.5vw, 1.6rem);
  margin-right: 1rem;
  cursor: pointer;
  transition: all .35s;
}
.vacancy .vac_tab_btns .tab_btn:hover {
  border-color: white;
}
.vacancy .vac_tab_btns .tab_btn:last-of-type {
  margin-right: 0;
}
.vacancy .vac_tab_btns .tab_btn.active {
  border-color: var(--orange) !important;
  color: var(--orange);
  cursor: default;
}
.vacancy .each_tab {
  display: none;
}
.vacancy .each_tab.active {
  display: block;
}

.pop_career_form {
  position: fixed;
  z-index: 10;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  padding: 2rem;
  display: flex;
  overflow: auto;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all .15s linear;
}
.pop_career_form.called {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.pop_career_form.called .inner_pop_career_form {
  transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  transform: translateY(0);
  opacity: 1;
}
.pop_career_form .inner_pop_career_form {
  width: 100%;
  padding: 3rem;
  margin: auto;
  max-width: 700px;
  background: white;
  color: var(--blue);
  position: relative;
  transform: translateY(5%);
  opacity: 0;
  border: 1px solid #707070;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.5);
}
.pop_career_form .inner_pop_career_form .close_career_pop {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  cursor: pointer;
}
.pop_career_form .inner_pop_career_form .close_career_pop img {
  width: 1.25rem;
}
.pop_career_form .inner_pop_career_form .close_career_pop:hover {
  opacity: .5;
}
.pop_career_form .inner_pop_career_form h4 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  display: block;
}
.pop_career_form .inner_pop_career_form p {
  font-size: var(--fs-s);
  margin-bottom: 1rem;
}
.pop_career_form .inner_pop_career_form p:last-of-type {
  margin-bottom: 0;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap {
  margin-top: 2rem;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap strong {
  font-size: var(--fs-m);
  color: var(--orange);
  display: block;
  margin-bottom: .5rem;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form {
  width: 100%;
  display: block;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .inner_careers_form_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .btn_wrap {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .btn_wrap button {
  background: var(--orange);
  color: white;
  padding: 1rem 3rem;
  border-radius: .5rem;
  border: none;
  font-size: var(--fs-m);
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input {
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input label {
  margin-bottom: .25rem;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input .input_wrap {
  background: #E7EAEC;
  position: relative;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input .input_wrap .error_message {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: red;
  font-size: calc(var(--fs-s) x .66);
  pointer-events: none;
  display: none;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input input[type="text"], .pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input input[type="email"], .pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input input[type="file"] {
  width: 100%;
  background: #E7EAEC;
  border: none;
  padding: 1rem;
}
.pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input input[type="file"] {
  padding: .8rem 1rem;
}

.testi {
  position: relative;
}
.testi .inner {
  max-width: var(--max-width);
  padding: 3rem 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.testi h2 {
  font-size: var(--fs-l);
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}
.testi .testi_swiper {
  overflow: visible;
}
.testi .testimonials {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.testi .testimonials .each_testi {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 4.5rem;
}
.testi .testimonials .each_testi:last-of-type {
  margin-bottom: 0;
}
.testi .testimonials .each_testi:nth-child(even) {
  flex-flow: row-reverse;
}
.testi .testimonials .each_testi:nth-child(even) img {
  margin-right: 0;
  margin-left: 2.5rem;
}
.testi .testimonials .each_testi:nth-child(even) .testi_des {
  text-align: right;
}
.testi .testimonials .each_testi:nth-child(even) p {
  text-align: right;
}
.testi .testimonials .each_testi strong {
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  margin-bottom: .35rem;
  display: block;
}
.testi .testimonials .each_testi img {
  border-radius: 50%;
  margin-right: 2.5rem;
  width: clamp(6.5rem, 12vw, 9.5rem);
}
.testi .testimonials .each_testi p {
  text-align: left;
  font-size: var(--fs-m);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* number of lines to show */
}

.management_profile {
  position: relative;
}
.management_profile:before {
  height: 50%;
  width: 100%;
  position: absolute;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  mix-blend-mode: overlay;
  content: '';
  z-index: 0;
}
.management_profile h2 {
  font-size: var(--fs-l);
  display: block;
  text-align: center;
  padding: 0 3rem;
}
.management_profile .inner {
  max-width: var(--max-width);
  padding: 5rem 0rem;
  padding-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.management_profile .profiles {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.management_profile .profiles .each_profile {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
  margin-left: 1.5%;
  margin-right: 1.5%;
  cursor: pointer;
}
.management_profile .profiles .each_profile:hover .img_wrap span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.management_profile .profiles .each_profile .img_wrap {
  border-radius: 10rem;
  overflow: hidden;
  position: relative;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.management_profile .profiles .each_profile .img_wrap > img {
  width: 100%;
  vertical-align: top;
}
.management_profile .profiles .each_profile .img_wrap span {
  border-radius: 10rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  background: rgba(241, 90, 34, 0.5);
  transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
}
.management_profile .profiles .each_profile .img_wrap span img {
  width: 2rem;
}
.management_profile .profiles .each_profile .info {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.management_profile .profiles .each_profile .info h4 {
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  margin-bottom: .25rem;
  text-transform: uppercase;
}
.management_profile .profiles .each_profile .info small {
  display: block;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  text-transform: capitalize;
}
.management_profile .profiles .each_profile p {
  font-size: var(--fs-m);
  display: block;
  margin-bottom: 2rem;
}
.management_profile .profiles .each_profile p .complete {
  display: none;
}
.management_profile .profiles .each_profile .btn_wrap {
  margin-top: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}
.management_profile .profiles .each_profile .btn_wrap a.read_more {
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: var(--orange);
  color: white;
  font-size: var(--fs-m);
  transition: all .35s;
}

.pop_mngt_profile {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  display: flex;
  padding: 2rem;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .15s linear;
}
.pop_mngt_profile.called {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pop_mngt_profile.called .inner_pop_mngt_profile {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}
.pop_mngt_profile .inner_pop_mngt_profile {
  color: var(--blue);
  background: white;
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 3rem;
  position: relative;
  font-size: var(--fs-s);
  transform: translateY(5%);
  opacity: 0;
}
.pop_mngt_profile .inner_pop_mngt_profile .close_pop_mngt_profile {
  position: absolute;
  padding: 1.5rem;
  top: 0;
  right: 0;
  cursor: pointer;
}
.pop_mngt_profile .inner_pop_mngt_profile .close_pop_mngt_profile:hover {
  opacity: .5;
}
.pop_mngt_profile .inner_pop_mngt_profile .close_pop_mngt_profile img {
  width: 1.5rem;
}
.pop_mngt_profile .inner_pop_mngt_profile .each_mngt_profile {
  display: none;
}
.pop_mngt_profile .inner_pop_mngt_profile .each_mngt_profile.active {
  display: block;
}
.pop_mngt_profile .inner_pop_mngt_profile .top {
  display: flex;
  margin-bottom: 2rem;
}
.pop_mngt_profile .inner_pop_mngt_profile .top .left {
  margin-right: 2rem;
}
.pop_mngt_profile .inner_pop_mngt_profile .top .left img {
  width: clamp(8rem, 16vw, 14rem);
  border-radius: 12rem;
}
.pop_mngt_profile .inner_pop_mngt_profile .top .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pop_mngt_profile .inner_pop_mngt_profile .top .right strong {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  text-transform: uppercase;
}
.pop_mngt_profile .inner_pop_mngt_profile .top .right small {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.main_event_page {
  padding: 0 3rem;
}
.main_event_page .inner {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(2rem, 7vw, 6rem) 0;
  position: relative;
  z-index: 1;
}
.main_event_page .inner h1 {
  font-size: var(--fs-l);
  display: block;
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 4rem);
}
.main_event_page .inner .event_content {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1.5rem, 4.5vw, 3rem);
}
.main_event_page .inner .event_content strong {
  color: var(--orange);
  font-size: 1.725rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.main_event_page .inner .event_content p {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}
.main_event_page .inner .event_content p span {
  display: block;
  margin-bottom: 2rem;
}

.subpage_hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.subpage_hero.about .para_bg {
  background: url("../img/about_hero.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.services .para_bg {
  background: url("../img/services_hero.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.faqs .para_bg {
  background: url("../img/Trustee-Faqs.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event .para_bg {
      background: url('../img/event_1_hero.jpg') 50% 50% no-repeat;
      background-size: cover;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;

}

.subpage_hero.event_1 .para_bg {
  background: url("../img/SARANA LAW_2.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_2 .para_bg {
  background: url("../img/Sunpay_2.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_3 .para_bg {
  background: url("../img/Yi Fung Real_Estate_2.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_4 .para_bg {
  background: url("../img/RoseMarvel Property_2.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_5 .para_bg {
  background: url("../img/La Maison Plaza_3.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_6 .para_bg {
  background: url("../img/dragon Land_3.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_7 .para_bg {
  background: url("../img/Sarita2.JPG") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_8 .para_bg {
  background: url("../img/Borey Vimean_1.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_13 .para_bg {
  background: url("../img/david-banner-en.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.subpage_hero.event_9 .para_bg {
  background: url("../img/IPS 2.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.subpage_hero.event_14 .para_bg {
  background: url("../img/trustee_win_bg_banner.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.subpage_hero.event_15 .para_bg {
  background: url("../img/event15/event15_01.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.subpage_hero.event_16 .para_bg {
  background: url("../img/event16/event16_5.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.subpage_hero.event_17 .para_bg {
  background: url("../img/event17/event17-01.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}


.subpage_hero.event_10 .para_bg {
  background: url("../img/BCH 1.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.subpage_hero.event_11 .para_bg {
  background: url("../img/best_practices_with_singapore_1.jpeg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.subpage_hero.event_12 .para_bg {
  background: url("../img/mou_v1_land_investment_cover_1.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.subpage_hero.event_18 .para_bg {
  background: url("../img/Trustee-Award_Web-Banner 1690x600px.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}


.subpage_hero.careers .para_bg {
  background: url("../img/careers_hero.jpg") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.about_content {
  position: relative;
  padding: 8rem 0 3rem;
  z-index: 1;
}
.about_content .left {
  position: absolute;
  max-width: 850px;
  top: 0;
  right: 52%;
  width: 100%;
  height: 100%;
}
.about_content .left img {
  position: absolute;
  max-width: clamp(20rem, 30vw, 27rem);
}
.about_content .left img:nth-of-type(1) {
  top: 7rem;
  left: 3rem;
}
.about_content .left img:nth-of-type(2) {
  bottom: 6rem;
  right: 1rem;
}
.about_content .top {
  display: flex;
}
.about_content .top .top_inner {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}
.about_content .right {
  width: 52%;
  margin-left: 48%;
  padding-right: 0;
  padding-bottom: 5rem;
}
.about_content .right .right_inner h2 {
  font-size: var(--fs-l);
  display: block;
  margin-bottom: 2rem;
}
.about_content .right .right_inner p {
  font-size: var(--fs-m);
}
.about_content .right .right_inner p span {
  display: block;
  margin-bottom: 1.5rem;
}
.about_content .right .right_inner p span:last-of-type {
  margin-bottom: 0;
}

.about_content_mid .inner {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}
.about_content_mid .big_title {
  display: block;
  padding-bottom: clamp(1rem, 3vw, 2rem);
}
.about_content_mid .big_title strong {
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  display: block;
}
.about_content_mid .big_title span {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.about_content_mid .red_ball_des p {
  font-size: var(--fs-m);
}
.about_content_mid .red_ball_des p span {
  margin-bottom: 1.5rem;
  display: block;
}
.about_content_mid .red_ball_des p span:last-of-type {
  margin-bottom: 0;
}
.about_content_mid .red_ball_wrap {
  padding: 0;
  margin-top: 3rem;
  margin-bottom: 5rem;
  position: relative;
}
.about_content_mid .red_ball_wrap .pointer_eles {
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about_content_mid .red_ball_wrap .top_right_ele,
.about_content_mid .red_ball_wrap .mid_right_ele,
.about_content_mid .red_ball_wrap .bottom_right_ele {
  position: relative;
  margin: 1rem 0;
}
.about_content_mid .red_ball_wrap .top_right_ele span,
.about_content_mid .red_ball_wrap .mid_right_ele span,
.about_content_mid .red_ball_wrap .bottom_right_ele span {
  display: inline-block;
  position: relative;
  align-self: flex-start;
  font-weight: bold;
  font-size: clamp(1.25rem, 2.25vw, 1.75rem);
  z-index: 1;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: var(--orange);
  box-shadow: 0.5rem 0.5rem 0 0 rgba(0, 0, 0, 0.25);
}
.about_content_mid .red_ball_wrap .top_right_ele:after,
.about_content_mid .red_ball_wrap .mid_right_ele:after,
.about_content_mid .red_ball_wrap .bottom_right_ele:after {
  position: absolute;
  width: 50%;
  background: var(--orange);
  right: 100%;
  height: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '';
}
.about_content_mid .red_ball_wrap .top_right_ele {
  margin-top: 0 !important;
  margin-left: 22%;
}
.about_content_mid .red_ball_wrap .mid_right_ele {
  margin-left: 28%;
  /*            top: 50%;
              left: 55%;
              transform: translateY(-50%);*/
}
.about_content_mid .red_ball_wrap .bottom_right_ele {
  margin-bottom: 0 !important;
  margin-left: 22%;
  /*            bottom: 0;
              left: 45%;*/
}
.about_content_mid .red_ball {
  width: 26%;
  padding-bottom: 26%;
  position: relative;
}
.about_content_mid .red_ball:after {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: linear-gradient(to bottom right, var(--orange), #AA3F18);
  background-size: contain;
  content: '';
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: 0.5rem 0.5rem 0 0 rgba(0, 0, 0, 0.25);
}
.about_content_mid .red_ball span {
  position: absolute;
  z-index: 4;
  font-size: clamp(1.8rem, 3.25vw, 2.5rem);
  font-weight: bold;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.vision {
  margin: 3rem 0;
  padding: clamp(2.5rem, 4.5vw, 3.5rem) 3rem;
  background: linear-gradient(to right, #002e6e, rgba(0, 46, 110, 0.66) 75%, rgba(0, 46, 110, 0));
}
.vision .inner {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.vision .inner .des_wrap {
  margin-right: 20%;
}
.vision .inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  line-height: 1;
}
.vision .inner h2 img {
  width: 3rem;
  margin-right: 1.5rem;
}
.vision .inner span {
  font-size: var(--fs-m);
}

.mission {
  margin: 3rem 0 0;
  padding: clamp(2.5rem, 4.5vw, 3.5rem) 3rem;
  background: linear-gradient(to left, #f15a22, rgba(241, 90, 34, 0.66) 75%, rgba(241, 90, 34, 0));
}
.mission .inner {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.mission .inner .des_wrap {
  margin-left: 20%;
}
.mission .inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  line-height: 1;
}
.mission .inner h2 img {
  width: 3rem;
  margin-right: 1.5rem;
}
.mission .inner span {
  font-size: var(--fs-m);
}

.value {
  padding: 5rem 3rem;
}
.value .inner {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.value .left {
  width: 50%;
}
.value .left h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  line-height: 1;
}
.value .left h2 img {
  width: 3rem;
  margin-right: 1.5rem;
}
.value .left p {
  font-size: var(--fs-m);
}
.value .left p span {
  margin-bottom: 1.5rem;
  display: block;
}
.value .left p span:last-of-type {
  margin-bottom: 0;
}
.value .right {
  width: 50%;
  padding-left: 15rem;
  overflow: hidden;
  position: relative;
}
.value .right img {
  opacity: 1;
  pointer-events: none;
}
.value .right .para_bg {
  top: 0;
  opacity: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 110%;
  background: url("../img/about_img_03_portrait.jpg") 50% 50% no-repeat;
  background-size: cover;
  z-index: 2;
}

.service_process {
  margin-top: clamp(2rem, 7vw, 5rem);
  margin-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.service_process > strong {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
  font-size: var(--fs-l);
}
.service_process .swiper {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  overflow: visible;
}
.service_process .swiper-button-next, .service_process .swiper-button-prev {
  visibility: hidden;
}
.service_process .swiper-button-next {
  background: url("../img/next.svg") 50% 50% no-repeat rgba(255, 255, 255, 0.33);
  background-size: 1rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: .5rem;
  right: 0;
}
.service_process .swiper-button-prev {
  background: url("../img/prev.svg") 50% 50% no-repeat rgba(255, 255, 255, 0.33);
  background-size: 1rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: .5rem;
  left: 0;
}
.service_process .swiper-slide {
  padding: 0 1.5rem;
}
.service_process .swiper-slide .head {
  width: 100%;
  display: flex;
}
.service_process .swiper-slide .head .head_tail, .service_process .swiper-slide .head .head_head {
  flex-shrink: 0;
}
.service_process .swiper-slide .head .head_body {
  flex: 1;
  padding: 0 .5rem;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.service_process .swiper-slide .head .head_body:after, .service_process .swiper-slide .head .head_body:before {
  position: absolute;
  height: 100%;
  top: 0;
  width: 2px;
  background: var(--orange);
  z-index: 1;
  pointer-events: none;
  content: '';
}
.service_process .swiper-slide .head .head_body:before {
  left: -1px;
}
.service_process .swiper-slide .head .head_body:after {
  right: -1px;
}
.service_process .swiper-slide .head .head_body h3 {
  font-size: 1rem;
  text-align: center;
  display: block;
  position: relative;
  z-index: 2;
}
.service_process .swiper-slide .head .head_body span {
  text-align: center;
  display: block;
  position: relative;
  z-index: 2;
}
.service_process .swiper-slide .body {
  margin-top: 2rem;
}
.service_process .swiper-slide .body strong {
  display: block;
}
.service_process .swiper-slide .body .each_ul_group {
  margin-bottom: 1.5rem;
}
.service_process .swiper-slide .body .each_ul_group ul li {
  position: relative;
  padding: .25rem 0;
  padding-left: 1.35rem;
}
.service_process .swiper-slide .body .each_ul_group ul li:before {
  content: '';
  width: .5rem;
  height: .5rem;
  border-radius: 1rem;
  background: white;
  position: absolute;
  top: .45rem;
  left: 0;
}

.fund_retention_service_content {
  margin-top: clamp(3rem, 9vw, 8rem);
}
.fund_retention_service_content h4 {
  display: block;
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: normal;
  margin-bottom: 1rem;
  padding: 0 3rem;
}
.fund_retention_service_content .imp_note_wrap {
  padding: 0 3rem;
}
.fund_retention_service_content .imp_note {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 3rem;
  display: flex;
}
.fund_retention_service_content .imp_note .left {
  width: 30%;
}
.fund_retention_service_content .imp_note .right {
  width: 70%;
}
.fund_retention_service_content .imp_note .right strong {
  display: block;
  margin-bottom: .5rem;
}
.fund_retention_service_content .imp_note .right ul li {
  position: relative;
  padding: .15rem;
  padding-left: 1.35rem;
}
.fund_retention_service_content .imp_note .right ul li:before {
  content: '';
  width: .5rem;
  height: .5rem;
  border-radius: 1rem;
  background: white;
  position: absolute;
  top: .35rem;
  left: 0;
}
.fund_retention_service_content .service_fee_wrap {
  background: var(--blue);
  padding: 3rem;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table {
  width: 100%;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table thead tr th:nth-of-type(2), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table thead tr th:nth-of-type(4), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table thead tr th:nth-of-type(6) {
  padding-top: 1.5rem;
  border-radius: 1rem 1rem 0 0;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table tr:last-of-type td:nth-of-type(2), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table tr:last-of-type td:nth-of-type(4), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table tr:last-of-type td:nth-of-type(6) {
  padding-bottom: 1.5rem;
  border-radius: 0 0 1rem 1rem;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table th {
  font-size: var(--fs-m);
  font-weight: normal;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table th:nth-of-type(1) {
  padding-right: 1rem;
  width: 30%;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table th:nth-of-type(3), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table th:nth-of-type(5) {
  width: .5%;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table th:nth-of-type(2), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table th:nth-of-type(4), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table th:nth-of-type(6) {
  background: rgba(0, 0, 0, 0.3);
  width: 23%;
  padding: 1rem;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table th:first-of-type {
  text-align: left;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table td {
  font-size: var(--fs-m);
  font-weight: bold;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table td:nth-of-type(1) {
  padding-right: 1rem;
  width: 30%;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table td:nth-of-type(3), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table td:nth-of-type(5) {
  width: .5%;
}
.fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table td:nth-of-type(2), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table td:nth-of-type(4), .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner table td:nth-of-type(6) {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  width: 23%;
  padding: 1rem;
}
.fund_retention_service_content .service_fee_wrap .service_fees_label {
  font-size: var(--fs-m);
  width: 28%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.fund_retention_service_content .service_fee_wrap .service_fees_label strong {
  display: block;
  padding: .5rem 0;
}
.fund_retention_service_content .service_fee_wrap .service_fees_label span {
  display: block;
  margin-bottom: 1rem;
}
.fund_retention_service_content .service_fee_wrap .service_fees {
  width: 72%;
  display: flex;
  flex: 1;
  justify-content: space-between;
}
.fund_retention_service_content .service_fee_wrap .each_service_fee {
  font-size: var(--fs-m);
  width: 32%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.fund_retention_service_content .service_fee_wrap .each_service_fee strong {
  display: block;
  text-align: center;
  padding: .5rem 0;
}
.fund_retention_service_content .service_fee_wrap .each_service_fee span {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.fees_for_trust_reg_wrap {
  margin: clamp(3rem, 9vw, 8rem) 0;
}
.fees_for_trust_reg_wrap h4 {
  display: block;
  text-align: center;
  font-size: var(--fs-l);
  margin-bottom: 1rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.fees_for_trust_reg_wrap .service_fee_wrap {
  background: var(--blue);
  padding: 3rem;
}
.fees_for_trust_reg_wrap .service_fee_wrap .reg_fee_extra_labels {
  display: flex;
  width: 100%;
}
.fees_for_trust_reg_wrap .service_fee_wrap .reg_fee_extra_labels .right {
  width: 72%;
  margin-left: auto;
  display: flex;
}
.fees_for_trust_reg_wrap .service_fee_wrap .reg_fee_extra_labels .right .extra_label {
  width: 50%;
  padding: 1rem 2rem;
  text-align: center;
  font-size: var(--fs-m);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner h5 {
  display: block;
  text-align: center;
  font-size: var(--fs-m);
  margin-bottom: 1.5rem;
  width: 100%;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1, .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px 0;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 thead tr th:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 thead tr th:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 thead tr th:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 thead tr th:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 thead tr th:nth-of-type(6), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 thead tr th:nth-of-type(7), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 thead tr th:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 thead tr th:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 thead tr th:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 thead tr th:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 thead tr th:nth-of-type(6), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 thead tr th:nth-of-type(7) {
  padding-top: 1.5rem;
  border-radius: 1rem 1rem 0 0;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 tr:last-of-type td:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 tr:last-of-type td:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 tr:last-of-type td:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 tr:last-of-type td:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 tr:last-of-type td:nth-of-type(6), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 tr:last-of-type td:nth-of-type(7), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 tr:last-of-type td:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 tr:last-of-type td:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 tr:last-of-type td:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 tr:last-of-type td:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 tr:last-of-type td:nth-of-type(6), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 tr:last-of-type td:nth-of-type(7) {
  padding-bottom: 1.5rem;
  border-radius: 0 0 1rem 1rem;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th, .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th {
  font-size: var(--fs-m);
  font-weight: normal;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(1), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(1) {
  padding-right: 1rem;
  width: 28%;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(6), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(7), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(6), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(7) {
  background: rgba(0, 0, 0, 0.3);
  width: 18%;
  padding: 1rem;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:first-of-type, .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:first-of-type {
  text-align: left;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td, .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 td {
  font-size: var(--fs-m);
  font-weight: bold;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(1), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 td:nth-of-type(1) {
  padding-right: 1rem;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(6), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(7), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 td:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 td:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 td:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 td:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 td:nth-of-type(6), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 td:nth-of-type(7) {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(1), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_2 th:nth-of-type(3) {
  width: 33.3333%;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner:last-of-type {
  margin-top: 3rem;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner:last-of-type .each_service_fee {
  width: calc(50% - .5rem);
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fees_label {
  font-size: var(--fs-m);
  width: 28%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fees_label strong {
  display: block;
  padding: .5rem 0;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fees_label span {
  display: block;
  flex: 1;
  margin-bottom: 1rem;
}
.fees_for_trust_reg_wrap .service_fee_wrap .service_fees {
  width: 72%;
  display: flex;
  flex: 1;
  justify-content: space-between;
}
.fees_for_trust_reg_wrap .service_fee_wrap .each_service_fee {
  font-size: var(--fs-m);
  width: calc(25% - .75rem);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.fees_for_trust_reg_wrap .service_fee_wrap .each_service_fee strong {
  display: block;
  text-align: center;
  padding: .5rem 0;
}
.fees_for_trust_reg_wrap .service_fee_wrap .each_service_fee span {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
  flex: 1;
}

.hold_property_content {
  margin-top: 5rem;
}
.hold_property_content h1 {
  display: block;
  text-align: center;
  font-size: var(--fs-l);
  margin-bottom: 2rem;
}
.hold_property_content h1 small {
  display: block;
  text-align: center;
  margin-top: .35rem;
  font-weight: normal;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}
.hold_property_content .flows_wrap {
  display: grid;
  grid-template-columns: 50% 50%;
}
.hold_property_content .flows_wrap .each_flow {
  border-right: 1px solid var(--orange);
  padding: 2rem;
  position: relative;
  font-size: var(--fs-m);
}
.hold_property_content .flows_wrap .each_flow:after {
  width: calc(100% - 4rem);
  left: 2rem;
  height: 1px;
  background: var(--orange);
  position: absolute;
  bottom: 0;
  content: '';
}
.hold_property_content .flows_wrap .each_flow:last-of-type:after {
  display: none;
}
.hold_property_content .flows_wrap .each_flow:nth-child(even) {
  border-right: none;
}
.hold_property_content .flows_wrap .each_flow .flow_head {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  color: var(--orange);
}
.hold_property_content .flows_wrap .each_flow .flow_head strong {
  font-size: clamp(1.25rem, 2.25vw, 1.7rem);
}
.hold_property_content .flows_wrap .each_flow .flow_head small {
  margin-left: 2.35rem;
}
.hold_property_content .flows_wrap .each_flow .flow_des {
  margin-left: 2.5rem;
}
.hold_property_content .flows_wrap .each_flow .flow_des span {
  display: block;
  margin-bottom: .5rem;
}
.hold_property_content .flows_wrap .each_flow ul li {
  position: relative;
  padding: .35rem 0;
  padding-left: 3rem;
}
.hold_property_content .flows_wrap .each_flow ul li:before {
  content: '';
  width: .7rem;
  height: .7rem;
  border-radius: 1rem;
  background: white;
  position: absolute;
  top: .675rem;
  left: 0;
}

.title {
  display: block;
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}
.title h2 {
  font-size: var(--fs-l);
}
.title p {
  text-align: center;
  font-size: var(--fs-m);
  margin-top: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.initial {
  display: block;
  text-align: center;
  font-size: var(--fs-l);
  margin-bottom: 1rem;
}

.requirement h2 {
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 4rem;
  font-size: var(--fs-m);
}
.requirement .reg_processes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2.5rem;
  margin-bottom: clamp(3rem, 9vw, 8rem);
}
.requirement .reg_processes .each_reg_process {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.requirement .reg_processes .each_reg_process img {
  margin-left: auto;
  margin-right: auto;
  width: clamp(4rem, 14vw, 12rem);
}
.requirement .reg_processes .each_reg_process strong {
  font-size: var(--fs-m);
  display: block;
  text-align: center;
  font-weight: normal;
  margin-top: 1.5rem;
}
.requirement .colla_processes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2.5rem;
}
.requirement .colla_processes .each_colla_process {
  display: flex;
  position: relative;
  padding: 1rem 0;
}
.requirement .colla_processes .each_colla_process:after {
  width: 80%;
  background: var(--orange);
  border-radius: 2.5rem;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  content: '';
}
.requirement .colla_processes .each_colla_process span {
  font-size: var(--fs-l);
  display: inline-block;
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.requirement .colla_processes .each_colla_process .des {
  flex: 1;
  padding: 1.5rem;
  text-align: center;
  color: var(--orange);
  background: white;
  border-radius: 1.5rem;
  font-size: var(--fs-m);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services_content {
  padding: clamp(2rem, 7vw, 6rem) 0 0;
}
.services_content .inner {
  max-width: var(--max-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}
.services_content .icons_wrap {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.services_content .icons_wrap > strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: normal;
  margin-bottom: 4rem;
  text-align: center;
}
.services_content .icons_wrap .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services_content .icons_wrap .each_icon {
  width: 30%;
  margin: 0 1.5%;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
}
.services_content .icons_wrap .each_icon > img {
  align-self: flex-start;
  margin-left: auto;
  margin-right: auto;
  width: clamp(6.5rem, 12vw, 10rem);
}
.services_content .icons_wrap .each_icon .icon_des {
  margin-top: 1.7rem;
}
.services_content .icons_wrap .each_icon .icon_des strong {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  display: block;
  text-align: center;
  margin-bottom: 1.7rem;
  font-weight: bold;
}
.services_content .icons_wrap .each_icon .icon_des span {
  line-height: 1.5;
  display: block;
  text-align: center;
}
.services_content .circle_thingy_wrap, .services_content .escrow_circle_thingy_wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.services_content .circle_thingy_wrap .circle_thingy_des, .services_content .escrow_circle_thingy_wrap .circle_thingy_des {
  margin-top: clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 30% 30% 30%;
  grid-gap: 3.5rem;
  margin-bottom: clamp(3rem, 8vw, 6rem);
}
.services_content .circle_thingy_wrap .circle_thingy_des .each_circle_thingy_des, .services_content .escrow_circle_thingy_wrap .circle_thingy_des .each_circle_thingy_des {
  display: flex;
  flex-direction: column;
}
.services_content .circle_thingy_wrap .circle_thingy_des .each_circle_thingy_des strong, .services_content .escrow_circle_thingy_wrap .circle_thingy_des .each_circle_thingy_des strong {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.services_content .circle_thingy_wrap .circle_thingy_des .each_circle_thingy_des span, .services_content .escrow_circle_thingy_wrap .circle_thingy_des .each_circle_thingy_des span {
  line-height: 1.5;
  font-size: var(--fs-m);
}
.services_content .circle_thingy_wrap .circle_thingy, .services_content .escrow_circle_thingy_wrap .circle_thingy {
  margin-top: 8rem;
  padding: 0 4rem;
  position: relative;
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}
.services_content .circle_thingy_wrap .circle_thingy .text_1, .services_content .circle_thingy_wrap .circle_thingy .text_2, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_1, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_2 {
  position: absolute;
  white-space: nowrap;
  z-index: 3;
  padding: .5rem 0;
}
.services_content .circle_thingy_wrap .circle_thingy .label_1, .services_content .circle_thingy_wrap .circle_thingy .label_2, .services_content .circle_thingy_wrap .circle_thingy .label_3, .services_content .escrow_circle_thingy_wrap .circle_thingy .label_1, .services_content .escrow_circle_thingy_wrap .circle_thingy .label_2, .services_content .escrow_circle_thingy_wrap .circle_thingy .label_3 {
  position: absolute;
  padding: 1.25rem 2rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--orange);
  white-space: nowrap;
  border-radius: 1rem;
  z-index: 3;
  box-shadow: 0.5rem 0.5rem 0 0 rgba(0, 0, 0, 0.25);
}
.services_content .circle_thingy_wrap .circle_thingy .label_1, .services_content .escrow_circle_thingy_wrap .circle_thingy .label_1 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 9%;
}
.services_content .circle_thingy_wrap .circle_thingy .label_2, .services_content .escrow_circle_thingy_wrap .circle_thingy .label_2 {
  top: -11%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
}
.services_content .circle_thingy_wrap .circle_thingy .label_3, .services_content .escrow_circle_thingy_wrap .circle_thingy .label_3 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5%;
}
.services_content .circle_thingy_wrap .circle_thingy .text_1, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_1 {
  bottom: calc(100% - .5rem);
  left: 19%;
}
.services_content .circle_thingy_wrap .circle_thingy .text_2, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_2 {
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.services_content .circle_thingy_wrap .circle_thingy .circle, .services_content .escrow_circle_thingy_wrap .circle_thingy .circle {
  position: relative;
  display: inline-block;
  justify-content: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.services_content .circle_thingy_wrap .circle_thingy .circle img, .services_content .escrow_circle_thingy_wrap .circle_thingy .circle img {
  position: relative;
  z-index: 1;
}
.services_content .circle_thingy_wrap .circle_thingy .circle:after, .services_content .escrow_circle_thingy_wrap .circle_thingy .circle:after {
  content: '';
  width: 100%;
  height: 100%;
  top: .5rem;
  left: .5rem;
  position: absolute;
  background: url("../img/circle_thingy_shadow.svg") 50% 50% no-repeat;
  background-size: 100% auto;
  opacity: .25;
}
.services_content .escrow_circle_thingy_wrap {
  margin-top: clamp(2.5rem, 7vw, 5rem);
}
.services_content .escrow_circle_thingy_wrap .circle_thingy {
  margin-top: 1.5rem;
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .trustor, .services_content .escrow_circle_thingy_wrap .circle_thingy .seller, .services_content .escrow_circle_thingy_wrap .circle_thingy .pbea {
  position: absolute;
  padding: 1.25rem 2rem;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  background: var(--orange);
  white-space: nowrap;
  border-radius: 1rem;
  z-index: 3;
  /*box-shadow: .5rem .5rem 0 0  rgba(0,0,0,0.25);*/
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_top_mid, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_bottom {
  position: absolute;
  width: 40%;
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_top_mid li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_bottom li {
  position: relative;
  text-indent: -1rem;
  line-height: 1.4;
  font-size: var(--fs-s);
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_top_mid {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
  margin-bottom: -.7rem;
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_top_mid li:before {
  content: '1.';
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_right {
  left: 86%;
  top: 58%;
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_right li:before {
  content: '2.';
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_bottom {
  top: 94%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_bottom li:before {
  content: '3.';
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_left {
  right: 82%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .text_left li:before {
  content: '4.';
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .trustor {
  top: 22%;
  right: 70%;
}
.main_content .title-content{
  margin-left: 20px;
}

.main_content .text-conent{
  margin-left: 40px;
  text-align: justify;
}
.main_content .algin-margin{
  margin-left: 20px;
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .seller {
  bottom: 18%;
  right: 70%;
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .pbea {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 75%;
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .circle {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.services_content .escrow_circle_thingy_wrap .circle_thingy .circle:after {
  display: none;
}

.main_content {
  position: relative;
}
.main_content:after {
  width: 100%;
  height: 100%;
  background: url("../img/rep_bottom_bg.png") bottom left repeat-x;
  background-size: auto 60rem;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.partners {
  display: flex;
  align-items: center;
  margin-top: .6rem;
  width: 100%;
}
.partners .swiper {
  width: 100%;
}
.partners .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.partners a {
  margin-right: 1rem;
}
.partners a:last-of-type {
  margin-right: 0;
}
.partners a img {
  vertical-align: bottom;
  width: clamp(4.5rem, 9vw, 7rem);
}

.float_zendesk_btn {
  bottom: .5rem;
}

footer {
  background: var(--orange);
  padding: 0 3rem;
}
footer .social_media {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
footer .social_media a {
  margin-right: 1.15rem;
  transition: all .35s;
}
footer .social_media a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
footer .social_media a img {
  width: 3rem;
}
footer .social_media a:last-of-type {
  margin-right: 0;
}
footer .inner_footer {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  padding: clamp(1rem, 3vw, 2rem) 3rem 4rem;
}
footer .inner_footer .left {
  width: 40%;
  color: var(--blue);
}
footer .inner_footer .left strong {
  font-weight: 500;
  font-size: var(--fs-m);
}
footer .inner_footer .right {
  width: 60%;
  flex-shrink: 0;
  margin-left: auto;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .inner_footer .right .each_footer_item {
  margin: .4rem 0;
}
footer .inner_footer .right .each_footer_item a {
  display: flex;
  align-items: center;
  color: #002E6E;
  font-size: var(--fs-m);
}
footer .inner_footer .right .each_footer_item a:first-of-type img {
  align-self: flex-start;
}
footer .inner_footer .right .each_footer_item a:hover span {
  opacity: .66;
}
footer .inner_footer .right .each_footer_item a span {
  text-align: right;
  transition: all .35s;
}
footer .inner_footer .right .each_footer_item a span.__mobile {
  display: none;
}
footer .inner_footer .right .each_footer_item a img {
  margin-left: 1.5rem;
  width: 2rem;
}

.coming_soon {
  display: block;
  text-align: center;
  font-size: var(--fs-l);
  text-align: center;
  padding: 4rem;
  padding-bottom: 1rem;
}

@media (max-width: 1680px) {
  .about_content .left {
    max-width: unset;
    width: 46%;
    right: auto;
    left: 0;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 13.25px;
  }

  .about_content .left img {
    width: 23vw;
  }
}
@media (max-width: 1300px) {
  :root {
    /*--fs-xl: clamp(3.25rem, 7vw, 5.3rem); 50px-150px*/
    /*--fs-lg:  clamp(1.725rem, 3.5vw, 2.725rem);*/
    /*--fs-l:  clamp(1.5rem, 3.4vw, 2.25rem); 30px-60px*/
    /*--fs-m: clamp(1rem, 2vw, 1.25rem); 18px-30px*/
  }

  .contact .left .inner .left_content {
    padding-left: 6rem;
  }

  .contact .left .inner .left_content span {
    font-size: 1.7rem;
  }

  .vision .inner h2,
  .mission .inner h2,
  .value .left h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .value .inner {
    width: 100%;
  }

  .major_block {
    padding: 0 3rem clamp(2rem, 6vw, 4rem);
  }
  .major_block .inner {
    width: 100%;
  }

  .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner,
  .fund_retention_service_content .imp_note,
  .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner {
    width: 100%;
  }

  .fees_for_trust_reg_wrap {
    margin: 5rem 0;
  }

  .requirement .reg_processes .each_reg_process img {
    width: 12rem;
  }
}
@media (max-width: 1200px) {
  .contact .right_content .form_wrap form .each_input.half_width {
    width: 100%;
  }

  header nav a {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .about_content_mid .red_ball span {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  }
}
@media (max-width: 1100px) {
  .services_content .escrow_circle_thingy_wrap .circle_thingy .circle {
    width: 70%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .pbea {
    left: 60%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right {
    left: 80%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left {
    right: 77%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left {
    width: 30%;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 12.5px;
  }

  .value .right {
    padding-left: 12rem;
  }

  .about_content_mid .red_ball {
    width: 30%;
    padding-bottom: 30%;
  }

  .vacancy .inner {
    width: 100%;
  }

  .major_block .inner {
    padding-left: 0;
    padding-right: 0;
  }

  .swiper-scrollbar {
    height: 6px;
  }

  .hold_property_content .flows_wrap .each_flow ul li:before {
    width: 0.6rem;
    height: 0.6rem;
    top: 0.55rem;
  }

  .requirement .colla_processes {
    grid-template-columns: 1fr 1fr;
  }

  .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner {
    padding-left: 0;
    padding-right: 0;
  }

  .major_block.events .inner .events_items {
    padding: 0;
  }

  .service_process {
    margin-bottom: 4rem;
  }
  .service_process .swiper-button-next, .service_process .swiper-button-prev {
    visibility: visible;
  }

  .about_content .right {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .about_content .top {
    flex-direction: column;
  }
  .about_content .top .left {
    position: relative;
    order: 2;
    width: 100%;
    margin-left: auto;
    padding-left: 9;
    padding-right: 9;
    margin-right: auto;
    display: flex;
  }
  .about_content .top .left img {
    position: static;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    width: 50%;
    max-width: 50%;
  }
  .about_content .top .top_inner {
    order: 1;
  }

  footer .inner_footer {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
  }
  footer .inner_footer .right .each_footer_item a span.__desktop {
    display: none;
  }
  footer .inner_footer .right {
    width: 100%;
  }
  footer .inner_footer .right .each_footer_item a span.__mobile {
    display: block;
  }
  footer .inner_footer .left {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    width: 100%;
    align-items: flex-end;
  }
  footer .inner_footer .left .partners {
    margin-top: 1rem;
    justify-content: flex-end;
  }

  .services_content .inner {
    width: 100%;
  }

  .service_process .swiper {
    width: calc(100% - 3rem);
    position: relative;
  }

  .major_block.events .inner .each_events_item .img_wrap .label {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .major_block.key_service .inner .each_key_service .img_wrap .label {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 4rem;
  }

  .contact .left .inner .left_content {
    padding-left: 3rem;
    margin-left: 0;
  }

  .about_content_mid .red_ball_wrap {
    padding-left: 0;
  }
}
@media (max-width: 850px) {
  .management_profile .profiles .each_profile p {
    margin-bottom: 1rem;
  }
  .management_profile .profiles .each_profile img {
    margin-right: 2rem;
  }
  .management_profile .profiles .each_profile h4 {
    margin-bottom: 1.5rem;
  }

  .vision, .mission {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mission {
    margin-bottom: 2rem;
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .circle {
    width: 55%;
  }

  footer .social_media a {
    margin-right: 1rem;
  }
  footer .social_media a img {
    width: 2.5rem;
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .pbea, .services_content .escrow_circle_thingy_wrap .circle_thingy .seller, .services_content .escrow_circle_thingy_wrap .circle_thingy .trustor {
    padding: 1rem 1.5rem;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .trustor, .services_content .escrow_circle_thingy_wrap .circle_thingy .seller {
    right: 63%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right {
    width: 25%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right {
    left: 74%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left {
    right: 67%;
  }
}
.hidden {
  display: none;
}

@media (max-width: 820px) {
  .events_list .each_events_item {
    width: 47%;
  }

  .vacancy .inner .top_des {
    width: 90%;
  }
  .vacancy h2 {
    margin-bottom: 2.5rem;
  }
  .vacancy .vac_tabs {
    margin-top: 0;
  }

  .vacancy .inner {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
    margin-bottom: 1rem;
  }

  footer .social_media {
    margin-bottom: 1.5rem;
  }

  .management_profile .profiles .each_profile {
    width: 46%;
    margin-bottom: 3rem;
  }

  .contact .contact_inner {
    flex-direction: column;
  }
  .contact .contact_inner .left, .contact .contact_inner .right {
    width: 100%;
  }
  .contact .contact_inner .left {
    padding-top: 0;
  }
  .contact .contact_inner .left .left_content span {
    margin-bottom: 1rem;
  }

  .management_profile .profiles .each_profile .btn_wrap a.read_more {
    padding: .7rem 1.5rem;
    border-radius: .5rem;
  }

  .management_profile .profiles .each_profile .des .des_content.__mobile {
    display: block;
  }
  .management_profile .profiles .each_profile .des .des_content.__desktop {
    display: none;
  }

  .management_profile h2 {
    text-align: left;
  }

  .mission .inner h2 img,
  .value .left h2 img,
  .vision .inner h2 img {
    width: 2.5rem;
  }

  .major_block.about .inner .btn_wrap a.read_more {
    border-radius: .5rem;
    padding: 0.7rem 1.5rem;
  }

  .major_block.about .inner .btn_wrap .go_to_page {
    border-radius: .5rem;
    padding: 1rem 3rem;
  }
  .major_block.about .inner .btn_wrap .go_to_page img {
    height: 1.2rem;
  }

  .about_content .right .right_inner h2 {
    text-align: center;
  }

  .vacancy .vac_tab_btns {
    flex-direction: column;
  }
  .vacancy .vac_tab_btns .tab_btn {
    width: 100%;
    border-radius: .5rem;
    margin-right: 0;
    margin-bottom: .5rem;
  }
  .vacancy .vac_tab_btns .tab_btn:last-of-type {
    margin-bottom: 0;
  }
  .vacancy .tab_item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .vacancy .tab_item .des {
    width: 100%;
    margin-right: 0;
    border: none;
    margin-bottom: 0;
    padding: 1.5rem 0;
  }
  .vacancy .tab_item .read_more {
    border-radius: .5rem;
    margin-bottom: 0;
    align-self: flex-end;
    padding: .5rem 1rem;
    border-radius: .5rem;
  }

  .testi .inner {
    padding: 3rem 1rem;
    margin-bottom: 0rem;
  }

  .value .right img {
    opacity: 0;
  }
  .value .right .para_bg {
    opacity: 1;
  }

  .services_content .icons_wrap .each_icon {
    padding: 0 .5rem;
  }
  .services_content .icons_wrap .each_icon .icon_des {
    margin-top: 1rem;
  }
  .services_content .icons_wrap .each_icon .icon_des strong {
    margin-bottom: 1rem;
  }

  .requirement {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .requirement .colla_processes {
    grid-template-columns: 1fr;
  }

  .requirement .reg_processes {
    grid-template-columns: 1fr 1fr;
  }
  .requirement .reg_processes .each_reg_process img {
    width: 10rem;
  }

  .fees_for_trust_reg_wrap .service_fee_wrap .reg_fee_extra_labels {
    margin-bottom: 0;
    /* padding-left: 3px; */
    /* padding-right: 3px; */
    margin-left: auto;
    margin-right: auto;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .reg_fee_extra_labels .left {
    width: 33.3333%;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .reg_fee_extra_labels .right {
    width: calc(66.6666%);
    justify-content: space-around;
    margin-right: 1.5px;
    margin-left: 1.5px;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .reg_fee_extra_labels .right .extra_label {
    width: calc(50% - 1.5px);
    padding: 1rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
    background: transparent;
    opacity: .5;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .reg_fee_extra_labels .right .extra_label.active {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
    /*color: var(--blue);*/
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 thead tr th:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 thead tr th:nth-of-type(5) {
    border-radius: 0;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th, .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td {
    width: calc(100% / 3);
    padding: .5rem;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(1), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(1) {
    padding-left: 0;
    padding-right: .5rem;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 th:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1 td:nth-of-type(5) {
    display: none;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1.show_ind_trust th:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1.show_ind_trust th:nth-of-type(3), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1.show_ind_trust td:nth-of-type(2), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1.show_ind_trust td:nth-of-type(3) {
    display: none;
  }
  .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1.show_ind_trust th:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1.show_ind_trust th:nth-of-type(5), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1.show_ind_trust td:nth-of-type(4), .fees_for_trust_reg_wrap .service_fee_wrap .service_fee_wrap_inner table.table_1.show_ind_trust td:nth-of-type(5) {
    display: table-cell;
  }

  .fund_retention_service_content .service_fee_wrap .service_fee_wrap_inner {
    padding: 0;
  }

  .__ind_trust {
    opacity: .5;
    cursor: pointer;
  }

  .__com_trust {
    opacity: .5;
    cursor: pointer;
  }

  .fund_retention_service_content .imp_note {
    padding-left: 0;
    padding-right: 0;
  }

  .hold_property_content {
    margin-top: 6rem;
  }

  .hold_property_content .flows_wrap .each_flow .flow_des,
  .hold_property_content .flows_wrap .each_flow .flow_head small {
    margin-left: 2rem;
  }

  .services_content .circle_thingy_wrap .circle_thingy {
    padding: 0;
  }

  .services_content .circle_thingy_wrap .circle_thingy, .services_content .escrow_circle_thingy_wrap .circle_thingy {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .services_content .circle_thingy_wrap .circle_thingy .label_1, .services_content .circle_thingy_wrap .circle_thingy .label_2, .services_content .circle_thingy_wrap .circle_thingy .label_3 {
    width: 28vw;
    text-align: center;
    box-shadow: none;
  }
  .services_content .circle_thingy_wrap .circle_thingy .text_1 {
    left: -10%;
    bottom: auto;
    top: 14%;
    width: 30%;
    white-space: normal;
  }
  .services_content .circle_thingy_wrap .circle_thingy .label_1 {
    left: auto;
    right: 70%;
  }
  .services_content .circle_thingy_wrap .circle_thingy .label_2 {
    top: -15%;
  }
  .services_content .circle_thingy_wrap .circle_thingy .label_3 {
    right: auto;
    left: 70%;
  }
  .services_content .circle_thingy_wrap .circle_thingy .circle {
    width: 70%;
  }
  .services_content .circle_thingy_wrap .circle_thingy .circle:after {
    display: none;
  }
  .services_content .circle_thingy_wrap .circle_thingy .circle img {
    content: url("../img/circle_thingy_mobile.svg");
  }

  .main_event_page .inner .event_content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .services_content .icons_wrap .icons .each_icon {
    width: 47%;
  }

  .main_event_page .inner .event_content strong {
    font-size: 1.35rem;
  }

  .main_event_page .inner .event_content img {
    width: 100%; 
    margin-top: 10px;
  }

  .services_content .circle_thingy_wrap .circle_thingy_des {
    display: flex;
    flex-direction: column;
  }
  .services_content .circle_thingy_wrap .circle_thingy_des .each_circle_thingy_des strong {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    display: block;
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .major_block.about {
    margin-bottom: 0;
  }

  header .inner_header {
    padding: 1.25rem 0;
  }

  .about_content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .about_content_mid .red_ball_wrap .pointer_eles {
    width: 70%;
  }

  .major_block .inner h2 {
    margin-bottom: 1.725rem;
  }

  .major_block.events .inner .swiper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact .left .inner .left_content span {
    font-size: 1.5rem;
  }

  .about_content_mid .red_ball_wrap .top_right_ele, .about_content_mid .red_ball_wrap .mid_right_ele, .about_content_mid .red_ball_wrap .bottom_right_ele {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
  .about_content_mid .red_ball_wrap .top_right_ele:after, .about_content_mid .red_ball_wrap .mid_right_ele:after, .about_content_mid .red_ball_wrap .bottom_right_ele:after {
    height: 3px;
  }

  .about_content .right,
  .about_content_mid .inner,
  .vision .inner,
  .mission .inner {
    width: 100%;
  }

  .value {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
  .value .inner {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .value .inner .left, .value .inner .right {
    width: 100%;
  }
  .value .inner .left {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 4rem;
  }
  .value .inner .right {
    padding: 0;
  }
  .value .inner .right img {
    max-width: unset;
    width: 100%;
  }

  .about_content_mid .red_ball_wrap {
    padding-left: 0;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
  }

  .subpage_hero {
    height: 60vh;
  }

  .major_block.events {
    padding-left: 0;
    padding-right: 0;
  }

  .major_block.key_service.is_service_subpage .inner .swiper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .title p {
    width: 100%;
  }

  .major_block.key_service {
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
  }
  .major_block.key_service .inner {
    width: 100%;
  }
  .major_block.key_service .inner .swiper {
    /*overflow: hidden;*/
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .major_block.key_service .inner .key_services {
    width: 100%;
  }
  .major_block.key_service .inner .each_key_service a:after {
    pointer-events: none;
  }

  .major_block.events .inner .each_events_item a:after {
    pointer-events: none;
  }

  .contact {
    flex-direction: column;
  }
  .contact .left {
    width: 100%;
    background: transparent;
  }
  .contact .left .inner {
    position: relative;
    z-index: 2;
  }
  .contact .right {
    width: 100%;
    padding: 0;
  }
  .contact .right:after {
    display: none;
  }
  .contact .right_content {
    max-width: unset;
    padding-right: 0;
  }
  .contact .right_content strong {
    padding-bottom: 0;
  }

  .main_hero .inner_main_hero {
    position: relative;
  }
  .main_hero .inner_main_hero .hero_text {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
    margin-left: auto;
    margin-right: auto;
  }
  .main_hero .inner_main_hero .hero_text > span {
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    text-align: center;
  }
  .main_hero .inner_main_hero .hero_text h1 {
    font-size: calc(var(--fs-xl) + 4vw);
  }

  .main_hero > img {
    content: url("../img/hero_bg_mobile.png");
  }

  header .mobile_menu {
    display: inline-block;
    margin-left: auto;
    cursor: pointer;
    padding: 1rem;
  }
  header .mobile_menu img {
    width: 2rem;
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 10;
    background: var(--blue);
    overflow: auto;
    -webkit-transform: translateY(-100vh);
    transform: translateY(-100vh);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  }
  header nav .nav_inner {
    margin: auto;
    display: flex;
    display: flex;
    padding: 3rem;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header nav.show {
    transform: translateY(0);
  }
  header nav.show a {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }
  header nav.show a:after {
    opacity: 0;
  }
  header nav.show a:nth-of-type(1) {
    transition-delay: .3s;
  }
  header nav.show a:nth-of-type(2) {
    transition-delay: .35s;
  }
  header nav.show a:nth-of-type(3) {
    transition-delay: .4s;
  }
  header nav.show a:nth-of-type(4) {
    transition-delay: .45s;
  }
  header nav.show a:nth-of-type(5) {
    transition-delay: .5s;
  }
  header nav.show a:nth-of-type(6) {
    transition-delay: .55s;
  }
  header nav.show a:hover:after {
    opacity: 1;
  }
  header nav.show a.active:after {
    opacity: 1;
  }
  header nav .close_menu {
    display: block;
    top: 2rem;
    right: 2rem;
  }
  header nav a {
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
    font-size: var(--fs-l);
    width: 60%;
    -webkit-transform: translateY(-70%);
    transform: translateY(-70%);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  header nav a.active {
    background-color: transparent;
  }
  header nav a:hover {
    color: var(--orange);
  }

  .hold_property_content .flows_wrap {
    grid-template-columns: auto;
    grid-gap: 1rem;
  }
  .hold_property_content .flows_wrap .each_flow {
    border-right: none;
  }
  .hold_property_content .flows_wrap .each_flow .flow_head {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .pop_mngt_profile .inner_pop_mngt_profile .close_pop_mngt_profile img {
    width: 1.25rem;
  }

  .major_block.key_service .inner .each_key_service .img_wrap .label, .major_block.events .inner .each_events_item .img_wrap .label {
    /*font-size: 1rem;*/
  }

  .management_profile .profiles .each_profile .img_wrap span img {
    width: 1.5rem;
  }

  .requirement h2 {
    margin-top: 2.5rem;
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy {
    padding: 0;
    margin-top: 1rem;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right {
    top: 62%;
    right: 0;
    left: auto;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_top_mid {
    bottom: 92%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_bottom {
    top: 92%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left {
    right: auto;
    left: 0;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_top_mid li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_bottom li {
    font-size: 1rem;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right {
    width: 20%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right {
    width: 23%;
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .pbea {
    white-space: normal;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .pbea, .services_content .escrow_circle_thingy_wrap .circle_thingy .trustor, .services_content .escrow_circle_thingy_wrap .circle_thingy .seller {
    /*font-size: 1.25rem;*/
  }

  .hold_property_content .flows_wrap .each_flow .flow_des, .hold_property_content .flows_wrap .each_flow .flow_head small {
    margin-left: 1.7rem;
  }
}
@media (max-width: 640px) {
  .services_content .icons_wrap .icons .each_icon {
    padding: 0 1rem;
    width: 46%;
    margin-right: 2%;
    margin-left: 2%;
  }

  .pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input {
    width: 100%;
    margin-right: 0;
    margin-bottom: .75rem;
  }
  .pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input:nth-of-type(1) {
    order: 1;
  }
  .pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input:nth-of-type(3) {
    order: 2;
  }
  .pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input:nth-of-type(2) {
    order: 3;
  }
  .pop_career_form .inner_pop_career_form .careers_form_wrap form .each_careers_form_input:nth-of-type(4) {
    order: 4;
  }

  .main_hero .inner_main_hero .hero_text {
    width: 100%;
  }

  .management_profile .profiles .each_profile h4 {
    margin-bottom: 1rem;
  }
  .management_profile .profiles .each_profile img {
    margin-right: 1rem;
  }

  .title {
    padding: 0;
  }
  .title p {
    width: 100%;
  }

  .fund_retention_service_content .service_fee_wrap .each_service_fee {
    width: 33.33333%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .fund_retention_service_content .service_fee_wrap .each_service_fee:nth-of-type(1) {
    border-radius: 1rem 0 0 1rem;
  }
  .fund_retention_service_content .service_fee_wrap .each_service_fee:nth-of-type(2) {
    border-radius: 0;
  }
  .fund_retention_service_content .service_fee_wrap .each_service_fee:nth-of-type(3) {
    border-radius: 0 1rem 1rem 0;
    border-right: none;
  }

  .service_process .swiper-button-next, .service_process .swiper-button-prev {
    background-color: transparent;
  }

  .service_process .swiper-slide {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    height: auto;
  }

  .services_content .circle_thingy_wrap .circle_thingy .label_1, .services_content .circle_thingy_wrap .circle_thingy .label_2, .services_content .circle_thingy_wrap .circle_thingy .label_3 {
    padding-bottom: 1rem;
    padding-top: 1rem;
    width: 12rem;
  }
  .services_content .circle_thingy_wrap .circle_thingy .label_1 {
    right: 70%;
  }
  .services_content .circle_thingy_wrap .circle_thingy .label_3 {
    left: 70%;
  }

  .major_block.key_service .inner .each_key_service:hover,
  .major_block.events .inner .each_events_item:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.1);
    position: relative;
    z-index: 3;
  }

  .major_block.key_service .inner .each_key_service a,
  .major_block.events .inner .each_events_item a {
    padding: .725rem 0;
  }

  header .mobile_menu img {
    width: 2rem;
  }

  .vision, .mission {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .about_content_mid .red_ball_wrap .top_right_ele, .about_content_mid .red_ball_wrap .mid_right_ele, .about_content_mid .red_ball_wrap .bottom_right_ele {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }
  .about_content_mid .red_ball_wrap .top_right_ele span, .about_content_mid .red_ball_wrap .mid_right_ele span, .about_content_mid .red_ball_wrap .bottom_right_ele span {
    border-radius: .75rem;
    padding: .65rem 1.25rem;
  }
  .about_content_mid .red_ball_wrap .top_right_ele:after, .about_content_mid .red_ball_wrap .mid_right_ele:after, .about_content_mid .red_ball_wrap .bottom_right_ele:after {
    height: 3px;
  }
}
@media (max-width: 550px) {
  .management_profile .profiles {
    margin-top: 2.5rem;
  }

  .contact .left .inner {
    padding: 2.5rem 0;
  }

  .services_content .icons_wrap .icons .each_icon {
    padding: 0 .5rem;
  }

  .major_block.key_service .inner .each_key_service > span img,
  .major_block.events .inner .each_events_item > span img,
  .events_list .each_events_item > span img {
    height: 1rem;
  }

  .services_content .icons_wrap {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .requirement {
    width: 90%;
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .circle {
    width: 50%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .pbea {
    top: 46%;
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_top_mid {
    bottom: 88%;
  }
  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_bottom {
    top: 88%;
  }

  .major_block.events .inner .each_events_item > span {
    bottom: 1rem;
    padding: 1rem 0;
  }
  .major_block.events .inner .each_events_item .img_wrap .label {
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .major_block.key_service .inner .each_key_service > span {
    bottom: 1rem;
    padding: 1rem 0;
  }
  .major_block.key_service .inner .each_key_service .img_wrap .label {
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact .left .inner .left_content h2 {
    /*font-size: 2.75rem;*/
  }
}
@media (max-width: 480px) {
  .fees_for_trust_reg_wrap .service_fee_wrap,
  header,
  footer,
  .about_content_mid .inner,
  .vision, .mission,
  .value .inner .left,
  .contact .contact_inner,
  .main_event_page,
  .about_content .top .top_inner,
  .services_content .inner,
  .fund_retention_service_content .service_fee_wrap,
  .fund_retention_service_content .imp_note_wrap,
  .management_profile .inner,
  .vacancy .inner,
  .main_hero .inner_main_hero,
  .major_block.about {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .management_profile .inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .management_profile h2 {
    padding: 0;
  }

  .about_content_mid .red_ball {
    width: 43%;
    padding-bottom: 43%;
  }
  .about_content_mid .red_ball span {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
  }

  .requirement .colla_processes .each_colla_process span {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .trustor, .services_content .escrow_circle_thingy_wrap .circle_thingy .seller, .services_content .escrow_circle_thingy_wrap .circle_thingy .pbea {
    border-radius: .5rem;
  }

  .major_block .inner h2 {
    margin-bottom: 1.5rem;
  }

  .testi .testimonials .each_testi:nth-child(even) img {
    margin-left: 1.5rem;
  }
  .testi .testimonials .each_testi img {
    margin-right: 1.5rem;
  }

  .partners a {
    /*width: calc(100% / 5);*/
    margin-right: .75rem;
  }

  .pop_career_form,
  .pop_mngt_profile {
    padding: 1.5rem;
  }

  .value .left h2 {
    margin-bottom: 1rem;
  }

  .pop_career_form .inner_pop_career_form h4 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
  }
  .pop_career_form .inner_pop_career_form .close_career_pop {
    padding: 1.25rem;
  }

  .about_content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .about_content .right {
    padding-bottom: 3rem;
  }

  .pop_mngt_profile .inner_pop_mngt_profile {
    padding: 2rem;
  }

  .main_hero .inner_main_hero .hero_text h1 {
    font-size: var(--fs-xl);
  }

  .zendesk {
    max-width: 280px;
    right: .5rem;
    bottom: .5rem;
  }

  .vacancy .inner .top_des {
    margin-bottom: 3rem;
  }

  .contact .left .inner .left_content h2 {
    /*font-size: 2.6rem;*/
  }

  .major_block.key_service .inner .each_key_service > span {
    bottom: 0;
  }
  .major_block.key_service .inner .each_key_service .img_wrap .label {
    /*align-items: center;*/
  }

  .major_block.events .inner .each_events_item > span {
    bottom: 0rem;
  }
  .major_block.events .inner .each_events_item .img_wrap .label {
    /*align-items: center;*/
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_right li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_top_mid li, .services_content .escrow_circle_thingy_wrap .circle_thingy .text_bottom li {
    font-size: .85rem;
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .seller {
    bottom: 15%;
  }

  .services_content .escrow_circle_thingy_wrap .circle_thingy .text_left {
    left: 1rem;
  }

  .services_content .circle_thingy_wrap .circle_thingy {
    margin-left: 0;
    margin-right: 0;
  }
  .services_content .circle_thingy_wrap .circle_thingy .text_1 {
    left: 0;
    width: 25%;
  }
  .services_content .circle_thingy_wrap .circle_thingy .circle {
    width: 60%;
  }
  .services_content .circle_thingy_wrap .circle_thingy .label_1 {
    right: auto;
    left: 0;
  }
  .services_content .circle_thingy_wrap .circle_thingy .label_3 {
    right: 0;
    left: auto;
  }

  .contact .left .inner .left_content {
    padding-right: 0;
  }

  footer .inner_footer {
    padding-left: 0;
    padding-right: 0;
  }
  footer .inner_footer .right .each_footer_item a img {
    margin-left: 1rem;
    width: 2rem;
  }

  .vision {
    background: linear-gradient(to right, #002e6e, rgba(0, 46, 110, 0.66) 70%, rgba(0, 46, 110, 0));
  }
  .vision .inner .des_wrap {
    margin-right: 33%;
  }

  .mission {
    background: linear-gradient(to left, #f15a22, rgba(241, 90, 34, 0.66) 70%, rgba(241, 90, 34, 0));
  }
  .mission .inner .des_wrap {
    margin-left: 33%;
  }

  .vision, .mission {
    margin: 2rem 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mission .inner h2 img, .value .left h2 img, .vision .inner h2 img {
    width: 2rem;
    margin-right: 1rem;
  }
}
@media (max-width: 400px) {
  .about_content_mid .red_ball_wrap .top_right_ele span, .about_content_mid .red_ball_wrap .mid_right_ele span, .about_content_mid .red_ball_wrap .bottom_right_ele span {
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=newstyle.css.map */

@media (min-width: 768px) { /* Tailwind's 'md' breakpoint */
  .service-title {
    top: -5rem !important;
  }
}

