/*
Theme Name: Construct Website
Theme URI: https://min-code.com
Author: Mincode Group
Author URI: https://min-code.com
Version: 1.0
Text Domain: Construct Website
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
}


h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.125rem;
}

p {
    color: rgba(0, 0, 0, 0.53);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 768px) {
    p {
        font-size: 1rem;
    }
}

a{
    text-decoration: none;
    color: #000;
}

.header {
    padding: 1.375rem 0rem;
    background-color: rgba(0, 0, 0, 0.28);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header_logo {
    height: 3.75rem;
}

.header_backDrop {
    display: none;
}

.header .navbar {
    position: relative;
    z-index: 1;
}

.header .navbar-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .nav-item {
    margin-left: 3.4375rem;
}

.header .nav-link {
    font-size: 1.125rem;
    color: white;
    padding: 0px !important;
}

.header .nav-item .btn {
    padding: 0.97em 3.36em;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: white;
}

@media (max-width: 1199.98px) {
    .header {
        /* padding: 16px 0px; */
    }

    .header_logo {
        height: 40px;
    }

    .header_navContent {
        position: fixed;
        z-index: 1000;
        top: 0px;
        right: 0px;
        bottom: 0px;
        background-color: rgba(46, 46, 46, 0.63);
        width: 300px;
        padding: 1.25rem 1rem;
    }

    .header .header_navContent {
        border-radius: 16px 0px 0px 16px;
        -webkit-transform: translateX(110%);
        -ms-transform: translateX(110%);
        transform: translateX(110%);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        overflow-y: auto;
    }

    .header.active_header .header_navContent {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    .header_navContent .navbar-toggler {
        display: block;
        margin-left: auto;
        border: 1px solid rgba(255, 255, 255, 0.47) !important;
    }

    .navbar-toggler{
        border: 1px solid rgba(255, 255, 255, 0.47) !important;
        box-shadow: none;
    }

    .fa-bars {
        color: rgba(255, 255, 255, 0.32);
    }

    .fa-xmark{
        color: rgba(255, 255, 255, 0.32);
    }

    .header .navbar-nav {
        padding-right: 0px;
        padding-top: 1.25rem;
    }

    .header .nav-item {
        margin-left: 0px;
        margin-bottom: 0.75rem;
        width: 100%;
    }

    .header .nav-link {
        margin-left: 0px;
        padding: 0.5rem !important;
        border-radius: 50rem;
        text-align: center;
    }

    .header .nav-link:hover {
        background-color: rgba(21, 21, 21, 0.63);
    }

    .header .nav-item .btn {
        width: 100%;
    }

    .header.active_header .header_backDrop {
        display: block;
        position: fixed;
        z-index: 999;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        background-color: #00000080;
    }
}

.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.28);
}

.dropdown-item {
    display: inline-flex;
    padding: 1rem 2.5rem 1rem 1.25rem;
    align-items: flex-start;
    color: white;
    gap: 10px;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.32);
    color: #d1c598;
}

.container {
    max-width: 1440px;
}

.container_xxl {
    max-width: 120rem;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
}

.service_title {
    padding-top: 6rem;
}

@media (max-width: 1400px) {
    .service_title {
        padding-top: 3rem;
    }
}

.service_title > h2 {
    color: #000;
    text-align: center;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media(max-width: 1200px) {
    .service_title > h2 {
        font-size: 2rem;
    }
}

@media(max-width: 600px) {
    .service_title > h2 {
        font-size: 1.5rem;
    }
}

.service_description {
    padding-top: 1.25rem;
}

.service_description > p {
    color: rgba(0, 0, 0, 0.53);
    text-align: center;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.bl_service_card {
    width: 100%;
    max-width: 28.333rem;
    /*height: 582px;*/
    border: 1px solid rgba(0, 0, 0, 0.20);
    margin-top: 2.563rem;
    transition: all 0.3s linear;
}

@media (max-width: 765px) {
    .bl_service_card {
        width: 100%;
        max-width: 100%;
        height: auto;
        border: 1px solid rgba(0, 0, 0, 0.20);
        margin-top: 2.563rem;
    }
}

.card_service {
    width: 100%;
    max-width: 28.333rem;
    /*height: 546px;*/
    border: 1px solid rgba(0, 0, 0, 0.20);
    margin-top: 2.563rem;
    transition: all 0.3s linear;
}

.button__service1{
    margin-top: 20px;
}

@media (max-width: 765px) {
    .card_service {
        width: 100%;
        max-width: 100%;
        height: auto;
        border: 1px solid rgba(0, 0, 0, 0.20);
        margin-top: 2.563rem;
    }
}

.button__service{
    padding: 10px 16px 30px;
}

.card_service:hover {
    box-shadow: 0.625rem 0.625rem 1.25rem 0 rgba(0, 0, 0, 0.25);
}

.image_wrapper {
    position: relative;
}

.card-img-top {
    display: block;
    width: 100%;
    cursor: pointer;
    height: 16.438rem;
    object-fit: cover;
}

@media(max-width: 767px){
    .card-img-top{
        height: 100%;
    }
}


.gray_image {
    display: block;
    width: 100%;
    cursor: pointer;
}

@media(max-width: 767px){
    .gray_image{
        height: 100%;
    }
}

.details_service {
    padding: 1.875rem;
    height: 199px;
}

.gossi_service{
    padding: 1.875rem;
}

.details_slide_project{
    padding: 1.875rem;
}

.bl_details{
    /*height: 233px;*/
    padding: 1.875rem;
}

.bl_details > p {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 190%;
    color: rgba(0, 0, 0, 0.50);
}

.card_description_service{
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.card_description_service p{
    font-size: 14px;
}

.ov_details{
    padding: 1.875rem;
}

.details_service > a {
    text-decoration: none;
    color: #1a1d20;
}

.details_service > p{
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 190%;
    color: rgba(0, 0, 0, 0.50);
}

.gossi_service > p{
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 190%;
    color: rgba(0, 0, 0, 0.50);
}

@media(max-width: 780px){
    .gossi_service > p{
        font-size: 14px;
    }
}

.category {
    display: flex;
    flex-direction: row;
}

.category_service {
    position: relative;
    display: inline-block;
    color: rgba(0, 0, 0, 0.50);
    font-size: 14px;
    font-style: normal;
    padding-left: 24px;
    font-weight: 400;
    line-height: 190%;
}

.category_service::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('./assets/img/category.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
}

.card_title_service {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    /*height: 50px;*/
}

.gossi_title{
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}

@media(max-width: 900px){
    .gossi_title{
        font-family: "Poppins", sans-serif;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        cursor: pointer;
    }
}

.btn_gossi {
    position: relative;
    display: inline-block;
    padding-right: 1.875rem;
    font-size: 1.25rem;
    border: none;
}

@media(max-width: 640px){
    .btn_gossi {
        font-size: 1rem;
    }
}

.btn_gossi:hover {
    border: none;
    color: #d1c598;
}

.btn_gossi::after {
    content: "";
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("./assets/img/learn_more.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.625rem;
    height: 0.625rem;
}

.btn_gossi:hover::after {
    content: "";
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("./assets/img/hover.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.625rem;
    height: 0.625rem;
}

@media(max-width: 900px){
    .card_title_service {
        font-family: "Poppins", sans-serif;
        font-size: 17px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        cursor: pointer;
        height: 50px;
    }
}

.slide_title{
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    color: white;
}

.btn_service {
    position: relative;
    display: inline-block;
    padding-right: 1.875rem;
    border: none;
}

.btn_service:hover {
    border: none;
    color: #d1c598;
}

.btn_service::after {
    content: "";
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("./assets/img/learn_more.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.625rem;
    height: 0.625rem;
}

.btn_service:hover::after {
    content: "";
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("./assets/img/hover.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.625rem;
    height: 0.625rem;
}

.icon_more {
    padding-left: 0.625rem;
}

.top-96 {
    padding-top: 6rem;
}

@media(max-width: 600px){
    .top-96 {
        padding-top: 3rem;
    }
}

.about-us {
    background: linear-gradient(to right, #d1c598 25%, #373F4A 25%);
}

@media (max-width: 988px) {
    .about-us {
        background: linear-gradient(to right, #d1c598 2%, #373F4A 2%);
    }
}

@media (max-width: 600px) {
    .about-us {
        background: #373F4A;
    }
}

.image-container {
    display: flex;
    width: 36.125rem;
    height: 41.375rem;
    padding: 2.188rem;
    align-items: center;
    gap: 0.625rem;
    border: 1px solid #ffffff;
}

.image_about {
    width: 31.957rem;
    height: 36.267rem;
    object-fit: cover;
}

@media (max-width: 1244px) {
    .image-container {
        display: flex;
        width: 31.125rem;
        height: 35.375rem;
        padding: 1.188rem;
        align-items: center;
        gap: 0.625rem;
        border: 1px solid #ffffff;
    }

    .image_about {
        width: 27.957rem;
        height: 29.267rem;
        object-fit: cover;
    }
}

@media (max-width: 1076px) {
    .image-container {
        display: flex;
        width: 24.125rem;
        height: 23.375rem;
        padding: 1.188rem;
        align-items: center;
        gap: 0.625rem;
        border: 1px solid #ffffff;
    }

    .image_about {
        width: 21.957rem;
        height: 21.267rem;
        object-fit: cover;
    }
}

@media (max-width: 988px) {
    .image-container {
        display: flex;
        width: 100%;
        height: 100%;
        padding: 1.188rem;
        align-items: center;
        gap: 0.625rem;
        border: 1px solid #ffffff;
    }

    .image_about {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

ul li {
    margin-bottom: 0.625rem;
    font-size: 1rem;
}

ul li i {
    color: #d1c598;
    margin-right: 0.625rem;
}

.btn-warning {
    background-color: #d1c598;
    border: none;
    color: #333;
    padding: 0.625rem 1.25rem;
}

.title_about {
    font-size: 2.5rem;
    color: #d1c598;
    padding-bottom: 1.25rem;
}

.description_about {
    width: 100%;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
}

.details_about {
    padding-top: 6rem;
    padding-left: 6.375rem;
    color: #FFF;
}

@media (max-width: 1614px) {
    .details_about {
        padding-top: 6rem;
        padding-left: 6.375rem;
        color: #FFF;
    }
}

@media (max-width: 1056px) {
    .details_about {
        padding-top: 3rem;
        padding-left: 0;
        color: #FFF;
    }
}

.btn_about {
    border-radius: 0.5rem;
    background: #d1c598;
    padding: 1rem 3.125rem;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .btn_about {
        margin-left: 2.5rem;
    }
}

.btn_about:hover {
    border-radius: 0.5rem;
    background: #9c9064;
    color: white;
    padding: 1rem 3.125rem;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /*border: #c3a02f;*/
}

.argument_about {
    width: 100%;
    padding-bottom: 2.5rem;
    color: white;
}

.argument_page_about{
    width: 100%;
    color: rgba(0, 0, 0, 0.53);
}

.statistic_about {
    background: #d1c598;
}

.statistic_info {
    padding-top: 1.375rem;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.title_info {
    font-size: 4rem;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .title_info {
        font-size: 2rem;
        font-weight: 600;
    }
}

.description_info {
    font-size: 1.25rem;
    font-weight: normal;
    color: #282E35;
}

@media (max-width: 1200px) {
    .description_info {
        font-size: 1rem;
        font-weight: normal;
    }
}

.projects_realized {
    position: relative;
    background: linear-gradient(0deg, rgba(45, 51, 60, 0.90) 0%, rgba(45, 51, 60, 0.90) 100%), url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTl8fGNvbnN0cnVjdGlvbnxlbnwwfHwwfHx8MA%3D%3D") lightgray 50% / cover no-repeat;
    box-shadow: 0px 0.25rem 0.25rem 0px rgba(0, 0, 0, 0.25);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.project_title {
    display: flex;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 1.25rem;
}

.project_title > h2 {
    color: white;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

@media(max-width: 780px){
    .project_title > h2 {
        color: white;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-align: center;
    }

}

.card_project {
    background: rgba(38, 41, 46, 0.50);
    width: 100%;
    max-width: 28.333rem;
    height: auto;
    transition: all 0.3s linear;
}

.card_project > a {
    text-decoration: none;
    color: white;
}

.card_project:hover {
    background: rgba(253, 223, 120, 0.50);
    cursor: pointer;
}

@media (max-width: 898px) {
    .card_project {
        background: rgba(38, 41, 46, 0.50);
        max-width: 100%;
        height: auto;
    }

}

.img-project {
    display: block;
    width: 100%;
    height: 100%;
}

.owl-project .owl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details_project {
    padding: 3.125rem;
}

@media(max-width: 780px){
    .details_project {
        padding: 1rem;
    }
}

.details_project > p {
    font-size: 1.25rem;
    color: white;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media(max-width: 780px) {
    .details_project > p{
        font-size: 14px;
    }
}

.watch_all {
    display: flex;
    justify-content: center;
    padding-top: 2.5rem;
    padding-bottom: 6rem;
}

.btn_watch {
    padding: 1rem 3.125rem;
    border-radius: 0.5rem;
    border: 1px solid #FFF;
    background: #2D333C;
    align-items: center;
    gap: 0.625rem;
    color: white;
    transition: 0.3s;
}

.btn_watch:hover {
    padding: 1rem 3.125rem !important;;
    border-radius: 0.5rem !important;;
    border: 0.063rem solid #FFF !important;
    background: #212630 !important;
    align-items: center;
    gap: 0.625rem;
    color: white !important;;
}

.news_title {
    padding-top: 6rem;
    display: flex;
    justify-content: center;
}

@media(max-width: 980px){
    .news_title {
        padding-top: 1.5rem;
        display: flex;
        justify-content: center;
    }
}

.news_title > h2 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.bottom-96 {
    padding-bottom: 6rem !important;
}

@media(max-width: 780px){
    .bottom-96 {
        padding-bottom: 3rem !important;
    }
}

.bottom-50 {
    padding-bottom: 3.125rem !important;
}

@media(max-width: 780px){
    .bottom-50 {
        padding-bottom: 1.5rem !important;
    }
}

.tabs {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.tab_select {
    width: 9.938rem;
    height: 2.688rem;
    border-radius: 2.5rem;
    margin-top: 10px;
    background: #DDDDDD;
    border: none;
}

.tab_select:active {
    background: #2D333C;
    color: white;
}

.post {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Tranziție lină */
}

.post.show {
    display: block;
    opacity: 1;
}

.owl-project {
    position: relative;
    padding: 0 6rem;
}

@media(max-width: 600px){
    .owl-project {
        position: relative;
        padding: 0;
    }
}

.custom-prev, .custom-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.50);
    color: #fff;
    border: none;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    z-index: 10;
}

.custom-prev {
    left: 0;
}

.custom-next {
    right: 0;
}

@media (max-width: 700px) {
    .custom-prev, .custom-next {
        display: none;
    }
}

@media (max-width: 930px) {
    .custom-prev {
        left: 0;
    }

    .custom-next {
        right: 0;
    }
}

.image_news {
    position: relative;
}

.data_post {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    align-self: stretch;
    top: 0;
    left: 0;
    background: #c9b777;
    color: white;
    padding: 0 20px;
}

.data_number {
    margin-top: 10px;
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 126%;
}

.month_data {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    color: white;
}

.comment_post {
    /*display: flex;*/
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(74px + 10px);
    left: 0;
    background: #585858;
    width: 5.54rem;
    color: #fff;
    /*padding: 0.625rem;*/
    box-sizing: border-box;
}

.number_comment {
    padding-top: 0.625rem;
}

.number_comment > h4 {
    font-size: 16px;
    font-weight: 600;
    padding-right: 0.5rem;
    line-height: 126%;
}

.view_more {
    display: flex;
    justify-content: center;
    padding-top: 2.5rem;
}

.view_more_news {
    padding: 16px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #d1c598;
    text-transform: uppercase;
}

.view_more_news:hover {
    padding: 16px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #c2b27a !important;
}

.title_question {
    display: flex;
    justify-content: center;
}

.title_question > h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: black;
}

.description_question {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.description_question > p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: rgba(0, 0, 0, 0.53);
    text-align: center;
}

.title_say {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 96px;
}

.title_say > h2 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    text-align: center;
}

@media(max-width: 600px){
    .title_say > h2 {
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 600;
        text-align: center;
    }
}

.description_say {
    display: flex;
    justify-content: center;
}

.description_say > p {
    max-width: 80%;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: rgba(0, 0, 0, 0.53);
}

.comment_people {
    display: flex;
    justify-content: center;
    padding: 1.875rem;
}

.comment_people > p {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem;
}

.rating_say {
    display: flex;
    justify-content: flex-start;
    padding: 1.875rem;
}

.review_star {
    padding-right: 0.938rem;
    color: #d1c598;
}

.review_people {
    border-radius: 5px;
    background: rgba(45, 51, 60, 0.82);
    margin-bottom: 0.625rem;
    transition: all 0.3s linear;
}

@media(max-width: 600px){
    .review_people{
        width: 100%;
    }
}

.review_people:hover {
    border-radius: 5px;
    background: rgb(45, 51, 60);
    margin-bottom: 0.625rem;
    /*transform: scale(1.05);*/
    cursor: pointer;
}

.profile_user {
    display: flex;
    flex-direction: row;
    color: white;
    margin-left: 30px;
}

.profile_image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.details_user {
    display: flex;
    flex-direction: column;
    margin-left: 22px;
}

.name_profile {
    font-size: 16px;
    font-style: italic;
    font-weight: 275;
    line-height: 126%;
}

.street_profile {
    font-size: 16px;
    font-style: italic;
    font-weight: 275;
    line-height: 126%;
    color: white;
}

.image-question {
    max-width: 562px;
    height: auto;
    margin-bottom: 40px;
}

@media (max-width: 762px) {
    .image-question {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}

.image {
    width: 100%;
    border: 5px solid rgba(255, 255, 255, 0);
    outline: 1px solid black;
}

.accordion {
    z-index: 4;
}

.accordion-item {
    border: none;
}

.acordion-body {
    border-top: 1px solid rgba(0, 0, 0, 0.20) !important;
}

.contact {
    background: #2D333C;
    color: white;
}

.contact_form {
    padding-bottom: 50px;
}

.contact_title {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.contact_title > h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

@media(max-width: 600px){
    .contact_title > h3{
        font-size: 30px;
    }
}

.contact_map {
    width: 1535px;
    height: 450px;
    max-width: 100%;
    padding-top: 50px;
}

.contactis {
    background: #20242a;
    padding: 20px;
    border: none;
    color: #fff;
    margin-top: 25px;
}

.contactis::placeholder {
    color: #aaa;
}

.contactis:focus {
    background: #262b32;
    color: #fff;
    border: none;
    outline: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.footer {
    background: #2D333C;
}

.footer_column {
    margin-top: 6rem;
}

@media (max-width: 1200px) {
    .footer_column {
        margin-top: 3rem;
    }
}

@media(max-width: 780px){
    .footer_column {
        margin-top: 1rem;
    }
}

.footer_title {
    color: #d1c598;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.footer_service {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    list-style: none;
}

.footer_service > a {
    font-size: 18px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.50);
}

.list_service {
    padding: 0;
}

.copyright {
    display: flex;
    justify-content: space-between;
    padding: 1.563rem;
    color: rgba(255, 255, 255, 0.50);
    border-top: 1px solid rgba(255, 255, 255, 0.40);
    border-bottom: 1px solid rgba(255, 255, 255, 0.40);
}

@media (max-width: 900px) {
    .copyright {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.all_right {
    display: flex;
    flex-direction: row;
}

@media (max-width: 600px) {
    .all_right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.terms_conditions {
    padding-right: 1.25rem;
}

.terms_conditions > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.50);
}

.privacy_police > a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.50);
}

.footer_icon {
    margin-right: 15px;
}

.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide img::before {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    color: #fff;
}

@media(max-width: 780px){
    .slide-content {
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
    }
}

.slide-content h2 {
    font-size: 2.25rem;
    margin-bottom: 0.625rem;
}

.slide-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.slide-content .btn-send {
    display: flex;
    padding: 1rem 3.125rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 8px;
    background: #d1c598;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s linear;
}

.slide-content .btn-send:hover {
    background: rgba(253, 223, 120, 0);
    border: 1px solid #d1c598;
    color: #d1c598;
}

.slide-content .btn-more {
    display: flex;
    padding: 1rem 3.125rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    color: #d1c598;
    border-radius: 0.5rem;
    border: 1px solid #d1c598;
    transition: all 0.3s linear;
    text-transform: uppercase;
}

.slide-content .btn-more:hover {
    background: rgba(253, 223, 120, 0.61);
}

.slide-content .title_slide {
    font-family: "DM Serif Text", serif;
    color: #FFF;
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 109.191%;
}

@media (max-width: 780px) {
    .slide-content .title_slide {
        font-size: 3rem;
    }
}

@media (max-width: 548px) {
    .slide-content .title_slide {
        font-size: 2rem;
    }
}

.slide-content .description_slide {
    padding-top: 3.125rem;
    font-family: "Montserrat", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    color: white;
    line-height: 207.331%;
}

@media (max-width: 780px) {
    .slide-content .description_slide {
        font-size: 1rem;
    }
}

.slide-content .buttons_slide {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

@media(max-width: 600px){
    .slide-content .buttons_slide {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
}

@media (max-width: 520px) {
    .slide-content .buttons_slide {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.buttons_slide a {
    text-decoration: none;
}

.slide_content a {
    text-decoration: none;
}

.slide_image {
    width: 100%;
    height: 956px;
}

@media (max-width: 768px) {
    .slide_image {
        height: 686px;
    }
}

.slide_image:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: auto;
}

/* Schimbă culoarea punctului activ */
.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #d1c598 !important;
}

.social {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

@media (max-width: 900px) {
    .social {
        padding-bottom: 20px;
    }
}

.accordion-button:not(.collapsed) {
    background: white !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.68);
}

.accordion-header {
    border-top: 1px solid rgba(0, 0, 0, 0.20);
}

.accordion-button:focus {
    box-shadow: none !important;
}

/*.accordion-body:focus{*/
/*    border-top: 1px solid rgba(0, 0, 0, 0.20);*/
/*}*/

.header-image {
    position: relative;
    text-align: center;
}

.bg_header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg_header{
    position: relative;
}

.bg_image {
    position: relative;
    width: 100%;
    height: 392px;
    object-fit: cover;
}

.bg_header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.title_header {
    position: absolute;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1;
}

@media(max-width: 1200px){
    .title_header{
        font-size: 2rem;
    }
}

@media (max-width: 780px) {
    .title_header {
        font-size: 1.50rem;
    }
}

.breadcrumb {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1;
}

.breadcrumb-item {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white !important;
}

.breadcrumb .breadcrumb-item a {
    color: white;
}

@media (max-width: 780px) {
    .breadcrumb-item {
        font-size: 0.875rem;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white !important;
}

.intrebari_frecvente {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 96px;
}

.titlu_intrebari {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

@media(max-width: 780px){
    .titlu_intrebari {
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        text-align: center;
        margin-bottom: 10px;
    }
}

.accordion_ask {
    position: relative;
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 20px 60px 20px 20px;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 780px) {
    .accordion_ask {
        font-size: 16px;
    }
}

/*.accordion_ask:hover,*/
/*.accordion_ask:focus {*/
/*    background-color: #2D333C;*/
/*    color: #fff;*/
/*}*/

.accordion_ask.active {
    background-color: #2D333C;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 8px 8px 0 0;
}

.panel_ask {
    background-color: #2D333C;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0 0 8px 8px;
    line-height: 1.9;
    margin-top: 0;
}

.panel_ask > p {
    margin-top: 10px;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
}

.accordion_ask::after {
    content: "\f061";/* fa-angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* pentru solid */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #000; /* sau ce culoare vrei */
}

.accordion_ask.active::after {
    transform: translateY(-50%) rotate(45deg); /* rotește la 90° la click */
    color: white;
}

.btn-contact {
    width: 100%;
    padding: 40px 20px;
    border-radius: 40px 0 40px;
    background: rgb(45, 51, 60);
    font-size: 24px;
    font-style: normal;
    color: rgb(255, 255, 255);
    font-weight: 400;
    line-height: normal;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-contact:hover {
    background: rgb(45, 51, 60);
    color: rgb(255, 255, 255);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.info_page {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 321px;
    background: #2D333C;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.25);
    color: #d1c598;
    margin-top: 24px;
    margin-bottom: 40px;
}

.info_page .card_text_info{
    font-size: 20px;
    color: #e9e9e9;
}

.accordion_question{
    margin: 50px 0;
}

.card_phone_number{
    color: #e9e9e9;
}

@media (max-width: 768px) {
    .info_page {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 321px;
        text-align: center;
        background: #2D333C;
        box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.25);
        color: #d1c598;
        margin-top: 15px;
        margin-bottom: 20px;
    }
}

.card_phone_number {
    font-size: 20px;
}

.card_text_info {
    font-size: 24px;
    color: #d1c598;
}

@media(max-width: 780px){
    .card_text_info {
        font-size: 24px;
        color: #d1c598;
    }
}

.info_padding {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact_icon {
    padding-bottom: 20px;
}

/* test */

.statistic_info_page {
    padding-top: 96px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.statistic__image{
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.title_info_page {
    font-size: 4rem;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .title_info_page {
        font-size: 2rem;
        font-weight: 600;
    }
}

.description_info_page {
    font-size: 1.25rem;
    font-weight: normal;
}

@media (max-width: 1200px) {
    .description_info_page {
        font-size: 1rem;
        font-weight: normal;
    }
}

.about_me {
    margin-top: 96px;
}

.btn_contact_me {
    display: flex;
    height: 56px;
    padding: 16px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #2D333C;
    color: #d1c598;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .btn_contact_me {
        width: 100%;
    }
}

.btn_contact_me:hover {
    display: flex;
    height: 56px;
    padding: 16px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #2D333C;
    color: #d1c598;
    font-size: 1rem;
}

.gallery {
    display: flex;
}

@media (max-width: 980px) {
    .gallery {
        display: flex;
        margin-top: 20px;
    }
}

.main-content {
    display: flex;
}

.main-slider {
    width: 100%;
    /*height: 633px;*/
    flex-grow: 1;
}

@media(max-width: 1200px){
    .main-slider{
        height: 100%;
    }
}

.main-slider img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-carousel {
    display: flex;
    flex-direction: column;
}

.thumbnail {
    margin-bottom: 10px;
    margin-right: 10px;
}

.thumbnail:last-child{
    margin-bottom: 0;
}

.thumbnail img {
    width: 188px;
    height: 125px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

@media (max-width: 600px) {
    .thumbnail img {
        width: 100px;
        height: 60px;
        object-fit: cover;
        cursor: pointer;
        border: 2px solid transparent;
    }
}

.sidebar {
    padding-left: 40px;
}

@media (max-width: 986px) {
    .sidebar {
        margin-top: 40px;
        padding-left: 0;
    }
}

.sidebar_title {
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
}

.sidebar_text {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #2D333C;
    text-transform: uppercase;
}

.sidebar_details {
    display: flex;
    flex-direction: column;
    padding: 20px 0 20px 0;
    gap: 20px;
}

.text_details {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
    padding-bottom: 20px;
}

.slim__icon{
    width: 40px;
    height: 40px;
    margin-top: -5px;
}

/*.link__service{*/
/*    margin-bottom: 20px;*/
/*}*/

.text_details a span {
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    color: #26292E;
}

.text_details > p {
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    color: #26292E !important;
    margin-bottom: 0;
}

@media(max-width: 1200px){
    .text_details > p {
        font-size: 16px;
    }
}

@media(max-width: 600px){
    .text_details > p {
        font-size: 14px;
    }
}

.projects_read{
    color: white;
    transition: 0.3s;
}

.projects_read:hover{
    color: #ececec !important;
}

.work_hours {
    margin-top: 40px;
}

.service_post {
    width: 100%;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.20);
    margin-top: 2.563rem;
    transition: all 0.3s linear;
}

/*.service_post:hover {*/
/*    box-shadow: 0.625rem 0.625rem 1.25rem 0 rgba(0, 0, 0, 0.25);*/
/*}*/

.recent_posts_sidebar {
    padding: 40px 20px 20px 20px;
}

.recent_post {
    display: flex;
    flex-direction: row;
    padding-bottom: 20px;
}

.image_post {
    width: 113px;
    height: 77px;
    object-fit: cover;
    margin-right: 20px;
    cursor: pointer;
}

.post_title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.post_title > a {
    text-decoration: none;
    color: black;
}

.description_post {
    color: rgba(45, 51, 60, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.card_pro {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 2.563rem;
    transition: all 0.3s linear;
    margin-bottom: 40px;
}

.image_pro {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    color: white;
    cursor: pointer;
}

.card_pro:hover .post-overlay {
    opacity: 1;
}

.post-overlay .category_service {
    color: rgba(255, 255, 255, 0.5);
}

.btn_pro {
    position: relative;
    display: inline-block;
    padding-right: 1.875rem;
    border: none;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
}

.btn_pro:hover {
    border: none;
    color: #d1c598;
}

.btn_pro::after {
    content: "";
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("./assets/img/pro-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.625rem;
    height: 0.625rem;
}

.btn_pro:hover::after {
    content: "";
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("/assets/img/hover.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.625rem;
    height: 0.625rem;
}

.bottom-29 {
    margin-bottom: 29px;
}

.review_container{
    max-width: 1834px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-carousel {
    margin: 0 auto;
    padding: 0;
}

.review-carousel .slick-slide {
    padding: 0 10px;
}

.recent_gamma {
    margin: 0 auto;
    padding: 0;
}

.recent_gamma .slick-slide {
    padding: 0 10px;
}

/* test */


.single_title {
    margin-top: 40px;
}

.single_description {
    margin-top: 20px;
}

.single_description > p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.container_projects{
    max-width: 87%;
    margin: 0 auto;
    padding: 0 20px;
}

@media(max-width: 780px){
    .container_projects{
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
}

.projects_realized_single {
    position: relative;
    background: rgba(45, 51, 60, 0.90);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-bottom: 30px;
}

.tab button {
    border-radius: 40px;
    background: #DDD;
    color: black;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 40px;
    transition: 0.3s;
    font-size: 16px;
}

.tab button:hover {
    background: #2D333C;
    color: white;
}

.tab button.active {
    background: #2D333C;
    color: white;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}

.tabcontent.active {
    display: block;
}

.blog_image {
    width: 100%;
    height: auto;
}

.blog_image img {
    width: 100%;
    height: 100%;
}

.blog_details {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .blog_details {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
}

.blog_details h6 {
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
}

@media (max-width: 789px) {
    .blog_details h6 {
        font-size: 14px;
    }
}

.data_blog {
    display: flex;
    flex-direction: row;
    margin-right: 40px;
}

.comments_blog {
    display: flex;
    flex-direction: row;
}

.icon_blog {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

@media (max-width: 789px) {
    .icon_blog {
        width: 20px;
        height: 20px;
    }
}

.single_blog_title h2{
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    color: black;
}

.image__gallery{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.gallery__item{
    flex: 1 1 15%;
    margin: 10px;
}

.gallery__item img{
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery__item img:hover{
    transform: scale(1.05);
    opacity: 0.8;
}

.page-item {
    margin: 0;
}

.page-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    font-size: 20px;
    background-color: white;
}

.page-link:hover {
    background: #2D333C;
    color: white;
}

.page-item.active .page-link {
    background: #2D333C;
    color: white;
}

.page-link:focus{
    box-shadow: none;
}

.page-item:first-child .page-link{
    border-radius: 0;
}

.page-item:last-child .page-link{
    border-radius: 0;
}

.page-item:first-child {
    margin-right: 10px;
}

.page-item:last-child {
    margin-left: 10px;
}

.prev, .next {
    background: #DDD;
}

.prev:hover, .next:hover {
    background: #2D333C;
}

.active>.page-link, .page-link.active{
    border-color: #2D333C !important;
}

.arrow-left img, .arrow-right img {
    width: 20px;
    height: 20px;
}

.blog_card{
    width: 100%;
    height: 547px;
    position: relative;
    margin-top: 20px;
    transition: all 0.3s linear;
    margin-bottom: 40px;
}

@media(max-width: 780px){
    .blog_card{
        width: 100%;
        height: 350px;
        position: relative;
        margin-top: 2.563rem;
        margin-bottom: 0;
        transition: all 0.3s linear;
    }
}

@media(max-width: 600px){
    .blog_card{
        width: 100%;
        height: 264px;
        position: relative;
        margin-top: 2.563rem;
        margin-bottom: 0;
        transition: all 0.3s linear;
    }
}

.blog_two_card{
    width: 100%;
    height: 264px;
    position: relative;
    margin-top: 20px;
    transition: all 0.3s linear;
    /*margin-bottom: 40px;*/
}

.image__blog {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_card:hover .post-overlay {
    opacity: 1;
}

@media(max-width: 780px){
    .blog_card .post-overlay {
        opacity: 1;
    }
}

.blog_two_card:hover .post-overlay{
    opacity: 1;
}

@media(max-width: 780px){
    .blog_two_card .post-overlay {
        opacity: 1;
    }
}

.post-overlay .category_service {
    color: rgba(255, 255, 255, 0.5);
}

.post_overlay a{
    color: white;
}

.category a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
}

.special_details a{
    text-decoration: none;
    color: white;
}

.slide_projects {
    padding: 0;
}

.swiper-container {
    width: 100%;
    height: auto;
}

.main-slider .swiper-slide img {
    width: 100%;
    height: 643px;
    object-fit: cover;
}

@media(max-width: 780px){
    .main-slider .swiper-slide img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

.thumb-slider {
    position: relative;
    width: 100%;
    margin: 15px auto;
    overflow: hidden;
}

/*.thumb-slider .swiper-wrapper {*/
/*    margin: 0 5rem;*/
/*}*/

@media(max-width: 600px){
    .thumb-slider .swiper-wrapper {
        margin: 0;
    }
}

.thumb-slider .swiper-slide {
    width: auto; /* Allow slides to adjust based on available space */
    height: auto;
    cursor: pointer;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    --swiper-navigation-color: black; /* Existing color setting */
    --swiper-navigation-size: 40px;   /* Set the arrow size */
}

.thumb-prev,
.thumb-next {
    position: absolute;
    top: 66%;
    transform: translateY(-50%);
    width: 5rem;
    height: 5rem;
    z-index: 1000;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width: 780px){
    .thumb-prev,
    .thumb-next {
        position: absolute;
        top: 70%;
        transform: translateY(-50%);
        width: 5rem;
        height: 5rem;
        z-index: 1000;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.55);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width: 600px){
    .thumb-prev,
    .thumb-next {
     display: none;
    }
}

.thumb-prev {
    left: 0; /* Position at the left corner */
}

.thumb-next {
    right: 0; /* Position at the right corner */
}

.contact__button{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.contact__us{
    background: #d1c598;
    padding: 16px 50px;
    transition: all 0.3s linear;
    /*border-radius: 20px;*/
}

.contact__us:hover{
    background: #938754 !important;
    color: white;
}

.wpcf7 form.sent .wpcf7-response-output{
    border-color: #959595;
    padding: 15px;
    border-radius: 15px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border-color: #d1c598;
    padding: 20px;
    border-radius: 15px;
}

/* Slider Discover */
.discover_sec{
    margin-top: 96px;
    margin-bottom: 96px;
}
.discover_sec .block_title {
    margin-bottom: 50px;
}

.discover_slider .swiper {
    width: 100%;
}

.discover_slider .swiper-wrapper {
    width: 100%;
    height: auto;
}

.discover_slider .swiper-slide {
    width: 100%;
    height: auto;
}

.discover_slider .swiper-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.discover_slider .custom-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    gap: 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.discover_slider .swiper-button-prev,
.discover_slider .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 44px;
    height: 50px;
    border-radius: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
}

.discover_slider .swiper-button-prev::after,
.discover_slider .swiper-button-next::after {
    content: none;
}

.discover_slider .swiper-button-prev {
    left: 20px;
    background-image: url('./assets/images/icons/arrow-slide.svg');
    transform: rotate(180deg);
}

.discover_slider .swiper-button-next {
    right: 20px;
    background-image: url('./assets/images/icons/arrow-slide.svg');
}

/* Marquee */

.marquee-bar {
    margin: 100px 0;
    overflow: hidden;
    white-space: nowrap;
    background: #d1c598;
    position: relative;
    padding: 30px 0;
    z-index: 100;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    will-change: transform;
    z-index: 100;
}

.marquee_item {
    display: flex !important;
    align-items: center;
    color: black;
    gap: 50px;
}

.marquee-bar__title {
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 1000;
    padding-right: 50px;
}

.marquee-content.clone {
    left: 100%;
}

.resolution__true {
    height: 300px;
}

/* Footer */

/* End Discover */

.services_sec{
    margin-top: 96px;
}

.services_content{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.services_content1{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.services_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: auto;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.services_item img{
    width: 100%;
    height: 263px;
    object-fit: cover;
}

.services_item h3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-weight: 700;
    margin:0;
}

.services_item .content{
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: auto;
    padding: 30px;
}

.services_item .description_post{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.services_item .description_post p{
    font-size: 14px;
    line-height: 190%;
    margin-bottom: 0;
}

.services_item .description_post{
    margin-top: 20px;
    margin-bottom: 30px;
}

.services_read{
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    transition: 0.3s;
}

.services_read:hover{
    color: #a89b6b;
}

.my-arrow {
    margin-left: 5px;
    transform: rotate(-45deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

.services_read:hover .my-arrow {
    transform: rotate(0deg);
}

.news_content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: auto;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.news_item .content_news{
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
}

.news_item img{
    width: 100%;
    height: 293px;
    object-fit: cover;
}

.news_item .description_news{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.news_item h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news_item .description_news p{
    font-size: 14px;
    line-height: 190%;
}

.description_news{
    margin-bottom: 10px;
}

.show_me_comments{
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 640px) {
    .services_content1{
        grid-template-columns: repeat(1, 1fr);
    }

    .services_content{
        grid-template-columns: repeat(1, 1fr);
    }

    .news_content{
        grid-template-columns: repeat(1, 1fr);
    }

    .tabcontent{
        padding: 0;
    }

    .discover_slider .swiper-slide img{
        height: 450px;
    }

    .services_item .content{
        padding: 20px;
    }

    .view_more{
        padding-top: 1.5rem;
    }

    .slide-content .description_slide{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
        overflow: hidden;
    }

    .description_about{
        font-size: 1rem;
    }

    .cariera_left{
        padding-right: 0 !important;
    }
    .cariera h2{
        font-size: 26px;
    }
    .contact__form .wpcf7-form {
        margin-top: 30px;
    }
}

.contact .container{
    max-width: 1200px;
}

.mg-100{
    margin-top: 100px;
    margin-bottom: 100px;
}

.contact__form .wpcf7-form {
    background: rgb(209 197 152 / 20%);
    padding: 30px;
    border-radius: 8px;
}

.contact__form .form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact__form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact__form .form-row .form-control.half {
    width: 100%;
}

.contact__form .form-control-file {
    display: block;
    margin-bottom: 15px;
}

.contact__form .wpcf7-acceptance {
    font-size: 14px;
    margin-bottom: 15px;
}

.contact__form .btn.btn-primary {
    background-color: #d1c598;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.contact__form .form-row p{
    display: flex;
    gap: 10px;
}

.cariera_left img{
    width: 100%;
    height: 443px;
    object-fit: cover;
    border-radius: 10px;
}

.cariera_left{
    padding-right: 30px;
}

.confirmare_flex .wpcf7-list-item{
    margin: 0;
}

.cariera ul li{
    position: relative;
    list-style: none;
}

.cariera h2{
    margin-bottom: 20px;
}

.cariera ul li::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a89b6b;
    font-size: 14px;
}

/* Responsive */

@media (max-width: 640px){
    .cariera_left img{
        height: 250px;
    }
    .contact__form textarea{
        height: 100px;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .services_content{
        grid-template-columns: repeat(2, 1fr);
    }

    .news_content{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) and (max-width: 1365px) {
    .services_content{
        grid-template-columns: repeat(2, 1fr);
    }

    .news_content{
        grid-template-columns: repeat(2, 1fr);
    }

    .services_content1{
        grid-template-columns: repeat(1, 1fr);
    }
}

