/* Reset CSS */
/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*}*/
/* * {
    outline: 1px solid red;
} */

html,
body,
div,
span,
applet,
object,
iframe, 
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    /* background-color: #012d6f; */
}
/* Reset untuk semua <a> */
a {
    text-decoration: none; /* Hilangkan underline */
    color: inherit; /* Gunakan warna teks elemen induk */
    cursor: pointer; /* Tampilkan pointer tangan */
  }
  
  /* Hover efek */
  a:hover {
    color: #0056b3; /* Ubah warna saat hover */
    text-decoration: underline; /* Tambahkan underline saat hover */
    transition: color 0.3s ease; /* Transisi perubahan warna */
  }
  

h0 {
    font-size: 3.5rem;
    line-height: 4rem;
}
h1 {
    font-size: 2.5rem;
    line-height: 3rem;
}
h2 {
    font-size: 2.25rem;
    line-height: 2.75rem;
}
h3 {
    font-size: 2rem;
    line-height: 2.5rem;
}
h4 {
    font-size: 1.75rem;
    line-height: 2.25rem;
}
h5 {
    font-size: 1.5rem;
    line-height: 2rem;
}
h6 {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
hr {
    border: none;
    height: 3px;
    background-color: #ffffff;
    width: 65%;
    opacity: 1;
    margin: 2px 0px 2px 0px;
}
.textBlueRoyal {
    color: #012d6f;
}
.textBlueRoyalLight {
    color: #014cbb;
}
.textWhite {
    color: #ffffff;
}
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh; /* Tinggi overlay */
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        /* Abu-abu dengan opacity 55% di atas */ rgba(255, 255, 255, 0)
            /* Abu-abu dengan opacity 0% di bawah */
    );
    pointer-events: none; /* Agar overlay tidak mengganggu interaksi */
}

/* Navbar */
/* General Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    transition: background-color 0.3s, color 0.3s;
    z-index: 100;
    width: -webkit-fill-available;
    height: 70px;
    padding: 0 50px;
}
.navbar-white {
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    transition: background-color 0.3s, color 0.3s;
    z-index: 100;
    width: -webkit-fill-available;
    height: 70px;
    padding: 0 50px;
    color: #012d6f;
}
.align_nav {
    display: flex;
    background: transparent;
    width: 100%;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar .menu-toggle {
    font-size: 24px;
    /* color: #fff; */
    cursor: pointer;
    display: none;
}

.navbar ul.nav-links {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    /* color: #fff; */
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #ddd;
}

/* Dropdown Navigation */


/*.dropdown_nav a{*/
/*    display : none;*/
/*}*/

.dropdown-menu {
    position: absolute;
    top: 100%;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 160px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
     /* z-index lebih tinggi dari navbar */:;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

/* Rotasi ikon */
.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown-toggle.active i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/* Gaya untuk ikon dropdown */
.dropdown-toggle i {
    transition: transform 0.3s ease-in-out;
    margin-left: 5px;
}

.dropdown.show .dropdown-toggle i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/* Side Menu Styles for Small Screens */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Start off-screen */
    width: 250px;
    height: 100%;
    background: #012d6f;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 200;
    padding-top: 20px;
}

.side-menu.active {
    right: 0; /* Slide in */
}

.side-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.side-menu ul li {
    margin: 20px 0;
}

.side-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.side-menu ul li a:hover {
    color: #ddd;
}
.side-menu .close-menu {
    font-size: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.side-menu .close-menu:hover {
    color: red;
}
.accordion {
    cursor: pointer;    
    transition: background-color 0.3s;
}
.panel {
    display: none;
    padding: 10px;
    /* border: 1px solid #ccc; */
    border-top: none;
    border-radius: 0 0 5px 5px;
    /* background-color: #fafafa; */
}
.panel a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #007BFF;
}
.panel a:hover {
    text-decoration: underline;
}
.visibel {
    color: white;
}
.visibel ul li,
.visibel ul li a {
    color: white;
}
.visibel .logo_svg path {
    fill: white;
}
.scrolled {
    color: #012d6f;
    background-color: #fff;
    transition: background-color 0.3s, color 0.3s, right 0.3s ease;
}
.scrolled .logo_svg path {
    fill: #012d6f;
}
.scrolled ul li,
.scrolled ul li a {
    color: #012d6f;
}
.scrolled .nav-links {
    fill: white;
    transition: fill 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-color: #012d6f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.hero .content {
    max-width: 600px;
}

.hero p {
    /* font-size: 18px; */
    margin-bottom: 15px;
}

.hero .btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.hero .btn:hover {
    background: #fff;
    color: #003366;
}

.hero .image {
    position: relative;
    width: 50%;
}

.hero .image img {
    width: 80%;
    min-width: 40%;
    height: auto;
    object-fit: contain;
    display: block; /* Untuk menghindari spasi tambahan jika elemen img berada dalam elemen inline */
    margin: 0 auto; /* Untuk memastikan gambar berada di tengah */
}

/* why cdf */
.hero-why-cfd {
    position: relative;
    height: 500px;
    background-color: #ffffff;
    display: flex;
    padding: 0 50px;
    /* color: #000000; */
    margin-top: 70px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-why-cfd h1{
    font-weight: bold;
}
.content-why-cfd {
    position: relative;
    /* height: 100vh; */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    /* padding: 0 50px; */
    color: #000000;
    /* /* margin-top: 70px; */
}
.content-why-cfd .content h6 {
    text-align: center;
    max-width: 800px;
    font-weight: 600;
}
.content-why-cfd .image img {
    position: relative;
    width: 100%;
    margin-right: 30px;
}
.hero-sertified {
    position: relative;
    /* height: 100vh; */
    background-color: #012d6f;
    display: flex;
    padding:50px;
    color: #ffffff;
    /* margin: 30px 0px 30px 0px; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content-sertified {
    position: relative;
    /* height: 100vh; */
    background-color: #012d6f;
    display: flex;
    align-items: center;
    /* padding: 0 50px; */
    color: #ffffff;
    /* /* margin-top: 70px; */
}
.content-sertified .content h6 {
    text-align: center;
    max-width: 800px;
    font-weight: 100;
}
.content-sertified .image {
    position: relative;
    width: 100%;
    margin: 30px 30px 30px 30px;
}
.hero-news {
    position: relative;
    /* height: 100vh; */
    background-color: #012d6f;
    display: flex;
    /* padding: 0 50px; */
    color: #ffffff;
    padding: 20px 0px 20px 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content-news {
    position: relative;
    /* height: 100vh; */
    background-color: #012d6f;
    display: flex;
    align-items: center;
    /* padding: 0 50px; */
    color: #ffffff;
    /* /* margin-top: 70px; */
}
.content-news .content h6 {
    text-align: center;
    max-width: 800px;
    font-weight: 100;
}
.content-news .image {
    position: relative;
    width: 100%;
    margin: 30px 30px 30px 30px;
}
.newsTitile {
    text-align: center;
    background-color: #fff;
    margin-bottom: 10px;
}
.newsTitile h1{
    font-weight: bold;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    /* padding: 16px; */
    width: 100%;
}

.card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.card:hover .card-img {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-content {
    padding: 16px;
    text-align: left;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* margin: 0 0 10px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */

.card-date {
    font-size: 14px;
    color: #777;
}

.hero-contact-sub {
    display: flex;
    justify-content: center;
}
.hero-contact {
    position: relative;
    height: 800px; 
    background-color: #ffffff;
    display: flex;
    padding: 0 50px;
    color: #012d6f;
    padding: 20px 0px 20px 0px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.content-contact {
    position: relative;
    /* height: 100vh; */
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
    /* padding: 0 50px; */
    color: #012d6f;
    flex-direction: column;
    /* /* margin-top: 70px; */
}
.content-contact h2 {
    margin-bottom: 2rem;
    margin: 0 auto 30px auto;
}
.contact-all {
    display: flex; /* Mengaktifkan flexbox */
    justify-content: center; /* Mengatur elemen ke tengah secara horizontal */
    align-items: center; /* Mengatur elemen ke tengah secara vertikal */
    height: 100vh; /* Tinggi penuh viewport */
    margin: 0; /* Menghapus margin default */
    padding: 0; /* Reset padding jika perlu */
}
.contact-form {
    position: relative;
    /* height: 100vh; */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    /* padding: 0 50px; */
    color: #012d6f;
    flex-direction: column;
    /* /* margin-top: 70px; */
}
.formContact {
    position: relative;
    /* height: 100vh; */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    /* padding: 0 50px; */
    color: #012d6f;
    flex-direction: column;
    /* /* margin-top: 70px; */
}
.content-contact .content h6 {
    text-align: center;
    max-width: 800px;
    font-weight: 100;
}
.content-contact .image {
    position: relative;
    width: 100%;
    margin: 30px 30px 30px 30px;
}

.vertical-line {
    width: 1px; /* Ketebalan garis */
    height: 400px; /* Tinggi garis */
    background-color: black; /* Warna garis */
    margin: 10px; /* Margin opsional */
}

.formContact {
    /* width: 100%; */
    max-width: 500px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
.formRow {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.icon-circle {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    background-color: #012d6f; /* Warna background bulatan */
    color: white; /* Warna ikon */
    border-radius: 50%; /* Membuat ikon menjadi bulat */
    width: 40px; /* Lebar bulatan */
    height: 40px; /* Tinggi bulatan */
    font-size: 18px; /* Ukuran ikon */
    text-align: center;
    flex-shrink: 0;
}

.officeMalang,
.officeJakarta,
.contact-mail,
.contact-wa {
    display: flex;
    align-items: center;
    gap: 10px; /* Jarak antara ikon dan teks */
    margin-bottom: 15px; /* Jarak antar item */
}

/* Input and textarea */
.formContact input,
.formContact textarea {
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.formContact input:focus,
.formContact textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button styling */
.formContact button {
    width: 100%;
    padding: 10px 15px;
    margin-top: 15px;
    background-color: #2dc553;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formContact button:hover {
    background-color: #1b7832;
}

.sticky-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2dc553;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-button:hover {
    background-color: #21923d;
    transform: scale(1.1);
}

.sticky-button.visible {
    opacity: 1;
    visibility: visible;
}

/* Swiper Section */
.swiper-container-wrapper {
    position: relative;
    width: 100%;
    height: 800px;
}

.swiper-title {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    /* font-size: 24px; */
    font-weight: bold;
    /* color: #012d6f; */ 
}
.swiper-title-RND {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    /* font-size: 24px; */
    font-weight: bold;
    /* color: #012d6f; */
}

.swiper-sub-title {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    /* font-size: 24px; */
    font-weight: 500;
    /* color: #012d6f; */
}
.swiper-subed-title {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    /* font-size: 24px; */
    font-weight: normal;
    /* color: #012d6f; */
}

swiper-container {
    width: 100%;
    height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
    box-sizing: border-box;
}

swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
}

.floating-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

/* .btn-action {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.btn-action:hover {
    background-color: #0056b3;
} */
.btn-action {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #fff;
    background: #012d6f;
    border-radius: 5px;
    cursor: pointer;
    /* text-transform: uppercase; */
    transition: 0.3s ease;
}

.btn-action:hover {
    background: #fff;
    color: #003366;
}

.btn-action-white {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #012d6f;
    border: 2px solid #012d6f;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    /* text-transform: uppercase; */
    transition: 0.3s ease;
}

.btn-action-white:hover {
    background: #012d6f;
    color: #fff;
}

.fullCover {
    padding: 0px !important;
}
.fullCover img {
    width: 100% !important;
}
.bgWhite {
    background-color: white !important;
}
.layoutSlider {
    position: relative;
    height: 100vh;
    /* width: fit-content; */
    background-color: #ffffff;
    display: flex;
    padding: 0 50px;
    color: #000000;
    margin-top: 70px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.layoutSlider h5 {
    font-weight: 100;
    text-align: left;
    max-width: 1400px;
    /* max-width: 80%; */
}
.layoutSlider svg {
    width: 50px;
    height: auto;
}
.layoutSlider img {
    width: 50px;
    height: auto;
}
.qouteOne {
    margin: 0px auto 0px 0px;
}
.qouteTwo {
    margin: 0px 0px 0px auto;
}
.identity {
    display: flex;
    align-items: center;
    justify-content: center;
}

.identity .left-image {
    width: 50px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.identity .right-image {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 50px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}
.identity .right-image-univ {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 50px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 10px; /* Spasi antara teks dan gambar */
}
.text-content .name {
    font-weight: bolder;
}

.text-content p {
    margin: 0;
    text-align: center;
}

footer {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 0 50px 0;
    background-color: #012d6f;
}
footer .foterbott {
    margin: 0px;
    padding: 0px;
}
footer .main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    /* gap: 0.5rem; */
}
footer .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 1rem;
}
footer .service {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 1rem; 
}

footer a {
    text-decoration: none; /* Hilangkan garis bawah */
    color: inherit; /* Samakan warna dengan elemen induk */
    /* pointer-events: none; Nonaktifkan fungsi tautan */
    /* cursor: default; Ubah kursor menjadi normal */
    /* margin-top: 10px; */
}
footer ul li {
    list-style: none; /* Hilangkan gaya daftar */
    padding: 0; /* Hilangkan padding default */
    /* margin: 0; Hilangkan margin default */
    /* margin-top: 10px; */
}
footer a,
footer span {
    gap: 10px;
}
footer p,
footer ul li,
footer span,
footer a {
    margin-bottom: 1rem; /* Beri jarak antar elemen */
}
footer svg {
    width: 60%;
    height: auto;
}
/* portfolio */
.hero-portfolio {
    background-image: url('https://infimech.tech/assets/assets_infimech/About/background_blur.png');
    background-size: cover;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-portfolio h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}
.hero-about-portfolio {
    background-color: #ffffff;
    background-size: cover;
    color: #012d6f;
    text-align: center;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 2rem auto; */
    flex-direction: column;
    padding: 1rem;
}
.content-portfolio{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}
.title-hero-portfolio{
    display: flex;
    flex-direction: column;
}
.hero-about-portfolio-dua {
    background-color: #f5f5f5;
    background-size: cover;
    color: #012d6f;
    text-align: center;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 2rem auto; */
    flex-direction: column;
    padding: 1rem;
}
.hero-port {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 1rem 0rem 1rem 0rem;
}
.hero-port .btn-port {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #012d6f;
    border: 2px solid #012d6f;
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-port:hover {
    background: #012d6f;
    color: #ffffff;
}
.hero-about-portfolio .porto,
.hero-about-portfolio-dua .porto {
    width: 20rem;
}
/* end portfolio */

/* detail portfolio */
.hero-container-detail-portfolio{
    /* max-width: 1400px; */
    margin: 0 auto;
}
.container-detail-portfolio{
    max-width: 1400px;
    margin: 0 auto;
    min-height: 60vh;
}
.hero-detail-portfolio {
    background-image: url('https://infimech.tech/assets/assets_infimech/About/background_blur.png');
    background-size: cover;
    height: 400px;
}
.hero-portfolio-detail {
    position: relative;
    height: fit-content;
    min-height: 50vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0 8rem;
    color: #000000;
    /* margin-top: 70px; */
}
.portfolio-detail-title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.portfolio-detail-uploader{
    display: flex;
    gap: 20px;
}

.hero-portfolio-detail p {
    margin: 25px auto;
}
.portfolio-detail-content-img{
    margin-top: 25px;
    width: 50%;
    /* height: 400px; */
    overflow: hidden;
    position: relative;
}
.portfolio-detail-content-img img{
    width: 100%;
      height: 100%;
      object-fit: cover;
}
/* end detail portfolio */

/* contact */
.container-contact {
    max-width: 1400px;
     margin: 10px auto;
    /* margin-top: 8rem; */ 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px !important;
}

.hero-contact-page {
    background-color: #ffffff;
    color: #012d6f;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-form-page {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.formContact-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 1rem;
}

.formRow-contact {
    display: flex;
    gap: 20px;
}

.formContact-contact input,
.formContact-contact textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.formContact-contact input:focus,
.formContact-contact textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.formContact-contact button {
    width: 100%;
    padding: 10px 15px;
    background-color: #2dc553;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formContact-contact button:hover {
    background-color: #1b7832;
}

.content-contact-page {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    padding: 10px;
}

.office-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    max-width: 300px;
    text-align: left;
}

.icon-circle {
    font-size: 20px;
    color: #ffffff;
}

.contact-bold {
    font-weight: bold;
    font-size: 14px;
}
.contact-bold-home {
    font-weight: bold;
    font-size: 20px;
}

.contact-maps {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 30px; 
    gap: 1rem; 
}

.responsive-map { 
    width: 100%;
    height: 450px;
    border: 0;
}
/* end contact */

/* halaman about */
.container-about-history {
        /* max-width: 1400px; */
        background-color: #012d6f;
        background-size: cover;
        margin: 0 auto;
    }
    .container-about-value {
        background-color: #012d6f;
        background-size: cover;
        
    }
.hero-about {
    background-image: url('https://infimech.tech/assets/assets_infimech/About/background_blur.png');
    background-size: cover;
    color: white;
    text-align: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-about h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}

.hero-about-history {
    /* background-color: #012d6f;
    background-size: cover; */
    max-width: 1400px;
    color: white;
    text-align: center;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.title-about-history{
    margin: 7rem auto;
}
.title-about-history h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}
.hero-about-vision {
    /* background-color: #f5f5f5;
    background-size: cover; */
    max-width: 1400px;
    margin: 0 auto;
    color: #012d6f;
    text-align: center;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 2rem auto; */
    flex-direction: column;
}
.title-about-vision h1 {
    margin-top: 2rem;
}
.title-about-vision h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}
.hero-about-vision .image {
    position: relative;
    width: 100%;
    margin: 30px 30px 30px 30px;
}
.hero-about-vision .image img {
    width: 70%;
}
.hero-about-mission {
    background-color: #ffffff;
    background-size: cover;
    color: #012d6f;
    text-align: center;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 2rem auto; */
    flex-direction: column;
}
.title-about-mission h1 {
    margin-top: 2rem;
}
.title-about-mission h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}
.hero-about-mission .image {
    position: relative;
    width: 100%;
    margin: 30px 30px 30px 30px;
}
.hero-about-mission .image img {
    width: 70%;
}
.hero-about-value {
    max-width: 1400px;
        margin: 0 auto;
    color: #ffffff;
    text-align: center;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
}

.title-about-value {
margin: 7rem auto;
}
.title-about-value h5 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    /* max-width: 70%; */
    margin: 0 auto;
    font-weight: normal;
}
.hero-about-comprof {
    background-color: #ffffff;
    background-size: cover;
    color: #012d6f;
    text-align: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 2rem auto; */
    flex-direction: column;
}
.title-about-comprof h1 {
    margin-top: 2rem;
}
.title-about-comprof h5 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    /* max-width: 70%; */
    margin: 0 auto;
    font-weight: normal;
}
.contact-form-comprof {
    position: relative;
    /* height: 100vh; */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    /* padding: 0 50px; */
    color: #012d6f;
    flex-direction: column;
    /* /* margin-top: 70px; */
    margin: 1rem;
}
.formContact-comprof {
    position: relative;
    /* height: 100vh; */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    /* padding: 0 50px; */
    color: #012d6f;
    flex-direction: column;
    /* /* margin-top: 70px; */
}
.formContact-comprof {
    width: 100%;
    /* max-width: 500px; */
    background-color: #ffffff;
    /* padding: 20px; */
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
.formRow-comprof {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}
.formContact-comprof input,
.formContact-comprof textarea {
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.formContact-comprof input:focus,
.formContact-comprof textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button styling */
.formContact-comprof button {
    width: 100%;
    padding: 10px 15px;
    margin-top: 15px;
    background-color: #2dc553;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formContact-comprof button:hover {
    background-color: #1b7832;
}
/* halamam aboutend */

/* studi case */
.hero-studicase {
    background-image: url('https://infimech.tech/assets/assets_infimech/About/background_blur.png');
    background-size: cover;
    color: white;
    text-align: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-studicase h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}
.hero-studicase-list {
    position: relative;
    height: fit-content;
    min-height: 50vh;
    background-color: #ffffff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0 8rem;
    color: #000000;
    /* margin-top: 70px; */
}
.title-studicase-list h2 {
    margin-top: 2rem;
}
.title-studicase-list h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}
.card-container-studicase-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 16px;
}

.card-studicase-list {
    width: 300px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.card-studicase-list:hover {
    transform: translateY(-5px);
}

.card-studicase-list-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-studicase-list-content {
    padding: 16px;
    text-align: left;
}

.card-studicase-list-title {
    font-weight: bold;
    margin: 0 0 8px;
    color: #333;
    white-space: nowrap; /* Mencegah teks menjadi multiline */
    overflow: hidden; /* Menyembunyikan teks yang melampaui batas */
    text-overflow: ellipsis; /* Menambahkan "..." jika teks terlalu panjang */
    width: 100%;
}

.card-studicase-list-date {
    font-size: 14px;
    color: #777;
}
.card-content-studicase-list {
    padding: 16px;
    text-align: left;
}
.hero-studicase-list .btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #012d6f;
    border: 2px solid #012d6f;
    background: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    margin: 1rem auto;
}

.hero-studicase-list .btn:hover {
    background: #012d6f;
    color: #ffffff;
}
/* end studi case */

/* news baru */
.container-news-hero-list {
    /* max-width: 1400px; */
    margin: 0 auto;
}
.hero-news-list-cover {
    background-image: url('https://infimech.tech/assets/assets_infimech/About/background_blur.png');
    background-size: cover;
    color: white;
    text-align: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-news h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}
.news-container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* h1 {
    font-size: 24px;
    margin-bottom: 20px;
  } */
  
  .featured {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.3s ease, box-shadow 0.3s ease;  */
  }
  .featured-link {
    text-decoration: none !important;
    /* color: inherit; */
  }
  /* .featured:hover {
    transform: scale(1.02); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  } */
  
  /* .featured-image {
    flex: 2;
    background: #ccc;
    text-align: center;
    line-height: 400px;
    color: #666;
    font-size: 18px;
    font-weight: bold;
  } */

  
  .featured-image {
    width: 500px;
     height:300px;
     overflow: hidden;
     position: relative;
 }
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured:hover .featured-image img {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
  
  .featured-text {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    
    white-space: nowrap; /* Mencegah teks menjadi multiline */
    overflow: hidden; /* Menyembunyikan teks yang melampaui batas */
    text-overflow: ellipsis; /* Menambahkan "..." jika teks terlalu panjang */
  }
  
    /* .featured-text h2 {
        margin: 0 0 10px;
        font-size: 18px;
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; 
    }
    .featured-text h2 {
        margin: 0 0 10px;
        font-size: 18px;
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; 
    } */
  
  .featured-text p {
    margin: 0;
    font-size: 15px;
    color: #666;
    white-space: normal; /* Mengizinkan teks turun ke baris baru */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box; /* Untuk membuat ellipsis jika ada pembatasan baris */
    -webkit-line-clamp: 5; /* Batasi hingga 5 baris */
    -webkit-box-orient: vertical;
}
.featured-text span{
    margin: 0;
    font-size: 14px;
    color: #666;
}
  
  .card-container-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .card-news-list-main {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
   
}
  
  .card-news-list-main:hover .card-image img{
    transform: scale(1.05);
    /*Membesarkankartusaatdi-hover*/box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
     /* Tambahkan efek bayangan */  :;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
  
  .card-image {
    width: 100%;
     height:200px;
     overflow: hidden;
     position: relative;
  }
 .card-image img{
    width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     /* Tambahkan transisi */  :;
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
  
  .card-text {
    padding: 15px;
    background-color: #f5f5f5;
    
  }
  
  .card-text h3 {
    margin: 0 0 10px;
    font-size: 16px;
    white-space: nowrap; /* Mencegah teks menjadi multiline */
    overflow: hidden; /* Menyembunyikan teks yang melampaui batas */
    text-overflow: ellipsis; /* Menambahkan "..." jika teks terlalu panjang */
  }
  
  .card-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
  }
  
  /* Responsiveness */
  /* @media (max-width: 768px) {
    .featured {
      flex-direction: column;
    }
  
    .featured-image {
      line-height: 200px;
    }
  } */

  .hero-news-list-cover-btn {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 1rem 0rem 1rem 0rem;
}
.hero-news-list-cover-btn .btn-news {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #012d6f;
    border: 2px solid rgb(1, 45, 111);
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-news:hover {
    background: #012d6f;
    color: #ffffff;
}


/* end news baru */

/* news read */
.container-news-read {
    margin: 70px auto 0 auto;
    max-width: 1400px;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    min-height: 80vh;
}
.main-content-news-read {
    flex: 3;
    min-width: 60%;
}
.main-content-news-read h1 {
    /* font-size: 28px; */
    margin-bottom: 10px;
}
.main-content-news-read .date-news-read {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}
/* .main-content-news-read img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
} */
.main-content-news-read p {
    line-height: 1.6;
    color: #333;
}
.img-news-read{
    min-width: 60%;
     height:500px;
     overflow: hidden;
     position: relative;
    margin-bottom: 20px;
}
.img-news-read img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-news-read {
    flex: 1;
    min-width: 25%;
}
.sidebar-news-read h2 {
    /* font-size: 20px; */
    margin-bottom: 15px;
}
.sidebar-news-read .latest-news-news-read {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 768px) {
    
}
/* end news read */

/* studicase detail */

.container-studicase-detail-main {
    width:  90%;
    max-width: 1400px;
    margin: 70px auto 70px auto; 
}
.title-studicase-detail-main{
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.title-studicase-detail-main h1{
    font-weight: bold;
}
.title-studicase-detail-main h3{
    font-weight: bolder;
}
.title-studicase-detail-main h6{
    font-weight: lighter;
}

.section-studicase-detail-main {
    display: flex;
    align-items: center;
    /* margin-bottom: 30px; */
    gap: 20px;
    background-color: #fff;
    padding: 10px;
    /* border: 1px solid #ddd; */
    /* border-radius: 5px; */
}

.section-studicase-detail-main.reverse {
    flex-direction: row-reverse;
}

.image-studicase-detail-main{
    width: 100%;
    max-width: 400px;
     height:300px;
     overflow: hidden;
     position: relative;
}
.image-studicase-detail-main img {
    width: 100%;
     height: 100%;
     object-fit: cover;
}


.text-studicase-detail-main {
    flex: 1;
    line-height: normal;
}

/* .section-studicase-detail-main h2 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 10px;
} */

/* .text-studicase-detail-main p {

} */

/* Responsive Styling */
@media (max-width: 768px) {
    .section-studicase-detail-main {
        flex-direction: column;
    }

    .section-studicase-detail-main.reverse {
        flex-direction: column;
    }
}
/* end studicase detail */

/* cfd Training */
.container-cfdTraining {
    /* max-width: 1400px; */
    margin: 0 auto;
}
.hero-cfdTraining {
    background-image: url('https://infimech.tech/assets/assets_infimech/About/background_blur.png');
    background-size: cover;
    color: white;
    text-align: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-cfdTraining h6 {
    /* word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word;  */
    max-width: 70%;
    margin: 0 auto;
    font-weight: normal;
}
.container-Background-cfdTraining {
    /* max-width: 1400px; */
    margin: 0 auto;
    background-color: #012d6f;
    background-size: cover;
}
.hero-Background-cfdTraining {
    max-width: 1400px;
    color: white;
    text-align: center;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.title-Background-cfdTraining{
    margin: 7rem auto;
}
.title-Background-cfdTraining h1{
    
    margin-bottom: 10px;
}

/* end cfd Training */

@media (max-width: 350px) {
    .hero .btn{
        font-size: 8px;
    }
    h0 {
        font-size: 2.25rem;
        line-height: 3rem;
    }
    h1 {
        font-size: 1.175rem;
        line-height: 2.25rem;
    }
    h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    h3 {
        font-size: 1.25rem;
        line-height: 1.175rem;
    }
    h4 {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    h5 {
        font-size: 1rem;
        line-height: 1.25rem;
    }
    h6 {
        font-size: 1rem;
        line-height: 1rem;
    }
    .navbar {
        padding: 0 10px;
    }
    .navbar .menu-toggle {
        display: block;
    }

    .navbar ul.nav-links {
        display: none;
    }

    .hero {
        justify-content: center;
        flex-direction: column;
        align-items: start;
        text-align: left;
        padding: 20px;
    }

    .hero .content {
        max-width: 100%;
    }

    .hero .image {
        width: 100%;
        margin-top: 50px;
    }

    /* .hero h1 {
        text-align: left;
    }
    .hero p {
        text-align: left;
    } */

    /* swiper why cfd */
    swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }
    .layoutSlider {
        position: relative;
        height: 100vh;
        /* width: fit-content; */
        background-color: #ffffff;
        display: flex;
        padding: 0 0px;
        color: #000000;
        margin-top: 70px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .swiper-container-wrapper{
        height: 700px;
    }
    swiper-slide img {
        display: block;
        width: auto;
        height: 30%;
        object-fit: cover;
    }
    .swiper-sub-title{
        top: 65px;
    }
    .content-why-cfd {
        position: relative;
        /* height: 100vh; */
        background-color: #ffffff;
        display: flex;
        align-items: center;
        /* padding: 0 50px; */
        color: #000000;
        /* /* margin-top: 70px; */
        flex-direction: column;
    }
    .content-why-cfd .image img {
        width: 80%;
        min-width: 40%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 30px auto;
    }
    .content-sertified {
        position: relative;
        /* height: 100vh; */
        background-color: #012d6f;
        display: flex;
        align-items: center;
        /* padding: 0 50px; */
        color: #000000;
        /* /* margin-top: 70px; */
        flex-direction: column;
    }
    .content-sertified .image img {
        width: 50%;
        min-width: 40%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0px auto;
    }
    .fullCover {
        padding: 0px !important;
    }
    .fullCover img {
        width: 100% !important;
        height: 100% !important;
    }
    /* .content-why-cfd .image {
        
    } */
    .swiper-subed-title {
        position: absolute;
        top: 110px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* font-size: 24px; */
        font-weight: normal;
        /* color: #012d6f; */
    }
    .swiper-title-RND {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* font-size: 24px; */
        font-weight: bold;
        /* color: #012d6f; */
    }
    .layoutSlider svg {
        width: 25px;
        height: auto;
    }
    .identity {
        margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.identity .left-image {
    width: 30px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.identity .right-image {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 30px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}
.identity .right-image-univ {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 30px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 10px; /* Spasi antara teks dan gambar */
}
.text-content .name {
    font-weight: bolder;
    font-size: 15px;
}

.text-content p {
    margin: 0;
    text-align: left;
    font-size: 15px;
}
    .hero-contact-sub {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        /* padding-top: 100px; */
        box-sizing: border-box;
    }
    .vertical-line {
        display: none;
    }
    .content-contact h2 {
        margin-bottom: 1rem;
    }
    .hero-contact {
        position: relative;
        /* height: 100vh; */
        background-color: #ffffff;
        display: flex;
        padding: 0 50px;
        color: #012d6f;
        padding: 20px 0px 20px 0px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .content-contact {
        margin: 1rem;
    }
    footer {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 20px 20px 20px;
        flex-direction: column;
    }

    /* portfolio */
    .portfolio-container{ 
        max-width: 1400px !important; 
        margin: 0 auto !important; 
    }
    .hero-about-portfolio .porto,
    .hero-about-portfolio-dua .porto {
        width: 19rem;
    }
    .content-portfolio{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        padding: 10px;

    }
    .content-portfolio p{
        text-align: left ;
    }

    .title-hero-portfolio{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .title-hero-portfolio h1{
        text-align: left;
    }
    .title-hero-portfolio-img{
        width: 3rem;
        overflow: hidden;
      position: relative;
    }
    .title-hero-portfolio .pt{
        width: 100%;
      object-fit: cover; 
    }
    /* end portfolio */

    /* detail portfolio */
    .hero-portfolio-detail {
        position: relative;
        height: fit-content;
        min-height: 50vh;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 1rem;
        color: #000000;
        /* margin-top: 70px; */
    }
    /* end detail portfolio */

    /* contact */
.container-contact {
    max-width: 1400px;
     margin: 10px;
    /* margin-top: 8rem; */ 
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.hero-contact-page {
    background-color: #ffffff;
    color: #012d6f;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-form-page {
    width: 100%;
    max-width: 500px;
    /* background-color: #ffffff; */
    padding: 0px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* text-align: center; */
}

.formContact-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formRow-contact {
    display: flex;
    gap: 20px;
}

.formContact-contact input,
.formContact-contact textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.formContact-contact input:focus,
.formContact-contact textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.formContact-contact button {
    width: 100%;
    padding: 10px 15px;
    background-color: #2dc553;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formContact-contact button:hover {
    background-color: #1b7832;
}

.content-contact-page {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    flex-direction: column;
    width: 100%;
}

.office-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    max-width: 300px;
    text-align: left;
}

.icon-circle {
    font-size: 20px;
    color: #ffffff;
}

.contact-bold {
    font-weight: bold;
    font-size: 14px;
}
.contact-maps {
    display: none;
}
/* end contact */
    /* studi case */
    .card-studicase-list-date {
        font-size: 10px;
    }
    .card-container-studicase-list{
        padding: auto 16px !important;
    }
    .hero-studicase-list {
        padding: 0 1rem;
    }
    .card-content-studicase-list {
        padding: 5px;
        text-align: left;
    } 
    .card-studicase-list {
        width: 95px;   
        height: auto;
    }
    .card-studicase-list-img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    /* end studi case */
    

    /* news */
    .card-studicase-list-date {
        font-size: 10px;
    }
    .card-container-studicase-list{
        padding: 16px 0px 16px 0px;
    }
    .featured-image {
        width: 290px;
         height:200px;
         overflow: hidden;
         position: relative;
     }
     .news-container {
        padding: 10px;
        margin: 0 auto;
      }
      .featured {
        flex-direction: column;
      }
    
      .featured-image {
        line-height: 200px;
      }
    /* end news */

    /* news read */
    .container-news-read {
        margin: 70px auto 0 auto;
        max-width: 1400px;
        width: auto;
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        padding: 10px;
        background-color: #fff;
        min-height: 80vh;
        flex-direction: column;
    }
    /* end news read */

    /* testimoni */
    .identity {
        margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.identity .left-image {
    width: 30px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.identity .right-image {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 30px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}
.identity .right-image-univ {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 30px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 10px; /* Spasi antara teks dan gambar */
}
.text-content .name {
    font-weight: bolder;
    font-size: 15px;
}

.text-content p {
    margin: 0;
    text-align: left;
    font-size: 15px;
}
    /* end testimoni */
}

/* Media Queries */
@media (min-width: 350px) and (max-width: 480px) {
    .hero .btn{
        font-size: 8px;
    }
    h0 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    h2 {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
    h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    h5 {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
    h6 {
        font-size: 1rem;
        line-height: 1.25rem;
    }
    .navbar {
        padding: 0 10px;
    }

    .navbar .menu-toggle {
        display: block; 
    }

    .navbar ul.nav-links {
        display: none;
    }

    .hero {
        justify-content: center;
        flex-direction: column;
        align-items: start;
        text-align: left;
        padding: 20px;
    }

    .hero .content {
        max-width: 100%;
    }

    .hero .image {
        width: 100%;
        margin-top: 50px;
    }

    /* .hero h1 {
        text-align: left;
    }
    .hero p {
        text-align: left;
    } */

    /* swiper why cfd */
    swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }
    .layoutSlider {
        position: relative;
        height: 100vh;
        /* width: fit-content; */
        background-color: #ffffff;
        display: flex;
        padding: 0 0px;
        color: #000000;
        margin-top: 70px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    swiper-slide img {
        display: block;
        width: auto;
        height: 30%;
        object-fit: cover;
    }
    .content-why-cfd {
        position: relative;
        /* height: 100vh; */
        background-color: #ffffff;
        display: flex;
        align-items: center;
        /* padding: 0 50px; */
        color: #000000;
        /* /* margin-top: 70px; */
        flex-direction: column;
    }
    .content-why-cfd .image img {
        width: 80%;
        min-width: 40%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 30px auto;
    }
    .content-sertified {
        position: relative;
        /* height: 100vh; */
        background-color: #012d6f;
        display: flex;
        align-items: center;
        /* padding: 0 50px; */
        color: #000000;
        /* /* margin-top: 70px; */
        flex-direction: column;
    }
    .content-sertified .image img {
        width: 50%;
        min-width: 40%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0px auto;
    }
    .fullCover {
        padding: 0px !important;
    }
    .fullCover img {
        width: 100% !important;
        height: 100% !important;
    }
    /* .content-why-cfd .image {
        
    } */
    .swiper-subed-title {
        position: absolute;
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* font-size: 24px; */
        font-weight: normal;
        /* color: #012d6f; */
    }
    .swiper-title-RND {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* font-size: 24px; */
        font-weight: bold;
        /* color: #012d6f; */
    }
    .layoutSlider svg {
        width: 25px;
        height: auto;
    }
    .identity {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
    }
    .hero-contact-sub {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        /* padding-top: 100px; */
        box-sizing: border-box;
    }
    .vertical-line {
        display: none;
    }
    .content-contact h2 {
        margin-bottom: 1rem;
    }
    .hero-contact {
        position: relative;
        /* height: 100vh; */
        background-color: #ffffff;
        display: flex;
        padding: 0 50px;
        color: #012d6f;
        padding: 20px 0px 20px 0px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .content-contact {
        margin: 1rem;
    }
    footer {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 20px 20px 20px;
        flex-direction: column;
    }

    /* portfolio */
    .hero-about-portfolio .porto,
    .hero-about-portfolio-dua .porto {
        width: 19rem;
    }
    .content-portfolio{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .content-portfolio p{
        text-align: left ;
    }

    .title-hero-portfolio{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .title-hero-portfolio h1{
        text-align: left;
    }
    .title-hero-portfolio-img{
        width: 3rem;
        overflow: hidden;
      position: relative;
    }
    .title-hero-portfolio .pt{
        width: 100%;
      object-fit: cover; 
    }
    /* end portfolio */

    /* detail portfolio */
    .hero-portfolio-detail {
        position: relative;
        height: fit-content;
        min-height: 50vh;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 1rem;
        color: #000000;
        /* margin-top: 70px; */
    }
    /* end detail portfolio */

    /* contact */
.container-contact {
    max-width: 1400px;
     margin: 10px;
    /* margin-top: 8rem; */ 
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.hero-contact-page {
    background-color: #ffffff;
    color: #012d6f;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-form-page {
    width: 100%;
    max-width: 500px;
    /* background-color: #ffffff; */
    padding: 0px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* text-align: center; */
}

.formContact-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formRow-contact {
    display: flex;
    gap: 20px;
}

.formContact-contact input,
.formContact-contact textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.formContact-contact input:focus,
.formContact-contact textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.formContact-contact button {
    width: 100%;
    padding: 10px 15px;
    background-color: #2dc553;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formContact-contact button:hover {
    background-color: #1b7832;
}

.content-contact-page {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    flex-direction: column;
    width: 100%;
}

.office-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    max-width: 300px;
    text-align: left;
}

.icon-circle {
    font-size: 20px;
    color: #ffffff;
}

.contact-bold {
    font-weight: bold;
    font-size: 14px;
}
.contact-maps {
    display: none;
}
/* end contact */
   /* studi case */
   .card-container-studicase-list{
    padding: auto 16px;
}
   .hero-studicase-list {
    padding: 0 1rem;
}
.card-content-studicase-list {
    padding: 5px;
    text-align: left;
}
.card-studicase-list {
    width: 95px;   
    height: auto;
}
.card-studicase-list-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
/* end studi case */
    /* news */
    .card-studicase-list-date {
        font-size: 10px;
    }
    .card-container-studicase-list{
        padding: 16px 0px 16px 0px!important;
    }
    .featured-image {
        width: 100%;
         height:200px;
         overflow: hidden;
         position: relative;
     }
     .news-container {
        padding: 10px;
        margin: 0 auto;
      }
      .featured {
        flex-direction: column;
      }
    
      .featured-image {
        line-height: 200px;
      }
    /* end news */
    /* news read */
    .container-news-read {
        margin: 70px auto 0 auto;
        max-width: 1400px;
        width: auto;
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        padding: 10px;
        background-color: #fff;
        min-height: 80vh;
        flex-direction: column;
    }
    /* end news read */
    /* testimoni*/
    .identity {
        margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.identity .left-image {
    width: 30px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.identity .right-image {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 30px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}
.identity .right-image-univ {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 30px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 10px; /* Spasi antara teks dan gambar */
}
.text-content .name {
    font-weight: bolder;
    font-size: 15px;
}

.text-content p {
    margin: 0;
    text-align: left;
    font-size: 15px;
}
    /* end testimoni*/
}
@media (min-width: 481px) and (max-width: 768px) {
    h0 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    h1 {
        font-size: 2.25rem;
        line-height: 2.75rem;
    }
    h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    h3 {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
    h4 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    h5 {
        font-size: 1.375rem;
        line-height: 1.875rem;
    }
    h6 {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
    .navbar {
        padding: 0 20px;
    }
    .navbar .menu-toggle {
        display: block;
    }

    .navbar ul.nav-links {
        display: none;
    }
    .hero {
        justify-content: center;
        flex-direction: column;
        align-items: start;
        text-align: left;
        padding: 20px;
    }

    .hero .content {
        max-width: 100%;
    }

    .hero .image {
        width: 100%;
        margin-top: 50px;
    }
    .content-why-cfd {
        position: relative;
        /* height: 100vh; */
        background-color: #ffffff;
        display: flex;
        align-items: center;
        /* padding: 0 50px; */
        color: #000000;
        /* /* margin-top: 70px; */
        flex-direction: column;
    }
    .content-why-cfd .image img {
        width: 80%;
        min-width: 40%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 30px auto;
    }
    .content-sertified {
        position: relative;
        /* height: 100vh; */
        background-color: #012d6f;
        display: flex;
        align-items: center;
        /* padding: 0 50px; */
        color: #000000;
        /* /* margin-top: 70px; */
        flex-direction: column;
    }
    .content-sertified .image img {
        width: 80%;
        min-width: 40%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 30px auto;
    }
    swiper-slide img {
        display: block;
        width: auto;
        height: 55%;
        object-fit: cover;
    }
    .fullCover {
        padding: 0px !important;
    }
    .fullCover img {
        width: 100% !important;
        height: 100% !important;
    }
    .swiper-subed-title {
        position: absolute;
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* font-size: 24px; */
        font-weight: normal;
        /* color: #012d6f; */
    }

    .swiper-title-RND {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* font-size: 24px; */
        font-weight: bold;
        /* color: #012d6f; */
    }
    .layoutSlider svg {
        width: 25px;
        height: auto;
    }
    .identity {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
    }
    .hero-contact-sub {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        /* padding-top: 100px; */
        box-sizing: border-box;
    }
    .vertical-line {
        display: none;
    }
    .content-contact h2 {
        margin-bottom: 1rem;
    }
    .hero-contact {
        position: relative;
        /* height: 100vh; */
        background-color: #ffffff;
        display: flex;
        padding: 0 50px;
        color: #012d6f;
        padding: 20px 0px 20px 0px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .content-contact {
        margin: 1rem;
    }
    .formRow {
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 100%;
    }
    .card {
        width: 100%;
    }
    footer {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 20px 20px 20px;
        flex-direction: column;
    }
    /* portfolio */
    .hero-about-portfolio-dua,
    .hero-about-portfolio {
        flex-direction: row;
        align-items: flex-start;
        margin: 1rem;
        padding: 3rem 1.5rem 3rem 1.5rem;
    }
    .hero-about-portfolio .porto,
    .hero-about-portfolio-dua .porto {
        width: 15rem;
    }
    .content-portfolio{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .content-portfolio p{
        text-align: left ;
    }

    .title-hero-portfolio{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .title-hero-portfolio h1{
        text-align: left;
    }
    .title-hero-portfolio-img{
        width: 4rem;
        overflow: hidden;
      position: relative;
    }
    .title-hero-portfolio .pt{
        width: 100%;
      object-fit: cover; 
    }
    /* end portfolio */

    /* detail portfolio */
    .hero-portfolio-detail {
        position: relative;
        height: fit-content;
        min-height: 50vh;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 1rem;
        color: #000000;
        /* margin-top: 70px; */
    }
    /* end detail portfolio */

    /* contact */
    .container-contact {
        max-width: 1400px;
         margin: 10px;
        /* margin-top: 8rem; */ 
        /* display: flex;
        flex-direction: column;
        align-items: center; */
    }
    
    .hero-contact-page {
        background-color: #ffffff;
        color: #012d6f;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .contact-form-page {
        width: 100%;
        max-width: 500px;
        /* background-color: #ffffff; */
        padding: 0px;
        /* border-radius: 10px; */
        /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
        /* text-align: center; */
    }
    
    .formContact-contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .formRow-contact {
        display: flex;
        gap: 20px;
    }
    
    .formContact-contact input,
    .formContact-contact textarea {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        font-family: inherit;
        box-sizing: border-box;
    }
    
    .formContact-contact input:focus,
    .formContact-contact textarea:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
    
    .formContact-contact button {
        width: 100%;
        padding: 10px 15px;
        background-color: #2dc553;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .formContact-contact button:hover {
        background-color: #1b7832;
    }
    
    .content-contact-page {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 30px;
        flex-direction: column;
        width: 100%;
    }
    
    .office-contact {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        margin-bottom: 15px;
        max-width: 300px;
        text-align: left;
    }
    
    .icon-circle {
        font-size: 20px;
        color: #ffffff;
    }
    
    .contact-bold {
        font-weight: bold;
        font-size: 14px;
    }
    /* end contact */
    /* studi case */
    .hero-studicase-list {
        padding: 0 1rem;
    }
    .card-content-studicase-list {
        padding: 5px;
        text-align: left;
    }
    .card-studicase-list {
        width: 200px;
        height: auto;
    }
    .card-studicase-list-img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    .hero-studicase-detail {
        padding: 0 3rem;
    }
    /* end studi case */

    /* news */
    .featured-image {
        width: 100%;
         height:200px;
         overflow: hidden;
         position: relative;
     }
     .news-container {
        padding: 10px;
        margin: 0 auto;
      }
      .featured {
        flex-direction: column;
      }
    
      .featured-image {
        line-height: 200px;
      }
    /* end news */
    /* read news */
    /* .main-content-news-read, .sidebar-news-read {
        min-width: 100%;
    } */
    .container-news-read {
        margin: 70px auto 0 auto;
        max-width: 1400px;
        width: auto;
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        padding: 10px;
        background-color: #fff;
        min-height: 80vh;
        flex-direction: column;
    }
    /* end read news */
    /* testimoni */
    .identity {
        margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.identity .left-image {
    width: 40px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.identity .right-image {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 40px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}
.identity .right-image-univ {
    width: auto; /* Sesuaikan ukuran gambar */
    height: 40px; /* Sesuaikan ukuran gambar */
    object-fit: cover;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 10px; /* Spasi antara teks dan gambar */
}
.text-content .name {
    font-weight: bolder;
    font-size: 20px;
}

.text-content p {
    margin: 0;
    text-align: left;
    font-size: 20px;
}
    /* end testimoni */
}

@media (min-width: 769px) and (max-width: 1024px) {
    h0 {
        font-size: 3.25rem;
        line-height: 3.75rem;
    }
    h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    h2 {
        font-size: 2.25rem;
        line-height: 2.75rem;
    }
    h3 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    h4 {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
    h5 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    h6 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .navbar {
        padding: 0 30px;
    }

    .hero {
        padding: 0 30px;
    }

    .hero .image {
        width: 60%;
    }
    .fullCover {
        padding: 0px !important;
    }
    .fullCover img {
        width: 100% !important;
        height: 100% !important;
    }
    .swiper-subed-title {
        position: absolute;
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* font-size: 24px; */
        font-weight: normal;
        /* color: #012d6f; */
    }
    .swiper-title-RND {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* font-size: 24px; */
        font-weight: bold;
        /* color: #012d6f; */
    }
    .layoutSlider svg {
        width: 25px;
        height: auto;
    }
    .identity {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
    }
    .hero-contact-sub {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        /* padding-top: 100px; */
        box-sizing: border-box;
    }
    .vertical-line {
        display: none;
    }
    .content-contact h2 {
        margin-bottom: 1rem;
    }
    .hero-contact {
        position: relative;
        /* height: 100vh; */
        background-color: #ffffff;
        display: flex;
        padding: 0 50px;
        color: #012d6f;
        padding: 20px 0px 20px 0px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .content-contact {
        margin: 1rem;
    }
    .formRow {
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 100%;
    }
    .content-sertified .image img {
        width: 50%;
        min-width: 40%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0px auto;
    }

    /* portfolio */
    .hero-about-portfolio-dua,
    .hero-about-portfolio {
        flex-direction: row;
        align-items: flex-start;
        margin: 1rem;
        padding: 3rem 1.5rem 3rem 1.5rem;
    }
    .hero-about-portfolio .porto,
    .hero-about-portfolio-dua .porto {
        width: 15rem;
    }
    .content-portfolio{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .content-portfolio p{
        text-align: left ;
    }

    .title-hero-portfolio{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .title-hero-portfolio h1{
        text-align: left;
    }
    .title-hero-portfolio-img{
        width: 4rem;
        overflow: hidden;
      position: relative;
    }
    .title-hero-portfolio .pt{
        width: 100%;
      object-fit: cover; 
    }
    
    /* end portfolio */
    /* studi case */
    .hero-studicase-list {
        padding: 0 1rem;
    }
    .card-content-studicase-list {
        padding: 5px;
        text-align: left;
    }
    .card-studicase-list {
        width: 200px;
        height: auto;
    }
    .card-studicase-list-img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    .hero-studicase-detail {
        padding: 0 5rem;
    }
    /* end studi case */
}

@media (min-width: 1025px) {
    .navbar {
        padding: 0 50px;
    }

    .hero {
        padding: 0 50px;
    }
    .container {
        /* max-width: 1440px; */
        margin: 0 auto;
        background-color: #012d6f;
        width: 100%;
    }
    .container-why-cfd {
        max-width: 1920px;
        max-height: 1080px;
        margin: 0 auto;
        /* background-color: #000000; */
    }
    .container-sertified {
        /* max-width: 1920px; */
        margin: 0 auto;
        background-color: #012d6f;
    }
    .container-news {
        /* max-width: 1920px; */
        margin: 0 auto;
        background-color: #ffffff;
    }
    .container-contact {
        max-width: 1920px;
        margin: 0 auto;
        background-color: #ffffff;
    }
    h0 {
        font-size: 3.5rem;
        line-height: 4rem;
    }
    h1 {
        font-size: 2.75rem;
        line-height: 3.25rem;
    }
    h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    h3 {
        font-size: 2.25rem;
        line-height: 2.75rem;
    }
    h4 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    h5 {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
    h6 {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .fullCover {
        padding: 0px !important;
    }
    .fullCover img {
        width: 100% !important;
        height: 100% !important;
    }

    /* portfolio */
    .hero-about-portfolio-dua,
    .hero-about-portfolio {
        flex-direction: row;
        align-items: flex-start;
        margin: 1rem;
        padding: 3rem 1.5rem 3rem 1.5rem;
    }
    .hero-about-portfolio .porto,
    .hero-about-portfolio-dua .porto {
        width: 15rem;
    }
    .content-portfolio{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .content-portfolio p{
        text-align: left ;
    }

    .title-hero-portfolio{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .title-hero-portfolio h1{
        text-align: left;
    }
    .title-hero-portfolio-img{
        width: 5rem;
        overflow: hidden;
      position: relative;
    }
    .title-hero-portfolio .pt{
        width: 100%;
      object-fit: cover; 
    }
    
    /* end portfolio */

    /* about */
    .container-about {
        /* max-width: 1400px; */
        margin: 0 auto;
    }
    .container-about-history {
        /* max-width: 1400px; */
        background-color: #012d6f;
        background-size: cover;
        margin: 0 auto;
    }
    .container-about-vision {
        /* max-width: 1400px; */
        background-color: #f5f5f5;
        background-size: cover;
        /* margin: 0 auto; */
    }
    .container-about-mission {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .container-about-comprof {
        max-width: 1400px;
        margin: 0 auto;
    }
    /* end about */

    /* studi case */
    .container-studicase {
        /* max-width: 1400px; */
        margin: 0 auto;
    }
    .container-studicase-list {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    /* end studi case */
    
}
