#dashboard {
    padding-top: 25px;
}

.dashboardContainer {
    display: flex;
    gap: 60px;
}

.dashboardText {
    width: 50%;
}

.dashboardImage {
    height: 350px;
    width: 50%;
    border-radius: var(--radius);
    background-color: rgb(191, 191, 191);
}

.blocImage {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    box-shadow: var(--image-shadow);
}

.dashboardTitle {
    font-size: var(--bigTitle);
    font-family: "Montserrat", serif;
font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

@media screen and (max-width:999px) {
    .dashboardContainer {
        flex-direction: column;
    }

    .dashboardText, .dashboardImage {
        width: 100%;
        text-align: justify;
    }

    .dashboardTitle {
        text-align: left;
    }

    .inverted_column {
        flex-direction: column-reverse;
    }
}#editoContainer {
    background: var(--backgroundBlue);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 30px;
}

#editoTitle {
    font-size: var(--bigTitle);
    font-family: "Montserrat", serif;
font-weight: 800;
    margin-bottom: 35px;
}

#editoTxt {
    font-size: var(--smallTxt);
    text-align: justify;
}

#editoPhotos {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.photoContainer {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    font-size: var(--smallTxt);
    color: var(--tertiary);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.photoContainer > img {
    width: 40%;
}

.photoTitle {
    font-family: "Montserrat", serif;
font-weight: 800;
}

@media screen and (max-width:999px) {
    #editoPhotos {
        flex-direction: column;
        gap: 15px;
    }
}#faqContent {

}

#faqContent > .container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faqItem {
    padding: 25px 30px;
    background-color: rgb(243, 243, 243);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    cursor: pointer;
}

.itemTitle {
    font-family: "Montserrat", serif;
font-weight: 800;
    width: 75%;
    display: flex;
    align-items: center;
}

.itemDescription {
    font-size: var(--smallTxt);
    max-width: 75%;
    margin-top: 15px;
}

.plusCircle {
    width: 30px;
    height: 30px;
    background: url("../assets/icons/plus-circle.png?1738319283") no-repeat; 
    background-size: cover;
    background-position: center;
}

.faqTriggerContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}#footer {
    background: url('../assets/pics/footer_background.png?1738319283') no-repeat;
    background-size: cover;
    background-position: top;
}

#footerRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 150px;
}

#footerLogo {
    width: 350px;
}

#footerLinks {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;
    gap: 20px;
}

.linkSection {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    font-size: var(--smallTxt);
}

.linkSection > a {
    color: white;
    white-space: nowrap;
}

#socials {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.linkSection > a {
    height: 30px;
}

#socials img {
    width: 30px;
}

@media screen and (max-width:999px) {
    #footerRow {
        flex-direction: column;
    }

    #footerLogo {
        width: 100%;
        text-align: center;
    }

    #footerLinks {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .linkSection > a {
        text-align: center;
    }

    #socials {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}#header {
    width: 100%;
    background: url("../assets/pics/background_header.jpg?1738319283") no-repeat; 
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

#header > img {
    position: absolute;
    min-height: 650px;
}

#headerLogo {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%) translateY(15px);
}

#headerMenu {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 70px;
    font-family: "Montserrat", serif;
font-weight: 800;
    color: var(--primary);
    gap: 20px;
}

#menu > ul {
    display: flex;
    gap: 20px;
}

#menu > ul > li {
    transition: 200ms;
}

#menu > ul > li:hover {
    cursor: pointer;
    color: var(--primaryHover);
}

#headerText {
    width: 60%;
    float: left;
    color: var(--primary);
    margin-top: 50px;
}

#headerTitle {
    margin-bottom: 20px;
    font-size: var(--bigTitle);
    font-family: "Montserrat", serif;
font-weight: 800;
}

#headerSubText {
    margin-bottom: 20px;
    
}

#headerBtn {
    display: inline;
    font-size: var(--regular);
    font-family: "Montserrat", serif;
font-weight: 800;    
    color: white;
    background-color: var(--secondary);
    padding: 10px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    transition: 200ms;
}

#headerBtn:hover {
    background-color: var(--secondaryHover);
}

#headerBtns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pwaButton {
    display: inline;
    font-size: var(--smallTxt);
    font-family: "Montserrat", serif;
font-weight: 800;    
    color: white;
    background-color: black;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    transition: 200ms;
}

.pwaButton:hover {
    text-decoration: underline;
    color: white;
}

.pwaButton {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

@media screen and (max-width:999px) {
    #headerLogo {
        display: none;
    }

    #menu > ul > li {
        font-size: var(--smallTxt);
    }

    #menu {
        display: flex;
        align-items: center;
    }
 
    #header {
        background: url("../assets/pics/background_header_mobile.jpg?1738319283") no-repeat; 
        background-size: cover;
        background-position: center;
    }

    #headerTitle {
        font-size: var(--bigTxt);
    }

    #headerMenu {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #headerText {
        flex-direction: column;
        display: flex;
        width: 100%;
        text-align: center;
    }

    #headerBtn {
        text-align: center;
    }
}#headerFAQ {
    width: 100%;
    background: url("../assets/pics/background_header.jpg?1738319283") no-repeat; 
    background-size: cover;
    background-position: center;
    min-height: 550px;
}


#headerTitleFAQ {
    margin-bottom: 20px;
    margin-top: 100px;
    font-size: var(--bigTitle);
    font-family: "Montserrat", serif;
font-weight: 800;
    color: var(--primary);
}


@media screen and (max-width:999px) {

}#onboardContainer {
    height: 250px;
    width: 100%;
    background: url('../assets/pics/onboard_background.png?1738319283') no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 25px;
    margin-bottom: 30px;
}

#onboardTitle {
    font-family: "Montserrat", serif;
font-weight: 800;
    color: white;
    font-size: var(--bigTitle);
}

#onboardSubText {
    font-family: "Montserrat", serif;
font-weight: 800;
    color: white;
    max-width: 50%;
    margin-bottom: 30px;
}

#onboardBtn {
    color: var(--primary);
    font-family: "Montserrat", serif;
font-weight: 800;
    border: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 7px 10px;
}

#onboardBtn:hover {
    cursor: pointer;
}

@media screen and (max-width:999px) {
    #onboardContainer {
        align-items: center;
    }

    #onboardTitle {
        font-size: var(--title);
        text-align: center;
    }

    #onboardSubText {
        text-align: center;
        max-width: 100%;
    }
}#pricing {
    padding-top: 60px;
}

#pricingTitle {
    font-size: var(--bigTitle);
    font-family: "Montserrat", serif;
font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    margin-top: 20px;
}

#pricingList {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.pricingItem {
    width: 100%;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--backgroundBlue);
    padding: 20px;
}

.pricingPrice {
    font-family: "Montserrat", serif;
font-weight: 800;
}

#tooltipPricing {
    padding: 5px 10px;
    background-color: var(--secondary);
    color: white;
    font-family: "Montserrat", serif;
font-weight: 800;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-15%, -50%);
    border-radius: var(--radius);
}

#featuresList {
    width: 100%;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--backgroundBlue);
    padding: 20px;
    gap: 20px;
    margin-top: 30px;
}

.featureRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.featureRow > span {
    width: 90%;
    text-align: center;
}

@media screen and (max-width:999px) {
    #pricingList {
        flex-direction: column;
    }
}#steps {
    background: var(--backgroundBlueGradient);
    padding-bottom: 30px;
}

#stepsTitle {
    font-size: var(--bigTitle);
    font-family: "Montserrat", serif;
font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    margin-top: 20px;
}

#stepsSubTitle {
    margin-bottom: 50px;
}

#labels {
    font-family: "Montserrat", serif;
font-weight: 800;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

#labels > span:first-child {
    padding-left: 45px;
}

#labels > span:last-child{
    padding-right: 30px;
}

#descriptions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

#descriptions > span {
    max-width: 200px;
    font-size: var(--smallTxt);
}

#imageContainer {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

#imageContainer > img {
    width: 79%;
}

@media screen and (max-width:999px) {
    #imageContainer {
        display: none;
    }

    .stepperSection {
        width: 100%;
        padding: 10px;
        border-radius: var(--radius);
    }

    .stepperTitle {
        font-family: "Montserrat", serif;
font-weight: 800;
        text-align: center;
        margin-bottom: 15px;
    }

    .stepperDescr {
        text-align: center;
    }
}#stores {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

#storesFooter {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}