/* =========================
   		SECTION - 1
========================= */
/* ====================================
   ABOUT HERO
==================================== */

.about-sec-1-section {
  position: relative;
  overflow: hidden;

  height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.about-sec-1-bg {
  position: absolute;
  inset: 0;

  overflow: hidden;
}

.about-sec-1-parallax-img {
  position: absolute;

  top: -15%;
  left: 0;

  width: 100%;
  height: 130%;

  object-fit: cover;

  will-change: transform;
}

.about-sec-1-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

.about-sec-1-container {
  position: relative;
  z-index: 3;

  max-width: 1500px;
  width: 90%;

  padding: 0 40px;
}

.about-sec-1-content {
  text-align: center;
}

/* TITLE */

.about-sec-1-title {
  color: #ffffff;

  font-size: 56px;
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 20px;
  font-family: var(--secondary-font);
}

/* BREADCRUMB */

.about-sec-1-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 500;
}

.about-sec-1-breadcrumb a {
  color: #ffffff;

  text-decoration: none;

  transition: 0.3s;
}

.about-sec-1-breadcrumb a:hover {
  color: #facc15;
}

.about-sec-1-breadcrumb span:last-child {
  color: #facc15;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1200px) {
  .about-sec-1-section {
    height: 500px;
  }

  .about-sec-1-title {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .about-sec-1-section {
    height: 450px;
  }

  .about-sec-1-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .about-sec-1-section {
    height: 400px;
  }

  .about-sec-1-container {
    padding: 0 24px;
  }

  .about-sec-1-title {
    font-size: 40px;
  }

  .about-sec-1-breadcrumb {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about-sec-1-section {
    height: 340px;
  }

  .about-sec-1-title {
    font-size: 34px;
  }

  .about-sec-1-breadcrumb {
    gap: 8px;
    font-size: 14px;
  }
}





/* =========================
   		SECTION - 2
========================= */
/* =========================
   SECTION
========================= */

.about-sec-2-section {
  width: 100%;

  padding: 120px 0;

  background: #ffffff;

  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.about-sec-2-container {
  width: 90%;
  max-width: 1500px;

  margin: auto;

  padding: 0 40px;

  display: grid;
  grid-template-columns: 1fr 2fr;

  gap: 150px;

  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.about-sec-2-left {
  position: relative;
}

.about-sec-2-image-main {
  width: 100%;
  max-width: 520px;

  border-radius: 28px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-sec-2-image-main img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.about-sec-2-image-floating {
  position: absolute;
  top: 100px;
  right: -90px;
  width: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-sec-2-image-floating img {
  width: 100%;
  display: block;
}

/* =========================
   RIGHT SIDE
========================= */

.about-sec-2-right {
  width: 100%;
}

/* TAG */

.about-sec-2-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #111827;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 12px;

  position: relative;
  font-family: var(--secondary-font);
}

.about-sec-2-tag::before {
  content: "";

  width: 10px;
  height: 10px;

  background: #facc15;
}

/* TITLE */

.about-sec-2-title {
  font-size: 42px;
  line-height: 1.1;

  color: #111827;

  font-weight: 700;

  margin-bottom: 28px;
  font-family: var(--secondary-font);
}

/* DESCRIPTION */

.about-sec-2-description {
  color: #666666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 38px;
}

/* =========================
   FEATURE WRAPPER
========================= */

.about-sec-2-feature-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 24px;

  background: #f5f5f5;

  border-radius: 16px;

  padding: 32px;

  margin-bottom: 42px;

  position: relative;
  overflow: hidden;
}

.about-sec-2-feature-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 100%;
  background: #facc15;
}

.about-sec-2-feature-item {
  display: flex;
  gap: 18px;
}

.about-sec-2-feature-icon {
  min-width: 64px;
  height: 64px;

  border-radius: 8px;

  background: #facc15;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  transition: all 0.6s ease;
}

.about-sec-2-feature-icon svg {
  fill: #111827;
  transition: all 0.6s ease;
}

.about-sec-2-feature-icon:hover {
  background: #111827;
}

.about-sec-2-feature-icon:hover svg {
  fill: #ffffff;
}

.about-sec-2-feature-title {
  font-size: 24px;

  color: #111827;

  margin-bottom: 10px;
  font-family: var(--secondary-font);
}

.about-sec-2-feature-text {
  color: #666666;

  line-height: 1.7;
}

/* =========================
   LIST
========================= */

.about-sec-2-list {
  display: flex;
  flex-direction: column;

  gap: 22px;

  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  max-width: 500px;
}

.about-sec-2-list-item {
  position: relative;

  padding-left: 26px;

  color: #111827;

  font-size: 18px;
}

.about-sec-2-list-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 9px;

  width: 8px;
  height: 8px;

  background: #facc15;
}

/* =========================
   BOTTOM
========================= */

.about-sec-2-bottom {
  display: flex;
  align-items: center;
  gap: 34px;

  flex-wrap: wrap;
}

/* BUTTON */

/* PRIMARY BUTTON */
.about-sec-2-button {
  text-decoration: none;
  background: #facc15;
  color: #111827;
  height: 45px;
  padding: 0 4px 0 16px;
  gap: 8px;
  border-radius: 6px;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: var(--secondary-font);
  transition: 0.3s ease;
}

.about-sec-2-button img {
  background: #0d0d0d;
  height: 36px;
  width: 36px;
  padding: 8px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  transition: 0.8s ease;
}

.about-sec-2-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-sec-2-button::before {
  content: "";
  position: absolute;
  width: 226px;
  height: 200px;
  bottom: -200px;
  left: -200px;
  left: -1;
  border-radius: 200px;
  background: #0d0d0d;
  z-index: 0;
  transition: 0.8s ease;
}

.about-sec-2-button:hover::before {
  bottom: -75px;
  left: -5px;
}

.about-sec-2-button:hover {
  color: #ffffff;
}

.about-sec-2-button:hover img {
  background: #facc15;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .about-sec-2-title {
    font-size: 38px;
  }

  .about-sec-2-container {
    gap: 100px;
  }
}

@media (max-width: 992px) {
  .about-sec-2-container {
    grid-template-columns: 1fr;

    gap: 80px;
  }

  .about-sec-2-left {
    max-width: 650px;

    margin: auto;
  }
}

@media (max-width: 768px) {
  .about-sec-2-section {
    padding: 90px 0;
  }

  .about-sec-2-container {
    padding: 0 24px;
  }

  .about-sec-2-title {
    font-size: 34px;
  }

  .about-sec-2-feature-wrapper {
    grid-template-columns: 1fr;
  }

  .about-sec-2-image-floating {
    width: 240px;

    right: -20px;
  }
}

@media (max-width: 600px) {
  .about-sec-2-title {
    font-size: 30px;
  }

  .about-sec-2-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-sec-2-image-floating {
    position: relative;

    top: -40px;
    right: 0;

    width: 85%;

    margin: auto;
  }

  .about-sec-2-feature-item {
    flex-direction: column;
    align-items: flex-start;
  }
}







/* =========================
   		SECTION - 3
========================= */
/* =========================
   SECTION
========================= */

.about-sec-3-section {
  width: 100%;

  padding: 120px 0 90px;

  background: #f8fafc;

  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.about-sec-3-container {
  max-width: 1500px;
  width: 90%;

  margin: auto;

  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.5fr 1fr;

  gap: 70px;

  align-items: center;
}

/* =========================
   LEFT
========================= */

.about-sec-3-left {
  width: 100%;
}

/* TAG */

.about-sec-3-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #111827;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 24px;
  font-family: var(--secondary-font);
}

.about-sec-3-tag::before {
  content: "";

  width: 8px;
  height: 8px;

  background: #facc15;

  border-radius: 2px;
}

/* TITLE */

.about-sec-3-title {
  color: #111827;

  line-height: 1.08;

  font-weight: 700;

  margin-bottom: 28px;
  font-size: 40px;
  font-family: var(--secondary-font);
}

/* DESCRIPTION */

.about-sec-3-description {
  color: #666666;

  font-size: 16px;
  line-height: 1.6;

  max-width: 760px;

  margin-bottom: 40px;
}

/* =========================
   CARDS
========================= */

.about-sec-3-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 26px;

  margin-bottom: 40px;
}

/* CARD */

.about-sec-3-card {
  background: #f5f5f5;

  border-radius: 8px;

  padding: 32px;

  transition: 0.35s ease;
}

/* ICON */

.about-sec-3-icon {
  width: 62px;
  height: 62px;

  border-radius: 8px;

  background: #facc15;

  color: #111827;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  margin-bottom: 28px;
  transition: all 0.6s ease;
}

.about-sec-3-card:hover .about-sec-3-icon {
  background: #0d0d0d;
  color: #ffffff;
}

/* CARD TITLE */

.about-sec-3-card-title {
  color: #111827;

  font-size: 20px;
  line-height: 1.3;

  font-weight: 700;

  margin-bottom: 18px;
  font-family: var(--secondary-font);
}

/* CARD TEXT */

.about-sec-3-card-text {
  color: #666666;

  font-size: 16px;
  line-height: 1.2;

  margin-bottom: 24px;
}

/* LINE */

.about-sec-3-line {
  width: 100%;
  height: 1px;

  background: rgba(15, 23, 42, 0.08);

  margin-bottom: 22px;
}

/* POINT */

.about-sec-3-point {
  position: relative;

  padding-left: 18px;

  color: #475569;

  font-size: 14px;
  line-height: 1.3;
}

.about-sec-3-point::before {
  content: "";

  position: absolute;

  left: 0;
  top: 6px;

  width: 6px;
  height: 6px;

  background: #facc15;
}

/* =========================
   BUTTON
========================= */

.about-sec-3-button {
  text-decoration: none;
  background: #facc15;
  color: #111827;
  height: 45px;
  padding: 0 4px 0 16px;
  gap: 8px;
  border-radius: 6px;
  justify-content: end;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 200px;
  font-family: var(--secondary-font);
  transition: 0.8s ease;
}

.about-sec-3-button img {
  background: #0d0d0d;
  height: 36px;
  width: 36px;
  padding: 8px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  transition: 0.8s ease;
}

.about-sec-3-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-sec-3-button::before {
  content: "";
  position: absolute;
  width: 226px;
  height: 200px;
  bottom: -200px;
  left: -200px;
  left: -1;
  border-radius: 200px;
  background: #0d0d0d;
  z-index: 0;
  transition: 0.8s ease;
}

.about-sec-3-button:hover::before {
  bottom: -75px;
  left: -5px;
}

.about-sec-3-button:hover {
  color: #ffffff;
}

.about-sec-3-button:hover img {
  background: #facc15;
}

/* =========================
   RIGHT IMAGE
========================= */

.about-sec-3-right {
  width: 100%;
}

.about-sec-3-image-wrapper {
  position: relative;

  width: 100%;

  border-radius: 28px;

  overflow: hidden;
}

.about-sec-3-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: 0.5s ease;
}

/* =========================
   BOTTOM
========================= */

.about-sec-3-bottom {
  max-width: 1400px;

  margin: 50px auto 0;

  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  flex-wrap: wrap;
}

.about-sec-3-bottom-avatar {
  width: 32px;
  height: 32px;

  border-radius: 50%;

  background: #facc15;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}

.about-sec-3-bottom-avatar svg {
  width: 12px;
  height: 12px;
}

.about-sec-3-bottom-text {
  color: #666666;

  font-size: 14px;
}

.about-sec-3-bottom-text a {
  color: #eab308;
  text-decoration: none;

  font-weight: 700;

  text-decoration: underline;
  transition: all 0.6s ease;
}

.about-sec-3-bottom-text a:hover {
  color: #111827;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1300px) {
  .about-sec-3-title {
    font-size: 30px;
  }
}

@media (max-width: 1100px) {
  .about-sec-3-container {
    grid-template-columns: 1fr;

    gap: 70px;
  }
}

@media (max-width: 900px) {
  .about-sec-3-section {
    padding: 90px 0;
  }

  .about-sec-3-container,
  .about-sec-3-bottom {
    padding: 0 24px;
  }

  .about-sec-3-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .about-sec-3-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-sec-3-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .about-sec-3-card {
    padding: 26px;
  }

  .about-sec-3-card-title {
    font-size: 18px;
  }

  .about-sec-3-description {
    font-size: 14px;
  }
}






/* =========================
   		SECTION - 4
========================= */
/* =========================
   SECTION
========================= */

.about-sec-4-section {
  width: 100%;

  padding: 120px 0 90px;

  background: #ffffff;

  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.about-sec-4-container {
  max-width: 1500px;
  width: 90%;
  margin: auto;

  padding: 0 40px;
}

/* =========================
   TOP
========================= */

.about-sec-4-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 60px;

  margin-bottom: 70px;
}

/* LEFT */

.about-sec-4-top-left {
  max-width: 720px;
}

/* TAG */

.about-sec-4-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #111827;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 24px;
  font-family: var(--secondary-font);
}

.about-sec-4-tag::before {
  content: "";

  width: 8px;
  height: 8px;

  background: #facc15;

  border-radius: 2px;
}

/* TITLE */

.about-sec-4-title {
  color: #111827;

  font-size: 38px;
  line-height: 1.08;
  font-family: var(--secondary-font);
  font-weight: 700;
}

/* RIGHT */

.about-sec-4-top-right {
  max-width: 500px;
}

/* DESCRIPTION */

.about-sec-4-description {
  color: #666666;

  font-size: 13px;
  line-height: 1.4;

  margin-bottom: 30px;
}

/* BUTTON */

.about-sec-4-button {
  text-decoration: none;
  background: #facc15;
  color: #111827;
  height: 45px;
  padding: 0 4px 0 16px;
  gap: 8px;
  border-radius: 6px;
  justify-content: end;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 185px;
  font-family: var(--secondary-font);
  transition: 0.8s ease;
}

.about-sec-4-button img {
  background: #0d0d0d;
  height: 36px;
  width: 36px;
  padding: 8px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  transition: 0.8s ease;
}

.about-sec-4-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-sec-4-button::before {
  content: "";
  position: absolute;
  width: 226px;
  height: 200px;
  bottom: -200px;
  left: -200px;
  left: -1;
  border-radius: 200px;
  background: #0d0d0d;
  z-index: 0;
  transition: 0.8s ease;
}

.about-sec-4-button:hover::before {
  bottom: -75px;
  left: -5px;
}

.about-sec-4-button:hover {
  color: #ffffff;
}

.about-sec-4-button:hover img {
  background: #facc15;
}

/* =========================
   FILTERS
========================= */

.about-sec-4-filters {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 26px;

  flex-wrap: wrap;

  margin-bottom: 55px;
}

.about-sec-4-filter {
  background: transparent;

  border: none;

  color: #475569;

  font-size: 18px;
  font-weight: 500;

  cursor: pointer;

  position: relative;

  transition: 0.3s ease;
}

.about-sec-4-filter::after {
  content: "•";
  font-size: 28px;
  position: absolute;

  right: -18px;
  top: 50%;

  transform: translateY(-50%);

  color: rgba(15, 23, 42, 0.15);
}

.about-sec-4-filter:last-child::after {
  display: none;
}

.about-sec-4-filter.active,
.about-sec-4-filter:hover {
  color: #eab308;
}

/* =========================
   GRID
========================= */

.about-sec-4-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  margin-bottom: 55px;
}

/* =========================
   CARD
========================= */

.about-sec-4-card {
  position: relative;

  border-radius: 8px;

  overflow: hidden;

  cursor: pointer;
}

/* IMAGE WRAPPER */

.about-sec-4-image-wrapper {
  position: relative;

  width: 100%;
  height: 520px;

  overflow: hidden;
}

.about-sec-4-image-wrapper::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 40%;
  height: 220%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  transform: translate(-50%, -50%) rotate(35deg) translateX(-260%);

  opacity: 0;

  z-index: 2;

  pointer-events: none;
}

/* HOVER EFFECT */

.about-sec-4-image-wrapper:hover::before {
  animation: sec-3-diagonal-shine 0.9s ease forwards;
}

/* ANIMATION */

@keyframes sec-3-diagonal-shine {
  0% {
    transform: translate(-50%, -50%) rotate(35deg) translateX(-260%);

    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) rotate(35deg) translateX(260%);

    opacity: 0;
  }
}

.about-sec-4-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 0.6s ease;
}

.about-sec-4-card:hover .about-sec-4-image {
  transform: scale(1.08);
}

.about-sec-4-image-wrapper a {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 16px;
  background: #0d0d0d;
  border-radius: 100px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease;
  transform: scale(0.2);
}

.about-sec-4-image-wrapper:hover a {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.about-sec-4-image-wrapper a img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
  transform: rotate(322deg);
}
/* DARK OVERLAY */

.about-sec-4-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgb(0 0 0),
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

/* CONTENT */

.about-sec-4-content {
  position: absolute;

  left: 32px;
  bottom: 28px;

  z-index: 3;
}

.about-sec-4-card-title {
  color: #ffffff;

  font-size: 24px;
  line-height: 1.2;

  font-weight: 700;

  margin-bottom: 10px;
  font-family: var(--secondary-font);
}

.about-sec-4-card-category {
  color: rgba(255, 255, 255, 0.82);

  font-size: 14px;
}

/* =========================
   BOTTOM
========================= */

.about-sec-4-bottom {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;
}

/* AVATARS */

.about-sec-4-avatars {
  display: flex;
  align-items: center;
}

.about-sec-4-avatar {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  border: 2px solid #ffffff;

  margin-left: -10px;

  background-size: cover;
  background-position: center;
}

.about-sec-4-avatar:nth-child(1) {
  background-image: url("avatar-1.jpg");
}

.about-sec-4-avatar:nth-child(2) {
  background-image: url("avatar-2.jpg");
}

.about-sec-4-avatar:nth-child(3) {
  background-image: url("avatar-3.jpg");
}

/* TEXT */

.about-sec-4-bottom-text {
  color: #666666;

  font-size: 16px;
}

.about-sec-4-bottom-text a {
  color: #eab308;

  font-weight: 700;

  text-decoration: underline;
  transition: all 0.6s ease;
}

.about-sec-4-bottom-text a:hover {
  color: #0d0d0d;

  font-weight: 700;

  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1300px) {
  .about-sec-4-title {
    font-size: 34px;
  }
}

@media (max-width: 1100px) {
  .about-sec-4-top {
    flex-direction: column;
    gap: 16px;
  }

  .about-sec-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-sec-4-description {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .about-sec-4-section {
    padding: 90px 0;
  }

  .about-sec-4-container {
    padding: 0 24px;
  }

  .about-sec-4-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about-sec-4-grid {
    grid-template-columns: 1fr;
  }

  .about-sec-4-image-wrapper {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .about-sec-4-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .about-sec-4-card-title {
    font-size: 20px;
  }

  .about-sec-4-content {
    left: 24px;
    bottom: 22px;
  }
}
