@import url('fonts.css');

:root {
    --main-font: 'Nimbus Sans';
    --accent-font: 'Poppins', sans-serif;
    --local-font: 'Noto Sans KR', 'Noto Sans JP', 'Noto Sans TC', 'Noto Sans SC'; /*향후 테스트 중 깨지는 언어 추가*/
    --global-font: var(--main-font), var(--accent-font), var(--local-font), sans-serif;
}

html:lang(ko) body {
    font-family: 'Noto Sans KR', var(--main-font), var(--accent-font), sans-serif;
}
  
html:lang(ja) body {
    font-family: 'Noto Sans JP', var(--main-font), var(--accent-font), sans-serif;
}
  
html:lang(zh) body {
    font-family: 'Noto Sans SC', var(--main-font), var(--accent-font), sans-serif;
}
  
html:lang(zh-Hant) body {
    font-family: 'Noto Sans TC', var(--main-font), var(--accent-font), sans-serif;
}


body {
    font-family: var(--global-font);
    font-size: 16px;
    color: #292724;
    padding-top: 88px; /* nav의 높이만큼 공간 확보 */
    
}
a {
    text-decoration: none;
}

/*nav 꾸미기*/
.navbar {
    display: flex;
    height: 88px;
    width: 100%;
    padding: 0 2.5rem;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
    background: #ffffff;
}

.text-wrapper {
    position: relative;
    top:5px;
    font-size: 1.5rem;
    font-style: normal;
    color:#3c3c3c;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
}
.menu-container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 2.5rem;
}
.menu-container a {color:#3c3c3c}
.text-wrapper-2 {
    font-family: var(--accent-font);
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.21px;
}
.mobile-nav {
    display: none; 
}

/* 🌍 햄버거 버튼 (모바일에서만 표시) */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-toggler img {
    width: 30px;
    height: 30px;
}

/* 🌍 아이콘 스타일 */
.icon-wrapper {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
    background: #efeeee;
}

/* 🌍 모바일 네비게이션 */
/* 🌍 사이드 메뉴 초기 상태 (숨김) */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%; /* 처음엔 화면 밖에 위치 */
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: var(--shadow-md);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    z-index: 20;
}

/* 🌍 사이드바가 보일 때 */
.sidebar-menu.show {
    right: 0;
}

/* 모바일 화면 펼치기 메뉴안 */
.sidebar-menu .close-btn {
    display: flex;
    padding: 8px 12px 8px 20px;
    justify-content: flex-end;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid var(--BG_body, #F7F7F7);
    background: var(--White, #FFF);
}
.sidebar-menu a {margin-top:auto; width: 100%;}
.sidebar-contents{display: flex; flex-direction: column; padding:16px 20px 24px 20px; justify-content: space-between; height: 100%;}
.sidebar-upper {display: flex; flex-direction: column; gap: 24px;}
.sidebar-header {display: flex; align-items: center; gap:12px;justify-content: center;}
.sidebar-links{display: flex; justify-content: space-between; align-items: flex-start; align-self: stretch;
    border:solid 1px;
    padding:10px 10px 10px 10px;
    border-radius: 15px;
    border-color:lightgray;
}
.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    
}
.link1{
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--Title-Text, #222);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.056px;
}
.menu-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
}
.menu-links .text-wrapper-2{
    display: flex;
    padding: 20px 0px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-bottom: 1px solid var(--Divider_line, #EBEBEB);
    color: #222222;
}

/*hero sec 꾸미기*/
.hero-sec {
    position:relative;
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 830px;
    align-self: stretch;
    overflow: hidden;
    background: url("../img/hero_banner.jpg") -237px -30px / cover no-repeat;
    background-size: 2151px 1229px;
}
.hero-sec::before {
    content: "";
    position: absolute;
    top:0; left: 0;
    width: 100%;
    height: 100%;
    background-color: #3e3a3a;
    opacity: 0.62;
    z-index: 0;
}
.hero-sec > * {
    position: relative;
    z-index: 1; /* 자식 요소가 배경 위에 오도록 */
}
.section-container {
    position: relative;
    max-width: 1440px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.hero-content {
    align-items: center;
}
.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-top: 116px;
    margin-bottom: 20px;
    text-align: left;
    color:#ffffff;
    line-height: 86px;
}
.hero-content p {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.31px;
    color: #FFFFFF;
    margin-top: 12px;
}
.top-tool-link {
    display: inline-block;
    color:#FFFFFF;
    font-size: 1.75rem;
    font-family: var(--accent-font);
    font-weight: 600;
    line-height: 28px;
    padding: 15px 39px;
    background-color: #1592E6;
    border-radius: 20px;
    margin-top: 2rem;
    cursor: pointer;
}
/*service sec 꾸미기*/
.service-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 960px;
    background-color: #EFF1F3;
}
.service-content {
    width: 89.16%;
}
.service-content h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.34px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 12px;
}
.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.31px;
    margin: 30px 0;
    text-align: center;
}
.service-content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 3rem;
    text-align: center;
}
.service-cards {
    display: flex;
    flex-direction: column;
    gap:61px;
    width: 100%;
}
.service-cards .cards-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.service-cards .cards-group .service-single-card {
    width: 586px;
    max-height: 227px;
    border-radius: 20px;
    background-color: #FFFFFF;
    padding: 32px 29px 31px 33px;
    display: flex;
    justify-content: space-between;
}
.sv-card-text {
    max-width: 354px;
}
.sv-card-text h3 {
    font-family: var(--accent-font);
    font-weight: 600;
    font-size: 1.75rem; 
    line-height: 28px;
    color:#000000;
    margin-top: 0px;
    margin-bottom: 1rem;
    text-align: left;
}
.sv-card-text p {
    line-height: 25px;
    letter-spacing: -0.16px;
    margin-bottom: 26px;
    text-align: left;
    font-size: 1rem;
}
.sv-card-text .sv-card-button {
    display: inline-block;
    font-family: var(--accent-font);
    font-weight: 600;
    font-size: 19px;
    background-color: #FFFFFF;
    border: 2px solid #707070;
    border-radius: 11px;
    color: #000000;
    padding: 6.5px 26px;
}
.sv-card-active {
    box-shadow: 7px 4px 20px #0000004D;
}
.sv-btn-active {
    border: none !important;;
    background-color: #1592E6 !important;
    color: #FFFFFF !important;
}
.sv-card-image {
    display: flex;
    align-items: end;
}
.sv-card-image img {
    width: 170px;
    height: 114px;
}

/*Vision sec 꾸미기*/
.vision-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 960px;
    background-color: #FFFFFF;
}
.vision-content h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.34px;
    line-height: 50px;
    text-align: center;
    margin: 0 0 3rem 0;
}
.vision-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.31px;
    line-height: 28px;
    text-align: center;
    margin: 0 0 8rem 0;
}
.vision-detail {
    display: flex;
}
.vision-text-area { width: 50%;} 
.vision-text-area p {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.23px;
    line-height: 30px;
}

.vision-img-area { 
    width: 50%;
    display: flex;
    justify-content: end;
}
.vision-img-area img {
    position: relative;
    width: 560px;
    height: 470px;
    overflow: hidden;
    object-fit: cover;
    aspect-ratio:560/470;
    object-position: left;
}
/*roadmap sec 꾸미기*/
.roadmap-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 860px;
    background-color: #EFF1F3;
}
.roadmap-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 4rem;
}
.roadmap-upper {
    display: flex;
    justify-content: space-between;
}
.rd-text-area {width: 70%;}
.rd-text-area h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.96px;
    line-height: 50px;
    text-align: left;
    margin: 0 0 2rem 0;
}
.rd-text-area p {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.31px;
    line-height: 28px;
    text-align:left;
    margin-bottom: 37px;
}
.page-arrow {
    width: 30%;
}
.roadmap-cards {
    display:flex;
    /* justify-content: space-between; */
    align-items: center;
    overflow-x: auto; /* 테이블이 화면보다 클 경우 가로 스크롤 */
    gap:6%;
}
.rd-card {
    position: relative;
    /* width: 30%; */
    width: 368px;
    height: 470px;
    display: flex;
    align-items: end;
}
.ribbon {
    position:absolute;
    left:55%;
    top: 10px;
    background: url(../img/ribon.svg) center center / cover no-repeat;
    z-index: 2;
    width: 190px;
    height: 120px;
    
}
.rd-ribbon-active {
    position:absolute;
    left:217.06px;
    top: 10px;
    background: url(../img/ribon_active.svg) center center / cover no-repeat;
    z-index: 2;
    width: 190px;
    height: 120px;
    
}
.rd-cardbox {
    border: 2px solid;
    border-color: #64626285;
    padding: 56px 46px 56px 44px;
    width: 376px;
    height: 440px;
}
.rd-cardbox-active {
    border-color: #000000 !important;
}
.rd-img-part {
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
}
.rd-img-part img {
    width: 159px;
    height: 159px;
}
.rd-cardbox h4 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.23px;
    line-height: 22px;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    text-align: start;
}
.rd-cardbox p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.21px;
    line-height: 20px;
    text-align: start;
    margin: 0 0 0 0;
}

/*Contact sec 꾸미기*/
.contact-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 1100px;
    background-color: #FFFFFF;
}
.contact-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
}
.contact-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.34px;
    line-height: 50px;
    text-align: center;
}
.contact-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.31px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 4rem;
}
.contact-detail {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.ct-text-area {
    width: 50%;
}
.ct-text-area p{
    font-size: 1.125rem;
    line-height: 30px;
}
.contact-form {
    width: 50%;
    box-shadow: 3px 5px 9px #00000029;
    border: 1px solid #707070;
    border-radius: 20px;
    padding: 50px 48px;
}


/*footer 꾸미기*/
.footer {
    height: 400px;
    align-self: stretch;
    background: var(--Title-Text, #222);
    padding: 4% 3% 7% 4%;
    color:#ffffff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: top;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
}

.footer-left-up {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.footer-left-down {
    align-self: stretch;
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.056px;
}

.footer-name-and-policy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo {
    align-self: stretch;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.144px;
}

.footer-links a {
    align-self: stretch;
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 28.8px */
    letter-spacing: -0.072px;
}

.company-info {
    align-self: stretch;
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.056px;
}
.copyright {
    align-self: stretch;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.056px;
}

.footer-right {
    display: flex;
    align-items:flex-start;
    gap:1.5rem;
}

.social-icons {
    display: inline-flex;
    align-items: flex-start;
    gap: 40px;
}

.social-icons a {
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.20);
}
.social-icons a img {
    display: flex;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
}

.scroll-to-top {
    display: flex;
    width: 64px;
    height: 64px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background-color: #222;
}

.scroll-to-top img {
    width: 14px;
    height: 17.5px;
    flex-shrink: 0;
    stroke-width: 1px;
    stroke: var(--White, #FFF);
}

@media (max-width: 1330px) {
    .service-sec {
        min-height: 1500px;
    }

    .cards-group {
        flex-direction: column;
        gap: 61px;
        align-items: center;
    }
}


/* 🌍 반응형 적용 */
@media (max-width: 992px) {
    body {
        padding-top: 72px;
    }
    /*nav 꾸미기*/
    .navbar {
        height: 72px;
        padding: 0px 24px;
    }
    .LOGO .text-wrapper {
        font-size: 1.5rem;
        font-style: normal;
        color:#3c3c3c;
        font-weight: 700;
        line-height: 28px;
        text-align: left;
        padding: 0 0 0 0;
    }
    .menu-container {
        display: flex;
        align-items: center;
        gap: 40px;
        padding: 0 2.5rem;
    }
    .menu-container a {color:#3c3c3c}
    .text-wrapper-2 {
        font-family: var(--accent-font);
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.21px;
    }
    .nav-links {
        display: none;
    }
    .mobile-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 8px;
    }
    .navbar-toggler {
        display: block;
    }

    /*hero-sec*/
    .hero-sec {
        position:relative;
        display: flex;
        justify-content: center;
        width: 100%;
        min-height: 530px;
        align-self: stretch;
        overflow: hidden;
        background: url("../img/hero_banner.jpg") -452px -58px / cover no-repeat;
        background-size: 1594px 911px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-top: 78px;
        margin-bottom: 1rem;
        text-align: center;
        color:#ffffff;
        line-height: 34px;
    }
    .hero-content p {
        font-size: 1rem;
        font-weight: 700;
        line-height: 19px;
        letter-spacing: 0.21px;
        color: #FFFFFF;
        margin-top: 0px;
        text-align: left;
        padding: 0 44px;
    }
    .top-tool-link {
        display: inline-block;
        color:#FFFFFF;
        font-size: 1rem;
        font-family: var(--accent-font);
        font-weight: 600;
        line-height: 23px;
        padding: 13px 47px;
        background-color: #1592E6;
        border-radius: 12px;
        margin-top: 4rem;
        cursor: pointer;
        margin-left: 11px;
        margin-right: 11px;
    }

    /*footer*/
    .footer {
        height: 340px;
        align-self: stretch;
        background: var(--Title-Text, #222);
        padding: 2rem 1rem;
        color:#ffffff;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .footer-left-up {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
    }

    .footer-logo {
        align-self: stretch;
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 120%; /* 43.2px */
        letter-spacing: -0.096px;
    }
    .footer-links a {
        align-self: stretch;
        color: var(--White, #FFF);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -0.056px;
    }
    .company-info {
        align-self: stretch;
        color: var(--White, #FFF);
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -0.048px;
    }
    .copyright {display: none;}

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }    
    .social-icons {
        display: flex;
        align-items: flex-start;
        gap: 29px;
    }
    .social-icons a {
        display: flex;
        padding: 0.5rem;
        align-items: center;
        gap: 0.4rem;
        border-radius: 50%;
        border: 0.727px solid rgba(255, 255, 255, 0.20);
    }
    .social-icons a img {
        display: flex;
        width: 0.9rem;
        height: 0.9rem;
        justify-content: center;
        align-items: center;
    }
    .scroll-to-top {
        display: none;
    }
    .copyright-mobile {
        align-self: stretch;
        font-size: 0.75rem;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -0.003rem;
    }
    .scroll-to-top-mobile {
        display: flex;
        width: 3rem;
        height: 3rem;
        padding: 0.375rem;
        justify-content: center;
        align-items: center;
        gap: 0.375rem;
        flex-shrink: 0;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.20);
        background-color: #222;
        position: relative;
        top: -1rem;
    }
    
    .scroll-to-top-mobile img {
        width: 0.656rem;
        height: 0.820rem;
        flex-shrink: 0;
        stroke-width: 0.75px;
        stroke: var(--White, #FFF);
    }
}

@media (max-width: 768px) {
    /* 인디케이터 하단 위치 조정 */
    .carousel-indicators {
        top: -20px;
        filter: invert(1); /*화살표 색상 반전. 기본은 흰색임*/
    }
    /* 캐러셀 화살표 위치 조정 */
    .carousel-control-prev,
    .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    filter: invert(1); /*화살표 색상 반전. 기본은 흰색임*/
    }
    /* 모바일 캐러셀 내 카드 여백 조정 */
    .carousel-item .rd-card {
        margin: 0 auto;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .service-sec {
        min-height: 1681px;
    }
    .cards-group {
        gap: 46px;
    }
    .service-content h2 {
        font-size: 27px;
        letter-spacing: -0.2px;
        line-height: 50px;
    }
    .service-content h3 {
        font-size: 1.125rem;
        line-height: 22px;
        letter-spacing: 0.23px;
        margin: 12px 0 12px 0;
    }
    .service-content p {
        font-size: 16px;
        margin-bottom: 12px;
    }
    #sv-card-4 {
        display: none;
    }
    .service-cards {
        gap:2.875rem; /*46px*/
    }
    .service-cards .cards-group .service-single-card {
        width: 287px;
        max-height: 395px;
        padding: 36px 39px 23px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .sv-card-image {
        align-items: center;
        order: 1;
    }
    .sv-card-text {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sv-card-image img {
        width: 206px;
        height: 137px;
    }
    .vision-sec {
        min-height: 1347px;
    }
    .vision-content h2 {
        font-size: 1.75rem; /*28px*/
        margin: 65px 0 15px 0;
        letter-spacing: -0.2px;
        line-height: 43px;
        padding: 0 51px;
    }
    .vision-content h3 {
        font-size: 1.0625rem; /*17px*/
        letter-spacing: 0.22px;
        line-height: 20px;
        margin: 0 0 3rem 0;
        padding: 0 45px;
    }
    .vision-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .vision-img-area {
        width: 100%;
        display: flex;
        justify-content: center;
        order:1;
        overflow: hidden;
    }
    .vision-detail {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .vision-text-area {
        order:2;
        width: 100%;
        padding: 3rem 42px 50px 42px;
        display: flex;
        flex-direction: column;
        gap:2rem;
    }
    .vision-text-area p {
        font-size: 1rem;
        letter-spacing: 0px;
        line-height: 25px;
    }
    .vision-img-area img {
        position: relative;
        width: 390px;
        height: 390px;
        overflow: hidden;
        object-fit: cover;
        aspect-ratio: 560 / 470;
        object-position: left;
    }

    /*Roadmap sec*/
    .roadmap-sec {
        min-height: 786px;
    }
    .roadmap-content {
        padding: 0 1.75rem;
    }
    .rd-text-area {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .page-arrow {
        display: none;
    }
    
    .rd-text-area h2 {
        font-size: 1.75rem; /*28px*/
        letter-spacing: 0.56px;
        line-height: 50px;
        text-align: center;
        margin: 0px 0 2rem 0;
    }
    .rd-text-area p {
        font-size: 1.125rem; /*18px*/
        letter-spacing: 0px;
        line-height: 30px;
        text-align: center;
        margin-bottom: 2rem;
    }
    .ribbon {
        left: 40%;
    }
    
    .rd-cardbox h4 {
        text-align: center;
    }
    .rd-cardbox p {
        font-size: 0.875rem;
        letter-spacing: -0.3px;
    }
    .rd-cardbox {
        padding: 48px 35px 48px 35px;
    }
    /*Contact-sec*/
    .contact-sec {
        min-height: 1380px;
    }
    .contact-content h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        letter-spacing: 0px;
        line-height: 28px;
        text-align: center;
    }
    .contact-content h3 {
        font-size: 1.125rem;
        letter-spacing: 0.23px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 2rem;
    }
    .contact-content {
        padding: 0 42px;
    }
    .contact-detail {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .ct-text-area {
        width: 100%;
    }
    .contact-form {
        width: 100%;
        padding: 25px 30px 25px 25px; 
        min-width:314px;
    }
    .ct-text-area p {
        font-size: 1rem;
        letter-spacing: -0.13px;
        line-height: 22px;
        margin-bottom: 43px;
    }
}
