@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900");

/* loading ... */
#pluswrap {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.91);
    top: 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    transition: visibility 0.5s, opacity 0.25s ease-in;
}

.plus {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    color: #d38211;
    align-items: center;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;

}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d38211;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* main */
body,
html {
    height: 100%;
    margin: 0;
    background-color: #ecf0f1;
    font-family: "Source Sans Pro", sans-serif;
    scroll-behavior: smooth;
}

.main {
    height: 100%;
}

.bg {
    /* The image used */
    background-image: url("../asset/bg.jpg"), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-blend-mode: overlay;

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.avatar {
    width: 500px;
    text-align: center;
}

/* NAVBAR */
.topnav {
    overflow: hidden;
    background-color: #0000007a;
    font-size: 20px;
    text-decoration: none;
    letter-spacing: 2.5px;
    z-index: 1;
    position: absolute;
    width: 100%;
    text-align: right;
}

.topnav a {
    display: inline-block;
    color: #f2f2f2;
    padding: 20px;
}

.topnav a:hover:not(:first-child) {
    background-color: #0000007a;
    color: #d38211;
}

/* NAME */
.topnav .navlogo {
    color: #d38211;
    font-size: 25px;
    font-family: 'Cinzel Decorative', cursive;
    float: left;
    display: block;
    letter-spacing: 5px;
    padding: 15px;
    font-weight: 600;
    text-align: left;
}

.navlogo {
    color: #d38211;
    font-size: 25px;
    font-family: 'Times New Roman', serif;
    float: left;
    display: block;
    letter-spacing: 5px;
    padding: 15px;
    font-weight: 600;
    text-align: left;
}

.topnav .icon {
    display: none;
}


@media screen and (max-width: 900px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        display: block;
        font-size: 25px;
    }

    .avatar {
        width: 80%;
    }
}

@media screen and (max-width: 900px) {
    .topnav.responsive {
        /* position: relative; */
        background-color: #000000d6;
        text-align: center;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
    }
}

@media screen and (max-width: 380px) {
    .topnav .navlogo {
        /* background-color: #04AA6D; */
        font-size: 20px;
    }

    .navlogo {
        font-size: 20px;
    }
}

/* navbar sticky */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000d6;
}


/* SECTIONS */
section {
    padding: 20px;
    font-size: 18px;
    position: relative;
    color: #484d55;
}

section h1 {
    text-align: center;
    letter-spacing: 2px;
}

#despre {
    /* background-color: white; */
}

.despre {
    margin-top: 60px;
}

#servicii {
    background-color: white;
}

.servicii {
    margin-top: 60px;
}

.portofoliu {
    margin-top: 60px;
    margin-bottom: 60px;
}

#contact {
    background: #282b34;
    color: white
}

.contact {
    /* block-size: 500px; */
}

/* shape contact */
.parteneri .custom-shape-divider-bottom-1678543472 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.parteneri .custom-shape-divider-bottom-1678543472 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 65px;
}

.parteneri .custom-shape-divider-bottom-1678543472 .shape-fill {
    fill: #282b34;
}

#parteneri {
    background-color: white;
}

.parteneri .list{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 100px;
}

.parteneri .list img {
    max-height: 100px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.parteneri .list a {
    max-height: 100px;
}

@media screen and (max-width: 900px) {
    #parteneri .list{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        margin-bottom: 100px;
    }
    
    #parteneri .list img {
        max-height: 100px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        overflow: hidden;
    }

    #parteneri .list a {
        max-height: 100px;
        margin-bottom: 50px;
    }
}

.footer {
    padding: 50px;
    display: flex;
    background: #282b34;
    color: white;
    flex-direction: column;
    align-items: center;
}

hr {
    border: 1px solid #7e5315;
    width: 100%;
    border-radius: 10px;
    margin: 30px
}




/* BUTTON */
.actionbutton {
    background: linear-gradient(to bottom right, #d38211, #f59e67);
    border: 0;
    border-radius: 12px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.5;
    outline: transparent;
    padding: 0 1rem;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    margin-top: 20px;
}

.actionbutton:not([disabled]):focus {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(239, 71, 101, 0.5), .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}

.actionbutton:not([disabled]):hover {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(239, 71, 101, 0.5), .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
}




/* OTHER */
a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}


/* font-family: 'Cinzel Decorative', cursive;
font-family: 'Cormorant', serif; */

/* shape servicii */
.custom-shape-divider-top-1678539420 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1678539420 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 65px;
}

.custom-shape-divider-top-1678539420 .shape-fill {
    fill: #ecf0f1;
}

/* shape portofoliu */
.custom-shape-divider-top-1678541806 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1678541806 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 65px;
}

.custom-shape-divider-top-1678541806 .shape-fill {
    fill: #FFFFFF;
}


/* Design */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.mainportofoliu {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.mainportofoliu h1 {
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    text-decoration-line: overline;
}

.mainportofoliu img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.mainportofoliu .btn {
    color: #ffffff;
    padding: 0.8rem;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 400;
    display: block;
    width: 100%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.mainportofoliu .btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.mainportofoliu .cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainportofoliu .cards_item {
    display: flex;
    padding: 1rem;
}

@media (min-width: 40rem) {
    .mainportofoliu .cards_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .mainportofoliu .cards_item {
        width: 33.3333%;
    }
}

.mainportofoliu .card {
    background-color: #f3f3f3;
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mainportofoliu .card_content {
    padding: 1rem;
    background-color: #f3f3f3;
}

.mainportofoliu .card_location {
    /* font-size: 0.875rem; */
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: center;
}

.mainportofoliu .card_text {
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-weight: 400;
    text-align: center;
}

/* contact form */
input[type=text],
input[type=email],
input[type=number],
input[type=checkbox],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    display: block;
    border-radius: 5px;
}

input[type=submit] {
    background-color: #d38211;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
}

input[type=submit]:hover {
    background-color: #ac6503;
}

.container-contact {
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.column-contact {
    flex: 1;
    margin-top: 6px;
    padding: 20px;
    max-width: 600px;
}

.column-contact .link {
    margin-top: 20px;
}

@media screen and (max-width: 800px) {
    .container-contact {
        border-radius: 5px;
        padding: 10px;
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .column-contact {
        width: 100%;
    }

}

.social {
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.email {
    color: white;
    letter-spacing: 2px;
    font-size: 20px;
}

.links .fa-social {
    margin: 30px;
}

.links .fa-youtube {
    color: #FF0000;
}

.links .fa-linkedin-square {
    color: #0072b1;
}

.links .fa-instagram {
    color: #F77737;
}

.links .fa-facebook-square {
    color: #0165E1
}

.links .fa-twitter {
    color: #1DA1F2
}

.shiny {
    background-image: -webkit-linear-gradient(left, white 25%, #fde071 37.5%, #ef9671, #996a6e 62.5%, white 75%);
    background-image: linear-gradient(90deg, white 25%, #fde071 37.5%, #ef9671, #996a6e 62.5%, white 75%);
    background-position: right center;
    background-size: 400% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    transition: color 200ms linear;
}

.shiny:hover {
    background-position: left center;
    color: #ef9671;
    transition: background-position 2000ms ease-out;
}

.servicii-title {
    letter-spacing: 3px;
    text-align: center;
    font-size: 1em;
}

.servicii-expanded {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 20px;
}

.servicii-expanded .list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
}

.servicii-expanded .list-item {
    display: flex;
    margin: 10px;
    text-align: justify;
    flex-wrap: wrap;
}

/* */

.servicii-expanded-extra {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 25px;
    font-size: 20px;

}

.servicii-expanded-extra .list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
    justify-content: space-evenly
}

.servicii-expanded-extra .fa {
    font-size: 30px;
}

.servicii-expanded-extra .list-item {
    display: flex;
    margin: 25px;
    text-align: justify;
    align-items: center;
    flex-direction: column;
    width: 400px;
}

.servicii-expanded-extra .text {
    display: flex;
    margin: 50px;
    text-align: justify;
}

#cookie-notice {
    font-size: larger;
    padding: 0.5rem 1rem;
    display: none;
    text-align: center;
    position: fixed;
    bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    background: rgb(70, 70, 70);
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    #cookie-notice span {
        display: block;
        padding-top: 3px;
        margin-bottom: 1rem;
    }

    #cookie-notice {
        left: 0px;
    }
}

#cookie-notice .privacy-btn {
    color: #ffba5a;
}

.cookie-notice-ok {
    cursor: pointer;
    outline: 0;
    color: #fff;
    background-color: #2ea44f;
    border-color: #1b1f2326;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.cookie-notice-ok:hover {
    color: #fff;
    background-color: #2c974b;
    border-color: #1b1f2326;
}

.cookie-notice-deny {
    cursor: pointer;
    outline: 0;
    color: #fff;
    background-color: #cc4d29;
    border-color: #cc4d29;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.cookie-notice-deny:hover {
    color: #fff;
    background-color: #e4461b;
    border-color: #e4461b;
}

.privacy-policy {
    padding: 50px;
    position: relative;
    background-color: #000000d6;
}

.privacy-policy .content {
    background-color: white;
    border-radius: 5px;
    max-width: 1100px;
    margin: auto;
}

.privacy-policy .content h1 {
    padding-top: 50px;
    position: relative;
    text-align: center;
}

.privacy-policy .content .post-content {
    border-radius: 5px;
    text-align: justify;
    padding: 15px;
}

.notfound {
    padding: 50px;
    position: relative;
    background-color: #000000d6;
    height: 80.8%;
}

.notfound .content {
    background-color: white;
    border-radius: 5px;
    max-width: 1100px;
    margin: auto;
    margin-top: 100px;
    padding-top: 15px;

    padding-bottom: 15px;
    position: relative;
    text-align: center;
}


.collapsible {
    cursor: pointer;
}

.content-collapsible {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.mainportofoliu .collapsible {
    color: black;
    display: flex;
    justify-content: center;
    flex-direction: row;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 600;
}

.accordion {
    background-color: #ffffff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
.active, .accordion:hover {
background-color: #b6babb;
}

.accordion:after {
content: '\002B';
color: #777;
font-weight: bold;
float: right;
margin-left: 5px;
}

.active:after {
content: "\2212";
}

.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}