* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #005095;
  --secondary: #60b540;
  --title: #191919;
  --text: #666666;
  --bg: #eff5f9;
  --bg2: #f7f9fb;
  --skewX: skewX(-11deg);
  --skewX2: skewX(-7deg);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex_middle {
  align-items: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -2;
  pointer-events: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  color: rgb(255, 255, 255);
  font-size: 1.8rem;
  line-height: 6.4rem;
  gap: 1.6rem;
  padding: 0px 3.5rem;
  font-weight: 500;
  letter-spacing: 0.012rem;
}
.btn::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  z-index: -1;
  border-radius: 0.8rem;
  background-color: var(--primary);
  transform: var(--skewX);
  transition: 0.3s;
}
.btn::after {
  display: inline-block;
  content: "";
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: url("https://crewinmixer.com//wp-content/plugins/sytech-fronteditor/sytpl/about1-about_banner-img_bg/assets/img/arrow-tr.svg") center center / contain no-repeat;
  transition: 0.3s;
  filter: contrast(0) brightness(2);
}
.btn:hover::before {
  background-color: var(--secondary);
  transform: skewX(0deg);
}
.btn:hover::after {
  transform: rotate(45deg);
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.head.sm_lh p {
  line-height: 2.8rem;
}
.head.white {
  color: rgb(255, 255, 255);
}
.head.white p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.018rem;
}
.head h1 {
  font-size: 6.6rem;
  line-height: 1.16667;
  font-weight: 700;
  letter-spacing: 0.14rem;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.about_banner {
  padding: 15rem 0px 1.5rem;
  overflow: hidden;
}
.about_banner::before {
  width: 61.6146%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  background-image: linear-gradient(
    to right,
    rgb(0, 15, 51) -4.3111%,
    transparent
  );
  opacity: 0.61;
  pointer-events: none;
  z-index: -1;
}
.about_banner .flex {
  min-height: 59.6rem;
  padding: 4rem 0px;
}
.about_banner .head {
  width: 66.159%;
  max-width: 76.8rem;
  padding-top: 3.6%;
}
.about_banner p {
  max-width: 52.5rem;
  margin-top: 1.7rem;
}
.about_banner .btn {
  margin-top: 2.9rem;
}
.about_banner .nums {
  position: relative;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 2.5rem 0px 2.8rem;
}
.about_banner .nums::before {
  width: calc(104% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50.2%, -50%) var(--skewX);
  border-radius: 1.2rem;
  border: 2px solid rgb(41, 55, 64);
  background-color: rgba(4, 23, 35, 0.79);
  content: "";
  z-index: -1;
}
.about_banner .nums ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 0px;
  padding-right: 4.8%;
}
.about_banner .nums li {
  position: relative;
  padding: 0.3rem 2rem 0.6rem;
}
.about_banner .nums li:nth-child(4n + 1)::before {
  display: none;
}
.about_banner .nums li::before {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 100%;
  background-color: rgb(255, 255, 255);
  opacity: 0.18;
  content: "";
  transform: rotate(10deg);
}
.about_banner .nums .wrap {
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
  letter-spacing: 0.13rem;
}
.about_banner .nums .wrap .num {
  color: rgb(255, 255, 255);
  font-size: 4.523rem;
}
.about_banner .nums .label {
  font-size: 1.696rem;
  opacity: 0.7;
  margin-top: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.012rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
  .about_banner .nums::before {
    width: calc(100% - 4px);
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 6rem;
  }
  .about_banner .nums .wrap {
    font-size: 3rem;
  }
  .about_banner .nums .wrap .num {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0px 20px;
    gap: 12px;
    letter-spacing: unset;
  }
  .btn::after,
  .btn_line::after {
    width: 10px;
    height: 10px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head.sm_lh p {
    line-height: 1.5;
  }
  div.head.white p {
    letter-spacing: unset;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0px 20px;
    gap: 12px;
    margin-top: 20px;
  }
  .about_banner {
    padding: 0px 0px 20px;
  }
  .about_banner .flex {
    min-height: unset;
    padding: 50px 0px;
  }
  .about_banner .head {
    padding: 0px;
  }
  .about_banner .nums {
    padding: 20px 0px;
  }
  .about_banner .nums::before {
    width: calc(100% - 4px);
    transform: translate(-50%, -50%) skewX(-5deg);
    border-radius: 10px;
  }
  .about_banner .nums ul {
    padding: 0px;
  }
  .about_banner .nums li {
    padding: 0px 10px;
  }
  .about_banner .nums .wrap {
    font-size: 18px;
    letter-spacing: unset;
  }
  .about_banner .nums .wrap .num {
    font-size: 20px;
  }
  .about_banner .nums .label {
    font-size: 14px;
    letter-spacing: unset;
    margin-top: 10px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
  .about_banner::before {
    background-color: rgb(0, 15, 51);
    width: 100%;
    opacity: 0.4;
  }
  .about_banner .nums ul {
    grid-template-columns: 1fr 1fr;
  }
  .about_banner .nums ul li:nth-child(2n + 1)::before {
    display: none;
  }
  .about_banner .head {
    width: 100%;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #005095;
  --secondary: #60b540;
  --title: #191919;
  --text: #666666;
  --bg: #eff5f9;
  --bg2: #f7f9fb;
  --skewX: skewX(-11deg);
  --skewX2: skewX(-7deg);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.flex_top {
  align-items: flex-start;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.gap {
  gap: 3rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
  aspect-ratio: inherit;
}
.swiper_btns {
  gap: 2.2rem;
  display: flex;
}
.swiper_btns div {
  position: relative;
  width: 6.7rem;
  cursor: pointer;
  transition: 0.3s;
}
.swiper_btns div::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  border-radius: 1rem;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  transition: 0.3s;
  transform: var(--skewX);
}
.swiper_btns div::after {
  content: "";
  display: block;
  padding-bottom: 86.5672%;
  transition: 0.3s;
  background: url("https://crewinmixer.com//wp-content/plugins/sytech-fronteditor/sytpl/about2-about_intro/assets/img/arrow.svg") center center / 28% no-repeat;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover::before {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: skewX(0deg);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns .swiper-button-disabled::before {
  border-color: rgba(25, 25, 25, 0.3);
  background-color: transparent;
  transform: var(--skewX);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  font-size: 1.6rem;
  color: rgb(100, 108, 109);
  line-height: normal;
  text-transform: uppercase;
  font-weight: 400;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.09rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 55%;
  content: "";
  background: url("https://crewinmixer.com//wp-content/plugins/sytech-fronteditor/sytpl/about2-about_intro/assets/img/icon-subtitle.svg") center center / contain no-repeat;
  margin-top: 1px;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: 0.145rem;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.about_intro {
  padding: 17.8rem 0px 8.75rem;
  overflow: hidden;
}
.about_intro .head {
  gap: 0.3rem 3rem;
}
.about_intro .head .subtitle,
.about_intro .head h2 {
  width: 100%;
}
.about_intro .head h3 {
  font-size: 2.6rem;
  line-height: 3.9rem;
  font-weight: 600;
  color: rgb(28, 28, 28);
  max-width: 38rem;
  margin-top: 5.1rem;
  letter-spacing: 0.04rem;
}
.about_intro p {
  max-width: 87.2rem;
  margin-top: 5.3rem;
}
.about_intro .swiper_btns {
  justify-content: flex-end;
  margin-top: 8.5rem;
  gap: 3rem;
}
.about_intro .about_intro_swiper {
  position: relative;
  margin-top: 4.4rem;
}
.about_intro .about_intro_swiper .bg {
  width: 71.8841%;
  height: 90.84%;
  position: absolute;
  right: 83.5%;
  top: -22.711%;
  z-index: -1;
}
.about_intro .about_intro_swiper .bg::before {
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  position: absolute;
  right: 0px;
  bottom: 0px;
  content: "";
  transform: var(--skewX2);
  border-radius: 1.6rem;
}
.about_intro .about_intro_swiper .swiper-slide {
  max-width: 61.087%;
}
.about_intro .about_intro_swiper .active .desc {
  transform: translateY(0px);
  opacity: 1;
}
.about_intro .item:hover img {
  transform: scale(1.02);
}
.about_intro .item .img {
  padding-bottom: 56.821%;
  mask: url("https://crewinmixer.com//wp-content/plugins/sytech-fronteditor/sytpl/about2-about_intro/assets/img/about-img1-mask.svg") center center / cover no-repeat;
}
.about_intro .item .desc {
  position: absolute;
  z-index: 2;
  left: 0px;
  bottom: 0px;
  right: 9.78%;
  min-height: 36.53%;
  max-height: 80%;
  display: flex;
  transition:
    0.4s,
    opacity 0.3s;
  padding: 5.6% 6.7% 2%;
  transform: translateY(100%);
  opacity: 0;
}
.about_intro .item .desc::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 1.5rem;
  background-color: var(--primary);
  z-index: -1;
  transform: var(--skewX2);
  content: "";
}
.about_intro .item .desc p {
  color: rgba(255, 255, 255, 0.85);
  overflow-y: auto;
  margin: 0px;
  max-width: 62.5rem;
  padding-right: 1rem;
  font-weight: 300;
  letter-spacing: 0.015rem;
}
.about_intro .item .desc p::-webkit-scrollbar {
  width: 4px;
}
.about_intro .item .desc p::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
}
.about_intro .item .title {
  font-size: 2.4rem;
  font-weight: 600;
  color: rgb(28, 28, 28);
  letter-spacing: 0.03rem;
  margin-top: 3.8rem;
}
.about_intro .float {
  width: 4.783%;
  padding-bottom: 5.5802%;
  position: absolute;
  left: -10.3%;
  bottom: -1.2%;
  border-radius: 0.5rem;
  content: "";
  z-index: -1;
  background-image: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.21;
  transform: var(--skewX2);
}
.about_intro .float2 {
  width: 8.696%;
  padding-bottom: 10.363%;
  position: absolute;
  right: -7.4%;
  top: -3.3%;
  border-radius: 0.8rem;
  content: "";
  z-index: -1;
  background-image: linear-gradient(to bottom, var(--secondary), transparent);
  opacity: 0.21;
  transform: var(--skewX2);
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2,
  .head.sm h2 {
    font-size: 4.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .gap {
    gap: 20px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    grid-template-columns: 14px 1fr;
    font-size: 14px;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: unset;
    gap: 8px;
  }
  div.head .subtitle::before {
    margin: 0px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  .about_intro {
    padding: 50px 0px;
  }
  .about_intro .head {
    display: block;
  }
  .about_intro .head h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 14px;
    letter-spacing: unset;
  }
  .about_intro .swiper_btns {
    margin-top: 20px;
    gap: 20px;
  }
  .about_intro .about_intro_swiper {
    margin-top: 30px;
  }
  .about_intro .item .desc {
    padding: 20px;
    transform: translateY(0px);
    opacity: 1;
  }
  .about_intro .item .desc::before {
    border-radius: 10px;
  }
  .about_intro .item .desc p {
    letter-spacing: unset;
  }
  .about_intro .item .title {
    font-size: 18px;
    letter-spacing: unset;
    margin-top: 20px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
  .about_intro .about_intro_swiper .swiper-slide {
    max-width: 100%;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #005095;
  --secondary: #60b540;
  --title: #191919;
  --text: #666666;
  --bg: #eff5f9;
  --bg2: #f7f9fb;
  --skewX: skewX(-11deg);
  --skewX2: skewX(-7deg);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.flex_middle {
  align-items: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.gap {
  gap: 3rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
  aspect-ratio: inherit;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  font-size: 1.6rem;
  color: rgb(100, 108, 109);
  line-height: normal;
  text-transform: uppercase;
  font-weight: 400;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.09rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 55%;
  content: "";
  background: url("https://crewinmixer.com/wp-content/plugins/sytech-fronteditor/sytpl/about3-about_vision/assets/img/icon-subtitle.svg") center center / contain no-repeat;
  margin-top: 1px;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: 0.145rem;
}
.about_vision {
  padding: 8.75rem 0px 16.7rem;
}
.about_vision .subtitle {
  margin-bottom: 1.2rem;
}
.about_vision .flex {
  margin-top: 5rem;
}
.about_vision .items {
  flex: 1 1 0%;
  width: 100%;
  max-width: 43.6rem;
  margin-top: 0.4rem;
}
.about_vision .items .item + .item {
  margin-top: 9.3rem;
}
.about_vision .items .item {
  display: flex;
  align-items: flex-start;
  gap: 5.8rem;
}
.about_vision .items .syedittext {
  flex: 1 1 0%;
}
.about_vision .items .icon {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  position: relative;
  z-index: 2;
  margin-left: 1.3rem;
  margin-top: 1.4rem;
}
.about_vision .items .icon::before,
.about_vision .items .icon::after {
  background-color: var(--primary);
  opacity: 0.1;
  transition: 0.3s;
  position: absolute;
  z-index: -1;
  content: "";
  transform: var(--skewX);
  border-radius: 1rem;
}
.about_vision .items .icon::before {
  width: 108.33%;
  height: 93.33%;
  top: -23.6667%;
  left: -17.6667%;
}
.about_vision .items .icon::after {
  width: 41.667%;
  height: 36.667%;
  bottom: -8.3333%;
  right: -21.6667%;
  border-radius: 0.4rem;
}
.about_vision .items h3 {
  font-size: 2.8rem;
  font-weight: 600;
  color: rgb(28, 28, 28);
  letter-spacing: 0.03rem;
}
.about_vision .items p {
  margin-top: 1.3rem;
}
.about_vision .rt {
  position: relative;
  width: 61.087%;
}
.about_vision .rt .img {
  padding-bottom: 56.821%;
  mask: url("https://crewinmixer.com/wp-content/plugins/sytech-fronteditor/sytpl/about3-about_vision/assets/img/about-img1-mask.svg") center center / cover no-repeat;
}
.about_vision .rt .img:hover img {
  transform: scale(1.02);
}
.about_vision .rt .float {
  width: 12.34%;
  padding-bottom: 14.48%;
  position: absolute;
  left: 1.1%;
  top: -10.65%;
  border-radius: 0.7rem;
  content: "";
  z-index: -1;
  background-image: linear-gradient(to bottom, var(--secondary), transparent);
  opacity: 0.21;
  transform: var(--skewX2);
}
.about_vision .rt .float2 {
  width: 9.5%;
  padding-bottom: 11.2812%;
  position: absolute;
  right: 0.5%;
  bottom: -11.27%;
  border-radius: 0.6rem;
  content: "";
  z-index: -1;
  background-image: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.21;
  transform: var(--skewX2);
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2,
  .head.sm h2 {
    font-size: 4.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .gap {
    gap: 20px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    grid-template-columns: 14px 1fr;
    font-size: 14px;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: unset;
    gap: 8px;
  }
  div.head .subtitle::before {
    margin: 0px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  .about_vision {
    padding: 50px 0px;
  }
  .about_vision .flex {
    margin-top: 30px;
  }
  .about_vision .items {
    margin: 0px;
  }
  .about_vision .items .item + .item {
    margin-top: 20px;
  }
  .about_vision .items .item {
    gap: 20px;
  }
  .about_vision .items .icon {
    width: 40px;
    height: 40px;
    margin: 0px;
  }
  .about_vision .items h3 {
    font-size: 18px;
    letter-spacing: unset;
  }
  .about_vision .items p {
    margin-top: 10px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
  .about_vision .rt {
    width: 100%;
  }
}

.tools_template_vendor .tools_template_box{
  padding: 4rem 0px;
  text-align: center;
}
.tools_template_vendor .tools_template_box input{
  padding: .8rem 1rem;
  border-radius: 5px;
  min-width: 300px;
  border: 1px #ddd solid;
}
.tools_template_vendor .tools_template_box button{
  background: white;
  border: 1px solid #f8f8f8;
  color: #4c4c4c;
  padding: 0.8rem 1.5rem;
  display: inline-block;
  font-weight: 500;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  background-color: #33bde9;
  border: 1px solid #33bde9;
  color: white;
  padding: 0.8rem 1.5rem;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #005095;
  --secondary: #60b540;
  --title: #191919;
  --text: #666666;
  --bg: #eff5f9;
  --bg2: #f7f9fb;
  --skewX: skewX(-11deg);
  --skewX2: skewX(-7deg);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.flex_top {
  align-items: flex-start;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.gap {
  gap: 3rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
  aspect-ratio: inherit;
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  font-size: 1.6rem;
  color: rgb(100, 108, 109);
  line-height: normal;
  text-transform: uppercase;
  font-weight: 400;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.09rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 55%;
  content: "";
  background: url("https://crewinmixer.com//wp-content/plugins/sytech-fronteditor/sytpl/about5-about_quality/assets/img/icon-subtitle.svg") center center / contain no-repeat;
  margin-top: 1px;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: 0.145rem;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.about_quality {
  padding: 16.3rem 0px 12.7rem;
}
.about_quality .head {
  gap: 0.3rem 3rem;
}
.about_quality .head .subtitle {
  width: 100%;
}
.about_quality h2 {
  max-width: 42rem;
}
.about_quality p {
  max-width: 47.1rem;
  margin-top: 2.6rem;
}
.about_quality .main {
  margin-top: 6.5rem;
}
.about_quality .main .lt {
  width: 57.8986%;
  position: relative;
}
.about_quality .main .lt .mask {
  position: absolute;
  width: 100%;
  padding-bottom: 51.3141%;
  left: 0px;
  top: 0px;
}
.about_quality .main .lt .mask .float {
  width: 12.8%;
  padding-bottom: 15.31%;
  position: absolute;
  left: -2.2%;
  top: -6.8%;
  border-radius: 0.7rem;
  content: "";
  z-index: -1;
  background-image: linear-gradient(to bottom, var(--secondary), transparent);
  opacity: 0.21;
  transform: var(--skewX2);
}
.about_quality .main .lt .mask .float2 {
  width: 8.14%;
  padding-bottom: 9.64%;
  position: absolute;
  right: 0.5%;
  bottom: -10.4%;
  border-radius: 0.5rem;
  content: "";
  z-index: -1;
  background-image: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.21;
  transform: var(--skewX2);
}
.about_quality .main .rt {
  flex: 1 1 0%;
  max-width: 45.6rem;
  width: 100%;
  margin-top: 1rem;
}
.about_quality .about_quality_swiper {
  overflow: hidden;
}
.about_quality .about_quality_swiper .img {
  padding-bottom: 51.3141%;
  mask: url("https://crewinmixer.com//wp-content/plugins/sytech-fronteditor/sytpl/about5-about_quality/assets/img/about-img4-mask.svg") center center / cover no-repeat;
}
.about_quality .about_quality_swiper .img:hover img {
  transform: scale(1.02);
}
.about_quality .about_quality_swiper .info {
  margin-top: 4.5rem;
}
.about_quality .about_quality_swiper .info h3 {
  font-size: 2.8rem;
  font-weight: 600;
  color: rgb(28, 28, 28);
  letter-spacing: 0.05rem;
}
.about_quality .about_quality_swiper .info p {
  max-width: 72.2rem;
  margin-top: 2.1rem;
}
.about_quality .nav_item {
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgb(219, 221, 221);
  transition: 0.3s;
  font-size: 2.8rem;
  font-weight: 500;
  color: rgb(160, 174, 181);
  letter-spacing: 0.06rem;
  padding: 3.6rem 0px 2.9rem;
}
.about_quality .nav_item.active {
  color: rgb(255, 255, 255);
  border-bottom-color: transparent;
  padding: 2.8rem 0px 2.5rem;
}
.about_quality .nav_item.active::before {
  opacity: 1;
}
.about_quality .nav_item::before {
  width: 111%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  z-index: -1;
  border-radius: 0.8rem;
  background-color: var(--primary);
  transform: translate(-52%, -50%) var(--skewX2);
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2,
  .head.sm h2 {
    font-size: 4.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .gap {
    gap: 20px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    grid-template-columns: 14px 1fr;
    font-size: 14px;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: unset;
    gap: 8px;
  }
  div.head .subtitle::before {
    margin: 0px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  .about_quality {
    padding: 50px 0px;
  }
  .about_quality .head {
    display: block;
  }
  .about_quality .main {
    margin-top: 30px;
    align-items: center;
  }
  .about_quality .main .rt {
    margin: 0px;
  }
  .about_quality .about_quality_swiper .info {
    margin-top: 20px;
  }
  .about_quality .about_quality_swiper .info h3 {
    font-size: 18px;
    letter-spacing: unset;
  }
  .about_quality .about_quality_swiper .info p {
    margin-top: 10px;
  }
  .about_quality .nav_item {
    font-size: 14px;
    padding: 14px 10px;
    letter-spacing: unset;
  }
  .about_quality .nav_item::before {
    width: 100%;
  }
  .about_quality .nav_item.active {
    padding: 14px 10px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
  .about_quality .main .lt {
    width: 100%;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #005095;
  --secondary: #60b540;
  --title: #191919;
  --text: #666666;
  --bg: #eff5f9;
  --bg2: #f7f9fb;
  --skewX: skewX(-11deg);
  --skewX2: skewX(-7deg);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
.swiper_box {
  position: relative;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.gap {
  gap: 3rem;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
  aspect-ratio: inherit;
}
.swiper_btns {
  gap: 2.2rem;
  display: flex;
}
.swiper_btns div {
  position: relative;
  width: 6.7rem;
  cursor: pointer;
  transition: 0.3s;
}
.swiper_btns div::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  border-radius: 1rem;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  transition: 0.3s;
  transform: var(--skewX);
}
.swiper_btns div::after {
  content: "";
  display: block;
  padding-bottom: 86.5672%;
  transition: 0.3s;
  background: url("https://crewinmixer.com//wp-content/plugins/sytech-fronteditor/sytpl/about6-about_certifications/assets/img/arrow.svg") center center / 28% no-repeat;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover::before {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: skewX(0deg);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns .swiper-button-disabled::before {
  border-color: rgba(25, 25, 25, 0.3);
  background-color: transparent;
  transform: var(--skewX);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  font-size: 1.6rem;
  color: rgb(100, 108, 109);
  line-height: normal;
  text-transform: uppercase;
  font-weight: 400;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.09rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 55%;
  content: "";
  background: url("https://crewinmixer.com//wp-content/plugins/sytech-fronteditor/sytpl/about6-about_certifications/assets/img/icon-subtitle.svg") center center / contain no-repeat;
  margin-top: 1px;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: 0.145rem;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.about_certifications {
  background-color: var(--bg2);
  padding: 13.6rem 0px 13.4rem;
  overflow: hidden;
}
.about_certifications .head {
  flex: 1 1 0%;
  max-width: 57.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 5.2%;
}
.about_certifications .subtitle {
  margin-bottom: 1.2rem;
}
.about_certifications p {
  max-width: 49.5rem;
  margin-top: 3.1rem;
}
.about_certifications .cert_list {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-left: -1.7rem;
  padding: 4.25rem 0px;
}
.about_certifications .cert_list::before {
  width: 100vw;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  content: "";
  background-color: rgb(255, 255, 255);
  z-index: -1;
  border-radius: 2rem;
  transform: var(--skewX);
}
.about_certifications .cert_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5.3rem;
}
.about_certifications .cert_list .img {
  width: 9rem;
  height: auto;
}
.about_certifications .rt {
  width: 52.029%;
  padding-bottom: 7.3rem;
}
.about_certifications .about_certifications_swiper {
  overflow: hidden;
  margin: 0px -1.5rem;
  padding: 0px 1.5rem;
}
.about_certifications .about_certifications_swiper .swiper-slide {
  transition:
    transform 0.3s,
    opacity 0.3s;
  max-width: 48.75%;
  opacity: 0;
}
.about_certifications .about_certifications_swiper .swiper-slide-next,
.about_certifications .about_certifications_swiper .swiper-slide-prev {
  opacity: 0.68;
}
.about_certifications .about_certifications_swiper .swiper-slide-active {
  opacity: 1;
}
.about_certifications .about_certifications_swiper .img {
  padding-bottom: 143.429%;
  overflow: unset;
}
.about_certifications .about_certifications_swiper .img .image {
  width: 89.7%;
  height: 89.7%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(155, 161, 165, 0.55) 0.7rem 0px 1rem;
}
.about_certifications .swiper_box {
  max-width: 61.6rem;
  margin: 6.3rem auto 0px;
}
.about_certifications .swiper_box .swiper_btns {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  justify-content: space-between;
}
.about_certifications .swiper_box .swiper_btns div {
  pointer-events: all;
}
.about_certifications .swiper_box .swiper_btns .swiper-button-disabled {
  pointer-events: none;
}
.about_certifications .about_certifications_intro_swiper {
  width: 65%;
  margin: 0px auto;
  overflow: hidden;
}
.about_certifications .about_certifications_intro_swiper .swiper-slide {
  font-size: 2.442rem;
  font-weight: 500;
  color: rgb(23, 23, 23);
  text-align: center;
  letter-spacing: 0.03rem;
}
.about_certifications .float {
  width: 4.783%;
  padding-bottom: 5.5802%;
  position: absolute;
  left: -10.9%;
  bottom: -8.1%;
  border-radius: 0.5rem;
  content: "";
  background-image: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.21;
  transform: var(--skewX2);
  z-index: 2;
}
.about_certifications .float2 {
  width: 8.696%;
  padding-bottom: 10.363%;
  position: absolute;
  right: -6.7%;
  top: -3.8%;
  border-radius: 0.8rem;
  content: "";
  background-image: linear-gradient(to bottom, var(--secondary), transparent);
  opacity: 0.21;
  transform: var(--skewX2);
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2,
  .head.sm h2 {
    font-size: 4.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
  .about_certifications .cert_list ul {
    gap: 3rem;
  }
  .about_certifications .cert_list .img {
    width: 8rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .gap {
    gap: 20px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    grid-template-columns: 14px 1fr;
    font-size: 14px;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: unset;
    gap: 8px;
  }
  div.head .subtitle::before {
    margin: 0px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  .about_certifications {
    padding: 50px 0px;
  }
  .about_certifications .head {
    padding: 0px;
    gap: 20px;
  }
  .about_certifications .cert_list {
    margin-left: 0px;
    padding: 20px 0px;
  }
  .about_certifications .cert_list::before {
    border-radius: 10px;
  }
  .about_certifications .cert_list ul {
    gap: 20px;
    justify-content: space-around;
  }
  .about_certifications .cert_list .img {
    width: 50px;
  }
  .about_certifications .rt {
    padding: 0px;
  }
  .about_certifications .swiper_box {
    margin-top: 30px;
  }
  .about_certifications
    .swiper_box
    .about_certifications_intro_swiper
    .swiper-slide {
    font-size: 16px;
    letter-spacing: unset;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
  .about_certifications .rt {
    width: 100%;
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #005095;
  --secondary: #60b540;
  --title: #191919;
  --text: #666666;
  --bg: #eff5f9;
  --bg2: #f7f9fb;
  --skewX: skewX(-11deg);
  --skewX2: skewX(-7deg);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
li {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
.center {
  text-align: center;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.btn_single {
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  width: 4.8rem;
}
.btn_single::after {
  display: block;
  content: "";
  padding-bottom: 87%;
  transition: 0.3s;
  background: url("https://crewinmixer.com/wp-content/plugins/sytech-fronteditor/sytpl/about7-about_resource/assets/img/arrow-r.svg") center center / 29.8% no-repeat;
  filter: contrast(0) brightness(2);
}
.btn_single::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  z-index: -1;
  border-radius: 0.7rem;
  background-color: var(--primary);
  transform: var(--skewX);
  transition: 0.3s;
}
.btn_single:hover::before {
  background-color: var(--primary);
  transform: skewX(0deg);
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  font-size: 1.6rem;
  color: rgb(100, 108, 109);
  line-height: normal;
  text-transform: uppercase;
  font-weight: 400;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.09rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 55%;
  content: "";
  background: url("https://crewinmixer.com/wp-content/plugins/sytech-fronteditor/sytpl/about7-about_resource/assets/img/icon-subtitle.svg") center center / contain no-repeat;
  margin-top: 1px;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: 0.145rem;
}
.about_resource {
  padding: 13.8rem 0px 22.7rem;
}
.about_resource .subtitle {
  margin-bottom: 1.2rem;
}
.about_resource .items {
  margin-top: 8.3rem;
}
.about_resource .items ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.4rem 2.4418%;
}
.about_resource .items .active .item::before {
  opacity: 1;
}
.about_resource .items .active .btn_single::before {
  background-color: var(--secondary);
}
.about_resource .items .active .icon::before,
.about_resource .items .active .icon::after {
  background-color: var(--secondary);
}
.about_resource .item {
  position: relative;
  z-index: 2;
  border-radius: 2rem;
  background-color: var(--bg2);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 9.064% 10.253% 7.578% 7.132%;
}
.about_resource .item::before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  border-radius: 2rem;
  border: 2px solid var(--primary);
  box-shadow: rgba(165, 165, 165, 0.35) 0px 1rem 1.5rem;
  background-color: rgb(255, 255, 255);
  left: 50%;
  top: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}
.about_resource .item .icon {
  width: 6rem;
  height: 6rem;
  position: relative;
  z-index: 2;
}
.about_resource .item .icon::before,
.about_resource .item .icon::after {
  background-color: var(--primary);
  opacity: 0.1;
  transition: 0.3s;
  position: absolute;
  z-index: -1;
  content: "";
  transform: var(--skewX);
  border-radius: 1rem;
}
.about_resource .item .icon::before {
  width: 108.33%;
  height: 93.33%;
  top: -20.6667%;
  left: -17.6667%;
}
.about_resource .item .icon::after {
  width: 41.667%;
  height: 36.667%;
  bottom: -8.3333%;
  right: -21.6667%;
  border-radius: 0.4rem;
}
.about_resource .item .info {
  padding-top: 0.7rem;
}
.about_resource .item .info h3 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.07rem;
}
.about_resource .item .info p {
  line-height: 2.8rem;
  max-width: 43.7rem;
  margin-top: 2.1rem;
}
.about_resource .item .info .btn_single {
  margin-top: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0px 3rem;
    max-width: 1220px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h2,
  .head.sm h2 {
    font-size: 4.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h2 {
    font-size: 4rem;
  }
}

@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(139, 139, 139);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 30px;
  }
  .btn_single {
    width: 40px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    grid-template-columns: 14px 1fr;
    font-size: 14px;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: unset;
    gap: 8px;
  }
  div.head .subtitle::before {
    margin: 0px;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  .about_resource {
    padding: 50px 0px;
  }
  .about_resource .items {
    margin-top: 30px;
  }
  .about_resource .items ul {
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: 20px;
  }
  .about_resource .item {
    border-radius: 10px;
  }
  .about_resource .item::before {
    border-radius: 10px;
  }
  .about_resource .item .icon {
    width: 40px;
    height: 40px;
  }
  .about_resource .item .info {
    margin-top: 0px;
  }
  .about_resource .item .info h3 {
    font-size: 18px;
    letter-spacing: unset;
  }
  .about_resource .item .info p {
    line-height: 1.5;
    margin-top: 10px;
  }
  .about_resource .item .info .btn_single {
    margin-top: 20px;
  }
}

@media screen and (max-width: 576px) {
  .content {
    padding: 0px 20px;
  }
}
