
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
    overflow-x: hidden;
}

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    /* color: #010003; */
}

a {
    color: #5277FF;
    text-decoration: none;
    transition: 0.3s all ease;
}

a:hover {
    color: #a3b6fd;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: "Montserrat", sans-serif;
    color: #000;
}

.container {
    z-index: 2;
    position: relative;
}

.text-black {
    color: #000 !important;
}

.text-primary {
    color: #2d71a1 !important;
}

.border-top {
    border-top: 1px solid #f2f2f2 !important;
}

.border-bottom {
    border-bottom: 1px solid #f2f2f2 !important;
}

figure figcaption {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.8rem;
}

section {
    overflow: hidden;
}

.section {
    padding: 7rem 0;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(-45deg, #3db3c5, #274685);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section#partners {
    padding: 5rem 0;
    margin-top: 7rem;
}

.fw-extra-bold {
  font-weight: 800;
}

.fw-black {
  font-weight: 900;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #2d71a1;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #3687c1;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Default btn sre-tyling */
.btn {
    border: none;
    padding: 10px 30px !important;
}

.btn.btn-outline-white {
    border: 2px solid #fff;
    background: none;
    color: #fff;
}

.btn.btn-outline-white:hover {
    background: #fff;
    color: #2d71a1;
}

.btn.btn-primary {
    background: #5277FF;
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
}

#header.header-scrolled {
    background: rgba(31, 40, 58, 0.5);
    height: 60px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 4px 0;
    line-height: 1;
    font-weight: 500;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: rgba(255, 255, 255, 0.65);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #22283A;
    border: 1px solid #fff;
    border-radius: 0;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 0.313rem 1.25rem;
    font-size: 15px;
    color: #fff;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #fff;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(27, 49, 94, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 0 20px;
    font-size: 1rem;
    color: #101c36;
    font-weight: 700;
    width: 100%;
    background: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #5277FF;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    /* margin: 10px 20px; */
    padding: 5px 0 10px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25); */
}

/* .navbar-mobile .dropdown > a {
    background: #212529;
    color: #fff;
} */

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  color: #212529;
  font-weight: 500;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown a span {
    padding-top: 1rem;
    font-family: 'Montserrat';
    font-weight: 800;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #2d71a1;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#technology.hero-section {
    background: url(../img/hero-bg-1.jpg);
    background-position-y: bottom;
    position: relative;
}

#solution.hero-section {
    background: url(../img/hero-bg-2.jpg);
    background-position-y: top;
    position: relative;
}

#company.hero-section {
    background: url(../img/hero-bg-3.jpg);
    background-position-y: bottom;
    position: relative;
}

.hero-section,
.hero-section > .container > .row {
    height: 100vh;
    min-height: 880px;
}

.hero-section.inner-page {
    height: 42vh;
    min-height: 0;
}

.hero-section.inner-page .hero-text {
    transform: translateY(-220px);
}

#technology .container .row .hero-text h1,
#solution .container .row .hero-text h1,
#company .container .row .hero-text h1 {
    color: #fff;
    font-weight: 600;
}

#hero {
    width: 100%;
    height: calc(100vh);
    padding: 0;
    overflow: hidden;
    background: #000;
}

#hero .carousel-item {
    width: 100%;
    height: calc(100vh);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    overflow: hidden;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(13, 30, 45, 0.6);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

#hero .carousel-content {
    text-align: left;
}

#hero h2 {
    color: #fff;
    height: 40vh;
    font-size: 3.75rem;
    font-weight: 600;
    letter-spacing: -0.4px;
    display: flex;
    align-items: flex-end;
    font-family: "Montserrat", sans-serif;
}

#hero p {
    width: 100%;
    margin-bottom: 0;
    animation-delay: 0.4s;
    color: #fff;
    margin-left: 0.5rem;
    letter-spacing: 0.031rem;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .carousel-indicators li {
    list-style-type: none;
    cursor: pointer;
}

.carousel-indicators {
    display: flex;
    justify-content: flex-start;
    margin: 0 auto;
    bottom: 22%;
    width: 1300px;
}

#hero .carousel-indicators li .dot {
  width: 18px;
  height: 18px;
  border-radius: 0;
  border: 1px solid #fff;
}

#hero .carousel-indicators li.active .dot {
    background-image: url('../img/slide_hover_on.png');
    border: 0;
    opacity: 1;
    transition: 0.1s;
}

#hero .carousel-indicators [data-bs-target] {
    box-sizing: unset;
    flex: unset;
    width: 240px;
    height: unset;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: unset;
    cursor: pointer;
    opacity: 1;
    transition: opacity .6s ease;
    background-color: transparent !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #22283A;
    padding: 0 0 3rem 0;
    color: #fff;
    font-size: 0.875rem;
    margin-top: 7rem;
}

#footer .footer-top {
    background: #22283A;
    border-bottom: 1px solid #555;
    padding: 60px 0 30px 0;
}

#footer .footer-top img {
    height: 2.188rem;
}

#footer P {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

#footer .copyright {
    text-align: left;
    padding-top: 1.25rem;
    font-size: 0.813rem;
    color: #A8A8A8;
}

#footer a {
    font-size: 0.875rem;
}


/*--------------------------------------------------------------
# Additional
--------------------------------------------------------------*/
.text-color-0 {
    color: #010003
}

.text-color-1 {
    color: #5277FF;
}

.text-color-2 {
    color: #F24822;
}

.bg-color-1 {
    background-color: #F5F7FC;
}

.main-title {
    font-weight: 700;
    font-size: 3.125rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.main-image-left {
    padding-right: 0.25rem;
}

.main-contents {
    padding-top: 6rem;
    text-align: left;
}

.main-contents h2 {
    padding-bottom: 0.5rem;
}

.feature-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}

.step-icon {
    width: 100%;
    height: 6.25rem;
    margin-top: 1.5rem;
    object-fit: contain;
}

.step-number {
    font-size: 0.875rem;
    font-weight: 400;
    color: #212529;
    border: 1px solid #707070;
    width: 4.625rem;
    padding: 0.25rem 0.625rem;
    text-align: center;
    border-radius: 1.875rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin: 6rem 0 4rem;
}

.team-card {
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 2rem 2.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.team-photo {
    width: 10.5rem;
    height: 10.5rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 1.875rem;
}

.team-role {
    font-size: 1.063rem;
    color: #5277FF;
    font-weight: 400;
    padding-bottom: 1rem;
}

.linkedin-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0;
    object-fit: contain;
    position: absolute;
    right: 34px;
    top: 40px;
    color: #000;
}

a:hover .linkedin-icon {
  color: #0077b5; /* LinkedIn 브랜드 블루 */
}

.timeline-line-position {
    position: absolute;
    left: 300px;
    top: 0;
    bottom: 0;
    width: auto;
}

.timeline-position {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    padding-left: 3rem;
}

.timeline-position .pt-1 {
    position: absolute;
    left: 180px;
}

.timeline-line {
    width: 6px;
    background-color: #5277FF;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
}

.timeline-line-last {
    width: 6px;
    background-color: #E6E9F1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
}

.timeline-circle {
    width: 24px;
    height: 24px;
    border: 6px #5277FF solid;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 131px;
    transform: translateY(5px);
}

.timeline-pill {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: #fff;
    border: 1px solid #B7BBC7;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    white-space: normal;
    max-width: 100%;
}

@media (max-width: 1400px) {
    .timeline-circle {
       left: 93px;
    }
    .timeline-position .pt-1 {
        left: 140px;
    }
    .timeline-line-position {
        left: 240px;
    }
}

@media (max-width: 1200px) {
    .timeline-circle {
       left: 46px;
    }
    .timeline-position .pt-1 {
        left: 93px;
    }
    .timeline-line-position {
        left: 170px;
    }
}


#press .press-card {
    background: #fff;
    border: 1px solid #b7bbc7;
    border-radius: 18px;
    padding: 1.75rem 2rem;
    margin-bottom: 1rem;
    height: 160px;
}

#press .press-card p,
#press .col-md-3 .video-card .video-con p {
    color: #010003;
    font-size: 0.9375rem;
    margin-bottom: 0.3125rem;
}

#press .press-card h5,
#press .col-md-3 .video-card .video-con h5 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

#press .press-card a,
#press .col-md-3 .video-card .video-con a {
    color: #5277ff;
    text-decoration: underline;
    font-size: 0.9375rem;
    letter-spacing: -0.2px;
    font-weight: 500;
}

#press .col-md-3 {
    flex: 0 0 auto;
    width: 29%;
}

#press .col-md-3 .video-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid #b7bbc7;
    min-height: 512px;
}

#press .col-md-3 .video-card .video-image,
#press .col-md-3 .video-card .video-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

#press .col-md-3 .video-card .video-con {
    padding: 2rem;
}


.video_list li {
    width: 31.1%;
    float: left;
    margin: 0 2.5rem 2.5rem 0;
    padding: 0.75rem;
    background-color: #fff;
    height: 305px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #dbdee2;
    border-radius: 0.625rem;
}

.press_list li:nth-child(3n),
.video_list li:nth-child(3n) {
    margin-right: 0;
}

.press_list li .press_title a,
.video_list li .press_title a {
    font-size: 1rem;
    color: #222;
    line-height: 1.4;
    letter-spacing: 0;
    font-family: 'Pretendard Variable', sans-serif;
    font-weight: 700;
}

.press_list li .press_title a:hover,
.video_list li .press_title a:hover {
    color: #274373;
    text-decoration: underline;
}

.press_list li .press_date {
    font-size: 0.875rem;
    color: #6c757d;
    font-family: 'Pretendard Variable', sans-serif;
    padding-left: 3px;
}

.press_button_area {
    text-align: center;
}

.press_button {
    width: 12rem;
    height: 4.1255rem;
    line-height: 4.1255rem;
    border-radius: 35px;
    background-color: rgba(247, 244, 243, 0.5);
    text-align: center;
    font-size: 1rem;
    color: #000;
    letter-spacing: 0;
    font-family: 'Montserrat', 'Pretendard Variable', sans-serif;
    font-weight: 600;
}

.press_button img.plus_icon {
    width: 1.4%;
    position: relative;
    top: -1px;
    left: -1px;
}

.press_button:hover {
    color: #111;
}

p.press_title {
    line-height: 1.25;
}

#press-list,
#press-view {
    margin-top: 10rem;
}

.title-area {
    text-align: center;
    border-bottom: solid 1px rgba(0, 0, 0, 0.6);
    padding: 1rem 0;
    width: 100%;
}

.title-area h1.main-title {
    padding-top: 2rem;
    font-weight: 500;
}

.list-area {
    padding: 3rem 0;
}

#press-list .list-area .press_list li {
    width: 31.1%;
    float: left;
    margin: 0 2.5rem 2.5rem 0;
    padding: 0.75rem;
    background-color: #fff;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #dbdee2;
    border-radius: 0.625rem;
}

.press_image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 0.313rem;
}

#press-list .list-area .press_list li:nth-child(3n) {
    margin-right: 0;
}

#press-view .title-area h5 {
    font-size: 1rem;
    color: #111;
    font-weight: normal;
}

#press-view .title-area h1 {
    font-size: 2.5rem;
    letter-spacing: -0.8px;
    font-weight: bold;

    line-height: 1.25;
}

.contents-area {
    width: 84%;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 0 2rem;
}

.contents-area > p.writer {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: -0.8px;
}

.contents-area > h2 {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.8px;
    line-height: 2rem;
    padding: 3rem 0;
}

.contents-area > img.contents-pic {
    width: 70%;
    display: -webkit-box;
    margin: 0 auto 3rem;
}

.fs-18px {
    font-size: 1.125rem;
}
.only-mo {
    display: none;
}
/*--------------------------------------------------------------
# 반응형
--------------------------------------------------------------*/

/* Small phones (360px to 479px) */
@media (min-width: 280px) and (max-width: 479px) {
    .only-pc {
        display: none;
    }
    .only-mo {
        display: block;
    }
    #header .logo img {
        max-height: 2.188rem;
    }
     #hero,
    #hero .carousel-item {
        height: calc(100vh - 70px);
    }
    #hero h2 {
        height: 32vh;
        font-size: 3rem;
    }
    #hero .carousel-content.container {
        padding: 0 20px;
    }
    .carousel-indicators {
        bottom: 8%;
        width: 90%;
        flex-direction: column;
    }
   .main-title {
        font-size: 2.5rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

     .main-title.only-mo {
        font-size: 1.778rem;
    }

    .main-image-left {
        padding-right: 0.75rem;
    }

    .main-image-right {
        padding-top: 2rem;
    }

    .main-image-right02 {
        padding-top: 1rem;
    }

    .main-contents {
        padding-top: 2rem;
    }

    .main-contents h6 {
        padding-bottom: 0;
    }

    .main-contents div p {
        margin-bottom: 2.5rem;
    }

   .pt-m-4 {
        padding-top: 2rem;
    }

    .fs-18px {
        font-size: 1rem;
    }
    .soulution-heading {
        padding: 0 2rem;
    }
    .contents-img-align {
        padding: 0 2rem !important;
    }

    .solution-img-align {
        padding: 0 !important;
    }

    #wud div div div .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .team-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .team-photo {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }


    .timeline-line-position {
        left: 20px;
    }
    .timeline-circle {
        left: 16px;
    }
    .timeline-position .pt-1 {
        left: 62px;
        top: -10px;
    }
    .timeline-contents {
        margin-top: 4rem;
    }
    .timeline-contents div {
        margin-left: 2rem !important;
    }
    .timeline-pill {
        font-size: 0.912rem;
        padding: 0.5rem 1rem;
    }
    .section {
        padding: 4rem 0;
    }
    #press .press-card {
        height: auto;
        padding: 1.5rem;
    }
    #press .col-md-3 .video-card .video-con {
        padding: 1.5rem;
    }
    #press .col-md-5 {
        width: 100%;
    }
    #press .col-md-10 {
        flex: 0 0 auto;
        width: 56%;
    }
    #press .col-md-2 {
        flex: 0 0 auto;
        width: 44%;
    }
    #press .col-md-3 {
        flex: 0 0 auto;
        width: 100%;
    }
    #press .col-md-3 .video-card {
        min-height: auto;
        margin-bottom: 1rem;
    }
    #press .col-md-3 .video-card .video-image, #press .col-md-3 .video-card .video-image img {
        height: 200px;
    }
    #press-list .list-area .press_list li,
    #video-list .list-area .video_list li {
        width: 92.1%;
        margin: 0 0 1rem 0;
    }
    #press-view .title-area h1 {
        font-size: 1.75rem;
        padding: 0 1.5rem;
        word-break: keep-all;
        white-space: normal;
    }
    .contents-area > h2 {
        font-size: 1.25rem;

    }
    .press_button img.plus_icon {
        width: 4%;
        position: relative;
        top: 0;
        left: -2px;
    }
    #press-view .title-area h5 {
        padding-bottom: 1rem;
    }

    #partners .container div.text-end {
        text-align: center !important;
    }

    #partners .container div img.pe-5 {
        padding-right: 0 !important;
    }
}

/* Regular phones (480px to 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .only-pc {
        display: none;
    }
    .only-mo {
        display: block;
    }
    #hero,
    #hero .carousel-item {
        height: calc(100vh - 70px);
    }
    #hero h2 {
        height: 38vh;
        font-size: 3rem;
    }
    #hero .carousel-content.container {
        padding: 0 20px;
    }
    .carousel-indicators {
        bottom: 8%;
        width: 90%;
        flex-direction: column;
    }
   .main-title {
        font-size: 2.5rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .main-image-left {
        padding-right: 0.75rem;
    }

    .main-image-right {
        padding-top: 2rem;

    }

     .main-image-right02 {
        padding-top: 0.75rem;
     }

    .main-contents {
        padding-top: 2rem;
    }

    .main-contents h6 {
        padding-bottom: 0.2rem;
    }

    .main-contents div p {
        margin-bottom: 2.5rem;
    }

    .pt-m-4 {
        padding-top: 2rem;
    }
    #wud div div div .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .team-card {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .team-photo {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    .timeline-line-position {
        left: 60px;
    }
    .timeline-circle {
        left: 56px;
    }
    .timeline-position .pt-1 {
        left: 125px;
        top: -10px;
    }
    .timeline-contents {
        margin-top: 4rem;
    }
    .timeline-contents div {
        margin-left: 6.75rem !important;
    }
    .timeline-pill {
        font-size: 0.912rem;
        padding: 0.5rem 1rem;
    }
    #press .col-md-5 {
        width: 100%;
    }
    #press .col-md-10 {
        flex: 0 0 auto;
        width: 56%;
    }
    #press .col-md-2 {
        flex: 0 0 auto;
        width: 44%;
    }
    #press .col-md-3 {
        flex: 0 0 auto;
        width: 100%;
    }
    #press .col-md-3 .video-card {
        min-height: 480px;
        max-height: 480px;
        margin-bottom: 1rem;
    }
    #press .col-md-3 .video-card .video-image, #press .col-md-3 .video-card .video-image img {
        height: 300px;
    }
    #press-list .list-area .press_list li {
        width: 92.1%;
        margin: 0 0 1rem 0;
    }
       #partners .container div.text-end {
        text-align: center !important;
    }

    #partners .container div img.pe-5 {
        padding-right: 0 !important;
    }
}

/* Tablets (600px to 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .only-pc {
        display: none;
    }
    .only-mo {
        display: block;
    }
    .pt-m-4 {
        padding-top: 2rem;
    }
    #hero .carousel-indicators [data-bs-target] {
        width: 190px;
    }
    .carousel-indicators {
        width: 85%;
    }
     .main-image-left {
        padding-right: 0.75rem;
    }
    .main-image-right {
        padding-top: 2rem;
    }
    .main-image-right02 {
        padding-top: 1rem;
    }
    .main-contents {
        padding-top: 2rem;
    }
    .main-contents h6 {
        padding-bottom: 0.2rem;
    }
    .main-contents div p {
        margin-bottom: 2.5rem;
    }
    .team-card {
        padding: 1.5rem;
        gap: 20px;
    }
    .team-photo {
        width: 10rem;
        height: 10rem;
        margin-right: 0;
    }
    #press .col-md-5 {
        width: 100%;
    }
    #press .col-md-10 {
        flex: 0 0 auto;
        width: 56%;
    }
    #press .col-md-2 {
        flex: 0 0 auto;
        width: 44%;
    }
    #press .col-md-3 {
        flex: 0 0 auto;
        width: 100%;
    }
    #press .col-md-3 .video-card {
        min-height: 580px;
        max-height: 580px;
        margin-bottom: 1rem;
    }
    #press .col-md-3 .video-card .video-image, #press .col-md-3 .video-card .video-image img {
        height: 400px;
    }
    #press-list .list-area .press_list li {
        width: 92.1%;
        margin: 0 0 1rem 0;
    }
    .timeline-line-position {
        left: 50px;
    }
    .timeline-position .pt-1 {
        left: 115px;
    }
     .timeline-contents {
        margin-top: 5rem;
    }
    .timeline-contents div {
        margin-left: 6rem !important;
    }
}
/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .only-pc {
        display: none;
    }
    .only-mo {
        display: block;
    }
    #hero,
    #hero .carousel-item {
        height: calc(100vh - 70px);
    }

    #hero .carousel-content.container {
        padding: 0 50px;
    }

    .hero-section.inner-page .hero-text {
        margin-top: -80px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-top: 40px;
    }
    #hero h2 {
        height: 52vh;
        font-size: 3.5rem;
    }
    .carousel-indicators {
        bottom: 12%;
        width: 610px;
    }
    #hero .carousel-indicators [data-bs-target] {
        width: 200px;
    }
    .main-image-left {
        padding-right: 0.75rem;
    }

    .main-image-right {
        padding-top: 2rem;
    }
    .main-image-right02 {
        padding-top: 1rem;
    }
    .main-contents {
        padding-top: 2rem;
    }
    .main-contents h6 {
        padding-bottom: 0.2rem;
    }
    .main-contents div p {
        margin-bottom: 2.5rem;
    }
    .pt-m-4 {
        padding-top: 2rem;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-4, .col-md-5 , .col-md-6, .col-md-7, .col-md-8 {
        flex: 0 0 auto;
        width: 100%;
    }
    .contents-img-align {
        text-align: center;
    }
    .section {
        padding: 5rem 0;
    }
    .team-card {
        padding: 2rem 2.5rem;
    }
    .team-photo {
        width: 10rem;
        height: 10rem;
        margin-right: 2rem;
    }
    .timeline-line-position {
        left: 30px;
    }
    .timeline-circle {
        left: -154px;
    }
    .timeline-position .pt-1 {
        left: -115px;
    }

    .timeline-contents div {
        margin-left: 13rem !important;
    }
    #press .col-md-5 {
        width: 100%;
    }
    #press .col-md-10 {
        flex: 0 0 auto;
        width: 56%;
    }
    #press .col-md-2 {
        flex: 0 0 auto;
        width: 44%;
    }
    #press .col-md-3 {
        flex: 0 0 auto;
        width: 100%;
    }
    #press .col-md-3 .video-card {
        min-height: 580px;
        max-height: 580px;
        margin-bottom: 1rem;
    }
    #press .col-md-3 .video-card .video-image, #press .col-md-3 .video-card .video-image img {
        height: 400px;
    }
    #press-list .list-area .press_list li {
        width: 92.1%;
        margin: 0 0 1rem 0;
    }
    #partners .container div.text-end {
        text-align: center !important;
    }


}

/* Small laptops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
        .only-pc {
        display: none;
    }
    .only-mo {
        display: block;
    }
    .carousel-indicators {
        display: flex;
        justify-content: flex-start;
        margin: 0 auto;
        bottom: 20%;
        width: 920px;
    }
    .fs-18px {
    font-size: 1.063rem;
    }
    .step-icon {
        height: 7rem;
    }
    #hero h2 {
        height: 45vh;
        font-size: 3rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .col-md-3 {
        padding: 0.5rem;
    }

    .contents-img-align {
        padding: 0 !important;
    }
    .team-card {
        padding: 1.5rem;
        gap: 16px;
    }
    .team-photo {
        width: 8.5rem;
        height: 8.5rem;
        margin-right: 0;
    }

      .linkedin-icon {
        top: 24px;
    }
    #press .col-md-5 {
        width: 40%;
    }
    #press .press-card {
        padding: 1rem 2rem;
        min-height: 160px;
        max-height: 160px;
    }
    #press .press-card h5, #press .col-md-3 .video-card .video-con h5 {
         margin-bottom: 0.5rem;
    }
    #press .col-md-3 {
        flex: 0 0 auto;
        width: 29%;
    }
    #press .col-md-3 .video-card .video-image, #press .col-md-3 .video-card .video-image img {
        height: 240px;
    }
}

/* Regular desktops (1200px to 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .carousel-indicators {
        display: flex;
        justify-content: flex-start;
        margin: 0 auto;
        bottom: 20%;
        width: 1100px;
    }
      .contents-img-align {
        padding-left: 0 !important;
        flex: 0 0 auto;
    }
}

@media (max-width: 991px) {
  #navbar.navbar-mobile .dropdown ul {
    display: block !important;
  }
}

.lead {
    font-size: 1rem;
}