*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
   
}

:root{
    --btn-color :#ec9422;
}


img {
    width: 100%;
}

.container-finebase{
    flex-direction: column;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/image-container.jpg);
    background-position: center;
    background-size: cover;
}

/* ======================= LIST MENU UTAMA ============================ */

.toggle-burger .fa-bars {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--btn-color)
}
.close-burger .fa-times {
    display: none;
}
.nav-menu-container{
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin: 0 auto; */
    background-color: white;
    padding: 1% 6%;
    box-shadow: 1px 1px 15px rgb(172, 170, 170) ;
}

.nav-menu-container .logo-finebase img{
    width: 200px;
}


.nav-menu-container .list-menu-container ul {
    display: flex;
    margin-right: 15px;
    position: relative;
}

.nav-menu-container .list-menu-container ul li {
    list-style: none; 
    position: relative;
    margin-right: 20px;
    
}

.nav-menu-container .list-menu-container li::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--btn-color);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
  
}

.nav-menu-container .list-menu-container li:hover::after {
    transform: scaleX(1);
}

.nav-menu-container .list-menu-container ul li a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    color: rgb(96, 96, 97);
    font-weight: 500;
    letter-spacing: 1px;
    
}

.nav-menu-container .list-menu-container ul .btn-join{
    display: none;
}


.nav-menu-container .btn-join a {
    padding: 20px 30px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    border: 1px solid rgb(102, 243, 47);
    border-radius: 10px ;
    color: rgb(102, 243, 47);
    text-decoration: none;
    transition: .3s ease-in-out;
    font-size: 1.2rem;
    
    
}

.nav-menu-container .btn-join a:hover {
    background-color: rgb(102, 243, 47);
    color: white;
    
}



/* ======================= LIST MENU UTAMA END ============================ */


/* ======================= CONTENT BANNER =========================== */


.content-banner {
    padding-top: 100px;
    width: 85%;
    height: auto;
    text-align: center;
    /* border: 1px solid white; */
    color: white;
    
}

.content-banner h1 {
    /* border: 1px solid white; */
    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.content-banner .text-tagline {
    width: 70%;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: lighter;
    text-align: center;
    margin: 0 auto;
    /* border: 1px solid white; */

}

.content-banner h1 .text-color1,.content-banner h1 .text-color2{
    color: var(--btn-color);
}


.core-value {
    width: 100%;
    height: auto;
    /* border: 1px solid black; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 40px;
}


.core-value .card-core-value {
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 220px;
    /* border: 1px solid white; */
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: white;
    background-image: linear-gradient(rgba(3, 7, 15, 0.55), rgba(6,15,34,0.45));
    border-radius: 5px;
    /* padding: 2px 2px; */
    transition: .2s ease-in-out;
    cursor: pointer;
    justify-content: center;
    
}

.card-core-value .icon-client-value p {
    font-size: 1.5rem;
    font-weight: bold;
    /* border: 1px solid white;
    width: 100%; */
}

.core-value .card-core-value:hover{
    transform: scale(1.01);
    box-shadow: 1px 1px 7px rgb(252, 252, 252) ;
}

.content-banner .btn-core-value {
    margin-top: 30px;
}

.content-banner .btn-core-value p{
    width: 150px;
    padding: 10px 20px;
    background-color: var(--btn-color);
    color: white;
    font-family: "Poppins", sans-serif;
    margin: 0 auto;
    border-radius: 5px;
    font-weight: 400;
}

.core-value .card-core-value .icon-client-value img{

    width: 70px;
    /* border: 1px solid white; */
    background-color: transparent; 

}


.card-core-value .text-core-value p {
 
    font-weight: lighter;
    font-size: 0.8rem;
    width: 100%;
    /* margin-top: 5px; */
    /* padding: 10px 15px; */
    /* border: 1px solid white; */
}

.core-value .card-core-value .btn-card-core-value{
    margin-top: 17px;
}

.core-value .card-core-value .btn-card-core-value a{

    padding: 5px 5px;
    /* background-color: white; */
    font-family: "Poppins", sans-serif;
    font-weight: lighter;
    font-size: 0.7rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid white;
    transition: .3s ease-in-out;

}

.core-value .card-core-value .btn-card-core-value a:hover{
    background-color: white;
    color: black;
}
/* ======================= CONTENT BANNER END =========================== */







/* ====================== CORE VALUE CLIENT APPROACH====================== */

.container-finebase-client-approach{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/client-approach.png); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-client-approach {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;
}

.content-banner-client-approach h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-client-approach h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-client-approach h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-client-approach h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.container-client-approach {
    width: 100%;
    min-height: 550px;
}

.container-client-approach .tittle-client-approach{
    width: 90%;
    margin: 0 auto;
}

.container-client-approach .tittle-client-approach h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-client-approach .content-client-approach{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    align-items: center;
    margin-top: 100px;
}


.content-client-approach .img-client-approach img{
    width: 650px;
}

.content-client-approach .text-client-approach p,.content-client-approach .text-client-approach h1{
    font-family: "Poppins", sans-serif;
}

.content-client-approach .text-client-approach h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 2rem;
    padding-left: 10px;
}

.content-client-approach .text-client-approach .text-consulting {
    color: var(--btn-color);
}

.content-client-approach .text-client-approach p{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}


/* ====================== CORE VALUE CLIENT APPROACH END====================== */







/* ====================== CORE VALUE ADAPTIVE====================== */



.container-finebase-adaptive{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/adaptive.jpg); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-adaptive {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;
}

.content-banner-adaptive h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-adaptive h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-adaptive h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-adaptive h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.container-adaptive {
    width: 100%;
    min-height: 550px;
}

.container-adaptive .tittle-adaptive{
    width: 90%;
    margin: 0 auto;
}

.container-adaptive .tittle-adaptive h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-adaptive .content-adaptive{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    align-items: center;
    margin-top: 100px;
}


.content-adaptive .img-adaptive img{
    width: 650px;
}

.content-adaptive .text-adaptive p,.content-adaptive .text-adaptive h1{
    font-family: "Poppins", sans-serif;
}

.content-adaptive .text-adaptive h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 2rem;
    padding-left: 10px;
}

.content-adaptive .text-adaptive .text-consulting {
    color: var(--btn-color);
}

.content-adaptive .text-adaptive p{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}


/* ====================== CORE VALUE ADAPTIVE END====================== */





/* ====================== CORE VALUE RESULT FOCUS====================== */

.container-finebase-result-focus{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/focus.jpg); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-result-focus {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;
}

.content-banner-result-focus h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-result-focus h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-result-focus h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-result-focus h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.container-result-focus {
    width: 100%;
    min-height: 550px;
}

.container-result-focus .tittle-result-focus{
    width: 90%;
    margin: 0 auto;
}

.container-result-focus .tittle-result-focus h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-result-focus .content-result-focus{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    align-items: center;
    margin-top: 100px;
}


.content-result-focus .img-result-focus img{
    width: 650px;
}

.content-result-focus .text-result-focus p,.content-result-focus .text-result-focus h1{
    font-family: "Poppins", sans-serif;
}

.content-result-focus .text-result-focus h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 2rem;
    padding-left: 10px;
}

.content-result-focus .text-result-focus .text-consulting {
    color: var(--btn-color);
}

.content-result-focus .text-result-focus p{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}


/* ====================== CORE VALUE RESULT FOCUS END====================== */






/* ====================== CORE VALUE EXCELLENCE====================== */

.container-finebase-excellence{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/excellence.jpg); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-excellence {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;
}

.content-banner-excellence h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-excellence h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-excellence h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-excellence h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.container-excellence {
    width: 100%;
    min-height: 550px;
}

.container-excellence .tittle-excellence{
    width: 90%;
    margin: 0 auto;
}

.container-excellence .tittle-excellence h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-excellence .content-excellence{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    align-items: center;
    margin-top: 100px;
}


.content-excellence .img-excellence img{
    width: 650px;
}

.content-excellence .text-excellence p,.content-excellence .text-excellence h1{
    font-family: "Poppins", sans-serif;
}

.content-excellence .text-excellence h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 2rem;
    padding-left: 10px;
}

.content-excellence .text-excellence .text-consulting {
    color: var(--btn-color);
}

.content-excellence .text-excellence p{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}


/* ====================== CORE VALUE EXCELLENCE END====================== */






/* ======================= CONTENT ABOUT US =========================== */


.container-about {
    width: 100%;
    min-height: 550px;
    border: 1px solid white;
    scroll-margin-top: 80px;
}

.container-about .tittle-about{
    width: 90%;
    margin: 0 auto;
}

.container-about .tittle-about h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-about .content-about{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    align-items: flex-start;
    margin-top: 100px;
}


.content-about .img-about{
    width: 650px;
    /* border: 1px solid black; */
}

.content-about .text-about p{

    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;

}
.content-about .text-about{
    width: 500px ;
    /* border: 1px solid black; */
}


.content-about .text-about p,.content-about .text-about h1{
    font-family: "Poppins", sans-serif;
    /* border: 1px solid black; */
}

.content-about .text-about h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 1.9rem;
    padding-left: 10px;
}

.content-about .text-about .text-consulting {
    color: var(--btn-color);
}


/* ======================= CONTENT ABOUT US END =========================== */



/* ======================= CONTENT OUR PARTNER =========================== */


.container-partner {

    width: 100%;
    min-height: 500px;
    text-align: center;
    scroll-margin-top: 100px;
    padding-top: 50px;

}

.container-partner .content-card-partner {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* border: 1px solid black; */
    margin: 0 auto;
    margin-top: 70px;

}

.tittle-partner h1 {
    font-size: 2rem;
    color: var(--btn-color);
    font-family:"Poppins", sans-serif;
    color: rgb(11, 11, 94);
}

.tittle-partner .text-consulting {
    color: var(--btn-color);
}

.content-card-partner .card-partner {
    width: 380px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 1px 1px 15px rgb(172, 170, 170) ;
    overflow: hidden;
    cursor: pointer;
}

.content-card-partner .card-partner::before{
    content: '';
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: white;
    z-index: 10;
    border-radius: 20px;
    opacity: 1;
    transition: 0.5s ease-in-out
}

.content-card-partner .card-partner:hover::before {
    opacity: 1;
    top: 55%;
}

.content-card-partner .card-partner img{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-partner .card-partner .info{
    position: relative;
    top:19%;
    z-index: 20;
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    opacity: 1;
    transform: translateY(30px);
    transition: .5s ease-in-out;

}

.content-card-partner .card-partner:hover .info{
    top: 0;
    opacity: 1;
    transform: translateY(0);
}

.content-card-partner .card-partner .info h1{
    color: rgb(48, 48, 48);
    font-size: 1.1rem;
}

.content-card-partner .card-partner .text-info p {
 font-size: 0.8rem;
 line-height: 18px
}

.content-card-partner .card-partner .social-media{
    width: 40%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3px auto;
    /* border: 1px solid black; */
    padding: 3px 10px;

}

.content-card-partner .card-partner .social-media img{
    position: relative;
    top: 0;
    left: 0;
    display:flex;
    width: 80%;
    height: 100%;
    justify-content: space-around;
    transition: 0.1s ease-in-out;

}

.content-card-partner .card-partner .social-media img:hover{
    width: 85%;
}

.content-card-partner .card-partner .btn-partner {
    margin-top: 20px;

}

.content-card-partner .card-partner .btn-partner a{
    /* border: 1px solid white; */
    padding: 7px 15px;
    text-decoration: none;
    border-radius: 7px;
    color: rgb(102, 243, 47);
    border: 1.5px solid rgb(102, 243, 47);
    transition: 0.3s ease-in-out;
}

.content-card-partner .card-partner .btn-partner a:hover{
    background-color: rgb(102, 243, 47);
    color: white;
}

.content-card-partner .card-partner-bhaskara {
    width: 380px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 1px 1px 15px rgb(172, 170, 170) ;
    overflow: hidden;
    cursor: pointer;
}

.content-card-partner .card-partner-bhaskara::before{
    content: '';
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: white;
    z-index: 10;
    border-radius: 20px;
    opacity: 1;
    transition: 0.5s ease-in-out
}

.content-card-partner .card-partner-bhaskara:hover::before {
    opacity: 1;
    top: 55%;
}

.content-card-partner .card-partner-bhaskara img{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-partner .card-partner-bhaskara .info{
    position: relative;
    top:19%;
    z-index: 20;
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    opacity: 1;
    transform: translateY(30px);
    transition: .5s ease-in-out;

}

.content-card-partner .card-partner-bhaskara:hover .info{
    top: 0;
    opacity: 1;
    transform: translateY(0);
}

.content-card-partner .card-partner-bhaskara .info h1{
    color: rgb(48, 48, 48);
    font-size: 1.1rem;
}

.content-card-partner .card-partner-bhaskara .text-info p {
 font-size: 0.8rem;
 line-height: 18px
}

.content-card-partner .card-partner-bhaskara .social-media{
    width: 40%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3px auto;
    /* border: 1px solid black; */
    padding: 3px 10px;

}

.content-card-partner .card-partner-bhaskara .social-media img{
    position: relative;
    top: 0;
    left: 0;
    display:flex;
    width: 80%;
    height: 100%;
    justify-content: space-around;
    transition: 0.1s ease-in-out;

}

.content-card-partner .card-partner-bhaskara .social-media img:hover{
    width: 85%;
}

.content-card-partner .card-partner-bhaskara .btn-partner {
    margin-top: 20px;

}

.content-card-partner .card-partner-bhaskara .btn-partner a{
    /* border: 1px solid white; */
    padding: 7px 15px;
    text-decoration: none;
    border-radius: 7px;
    color: rgb(102, 243, 47);
    border: 1.5px solid rgb(102, 243, 47);
    transition: 0.3s ease-in-out;
}

.content-card-partner .card-partner-bhaskara .btn-partner a:hover{
    background-color: rgb(102, 243, 47);
    color: white;
}


/* ======================= CONTENT OUR PARTNER END =========================== */






/* ====================== PROFILE BLI GUNG====================== */

.container-finebase-profile1{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/client-approach.png); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-profile1 {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;
}

.content-banner-profile1 h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-profile1 h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-profile1 h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-profile1 h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.content-card-profile1 .card-profile1 {
    width: 380px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 1px 1px 15px rgb(172, 170, 170) ;
    overflow: hidden;
    cursor: pointer;
}

.content-card-profile1 .card-profile1::before{
    content: '';
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: white;
    z-index: 10;
    border-radius: 20px;
    opacity: 1;
    transition: 0.5s ease-in-out
}

/* .content-card-profile1 .card-profile1:hover::before {
    opacity: 1;
    top: 55%;
} */

.content-card-profile1 .card-profile1 img{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-profile1 .card-profile1 .info{
    position: relative;
    top:-1%;
    z-index: 20;
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    opacity: 1;
    transform: translateY(30px);
    transition: .5s ease-in-out;

}

/* .content-card-profile1 .card-profile1:hover .info{
    top: 0;
    opacity: 1;
    transform: translateY(0);
} */

.content-card-profile1 .card-profile1 .info h1{
    color: rgb(48, 48, 48);
    font-size: 1.1rem;
}

.content-card-profile1 .card-profile1 .text-info p {
 font-size: 0.8rem;
 line-height: 18px
}

.content-card-profile1 .card-profile1 .social-media{
    width: 40%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3px auto;
    /* border: 1px solid black; */
    padding: 3px 10px;

}

.content-card-profile1 .card-profile1 .social-media img{
    position: relative;
    top: 0;
    left: 0;
    display:flex;
    width: 80%;
    height: 100%;
    justify-content: space-around;
    transition: 0.1s ease-in-out;

}

.content-card-profile1 .card-profile1 .social-media img:hover{
    width: 85%;
}


.container-profile1 {
    width: 100%;
    min-height: 550px;
}

.container-profile1 .tittle-profile1{
    width: 90%;
    margin: 0 auto;
}

.container-profile1 .tittle-profile1 h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-profile1 .content-profile1{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    align-items: center;
    margin-top: 100px;
}


.content-profile1 .img-profile1 img{
    width: 400px;
}

.content-profile1 .text-profile1 p,.content-profile1 .text-profile1 h1{
    font-family: "Poppins", sans-serif;
}

.content-profile1 .text-profile1 h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 1.5rem;
    padding-left: 10px;
}

.content-profile1 .text-profile1 .text-consulting {
    color: var(--btn-color);
}

.content-profile1 .text-profile1 p{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}


/* ====================== PROFILE BLI GUNG END====================== */





/* ====================== PROFILE BHASKARA====================== */


.container-finebase-profile2{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/client-approach.png); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-profile2 {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;
}

.content-banner-profile2 h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-profile2 h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 2.7rem;
    letter-spacing: 2px;
}

.content-banner-profile2 h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 2.7rem;
letter-spacing: 2px;

}

.content-banner-profile2 h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.content-card-profile2 .card-profile2 {
    width: 380px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 1px 1px 15px rgb(172, 170, 170) ;
    overflow: hidden;
    cursor: pointer;
}

.content-card-profile2 .card-profile2::before{
    content: '';
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: white;
    z-index: 10;
    border-radius: 20px;
    opacity: 1;
    transition: 0.5s ease-in-out
}

/* .content-card-profile2 .card-profile2:hover::before {
    opacity: 1;
    top: 55%;
} */

.content-card-profile2 .card-profile2 img{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-profile2 .card-profile2 .info{
    position: relative;
    top:-1%;
    z-index: 20;
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    opacity: 1;
    transform: translateY(30px);
    transition: .5s ease-in-out;

}

/* .content-card-profile2 .card-profile2:hover .info{
    top: 0;
    opacity: 1;
    transform: translateY(0);
} */

.content-card-profile2 .card-profile2 .info h1{
    color: rgb(48, 48, 48);
    font-size: 1.1rem;
}

.content-card-profile2 .card-profile2 .text-info p {
 font-size: 0.8rem;
 line-height: 18px
}

.content-card-profile2 .card-profile2 .social-media{
    width: 40%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3px auto;
    /* border: 1px solid black; */
    padding: 3px 10px;

}

.content-card-profile2 .card-profile2 .social-media img{
    position: relative;
    top: 0;
    left: 0;
    display:flex;
    width: 80%;
    height: 100%;
    justify-content: space-around;
    transition: 0.1s ease-in-out;

}

.content-card-profile2 .card-profile2 .social-media img:hover{
    width: 85%;
}


.container-profile2 {
    width: 100%;
    min-height: 550px;
}

.container-profile2 .tittle-profile2{
    width: 90%;
    margin: 0 auto;
}

.container-profile2 .tittle-profile2 h1{
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-profile2 .content-profile2{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    align-items: center;
    margin-top: 100px;
}


.content-profile2 .img-profile2 img{
    width: 400px;
}

.content-profile2 .text-profile2 p,.content-profile2 .text-profile2 h1{
    font-family: "Poppins", sans-serif;
}

.content-profile2 .text-profile2 h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 1.5rem;
    padding-left: 10px;
}

.content-profile2 .text-profile2 .text-consulting {
    color: var(--btn-color);
}

.content-profile2 .text-profile2 p{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}


/* ====================== PROFILE BHASKARA END====================== */










/* ======================= CONTENT WHY US =========================== */ 

.conteiner-whyus {
    width: 100%;
    min-height: 600px;
    /* border: 1px solid black; */
    margin-top: 100px;
    overflow: hidden;
    background-color: #f2f2f2;
    padding-bottom: 50px;
    scroll-margin-top: 100px;
    padding-top: 80px;
}

.tittle-why-us h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    color: var(--btn-color);

}

.conteiner-whyus .whyus-content {
    width: 90%;
    /* max-height: 1000px; */
    /* border: 1px solid black; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.whyus-content .container-img-whyus{
    /* border: 1px solid black; */
    min-height: 600px; 
    display: flex;
    align-items: center;

}

.conteiner-whyus .whyus-content img {
    width: 450px;
}

.accordion {
    display: grid;
    align-items: center;
    max-width: 700px;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    min-height: auto; 
    overflow: visible;
    /* border: 1px solid black; */
    
}



.accordion .item-accordion{
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    cursor: pointer;
    overflow: hidden;
    margin: .5rem 0;
    
}

.item-accordion::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #ec9422;
}

.accordion .item-accordion .header-accordion{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif ;
}

.accordion .item-accordion .header-accordion i {
    font-size: 1rem;
    color: rgb(114, 114, 114);
    transition: all .2s ease;
    
}

.accordion .item-accordion .header-accordion h3{
    color: rgb(68, 67, 67);
}

.accordion .item-accordion.active .header-accordion i{
    transform: rotate(45deg);
    
}
.accordion .desc-accordion{
    max-height: 0;
    overflow: hidden;
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif ;
    font-size: 0.9rem;
    line-height: 20px;
    transition: max-height 0.4s ease;
    padding: 0 0.5rem;
}

.item-accordion.active .desc-accordion{
    padding: 0 0.5rem;
    /* max-height: 1000px */
}

/* ======================= CONTENT WHY US END=========================== */ 



/* ======================= CONTENT OUR SERVICE=========================== */ 


.container-our-service {

    width: 100%;
    min-height: auto;
    text-align: center;
    margin-top: 100px;
    padding-bottom: 50px;
    scroll-margin-top: 80px;
    padding-top: 50px;

}

.container-our-service .content-card-our-service {
    display: grid;
    width: 90%;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center;
    gap: 30px;
    margin-top: 70px;
    /* border: 1px solid black; */
    margin: 0 auto;
    /* width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 auto;
    /* margin-top: 70px; */

}

.tittle-our-service h1 {
    font-size: 2rem;
    color: var(--btn-color);
    font-family:"Poppins", sans-serif;
    color: rgb(11, 11, 94);
}

.tittle-our-service .text-consulting {
    color: var(--btn-color);
}

.content-card-our-service .card-our-service {
    margin-top: 70px;
    width: 250px;
    height: 300px;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 1px 1px 15px rgb(172, 170, 170) ;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.content-card-our-service .card-our-service:hover{
    
    transform: scale(1.01);

}



.content-card-our-service .card-our-service::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: white;
    z-index: 10;
    border-radius: 10px;
    opacity: 1;
    transition: 0.7s ease-in-out
}

.content-card-our-service .card-our-service:hover::before {
    opacity: 1;
}

.content-card-our-service .card-our-service img{
    object-fit: contain;
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-card-our-service .card-our-service .info{
    position: relative;
    top:0;
    z-index: 20;
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    transform: translateY(30px);
    transition: .7s ease-in-out;
    /* border: 1px solid black; */
    padding: 10px;

}

.content-card-our-service .card-our-service .info h1{
    color: rgb(48, 48, 48);
    font-size: 1rem;
}

.content-card-our-service .card-our-service .text-info p {
 font-size: 0.8rem;
 line-height: 18px;
 margin-top: 2px;
}

.content-card-our-service .card-our-service .social-media{
    width: 40%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3px auto;
    /* border: 1px solid black; */
    padding: 3px 10px;

}

.content-card-our-service .card-our-service .social-media img{
    position: relative;
    top: 0;
    left: 0;
    display:flex;
    width: 80%;
    height: 100%;
    justify-content: space-around;
    transition: 0.3s ease-in-out;

}

.content-card-our-service .card-our-service .social-media img:hover{
    width: 85%;
}

.content-card-our-service .card-our-service .btn-our-service {
    margin-top: 20px;

}

.content-card-our-service .card-our-service .btn-our-service a{
    /* border: 1px solid white; */
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 7px;
    color: rgb(243, 47, 47);
    /* border: 1.5px solid rgb(243, 47, 47); */
    transition: 0.3s ease-in-out;
    background-color: rgb(243, 47, 47);
    color: white;
    font-size: 0.8rem;
    width: 100%;
    display: block;
}

/* ======================= CONTENT OUR SERVICE END=========================== */ 




/* ====================== CONTENT ACCOUNTING SERVICES====================== */

.container-finebase-accounting-services{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/acounting-service.jpg); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-accounting-services {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;

}

.content-banner-accounting-services h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-accounting-services h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-accounting-services h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-accounting-services h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.container-accounting-services {
    width: 100%;
    min-height: 550px;
    margin-bottom: 30px;
}

.container-accounting-services .tittle-accounting-services{
    width: 90%;
    margin: 0 auto;
}

.container-accounting-services .tittle-accounting-services h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-accounting-services .content-accounting-services{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    /* align-items: center; */
    margin-top: 100px;
}


.content-accounting-services .img-accounting-services img{
    width: 500px;
}

.content-accounting-services .text-accounting-services p,.content-accounting-services .text-accounting-services h1{
    font-family: "Poppins", sans-serif;
}

.content-accounting-services .text-accounting-services h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 2rem;
    padding-left: 10px;
}

.content-accounting-services .text-accounting-services .text-consulting {
    color: var(--btn-color);
}

.content-accounting-services .text-accounting-services p{
    width: 550px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}

.text-accounting-services .subbab li{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);
    margin-left: 50px;
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
    
}

/* ====================== CONTENT ACCOUNTING SERVICES END====================== */






/* ====================== CONTENT PAYROLL SERVICES====================== */

.container-finebase-payroll-services{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/payroll.jpg); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-payroll-services {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;

}

.content-banner-payroll-services h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-payroll-services h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-payroll-services h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-payroll-services h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.container-payroll-services {
    width: 100%;
    min-height: 550px;
    margin-bottom: 30px;
}

.container-payroll-services .tittle-payroll-services{
    width: 90%;
    margin: 0 auto;
}

.container-payroll-services .tittle-payroll-services h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-payroll-services .content-payroll-services{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    /* align-items: center; */
    margin-top: 100px;
}


.content-payroll-services .img-payroll-services img{
    width: 500px;
}

.content-payroll-services .text-payroll-services p,.content-payroll-services .text-payroll-services h1{
    font-family: "Poppins", sans-serif;
}

.content-payroll-services .text-payroll-services h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 2rem;
    padding-left: 10px;
}

.content-payroll-services .text-payroll-services .text-consulting {
    color: var(--btn-color);
}

.content-payroll-services .text-payroll-services p{
    width: 550px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}

.text-payroll-services .subbab li{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);
    margin-left: 50px;
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
    
}

/* ====================== CONTENT PAYROLL SERVICES END====================== */








/* ====================== CONTENT TAX SERVICES====================== */

.container-finebase-tax-services{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/tax-service.jpg); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-tax-services {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;

}

.content-banner-tax-services h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-tax-services h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-tax-services h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-tax-services h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.container-tax-services {
    width: 100%;
    min-height: 550px;
    margin-bottom: 30px;
}

.container-tax-services .tittle-tax-services{
    width: 90%;
    margin: 0 auto;
}

.container-tax-services .tittle-tax-services h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-tax-services .content-tax-services{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    /* align-items: center; */
    margin-top: 100px;
}


.content-tax-services .img-tax-services img{
    width: 500px;
}

.content-tax-services .text-tax-services p,.content-tax-services .text-tax-services h1{
    font-family: "Poppins", sans-serif;
}

.content-tax-services .text-tax-services h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 2rem;
    padding-left: 10px;
}

.content-tax-services .text-tax-services .text-consulting {
    color: var(--btn-color);
}

.content-tax-services .text-tax-services p{
    width: 550px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}

.text-tax-services .subbab li{
    width: 500px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);
    margin-left: 50px;
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
    
}

/* ====================== CONTENT TAX SERVICES END====================== */






/* ====================== CONTENT LEGAL SERVICES====================== */

.container-finebase-legal-services{

    width: 100%;
    min-height: 65vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../img/legal-service.jpg); 
    background-position: 40% 30%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;

}

.content-banner-legal-services {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* border: 1px solid white; */
    color: white;

}

.content-banner-legal-services h1{

    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 10px;
    
}


.content-banner-legal-services h2 .text-color2 {
    color: var(--btn-color);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
}

.content-banner-legal-services h2 .text-color1{

font-family: "Poppins", sans-serif;
font-size: 3rem;
letter-spacing: 2px;

}

.content-banner-legal-services h2 .strip {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;

}

.container-legal-services {
    width: 100%;
    min-height: 550px;
    margin-bottom: 30px;
}

.container-legal-services .tittle-legal-services{
    width: 90%;
    margin: 0 auto;
}

.container-legal-services .tittle-legal-services h1{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-top: 50px ;
    margin-bottom: 50px;
    color: var(--btn-color);
}


.container-legal-services .content-legal-services{
    width: 90%;
    /* border: 1px solid orange; */
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    /* align-items: center; */
    margin-top: 100px;
}


.content-legal-services .img-legal-services img{
    width: 500px;
}

.content-legal-services .text-legal-services p,.content-legal-services .text-legal-services h1{
    font-family: "Poppins", sans-serif;
}

.content-legal-services .text-legal-services h1 {
    color: rgb(11, 11, 94) ;
    margin-bottom: 20px;
    border-left: 4px solid var(--btn-color);
    font-size: 2rem;
    padding-left: 10px;
}

.content-legal-services .text-legal-services .text-consulting {
    color: var(--btn-color);
}

.content-legal-services .text-legal-services p{
    width: 550px;
    /* border: 1px solid green; */
    text-align: justify;
    color: rgb(124, 124, 124);

}


/* ====================== CONTENT LEGAL SERVICES END===================*/



/* ======================= CONTENT FOOTER=========================== */ 

.container-footer{
    display: flex;
    align-items: center;
    background-color: #0a2336;
    width: 100%;
    padding: 40px;
    margin-top: 40px;
}

.content-footer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* border: 1px solid white; */
    justify-items: center;
    gap: 30px;

}

.content-footer .item-footer {
    /* border: 1px solid black; */
    width: 300px;

}

.content-footer .item-footer .list-sosial-media {
    width: 100%;
    margin-top: 20px;

}

.content-footer .item-footer .list-sosial-media ul{
    list-style: none;
}

.content-footer .item-footer .list-sosial-media ul li a{
    text-decoration: none;
}

.content-footer .item-footer .list-sosial-media ul li a i {
    font-size: 2rem;
    color: white ;
}

.content-footer .item-footer .list-sosial-media ul {
    display: flex;
    width: 40%;
    justify-content: space-between;
    margin-top: 20px;
    /* flex-wrap: wrap; */
}

.item-footer .list-sosial-media .img-map {
    max-width: 100%;
    margin-top: 20px;
}

.item-footer .list-sosial-media .img-map iframe{
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 10px;
}


.container-location,
.container-phone, 
.container-email{
    display: flex;
    margin-top: 10px;
    /* align-items: center; */
}

.container-location .icon-location,
.container-phone .icon-phone,
.container-email .icon-email {
    margin-right: 10px;
    margin-top: 5px;
}

.content-footer .item-footer h3 {
    color: white;
    font-family: "Poppins", sans-serif;
    letter-spacing: 2px;
    position: relative;
}

.content-footer .item-footer h3::before{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 10%;
    background-color: white;
    border: 1px solid white;
}

.container-location .icon-location i,
.container-phone .icon-phone i,
.container-email .icon-email i{
    color:rgb(202, 202, 202) ;
}

.container-location .text-location p,
.container-phone .text-phone p,
.container-email .text-email p {
    color:rgb(202, 202, 202) ;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;

}

.content-footer .logo-footer img {
    width: 250px;
    margin-top: 20px;
}

.content-footer .list-company ul{
    list-style: none;
}

.content-footer .list-company{
    margin-top: 15px;
}

.content-footer .list-company ul li a {
    text-decoration: none;
    color: rgb(202, 202, 202);
    font-family: "Poppins", sans-serif;

}

.content-footer .list-company ul li a:hover{
    color: white;
}
  

.copy-right {
    width: 100%;
    background-color: #132d41;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    text-align: center;
    color: white;
    padding: 2% 3%;
    font-weight: lighter;
}

/* ======================= CONTENT FOOTER END=========================== */ 



/* ========================MEDIA QUERY MOBILE================== */

@media screen and (max-width: 375px){


    .nav-menu-container{
        padding: 4% 5%;
        /* border: 1px solid red; */
    }

   .toggle-burger .fa-bars {
        display: block;
        font-size: 20px;
        color: #dba920;
        cursor: pointer;
    }

    .close-burger .fa-times{
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        /* border: 1px solid white; */
        padding: 5px 10px;
        border-radius: 5px;

    }

    .list-menu-container  {
        position: absolute;
        background-color: #0a2336;
        width: 100%;
        height: auto;
        top: -700%;
        right: 0;
        transition: .6s ease;
        text-align: center;
        /* border: 1px solid black; */
    }

    .nav-menu-container .list-menu-container ul{
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* border: 1px solid black; */
        margin-right: 0;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .nav-menu-container .list-menu-container ul .btn-join {
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        border-radius: 10px ;
        color: rgb(102, 243, 47);
        text-decoration: none;
        font-size: 1.1rem;
        margin: 20px 0;
        display: block;
    }

    .nav-menu-container .list-menu-container ul .btn-join a{
        padding: 10px 15px;
        
    }

    .nav-menu-container .list-menu-container.active{
        top: 0;
        display: block;
    }
    .nav-menu-container .list-menu-container ul li{
        margin-right: 0;
        padding: 10px 10px;
    }

    .nav-menu-container .list-menu-container ul li a {
        color: white;
    }
    .nav-menu-container .list-menu-container li::after{
        width: 100%;
        background-color: var(--btn-color);
        height: 2.5px;
    }

    .nav-menu-container .btn-join {
        display: none;
    }


    .nav-menu-container .logo-finebase img {
        width: 100px;
    }

    .content-banner .text-tagline {
        width: 90%;
    }

    .content-banner h1 {
        font-size: 2rem;
    }

    .core-value {
        place-items: center;
    }

    .container-about .content-about {
        flex-direction: column;
        flex-direction: column-reverse;
        width: 100%;
    }

    .content-about .img-about{
        width: 100%;
        padding: 0 25px;
        margin-top: 25px;
    }

    .content-about .text-about{
        width: 100%;
        padding: 0 25px;
    }

    

    .container-partner {
        margin-top: 50px;
    }

    .container-partner .tittle-partner h1{
        font-size: 1.7rem;
    }

    .container-partner .content-card-partner {
        flex-direction: column;
        margin-top: -10px;
    }

    .content-card-partner .card-partner {
        margin-top: 50px;
        width: 320px;

    } 

    .content-card-partner .card-partner .info{
        top: 23%;
    }

    .content-card-partner .card-partner .info h1 {
        font-size: 0.96rem;
    }

    .content-card-partner .card-partner::before{
        top: 80%;
    }

    .content-card-partner .card-partner:hover::before {
        top: 50%;
    }

    .content-card-partner .card-partner-bhaskara {
        margin-top: 50px;
        width: 320px;

    } .content-card-partner .card-partner-bhaskara::before{
        top: 80%;
    }

    .content-card-partner .card-partner-bhaskara:hover::before {
        top: 50%;
    }

    .content-card-partner .card-partner-bhaskara .info{
        top:23%;
        /* border: 1px solid black ; */
    }

    .content-card-partner .card-partner-bhaskara .info h1 {
        font-size: 0.95rem;
    }

    .conteiner-whyus .whyus-content{
        flex-direction: column;
    }

    .conteiner-whyus .whyus-content img {
        width: 350px;

    }

    .whyus-content .container-img-whyus {
    margin-top: 50px;
    align-items: flex-start;
    min-height: 250px;
    /* border: 1px solid black; */

    }

    .accordion {
        min-height: auto; 

    }
    .container-our-service {
        /* border: 1px solid black; */
        margin-top: 100px;
    }

    .container-our-service .content-card-our-service{
        flex-direction: column;

    }

    .container-our-service .tittle-our-service{
        padding: 0 20px;
    }

    .container-our-service .tittle-our-service h1{

        font-size: 1.7rem;
    }

    .content-card-our-service .card-our-service {
        margin-top: 30px;
    }
    .container-footer {
        margin-top: 30px;
    }

    .item-footer .list-company p{
        font-size: 0.83rem;
    }

    .content-footer .list-company ul li a{
        font-size: 0.83rem;
    }

    .container-location,
    .container-phone, 
    .container-email{
        align-items: center;
    }
    .copy-right {
        padding: 4% 6%;
    }

    .container-client-approach,
    .container-adaptive,
    .container-result-focus,
    .container-excellence {
        margin-top: -50px;
    }
    .content-banner-client-approach h1,
    .content-banner-excellence h1,
    .content-banner-result-focus h1,
    .content-banner-adaptive h1
     {
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .content-banner-profile1 h1,
    .content-banner-profile2 h1{
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .content-client-approach .img-client-approach,
    .content-excellence .img-excellence,
    .content-result-focus .img-result-focus,
    .content-adaptive .img-adaptive
    {
        margin-top: 20px;
    }


    .content-banner-client-approach h2 .text-color1,
    .content-banner-client-approach h2 .text-color2,
    .content-banner-client-approach h2 .strip,
    .content-banner-adaptive h2 .text-color1,
    .content-banner-adaptive h2 .text-color2,
    .content-banner-adaptive h2 .strip,
    .content-banner-result-focus h2 .text-color1,
    .content-banner-result-focus h2 .text-color2,
    .content-banner-result-focus h2 .strip,
    .content-banner-excellence h2 .text-color1,
    .content-banner-excellence h2 .text-color2,
    .content-banner-excellence h2 .strip
    
    {
        font-size: 1.5rem;
    }

    .content-banner-profile2 h2 .text-color1,
    .content-banner-profile2 h2 .text-color2,
    .content-banner-profile2 h2 .strip,
    .content-banner-profile1 h2 .text-color1,
    .content-banner-profile1 h2 .text-color2,
    .content-banner-profile1 h2 .strip{
        font-size: 0.7rem;
    }


    .content-client-approach,
    .content-adaptive,
    .content-result-focus,
    .content-excellence,
    .content-profile2,
    .content-profile1
    {
        flex-direction: column;
        flex-direction: column-reverse;
        
    }

    .content-adaptive .img-adaptive img,
    .content-adaptive .text-adaptive p,
    .content-result-focus .img-result-focus img,
    .content-result-focus .text-result-focus p,
    .content-excellence .img-excellence img,
    .content-excellence .text-excellence p,
    .content-profile2 .img-profile2 img,
    .content-profile2 .text-profile2 p,
    .content-profile1 .img-profile1 img,
    .content-profile1 .text-profile1 p
     {
        width: 100%;
    }


   .content-client-approach .img-client-approach img,
   .content-client-approach .text-client-approach h1,
   .content-client-approach .text-client-approach p
    {
       width: 100%;
   }

   .content-banner-accounting-services,
   .content-banner-legal-services,
   .content-banner-tax-services,
   .content-banner-payroll-services{
       width: 100%;
   }

   .content-banner-accounting-services h1,
   .content-banner-legal-services h1,
   .content-banner-tax-services h1,
   .content-banner-payroll-services h1
    {
       font-size: 2.5rem;
       font-weight: bold;
       letter-spacing: 2px;
   }

   .content-banner-accounting-services h2 .text-color1,
    .content-banner-accounting-services h2 .text-color2,
    .content-banner-accounting-services h2 .strip,
    .content-banner-payroll-services h2 .text-color1,
    .content-banner-payroll-services h2 .text-color2,
    .content-banner-payroll-services h2 .strip,
    .content-banner-legal-services h2 .text-color1,
    .content-banner-legal-services h2 .text-color2,
    .content-banner-legal-services h2 .strip

    {

        font-size: 1.5rem;
    }

    .content-accounting-services,
    .content-legal-services,
    .content-tax-services,
    .content-payroll-services
     {
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .container-accounting-services,
    .container-legal-services,
    .container-tax-services,
    .container-payroll-services
    {
        margin-top: -50px;
    }

    .content-accounting-services .img-accounting-services img,
    .content-accounting-services .text-accounting-services p,
    .content-accounting-services .text-accounting-services ol .subbab,
    .content-payroll-services .img-payroll-services img,
    .content-payroll-services .text-payroll-services p,
    .content-payroll-services .text-payroll-services ol .subbab,
    .content-legal-services .img-legal-services img,
    .content-legal-services .text-legal-services p,
    .content-legal-services .text-legal-services ol .subbab,
    .content-tax-services .img-tax-services img,
    .content-tax-services .text-tax-services p,
    .content-tax-services .text-tax-services ol .subbab
    
    {
        width: 100%;
    }

    .content-accounting-services .text-accounting-services .subbab li,
    .content-payroll-services .text-payroll-services .subbab li,
    .content-legal-services .text-legal-services .subbab li,
    .content-tax-services .text-tax-services .subbab li
    {
        /* border: 1px solid black; */
        width: 90%;
        margin-left: 30px;
    }

    .content-accounting-services .img-accounting-services,
    .content-legal-services .img-legal-services,
    .content-tax-services .img-tax-services,
    .content-payroll-services .img-payroll-services
    {
        margin-top: 20px
        ;
    }

    .content-accounting-services .img-accounting-services img,
    .content-accounting-services .text-accounting-services p,
    .content-legal-services .img-legal-services img,
    .content-legal-services .text-legal-services p,
    .content-tax-services .img-tax-services img,
    .content-tax-services .text-tax-services p,
    .content-payroll-services .img-payroll-services img,
    .content-payroll-services .text-payroll-services p
     {
        width: 100%;
    }

    .container-profile1 .content-card-profile1 .card-profile1,
    .container-profile2 .content-card-profile2 .card-profile2
    {
        width: 100%;
        /* padding: 30px; */
        /* border: 1px solid black; */
        margin-top: 30px;
    }

    .container-profile1 .content-card-profile1 .card-profile1 h1,
    .container-profile2 .content-card-profile2 .card-profile2 h1
    {
        font-size: 1rem;
    }

    .content-card-profile1 .card-profile1 .info h1{
        font-size: 1.14rem ;
    }

    .content-card-profile2 .card-profile2 .info h1 {
        font-size: 1.02rem;
    }

    .content-card-profile1 .card-profile1 .info h1   
    {
        font-size: 1rem;
        /* border: 1px solid black; */
    }

}

@media screen and (min-width: 376px)  and (max-width: 480px) {

    .nav-menu-container{
        padding: 4% 5%;
        /* border: 1px solid red; */
    }

   .toggle-burger .fa-bars {
        display: block;
        font-size: 20px;
        color: #dba920;
        cursor: pointer;
    }

    .close-burger .fa-times{
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        /* border: 1px solid white; */
        padding: 5px 10px;
        border-radius: 5px;

    }

    .list-menu-container  {
        position: absolute;
        background-color: #0a2336;
        width: 100%;
        height: auto;
        top: -700%;
        right: 0;
        transition: .6s ease;
        text-align: center;
        /* border: 1px solid black; */
    }

    .nav-menu-container .list-menu-container ul{
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* border: 1px solid black; */
        margin-right: 0;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .nav-menu-container .list-menu-container ul .btn-join {
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        border-radius: 10px ;
        color: rgb(102, 243, 47);
        text-decoration: none;
        font-size: 1.1rem;
        margin: 20px 0;
        display: block;
    }

    .nav-menu-container .list-menu-container ul .btn-join a{
        padding: 10px 15px;
        
    }

    .nav-menu-container .list-menu-container.active{
        top: 0;
        display: block;
    }
    .nav-menu-container .list-menu-container ul li{
        margin-right: 0;
        padding: 10px 10px;
    }

    .nav-menu-container .list-menu-container ul li a {
        color: white;
    }
    .nav-menu-container .list-menu-container li::after{
        width: 100%;
        background-color: var(--btn-color);
        height: 2.5px;
    }

    .nav-menu-container .btn-join {
        display: none;
    }


    .nav-menu-container .logo-finebase img {
        width: 100px;
    }

    .content-banner .text-tagline {
        width: 90%;
    }

    .content-banner h1 {
        font-size: 2rem;
    }

    .core-value {
        place-items: center;
    }

    .container-about .content-about {
        flex-direction: column;
        flex-direction: column-reverse;
        width: 100%;
    }

    .content-about .img-about{
        width: 100%;
        padding: 0 25px;
        margin-top: 25px;
    }

    .content-about .text-about{
        width: 100%;
        padding: 0 25px;
    }

    

    .container-partner {
        margin-top: 50px;
    }

    .container-partner .tittle-partner h1{
        font-size: 1.7rem;
    }

    .container-partner .content-card-partner {
        flex-direction: column;
        margin-top: -10px;
    }

    .content-card-partner .card-partner {
        margin-top: 50px;
        width: 320px;

    } 

    .content-card-partner .card-partner .info{
        top: 23%;
    }

    .content-card-partner .card-partner .info h1 {
        font-size: 0.96rem;
    }

    .content-card-partner .card-partner::before{
        top: 80%;
    }

    .content-card-partner .card-partner:hover::before {
        top: 50%;
    }

    .content-card-partner .card-partner-bhaskara {
        margin-top: 50px;
        width: 320px;

    } .content-card-partner .card-partner-bhaskara::before{
        top: 80%;
    }

    .content-card-partner .card-partner-bhaskara:hover::before {
        top: 50%;
    }

    .content-card-partner .card-partner-bhaskara .info{
        top:23%;
        /* border: 1px solid black ; */
    }

    .content-card-partner .card-partner-bhaskara .info h1 {
        font-size: 0.95rem;
    }

    .conteiner-whyus .whyus-content{
        flex-direction: column;
    }

    .conteiner-whyus .whyus-content img {
        width: 350px;

    }

    .whyus-content .container-img-whyus {
    margin-top: 50px;
    align-items: flex-start;
    min-height: 250px;
    /* border: 1px solid black; */

    }

    .accordion {
        min-height: auto; 

    }
    .container-our-service {
        /* border: 1px solid black; */
        margin-top: 100px;
    }

    .container-our-service .content-card-our-service{
        flex-direction: column;

    }

    .container-our-service .tittle-our-service{
        padding: 0 20px;
    }

    .container-our-service .tittle-our-service h1{

        font-size: 1.7rem;
    }

    .content-card-our-service .card-our-service {
        margin-top: 30px;
    }
    .container-footer {
        margin-top: 30px;
    }

    .item-footer .list-company p{
        font-size: 0.83rem;
    }

    .content-footer .list-company ul li a{
        font-size: 0.83rem;
    }

    .container-location,
    .container-phone, 
    .container-email{
        align-items: center;
    }
    .copy-right {
        padding: 4% 6%;
    }

    .container-client-approach,
    .container-adaptive,
    .container-result-focus,
    .container-excellence {
        margin-top: -50px;
    }
    .content-banner-client-approach h1,
    .content-banner-excellence h1,
    .content-banner-result-focus h1,
    .content-banner-adaptive h1
     {
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .content-banner-profile1 h1,
    .content-banner-profile2 h1{
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .content-client-approach .img-client-approach,
    .content-excellence .img-excellence,
    .content-result-focus .img-result-focus,
    .content-adaptive .img-adaptive
    {
        margin-top: 20px;
    }


    .content-banner-client-approach h2 .text-color1,
    .content-banner-client-approach h2 .text-color2,
    .content-banner-client-approach h2 .strip,
    .content-banner-adaptive h2 .text-color1,
    .content-banner-adaptive h2 .text-color2,
    .content-banner-adaptive h2 .strip,
    .content-banner-result-focus h2 .text-color1,
    .content-banner-result-focus h2 .text-color2,
    .content-banner-result-focus h2 .strip,
    .content-banner-excellence h2 .text-color1,
    .content-banner-excellence h2 .text-color2,
    .content-banner-excellence h2 .strip
    
    {
        font-size: 1.5rem;
    }

    .content-banner-profile2 h2 .text-color1,
    .content-banner-profile2 h2 .text-color2,
    .content-banner-profile2 h2 .strip,
    .content-banner-profile1 h2 .text-color1,
    .content-banner-profile1 h2 .text-color2,
    .content-banner-profile1 h2 .strip{
        font-size: 0.7rem;
    }


    .content-client-approach,
    .content-adaptive,
    .content-result-focus,
    .content-excellence,
    .content-profile2,
    .content-profile1
    {
        flex-direction: column;
        flex-direction: column-reverse;
        
    }

    .content-adaptive .img-adaptive img,
    .content-adaptive .text-adaptive p,
    .content-result-focus .img-result-focus img,
    .content-result-focus .text-result-focus p,
    .content-excellence .img-excellence img,
    .content-excellence .text-excellence p,
    .content-profile2 .img-profile2 img,
    .content-profile2 .text-profile2 p,
    .content-profile1 .img-profile1 img,
    .content-profile1 .text-profile1 p
     {
        width: 100%;
    }


   .content-client-approach .img-client-approach img,
   .content-client-approach .text-client-approach h1,
   .content-client-approach .text-client-approach p
    {
       width: 100%;
   }

   .content-banner-accounting-services,
   .content-banner-legal-services,
   .content-banner-tax-services,
   .content-banner-payroll-services{
       width: 100%;
   }

   .content-banner-accounting-services h1,
   .content-banner-legal-services h1,
   .content-banner-tax-services h1,
   .content-banner-payroll-services h1
    {
       font-size: 2.5rem;
       font-weight: bold;
       letter-spacing: 2px;
   }

   .content-banner-accounting-services h2 .text-color1,
    .content-banner-accounting-services h2 .text-color2,
    .content-banner-accounting-services h2 .strip,
    .content-banner-payroll-services h2 .text-color1,
    .content-banner-payroll-services h2 .text-color2,
    .content-banner-payroll-services h2 .strip,
    .content-banner-legal-services h2 .text-color1,
    .content-banner-legal-services h2 .text-color2,
    .content-banner-legal-services h2 .strip

    {

        font-size: 1.5rem;
    }

    .content-accounting-services,
    .content-legal-services,
    .content-tax-services,
    .content-payroll-services
     {
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .container-accounting-services,
    .container-legal-services,
    .container-tax-services,
    .container-payroll-services
    {
        margin-top: -50px;
    }

    .content-accounting-services .img-accounting-services img,
    .content-accounting-services .text-accounting-services p,
    .content-accounting-services .text-accounting-services ol .subbab,
    .content-payroll-services .img-payroll-services img,
    .content-payroll-services .text-payroll-services p,
    .content-payroll-services .text-payroll-services ol .subbab,
    .content-legal-services .img-legal-services img,
    .content-legal-services .text-legal-services p,
    .content-legal-services .text-legal-services ol .subbab,
    .content-tax-services .img-tax-services img,
    .content-tax-services .text-tax-services p,
    .content-tax-services .text-tax-services ol .subbab
    
    {
        width: 100%;
    }

    .content-accounting-services .text-accounting-services .subbab li,
    .content-payroll-services .text-payroll-services .subbab li,
    .content-legal-services .text-legal-services .subbab li,
    .content-tax-services .text-tax-services .subbab li
    {
        /* border: 1px solid black; */
        width: 90%;
        margin-left: 30px;
    }

    .content-accounting-services .img-accounting-services,
    .content-legal-services .img-legal-services,
    .content-tax-services .img-tax-services,
    .content-payroll-services .img-payroll-services
    {
        margin-top: 20px
        ;
    }

    .content-accounting-services .img-accounting-services img,
    .content-accounting-services .text-accounting-services p,
    .content-legal-services .img-legal-services img,
    .content-legal-services .text-legal-services p,
    .content-tax-services .img-tax-services img,
    .content-tax-services .text-tax-services p,
    .content-payroll-services .img-payroll-services img,
    .content-payroll-services .text-payroll-services p
     {
        width: 100%;
    }

    .container-profile1 .content-card-profile1 .card-profile1,
    .container-profile2 .content-card-profile2 .card-profile2
    {
        width: 100%;
        /* padding: 30px; */
        /* border: 1px solid black; */
        margin-top: 30px;
    }

    .container-profile1 .content-card-profile1 .card-profile1 h1,
    .container-profile2 .content-card-profile2 .card-profile2 h1
    {
        font-size: 1rem;
    }

    .content-card-profile1 .card-profile1 .info h1{
        font-size: 1.14rem ;
    }

    .content-card-profile2 .card-profile2 .info h1 {
        font-size: 1.02rem;
    }

    .content-card-profile1 .card-profile1 .info h1,  
    .content-card-profile2 .card-profile2 .info h1   
    {
        font-size: 1.34rem;
        /* border: 1px solid black; */
    }

}


@media screen and (min-width: 481px) and (max-width: 768px) {

    .nav-menu-container{
        padding: 4% 5%;
        /* border: 1px solid red; */
    }

   .toggle-burger .fa-bars {
        display: block;
        font-size: 30px;
        color: #dba920;
        cursor: pointer;
    }

    .close-burger .fa-times{
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        /* border: 1px solid white; */
        padding: 5px 10px;
        border-radius: 5px;

    }

    .list-menu-container  {
        position: absolute;
        background-color: #0a2336;
        width: 100%;
        height: auto;
        top: -700%;
        right: 0;
        transition: .6s ease;
        text-align: center;
        /* border: 1px solid black; */
    }

    .nav-menu-container .list-menu-container ul{
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* border: 1px solid black; */
        margin-right: 0;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .nav-menu-container .list-menu-container ul .btn-join {
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        border-radius: 10px ;
        color: rgb(102, 243, 47);
        text-decoration: none;
        font-size: 1.1rem;
        margin: 20px 0;
        display: block;
    }

    .nav-menu-container .list-menu-container ul .btn-join a{
        padding: 10px 15px;
        
    }

    .nav-menu-container .list-menu-container.active{
        top: 0;
        display: block;
    }
    .nav-menu-container .list-menu-container ul li{
        margin-right: 0;
        padding: 10px 10px;
    }

    .nav-menu-container .list-menu-container ul li a {
        color: white;
    }
    .nav-menu-container .list-menu-container li::after{
        width: 100%;
        background-color: var(--btn-color);
        height: 2.5px;
    }

    .nav-menu-container .btn-join {
        display: none;
    }


    .nav-menu-container .logo-finebase img {
        width: 100px;
    }

    .core-value {
        place-items: center;
    }

    .container-about .content-about {
        flex-direction: column;
        flex-direction: column-reverse;
        width: 100%;
    }
    
    .content-about .img-about{
        width: 100%;
        padding: 0 25px;
        margin-top: 25px;
    }
    
    .content-about .text-about{
        width: 100%;
        padding: 0 25px;
    }

    .container-partner {
        margin-top: 50px;
    }
    
    .container-partner .content-card-partner {
        flex-direction: column;
        margin-top: -10px;
    }
    
    .content-card-partner .card-partner {
        margin-top: 50px;
        width: 320px;
    
    } 
    
    .content-card-partner .card-partner .info{
        top: 23%;
    }
    
    .content-card-partner .card-partner .info h1 {
        font-size: 0.96rem;
    }
    
    .content-card-partner .card-partner::before{
        top: 80%;
    }
    
    .content-card-partner .card-partner:hover::before {
        top: 50%;
    }
    
    .content-card-partner .card-partner-bhaskara {
        margin-top: 50px;
        width: 320px;
    
    } .content-card-partner .card-partner-bhaskara::before{
        top: 80%;
    }
    
    .content-card-partner .card-partner-bhaskara:hover::before {
        top: 50%;
    }
    
    .content-card-partner .card-partner-bhaskara .info{
        top:23%;
        /* border: 1px solid black ; */
    }
    
    .content-card-partner .card-partner-bhaskara .info h1 {
        font-size: 0.95rem;
    }

    .conteiner-whyus .whyus-content{
        flex-direction: column;
    }
    
    .conteiner-whyus .whyus-content img {
        width: 350px;
    
    }
    
    .whyus-content .container-img-whyus {
    margin-top: 50px;
    align-items: flex-start;
    min-height: 250px;
    /* border: 1px solid black; */
    
    }

    .container-our-service {
        /* border: 1px solid black; */
        margin-top: 100px;
    }
    
    .container-our-service .content-card-our-service{
        flex-direction: column;
    
    }
    
    .container-our-service .tittle-our-service{
        padding: 0 20px;
    }
    
    .content-card-our-service .card-our-service {
        margin-top: 30px;
    }
    .container-footer {
        margin-top: 30px;
    }

    .content-client-approach,
    .content-adaptive,
    .content-result-focus,
    .content-excellence,
    .content-profile2,
    .content-profile1
    {
        flex-direction: column;
        flex-direction: column-reverse;
        
    }

    .content-adaptive .img-adaptive img,
    .content-adaptive .text-adaptive p,
    .content-result-focus .img-result-focus img,
    .content-result-focus .text-result-focus p,
    .content-excellence .img-excellence img,
    .content-excellence .text-excellence p,
    .content-profile2 .text-profile2 p,
    .content-profile1 .text-profile1 p
     {
        width: 100%;
    }

    .container-client-approach,
    .container-adaptive,
    .container-result-focus,
    .container-excellence {
        margin-top: -50px;
    }
    .content-banner-client-approach h1,
    .content-banner-excellence h1,
    .content-banner-result-focus h1,
    .content-banner-adaptive h1
     {
        font-size: 3rem;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .content-client-approach .img-client-approach,
    .content-excellence .img-excellence,
    .content-result-focus .img-result-focus,
    .content-adaptive .img-adaptive
    {
        margin-top: 20px;
    }

    .content-banner-accounting-services,
   .content-banner-legal-services,
   .content-banner-tax-services,
   .content-banner-payroll-services{
       width: 100%;
   }

   .content-banner-accounting-services h1,
   .content-banner-legal-services h1,
   .content-banner-tax-services h1,
   .content-banner-payroll-services h1
    {
       font-size: 2.5rem;
       font-weight: bold;
       letter-spacing: 2px;
   }

   .content-banner-accounting-services h2 .text-color1,
    .content-banner-accounting-services h2 .text-color2,
    .content-banner-accounting-services h2 .strip,
    .content-banner-payroll-services h2 .text-color1,
    .content-banner-payroll-services h2 .text-color2,
    .content-banner-payroll-services h2 .strip,
    .content-banner-legal-services h2 .text-color1,
    .content-banner-legal-services h2 .text-color2,
    .content-banner-legal-services h2 .strip

    {

        font-size: 1.5rem;
    }

    .content-accounting-services,
    .content-legal-services,
    .content-tax-services,
    .content-payroll-services
     {
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .container-accounting-services,
    .container-legal-services,
    .container-tax-services,
    .container-payroll-services
    {
        margin-top: -50px;
    }

    .content-accounting-services .img-accounting-services img,
    .content-accounting-services .text-accounting-services p,
    .content-accounting-services .text-accounting-services ol .subbab {
        width: 100%;
    }

    .content-accounting-services .text-accounting-services .subbab li{
        /* border: 1px solid black; */
        width: 90%;
        margin-left: 30px;
    }

    .content-accounting-services .img-accounting-services,
    .content-legal-services .img-legal-services,
    .content-tax-services .img-tax-services,
    .content-payroll-services .img-payroll-services
    {
        margin-top: 20px
        ;
    }

    .content-accounting-services .img-accounting-services img,
    .content-accounting-services .text-accounting-services p,
    .content-legal-services .img-legal-services img,
    .content-legal-services .text-legal-services p,
    .content-tax-services .img-tax-services img,
    .content-tax-services .text-tax-services p,
    .content-payroll-services .img-payroll-services img,
    .content-payroll-services .text-payroll-services p
     {
        width: 100%;
    }

    .content-accounting-services .text-accounting-services .subbab li,
    .content-payroll-services .text-payroll-services .subbab li,
    .content-legal-services .text-legal-services .subbab li,
    .content-tax-services .text-tax-services .subbab li
    {
        /* border: 1px solid black; */
        width: 90%;
        margin-left: 30px;
    }
    
    .container-profile1 .content-card-profile1 .card-profile1,
    .container-profile2 .content-card-profile2 .card-profile2
    {
        width: 100%;
        /* padding: 30px; */
        /* border: 1px solid black; */
        margin-top: 30px;
    }

    .container-profile1 .content-card-profile1 .card-profile1 h1,
    .container-profile2 .content-card-profile2 .card-profile2 h1
    {
        font-size: 1.3rem;
    }

    .content-card-profile2 .card-profile2 .info h1 ,
    .content-card-profile1 .card-profile1 .info h1 
    {
        font-size: 1.33rem;
    }
    

  }

  @media screen and (width: 820px){

    .nav-menu-container{
        padding: 10% 15%;
        /* border: 1px solid red; */
    }

   .toggle-burger .fa-bars {
        display: block;
        font-size: 20px;
        color: #dba920;
        cursor: pointer;
    }

    .close-burger .fa-times{
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        /* border: 1px solid white; */
        padding: 5px 10px;
        border-radius: 5px;

    }

    .list-menu-container  {
        position: absolute;
        background-color: #0a2336;
        width: 100%;
        height: auto;
        top: -700%;
        right: 0;
        transition: .6s ease;
        text-align: center;
        /* border: 1px solid black; */
    }

    .nav-menu-container .list-menu-container ul{
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* border: 1px solid black; */
        margin-right: 0;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .nav-menu-container .list-menu-container ul .btn-join {
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        border-radius: 10px ;
        color: rgb(102, 243, 47);
        text-decoration: none;
        font-size: 1.1rem;
        margin: 20px 0;
        display: block;
    }

    .nav-menu-container .list-menu-container ul .btn-join a{
        padding: 10px 15px;
        
    }

    .nav-menu-container .list-menu-container.active{
        top: 0;
        display: block;
    }
    .nav-menu-container .list-menu-container ul li{
        margin-right: 0;
        padding: 10px 10px;
    }

    .nav-menu-container .list-menu-container ul li a {
        color: white;
    }
    .nav-menu-container .list-menu-container li::after{
        width: 100%;
        background-color: var(--btn-color);
        height: 2.5px;
    }

    .nav-menu-container .btn-join {
        display: none;
    }


    .nav-menu-container .logo-finebase img {
        width: 100px;
    }

    .core-value {
        place-items: center;
    }

    .container-partner{
        margin-top: 100px;
    }
    .container-partner .content-card-partner {
        flex-direction: column;

  }

  .content-card-partner .card-partner-bhaskara {
    margin-top: 50px;

  }

}

@media screen and (width: 912px) {

    .core-value {
        place-items: center;
    }

    .nav-menu-container{
        padding: 10% 15%;
        /* border: 1px solid red; */
    }

   .toggle-burger .fa-bars {
        display: block;
        font-size: 20px;
        color: #dba920;
        cursor: pointer;
    }

    .close-burger .fa-times{
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        /* border: 1px solid white; */
        padding: 5px 10px;
        border-radius: 5px;

    }

    .list-menu-container  {
        position: absolute;
        background-color: #0a2336;
        width: 100%;
        height: auto;
        top: -700%;
        right: 0;
        transition: .6s ease;
        text-align: center;
        /* border: 1px solid black; */
    }

    .nav-menu-container .list-menu-container ul{
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* border: 1px solid black; */
        margin-right: 0;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .nav-menu-container .list-menu-container ul .btn-join {
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        border-radius: 10px ;
        color: rgb(102, 243, 47);
        text-decoration: none;
        font-size: 1.1rem;
        margin: 20px 0;
        display: block;
    }

    .nav-menu-container .list-menu-container ul .btn-join a{
        padding: 10px 15px;
        
    }

    .nav-menu-container .list-menu-container.active{
        top: 0;
        display: block;
    }
    .nav-menu-container .list-menu-container ul li{
        margin-right: 0;
        padding: 10px 10px;
    }

    .nav-menu-container .list-menu-container ul li a {
        color: white;
    }
    .nav-menu-container .list-menu-container li::after{
        width: 100%;
        background-color: var(--btn-color);
        height: 2.5px;
    }

    .nav-menu-container .btn-join {
        display: none;
    }
}



  @media screen and (min-width: 769px) and (max-width: 1024px){

    .core-value {
        place-items: center;
    }

    .nav-menu-container{
        padding: 10% 15%;
        /* border: 1px solid red; */
    }

   .toggle-burger .fa-bars {
        display: block;
        font-size: 20px;
        color: #dba920;
        cursor: pointer;
    }

    .close-burger .fa-times{
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        /* border: 1px solid white; */
        padding: 5px 10px;
        border-radius: 5px;

    }

    .list-menu-container  {
        position: absolute;
        background-color: #0a2336;
        width: 100%;
        height: auto;
        top: -700%;
        right: 0;
        transition: .6s ease;
        text-align: center;
        /* border: 1px solid black; */
    }

    .nav-menu-container .list-menu-container ul{
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* border: 1px solid black; */
        margin-right: 0;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    .nav-menu-container .list-menu-container ul .btn-join {
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        border-radius: 10px ;
        color: rgb(102, 243, 47);
        text-decoration: none;
        font-size: 1.1rem;
        margin: 20px 0;
        display: block;
    }

    .nav-menu-container .list-menu-container ul .btn-join a{
        padding: 10px 15px;
        
    }

    .nav-menu-container .list-menu-container.active{
        top: 0;
        display: block;
    }
    .nav-menu-container .list-menu-container ul li{
        margin-right: 0;
        padding: 10px 10px;
    }

    .nav-menu-container .list-menu-container ul li a {
        color: white;
    }
    .nav-menu-container .list-menu-container li::after{
        width: 100%;
        background-color: var(--btn-color);
        height: 2.5px;
    }

    .nav-menu-container .btn-join {
        display: none;
    }

    .nav-menu-container{
        padding: 2% 3%;
        /* border: 1px solid red; */
    }

    .content-banner{
        padding-top: 150px;
    }

    .container-about .content-about {
        flex-direction: column;
        flex-direction: column-reverse;
        width: 90%;
        align-items: center;
        /* border: 1px solid black; */
    }

    .content-about .img-about{
        width: 80%;
        padding: 0 25px;
        margin-top: 25px;
    }
    
    .content-about .text-about{
        width: 100%;
        padding: 0 25px;
    }

    .container-partner {
        margin-top: 100px;
    }

    .container-partner .content-card-partner {
        flex-direction: column;
        margin-top: 50px;
    }

    .container-partner .content-card-partner .card-partner-bhaskara{
        margin-top: 50px;
        /* border: 1px solid black; */
    }

    .conteiner-whyus .whyus-content{
        flex-direction: column;
    }
    
    .conteiner-whyus .whyus-content img {
        width: 650px;
      
    
    }

    .content-client-approach,
    .content-adaptive,
    .content-result-focus,
    .content-excellence,
    .content-profile2,
    .content-profile1
     {
        flex-direction: column;
        flex-direction: column-reverse;
        
    }
    .content-adaptive .img-adaptive img,
    .content-adaptive .text-adaptive p,
    .content-result-focus .img-result-focus img,
    .content-result-focus .text-result-focus p,
    .content-excellence .img-excellence img,
    .content-excellence .text-excellence p
     {
        width: 100%;
    }


   .content-client-approach .img-client-approach img,
   .content-client-approach .text-client-approach h1,
   .content-client-approach .text-client-approach p
    {
       width: 100%;
   }
   .container-client-approach,
    .container-adaptive,
    .container-result-focus,
    .container-excellence {
        margin-top: -50px;
    }

    .content-client-approach .img-client-approach,
    .content-excellence .img-excellence,
    .content-result-focus .img-result-focus,
    .content-adaptive .img-adaptive
    {
        margin-top: 20px;
    }
 
    .content-adaptive .text-adaptive h1,
    .content-excellence .text-excellence h1,
    .content-result-focus .text-result-focus h1,
    .content-client-approach .text-client-approach h1 {
        font-size: 3rem;
    }

    .content-accounting-services,
    .content-legal-services,
    .content-tax-services,
    .content-payroll-services
     {
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .content-accounting-services .img-accounting-services img,
    .content-accounting-services .text-accounting-services p,
    .content-legal-services .img-legal-services img,
    .content-legal-services .text-legal-services p,
    .content-tax-services .img-tax-services img,
    .content-tax-services .text-tax-services p,
    .content-payroll-services .img-payroll-services img,
    .content-payroll-services .text-payroll-services p
     {
        width: 100%;
    }

    .content-accounting-services .text-accounting-services .subbab li,
    .content-payroll-services .text-payroll-services .subbab li,
    .content-legal-services .text-legal-services .subbab li,
    .content-tax-services .text-tax-services .subbab li
    {
        /* border: 1px solid black; */
        width: 90%;
        margin-left: 30px;
    }
    
    .container-accounting-services,
    .container-legal-services,
    .container-tax-services,
    .container-payroll-services
    {
        margin-top: -50px;
    }

    .content-accounting-services .img-accounting-services,
    .content-legal-services .img-legal-services,
    .content-tax-services .img-tax-services,
    .content-payroll-services .img-payroll-services
    {
        margin-top: 20px
        ;
    }


    .content-tax-services .text-tax-services h1,
    .content-accounting-services .text-accounting-services h1,
    .content-legal-services .text-legal-services h1,
    .content-payroll-services .text-payroll-services h1
     {
        font-size: 3rem;
        /* border: 1px solid black; */
    }

    .content-profile2 .content-card-profile2,
    .content-profile1 .content-card-profile1{
        margin-top: 30px;
    }

   
  }

  @media screen and (min-width: 1025px) {

    .nav-menu-container{
        padding: 2% 3%;
        /* border: 1px solid red; */
    }

    .content-banner{
        padding-top: 150px;
    }

    /* .container-about .content-about {
        flex-direction: column;
        flex-direction: column-reverse;
        width: 90%;
        align-items: center;
        
    } */

    .content-about .img-about{
        width: 80%;
        padding: 0 25px;
        margin-top: 25px;
    }
    
    .content-about .text-about{
        width: 100%;
        padding: 0 25px;
    }

    .container-partner {
        margin-top: 70px;
    }

    .conteiner-whyus .whyus-content img {
        /* width: 650px; */
        border: 1px solid black;
    
    }
  }
 

