/*default setting*/
@font-face {
    font-family: MacPaw Fixel;
    src: url("../fonts/MacPawFixel-VF.ttf");
}

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
.h1{
    text-transform: uppercase;
}
a {
    text-decoration: none;
}

ul {
    list-style: none;
}
body{
    min-height: 100vh;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

body.active {
    overflow: hidden;
}

/*default setting*/

/*primary btn*/
.primary_button {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    cursor: pointer;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF !important;
    border: none;
    padding: 10px 12px;
    background: #5F51FF;
    border-radius: 8px;
    max-height: 42px;
}

button img {
    vertical-align: bottom;
}

.primary_button:hover {
    opacity: 0.8;
    transition: all 0.5s;
}

.primary_border_button:hover img {
    transition: all 0.5s;
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(202deg);
}

.primary_border_button {
    cursor: pointer;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    /* or 19px */
    padding: 10px 12px;
    background: transparent;
    border: 2px solid #5F51FF;
    border-radius: 8px;
}

.primary_border_button:hover {
    color: #5F51FF;
    transition: all 0.2s;
}

/*primary btn*/

/*select*/
select {
    cursor: pointer;
    padding-right: 40px !important;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
    border: 1px solid #BFBFBF !important;
    border-radius: 8px;
    background: #F2F2F2 url('../images/icons/stroke.svg') !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    appearance: none;
}

select:focus {
    transition: all 0s;
    outline: solid #5F51FF 2px;
}

/*select*/

/*past card*/
.past_card {
    cursor: pointer;
    position: relative;
    border-radius: 24px;
    min-width: 280px;
    max-width: 280px;
    height: 369px;
    background: var(--card-photo) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.past_card_actions {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.past_card_actions img {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.past_card_actions img:hover, .past_card_actions img.saved:hover {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(202deg);
}

.past_card_actions img.saved {
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(0deg);
}
.past_card_actions img.saved.clicked{
    filter: unset !important;
}
.past_card_actions img.clicked{
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(0deg) !important;
}
.past_card_info {
    background: #181727;
    border-radius: 24px;
    height: 110px;
    display: flex;
    gap: 6px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px 20px;
    align-items: center;
}

.past_card_name span {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
}

.past_tags_date {
    background: #0B0085;
    border-radius: 16px;
    padding: 4px 8px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.past_tags_views {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
    background: #F2F2F2;
    border-radius: 16px;
    padding: 4px 8px;
}

.past_tags_views img {
    vertical-align: bottom;
}

.past_card:hover .past_card_info {
    transition: all, 1s;
    bottom: 0;
    position: absolute;
    justify-content: center;
    z-index: 1;
    min-width: 280px;
    max-width: 280px;
    height: 369px;
}

.past_card:hover .past_card_descr {
    display: block;
}

.past_card:hover .past_card_avatar img {
    object-fit: cover;
    width: 75px;
    height: 75px;
    transition: all 1s;
}

.past_card_avatar img {
    overflow: hidden;
    width: 0;
    height: 0;
    border-radius: 75px;
}

.past_card_descr {
    display: none;
    margin-top: 10px;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
}

/*past card*/

/*breadcrumb*/
.breadcrumb {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-bottom: 20px;


}

.breadcrumb span {
    cursor: pointer;
    align-self: flex-end;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    /* identical to box height */
}

.breadcrumb span img {
    vertical-align: bottom;
}

.breadcrumb span:nth-child(1) {
    opacity: 0.4;
}

/*breadcrumb*/
/*paginator*/

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.pagination li {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.05em;
}
.pagination li.page-item.active {
    background: #5F51FF;
    color: white;
}
.pagination li.page-item:first-child, .pagination .page-item:last-child{
    font-size: 35px;
}

/*paginator*/

/*header*/
.main {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;

    /*padding-top: 200px;*/
}

.header {
    background: white;
    width: 100%;
}

.header_fixed {
    box-shadow: 0px 33px 20px rgba(0, 0, 0, 0.01), 0px 15px 15px rgba(0, 0, 0, 0.02), 0px 4px 8px rgba(0, 0, 0, 0.02), 0px 0px 0px rgba(0, 0, 0, 0.02);
    position: fixed;
    top: 0;
    z-index: 5;
}

.container {
    max-width: 1288px;
    margin: 0 auto;
    width: 100%;
}

.header_inner {
    display: flex;
    align-items: center;
    padding: 24px 0;
}

.menu_auth {
    flex: 1 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;

}

.logo {
    margin-right: 80px;
    width: 100px;
    height: 22px;
}

.menu_list {
    display: flex;
    gap: 24px;


}

.menu_auth_item {
    height: fit-content;
}

.menu_list_item a, .menu_auth_item {
    /* Macpaw/Medium/16 */
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    /* identical to box height */
    color: #181727;
}

.header_inner a:hover {
    color: #5F51FF;
    transition: all 0.1s;
}

/*header*/

/*footer*/
.footer {
    background: #181727 url("../images/footages/Subtract.svg");
    background-repeat: no-repeat;
    background-position-Y: 15px;
    background-size: contain;
    border-radius: 56px 56px 0px 0px;
    height: 422px;
    margin-top: 80px;
}

.footer_inner {
    margin-bottom: 110px;
    padding-top: 56px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.logo_footer {
    margin-bottom: 20px;
}

.logo_img {
    width: 100px;
    height: 22px;
}

.footer_socialmedia_list {
    display: flex;
    gap: 20px;
}

.footer_inner > ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_pages_item a {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.footer_input_list li label {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #FFFFFF;
}

input {
    width: 100%;

    height: 41px;
    background: #F2F2F2;
    border-radius: 8px;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding: 8.5px 16px;
    letter-spacing: -0.05em;
    border: none;
    color: black;
}

input::placeholder {
    color: #BFBFBF;
}

.footer_input_item {
    display: flex;
    gap: 16px;

}

input:focus {
    transition: all 0s;
    outline: solid #5F51FF 2px;
    text-shadow: none;
    background: #F2F2F2;
    color: #BFBFBF;
}

.footer_input_list li input:focus::placeholder {
    color: #BFBFBF;
    transition: all 0s;
}

.reg {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

/*footer*/


/*home main*/
.main {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.home_title h1, .home_title h3 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 92px;
    line-height: unset;
    text-transform: uppercase;
    color: #181727;
}

/*home main -> memory_keeping*/
.memory_keeping {
    margin-top: 25px;
}

.memory_keeping_background {
    height: 666px;
    background: #8E85FF url("../images/footages/SubtractWhite.svg");
    background-repeat: no-repeat;
    background-position-y: bottom;
    border-radius: 32px;
    padding-top: 65px;
    padding-bottom: 70px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.memory_keeping h1 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 112px;
    line-height: 120%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.memory_keeping_item {
    display: flex;
    gap: 90px;
}

.memory_keeping_item button {
    padding: 24px;
    width: 207px;
    height: 116px;
    border: none;
    background: #181727;
    border-radius: 16px;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    text-align: left;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
}

.memory_keeping_item p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

/*home main -> memory_keeping*/

/*home main -> what_is_it*/
.what_is_it {
    display: flex;
    gap: 60px;
}

.what_is_it_first_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    gap: 10px;
    width: 390px;
    height: 300px;
    /* Black */
    background: #181727;
    border-radius: 16px;
}

.what_is_it_first_item h2 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #FFFFFF;
}

.what_is_it_first_item p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.what_is_it_second_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 18px;
    gap: 32px;
    width: 840px;
    height: 300px;
    background: #F2F2F2;
    border-radius: 16px;
}

.what_is_it_second_item h2 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-transform: uppercase;
    color: #181727;
}

.what_is_it_second_item p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
}

/*home main -> what_is_it*/

/*home main -> info*/
.info .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info {
    padding: 64px 0;
    /*background: #181727;*/
    background-image: url("../images/footages/Info.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 56px;
}

.info_title h3 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: #FFFFFF;
    text-transform: uppercase;
}

.info_steps {
    display: flex;
    gap: 50px;
}

.info_step_item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
    height: 207px;
    width: 386px;
    padding-left: 20px;
}

.info_step_item:nth-child(2) {
    margin-top: 80px;
}

.info_steps .info_step_item:nth-child(3) {
    width: 418px;
    margin-top: 160px;
}

.info_step_item::before {
    content: '';
    position: absolute;
    left: 0;
    z-index: 2;
    background: url("../images/footages/line.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 8px;
    height: 207px;

}

.info_step_item span {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 72px;
    line-height: 99px;
    color: #FFFFFF;
}

.info_step_item p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.info_card_list {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
}

.info_card_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 24px 0px 0px;
    gap: 20px;

    width: 391px !important;
    height: 150px;
    /* Grey/900 */
    background: #2C2947;
    border-radius: 24px 12px 12px 24px;
}

.info_card_title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 8px;
    max-width: 250px !important;
    min-width: 136px !important;
    height: 150px !important;
    /* Primary/Default */

    background: #5F51FF;
    border-radius: 24px;

}

.info_card_title span {
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 25px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    /* White */

    color: #FFFFFF;
}

.info_card_decr span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    /* or 27px */

    letter-spacing: -0.05em;

    /* White */

    color: #FFFFFF;
    width: 207px;

}

/*home main -> info*/

/*home main -> services*/
.services {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.services_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.services_item {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 24px 0px 0px;
    gap: 24px;
    width: 100%;
    height: 155px;
    background: #181727;
    border-radius: 32px 32px 24px 50px;
}

.services_item_icon {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 0px 0px;
    gap: 12px;
    min-width: 264px;
    height: 155px;
    background: #5F51FF;
    border-radius: 24px;

}

.services_item_icon image {
    width: 74.6px;
    height: 51px;
}

.services_item_icon > span {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #FFFFFF;


}

.services_item_tag {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    gap: 8px;

    width: 264px;
    height: 26px;

    background: #EDAE49;
    border-radius: 0 0 24px 24px;
    /* Inside auto layout */

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.services_item_tag span {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.services_item_text {
    display: flex;
    width: 100%;
}

.services_item_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.modal_info .services_item_decr{
    width: unset;
}
.modal_info .services_item_decr ul{
    flex-direction: column;
}
.services_item_title h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: -0.05em;

    /* White */

    color: #FFFFFF;

}

.services_item_decr {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;


    width: 679px;
    height: 100%;


    /* Inside auto layout */

    flex: none;
    order: 1;
    flex-grow: 0;
}

.services_item_decr ul {
    width: 100%;
    list-style: disc;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.05em;
    /* White */
    color: #FFFFFF;
    display: flex;

    margin-left: 30px;
    flex-wrap: wrap;

}

.services_item_decr ul li {
    min-width: 200px;

    height: 38px;
}

.services_item_price {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services_item_price span {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 44px;
    display: flex;
    align-items: center;
    text-transform: uppercase;

    /* White */

    color: #FFFFFF;

}

.services_item_price {
    width: 100%;
}

.services_item_price button {
    max-width: 257px;
    width: 100%;
}

.services_buttons {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.services_buttons button {
    max-width: 280px;
    width: 100%;
}

/*home main -> services*/

/*home main -> past_page*/
.past_page {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.past_page_block {
    display: flex;
    gap: 50px;
}

.show_all_cards {
    max-width: 280px;
    width: 100%;
    height: 412px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.show_all_cards h3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #181727;
}

.past_card_list {

    display: flex;
    gap: 32px;
    overflow-x: scroll;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #5F51FF #F2F2F2;
}

/* Chrome, Edge, and Safari */
.past_card_list::-webkit-scrollbar, .prof_card_rewards_list::-webkit-scrollbar {
    height: 5px;

}

.past_card_list::-webkit-scrollbar-track, .prof_card_rewards_list::-webkit-scrollbar-track {
    background: #F2F2F2;
    border-radius: 10px;
}

.past_card_list::-webkit-scrollbar-thumb, .prof_card_rewards_list::-webkit-scrollbar-thumb {
    background-color: #5F51FF;
    border-radius: 10px;
    border: 0px solid #eae1e1;
}

/*home main -> past_page*/

/*home main -> news*/
.news {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.news_header {
    display: flex;
    gap: 112px;
}

.more_news {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 100%;
    max-width: 504px;

}

.more_news span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
}

.main_news {
    background: #5F51FF;
    border-radius: 16px;
    padding: 32px 24px;

}

.main_news span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}

.main_news h3 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #FFFFFF;
    margin-top: 12px;
    margin-bottom: 20px;
}

.main_news p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.news_list {
    display: flex;
    justify-content: space-between;
}

.news_card:hover {
    background: #beb7fc;
    border: 1px solid #beb7fc;
}

.news_card:hover .category_tag {
    background: white;
    color: black;
}

.news_card:hover .news_card_header span:nth-child(1) {
    color: #2d00e6;
}

.news_card:hover h3 {
    color: #2d00e6;
}

.news_card:hover p {
    color: #2d00e6;
}

.news_card {
    cursor: pointer;
    width: 100%;
    max-width: 392px;
    height: 345px;
    padding: 30px 20px;
    border: 1px solid #181727;
    border-radius: 16px;
    transition: all 1s;
}

.news_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.news_card_header span:nth-child(1) {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #181727;
}

.category_tag {
    transition: all 1s;
    padding: 4px 8px;
    background: #8E85FF;
    border-radius: 16px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.news_card h3 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #181727;
    margin-bottom: 24px;
}

.news_card p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
    margin-bottom: 30px;
}

/*home main -> news*/
/*home main -> contacts*/
.contacts {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact_text p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
}

.contact_media {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact_media span {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
}

.contact_media span img {
    vertical-align: bottom;
    width: 24px;
    height: 24px;
}

.contact_form {
    width: 504px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.contact_form textarea {
    height: 161px;
    padding: 8.5px 16px;
    resize: none;
    /* Grey/100 */
    outline: none;
    color: #BFBFBF;
    background: #F2F2F2;
    border-radius: 8px;
    border: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.contact_form input::placeholder, .contact_form textarea::placeholder {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #BFBFBF;
    transition: all 0.5s;
}

.contact_form input:hover::placeholder, .contact_form textarea:hover::placeholder {
    color: white;
    transition: all 0.5s;
}

.contact_form input:hover, .contact_form textarea:hover {
    background: #beb7fc;
    color: white;
    transition: all 0.5s;
}

.contact_form input:focus, .contact_form textarea:focus {
    transition: all 0s;
    outline: solid #5F51FF 2px;
    text-shadow: none;
    background: #F2F2F2;
    color: #BFBFBF;
}

.contact_form input:focus::placeholder, .contact_form textarea:focus::placeholder {
    color: #BFBFBF;
    transition: all 0s;
}

/*home main -> contacts*/
/*home main*/

/*memory main*/
/*memory main -> memory_nav*/
.memory_nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.memory_nav_actions {
    display: flex;
    gap: 16px;
    height: fit-content;
}

/*memory main -> accounts_list*/
.accounts_list {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 56px;
}

/*memory main -> accounts_list*/

/*memory main -> drawer*/
/* CSS стилі для бокового меню (drawer) */

/* Сховати бокове меню (drawer) за межами екрану */
.drawer_content {
    background: #FFFFFF;
    padding: 64px 24px;
    border-radius: 56px 0px 0px 56px;
    position: absolute;
    top: 0;
    right: 300px;
    width: 355px;
    height: 100%;
    z-index: 9999;
    transition: transform 0.3s ease-out;
    transform: translateX(300px);
}

.drawer_header {
    display: flex;
    width: 100%;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
}

.drawer_header h3 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 44px;
    text-transform: uppercase;
    color: #181727;
}

.drawer_header img {
    cursor: pointer;
    width: 28px;
    height: 28px;
}

.drawer_tag_list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.drawer_tag_list span {
    height: fit-content;
    background: #8E85FF;
    border-radius: 30px;
    padding: 4px 8px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    display: flex;
    width: fit-content;
    align-items: center;
}

.drawer_tag_list span img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    vertical-align: bottom;
    filter: invert(1);
}

.drawer_form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 28px;
    gap: 18px;
}

.drawer_form button {
    margin-top: 20px;
}


/*memory main -> drawer*/
/*memory main*/


/*services main*/
/*services main -> services_page*/
.services_page {
    width: 100%;
}

/*services main -> services_page*/

/*services main -> modal*/
.modal, .memory_drawer {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Півпрозорий чорний фон */
    -webkit-animation-name: fadeIn; /* Назва анімації */
    -webkit-animation-duration: 0.5s; /* Тривалість анімації */
    animation-name: fadeIn;
    animation-duration: 0.5s;

}
.modal{
    align-items: center;
}
.modal.fadeOut {
    -webkit-animation-name: fadeOut;
    -webkit-animation-duration: 0.5s;
    animation-name: fadeOut;
    animation-duration: 0.5s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Анімація для закриття модального вікна */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Стилі для контенту модального вікна */
.modal-content {
    background: #FFFFFF;
    border-radius: 24px;

    margin: 15% auto;
    max-width: 830px;
    width: 58%;
    display: flex;
    gap: 30px;
    height: fit-content;
}

.serv_modal_descr {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.serv_modal_descr h3 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 44px;
    color: #181727;
}

.serv_modal_descr p, .modal-desc {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    letter-spacing: -0.05em;
    color: #181727;
}

.serv_modal_card {
    border-radius: 24px;
    background: #181727;
    width: 280px;
    display: flex;
    flex-direction: column;
}

.serv_modal_card_text {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 34px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    justify-content: space-between;
}

.serv_modal_card_decr ul {
    margin-top: 32px;
    list-style: disc;
    margin-left: 20px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/*services main -> modal*/
/*services main*/

/*detail-memory main*/
.det_tab_scroll {
    margin-bottom: 20px;
    margin-top: 0px !important;
}

.det_tab_scroll ul li {
    padding: 0px !important;
}

.detail_tabs {
    transition: all 0.5s;
    margin-top: 50px;
    padding: 8px;
    background: #FFFFFF;
    border: 1px solid #BDB8FF;
    border-radius: 24px;
}

.detail_tabs ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #181727;
}

.detail_tabs ul li {
    cursor: pointer;
    padding: 5px;
    width: 25%;

}

.det_tab_act {
    background: #BDB8FF;
    /* Primary/Default */
    color: #5F51FF;
    border: 4px solid #5F51FF;
    border-radius: 16px;
}

/*detail-memory main*/

.more-options{
    display: flex;
    place-content: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #FFF;
    z-index: 3;
    font-size: 32px;
    align-items: center;
}
.more-options svg{
    fill: black;
}
.more-options:hover{
    z-index: 3;
    background: #5F51FF;
}
.more-options:hover svg{
    fill: white;
}
.more-options:hover .opts{
    display: flex;
}
.opts-container{
    display: flex;
    flex-direction: column;
    place-items: end;
}
.opts{
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 12px;
}
.opts a{
    padding: 5px 10px;
    background: white;
    border-radius: 12px;
    color: black;
}
.opts a.delete-opt{
    color: red;
}
/*detail-memory main -> memory_profile_card*/
.memory_profile_card {
    margin-top: 56px;
    display: flex;
    width: 100%;
    gap: 56px;
}

.prof_card_avatar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.prof_card_avatar > img {
    width: 392px;
    height: 385px;
    object-fit: cover;
    background: #D9D9D9;
    border-radius: 16px;
}

.prof_card_avatar_btn {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prof_card_info {
    width: 100%;
}

.prof_card_info_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.prof_card_info_header h3 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 44px;
    color: #181727;
}

.prof_card_info_tags {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.prof_card_info_big_tags {
    margin: 24px 0;
    display: flex;
    gap: 16px;
}
.prof_card_info_big_tags:first-child{
    margin-top: 0;
}
.prof_card_info_item {
    min-height: 98px;
    width: 100%;
    background: #F2F2F2;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.prof_card_info_item span:nth-child(1), .prof_card_rewards > span {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #181727;
}

.prof_card_info_item span:nth-child(2), .prof_card_rewards_item span {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #181727;
    /*display: -webkit-box;*/
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    /*overflow: hidden;*/
}

.prof_card_rewards_list {
    width: 100%;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    max-width: 824px;
}

.prof_card_rewards {

    width: 100%;
    background: #F2F2F2;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    margin-top: 24px;
}

.prof_card_rewards_item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: fit-content;
}

.prof_card_rewards_item .reward_img {
    width: 72px;
    height: 72px;

    /* Primary/Light */

    background: #8E85FF;
    border-radius: 16px;
}

/*detail-memory main -> memory_profile_card*/

/*detail-memory main -> det_biography*/
.det_biography {
    width: 100%;
}

.det_biography {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.det_biography_part {
    display: flex;
    gap: 56px;
}

.det_biography_part > div:nth-child(1) {
    width: 44%;
}

.det_biography_part > div:nth-child(2) {
    width: 56%;
}
.tabs_title h2 , .tabs_title h3{
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    line-height: 44px;
    text-align: justify;
    color: #181727;
}
.tabs_title h2{
    font-size: 32px;
}
.tabs_title h3{
    font-size: 30px;
}

.page-content .tabs_title h2 , .page-content .tabs_title h3{
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    line-height: 44px;
    text-align: justify;
    color: #181727;
}
.page-content .tabs_title h2{
    font-size: 32px;
}
.page-content .tabs_title h3{
    font-size: 30px;
}

.tabs_title {
    position: relative;
    width: fit-content;
}

.tabs_title:after {
    top: 24px;
    right: -15px;
    z-index: -1;
    position: absolute;
    content: '';
    display: block;
    width: 80%;
    height: 28px;
    background: #8E85FF;
    border-radius: 8px;
}

.det_biography_title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.det_biography_title h4 {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #181727;
}

.det_biography_text {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.det_biography_text p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
}

.det_bio_img p, .page-content .group-flex.group-nowrap figure figcaption {
    margin-top: 10px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
}

.det_biography_title .det_bio_img {
    max-width: 280px;
}
.det_bio_img.vh img{
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.det_biography_part video{
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    max-height: 80vh;
}

/*detail-memory main -> det_biography*/

/*detail-memory main -> det_quotes*/
.quotes_list{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 80px 56px;
    justify-content: space-between;
}
.quotes_list>div{
    max-width: 616px;
}
.det_quotes {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.quotes_item {
    width: 100%;
    position: relative;
    background: #5F51FF;
    border-radius: 16px;
}

.quotes_item:before {
    content: '';
    display: block;
    background: url("../images/icons/quotes.svg") no-repeat;
    background-size: contain;
    width: 47px;
    height: 59px;
    position: absolute;
    top: -20px;
    left: 34px;
}

.quotes_item_text {
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.quotes_item_text p{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.quotes_item_text span {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #FFFFFF;
}

.quotes_item_text span img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: bottom;
    margin-right: 16px;
}

.det_bio_quotes_text, .quotes_item blockquote p  {
    padding: 40px 32px;
}

.det_bio_quotes_text, .quotes_item blockquote p, .quotes_item .det_bio_quotes_text p {
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.det_bio_img_block {
    width: 100%;
}

.det_bio_img_block img {
    width: 100%;
}

/*detail-memory main -> det_quotes*/

/*detail-memory main -> gallery*/
.gallery{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.gallery_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gall_nav{
    display: flex;
    gap: 16px;
}
.gall_nav_left img{
    transform: rotate(180deg);
}
.gall_nav_disable{
    opacity: 0.5 !important;
}
.gall_nav div {
    cursor: pointer;
}
.gall_nav>div:hover {
    opacity: 0.8;
    transition: all 0.5s;
}
.gallery_list{
    display: flex;
    gap: 56px;
}
/*detail-memory main -> gallery*/

/*detail-memory main -> location*/
.det_location{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.location_tags{
    display: flex;
    gap: 56px;
}
.location_item{
    width: 100%;
    background: #F2F2F2;
    border-radius: 16px;
    display: flex;

    gap: 8px;
    padding: 24px 16px;
}
.location_item_text{
    display: flex;
    flex-direction: column;
    gap: 6px;

}
.location_item_text span:nth-child(1){
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #181727;
}
.location_item_text span:nth-child(2){
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #181727;
}

/*detail-memory main -> location*/

/*detail-memory main -> det_link*/
.det_link{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.link_tags{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0px;
    justify-content: space-between;
}
.link_tags_item{
    background: #F2F2F2;
    border-radius: 16px;
    padding: 24px 16px;
}
.link_tags_item span:nth-child(1){
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    letter-spacing: -0.05em;
    color: #181727;
}
.link_tags_item span:nth-child(1) a{
    margin-left: 5px;
}
.link_tags_item span:nth-child(2){
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    letter-spacing: -0.05em;
    color: #181727;
}

/*detail-memory main -> det_link*/
/*detail-memory main*/

/*faq main*/
.faq{
    width: 100%;
}
.faq h1{
    margin: 50px 0;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 900;
    font-size: 92px;
    line-height: 120%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}
.faq_list{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.collapse{
    padding-bottom: 25px;
    border-bottom: 2px solid #BFBFBF;;
}
.collapsible {
    width: 100%;
    display: flex;
    justify-content: space-between;
background: transparent;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    border: 0;
cursor: pointer;
    display: flex;
    align-items: center;
    color: #181727;
}
.collapsible .icon {
    display: inline-block;
    margin-right: 5px;
    font-size: 35px;
    text-align: center;
    font-weight: normal;
    color: #5F51FF;
}
.content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #181727;
}
.content p{
    margin-top: 16px;
}
.collapsible.active + .content {
    max-height: 1000px;
}
/*faq main*/
/*memory card laraberg*/
.page-content{
    gap: 80px;
    display: flex;
    flex-direction: column;
}
.page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6{
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: #181727;
}
.page-content h2{
    font-size: 32px;
}
.page-content h3{
    font-size: 30px;
}
.page-content h4{
    font-size: 28px;
}
.page-content h5{
    font-size: 26px;
}
.page-content h6{
    font-size: 24px;
}
.page-content p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #181727;
}

.group-flex{
    width: 100%;
    display: flex;
}
.group-nowrap{
    flex-wrap: nowrap;
    gap: 56px;

}
.group-wrap{
    flex-wrap: wrap;
}
.group-vertical{
    flex-wrap: wrap;
}
.group-flex.group-nowrap *:nth-child(odd) {
    width: 44%;
}

.group-flex.group-nowrap *:nth-child(even) {
    width: 56%;
}
.page-content .group-flex.group-nowrap figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.page-content .gallery .slick-next:before, .page-content .gallery .slick-prev:before{
    background: url('/site/images/material-symbols_arrow-back-rounded.svg') no-repeat;
    width: 24px;
    height: 24px;
    display: flex;
    content: '';
}

button.slick-next, button.slick-prev{
    top:0;
    display: flex;
    place-content: center;
    place-items: center;
    background: #5F51FF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
button.slick-next{
    right: 0;
    transform: rotate(180deg) translateY(50%);
}
button.slick-prev{
    right: 56px;
    left: inherit;
}
.gallery{
    position: relative;
}
.gallery .slick-slider{
    position: unset;
}

.gallery .slick-next:hover, .gallery .slick-prev:hover{
    color: white;
    background: #5F51FF;
    opacity: 0.9;

}
.gallery .slick-next:focus, .gallery .slick-prev:focus{
    color: white;
    background: #5F51FF;
}

.gallery .slick-slide{
    width: 100%;
}
.gallery .slick-slider .slick-slide{
    margin: 0 28px;
    object-fit: cover;
    display: flex;
    height: 284px;
    border-radius: 16px;
}
.gallery .slick-slider .slick-list{
    margin: 0 -28px;
}
.page-content .full-size-img img{
    width: 100vw;
    height: auto;
    margin-left: calc((1288px - 100vw) / 2);
    margin-right: calc((1288px - 100vw) / 2);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a{
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #181727;
}


.user-photo{
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.user-block{
    display: flex;
    align-items: center;
    gap: 10px;

}
.user-name{
    font-family: MacPaw Fixel;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;

}
.button-dd{
    background-color: white;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
/*profile*/
.profile-container{
    display: flex;
    gap: 60px;
    width: 100%;
}
.profile-nav{
    display: flex;
    flex: 20%;
    flex-wrap: wrap;
    gap: 40px;
    height: fit-content;
}
.profile-content{
    display: flex;
    flex-direction: column;
    flex: 80%;
}
.profile-user{
    display: flex;
    background: #F2F2F2;
    border-radius: 16px;
    padding: 24px 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.profile-photo{
    width: 96px;
    height: 96px;
}
.profile-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.profile-name p{
    font-family: MacPaw Fixel;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
}
.profile-email p{
    font-family: MacPaw Fixel;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: #8C8C8C;
}
.profile-tab.active, .profile-tab, .logout-tab{
    width: 100%;
}
.profile-tab.active a{

    background: #5F51FF;
    color: white;
}
.profile-tab.active a:hover, .profile-tab a:hover{
    opacity: 0.8;
}
.profile-credentials{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    gap: 10px;
}
.profile-menu{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}
.profile-tab a{

    background: #F2F2F2;
    color: black;
}
.logout-tab a{
    background: white;
    color: #EA4235;
}
.logout-tab a:hover{
    color: red;
}
.profile-tab a, .profile-tab.active a, .logout-tab a {
    font-family: MacPaw Fixel;

    font-weight: 600;
    font-size: 18px;
    display: flex;
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
}
.edit-header h3, .profile-content h3{
    color:  #181727;

    font-family: MacPaw Fixel;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
    margin-bottom: 50px;
}
.subs-item{
    display: flex;
    width: 100%;
    border-radius: 20px;
    background: #F2F2F2;
}
.subs-item .status{
    width: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.subs-item .status.in_progress{
    background: #FBD300;
}
.subs-item .status.canceled{
    background: #EA4235;
}
.subs-item .status.done{
    background: #00FB37;
}
.subs-items{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.subs-content{
    padding: 10px 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.subs-info{
    display: flex;
    flex-direction: column;
}
.subs_id{
    color:  #BFBFBF;
    text-align: justify;

    /* Inter/Regular/16 (-5%) */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.8px;
}
.subs-info h5{
    color:  #181727;
    text-align: justify;

    /* Heading/H5 */
    font-family: MacPaw Fixel;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%; /* 24px */
    text-transform: uppercase;
    padding-top: 4px;
    padding-bottom: 8px;
}
.subs-status{
    color: #727272;
    text-align: justify;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.subs-price{
    color: #181727;
    text-align: justify;

    /* Macpaw/Bold/22 */
    font-family: MacPaw Fixel;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 26.4px */
}
.sub-price{
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column;
}
.sub_date{
    color: #181727;
    text-align: justify;
    /* Inter/Regular/18(-5%) */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: -0.9px;
}
.micro-header{
    color:  #181727;

    /* Macpaw/Bold/24 */
    font-family: MacPaw Fixel;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 28.8px */
    margin-bottom: 40px;
}
.edit-container{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.edit-header, .micro-header{
    width: 100%;
    display: block;
}
.edit-avatar{
    width: 27%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.edit-creds{
    display: flex;
    width: 73%;
}
.edit-body{
    display: flex;
}
.edit-creds .card-body{
    gap: 50px 65px;
}
.edit-creds .input-area{
    flex: 0 0 calc(50% - 33px);
}
.edit-password{
    margin-top: 70px;
    width: 65%;
}
.passwords{
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    gap: 10px 55px;
}
.passwords .input-area{
    flex: 0 0 calc(50% - 27.5px);
}
.reset-pass{
    justify-content: end;
}
.input-area .submit{
    margin-top: 70px;
}
.edit-body .file-input-area{
    flex-basis: 27%;
}
.edit-body .file-input-area .add-photo-btn{
    right: calc(50% - 50px);
    bottom: 20px;
}
.payment-container{
    margin-top: 30px;
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 56px;
}
.payment-container .payment-info{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.payment-info .primary_button{
    margin-top: 20px;
    width: 50%;
}
.payment-container .service-info{
    width: 30%;
    height: auto;
    min-height: 300px;
    max-height: 600px;
    border-radius: 32px;
    background: linear-gradient(180deg, #FFF 0%, #5546FF 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.service-data{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: white;

}
.service-data div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.service-data div img{
    filter: invert(1);
}
.service-data div p{
    color:  #5F51FF;
    font-family: MacPaw Fixel;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%; /* 24px */
    text-transform: uppercase;
}
.to-pay{
    display: flex;
    flex-direction: column;
    gap:10px
}
.to-pay p:first-child{
    color: white;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.to-pay .price{
    color: white;
    font-family: MacPaw Fixel;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
}
/*steps*/
.steps{
    width: 33.3%;
    justify-content: space-between;
    display: flex;
    gap: 10px;
}

.step{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 105px;
}
.step.active .step-order{
    color: white;
    background: #5F51FF;
    border: 1px solid #5F51FF;

}
.step-order{
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #BFBFBF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-name{
    text-align: center;
    font-family: MacPaw Fixel;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: #181727;
}
.steps-between{
    height: 3px;
    margin-top: 40px;
    width: 100%;
    background: linear-gradient(90deg, #5F51FF 0%, #F2F2F2 100%);

}
.steps-between.active{
    background: #5F51FF;
}
.first-step-container{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 56px;
}
.first-step-container .container-step{
    width: 25%;

}

.hide{
    display: none;
}
.choose-sub{
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: #BFBFBF;
    padding: 16px;
    gap: 16px;
    min-height: 220px;
}
.first-step-container .subs-count{
    width: fit-content;
    place-self: end;
    padding: 8px;
    border-radius: 16px;
    background: #FFF;
    height: fit-content;
}
.first-step-container img{
    place-self: center;
    width: 75px;
    object-fit: cover;
}
.first-step-container .sub-title{
    color: #FFF;
    text-align: center;
    font-family: MacPaw Fixel;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
    text-transform: uppercase;
    width: 100%;
}
input[type='radio']{
    visibility: hidden;
}
input[type="radio"]:checked + label {
    background-color: #5F51FF;

}
.next-step-button{
    width: 30%;
    margin-top: 40px;
}
#error{
    color: red;
    font-family: MacPaw Fixel;
    font-size: 20px;
    font-style: normal;
}
.second-step-container{
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 66.6%;

}
.section-container{
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;

}
.section-header{
    color: #181727;

    font-family: MacPaw Fixel;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    width: 100%;

}
.section-container .file-input-area{
    justify-content: unset;
}
.section-container .file-input-area .add-photo-btn{
    right: unset;
    left: 54px;
}
.form-create{
    width: 100%;
}
.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-between button{
    white-space: nowrap;
}
.create-memory-textarea{
    padding: 12px 16px;
    width: 100%;
    background: #F2F2F2;
    border: none;
    border-radius: 8px;
    max-width: 100%;
}
.create-memory-textarea-small{
    height: 60px;
}
.create-memory-textarea-big{
    height: 120px;
}
.create-memory-textarea:focus{
    outline: 1px solid #5F51FF;
}
.create-memory-select{
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    display: flex;
    border-radius: 8px;
    border: 1px solid #BFBFBF;
    background: #F2F2F2;
    width: 33%;
}
.create-memory-select-sex{
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    display: flex;
    border-radius: 8px;
    border: 1px solid #BFBFBF;
    background: #F2F2F2;
    width: 100%;
}
.mbottom-24{
    margin-bottom: 24px;
}
.delete-relative, .delete-edu, .delete-activity, .delete-award, .delete-link, .delete-quote,.delete-rel-quote, .delete-award{
    background: #d71111;
    color: white;
    font-size: 14px;
    padding: 12px 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
}
.delete-relative:hover, .delete-edu:hover, .delete-activity:hover, .delete-award:hover, .delete-link:hover,.delete-rel-quote:hover, .delete-quote:hover, .delete-award:hover{
    background: red;
    cursor: pointer;
}
#relative-fields, #edu-fields, #activity-fields, #award-fields, #link-fields, #quote-fields, #awards-fields{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.edu-field, .activity-field, .award-field, .link-field{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.blocks{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}
.block-name{
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    cursor: pointer;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF !important;
    border: none;
    padding: 10px 12px;
    background: #5F51FF;
    border-radius: 8px;
    max-height: 42px;
}
.for-quote{
    gap: 24px;
}
[class*="imagePreviewContainer"]{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    margin-top: 20px;

}
.imgWrapper{
    display: flex;
    max-width: 200px;


}
.imgWrapper img{
    width: 100%;
    max-height: 150px;
    object-fit: cover;
}
.deleteImageBtn{
    display: flex;
    flex-direction: column;
    place-self: start;
    background: none;
    border: none;
    color: red;
    font-size: 16px;
    font-weight: 600;

}
.input-file-label{
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    cursor: pointer;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #5F51FF ;
    border: none;
    padding: 10px 12px;
    background: #E1E1E1;
    border-radius: 8px;
    max-height: 42px;
}
input[name='gallery-files']{
    display: none;
}
.primary_delete_button {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    cursor: pointer;
    font-family: 'MacPaw Fixel';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF !important;
    border: none;
    padding: 10px 12px;
    background: #ff2525;
    border-radius: 8px;
    max-height: 42px;
}
.primary_delete_button:hover{
    cursor: pointer;
    background: red;
}
.heading-text-wrapper{
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;

}

.heading-wrapper{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.text-wrapper{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.imageUpload{
    visibility: hidden;
}
.heading-wrapper:nth-child(2){
    width: 60%;
}
.heading-wrapper .imgWrapper{
    max-width: unset;
    width: 100%;
}
.heading-wrapper div img{
    width: 100%;
    object-fit: cover;
    max-height: 250px;
}
.full-size-photo-wrapper .imgWrapper{
    width: 100%;
    max-width: unset;
}
.full-size-photo-wrapper .imgWrapper img{
    max-height: 400px;
}
.imgWrapper video{
    width: 100%;
}
#memory-blocks{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.post-types{
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: flex;
    border: 1px solid #BDB8FF;
    border-radius: 24px;
    padding: 8px;
    gap: 16px;
}
.post-type{
    min-width: 20%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    padding: 12px;
    color: black;
}
.post-type.active{
    color: #5F51FF;
    border-radius: 16px;
    border: 4px solid #5F51FF;
    background-color: #BDB8FF;
    font-weight: 700;
    padding: 8px;

}
.gallery .slick-track{
    margin-left: unset;
}
.det_biography_text .relative-name{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.det_biography_text .relative-name span{
    font-weight: 300;
}
.unset-filter:hover{
    cursor: pointer;
}
