@charset "utf-8";
/* CSS Document */

/* START BODY */

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
    font-size: 14px;
    font-family: Arimo, Sans-serif, serif;
    line-height: 1.5em;
    color: var(--blue_color);
    min-width: 375px;
}

a, input. button {
    font-family: Arimo, Sans-serif, serif;
}

pre {
    white-space: pre-wrap;
}

b {
    font-weight: bold;
}

ul {
    list-style: disc;
}

li {
    padding-right: 8px;
    margin-right: 32px;
    font-style: italic;
}

li::marker {
    color: var(--gold_color);
}

/* END BODY */

/*----------------------------------------------------------------------------------------*/

/* START HEADER */

header {
    height: 80px;
    width: 100%;
    background-color: var(--blue_color);
    border-bottom: 2px solid var(--gold_color);
    position: relative;
    z-index: 10;
}

.header_center {
    width: calc(100% - 40px);
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    height: 100%;
}

header img {
    height: 60px;
    margin: 9px auto;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

nav {
    display: none;
    align-items: center;
}

nav.active {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    z-index: 5;
    background-color: rgba(20, 30, 60, 0.85);
}

nav a {
    padding: 0 20px;
    color: var(--gold_color);
    transition: .3s;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav_pipe_symbol {
    color: var(--gold_color);
}

nav a .dropdown_icon svg {
    fill: var(--gold_color);
    height: 24px;
    width: 24px;
    vertical-align: top;
}

nav a.active {
    font-weight: bold;
    background-color: var(--blue_color);
    mix-blend-mode: screen;
}

nav.active a {
    width: 100%;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}

nav a:hover {
    opacity: .6;
}

header form {
    display: none;
    align-items: center;
    height: 78px;
}

header form div {
    display: flex;
    box-shadow: var(--box-shadow);
}

header form label {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

header form input {
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;
    border: 1px solid var(--gold_color);
}

header form button {
    color: white;
    background-color: var(--gold_color);
    font-weight: bolder;
    padding: 0 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    transition: .3s;
}

header button:hover {
    opacity: .8;
}

.header_icon {
    height: 48px;
    width: 48px;
    background-color: transparent;
    border: none;
    position: relative;
}

.btn_header_menu_close {
    z-index: 10;
}

.header_icon svg {
    height: 24px;
    width: 24px;
    fill: var(--gold_color);
}

.btn_header_menu_close, .btn_header_search_close {
    display: none;
}

.header_dropdown_btn {
    position: relative;
}

.header_dropdown_sub_menu {
    display: none;
    position: absolute;
    background-color: var(--blue_color);
    border: 1px solid var(--gold_color);
    box-shadow: var(--box-shadow);
    top: 76px;
}

.header_dropdown_sub_menu a {
    white-space: nowrap;
    width: 100%;
    display: block;
    margin: 8px 0;
    height: min-content;
}

.header_dropdown_btn:hover .header_dropdown_sub_menu {
    display: block;
}

.header_user {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.header_user_center {
    max-width: 1200px;
    width: 100%;
    padding: 10px 20px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_user_center a {
    fill: var(--gold_color);
    height: 24px;
    width: 24px;
    margin-right: 16px;
}

.header_user_center .nav {
    display: flex;
}

/* END HEADER */

/*----------------------------------------------------------------------------------------*/

/* START FOOTER */

footer {
    width: 100%;
    height: 60px;
    background-color: var(--blue_color);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    color: var(--gold_color);
    direction: ltr;
}

/* END FOOTER */

/*----------------------------------------------------------------------------------------*/

/* START FORM */

.form_input, .form_textarea, .form_select {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--gold_color);
    font-family: Arimo, sans-serif;
    background-color: var(--beige_color);
}

input[type="text"]:focus:invalid,
input[type="password"]:focus:invalid,
input[type="email"]:focus:invalid,
input[type="tel"]:focus:invalid,
select:focus:invalid,
textarea:focus:invalid {
    border: 1px solid indianred;
    transition: .3s;
}

.form_input.rtl, .form_select.rtl {
    text-align: right;
    direction: ltr;
    unicode-bidi: embed;
}

.form_input::placeholder {
    font-size: .8em;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.form_select {
    background-image: linear-gradient(45deg, transparent 50%, var(--gold_color) 50%), linear-gradient(135deg, var(--gold_color) 50%, transparent 50%);
    background-position: left 15px top 16px, left 20px top 16px, left 0 top 0;
    background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
}

.form_label {
    font-style: italic;
    font-size: .8em;
}

.form_label span {
    color: indianred;
    margin-right: 4px;
}

.form_textarea {
    height: 100px;
}

.form_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form_row .password {
    position: relative;
}

.pass_icon span {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 6px;
    left: 12px;
    cursor: pointer;
}

.pass_icon.active .icon_visibility_on {
    display: block;
}

.pass_icon.active .icon_visibility_off, .icon_visibility_on {
    display: none;
}

.pass_icon svg {
    fill: var(--gold_color);
}

.form_row .phone_number div {
    display: flex;
    justify-content: space-between;
}

.form_row .phone_number .prefix {
    width: 54px;
    padding: 8px;
    cursor: pointer;
    background-image: none;
}

button:disabled, input[type='email']:disabled {
    user-select: none;
    pointer-events: none;
    opacity: .5;
}

.form_row .phone_number input[type="number"] {
    width: calc(100% - 64px);
}

.form_row_title {
    font-size: 1.2em;
    font-weight: bold;
    /*margin-top: 24px;*/
}

.icon_add {
    height: 24px;
    width: 24px;
    fill: var(--gold_color);
    cursor: pointer;
    transition: .3s;
}

.icon_add.active {
    transform: rotate(45deg);
}

.more_options {
    overflow-y: hidden;
    height: 0;
    transition: .3s;
}

.form_row_bottom_desk {
    font-size: .8em;
    opacity: .8;
}

.form_row_bottom_desk span {
    direction: ltr;
    unicode-bidi: embed;
    font-weight: bold;
}

.form_row_1, .form_row_2, .form_row_3, .form_row_4 {
    width: 100%;
    margin: 8px 0;
}

.memorialEditor_add_img_row {
    display: flex;
}

.form_row_line {
    width: 100%;
    height: 1px;
    background-color: var(--beige_color);
    margin: 20px 0;
}

.memorialEditor_add_img_row div {
    border: 1px solid var(--gold_color);
    width: calc(50% - 10px);
    max-width: 200px;
    margin-left: 20px;
    position: relative;
    aspect-ratio: 1;
}

.memorialEditor_add_img_row div:nth-child(2) {
    margin-left: 0;
}

.form_file {
    /*aspect-ratio: 1;*/
    padding: 8px 16px;
    font-family: Arimo, sans-serif;
    background-color: var(--beige_color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*margin-left: 20px;*/
}

.form_file svg {
    height: 80px;
    aspect-ratio: 1;
    fill: var(--gold_color);
}

.form_file p {
    color: var(--gold_color);
    text-align: center;
}

.form_file input[type='file'] {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #007aff;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.img_preview {
    /*aspect-ratio: 1;*/
    overflow: hidden;
    position: relative;
    background-color: #007aff;
    display: none;
}

.img_preview.show {
    display: block;
}

.img_preview__file img, .memorialEditor_current_image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.img_preview__cancel, .img_preview__delete {
    position: absolute;
    bottom: 8px;
    left: calc(50% - 28px);
    z-index: 2;
    border: 1px solid white;
}

.uploading_image {
    border: 1px solid var(--gold_color);
    /*width: 198px;*/
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.uploading_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memorial_editor__folders {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

.memorial_editor__folder {
    width: 44%;
    margin: 20px 0;
}

.memorial_editor__folder:hover .folder, .memorial_editor__folder:hover .folder::before {
    background-color: #fdc246;
    transition: .3s;
}

.memorial_editor__folder:hover svg {
    transform: scale(1.1);
    transition: .3s;
}

.memorial_editor__folder p {
    text-align: center;
    color: var(--gold_color);
    font-size: 1.2em;
    margin-top: 8px;
}

.folder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #f4b637;
    border-radius: 0 5px 5px 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.folder svg {
    width: 40%;
    fill: #ba851f;
}

.folder::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 0;
    width: 40%;
    height: 20px;
    background-color: #f4b637;
    border-radius: 5px 5px 0 0;
}

/* END FORM */

/*----------------------------------------------------------------------------------------*/

/* START CHECKBOX */

.checkbox_container {
    display: block;
    position: relative;
    padding-left: 16px !important;
    padding-right: 35px !important;
    /*margin-bottom: 12px;*/
    cursor: pointer;
    user-select: none;
    /*margin-top: 10px;*/
}

.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 23px;
    width: 23px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.checkbox_container:hover input ~ .checkmark {
    border: 1px solid var(--gold_color);
}

.checkbox_container input:checked ~ .checkmark {
    border: 1px solid var(--gold_color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox_container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--gold_color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* END CHECKBOX */

/*----------------------------------------------------------------------------------------*/

/* START MAIN */

main {
    flex: 1 1 auto;
}

.bg_beige {
    background-color: var(--beige_color);
}

/* END MAIN */

/*----------------------------------------------------------------------------------------*/

/* START DEFAULT */

.strip_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.strip_wrapper_center {
    max-width: 1200px;
    width: var(--calc_width);
    margin: auto;
}

.double_line_50 {
    width: 50%;
    height: 2px;
    margin: 4px 0;
    background-color: var(--gold_color);
}

.double_line_25 {
    width: 25%;
    height: 2px;
    margin: 4px 0;
    background-color: var(--gold_color);
}

.btn {
    color: white;
    background-color: var(--gold_color);
    font-weight: bolder;
    padding: 8px 16px;
    font-size: 1em;
    box-shadow: var(--box-shadow);
    border: none;
    border-radius: 4px;
    height: fit-content;
    max-width: fit-content;
    transition: .3s;
    cursor: pointer;
}

.btn.whiteBtn {
    color: var(--gold_color);
    background-color: white;
    /*border-inline: 2px solid var(--gold_color);*/
}

.btn:hover {
    opacity: .6;
}

.btn_circle {
    width: 56px;
    aspect-ratio: 1;
    background-color: var(--gold_color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    transition: .3s;
    cursor: pointer;
}

.btn_circle:hover {
    transform: scale(1.1);
}

.btn_circle svg {
    width: 24px;
    aspect-ratio: 1;
    fill: white;
}

.btn.center {
    margin: 24px auto 0;
    display: block;
    width: fit-content;
    min-width: 120px;
    text-align: center;
}


.strip_title {
    display: flex;
    justify-content: space-between;
    /*align-items: end;*/
    margin-bottom: 16px;
}

.strip_terms .strip_about_title {
    font-size: 1.1em;
}

.strip_title_name {
    font-weight: bold;
    font-size: 1.2em;
}

.strip_title_sub_name {
    margin-bottom: 20px;
}

.link {
    color: var(--gold_color);
    text-decoration: underline;
    white-space: nowrap;
}

.button_link {
    color: var(--gold_color);
    text-decoration: underline;
    white-space: nowrap;
    border: none;
    background-color: transparent;
}

.link.center {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.strip_line {
    height: 2px;
    background-color: var(--beige_color);
    max-width: 1200px;
    width: var(--calc_width);
    margin: auto;
}

/* END DEFAULT */

/*----------------------------------------------------------------------------------------*/

/* START MAIN COVER STRIP */

.strip_main_cover {
    width: 100%;
    height: auto;
    background-color: var(--beige_color);
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.strip_main_cover_center {
    position: relative;
    z-index: 3;
}

.strip_main_cover_center_title {
    font-size: 2em;
    color: var(--gold_color);
    font-weight: bold;
    text-align: center;
    margin: 24px auto 0;
    line-height: 1.2em;
}

.strip_main_cover_center_little_sub_title {
    text-align: center;
    color: var(--gold_color);
}

.strip_main_cover_center_sub_title {
    font-size: 1.2em;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 8px auto 24px;
    line-height: 1.2em;
}

.strip_main_cover_bg_color {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #141e3c9c;
    z-index: 2;
}

.strip_main_cover_bg {
    background-image: url("/images/meadow-811339_1920.jpg");
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

/* END MAIN COVER STRIP */

/*----------------------------------------------------------------------------------------*/

/* END ABOUT STRIP */

.strip_about {
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strip_about_center {
    display: flex;
    max-width: 1200px;
    width: var(--calc_width);
    aspect-ratio: 1 / 0.5;
    margin: auto;
    flex-direction: column;
    min-height: fit-content;
    height: 1000px;
}

.strip_about_center_content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

.strip_about_center_images {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 600px;
    margin: auto;
}

.strip_about_center_img {
    width: 85%;
    aspect-ratio: 1;
    overflow: hidden;
    position: absolute;
    box-shadow: var(--box-shadow);
    transition: .3s;
    border: 10px solid white;
}

.strip_about_center_img.first {
    top: 0;
    left: 0;
    z-index: 2;
}

.strip_about_center_img.second {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.strip_about_center_images:hover .strip_about_center_img.second {
    z-index: 3;
}

.strip_about_center_images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strip_about_name {
    font-weight: bold;
    font-size: 2em;
    line-height: 1.2em;
}

.strip_about_sub_name {
    font-style: italic;
}

.strip_about_text {
    margin: 20px 0;
    font-weight: lighter;
}

.strip_about_title {
    margin: 30px 0 -10px;
    font-weight: bolder;
}

/* END ABOUT STRIP */

/*----------------------------------------------------------------------------------------*/

/* START WHY CHOOSE US STRIP */

.strip_why_choose_us {
    max-width: 1200px;
    width: var(--calc_width);
    margin: auto;
    padding: 50px 0;
}

.strip_why_choose_us_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.strip_why_choose_us_item {
    width: 100%;
    background-color: var(--beige_color);
    padding: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 20px;
}

.strip_why_choose_us_item_number {
    color: var(--gold_color);
    font-size: 4em;
    margin: 20px 0;
}

.strip_why_choose_us_item_title {
    font-weight: bold;
    margin-bottom: 8px;
}

/* END WHY CHOOSE US STRIP */

/*----------------------------------------------------------------------------------------*/

/* START CONTACT STRIP */

.strip_contact {
    padding: 50px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.strip_contact_center {
    max-width: 1200px;
    width: var(--calc_width);
    margin: auto;
}

/* END CONTACT STRIP */

/*----------------------------------------------------------------------------------------*/

/* START PURCHASE STRIP */

.strip_purchase {
    padding: 50px 0;
    background-color: var(--beige_color);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.strip_purchase_center {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.strip_purchase_center .strip_title {
    width: var(--calc_width);
    margin: auto;
}

.strip_purchase_items {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.strip_purchase_item {
    background-color: white;
    box-shadow: var(--box-shadow);
    width: calc(33% - 12px);
    padding: 20px;
}

.strip_purchase_item_name {
    font-size: 1.2em;
    font-weight: bold;
}

.strip_purchase_item_amount {
    color: var(--gold_color);
    font-size: 4em;
    margin: 20px 0;
    display: inline-block;
}

.strip_purchase_item_list {
    list-style: none;
    margin: 20px 0;
}

.strip_purchase_item_list li {
    font-size: .9em;
    opacity: .6;
    margin-bottom: 14px;
    line-height: 1.2em;
}

.strip_purchase_item_list li.active {
    opacity: 1;
}

.strip_purchase_item_list li:before {
    content: '✓';
    font-weight: bold;
    margin: 0 -32px 0 16px;
    opacity: .4;
}

.strip_purchase_item_list li.active:before {
    opacity: 1;
    color: green;
}

.strip_purchase_item_icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 56px;
    height: 56px;
}

.swiper {
    padding: 8px;
}

/* END WHY PURCHASE STRIP */

/*----------------------------------------------------------------------------------------*/

/* START PERSON STRIP */

.strip_person {
    width: 100%;
    height: auto;
    background-color: var(--beige_color);
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strip_person_center {
    display: flex;
    max-width: 1200px;
    width: var(--calc_width);
    aspect-ratio: 1 / 0.5;
    margin: auto;
    box-shadow: var(--box-shadow);
    background-color: white;
    flex-direction: column;
}

.strip_person_img {
    width: 100%;
    overflow: hidden;
}

.strip_person_img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.strip_person_content {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.strip_person_name {
    font-weight: bold;
    font-size: 2.5em;
    line-height: 1.2em;
}

.strip_person_nav {
    display: flex;
    justify-content: flex-end;
}

.strip_person_cause_of_death {
    font-style: italic;
}

.strip_person_content_center {
    margin: 16px 0;
}

.strip_person_content_center_item {
    display: flex;
    align-items: center;
    margin: 16px 0;
}

.strip_person_content_center_item p {
    font-size: 1.1em;
}

.strip_person_content_center_item svg {
    width: 24px;
    fill: var(--gold_color);
    margin-left: 8px;
}

/* END PERSON STRIP */

/*----------------------------------------------------------------------------------------*/

/* START GALLERY STRIP */

.strip_gallery {
    width: 100%;
    height: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strip_gallery_center {
    max-width: 1200px;
    width: var(--calc_width);
    margin: auto;
}

.strip_gallery_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.strip_gallery_item {
    width: 100%;
    aspect-ratio: 1 / 0.66;
    overflow: hidden;
    margin-bottom: 20px;
}

.strip_gallery_item:last-child {
    margin-bottom: 0;
}

.strip_gallery_item img {
    width: 100%;
    object-fit: cover;
}


/* END GALLERY STRIP */


/*----------------------------------------------------------------------------------------*/

/* START ABOUT PERSON STRIP */

.strip_about_person {
    width: 100%;
    height: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strip_about_person_center {
    max-width: 1200px;
    width: var(--calc_width);
    margin: auto;
}

.strip_about_person_text {
    padding: 20px;
    background-color: var(--beige_color);
    box-shadow: var(--box-shadow);
}

/* END ABOUT PERSON STRIP */


/*----------------------------------------------------------------------------------------*/

/* START VIDEOS STRIP */

.strip_videos {
    width: 100%;
    height: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strip_videos_center {
    max-width: 1200px;
    width: var(--calc_width);
    margin: auto;
}

.strip_videos_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.strip_videos_item {
    width: 100%;
    aspect-ratio: 1 / 0.66;
    overflow: hidden;
    margin-bottom: 20px;
}

.strip_videos_item:last-child {
    margin-bottom: 0;
}

/* END VIDEOS STRIP */


/*----------------------------------------------------------------------------------------*/

/* START PARTNERS STRIP */

.strip_partners {
    width: 100%;
    height: 100%;
    background-color: var(--beige_color);
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.strip_partners_center {
    max-width: 1200px;
    width: var(--calc_width);
    margin: auto;
}

.strip_partners_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.strip_partners_item {
    width: 100%;
    background-color: white;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.strip_partners_item:last-child {
    margin-bottom: 0;
}

.strip_partners_item_img {
    aspect-ratio: 1 / 0.66;
    overflow: hidden;
}

.strip_partners_item img {
    width: 100%;
    object-fit: cover;
}

.strip_partners_item_content {
    padding: 20px;
}

.strip_partners_item_name {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 8px;
}

.strip_partners_content_center_item {
    display: flex;
    align-items: center;
    margin: 16px 0;
}

.strip_partners_content_center_item p {
    font-size: 1.1em;
}

.strip_partners_content_center_item svg {
    width: 36px;
    fill: var(--gold_color);
    margin-left: 16px;
}

.strip_partners_item_link a {
    display: flex;
    justify-content: end;
}


/* END PARTNERS STRIP */

/*----------------------------------------------------------------------------------------*/

/* START TERMS STRIP */

.strip_terms {
    padding: 20px;
}

.strip_terms_line {
    width: 50%;
    height: 1px;
    opacity: .5;
    background-color: var(--gold_color);
}

/* END TERMS STRIP */

/*----------------------------------------------------------------------------------------*/

/* START AUTH PAGE */
.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100dvh - 80px);
    position: relative;
}

.auth_modal {
    width: calc(100% - 40px);
    max-width: 992px;
    position: relative;
    z-index: 3;
    display: flex;
    box-shadow: var(--box-shadow);
    margin: 16px 0;
}

.auth_modal__form {
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth_modal__img {
    width: 50%;
    overflow: hidden;
    display: none;
}

.auth_modal__img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.header_auth a {
    height: 78px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--gold_color);
    transition: .3s;
}

.header_auth a:hover {
    opacity: .6;
}

.auth_modal__form_bottom_line {
    margin-top: 36px;
}


/* END AUTH PAGE */


/*----------------------------------------------------------------------------------------*/

/* START MY MEMORIALS PAGE */

.memorials_list {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    width: calc(100% - 40px);
}

.memorials_list p {
    color: var(--blue_color);
}

.memorials_list__item {
    background-color: white;
    box-shadow: var(--box-shadow);
    width: 100%;
    margin: 12px auto;
    display: flex;
    flex-wrap: wrap;
}

.memorials_list__item_right {
    width: 30%;
    aspect-ratio: 1;
    overflow: hidden;
}

.memorials_list__item_left {
    width: 70%;
}

.memorials_list__item_name {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    font-weight: bold;
}

.memorials_list__item_bottom {
    width: 100%;
    padding: 16px;
    border-top: 1px solid var(--gold_color);
    display: flex;
    justify-content: space-between;
}

.memorials_list__item_bottom a, .memorials_list__item_bottom button {
    margin-right: 16px;
}

.memorials_list__item_bottom span {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-left: 8px;
    display: inline-block;
}

.memorials_list__item_bottom span.active {
    background-color: mediumseagreen;
}

.memorials_list__item_bottom span.not_active {
    background-color: indianred;
}

.memorials_list__item_bottom span.disabled {
    background-color: lightgray;
}

.memorials_list__item_right img {
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.memorials_list__item_death_date {
    padding: 16px;
    display: flex;
    font-size: .8em;
    align-items: center;
}

.memorials_list__item_line {
    width: calc(100% - 16px);
    height: 1px;
    margin-right: 16px;
    background-color: var(--beige_color);
}

.memorials_list__item_death_date svg {
    width: 24px;
    fill: var(--gold_color);
    margin-left: 16px;
}

.memorials_list__item_name svg {
    width: 24px;
    margin-right: 16px;
}


/* END MY MEMORIALS PAGE */
/*----------------------------------------------------------------------------------------*/
/* START MY MEMORIAL EDITOR PAGE */

.memorial_form {
    width: calc(100% - 40px);
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin: 0 auto 20px;
}

.memorial_form_nav {
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.memorial_form_nav a {
    padding: 8px;
    color: var(--gold_color);
    border-bottom: 2px solid var(--beige_color);
    font-size: .9em;
}

.memorial_form_nav a.active {
    border-bottom: 2px solid var(--gold_color);
    font-weight: bold;
}

.memorial_form form {
    max-width: 768px;
    margin: 30px auto;
}

.choosing_plan {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.choosing_plan__checkmark {
    padding: 20px;
    border: 3px solid var(--beige_color);
    margin: 8px;
    display: block;
    transition: .3s;
    position: relative;
    min-width: 300px;
}

.choosing_plan input:checked ~ .choosing_plan__checkmark {
    border: 3px solid var(--gold_color);
}

.choosing_plan__checkmark:hover {
    border: 3px solid #ccc;
    cursor: pointer;
}

.choosing_plan__checkmark svg {
    height: 48px;
    margin: auto;
    display: block;
}


/* END MY MEMORIAL EDITOR PAGE */
/*----------------------------------------------------------------------------------------*/
/* START SEARCH PAGE */

.search_filter {
    width: calc(100% - 40px);
    margin: auto;
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 20px;
}

/* END SEARCH PAGE */
/*----------------------------------------------------------------------------------------*/
/* START MODAL */
.modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.modal_wrapper {
    border-top: 2px solid #393b42;
    background-color: white;
    padding: 24px;
    max-width: 1200px;
    width: calc(100% - 48px);
    box-shadow: var(--box-shadow);
    max-height: 80dvh;
    overflow-y: auto;
}

/* END MODAL */
/*----------------------------------------------------------------------------------------*/
/* START MSG */

.msg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.msg span {
    border-top: 2px solid #393b42;
    background-color: white;
    padding: 24px;
    max-width: 320px;
    width: calc(100% - 48px);
    box-shadow: var(--box-shadow);
}

.msg svg {
    width: 60px;
    height: 60px;
    margin: auto;
    display: block;
}

.msg.success span svg {
    fill: darkseagreen;
}

.msg.error span svg {
    fill: indianred;
}

.msg p {
    text-align: center;
    margin: 20px auto;
    color: #333;
}

.msg .form_btn {
    color: white;
    background-color: var(--gold_color);
    font-weight: bolder;
    padding: 8px 16px;
    font-size: 1em;
    box-shadow: var(--box-shadow);
    border: none;
    border-radius: 4px;
    height: fit-content;
    max-width: fit-content;
    margin: auto;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
}

.msg.welcome_msg span {
    max-width: 992px;
    max-height: 90vh;
    overflow-y: auto;
}

.msg.welcome_msg b {
    font-size: 1.2em;
}

/* END MSG */
/*----------------------------------------------------------------------------------------*/
/* START UPLOAD FILE */

.file-select {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--gold_color);
    cursor: pointer;
    background: var(--beige_color);
    position: relative;
    width: 100%;
}

.file-select-name {
    padding: 5px 16px;
    font-size: 1em;
    color: #878787;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-select-button {
    background-color: var(--gold_color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1em;
    color: white;
    width: 106px;
}

.file-select input[type='file'] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    margin: auto !important;
}

/* END UPLOAD FILE */
@media (min-width: 480px) {

}

@media (min-width: 600px) {
    /* END DEFAULT */
    .form_row_4 {
        width: calc(50% - 18px);
    }

    /* END FORM */
    /*----------------------------------------------------------------------------------------*/
    /* START WHY CHOOSE US STRIP */
    .strip_why_choose_us_item {
        width: calc(50% - 12px);
    }

    /* END WHY CHOOSE US STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* START GALLERY STRIP */
    .strip_gallery_item {
        width: calc(50% - 12px);
    }

    /* END GALLERY STRIP */
}

@media (min-width: 768px) {
    /* START MY MEMORIALS PAGE */
    .memorials_list__item {
        width: calc(50% - 12px);
        margin: 12px 0 12px 22px;
    }

    .memorials_list__item:nth-child(2n) {
        margin-left: 0;
    }

    /* END MY MEMORIALS PAGE */
    /*----------------------------------------------------------------------------------------*/
    /* START FORM */
    .form_row_1, .form_row_2, .form_row_3, .form_row_4 {
        margin: 12px 0;
    }

    .form_row_2 {
        width: calc(50% - 12px);
    }

    .form_row_3 {
        width: calc(33% - 12px);
    }

    .form_row_4 {
        width: calc(25% - 18px);
    }


    /* END FORM */
    /*----------------------------------------------------------------------------------------*/
    /* START AUTH PAGE */
    .auth_modal {
        padding: 20px;
        margin: 20px 0;
    }

    .auth_modal__img {
        display: block;
    }

    .auth_modal__form {
        width: 50%;
        padding: 40px;
    }

    /* START MY MEMORIAL EDITOR PAGE */
    .memorial_editor__folders {
        padding: 50px;
    }

    .memorial_editor__folder {
        width: 20%;
    }

    .folder::before {
        height: 30px;
    }


    .memorial_form_nav{
        justify-content: right;
    }

    .memorial_form_nav a {
        padding: 8px 16px;
    }

    /* END MY MEMORIAL EDITOR PAGE */
    /*----------------------------------------------------------------------------------------*/
    /* END AUTH PAGE */
}

@media (min-width: 992px) {
    /* START MY MEMORIAL EDITOR PAGE */
    .choosing_plan {
        flex-direction: row;
    }

    /* END MY MEMORIAL EDITOR PAGE */
    /*----------------------------------------------------------------------------------------*/
    /* START MY MEMORIALS PAGE */
    .memorials_list__item {
        width: calc(33% - 12px);
        margin: 12px 0 12px 22px;
    }

    .memorials_list__item:nth-child(2n) {
        margin-left: 22px;
    }

    .memorials_list__item:nth-child(3n) {
        margin-left: 0;
    }

    /* END MY MEMORIALS PAGE */
    /*----------------------------------------------------------------------------------------*/
    /* START BODY */
    body {
        font-size: 16px;
    }

    /* END BODY */
    /*----------------------------------------------------------------------------------------*/
    /* START DEFAULT */
    .strip_title_name {
        font-size: 2em;
    }

    /* END FORM */
    /*----------------------------------------------------------------------------------------*/
    /* END DEFAULT */
    .form_row_4 {
        width: calc(25% - 18px);
    }

    /* END FORM */
    /*----------------------------------------------------------------------------------------*/
    /* START MAIN COVER STRIP */
    .strip_main_cover {
        min-height: calc(100dvh - 80px);
    }

    .strip_main_cover_center_title {
        font-size: 3em;
        color: var(--gold_color);
        font-weight: bold;
        text-align: center;
        line-height: 1.2em;
    }

    .strip_main_cover_center_sub_title {
        font-size: 1.5em;
        color: white;
        font-weight: bold;
        text-align: center;
        line-height: 1.2em;
    }

    /* END MAIN COVER STRIP */
    /*------------------------------
    ----------------------------------------------------------*/
    /* END ABOUT STRIP */
    .strip_about {
        padding: 100px 0;
    }

    .strip_about_center {
        flex-direction: row;
        height: auto;
    }

    .strip_about_center_content {
        width: 50%;
        padding: 40px;
        height: fit-content;
    }

    .strip_about_center_images {
        width: 50%;
    }

    /* END ABOUT STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* START WHY CHOOSE US STRIP */
    .strip_why_choose_us {
        padding: 100px 0;
    }

    .strip_why_choose_us_item {
        width: calc(25% - 12px);
    }

    /* END WHY CHOOSE US STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* END PERSON STRIP */
    .strip_person {
        min-height: calc(100dvh - 80px);
        padding: 100px 0;
    }

    .strip_person_img {
        width: 50%;
    }

    .strip_person_content {
        padding: 40px;
        width: 50%;
    }

    .strip_person_center {
        flex-direction: row;
    }

    .strip_person_name {
        font-size: 4em;
    }

    .strip_person_content_center_item svg {
        width: 36px;
        margin-left: 16px;
    }

    /* END PERSON STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* START CONTACT STRIP */
    .strip_contact {
        padding: 100px 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* END CONTACT STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* START GALLERY STRIP */
    .strip_gallery {
        padding: 100px 0;
    }

    .strip_gallery_item {
        width: calc(25% - 12px);
        margin-bottom: 0;
    }

    /* END GALLERY STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* START VIDEOS STRIP */
    .strip_videos {
        padding: 100px 0;
    }

    .strip_videos_item {
        width: calc(50% - 12px);
        margin-bottom: 0;
    }

    /* END VIDEOS STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* START PARTNERS STRIP */
    .strip_partners {
        padding: 100px 0;
        min-height: 100dvh;
    }

    .strip_partners_item {
        width: calc(33% - 12px);
        margin-bottom: 0;
    }

    /* END PARTNERS STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* START ABOUT STRIP */
    .strip_about_person {
        padding: 100px 0;
    }

    /* END ABOUT STRIP */
    /*----------------------------------------------------------------------------------------*/
    /* START HEADER */
    nav {
        display: flex;
    }

    header form {
        display: flex;
    }

    .header_icon {
        display: none;
    }

    /* END HEADER */


}

@media (min-width: 1200px) {

}
