@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.about-banner {
  position: relative;
  color: white;
  overflow: hidden;
  z-index: 1;
  background: url("../../../assets/images/Home/banner-pattern.png");
  margin-top: var(--heading);
  padding: 230px 0 150px 0;
}
@media only screen and (max-width: 768px) {
  .about-banner {
    padding: 230px 0 70px 0;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner {
    padding: 160px 0 50px 0;
  }
}
.about-banner .container {
  max-width: 1180px;
}
.about-banner .flex-box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .about-banner .flex-box {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner .flex-box {
    gap: 30px;
  }
}
.about-banner .flex-box .col:first-child {
  flex: 0 1 50%;
}
@media only screen and (max-width: 768px) {
  .about-banner .flex-box .col:first-child {
    text-align: center;
  }
}
.about-banner .flex-box .col:first-child h2 {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 4px;
}
.about-banner .flex-box .col:first-child h1 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  max-width: 513px;
}
@media only screen and (max-width: 768px) {
  .about-banner .flex-box .col:first-child h1 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner .flex-box .col:first-child h1 {
    font-size: 25px;
  }
}
.about-banner .flex-box .col:first-child p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  max-width: 513px;
}
.about-banner .flex-box .col:first-child .btn {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .about-banner .flex-box .col:first-child .btn {
    margin: 30px auto 0;
  }
}
.about-banner .flex-box .col:last-child figure {
  width: 515px;
  height: 296px;
  line-height: 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .about-banner .flex-box .col:last-child figure {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.about-banner .flex-box .col:last-child figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-banner .flex-box .col:last-child figure figcaption {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 218px;
  height: 239px;
}
@media only screen and (max-width: 768px) {
  .about-banner .flex-box .col:last-child figure figcaption {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .about-banner .flex-box .col:last-child figure figcaption {
    width: 78%;
    height: 60%;
  }
}
.about-banner .flex-box .col:last-child figure figcaption img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-secA {
  padding: 50px 0;
}
@media only screen and (max-width: 540px) {
  .about-secA {
    padding: 30px 0 50px 0;
  }
}
.about-secA .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.about-secA .flex-box figure {
  width: 525px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
@media only screen and (max-width: 540px) {
  .about-secA .flex-box figure {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.about-secA .flex-box figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-secA .flex-box figcaption {
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box figcaption {
    text-align: center;
  }
}
.about-secA .flex-box figcaption h2 {
  max-width: 479px;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .about-secA .flex-box figcaption h2 {
    font-size: 30px;
  }
}
.about-secA .flex-box figcaption p {
  max-width: 475px;
}

.about-secB {
  padding: 50px 0;
  background: #1A1A4B;
}
.about-secB .heading {
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .about-secB .heading {
    margin-bottom: 40px;
  }
}
.about-secB .heading h2 {
  font-weight: 700;
  font-size: 36px;
  color: white;
}
.about-secB .heading p {
  color: rgba(255, 255, 255, 0.6980392157);
}
.about-secB .flex-box {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  .about-secB .flex-box {
    gap: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .flex-box {
    flex-direction: column;
  }
}
.about-secB .flex-box .col {
  width: 380px;
  height: 264px;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .about-secB .flex-box .col {
    width: 50%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (max-width: 540px) {
  .about-secB .flex-box .col {
    width: 100%;
  }
}
.about-secB .flex-box .col figure {
  width: 63px;
  height: 63px;
  margin: 0 auto 20px;
}
.about-secB .flex-box .col figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-secB .flex-box .col h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
.about-secB .flex-box .col p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.about-secB .flex-box .col:first-child {
  background: #A67C00;
}
.about-secB .flex-box .col:first-child h3, .about-secB .flex-box .col:first-child p {
  color: white;
}
.about-secB .flex-box .col:last-child {
  background: #F1F1F1;
}
.about-secB .flex-box .col:last-child h3, .about-secB .flex-box .col:last-child p {
  color: var(--text);
}

.about-secC {
  background: #F4F4F4;
}
.about-secC .flex-box {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  .about-secC .flex-box {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.about-secC .flex-box figcaption {
  padding: 60px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .about-secC .flex-box figcaption {
    text-align: center;
  }
}
.about-secC .flex-box figcaption h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #A67C00;
  margin-bottom: 20px;
}
.about-secC .flex-box figcaption p {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #1A1A4B;
  max-width: 484px;
}
@media only screen and (max-width: 540px) {
  .about-secC .flex-box figcaption p {
    font-size: 20px;
  }
}
.about-secC .flex-box figcaption .user-info {
  margin-top: 30px;
}
.about-secC .flex-box figcaption .user-info h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.about-secC .flex-box figcaption .user-info p {
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
}
.about-secC .flex-box figure {
  line-height: 0;
  width: 418px;
  height: 466px;
}
@media only screen and (max-width: 540px) {
  .about-secC .flex-box figure {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.about-secC .flex-box figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-secD {
  padding: 50px 0;
}
.about-secD h2 {
  max-width: 514px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.1;
}
@media only screen and (max-width: 768px) {
  .about-secD h2 {
    margin: 0 auto 20px;
  }
}
@media only screen and (max-width: 540px) {
  .about-secD h2 {
    margin: 0 auto 10px;
  }
}
.about-secD .flex-box {
  display: flex;
  gap: 80px;
  justify-content: center;
}
@media only screen and (max-width: 540px) {
  .about-secD .flex-box {
    max-width: 90%;
    margin: auto;
  }
}
.about-secD .flex-box figure {
  width: 525px;
  height: 350px;
  line-height: 0;
}
@media only screen and (max-width: 768px) {
  .about-secD .flex-box figure {
    display: none;
  }
}
.about-secD .flex-box figcaption .summery-detail-content {
  padding: 10px 0px 40px 50px;
  margin-top: 20px;
  border-left: 1px solid var(--secondary);
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 540px) {
  .about-secD .flex-box figcaption .summery-detail-content {
    padding: 10px 0px 10px 40px;
  }
}
.about-secD .flex-box figcaption .col {
  transition: 0.5s ease;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 20px 0 30px 0;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .about-secD .flex-box figcaption .col {
    margin: 20px 0 0 0;
  }
}
.about-secD .flex-box figcaption .col .title {
  cursor: pointer;
}
.about-secD .flex-box figcaption .col .title h6 {
  font-size: 18px;
  line-height: 40px;
  transition: 0.5s ease;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
  color: var(--text);
}
.about-secD .flex-box figcaption .col .title .outer-circle {
  border: 1px solid var(--secondary);
  border-radius: 50%;
  background-color: var(--white);
  padding: 10px;
  transition: 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: -71px;
}
@media only screen and (max-width: 540px) {
  .about-secD .flex-box figcaption .col .title .outer-circle {
    margin-left: 15px;
    padding: 7px;
    top: 6px;
  }
}
.about-secD .flex-box figcaption .col .title .ico {
  flex: 0 1 auto;
  --size: 18px;
  --border: 2px;
  --bgcolor: var(--secondary);
  height: var(--size);
  width: var(--size);
  position: relative;
}
.about-secD .flex-box figcaption .col .title .ico::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
.about-secD .flex-box figcaption .col .title .ico::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
@media only screen and (max-width: 540px) {
  .about-secD .flex-box figcaption .col .title .ico {
    --size: 14px;
  }
}
.about-secD .flex-box figcaption .col .title .ico::before, .about-secD .flex-box figcaption .col .title .ico::after {
  transition: 0.5s ease;
}
.about-secD .flex-box figcaption .col .title .ico::before {
  top: calc(var(--size) / 2 - var(--border) / 2);
  bottom: auto;
  height: var(--border);
  width: 100%;
}
.about-secD .flex-box figcaption .col .title .ico::after {
  left: calc(var(--size) / 2);
  translate: -50% 0;
  right: auto;
  width: var(--border);
  height: 100%;
}
.about-secD .flex-box figcaption .col .content-desc p {
  max-width: 406px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.about-secD .flex-box figcaption .col.active::before {
  opacity: 1;
  scale: 1;
}
.about-secD .flex-box figcaption .col.active .title h6 {
  color: var(--primary);
}
.about-secD .flex-box figcaption .col.active .title .outer-circle {
  background: var(--secondary);
  border: none;
}
.about-secD .flex-box figcaption .col.active .title .ico {
  --bgcolor: var(--white);
}
.about-secD .flex-box figcaption .col.active .title .ico::after {
  transform: scaleY(0);
}/*# sourceMappingURL=about.css.map */