/* ------------------------navbar dan footer------------------------ */
*{
	box-sizing: border-box;
    font-weight: 300;
}
body {
    overflow-x: hidden;
    margin: 0;
    background-color: var(--color1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    max-width: 100vw;
}
:root {
    --color1 : #F1F1F1;
    --color2 : #979797;
    --color3 : #535353;
    --color4 : #7B7B7B;
    font-size : 14px;
}
a {
    text-decoration: none;
}
/* font */
.darker_grotesque {
    font-family: 'Darker Grotesque', sans-serif;
}

/* icon-whatsapp */
.icon-whatsapp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    transition: 0.2s;
    max-width: 100vw;
}
.icon-whatsapp:hover {    
    transform: scale(1.1);
}

/* header */
header {
    position: relative;
}
.header_wnavmain {
    gap: 25px;
}
.hamburger {
    width: 30px;
    margin-right: 20px;
    cursor: pointer;
}
.button_exit {
    width: 40px;
    margin-bottom: 10px;
    background: white;
    border-radius: 100px;
    padding: 2px;
    cursor: pointer;
}
.hidden {
    transform: translateY(0%);
    transition: 0.5s;
}
.navbar-1 .hamburger {
    margin-top: 5px;
}
.hamburger-1,
.hamburger-2,
.hamburger-3 {
    transition: 0.75s;
}

.whatsapp-ico{
    fill: white;
    width: 50px;
    height: 50px;
    padding: 3px;
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    /* box-shadow: 2px 2px 11px rgba(0,0,0,0.7); */
    position: fixed;
    bottom: 20px;
    right : 20px;
    max-width: 80vw;
    z-index: 10;
}

.whatsapp-ico:hover{
    box-shadow: 2px 2px 11px rgba(0,0,0,0.7);
}
header a {
    font-size: 14px;
    font-weight: 400!important;
}
header a:hover {
    color: white;
}
header .hidden a {
    color: black;
}
header p {
    font-size: 1.3rem;
    margin: 0;
    font-weight: bold;
    padding-left: 10px;
}
header a {
    font-weight: 800;
    text-decoration: none;
}
header .border-bottom {
    transition: 0.5s;
    width: 0%;
    height: 4.5px;
    background-color: black;
}
header .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
header .nav-item:hover .border-bottom {
    width: 100%;
}
header .nav-item .border-bottom.active {
    width: 100%;
}
.navbar-1 {
    width: 100%;
    position: fixed;
    background: linear-gradient(180deg, #ffffff , rgba(255, 255, 255, 0));
    z-index: 99;
    height:200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    max-width: 100vw;
}
.navbar-1_left {
    display: flex;
    align-items: center;
}
.header-1 {
    max-width: 100vw;
    position: fixed;
    z-index: 99;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 20%, rgba(255, 255, 255, 0));
    height: 100px;
    justify-content: space-between;
    display: flex;
    align-items: center;
}
header .nav-logo-2 img{
    width: 60px;
    height: 100%;
}

/* footer */
footer ul{
    list-style: none;
}
.footer-title {
    font-weight: 600;
}
.footer-sosmed {
    gap: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.footer-nav {
    gap: 20px;
}
.footer-main {
    gap: 50px;
    padding: 20px;
}
footer h6 {
    font-size: 2rem;
    font-weight: 600;
}
.footer-copyright {
    text-align: center;
}
.footer-content {
    gap: 10px;
}
footer a {
    color: black;
    text-decoration: none;
}
footer a:hover {
    color: black;
}
footer .border-bottom {
    transition: 0.5s;
    width: 0%;
    height: 4.5px;
    background-color: black;
}
footer li:hover .border-bottom {
    width: 100%;
}

/* line */
.line {
    background-color: #000;
    width: 80%;
    max-width: 600px;
    margin: 10px 10px 10px 0;
    height: 2px;
    border-radius: 0 20px 20px 0;
}
/* xxl */
@media screen and (max-width: 1401px) {
    
}
/* xl */
@media screen and (max-width: 1201px) {

}
/* lg */
@media screen and (max-width: 993px) {
    .hamburger-1.true {
        transform: rotate(45deg) translate(20px, -20px);
    }
    .hamburger-2.true {
        opacity: 0;
    }
    .hamburger-3.true {
        transform: rotate(-45deg) translate(-80px, -15px);
    }
    .nav-logo-2 {
        display: none!important;
    }
    .navbar-1 p {
        display: none!important;
    }
    .header-1 {
        justify-content: center;
    }
    /* .header-1.hidden {
        justify-content: space-between;
    } */
    header img {
        max-width: 50px;
    }
    header a {
        color: white;
        font-size: 14px;
        font-weight: 300!important;
    }
    .hidden {
        transform: translateY(-100%);
        transition: 0.5s;
    }
    .header-1 {
        min-height: 100vh;
        position: fixed;
        z-index: 99;
        width: 100%;
        background: linear-gradient(180deg, #000000 -20.55%, rgba(41, 41, 41, 0.71) 100%);
        gap: 10px;
    }
    :root {
        font-size : 14px;
    }
    header .border-bottom {
        background-color: white;
        height: 3px;
    }
    footer li  {
        max-width: 150px;
    }
    .footer-sosmed a svg{
        width: 30px;
    }
}
/* md */
@media screen and (max-width: 769px) {

}
/* sm */
@media screen and (max-width: 577px) {
    :root {
        font-size : 12px;
    }
}

/* ------------------------1.home------------------------ */
/* swiper js */
.swiper {
 width: 100%;
 height: 100%;
}
.swiper-slide {
 text-align: center;
 font-size: 18px;
 background: #fff;
 /* Center slide text vertically */
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 -webkit-justify-content: center;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 -webkit-align-items: center;
 align-items: center;
 border-radius: 20px;
}
.swiper-slide img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 /* border-radius: 20px; */
}
.swiper {
 width: 100%;
 height: 300px;
 margin-left: auto;
 margin-right: auto;
}
.swiper-slide {
 background-size: cover;
 background-position: center;
}
.mySwiper2,
.mySwiper4-2,
.mySwiper5-2  {
 height: 80%;
 width: 100%;
}
.mySwiper,
.mySwiper4-2,
.mySwiper5-2  {
 height: 20%;
 box-sizing: border-box;
 padding: 10px 0;
}
.swiper-wrapper {
 margin: 10px 0;
}
.mySwiper,
.mySwiper4-2,
.mySwiper5-2 {
 width: 83%!important;
}
.swiper-slide {
 background: none!important;
}
.mySwiper4 .swiper-wrapper,
.mySwiper5 .swiper-wrapper  {
 height: 95%;
}
.mySwiper4,
.mySwiper5 {
 min-height: 600px;
}
.mySwiper4 .swiper-wrapper .swiper-slide,
.mySwiper5 .swiper-wrapper .swiper-slide{
 padding: 20px 60px;
}
/* .mySwiper4 .swiper-slide img, 
.mySwiper2 .swiper-slide img,
.mySwiper5 .swiper-slide img {
 box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.664)!important;
} */
.mySwiper .swiper-slide,
.mySwiper4-2 .swiper-slide,
.mySwiper5-2 .swiper-slide {
 width: 25%;
 height: 100%;
 opacity: 0.4;
}
.mySwiper .swiper-slide-thumb-active,
.mySwiper4-2 .swiper-slide-thumb-active,
.mySwiper5-2 .swiper-slide-thumb-active {
 opacity: 1;
}
.swiper-slide img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 /* border-radius: 20px; */
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
 color: white
}
.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after {
 color: white;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
 content: none!important;
}
/* line */
.line-2 {
 background-color: rgb(202, 202, 202);
 width: 100%;
 margin: 10px 10px 10px 0;
 height: 3.5px;
 border-radius: 0 20px 20px 0;
}
/* banner */
.slider-container {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
height: 100vh;
max-width: 100vw;
}
.slider-container h1 {
color: #fff;
font-size: 100px;
letter-spacing: 5px;
position: relative;
z-index: 100;
text-align: center;
}
.slider-container::after {
background-color: #000;
content: '';
position: absolute;
opacity: 0.3;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 1;
}
.slide {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
position: absolute;
top: 0;
left: 0;
opacity: 0;
height: 100%;
width: 100%;
transform: scale(1.15);
transition: opacity .6s ease;
}
.slide.active:nth-child(odd) {
animation: grow 6s linear forwards;
opacity: 1;
}
@keyframes grow {
0%, 20% {
transform: scale(1);
}
75%, 100% {
transform: scale(1.15);
}
}
.slide.active:nth-child(even) {
animation: grow2 6s linear forwards;
opacity: 1;
}
@keyframes grow2 {
0%, 20% {
transform: scale(1.15);
}

75%, 100% {
transform: scale(1);
}
}
.controls-container {
position: absolute;
top: 50%;
right: 10px;
display: flex;
flex-direction: column;
transform: translateY(-50%);
z-index: 2;
}
.control {
background-color: #fff;
cursor: pointer;
opacity: 0.5;
margin: 6px;
height: 40px;
width: 5px;
transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}
.control.active, .control:hover {
background-color: #fff;
opacity: 1;
transform: scale(1.2);
}
.banner {
 position: relative;
}
.button_next {
 position: absolute;
 bottom: 10px;
 cursor: pointer;
 z-index: 10;
}
.bounce {
 animation: bounce 2s infinite;
}
@keyframes bounce {
 0% {
     transform: translateY(0);
 }
 70% {
     transform: translateY(6px) scale(1.05);
 }
 100% {
     transform: translateY(0);
 }
}
/* content1 */
.c1-content1 {
 position: relative;
 padding: 10px;
 margin: auto;
}
.c1-content1_card {
 z-index: 10;
 box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
 background-color: var(--color1);
 padding: 40px;
 border-radius: 10px;
 width:100%;
 max-width: 500px;
 display: flex;
 flex-direction: column;
 margin: auto;
}
.c1-content1_card h1 {
 font-size: 1.3rem;
 letter-spacing: 4.5%;
 font-weight: 600;
}
.c1-content1_card h1 span {
 display: block;
 font-size: 1.2rem;
 color: var(--color2);
 font-weight: 600;
}
.c1-content1_card p {
 text-align: center;
 color: var(--color3);
 text-align: justify;
 font-weight: 300;
 font-size: 14px;
}
.c1-content1_card a {
 font-size: 14px;

}
.c1-content1_card-button {
 margin: auto;
 text-align: center;
 display: flex;
 justify-content: center;
 max-width: 150px;
 padding: 10px;
 border-radius: 15px;
}
.c1-content1 .swiper-slide .slide-image{
 height: 80vh;
 width: 100%;
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
}
/* content2 */
.c1-content2 {
 padding: 10px;
}
.c1-content2-button {
 max-width: 200px;
 width: 100%;
 border-radius: 15px;
 padding: 10px;
 margin: 20px auto;
}
.c1-content2 .mySwiper3 {
    padding: 20px 0;
}
.swiper.mySwiper3 {
 height: 500px!important;
}
.c1-content2 .swiper-slide {
 /* border-radius: 20px; */
 /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.208); */
 border: 2px solid  white;
}
.c1-content2 .swiper-img {
 width: 100%;
 height: 100%;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 /* border-radius: 20px; */
 position: relative;
 cursor: pointer;

}
.c1-content2 .swiper-slide .swiper-img:hover {
 box-shadow: 0 2px 20px rgba(0, 0, 0, 0.208);
}
.c1-content2 .swiper-img:hover .img {
 position: absolute;
 top: 0;
 width: 100%;
 height: 100%;
 /* border-radius: 20px; */
 background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.681),rgba(0, 0, 0, 0.259));
}
.c1-content2 .swiper-img h6 {
 z-index: 99;
 color: white;
 font-size: 1.3rem;
 letter-spacing: 1.5px;
 transform: translateY(100%);
 opacity: 0;
 transition: 0.5s;
 font-weight: 200;
}
.c1-content2 .swiper-img:hover h6 {
 opacity: 1;
 transform: translateY(0);
}
.c1-content2 .swiper-img {
 display: flex;
 justify-content: center;
 align-items: center;
}
.c1-content2_heading {
 margin-left: 20px;
 padding: 0;
 max-width: 800px;
}
.c1-content2 .swiper-slide a {
 text-decoration: none;
}
.c1-content2 .swiper-slide h6 {
 font-weight: 600;
 letter-spacing: 2px;
 font-size: 2rem;
}
/* content3 */
.c1-content3 {
 padding: 10px;
}
.c1-content3_heading {
 margin-left: 20px;
 padding: 0;
}
.c1-content3_heading h2 {
 font-size: 2.5rem;
 font-weight: 600;
}
.c1-content3 p {
 max-width: 600px;
 text-align: justify;
}
.c1-content3-card {
 width: 100%;
 height: 500px;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 /* border-radius: 20px; */
 padding: 0!important;
 margin: 0!important;
}
.c1-content3_card {
 margin: 0!important;
 padding: 0!important;
 border-right: 2px solid white;
}
.c1-content3_card h4, 
.c1-content3_card p {
 margin-left: 30px;
}
.c1-content3_card h4 {
 font-weight: 600;
}
/* content4 */
.c1-content4-desc {
 padding: 20px;
}
.c1-content4 {
 position: relative;
 padding: 10px;
 margin: auto;               
}
.c1-content4 p {
 max-width: 600px;
 text-align: justify;
}
.c1-content4 h2 {
 font-size: 2.5rem;
 font-weight: 600;
}
.c1-content4-cardme {
 z-index: 10;
 box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
 background-color: var(--color1);
 padding: 40px;
 border-radius: 10px;
 width:100%;
 max-width: 500px;
 display: flex;
 flex-direction: column;
 margin: auto;
 background: white;
}
.c1-content4-cardme  p {
 line-height: 25px;
 text-align: center;
}
.c1-content4_right h6 {
 font-weight: 600;
 font-size: 1.5rem;
 text-align: center;
}
.c1-content4_right a {
 max-width: 120px;
 margin: 0 auto;
}
.c1-content4_left .swiper-slide .slide-image {
 width: 100%;
 min-height: 80vh;
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
}
/* content8 */
.c1-content8 {
 padding: 10px;
 min-height: 100vh;
 display: flex;
 flex-direction: column;
 justify-content: center;
}
.c1-content8-desc {
 margin-left: 20px;
}
.c1-content8 h2 {
 font-size: 2.5rem;
 font-weight: 600;
}
.c1-content8 p {
 max-width: 600px;
 text-align: justify;
}
.c1-content8 .gallery_main {
 position: relative;
 height: 700px;
 overflow: hidden;
}
.c1-content8 .gallery_part {
 margin: 2px;
 padding: 0;
}
.c1-content8 .gallery_part {
 gap: 2px;
 height: 800px;
 overflow-y: hidden;
}
.c1-content8 .gallery_item {
 width: 100%;
 min-height: 300px;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
}
.c1-content8 .button-1 {
 background-color: #000000;
 color: white;
 padding: 10px 15px;
 border-radius: 20px;
 text-decoration: none;
 /* box-shadow: 0 0 40px rgba(0, 0, 0, 0.532); */
 z-index: 9;
 width: 200px;
 left: 45%;
 border: 1px solid black!important;
 text-align: center;
}
.c1-content8 .button-bottom {
 position: absolute;
 bottom: 0px;
 width: 100%;
 z-index: 99;
 height: 50px;
 display: flex;
 justify-content: center;
 align-items: center;
}
/* content9 */
.c1-content9 {
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
}
.c1-content9-bg {
 background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.50), rgb(0, 0, 0));
 padding: 50px 20px;
}
.c1-content9 h3 {
 font-weight: 600;
}
.c1-content9 a {
 font-weight: 600;
 width: 100px;
 text-align: end;
}
/* gallery */
.gallery_top {
 position: absolute;
 width: 100%;
 height: 100px;
 top: 0;
 background-image: linear-gradient(var(--color1) 30%, rgba(255, 255, 255, 0));
 z-index: 9;
}
.gallery_bottom {
 position: absolute;
 width: 100%;
 height: 100px;
 bottom: 0;
 background-image: linear-gradient(rgba(255, 255, 255, 0), var(--color1) 30%);
 z-index: 9;
}
@keyframes move_gallery_out {
 0% {
     transform: translateY(0);
 }
 50% {
     transform: translateY(-20%);
 }
 90% {
     transform: translate(0);
 }
}
@keyframes move_gallery_in {
 0% {
     transform: translateY(0);
 }
 50% {
     transform: translateY(-20%);
 }
 90% {
     transform: translate(0);
 }
}
.gallery_part:nth-child(2) {
 animation: 10s move_gallery_out infinite;
}
.gallery_part:nth-child(3) {
 animation: 15s move_gallery_in infinite;
}
.gallery_part:nth-child(4) {
 animation: 20s move_gallery_out infinite;
}
/* content9 */
.c1-content9_main {
 display: flex;
 align-items: flex-end;
 justify-content: end;
}
.c1-content9_main h3{
 color: white;
}
.c1-content9_main a {
 color: white;
 text-decoration: none;
 border: 2px solid white;
 border-radius: 20px;
 padding: 20px 20px;
 transition: 0.25s;
 min-width: 200px;
 text-align: center;
}
.c1-content9_main a:hover {
 background-color: white;
 color: black;
}
.c1-content9_main p {
 color: white;
}
/* content */
.c1-content10 {
 margin: 100px 0;
}
.c1-content10_card {
 background: black;
 max-width: 400px;
 color: white;
 padding: 40px;
 border-radius: 20px;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.205);
 gap: 40px;
 justify-content: space-between;
}
.c1-content10_main {
 gap: 20px;
}
.c1-content10_main input {
 background: var(--color1);
}
.c1-content10_main textarea {
 background: var(--color1);
}
.c1-content10_card-1 {
 gap: 10px;
}
.c1-content10_card .round {
 background: #D9D9D9;
 width: 60px;
 height: 60px;
 border-radius: 100px;
}
.c1-content10_main .button-1 {
 background: black;
 color: white;
 max-width: 250px;
 padding: 10px 0;
 margin-top: 10px;
}
.c1-content10_main .c1-content10-input {
 border: 2px solid #BFBFBF;
 padding: 5px;
 margin-bottom:20px ;
}
.c1-content10-sosmed {
 display: flex;
 justify-content: space-evenly;
 align-items: center;
}
.c1-content10-sosmed svg {
 width: 30px;
 height:30px;
}
.c1-content10 .form-control:focus {
 outline: none;
 border: none;
 box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.105);
}

@media screen and (max-width: 993px) {
    .c1-content9_main {
        align-items: center;
        justify-content: center;
        text-align: center!important;
    }
    .c1-content10-sosmed svg{
        width: 30px;
    }
    .c1-content8 .gallery_item {
        min-height: 100px;
    }
}

/* ------------------------2.about------------------------ */
main.about {
    padding-top: 150px;
}

/* content2 */
.c2-content2 {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
}
.c2-content2_main {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin: 100px 0;
}
.c2-content2_title {
    max-width: 800px;
    margin-bottom: 10px;
    display: flex;
    padding: 0 20px;
}
.c2-content2_title h2 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 2.3rem;
    margin: 1px 10px 0 0;
}
.c2-content2_main_card .circle-img {
    border: 1px solid rgb(150, 150, 150);
    border-radius: 100%;
    width: 210px;
    height: 210px;
}
.c2-content2_main_card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c2-content2_main_card h6 {
    margin-top: 10px;
}
.c2-content2_main_card .circle-img {
    position: relative;
}
.c2-content2_main_card .img-user{
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: #7A7A77;
    margin-bottom: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.37);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 5px;
    top: 5px;
}
.c2-content2_main_card h6 {
    margin-bottom: 20px;
}

/* content3 */
.c2-content3 {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
}
.c2-content3_main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    width: 100%;
    margin: 100px auto;
}
.c2-content3_title {
    max-width: 800px;
    margin-bottom: 10px;
    display: flex;
    padding: 0 20px;
}
.c2-content3_title h2 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 2.3rem;
    margin: 1px 10px 0 0;
}
.c2-content3_main_card  .img-user{
    width: 100%;
    height: 300px;
    background-color: #7A7A77;
    margin-bottom: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.37);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.c2-content3_main_card h6 {
    margin-bottom: 20px;
    max-width: 500px;
}

/* content4 */
.c2-content4 {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
}
.c2-content4_main {
    margin: 80px auto;
}
.c2-content4_title {
    max-width: 800px;
    margin-bottom: 10px;
    display: flex;
    padding: 0 20px;
}
.c2-content4_title h2 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 2.3rem;
    margin: 1px 10px 0 0;
}
.c2-content4_main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 100%;
    gap: 10px;
}
.c2-content4_main_card .circle-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.2rem;
}
.c2-content4_main_card .circle-img p {
    font-weight: 500;
}
.c2-content4_main_card  .img-user{
    width: 100%;
    max-width: 200px;
    height: 100px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.c2-content4_main_card h6 {
    margin-bottom: 20px;
}

/* ------------------------3.project------------------------ */
/* content1 */
h1.c3 {
    margin-top: 30px;
}
/* .header-1.c3 {
    margin-top: -30px;
} */
.c3-content1 {
    margin: 30px 0;
}
.c3-input {
   background: white; 
    width: 100%;
    max-width: 300px;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.196);
    transition: 0.5s;
}
.c3-input:hover {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}
.c3-input input {
    border: none;
}
.c3-input input:focus-visible {
    outline: none;
}

/* content2 */
.c3-content2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 10px;
    margin: 30px 0;
}
.c3-gallery {
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.c3-content2 a {
    text-decoration: none;
}
.c3-gallery-background {
    transition: 0.25s;
    display: flex;
    justify-content: center;
    align-items: end;
    background-image: linear-gradient(45deg, black, rgba(0, 0, 0, 0.463));
    height: 100%;
    width: 100%;
    opacity: 0;
    padding-bottom: 10px;
}
.c3-gallery-background h6 {
    text-align: center;
}
.c3-gallery-background p {
    color: white;
    text-align: center;
}
.c3-gallery h6 {
    opacity: 0;
    color: white;
    font-size: 1.5rem;
}
.c3-gallery:hover .c3-gallery-background {
    opacity: 1;
    z-index: 9;
}
.c3-gallery:hover h6 {
    opacity: 1;
}
/* xxl */
@media screen and (max-width: 1401px) {
    
}

/* xl */
@media screen and (max-width: 1201px) {
}

/* lg */
@media screen and (max-width: 993px) {
    .c3-gallery {
        height: 300px;
    }
}

/* md */
@media screen and (max-width: 769px) {
    .c3-content2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 10px;
        margin: 30px 0;
    }
}

/* sm */
@media screen and (max-width: 577px) {

}

/* ------------------------4.scope_of_work------------------------ */

/* content */
.c4-content9 {
    padding-top: 130px;
}
.scope_of_work h1 {
    max-width: 400px;
    color: var(--color3);
    font-weight: 600;
    font-size: 2rem;
}
.c4-content6_left_main,
.c4-content7_left_main,
.c4-content8_left_main {
    display: flex;
    gap: 10px;
}

.c4-content6_main,
.c4-content7_main,
.c4-content8_main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.c4-content6_main h6,
.c4-content7_main h6,
.c4-content8_main h6{
    font-weight: 700;
    font-size: 1.5rem;
}

.c4-content6, 
.c4-content7,
.c4-content8  {
    position: relative;
    padding: 10px;
    margin: auto;
}


/* content9 */
.c4-content9 {
    padding: 0 10px;
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
}
.c4-content9_main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 100%;
}
.c4-content9_title {
    margin-bottom: 10px;
    display: flex;
    padding: 0 20px;
}
.c4-content9_title h2 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 2.3rem;
    margin: 1px 10px 0 0;
}
.c4-content9_title p {
    max-width: 700px;
}
.c4-content9_main {
    margin: 50px 0;
}
.c4-content9_main_card  .circle-img{
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-color: #ffffff;
    margin-bottom: 10px;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}
.c4-content9_main_card h6 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}
.c4-content9_main_card p {
    text-align: justify;
    font-size: 0.8rem;
}
.circle-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle-img svg {
    width:50%;
    height: 50%;
}

/* xxl */
@media screen and (max-width: 1401px) {
    
}

/* xl */
@media screen and (max-width: 1201px) {
}

/* lg */
@media screen and (max-width: 993px) {
    .c4-content6_main,
    .c4-content8_main {
        flex-direction: column;
    }
    .c4-content7_main {
        flex-direction: column-reverse;
    }
    .c4-content9_main_card  .circle-img{
        width: 100px;
        height: 100px;
    }
}

/* md */
@media screen and (max-width: 769px) {
    .c4-content9_main {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 40px;
    }
}
/* ------------------------5.development------------------------ */

main.development {
    padding-top: 150px;
}
/* content1 */
.c5-content1 {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
}
.c5-content1_title {
    display: flex;
    max-width: 700px;
    text-align: justify;
    padding: 0 20px;
}
.c5-content1_title h2 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 2.3rem;
    margin: 1px 10px 0 0;
}
.c5-content1_main {
    width: 100%;
    margin: 50px 0;
}
.c5-content1_img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 800px;
    height: 300px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2)!important;
}
.c5-content1_main h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* content2 */
.c5-content2_main {
    justify-content: center;
    align-items: center;
    margin: 40px 10px 20px;
}
.c5-content2_right h6 {
    font-weight: 600;
    font-size: 1.5rem;
}
.c5-content2_right p {
    font-size: 0.9rem;
    text-align: justify;
}
.c5-content2 ul {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}
.c5-content2 h5 {
    color: var(--color4);
}
.c5-content2-cardme {
    max-width: 500px;
}

/* content3 */
.c5-content3_main {
    justify-content: center;
    align-items: center;
    margin: 20px 10px ;
}
.c5-content3-cardme h6 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.c5-content3-cardme h5 {
    color: #7B7B7B;
}

/* content4 */
.c5-content4 {
    margin: 100px 10px;
}
.c5-content4 h2 {
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.c5-content4_left {
    height: 400px;
}
.c5-content4_right {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.c5-content4_right p {
    max-width: 400px;
    margin: 40px 0;
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.037);
}
.c5-content4 span {
    display: block;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.c5-content4_img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* content5 */
.c5-content5_title {
    margin-bottom: 10px;
    display: flex;
    max-width: 700px;
    text-align: justify;
}
.c5-content5_title h2 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 2.3rem;
    margin: 1px 10px 0 0;
}
.c5-content5 p {
    text-align: justify;
}
.c5-content5 {
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    padding: 0 10px;
}
.c5-content5 h2 {
    font-size: 2.5rem;
}
.c5-content5_right {
    display: flex;
}
.c5-content5_right h3 {
    font-weight: 600;
    font-size: 1.5rem;
}
.c5-content5-cardme {
    max-width: 500px;
}
.c5-content5-cardme ul {
    padding: 0;
}
.c5-content5-cardme h5 {
    color: var(--color4);
}
.c5-content5-cardme a {
    max-width: 150px;
}
.c5-content5-cardme {
    padding-right: 10px;
}
.slide-image{
    height: 80vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* content6 */
.c5-content6 {
    padding: 10px;
}
.c5-content6-button {
    max-width: 200px;
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    margin: 20px auto;
}
.c5-content6 .mySwiper3 {
    padding: 20px 0;
}
.development .swiper.mySwiper3 {
    height: 500px!important;
}
.c5-content6 .swiper-slide {
    /* border-radius: 20px; */
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.208); */
    border: 2px solid  white;
}
.c5-content6 .swiper-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* border-radius: 20px; */
    position: relative;
    cursor: pointer;

}
.c5-content6 .swiper-slide .swiper-img:hover {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.208);
}
.c5-content6 .swiper-img:hover .img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* border-radius: 20px; */
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.681),rgba(0, 0, 0, 0.259));
}
.c5-content6 .swiper-img h6 {
    z-index: 99;
    color: white;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    transform: translateY(100%);
    opacity: 0;
    transition: 0.5s;
    font-weight: 200;
}
.c5-content6 .swiper-img:hover h6 {
    opacity: 1;
    transform: translateY(0);
}
.c5-content6 .swiper-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.c5-content6 .swiper-slide a {
    text-decoration: none;
}
.c5-content6 .swiper-slide h6 {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 2rem;
}

/* content7 */
.c5-content7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 10px;
    margin: 100px auto;
    padding: 0 10px;
}
.c5-content7 a {
    text-decoration: none;
}
.c5-gallery {
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.c5-gallery-background {
    transition: 0.25s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(45deg, black, rgba(0, 0, 0, 0.463));
    height: 100%;
    width: 100%;
    opacity: 0;
}
.c5-gallery h6 {
    opacity: 0;
    color: white;
    font-size: 1.5rem;
}
.c5-gallery:hover .c5-gallery-background {
    opacity: 1;
    z-index: 9;
}
.c5-gallery:hover h6 {
    opacity: 1;
}


/* content8 */
.c5-content8 {
    margin: 100px auto;
    padding: 0 10px;
}

.c5-content8_right h2 {
    font-weight: 600;
    margin-bottom: 20px;
}
.c5-content8_right p {
    font-size: 0.9rem;
    text-align: justify;
}
.c5-content8_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    flex-direction: column;
    gap: 20px;
}
.c5-content8_card{
    display: flex;
    align-items: center;
    gap: 10px;
}
.c5-content8_card .icon{
    border-radius: 100px;
    max-width: 60px;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(61, 61, 61);
}
.c5-content8_left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.c5-content8_img {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2)!important;
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 450px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* content9 */
.c5-content9 {
    margin: 100px auto;
    padding: 0 10px;
}
.c5-content9_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}
.c5-content9_card {
    display: flex;
    align-items: center;
}
.c5-content9_main h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.c5-content9_left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.c5-content9_cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* content10 */
.c5-content10_cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 100px 0;
    padding: 0 10px;
}
.c5-content10_card{
    display: flex;
    align-items: center;
    gap: 10px;
}
.c5-content10_right h2{
    font-size: 1.5rem;
    font-weight: 600;
}
.conten10_card h6{
    margin-bottom: 0!important;
}
.c5-content10_card .icon{
    border-radius: 100px;
    max-width: 60px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(61, 61, 61);
}
.c5-content10_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}

/* xxl */
@media screen and (max-width: 1401px) {
    
}

/* xl */
@media screen and (max-width: 1201px) {
}

/* lg */
@media screen and (max-width: 993px) {
    .c5-gallery {
        height: 300px;
    }
}

/* md */
@media screen and (max-width: 769px) {

}

/* sm */
@media screen and (max-width: 577px) {
    main {
        padding-top: 100px;
    }
    .c5-content1_main {
        width: 100%;
        margin: 0;
    }
    .c5-content4 {
        margin: 0 10px;
    }
    .c5-content5 {
        margin: 0;
    }
    .c5-content6 {
        margin: 0;
        padding: 0 10px;
    }
    .c5-content7 {
        margin: 0;
    }
    .c5-content8 {
        margin: 10px 0;
    }
    .c5-content9 {
        margin: 0;
    }
}

/* ------------------------6.calculate and calculate_next------------------------ */
.calculate p{
    letter-spacing: 1px;
}
.calculate input {
    border: 1px solid rgb(51, 51, 51)!important;
    width: 100%;
}
.calculate label,
.calculate input[type="text"]  {
    font-size: 1rem!important;
    letter-spacing: 1.3px;
}
.calculate label {
    margin: 0 10px;
    font-size: 1rem!important;
    font-weight: 600;
}
.calculate .form-floating input {
    border-radius: 12px;
}
.calculate .form-check {
    padding-left: 0!important;
    display: flex;
}
/* button */
.calculate .check-box input[type="checkbox"] {
    border: none!important;
    position: relative;
    appearance: none;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 100px;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: 0.4s;
}

.calculate input:checked[type="checkbox"] {
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.495);
}

.calculate .check-box input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 100%;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
    transition: 0.4s;
}

.calculate input:checked[type="checkbox"]::after {
    left: 50%;
}

.calculate .form-check .form-check-input {
    margin-left: 10px;
}

.calculate .form-check-input {
    min-width: 30px;
    min-height: 30px;
}

/* content1 */
.c6-content1 {
    padding-top: 100px;
    margin: 0 10px;
}
.c6-content1 > *{
    font-weight: 600;
}
.c6-content1 h1 span {
    font-weight: 300;
}

/* content2 */
.c6-content2 {
    margin: 0 10px;
}
.c6-content2 > *{
    font-weight: 600;
}
/* inputGroup1 */
.c6-inputGroup1 {
    margin-top: 40px;
}
.c6-inputGroup1 .c6-input{
    gap: 20px;
}
.c6-inputGroup1 p {
    margin: 0!important;
}
.c6-inputGroup1 h2, h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-weight: 600;
}

/* inputGroup2 */
.c6-inputGroup2_desc {
    line-height: 1px;
    letter-spacing: 2px;
    font-size: 0.6rem;
    margin: 10px 0;
}
.c6-inputGroup2_desc span {
    font-weight: 400;
}
.c6-inputGroup2_parts {
    gap: 10px;
    width: 100%;
}
.c6-inputGroup2_part {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.c6-input-group {
    display: flex;
}
/* .c6-input-group-text {
    padding: 10px;
    border-radius: 0 10px 10px 0;
}
.c6-input-group.money input{
    border-radius: 10px 0 0 10px!important;
}
.c6-input-group.money .c6-input-group-text {
    background-color: black;
    color: white;
    border: 2px solid black;
} */

/* inputGroup4 */
.c6-inputGroup4_1 p.title,
.c6-inputGroup4_3 p {
    font-weight: 600;
}
.c6-inputGroup4_3 {
    margin: 35px 0;
    max-width: 600px;
}

/* inputGroup6 */
.c6-inputGroup6 h6 {
    font-weight: 600;
    font-size: 3rem;
}

.btn-outline-dark {
    border-radius: 20px;
    padding: 2px 20px;
    background: white;
    margin: 20px 0;
    font-size: 1.5rem;
}

/* xxl */
@media screen and (max-width: 1401px) {
    
}

/* xl */
@media screen and (max-width: 1201px) {
}

/* lg */
@media screen and (max-width: 993px) {
    
}

/* md */
@media screen and (max-width: 769px) {
}

/* sm */
@media screen and (max-width: 577px) {

}
/* ------------------------7.project_detail------------------------ */

/* main */
main.project_detail  {
    padding-top: 100px;
}

/* content1 */
.c7-content1 {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}
.project_detail h1 {
    font-weight: 600;
}
.project_detail h3  {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1rem;
}
.project_detail h6 {
    font-weight: 600;
}
.project_detail .action a {
    font-weight: 600;
    padding: 10px;
    width: 100px;
    text-align: center;
    border-radius: 10px;
}

.c7-content1_img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.441);
    transition: 0.2s;
    cursor: pointer;
}
.c7-content1_img:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.project_detail .action {
    display: flex;
    gap: 20px;
    justify-content: space-center;
    align-items: center;
}
.project_detail .action .button {
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 400px;
    transition: 0.25s;
    border: 2px solid black;
}
.project_detail .action .button:hover {
    background-color: white;
    color: black;
}
.c7-image {
    height: 500px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* content3 */
.c7-content3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 10px;
    margin: 30px 0;
}
.c7-content3 a {
    text-decoration: none;
}
.gallery {
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.gallery-background {
    transition: 0.25s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(45deg, black, rgba(0, 0, 0, 0.463));
    height: 100%;
    width: 100%;
    opacity: 0;
}
.gallery h6 {
    opacity: 0;
    color: white;
    font-size: 1.5rem;
}
.gallery:hover .gallery-background {
    opacity: 1;
    z-index: 9;
}
.gallery:hover h6 {
    opacity: 1;
}

/* content3 */
.c7-content3 {
    padding: 0 10px;
}

/* content2 */
.c7-content2 {
    margin-top: 20px;
    padding: 0 10px;
}
.c7-content2 .swiper-slide {
    width: 100%;
}
.c7-content2 .swiper-slide a {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: none;
}
.c7-content2 .swiper-slide a:hover .swiper-img {
    opacity: 1;
}
.c7-content2 .swiper-slide .swiper-img {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.25s;
    width: 100%;
    height: 300px;
    background-image: linear-gradient(45deg,black,rgba(0, 0, 0, 0.543));
    opacity: 0;
}

.c7-content2 .swiper-slide .swiper-img h6 {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 600;
}
.c7-content2-item {
    height: 300px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 1px;
}

.project_detail .slide-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 80vh;
}
.project_detail .description {
    padding: 10px;
}
.c7-content2 .img {
    width: 100%;
    height: 100%;
    background-size: 200% 200%;
    background-image: linear-gradient(45deg,rgba(0, 0, 0, 0), rgb(0, 0, 0));
    transition: 0.3s;
    background-position: left;
}
.c7-content2-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.c7-content2 .card-item:hover .img {
    background-position: right;
}
.c7-content2 .card-item h6{
    text-align: center;
    opacity: 0;
    color: white;
    transition: 0.5s;
    position: absolute;
    transform: translateY(50px);
}
.c7-content2 .card-item:hover h6{
    transform: translateY(0);
    opacity: 1;
}
/* lg */
@media screen and (max-width: 993px) {
    .gallery {
        height: 300px;
    }
}