/*CSS Table Of Content Ends Here*/
:root {
  --body: #fff;
  --black-clr: #0C0C0E;
  --white-clr: #fff;
  --pragraph-clr: #706767;
  --theme-clr: #1E4ED8;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/Pretendard-Bold.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: normal;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: "Pretendard";
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0;
  transition: all 0.4s ease-in-out;
  font-family: "Pretendard";
}

.d-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-section {
  width: 100%;
  z-index: 100;
  z-index: 99;
  position: fixed;
  background-color: #1e4ed8;
  top: 0;
  left: 0;
}
.header-section .container {
  max-width: 1300px;
  margin: 0 auto;
}
.header-section .header-inner {
  gap: 59px;
}
@media (max-width: 991px) {
  .header-section .main-navbar .navbar-toggle-item {
    display: none;
  }
}
@media (min-width: 992px) {
  .header-section .main-navbar .navbar-toggle-item {
    display: initial !important;
  }
}
.header-section .main-navbar .custom-nav {
  gap: 50px;
}
.header-section .main-navbar .custom-nav .menu-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .header-section .main-navbar .custom-nav {
    max-height: 50vh;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
  }
}
.header-section .main-navbar .right-area {
  gap: 10px;
}
.header-section .main-navbar .right-area p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0;
}
.header-section .main-navbar .right-area .header-btn-outline {
  padding: 7px 16px;
  border: 1px solid #ffffff;
  border-radius: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  justify-content: center;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s;
}
.header-section .main-navbar .right-area .header-btn-outline:hover {
  background-color: #fff;
  color: #1e4ed8;
}
.header-section .main-navbar .right-area .header-btn {
  background: #ffffff;
  border-radius: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #1e4ed8;
  transition: all 0.4s;
  padding: 7px 20px;
  display: block;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #ffffff;
}
.header-section .main-navbar .right-area .header-btn:hover {
  background-color: #1e4ed8;
  color: #fff;
}
.header-section .main-navbar .navbar-toggle-btn {
  width: 26px;
  height: 20px;
  position: relative;
  right: 0;
  top: 0;
  transition: all 0.5s;
}
.header-section .main-navbar .navbar-toggle-btn span {
  display: block;
  position: absolute;
  height: 1.2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.4s;
}
.header-section .main-navbar .navbar-toggle-btn span:nth-child(1) {
  top: 0;
}
.header-section .main-navbar .navbar-toggle-btn span:nth-child(2), .header-section .main-navbar .navbar-toggle-btn span:nth-child(3) {
  top: 8px;
}
.header-section .main-navbar .navbar-toggle-btn span:nth-child(4) {
  top: 16px;
}
.header-section .main-navbar .navbar-toggle-btn.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.header-section .main-navbar .navbar-toggle-btn.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header-section .main-navbar .navbar-toggle-btn.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header-section .main-navbar .navbar-toggle-btn.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
@media (max-width: 1199px) {
  .header-section .main-navbar .custom-nav {
    gap: 26px;
  }
}
@media (max-width: 991px) {
  .header-section {
    border-bottom: 1px solid #fff;
  }
}

.hero-section {
  padding: 173px 5px 82px;
  background-color: #1e4ed8;
}
@media (max-width: 1199px) {
  .hero-section {
    padding: 130px 5px 82px;
  }
}

.hero-content h1 {
  max-width: 801px;
  margin: 0 auto 32px;
  font-weight: 500;
  font-size: 80px;
  line-height: 95px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.hero-content h4 {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #d2dcf7;
}
.hero-content .btn-grop-area {
  margin-bottom: 32px;
}
.hero-content .btn-grop-area .hero-btn {
  padding: 13px 24px;
  background: #ffffff;
  border-radius: 40px;
  color: #1e4ed8;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #1e4ed8;
  transition: all 0.4s;
  border: 0;
}
.hero-content .btn-grop-area .hero-btn:hover {
  background: #e9e7e7;
}
.hero-content .btn-grop-area .hero-btn-outline {
  padding: 13px 25px;
  background: #6b8ef5;
  border-radius: 40px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #ffffff;
  transition: all 0.4s;
  border: 0;
}
.hero-content .btn-grop-area .hero-btn-outline:hover {
  background: #6181e2;
}
.hero-content .check-pra {
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #d2dcf7;
}
.hero-content .sub-btn-hero {
  padding: 12px 22px;
  background: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #1e4ed8;
  transition: all 0.4s;
}
.hero-content .sub-btn-hero:hover {
  background: #e9e7e7;
}
@media (max-width: 991px) {
  .hero-content h1 {
    margin: 0 auto 30px;
    font-size: 65px;
    line-height: 80px;
  }
  .hero-content h4 {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #d2dcf7;
  }
  .hero-content .btn-grop-area {
    margin-bottom: 32px;
  }
  .hero-content .btn-grop-area .hero-btn {
    padding: 13px 22px;
    height: 50px;
    width: 296px;
    height: 50px;
    background: #ffffff;
    border-radius: 40px;
    color: #1e4ed8;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #1e4ed8;
    transition: all 0.4s;
    border: 0;
  }
  .hero-content .btn-grop-area .hero-btn:hover {
    background: #e9e7e7;
  }
  .hero-content .btn-grop-area .hero-btn-outline {
    padding: 13px 22px;
    width: 313px;
    height: 50px;
    background: #6b8ef5;
    border-radius: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #ffffff;
    transition: all 0.4s;
    border: 0;
  }
  .hero-content .btn-grop-area .hero-btn-outline:hover {
    background: #6181e2;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    margin: 0 auto 24px;
    font-size: 52px;
    line-height: 65px;
  }
  .hero-content h4 {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .hero-content .btn-grop-area {
    margin-bottom: 32px;
  }
  .hero-content .btn-grop-area .hero-btn {
    padding: 13px 22px;
    height: auto;
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 24px;
  }
  .hero-content .btn-grop-area .hero-btn-outline {
    padding: 13px 22px;
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 24px;
  }
  .hero-content .check-pra {
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 28px;
  }
  .hero-content .sub-btn-hero {
    padding: 12px 22px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .hero-content h1 {
    margin: 0 auto 18px;
    font-size: 38px;
    line-height: 50px;
  }
  .hero-content h4 {
    margin-bottom: 24px;
    font-size: 20px;
  }
  .hero-content .btn-grop-area {
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .hero-content .btn-grop-area .hero-btn {
    padding: 13px 22px;
    height: auto;
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 24px;
  }
  .hero-content .btn-grop-area .hero-btn-outline {
    padding: 13px 22px;
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 24px;
  }
  .hero-content .check-pra {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 28px;
  }
  .hero-content .sub-btn-hero {
    padding: 12px 22px;
    font-size: 18px;
    line-height: 24px;
  }
}

.cmn-btn {
  background: var(--theme-clr);
  border-radius: 8px;
  padding: 8px 18px 10px;
  color: var(--white-clr);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(149, 157, 165, 0.2);
  transition: all 0.5s;
}
.cmn-btn i {
  transition: all 0.5s;
  font-size: 16px;
  color: var(--white-clr);
}
.cmn-btn:hover {
  border-color: var(--theme-clr);
  color: var(--black-clr);
  background: transparent;
}
.cmn-btn:hover i {
  color: var(--black-clr);
}

.footer-section {
  background-color: #161616;
  padding: 32px 0px;
}
.footer-section .container {
  max-width: 1386px;
  margin: 0 auto;
}

.footer-top {
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
}

.footer-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  align-items: center;
}
.footer-widget li span,
.footer-widget li a {
  color: #fff;
  font-weight: 100 !important;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.02em;
  display: block;
  text-decoration: none;
  transition: all 0.4s;
}
.footer-widget li span:hover,
.footer-widget li a:hover {
  color: #1e4ed8;
}
.footer-widget .line {
  width: 1px;
  height: 17px;
  background-color: rgba(255, 255, 255, 0.4);
}

.letter-spacing0 {
  letter-spacing: 0px;
}

.f-logo {
  margin-bottom: 12px;
}

.footer-bottom {
  padding-top: 12px;
}
.footer-bottom p {
  font-weight: 200;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  text-align: right;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.sub-contact {
  padding: 86px 0 86px;
}
.sub-contact .sub-btn {
  padding: 17px 24px;
  color: var(--theme-clr);
  font-weight: 600;
  font-size: 40px;
  line-height: 24px;
  leading-trim: both;
  text-align: center;
  letter-spacing: -0.02em;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sub-contact .sub-btn:hover {
  background: #f0f0f0;
}
.sub-contact p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  /* identical to box height, or 140% */
  text-align: center;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}
.sub-contact .hidden-btn {
  gap: 72px;
}
.sub-contact .hidden-btn div {
  font-weight: 200;
  font-size: 20px;
  line-height: 24px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: -0.02em;
  color: #ffffff;
}
@media (max-width: 991px) {
  .sub-contact {
    padding: 56px 0 56px;
  }
  .sub-contact p {
    margin-bottom: 30px;
  }
  .sub-contact .sub-btn {
    height: 55px;
    padding: 16px 22px;
    color: var(--theme-clr);
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    width: 221px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .sub-contact p {
    margin-bottom: 20px;
  }
  .sub-contact .hidden-btn {
    flex-wrap: wrap;
    gap: 4px 16px;
  }
}

.partner-section {
  padding: 224px 0 62px;
}
.partner-section .container {
  max-width: 1260px;
  margin: 0 auto;
}
.partner-section .partner-title {
  font-style: normal;
  font-weight: 500;
  font-size: 56px;
  line-height: 67px;
  /* identical to box height */
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 40px;
  display: block;
}
@media (max-width: 1199px) {
  .partner-section {
    padding: 150px 0 60px;
  }
  .partner-section .partner-title {
    margin-bottom: 34px;
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .partner-section {
    padding: 60px 0 60px;
  }
  .partner-section .partner-title {
    margin-bottom: 10px;
    font-size: 30px;
  }
}

.partner-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.partner-wrapper .partner-items {
  transition: all 0.4s;
  width: 215px;
  height: 279px;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.12));
  border-radius: 20px;
  background: rgba(30, 78, 216, 0.2);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 30px 20px;
}
.partner-wrapper .partner-items h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 129%;
  /* or 36px */
  min-height: 88px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.partner-wrapper .partner-items .border-line {
  border-bottom: 1px solid #030303;
}
.partner-wrapper .partner-items p {
  font-weight: 500;
  font-size: 20px;
  line-height: 129%;
  /* or 26px */
  text-align: center;
  text-transform: capitalize;
  padding-top: 37px;
  color: rgba(3, 3, 3, 0.6);
}
.partner-wrapper .partner-items:hover {
  transform: scale(1.025);
}
@media (max-width: 1399px) {
  .partner-wrapper {
    gap: 30px;
  }
  .partner-wrapper .partner-items {
    padding: 30px 12px;
  }
  .partner-wrapper .partner-items h3 {
    font-size: 24px;
    line-height: 129%;
    padding-bottom: 18px;
    min-height: 78px;
  }
  .partner-wrapper .partner-items p {
    font-size: 18px;
    line-height: 129%;
    padding-top: 30px;
  }
}
@media (max-width: 1199px) {
  .partner-wrapper {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .partner-wrapper {
    gap: 16px;
  }
  .partner-wrapper .partner-items {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner-wrapper .partner-items h3 {
    font-size: 21px;
    line-height: 129%;
    padding-bottom: 18px;
    min-height: 65px;
  }
  .partner-wrapper .partner-items p {
    font-size: 17px;
    line-height: 129%;
    padding-top: 30px;
    max-width: 166px;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .partner-wrapper .partner-items {
    width: 100%;
  }
}

.qute-area {
  gap: 32px;
  margin-top: 40px;
}
.qute-area p {
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  text-align: center;
  color: rgba(28, 28, 28, 0.75);
}
@media (max-width: 991px) {
  .qute-area {
    gap: 20px;
  }
  .qute-area p {
    font-size: 22px;
    line-height: 26px;
  }
}

.case-studies-section {
  padding: 131px 0 0;
}
.case-studies-section .container {
  max-width: 1350px;
  margin: 0 auto;
}
.case-studies-section .case-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 40px;
  display: block;
}
@media (max-width: 991px) {
  .case-studies-section .case-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 34px;
  }
}
@media (max-width: 767px) {
  .case-studies-section .case-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
}
.case-studies-section .case-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  /* identical to box height, or 120% */
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  display: block;
  margin-top: 46px;
}
@media (max-width: 1199px) {
  .case-studies-section .case-subtitle {
    margin-top: 32px;
  }
}
@media (max-width: 991px) {
  .case-studies-section .case-subtitle {
    margin-top: 24px;
  }
}

.qute-area2 {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .qute-area2 {
    margin-top: 60px;
  }
}

.case-slide-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.case-slide-item::before {content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0) 78%);
  border-radius: 16px;
  z-index: 1;
}
.case-slide-item .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  color: white;
  font-size: 24px;
  font-weight: 500;
  z-index: 2;
  text-transform: capitalize;
}
.case-slide-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s;
  aspect-ratio: 586/496;
  object-fit: cover;
}
.case-slide-item:hover img {
  transform: scale(1.05);
}

.max-w-1196 {
  max-width: 1196px !important;
  margin: 0 auto;
}

.cmn_button {
  width: 38px;
  height: 38px;
  background: #000000;
  border-radius: 19px;
  transition: all 0.4s;
}
.cmn_button i {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.4s;
}
.cmn_button:hover {
  background: var(--theme-clr);
  cursor: pointer;
}
.cmn_button:hover i {
  color: #fff;
}

.project-studies-section {
  background-color: #fafafa;
  padding: 174px 0 94px;
  position: relative;
  z-index: 1;
}
.project-studies-section .project-left-img {
  bottom: 349px;
}
.project-studies-section .project-right-img {
  top: 103px;
}
.project-studies-section .container {
  max-width: 954px;
  margin: 0 auto;
}
.project-studies-section .section-title-wrap {
  margin-bottom: 170px;
}
.project-studies-section .section-title-wrap .title-box {
  margin-bottom: 80px;
}
.project-studies-section .section-title-wrap .title-box h3 {
  font-weight: 500;
  font-size: 56px;
  line-height: 67px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 16px;
}
.project-studies-section .section-title-wrap .title-box p {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  /* identical to box height */
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
}
.project-studies-section .section-title-wrap .subtitle-box h4 {
  font-weight: 500;
  font-size: 32px;
  line-height: 70px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 8px;
}
.project-studies-section .section-title-wrap .subtitle-box ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.project-studies-section .section-title-wrap .subtitle-box ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 12px;
}
.project-studies-section .project-retitle {
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .project-studies-section {
    padding: 120px 0 90px;
  }
  .project-studies-section .section-title-wrap {
    margin-bottom: 75px;
  }
  .project-studies-section .section-title-wrap .title-box {
    margin-bottom: 60px;
  }
  .project-studies-section .section-title-wrap .title-box h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 12px;
  }
  .project-studies-section .section-title-wrap .title-box p {
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
  }
  .project-studies-section .section-title-wrap .subtitle-box h4 {
    font-weight: 500;
    font-size: 28px;
    line-height: 70px;
    margin-bottom: 8px;
  }
  .project-studies-section .section-title-wrap .subtitle-box ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
  }
  .project-studies-section .section-title-wrap .subtitle-box ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .project-studies-section .section-title-wrap .subtitle-box ul li img {
    width: 18px;
  }
}
@media (max-width: 991px) {
  .project-studies-section {
    padding: 70px 0 80px;
  }
  .project-studies-section .project-retitle {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 34px;
  }
  .project-studies-section .section-title-wrap {
    margin-bottom: 40px;
  }
  .project-studies-section .section-title-wrap .title-box {
    margin-bottom: 30px;
  }
  .project-studies-section .section-title-wrap .title-box h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 10px;
  }
  .project-studies-section .section-title-wrap .title-box p {
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
  }
  .project-studies-section .section-title-wrap .subtitle-box h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .project-studies-section .section-title-wrap .subtitle-box ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
  .project-studies-section .section-title-wrap .subtitle-box ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .project-studies-section .section-title-wrap .subtitle-box ul li img {
    width: 16px;
  }
}
@media (max-width: 575px) {
  .project-studies-section .project-retitle {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 24px;
  }
}

.project-studies-items {
  background: #ffffff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 36px;
  height: 330px;
}
.project-studies-items:hover {
  transform: scale(1.02);
  transition: all 0.4s;
}
.project-studies-items h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 24px;
}
.project-studies-items p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #4f4f4f;
}
@media (max-width: 1399px) {
  .project-studies-items p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .project-studies-items {
    padding: 26px;
  }
  .project-studies-items h4 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .project-studies-items p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .project-studies-items {
    height: 260px;
  }
}

.office-area-section {
  padding: 115px 0 69px;
}
.office-area-section .container {
  max-width: 1286px;
  margin: 0 auto;
}
.office-area-section .office-titles {
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 42px;
}
.office-area-section .office-area-wrap {
  max-width: 1134px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1199px) {
  .office-area-section {
    padding: 70px 0 50px;
  }
  .office-area-section .office-titles {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 34px;
  }
}
@media (max-width: 991px) {
  .office-area-section {
    padding: 70px 0 70px;
  }
  .office-area-section .office-titles {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 28px;
  }
}
@media (max-width: 575px) {
  .office-area-section .office-titles {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

.nav-tabs {
  max-width: 761px;
  margin: 0 auto 48px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
}
.nav-tabs .nav-item {
  width: 100%;
  text-align: center;
}
.nav-tabs .nav-item .nav-link {
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.01em;
  color: #000000;
  border-bottom: 1px solid #000;
  width: 100%;
  text-align: center;
  padding: 20px 10px 23px;
}
.nav-tabs .nav-item .nav-link.active {
  border-bottom: 3px solid #000;
  color: #000;
}
@media (max-width: 1199px) {
  .nav-tabs {
    margin: 0 auto 35px;
  }
}
@media (max-width: 575px) {
  .nav-tabs {
    gap: 0px;
  }
  .nav-tabs .nav-item .nav-link {
    font-size: 18px;
    padding: 16px 10px 19px;
  }
}

.office-slide-item {
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}
.office-slide-item img  {
  aspect-ratio: 362/496;
  object-fit: cover;
  
}
.office-slide-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0) 56.96%), url(athome.png);
  border-radius: 16px;
  z-index: 1;
}
.office-slide-item .cont {
  position: absolute;
  bottom: 37px;
  left: 37px;
}
.office-slide-item .cont p {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 1px;
  color: #ffffff;
  
}
@media (max-width: 1199px) {
  .office-slide-item .cont {
    bottom: 16px;
    left: 16px;
  }
  .office-slide-item .cont p {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .office-slide-item .cont {
    bottom: 12px;
    left: 12px;
  }
  .office-slide-item .cont p {
    font-size: 16px;
  }
}

.office-area-wrap .cmn-button-prev {
  left: -60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.office-area-wrap .cmn-button-next {
  right: -60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .office-area-wrap .cmn-button-prev {
    left: 0px;
    z-index: 1;
  }
  .office-area-wrap .cmn-button-next {
    right: 0px;
    z-index: 1;
  }
}

.idea-section {
  background: rgba(237, 237, 245, 0.4);
}

.idea-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 82px 24px 82px;
}
.idea-content .items {
  gap: 19px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #000000;
}
@media (max-width: 1199px) {
  .idea-content {
    padding: 70px 24px 70px;
  }
  .idea-content .items {
    font-size: 20px;
    gap: 10px;
  }
  .idea-content .items img {
    width: 26px;
  }
}
@media (max-width: 767px) {
  .idea-content {
    padding: 70px 24px 70px;
  }
  .idea-content .items {
    font-size: 18px;
    gap: 10px;
  }
  .idea-content .items img {
    width: 21px;
  }
}

.explore-section {
  padding: 114px 5px 136px;
  background-color: #fff;
}
.explore-section .explore-titles {
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 58px;
}
@media (max-width: 991px) {
  .explore-section .explore-titles {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 34px;
  }
}
@media (max-width: 767px) {
  .explore-section .explore-titles {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1199px) {
  .explore-section {
    padding: 9px 5px 90px;
  }
}
@media (max-width: 991px) {
  .explore-section {
    padding: 70px 5px 70px;
  }
}
.explore-section .explore-wrapper {
  max-width: 1062px;
  margin: 0 auto;
}
.explore-section .explore-wrapper .explore-inner {
  gap: 60px;
}
.explore-section .explore-wrapper .explore-inner .explore-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 32px;
  width: 314px;
  height: 260px;
  background: #ffffff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s;
}
.explore-section .explore-wrapper .explore-inner .explore-items:hover {
  transform: translateY(-4px);
}
.explore-section .explore-wrapper .explore-inner .explore-items img {
  margin-bottom: 32px;
}
.explore-section .explore-wrapper .explore-inner .explore-items h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #111111;
  margin-bottom: 14px;
}
.explore-section .explore-wrapper .explore-inner .explore-items p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #888888;
}
.explore-section .explore-wrapper .explore-inner-first {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .explore-section .explore-wrapper .explore-inner {
    gap: 40px;
  }
  .explore-section .explore-wrapper .explore-inner .explore-items {
    padding: 30px 16px 24px;
  }
  .explore-section .explore-wrapper .explore-inner .explore-items h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .explore-section .explore-wrapper .explore-inner .explore-items p {
    font-size: 14px;
  }
  .explore-section .explore-wrapper .explore-inner-first {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .explore-section .explore-wrapper .explore-inner {
    gap: 20px;
  }
  .explore-section .explore-wrapper .explore-inner-first {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .explore-section .explore-wrapper .explore-inner {
    gap: 20px;
    flex-wrap: wrap;
  }
  .explore-section .explore-wrapper .explore-inner .explore-items {
    padding: 30px 16px 24px;
    width: 44%;
  }
  .explore-section .explore-wrapper .explore-inner .explore-items h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .explore-section .explore-wrapper .explore-inner .explore-items p {
    font-size: 14px;
  }
  .explore-section .explore-wrapper .explore-inner-first {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .explore-section .explore-wrapper .explore-inner .explore-items {
    width: 100%;
  }
}

.compition-section {
  padding: 94px 5px 156px;
  background-color: #fafafa;
}
.compition-section .com-titles {
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .compition-section {
    padding: 80px 5px 120px;
  }
  .compition-section .com-titles {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .compition-section {
    padding: 70px 5px 70px;
  }
  .compition-section .com-titles {
    font-size: 29px;
    line-height: 40px;
    margin-bottom: 24px;
  }
}

.compition-wrapper {
  max-width: 911px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.compition-wrapper .compition-items {
  height: 202px;
  background: #ffffff;
  border: 0.8px solid #b3b3b3;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 24px 28px;
  max-width: 425px;
  margin: 0 auto;
  transition: all 0.4s;
}
.compition-wrapper .compition-items h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 9px;
}
.compition-wrapper .compition-items p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #4f4f4f;
}
.compition-wrapper .compition-items:hover {
  transform: translateY(-4px);
}
@media (max-width: 1199px) {
  .compition-wrapper {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .compition-wrapper {
    gap: 24px;
  }
  .compition-wrapper .compition-items {
    width: 47%;
  }
}
@media (max-width: 575px) {
  .compition-wrapper {
    gap: 20px;
  }
  .compition-wrapper .compition-items {
    width: 100%;
  }
}

.imdaecha-section {
  padding: 152px 5px 245px;
  background-color: #fafafa;
}
.imdaecha-section .container {
  max-width: 1378px;
  margin: 0 auto;
}
.imdaecha-section .imdaecha-box {
  margin-bottom: 60px;
}
.imdaecha-section .imdaecha-box h2 {
  font-weight: 500;
  font-size: 56px;
  line-height: 67px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 16px;
}
.imdaecha-section .imdaecha-box p {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #111111;
}
@media (max-width: 1199px) {
  .imdaecha-section {
    padding: 120px 5px 120px;
  }
  .imdaecha-section .imdaecha-box {
    margin-bottom: 40px;
  }
  .imdaecha-section .imdaecha-box h2 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 12px;
  }
  .imdaecha-section .imdaecha-box p {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .imdaecha-section {
    padding: 70px 5px 70px;
  }
  .imdaecha-section .imdaecha-box {
    margin-bottom: 30px;
  }
  .imdaecha-section .imdaecha-box h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .imdaecha-section .imdaecha-box p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .imdaecha-section .imdaecha-box {
    margin-bottom: 30px;
  }
  .imdaecha-section .imdaecha-box h2 {
    font-size: 29px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .imdaecha-section .imdaecha-box p {
    font-size: 18px;
    line-height: 22px;
  }
}

.imdaecha-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.imdaecha-wrapper .imaecha-item {
  width: 260px;
  height: 260px;
  background: rgba(30, 78, 216, 0.2);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 130px;
}
.imdaecha-wrapper .imaecha-item p {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #111111;
  max-width: 164px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .imdaecha-wrapper .imaecha-item {
    width: 220px;
    height: 220px;
    border-radius: 110px;
  }
  .imdaecha-wrapper .imaecha-item p {
    font-size: 20px;
    max-width: 140px;
  }
}
@media (max-width: 1199px) {
  .imdaecha-wrapper .imaecha-item {
    width: 180px;
    height: 180px;
    border-radius: 110px;
  }
  .imdaecha-wrapper .imaecha-item p {
    font-size: 20px;
    max-width: 140px;
  }
}
@media (max-width: 991px) {
  .imdaecha-wrapper {
    flex-wrap: wrap;
  }
  .imdaecha-wrapper .imaecha-item {
    width: 180px;
    height: 180px;
    border-radius: 110px;
  }
  .imdaecha-wrapper .imaecha-item p {
    font-size: 20px;
    max-width: 140px;
  }
}
@media (max-width: 575px) {
  .imdaecha-wrapper {
    flex-wrap: wrap;
    gap: 8px;
  }
  .imdaecha-wrapper .imaecha-item {
    width: 140px;
    height: 140px;
    border-radius: 110px;
  }
  .imdaecha-wrapper .imaecha-item p {
    font-size: 16px;
    max-width: 140px;
  }
}

