* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #353030;
    font-family: "Montserrat", sans-serif;
}

.shadowContainer {
    margin: 50px;
    color: #f6f6f6;
    box-shadow: 2px 0px 30px 0.5px rgba(255, 255, 255, 0.501), -2px -2px 30px 0.5px rgba(255, 255, 255, 0.5), -2px 2px 30px 0.5px rgba(255, 255, 255, 0.499), 2px -2px 30px 0.5px rgba(255, 255, 255, 0.503);
    border: 1px solid #353030;
    background-color: #f6f6f6;
}

header {
    background-image: url(../img/fatane-rahimi-c5Be1bq_usw-unsplash.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 650px;
}

.burger {
    display: none;
    position: absolute;
    right: 35px;
    top: 95px;
    z-index: 50;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    width: 50px;
    height: 28px;
}

.burger span {
    height: 2px;
    width: 80%;
    background-color: white;
    transform: scale(1);
}

.burger::before,
.burger::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;

}

.burger::before {
    top: 0;
}

.burger::after {
    bottom: 0;
}

.burger.active span {
    transform: scale(0);
}

.burger.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}

.navBar.open {
    display: flex;
}

.headerContainer {
    height: 100%;
    background-color: #353030bb;
}

.logoContainer {
    position: absolute;
    left: 100px;
    top: 100px;
}

.logoContainer img {
    width: 90px;
}

.navBar {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 115px;
    position: relative;
}

.menuLink {
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    font-size: 17px;
    margin: 20px;
    margin-bottom: 0;
    filter: drop-shadow(5px 5px 5px black);
}

.headerContainerDescr {
    text-align: center;
    margin: auto 0;
}

h1 {
    color: #fff;
    margin: 150px 20px 20px 20px;
    font-family: "Comforter", serif;
    font-size: 80px;
    font-weight: normal;
    letter-spacing: 2px;
    filter: drop-shadow(5px 5px 5px black);
}

.headerContainerDescr h3 {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 20px;
    filter: drop-shadow(1px 1px 5px black);
}

/* ABOUT US */

.subHeader {
    display: flex;
    justify-content: center;
    margin: 50px 50px 30px 50px;
}

.subHeader h2 {
    font-size: 20px;
    font-weight: 600;
    color: #353030;
}

.aboutUsDescr {
    display: flex;
    justify-content: space-between;
    color: #353030;
    padding: 0 100px;
}

.aboutUsDescrItem {
    text-align: center;
    padding: 20px;
    margin: 20px;
}

.aboutUsDescrItem img {
    width: 70px;
}

.aboutUsDescrItem h4,
.reviewsItem h4 {
    color: #ca8b90;
    text-shadow: 1px 1px 1px #353030;
}

.aboutUsDescrItem p {
    color: #353030;
    font-size: 17px;
}

/* CATALOG */

#catalog {
    height: fit-content;
    color: #353030;
    margin: auto 100px;
}

.catalogTabs {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.catalogTab {
    width: 300px;
    height: 50px;
    border: 1px solid #ca8b90;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    line-height: 48px;
    margin: 0 10px;
    background-color: #f6f6f6;
    cursor: pointer;
    transition: 0.5s all;
}

.catalogTab:hover {
    box-shadow: 5px 5px 20px #ca8b90, -5px -5px 20px #ca8b90;
}

.catalogTab.active {
    background-color: #ca8b90;
    color: white;
}

.catalogPage {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
}

.catalogPage.active {
    display: flex;
}

.catalogItem {
    background-color: #f1e9e9ac;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    width: 250px;
    height: 500px;
    margin: 20px;
}

.catalogItemImg {
    max-width: 100%;
}

.catalogItemName {
    color: #222222;
    font-size: 17px;
    font-weight: 500;
    padding: 0 20px;
    margin-bottom: 10px;
}

.catalogItemFlowers {
    font-size: 13px;
    font-weight: 400;
    padding-left: 20px;
}

.catalogItemFlowersLong {
    position: absolute;
    top: 320px;
    left: -20px;
    font-size: 13px;
    font-weight: 400;
}

.catalogItemFlowers li,
.catalogItemFlowersLong li {
    list-style-position: inside;
    color: #222222;
}

.catalogItemLink,
.catalogItemLinkBack {
    position: absolute;
    top: 390px;
    left: 20px;
    color: #353030;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    padding: 5px;
    text-decoration: underline;
}

.catalogItemLink:hover {
    text-shadow: 1px 1px 2px #ca8b90;
}

.catalogItemFooter {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 0 20px 20px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.catalogItemPrice {
    color: #353030;
    font-size: 25px;
    font-weight: 500;
}

.catalogItemBtn {
    cursor: pointer;
    background-color: #f6f6f6;
    color: #353030;
    border: 1px solid #ca8b90;
    box-shadow: 2px 2px 5px #353030;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    margin-top: 20px;
    font-family: "Montserrat", sans-serif;
    transition: 0.5s all;
}

.catalogItemBtn:hover {
    background-color: #c97279;
    color: white;
    box-shadow: 2px 2px 5px #353030;
}

.catalogItemBtn:active {
    background-color: #cd505a;
}

/* double sides */
.catalogItemWrapper {
    display: flex;
    width: 200%;
}

.catalogItemFront {
    width: 50%;
    transform: translateX(-100%);
    transition: 0.5s all;
}

.catalogItemFront.active {
    transform: translateX(0%);
}

.catalogItemBack {
    display: flex;
    flex-direction: column;
    width: 50%;
    transform: translateX(0%);
    transition: 0.5s all;
    padding: 30px 30px 0 30px;
}

.catalogItemBack.active {
    transform: translateX(-100%);
}

.catalogItemBack p {
    font-size: 15px;
}

/* DELIVERY AND PAYMENT */

.deliveryDescr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dot {
    font-size: 30px;
    color: #ca8b90;
}

/* REVIEWS  */

.reviewsContainer {
    min-width: 0;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #ece4e4;
    padding: 0 150px;
}

.reviewsItem {
    display: flex;
    align-items: start;
    padding: 30px;
    margin: 30px;
    background-color: #f6f6f6;
    box-shadow: 5px 5px 10px #35303081;
}

.reviewItemInner {
    display: flex;

}

.reviewItemInnerHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviewItemInner div {
    margin: 20px;
}

.reviewItemInner div:first-child {
    flex: 1;
}

.reviewItemInner div:last-child {
    flex: 2;
}

.reviewItemInner img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.stars {
    color: yellow;
    font-size: 25px;
    margin: 0;
    filter: drop-shadow(3px 3px 3px black);
}

.reviewsItemText {
    text-align: left;
    color: #353030;
    font-size: 15px;
    line-height: 23px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 70px;
    border: none;
    background-color: rgba(230, 25, 25, 0);
    cursor: pointer;
}

.slick-next {
    right: 70px;
    left: auto;
}

.slick-prev img,
.slick-next img {
    width: 50px;
}

.slick-dots {
    max-width: fit-content;
    padding: 10px;
    list-style-type: none;
    margin: 10px auto;
}

.slick-dots li {
    margin: 10px;
    display: inline-block;
}

.slick-dots li button {
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 2px solid #353030;
    border-radius: 100%;
    background-color: #fff;
    text-indent: -9999px;
    cursor: pointer;
}

li.slick-active button {
    background-color: #353030;
    border: 2px solid #353030;
    cursor: pointer;
}

/* CONTACTS */

.address {
    color: #353030;
    font-size: 20px;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 7px;
    font-style: italic;
    margin-bottom: 50px;
}

.map {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 600px;
}

.map iframe {
    width: 100%;
    height: 100%;
}

/* FOOTER */

footer {
    background-color: #353030;
    padding: 70px;
}

.footerCol {
    display: flex;
    justify-content: space-evenly;
    align-items: end;
}

.footerCol div {
    display: flex;
    flex-direction: column;
}

.footerCol div a,
.footerCol div p {
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    font-size: 14px;
    margin: 15px;
    margin-bottom: 0;
    filter: drop-shadow(5px 5px 5px black);
}

.logoFooter img {
    height: 90px;
}

.footerSchedule {
    width: 15px;
    margin-right: 10px;
}

.footerSocMedia {
    width: 30px;
}

/* PAGE-UPP AND MODALS */

.pageUp {
    width: 70px;
    display: none;
    position: fixed;
    bottom: 60px;
    right: 20px;
    filter: drop-shadow(0px 0px 7px white);
}

.pageUp img {
    width: 100%;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #353030d1;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: 90%;
    min-height: max-content;
    padding: 30px;
    background-color: #fff;
    box-shadow: 5px 5px 8px #ca8b90;
    text-align: center;
}

.modalClose {
    position: absolute;
    top: 0;
    right: -70px;
    color: white;
    text-shadow: 3px 3px 3px #ca8b90;
    font-size: 60px;
    font-weight: 900;
    line-height: 30px;
    cursor: pointer;
}

.modalSubtitle {
    margin: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #353030;
    text-shadow: 2px 2px 5px #ca8b90;
    line-height: 30px;
}

.modalSubtitle span {
    margin: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #353030;
    text-shadow: none;
}

.itemInformation {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px;
}

.itemName {
    font-size: 17px;
    color: #353030;
    font-weight: 600;
    margin-right: 10px;
}

.itemName::before {
    content: "\2055";
    color: #ca8b90;
    font-size: 30px;
}

.itemName::after {
    content: "\2055";
    color: #ca8b90;
    font-size: 30px;
}

.itemPrice {
    font-size: 30px;
    color: #353030;
    font-weight: 600;
}


form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input,
form textarea {
    width: 300px;
    max-width: 100%;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    color: #353030;
    background-color: #f6f6f6;
    border: 1px solid #353030;
    box-shadow: 3px 3px 5px 0 #8b8692;
    font-family: "Montserrat", sans-serif;
}

form input:focus,
form textarea:focus {
    outline: none;
    box-shadow: 5px 5px 20px #ca8b90, -5px -5px 20px #ca8b90;
}

#yourMessage::placeholder {
    font-family: "Montserrat", sans-serif;
}

form button,
.okButton {
    width: 200px;
    padding: 10px 20px;
    font-size: 17px;
    background-color: #ca8b90;
    color: white;
    text-shadow: 2px 2px 2px #353030;
    border: none;
    box-shadow: 2px 2px 5px #353030;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    transition: 0.5s all;
}

form button:hover,
.okButton:hover {
    background-color: #c97279;
}

form button:active,
.okButton:active {
    background-color: #cd505a;
}

label.error {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    padding: 5px;
    color: black;
}

input.error {
    border: 2px solid #cd505a;
}

input.valid {
    background-color: #ece4e4b4;
}

#order,
#thanks,
#okButton {
    display: none;
}


/* ADAPTATION */

@media all and (max-width: 1025px) {
    .navBar {
        justify-content: flex-end;
    }

    .navBar a:last-child {
        margin-right: 70px;
    }

    .aboutUsDescr {
        padding: 0 30px;
    }

    .aboutUsDescrItem {
        padding: 10px;
        margin: 10px;
    }

    .reviewItemInner {
        flex-direction: column;
        height: 650px;
    }

    .reviewItemInner div {
        margin-bottom: 0;
    }

    .reviewsItemText {
        margin-top: 0;
    }

    #catalog {
        margin: auto 30px;
    }

    .catalogTab {
        width: 300px;
        height: 50px;
        border: 1px solid #ca8b90;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        line-height: 48px;
        margin: 0 10px;
        background-color: #f6f6f6;
        cursor: pointer;
        transition: 0.5s all;
    }

    .catalogItem {
        width: 230px;
        height: 500px;
        margin: 20px;
    }
}

@media all and (max-width: 820px) {
    .navBar a:last-child {
        margin-right: 40px;
    }

    .navBar a {
        margin: 10px;
        font-weight: 400;
        font-size: 15px;
    }

    .headerContainerDescr h3 {
        font-size: 17px;
        line-height: 30px;
    }

    .aboutUsDescr {
        padding: 0 0px;
    }

    .aboutUsDescrItem {
        padding: 5px;
        margin: 5px;
    }

    .aboutUsDescrItem img {
        width: 30px;
    }

    .aboutUsDescrItem h4,
    .reviewsItem h4 {
        font-size: 15px;
    }

    .aboutUsDescrItem p {
        font-size: 16px;
    }

    .reviewsContainer {
        padding: 0 30px;
    }

    .reviewItemInner {
        height: 470px;
    }

    .reviewItemInner div {
        margin-bottom: 0;
    }

    .reviewsItemText {
        text-align: left;
        color: #353030;
        font-size: 14px;
        line-height: 20px;
        margin-top: 0;
    }

    .address {
        font-size: 17px;
    }

    footer {
        padding: 50px 20px;
    }

    #catalog {
        margin: auto 15px;
    }

    .catalogTab {
        font-size: 11px;
        margin: 5px;
    }

    .catalogItem {
        width: 200px;
        height: 450px;
        margin: 10px;
    }

    .catalogItemFlowersLong {
        top: 280px;
    }

    .catalogItemLink,
    .catalogItemLinkBack {
        top: 350px;
        left: 20px;
    }
}

@media (max-width: 450px) {
    header {
        height: 750px;
    }

    h1 {
        margin: 0;
        padding: 250px 20px 20px 20px;
        font-size: 60px;
    }

    .headerContainerDescr h3 {
        font-size: 15px;
        padding: 10px;
    }

    .shadowContainer {
        margin: 15px;
        box-shadow: 2px 2px 10px 0.5px rgba(255, 255, 255, 0.499), -2px -2px 10px 0.5px rgba(255, 255, 255, 0.5), -2px 2px 10px 0.5px rgba(255, 255, 255, 0.499), 2px -2px 10px 0.5px rgba(255, 255, 255, 0.503);
    }

    .burger {
        display: flex;
    }

    .headerContainer {
        justify-content: space-between;
    }

    .navBar {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        height: fit-content;
        width: 100%;
        right: 0;
        top: 0;
        z-index: 50;
        overflow-y: auto;
        padding: 50px 60px 50px 20px;
        background-color: #353030c7;
        animation: burgerAnimarion 0.4s;
    }

    .menuLink {
        flex-direction: column;
        font-size: 18px;
        letter-spacing: 2px;
        padding: 10px;
        row-gap: 30px;
    }

    .navBar a:last-child {
        margin-right: 10px;
    }

    .logoContainer {
        position: absolute;
        left: 35px;
        top: 35px;
    }

    .logoContainer img {
        width: 100px;
    }

    .subHeader {
        margin: 30px 0 20px 0;
        margin-top: 30px;
    }

    .aboutUsDescr {
        flex-direction: column;
        padding: 20px;
    }

    .aboutUsDescrItem h4,
    .reviewItemInnerHeader h4 {
        letter-spacing: 1px;
    }

    .catalogItem {
        width: 250px;
        height: 460px;
        margin: 10px;
    }

    .catalogTab {
        width: 90px;
        height: 80px;
        font-size: 11px;
        margin: 5px;
        line-height: 24px;
    }

    .catalogItemFlowersLong {
        top: 320px;
    }

    .catalogItemLink,
    .catalogItemLinkBack {
        top: 365px;
        left: 20px;
    }

    .reviewsContainer {
        padding: 0 10px;
    }

    .reviewsItem {
        margin: 10px;
        padding: 0;
    }

    .reviewItemInner {
        height: 570px;
    }

    .address {
        font-size: 14px;
        margin: 40px;
        line-height: 30px;
    }

    .map {
        height: 300px;
    }

    footer {
        padding: 30px;
    }

    .footerCol {
        flex-direction: column;
        align-items: center;
    }

    .footerCol div {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin: 10px;
    }

    .footerCol div a,
    .footerCol div p {

        font-size: 13px;
        margin: 0px;
    }

    .footerCol div:first-child {
        justify-content: center;
        margin-bottom: 50px;
    }

    .footerCol div p:last-child {
        text-align: right;
    }

    .footerCol div:last-child {
        justify-content: center;
    }

    .footerCol div:last-child a {
        margin: 20px;
    }
        .overlay .modal .modalClose {
        position: absolute;
        top: 20px;
        right: 20px;
        color: #353030;
        text-shadow: 3px 3px 3px #ca8b90;
        font-size: 60px;
        font-weight: 500;
        line-height: 20px;
    }
}

@font-face {
    font-family: "Comforter";
    src: url(../fonts/Comforter/Comforter-Regular.ttf);
    font-style: normal;
    font-weight: normal;
}