@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* navigation bar                                ------------------>*/
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: background-color .5s ease;
    z-index: 1000;
}

.nav {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height .5s ease;
}

.nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

nav img {
    margin-left: 60px;
    height: 47px;
    width: auto;
}

.nav-list {
    margin-right: 60px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: #fff;        
    margin: 0 8px;
    position: relative;
}

.active { /*linia de sub text*/
    border-bottom: 1px solid #FCBC04;
}

/*RO | EN effects*/
.language-style1 {
    margin-right: 2px;
    margin-left: 8px;
}

.language-style2 {
    margin-left: 2px;
    margin-right: 10px;
}

.language-bar {
    margin: 0 2px;
    pointer-events: none;
}

.lg-active {
    color: #FCBC04;
}
/*RO | EN effects END*/

.nav-link:hover {
    color: #FCBC04;
    transition-duration: .5s;
}

/*Apply styles after scroll*/
.scrolling-active {
    background-color: #242021;
    /*box-shadow: 0 3px 1rem rgba(219, 222, 4, 0.1);*/
}

.scrolling-active .nav {
    height: 80px; 
    border-bottom: #FCBC04 1px solid;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.scrolling-active nav img {
    width: 220px;
    height: auto;
    transition: .5s ease;
}

.scrolling-active .nav a {
    font-size: 14px;
    transition: .5s ease;
}

/*Apply styles after scroll END*/

/* RERSPONSIVE NAV-BAR */
nav .fa {
    display: none;
}

nav .fa-bars {
    position: absolute;
    right: 30px;
}

nav .fa-bars:hover {
    color: #FCBC04;
    transition: 0.5s;
}

nav .fa-times:hover {
    color: #242021;
    transition: 0.5s;
}

.roww {
    display: flex;
    flex-direction: row;
}

@media(max-width: 1200px) {
    nav img {
        margin-left: 30px;
        height: 30px;
    }

    .scrolling-active nav img {
        width: auto;
        height: 30px;
        margin-left: 30px;
        transition: .5s ease;
    }

    .nav-links li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #FCBC04;
        height: 100vh;
        width: 300px;
        top: 0;
        right: -300px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color:#ffffff;
        margin: 10px;
        font-size: 20px;
        cursor: pointer;
    }

    .scrolling-active .nav a {
        font-size: 18px;
        transition: .5s ease;
    }

    .nav a {
        font-size: 18px;
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links ul .roww {
        padding: 0;
    }

    .nav-list {
        margin: 0;
        float: left;
        align-items: unset;
        flex-direction: column;
    }

    .nav-list li {
        font-size: 30px;
    }

    .active { /*linia de sub text*/
        color: #242021;
    }

    .lg-active {
        color: #242021;
    }

    .nav-link:hover {
        color: #242021;
    }
}

@media(max-width: 400px) {
    nav .fa-bars {
        font-size: 16px;
    }

    nav img {
        height: 25px;
    }

    .scrolling-active nav img {
        width: auto;
        height: 25px;
        margin-left: 30px;
        transition: .5s ease;
    }

    .nav-links {
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
    }

    .nav a {
        font-size: 12px;
    }

    .scrolling-active .nav a {
        font-size: 12px;
        transition: .5s ease;
    }

    .nav-list li {
        font-size: 25px;
    }
}
/* RERSPONSIVE NAV-BAR END*/
/* navigation bar END                                 ------------------>*/

/* Sub Header Content*/
.sub-header {
    width: 100%;
    height: 350px;
    background: url("images/servicii-juridice-bg.jpg") center no-repeat;
    background-size: cover;
}

.sub-header::after {
    content: '';
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #242021 0%, rgba(36, 32, 33, 0.47) 99.94%, #242021 99.95%, rgba(36, 32, 33, 0.47) 99.96%, #242021 99.97%);
}

.title {
    position: relative;
    color: #fff;
    font-size: 64px;
    display: flex;
    justify-content: center;
    padding-top: 150px;
    z-index: 500;
}

.sub-header h2 {
    margin: 0 20px;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.sub-header-line {
    margin-top: 5px;
    width: 120px;
    height: 2px;
    border-bottom: 2px solid #fff;
}

.sub-header-box {
    margin-top: 20px;
    position: relative;
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

@media only screen and (max-width: 1150px) {
    .title { 
        padding-top: 120px;
        font-size: 50px; 
    }

    .sub-header {
        height: 300px;
    }

    .sub-header-line {
        margin-top: 7px;
        width: 60px;
    }
}

@media only screen and (max-width: 920px) {
    .title { 
        font-size: 40px; 
    }
    .sub-header-line {
        margin-top: 7px;
        width: 40px;
    }
    .sub-header h2 {
        margin: 0 10px;
        font-size: 11px;
    }
}

@media only screen and (max-width: 700px) {
    .title { 
        font-size: 30px; 
        padding-top: 90px;
    }
    .sub-header {
        height: 200px;
    }
    .sub-header-box {
        margin-top: 5px;
    }
    .sub-header-line {
        width: 0px;
    }
    .sub-header h2 {
        margin: 0;
        font-size: 8px;
    }
}

@media only screen and (max-width: 430px) {
    .title { 
        font-size: 25px; 
        padding-top: 100px;
    }
    .sub-header {
        height: 180px;
    }
    .sub-header h2 {
        font-size: 0px;
    }
}
/* Hero Sub Header END*/

/* Servicii Juridice*/
.servicii-content {
    width: 100%;
    height: 750px;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.icon-box {
    margin-top: 50px;
    width: 300px;
    height: 28px;
    display: flex;
    align-items: center;
}

.icon-box i {
    margin: 0 20px;
    color: #FCBC04;
}

.line {
    width: 120px;
    height: 2px;
    border-bottom: 2px solid #FCBC04;
}

.serviciile-noastre {
    margin-top: 50px;
}

.serviciile-noastre h1 {
    color: #FCBC04;
    font-size: 40px;
    user-select: none;
}

.serviciile-noastre h1::after {
    content: ' NOASTRE';
    color: #242021;
}

.servicii-boxes-list {
    margin-top: 50px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
}

.servicii-box1 {
    margin: 0 25px;
    position: relative;
    width: 400px;
    height: 450px;
    background: url("images/cunoastere.jpg") center no-repeat;
    background-size: cover;
}

.servicii-box1::after {
    content: '';
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(36, 32, 33, 0.7);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.servicii-box2 {
    margin: 0 25px;
    position: relative;
    width: 400px;
    height: 450px;
    background: url("images/muncii-bg.jpg") center no-repeat;
    background-size: cover;
}

.servicii-box2::after {
    content: '';
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(36, 32, 33, 0.7);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.servicii-box3 {
    margin: 0 25px;
    position: relative;
    width: 400px;
    height: 450px;
    background: url("images/traditie.jpg") center no-repeat;
    background-size: cover;
}

.servicii-box3::after {
    content: '';
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(36, 32, 33, 0.7);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.servicii-box1:hover , .servicii-box2:hover , .servicii-box3:hover {
    transform: translate(-5px, -5px);
    box-shadow: 6px 6px 6px rgba(255, 187, 0, 0.85);
    transition: 0.2s;
}

.servicii-item {
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.circle-icon {
    margin-top: 20px;
    text-align: center;
	float: left;
	width: 80px;
	height: 80px;
	border-radius: 100%;
    background: transparent;
    border: solid #FCBC04 1px;
}

.circle-icon i{
    line-height: 78px;
	color: #FCBC04;
}

.servicii-item-title {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 20px;
}

.servicii-item-title .line {
    width: 43px;
    height: 2px;
    border-bottom: 2px solid #fff;
}

.servicii-item-title h1 {
    margin: 0 19px;
    color: #fff;
    font-size: 24px;
}

.servicii-item p {
    width: 350px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    font-weight: medium;
}

.arrow-down {
    position: absolute;
    z-index: 999;
    width: 0; 
    height: 0; 
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #fff;
    margin-top: 740px;
}

@media only screen and (max-width: 1320px) {
    .servicii-boxes-list {
        margin-top: 50px;
        flex-direction: row;
    }
    
    .servicii-box1 {
        margin: 0 20px;
        width: 350px;
        height: 450px;
    }
    
    .servicii-box2 {
        margin: 0 20px;
        width: 350px;
        height: 450px;
    }
    
    .servicii-box3 {
        margin: 0 20px;
        width: 350px;
        height: 450px;
    }
    
    .circle-icon {
        margin-top: 20px;
        width: 80px;
        height: 80px;
    }
    
    .circle-icon i{
        line-height: 78px;
    }
    
    .servicii-item-title {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .servicii-item-title .line {
        width: 30px;
        height: 2px;
    }
    
    .servicii-item-title h1 {
        margin: 0 19px;
        font-size: 22px;
    }
    
    .servicii-item p {
        width: 300px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 1150px) {
    .servicii-content {
        height: 700px;
    }

    .arrow-down {
        margin-top: 690px;
    }
    
    .icon-box {
        margin-top: 50px;
        width: 250px;
        height: 28px;
    }
    
    .icon-box i {
        margin: 0 20px;
    }
    
    .line {
        width: 100px;
    }
    
    .serviciile-noastre {
        margin-top: 50px;
    }
    
    .serviciile-noastre h1 {
        font-size: 35px;
    }
    
    .servicii-boxes-list {
        margin-top: 50px;
        flex-direction: row;
    }
    
    .servicii-box1 {
        margin: 0 10px;
        width: 250px;
        height: 370px;
    }
    
    .servicii-box2 {
        margin: 0 10px;
        width: 250px;
        height: 370px;
    }
    
    .servicii-box3 {
        margin: 0 10px;
        width: 250px;
        height: 370px;
    }
    
    .circle-icon {
        margin-top: 20px;
        width: 65px;
        height: 65px;
    }
    
    .circle-icon i{
        font-size: 25px;
        line-height: 65px;
    }
    
    .servicii-item-title {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .servicii-item-title .line {
        width: 0px;
    }
    
    .servicii-item-title h1 {
        font-size: 20px;
    }
    
    .servicii-item p {
        width: 230px;
        font-size: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .servicii-content {
        height: 1020px;
    }

    .arrow-down {
        margin-top: 1010px;
    }
    
    .icon-box {
        margin-top: 40px;
        width: 250px;
        height: 28px;
    }
    
    .icon-box i {
        margin: 0 20px;
    }
    
    .line {
        width: 100px;
    }
    
    .serviciile-noastre {
        margin-top: 30px;
    }
    
    .serviciile-noastre h1 {
        font-size: 30px;
    }
    
    .servicii-boxes-list {
        margin-top: 30px;
        flex-direction: column;
    }
    
    .servicii-box1 {
        margin: 10px;
        width: 340px;
        height: 250px;
    }
    
    .servicii-box2 {
        margin: 10px;
        width: 340px;
        height: 250px;
    }
    
    .servicii-box3 {
        margin: 10px;
        width: 340px;
        height: 250px;
    }
    
    .circle-icon {
        margin-top: 20px;
        width: 55px;
        height: 55px;
    }
    
    .circle-icon i{
        font-size: 20px;
        line-height: 55px;
    }
    
    .servicii-item-title {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .servicii-item-title .line {
        width: 0px;
    }
    
    .servicii-item-title h1 {
        font-size: 18px;
    }
    
    .servicii-item p {
        width: 300px;
        font-size: 8px;
    }
}

@media only screen and (max-width: 350px) {
    .servicii-box1:hover , .servicii-box2:hover , .servicii-box3:hover {
        transform: none;
        box-shadow: none;
        transition: none;
    }

    .serviciile-noastre {
        margin-top: 30px;
    }
    
    .serviciile-noastre h1 {
        font-size: 26px;
    }
    
    .servicii-box1 {
        width: 270px;
    }
    
    .servicii-box2 {
        width: 270px;
    }
    
    .servicii-box3 {
        width: 270px;
    }
    
    .circle-icon {
        width: 55px;
        height: 55px;
    }
    
    .circle-icon i{
        font-size: 20px;
        line-height: 55px;
    }
    
    .servicii-item-title h1 {
        font-size: 16px;
    }
    
    .servicii-item p {
        width: 250px;
    }
}
/* Servicii Juridice END*/

/* CONSILIERE*/
.consiliere {
    background: #242021;
    height: 650px;
    width: 100%;
}

.consiliere {
    position: relative;
    width: 100%;
    height: 660px;
    background: url("images/servicii-juridice-bg.jpg") center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.consiliere::after {
    content: '';
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(36, 32, 33, 0.53) 99.98%, rgba(36, 32, 33, 0) 99.99%, #242021 100%);
}

.consiliere h1 {
    position: absolute;
    z-index: 2;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #FCBC04;
    font-size: 40px;
    font-weight: bold;
}

.button-box {
    display: flex;
    justify-content: space-around;
    align-content: space-around;
    flex-wrap: wrap;
    margin-top: 150px;
}

.button-box a {
    z-index: 3;
    text-decoration: none;
}

.consiliere-button:hover h2 {
    color: #FCBC04;
    transition: 0.5s;
}

.consiliere-button:hover .line {
    border-bottom: 2px solid #FCBC04;
    transition: 0.5s;
}

.consiliere-button {
    z-index: 2;
    display: flex;
    margin: 10px 20px;
}

.consiliere-button .patrat-icon {
    text-align: center;
	float: left;
	width: 70px;
	height: 70px;
    background: #FCBC04;
}

.consiliere-button .patrat-icon i{
    line-height: 68px;
	color: #242021;
}

.consiliere-button .dreptunghi-icon {
    text-align: center;
	float: left;
	width: 40px;
	height: 70px;
    background: #FCBC04;
}

.consiliere-button .dreptunghi-icon i{
    line-height: 68px;
	color: #fff;
}

.consiliere-text-box {
    background: #242021;
    height: 70px;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.coloana-middle {
    width: 480px;
}

.consiliere-text-box h2 {
    font-size: 24px;
    color: #fff;
}

.mai-multe-button {
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.mai-multe-button .line {
    width: 22px;
    height: 2px;
    border-bottom: 2px solid #fff;
    margin-top: -3px;
}

.mai-multe-button h2 {
    margin: 0 5px;
    color: #fff;
    font-size: 12px;
}

@media only screen and (max-width: 1500px) {
    .consiliere h1 {
        margin-top: 50px;
        font-size: 35px;
    }

    .consiliere-button .patrat-icon {
        text-align: center;
        float: left;
        width: 70px;
        height: 70px;
        background: #FCBC04;
    }
    
    .consiliere-button .patrat-icon i{
        line-height: 68px;
        color: #242021;
    }
    
    .consiliere-button .dreptunghi-icon {
        text-align: center;
        float: left;
        width: 40px;
        height: 70px;
        background: #FCBC04;
    }
    
    .consiliere-button .dreptunghi-icon i{
        line-height: 68px;
        color: #fff;
    }
    
    .consiliere-text-box {
        height: 70px;
        width: 480px;
    }
}

@media only screen and (max-width: 1260px) {
    .consiliere {
        height: 780px;
    }

    .button-box {
        justify-content: center;
        align-content: center;
        margin-top: 100px;
    }

    .consiliere h1 {
        margin-top: 60px;
        font-size: 20px;
    }

    .consiliere-button .patrat-icon {
        text-align: center;
        float: left;
        width: 70px;
        height: 70px;
        background: #FCBC04;
    }
    
    .consiliere-button .patrat-icon i{
        line-height: 68px;
        color: #242021;
    }
    
    .consiliere-button .dreptunghi-icon {
        text-align: center;
        float: left;
        width: 40px;
        height: 70px;
        background: #FCBC04;
    }
    
    .consiliere-button .dreptunghi-icon i{
        line-height: 68px;
        color: #fff;
    }
    
    .consiliere-text-box {
        height: 70px;
        width: 480px;
    }

    .consiliere-button {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 700px) {
    .consiliere {
        height: 580px;
    }

    .button-box {
        margin-top: 70px;
    }

    .consiliere h1 {
        margin-top: 40px;
        font-size: 14px;
    }

    .consiliere-button .patrat-icon {
        width: 50px;
        height: 50px;
    }
    
    .consiliere-button .patrat-icon i{
        line-height: 50px;
        font-size: 25px;
    }
    
    .consiliere-button .dreptunghi-icon {
        width: 20px;
        height: 50px;
    }
    
    .consiliere-button .dreptunghi-icon i{
        line-height: 50px;
    }

    .dreptunghi-icon i {
        font-size: 20px;
    }
    
    .consiliere-text-box {
        height: 50px;
        width: 300px;
    }

    .consiliere-button {
        margin-top: 20px;
    }

    .consiliere-text-box h2 {
        font-size: 16px;
    }
    
    .mai-multe-button {
        margin-top: 0px;
    }
    
    .mai-multe-button .line {
        width: 20px;
        margin-top: -2px;
    }
    
    .mai-multe-button h2 {
        font-size: 10px;
    }
}

@media only screen and (max-width: 490px) {
    .consiliere {
        height: 550px;
    }

    .button-box {
        margin-top: 100px;
    }

    .consiliere h1 {
        margin-top: 50px;
        font-size: 13px;
        width: 240px;
    }

    .consiliere-button .patrat-icon {
        width: 35px;
        height: 35px;
    }
    
    .consiliere-button .patrat-icon i{
        line-height: 35px;
        font-size: 20px;
    }
    
    .consiliere-button .dreptunghi-icon {
        width: 15px;
        height: 35px;
    }
    
    .consiliere-button .dreptunghi-icon i{
        line-height: 35px;
        font-size: 15px;
    }
    
    .consiliere-text-box {
        height: 35px;
        width: 220px;
    }

    .consiliere-button {
        margin-top: 20px;
    }

    .consiliere-text-box h2 {
        font-size: 11px;
    }
    
    .mai-multe-button {
        margin-top: 0px;
    }
    
    .mai-multe-button .line {
        width: 15px;
        margin-top: -2px;
    }
    
    .mai-multe-button h2 {
        font-size: 8px;
    }
}
/* CONSILIERE END*/

/* ATESTAREA CUREA*/
.atestarea-curea {
    background: #FCBC04;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.atestarea-curea h1 {
    font-weight: bold;
    font-size: 40px;
    color: #242021;
    margin: 0 15px;
    z-index: 10;
}

.atestarea-curea .line {
    width: 87px;
    height: 4px;
    border-bottom: 4px solid #242021;
    margin-top: -3px;
    z-index: 10;
}

.atestarea-curea .arrow-down {
    border-top: 30px solid #FCBC04;
    margin-top: 100px;
    z-index: 1;
}

@media only screen and (max-width: 1260px) {
    .atestarea-curea h1 {
        font-size: 30px;
    }
    .atestarea-curea .line {
        width: 70px;
        border-bottom: 3px solid #242021;
    }

    .atestarea-curea {
        height: 70px;
    }
    .atestarea-curea .arrow-down {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 700px) {
    .atestarea-curea h1 {
        font-size: 20px;
    }
    .atestarea-curea .line {
        width: 70px;
        border-bottom: 3px solid #242021;
    }

    .atestarea-curea {
        height: 70px;
    }
    .atestarea-curea .arrow-down {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 490px) {
    .atestarea-curea h1 {
        font-size: 14px;
        margin: 0 10px;
    }
    .atestarea-curea .line {
        width: 35px;
        border-bottom: 3px solid #242021;
    }

    .atestarea-curea {
        height: 60px;
    }
    .atestarea-curea .arrow-down {
        margin-top: 65px;
    }
}
/* ATESTAREA CUREA END*/

/* REZOLVAREA PROBLEMELOR */
.rezolv-prob {
    background: #242021;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.rezolv-prob h1 {
    margin-top: 25px;
    font-size: 28px;
    color: #fff;
}

.rezolv-prob .icon-box2 .line{
    width: 100px;
    height: 2px;
    border-bottom: 2px solid #fff;
    margin-top: -3px;
}

.rezolv-prob .icon-box2 i {
    color: #fff;
}

.icon-box2 {
    margin-top: 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.icon-box2 i {
    margin: 0 16px;
}

.rezolv-list {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rezolv-item {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
}

.rezolv-item i {
    color: #FCBC04;
}

.rezolv-item-text {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #242021;
    font-size: 14px;
    width: 600px;
    height: 100px;
    text-align: center;
    background: #FCBC04;
    margin: 0 30px;
}

.rezolv-prob .arrow-down {
    margin-top: 410px;
    border-top: 30px solid #242021;
}

@media only screen and (max-width: 1560px) {
    .rezolv-item i {
        display: none;
    }
}
@media only screen and (max-width: 1260px) {
    .rezolv-prob {
        height: 350px;
    }
    
    .rezolv-prob h1 {
        margin-top: 10px;
        font-size: 20px;
    }

    .rezolv-list {
        margin-top: 10px;
    }

    .rezolv-item-text {
        font-size: 10px;
        width: 400px;
    }

    .rezolv-prob .arrow-down {
        margin-top: 360px;
    }
}

@media only screen and (max-width: 900px) {
    .rezolv-prob {
        height: 500px;
    }
    
    .rezolv-prob h1 {
        margin-top: 10px;
        font-size: 20px;
        text-align: center;
        width: 400px;
    }

    .rezolv-list {
        margin-top: 10px;
    }

    .rezolv-item-text {
        font-size: 9px;
        width: 390px;
        height: 80px;
    }

    .rezolv-prob .arrow-down {
        margin-top: 510px;
    }

    .rezolv-list {
        flex-direction: column;
    }
}

@media only screen and (max-width: 900px) {
    .rezolv-prob {
        height: 450px;
    }
    
    .rezolv-prob h1 {
        margin-top: 0px;
        font-size: 14px;
        text-align: center;
        width: 250px;
    }

    .rezolv-list {
        margin-top: 0px;
    }

    .rezolv-item-text {
        font-size: 7px;
        width: 250px;
        height: 80px;
    }

    .rezolv-prob .arrow-down {
        margin-top: 460px;
    }

    .rezolv-prob .icon-box2 .line{
        width: 60px;
        border-bottom: 1px solid #fff;
    }

    .rezolv-prob .icon-box2 {
        font-size: 12px;
    }
}
/* REZOLVAREA PROBLEMELOR END*/

/* ONORARII*/
.onorarii {
    width: 100%;
    height: 650px;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.onorarii h1 {
    color: #685E61;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    width: 1200px;
    margin-top: 30px;
}

.onorarii .icon-box {
    margin-top: 50px;
}

.onorarii-percepute h1 {
    margin-top: 10px;
    color: #FCBC04;
    font-size: 40px;
    margin-top: 40px;
    user-select: none;
}

.onorarii-percepute h1::after {
    content: ' PERCEPUTE';
    color: #242021;
}

.tipuri-persoane {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
}

.tipuri-persoane li {
    list-style: none;
    font-size: 25px;
    color: #242021;
    font-weight: bold;
    border-bottom: 2px solid #242021;
    margin: 0 50px;
    cursor: pointer;
}

.tipuri-persoane li:hover {
    color: #FCBC04;
    border-bottom: 2px solid #FCBC04;
    transition: 0.2s;
}


.act li{
    color: #FCBC04;
    border-bottom: 2px solid #FCBC04;
}

#persoane-juridice {
    display: none;
}


.pf-box-content {
    display: flex;
    align-items: center;
    margin-top: 60px;
    flex-direction: row;
}

.pf-box {
    width: 370px;
    height: 170px;
    background: #242021;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.pf-box p {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    width: 320px;
}

.pj-box-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.pj-box {
    width: 375px;
    height: 70px;
    background: #242021;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.pj-box p {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.pj-row {
    display: flex;
    align-items: center;
    margin-top: 30px;
    flex-direction: row;
}

.pf-box:hover p, .pj-box:hover p {
    color: #FCBC04;
    transition: 0.2s;
}

@media only screen and (max-width: 1300px) {
    .onorarii h1 {
        font-size: 20px;
        width: 800px;
        margin-top: 30px;
    }

    .onorarii-percepute h1 {
        margin-top: 10px;
        font-size: 35px;
        margin-top: 40px;
    }

    .pf-box {
        width: 250px;
        height: 150px;
        margin: 0 20px;
    }

    .pf-box p{
        font-size: 11px;
        width: 230px;
    }

    .pj-box {
        width: 250px;
        height: 50px;
        margin: 0 20px;
    }

    .pj-box p{
        font-size: 14px;
    }

    .tipuri-persoane li {
        font-size: 20px;
        margin: 0 50px;
    }
}

@media only screen and (max-width: 850px) {
    .onorarii {
        height: 570px;
    }

    .onorarii h1 {
        font-size: 15px;
        width: 600px;
        margin-top: 20px;
    }

    .onorarii-percepute h1 {
        margin-top: 10px;
        font-size: 30px;
        margin-top: 30px;
    }

    .pf-box {
        width: 200px;
        height: 150px;
        margin: 0 10px;
    }

    .pf-box p{
        font-size: 10px;
        width: 180px;
    }

    .pj-box {
        width: 200px;
        height: 50px;
        margin: 0 20px;
    }

    .pj-box p {
        font-size: 11px;
    }

    .tipuri-persoane li {
        font-size: 20px;
        margin: 0 40px;
    }
}

@media only screen and (max-width: 700px) {
    .onorarii .icon-box i{
        font-size: 15px;
        margin: 0 15px;
    }

    .onorarii .icon-box .line{
        width: 50px;
        margin-top: -2px;
    }

    .onorarii .icon-box {
        margin-bottom: -15px;
        width: auto;
    }

    .onorarii {
        height: 680px;
    }

    .onorarii h1 {
        font-size: 12px;
        width: 400px;
        margin-top: 20px;
    }

    .onorarii-percepute h1 {
        margin-top: 10px;
        font-size: 20px;
        margin-top: 30px;
    }

    .pf-box {
        width: 270px;
        height: 100px;
        margin: 10px;
    }

    .pf-box p {
        font-size: 8px;
        width: 240px;
    }

    .pj-box {
        width: 270px;
        height: 50px;
        margin: 10px;
    }

    .pj-box p{
        font-size: 11px;
    }

    .tipuri-persoane li {
        font-size: 14px;
        margin: 0 10px;
    }

    .pf-box-content {
        margin-top: 20px;
        flex-direction: column;
    }

    .pj-row {
        display: flex;
        align-items: center;
        margin-top: 0px;
        flex-direction: column;
    }
}

@media only screen and (max-width: 450px) {
    .onorarii {
        height: 680px;
    }

    .onorarii h1 {
        font-size: 10px;
        width: 270px;
        margin-top: 20px;
    }

    .onorarii-percepute h1 {
        margin-top: 10px;
        font-size: 20px;
        margin-top: 30px;
    }

    .tipuri-persoane li {
        font-size: 10px;
        margin: 0 4px;
    }
}
/* ONORARII END*/


/*STABILIRE ONORARII*/
.stabilire {
    background: url(images/stabilire-bg.jpg) center no-repeat;
    background-size: cover; 
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stabilire-bg {
    position: absolute;
    width: 100%;
    height: inherit;
    z-index: 2;
    background: rgba(36, 32, 33, 0.85);
}

.border {
    width: 97%;
    height: 380px;
    border: 1px solid #FCBC04;
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.border h1 {
    margin-top: 20px;
    width: 80%;
    font-size: 28px;
    color: #FCBC04;
    font-weight: bold;
    text-align: center;
}

.stabilire-text {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.stabilire-text i {
    color: #FCBC04;
}

.stabilire-text p {
    color: #fff;
    font-weight: normal;
    font-size: 20px;
    width: 600px;
    height: 100px;
    text-align: center;
    margin: 0 20px;
}

.border .icon-box2 {
    margin-top: 20px;
}

.border .icon-box2 .line{
    width: 60px;
    height: 2px;
    border-bottom: 2px solid #fff;
    margin-top: -3px;
}

.border .icon-box2 h1 {
    color: #fff;
    margin-top: 0px;
    font-size: 20px;
}

.arrow-left {
    width: 50px;
    height: 50px;
    border-right: 2px solid #FCBC04;
    border-top: 2px solid #FCBC04;
    transform: rotate(225deg);
}

.arrow-right {
    width: 50px;
    height: 50px;
    border-right: 2px solid #FCBC04;
    border-top: 2px solid #FCBC04;
    transform: rotate(45deg);
}

.arrow-left:hover, .arrow-right:hover {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transition: 0.2s ease-in-out;
}

.mySlides {
    display: none;
}

@media only screen and (max-width: 1400px) {
    .arrow-left, .arrow-right {
        margin-top: 20px;
    }
    .border h1 {
        margin-top: 20px;
        width: 80%;
        font-size: 20px;
    }

    .stabilire-text p {
        font-size: 16px;
        width: 500px;
        height: 80px;
        margin: 0 10px;
    }
}

@media only screen and (max-width: 705px) {
    .arrow-left, .arrow-right {
        width: 40px;
        height: 40px;
    }

    .border h1 {
        margin-top: 20px;
        font-size: 14px;
    }

    .stabilire-text p {
        font-size: 12px;
        width: 350px;
        height: 60px;
        margin: 0 5px;
    }

    .border .icon-box2 .line{
        width: 40px;
        border-bottom: 1px solid #fff;
    }
    
    .border .icon-box2 h1 {
        font-size: 14px;
    }

    .border .icon-box i {
        font-size: 15px;
    }

    .border .icon-box .line {
        width: 200px;
        border-bottom: 1px solid #FCBC04;
    }

    .stabilire {
        height: 340px;
    }
    
    .border {
        height: 300px;
    }
}

@media only screen and (max-width: 500px) {
    .arrow-left, .arrow-right {
        width: 20px;
        height: 20px;
        margin-top: 30px;
    }

    .border h1 {
        margin-top: 20px;
        font-size: 12px;
    }

    .stabilire-text p {
        font-size: 8px;
        width: 200px;
        height: 30px;
        margin: 0;
    }

    .border .icon-box2 .line{
        width: 30px;
        border-bottom: 1px solid #fff;
    }
    
    .border .icon-box2 h1 {
        font-size: 10px;
    }

    .border .icon-box {
        margin-bottom: -30px;
        width: auto;
    }

    .border .icon-box i {
        font-size: 10px;
    }

    .border .icon-box .line {
        width: 40px;
    }

    .stabilire {
        height: 320px;
    }
    
    .border {
        height: 280px;
    }

}

@media only screen and (max-width: 320px) { 
    .stabilire {
        height: 340px;
    }
    
    .border {
        height: 300px;
    }
}
/*STABILIRE ONORARII END*/

/* Footer                               ------------------>*/ 
.footer-about {
    background: #242021;
    background-size: cover;     
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
}

.footer-box {
    z-index: 5;
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.footer-logo-patrat {
    width: 170px;
    height: 170px;
}

.footer-logo-text {
    width: auto;
    height: 80px;
}

.footer-info {
    height: 170px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    color: #fff;
}

.contact-info-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
}
.contact-info-header h1{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.underline {
    width: 200px;
    height: 0;
    background-color: #fff;
    border: 1px solid #fff;
}

.contact-info-items {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: auto;
}

.contact-info-items h1 {
    margin-top: -9px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2;
}

.contact-info-items a {
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    margin-top: -9px;
}

.contact-info-items a:hover {
    color: #FCBC04;
    transition: 0.5s;
}

.contact-info-items i {
    margin-right: 10px; 
}

@media only screen and (max-width: 1200px) {
    .footer-logo-text {
        display: none;
    }
}

@media only screen and (max-width: 700px) {
    .footer-logo-patrat {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    #arii-practica {
        display: none;
    }
}
/*Footer END*/

/*bottom navigation bar*/
.bottom-nav-bar {
    width: 100%;
    height: 50px;
    background-color: #FCBC04;
    display: flex;
    flex-direction: row;
}

.bottom-nav {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.bottom-nav div {
    text-align: center;
	float: right;
	width: 35px;
	height: 35px;
	border-radius: 100%;
    background: #242021;
    margin-right: 100px;
}

.bottom-nav div i{
    line-height: 35px;
	color: #fff;
}

.bottom-nav h1 {
    font-size: 18px;
    color: #242021;
    margin-left: 100px;
    float: left;
}

@media only screen and (max-width: 600px) {
    .bottom-nav h1 {
        font-size: 12px;
        margin-left: 20px;
    }

    .bottom-nav div {
        width: 30px;
        height: 30px;
        margin-right: 20px;
    }
    
    .bottom-nav div i{
        line-height: 30px;
    }
}
/*bottom navigation bar END                                ------------------>*/