@font-face {
    font-family: 'Trobika';
    src: url('fonts/Trobika-Regular.otf') format('opentype')
}

* {
	/* --- debug only --- */
    /* outline: 1px solid red;   */
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
    --absolute_bg: #211b2c;
    --primary-font: "massilia", sans-serif;
    --secondary-font: "stevie-sans", sans-serif;
    --bg_geometries_opacity: 43%;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--absolute_bg);
}

#thinks {
    color: #FAF1FF;
    font-size: 35px;
}

/* Animations --------------------------------------------------------------------- */
@keyframes scroll_right {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%); /* Move by half the total width since items are duplicated */
    }
}


@keyframes scroll_left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(50%);
    }
}

.flex_column_cen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.titles{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top_heading {
    position: relative;
    margin-top: 100px;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
    font-family: var(--primary-font);
    font-size: calc(60px + 3vw);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    z-index: 1;
}

.body_title {
    position: relative;
    padding: 100px 0px 20px 0px;
    color: #000;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 67px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    z-index: 1;
}

.title_sub_text{
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 20px 0px;
    letter-spacing: .05em;
}

.action_button_container{
    gap: 10px;
    align-self: stretch;
    margin: 20px 0 50px 0;
    cursor: pointer;
}

.action_button {
    display: flex;
    width: 200px;
    height: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 8px;
    background: #0E9494;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.43);
}

.button_text{
    color: var(--White, #FFF);
    text-align: center;
    font-family: var(--secondary-font);
    font-size: clamp(16px, 2vw, 22px);/*calc(6px + 1vw);*/
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* letter-spacing: 0.1em; */
}

.module_button {
    display: inline-flex;
    padding: 12px 30px;
    align-items: center;
    border-radius: 30px;
    margin-bottom: 20px;
    
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.m_btn_blue {
    background: linear-gradient(0deg, #81D9FF 0%, #81D9FF 100%), #81D9FF;
}

.m_btn_green {
    background: linear-gradient(0deg, #90F0A5 0%, #90F0A5 100%), #90F0A5;
}
.m_btn_yellow {
    background: linear-gradient(0deg, #FFFA8E 0%, #FFFA8E 100%), #FFFA8E;
}
.m_btn_red {
    background: linear-gradient(0deg, #F09090 0%, #F09090 100%), #F09090;
}
.m_btn_magenta {
    background: linear-gradient(0deg, #DEB2F8 0%, #DEB2F8 100%), #DEB2F8;
}

.m_btn_orange {
    background: linear-gradient(0deg, #FFCBA6 0%, #FFCBA6 100%), #FFCBA6
}
.m_btn_black {
    background-color: #000;
    color: #FFF;
}
.m_btn_availability_green {
    background-color: #0E9494;
    color: #FFF;
}

.module_image {
    border-radius: 16px; /* not doing much */
}

.carousell_animation {
    display: flex;
    gap:50px;
    /* animation: scroll_right 15s linear infinite; */
    width:100%;
}

.module_carousell_item {
    flex: 0 0 0%; /* Adjust based on the number of items you want to show at once */
    padding: 0px;
    box-sizing: border-box;
}


/* Page ------------------------------------------------------------------- */
#page_wrapper{
    position: relative;
    height: 100%;
}

.geometries {
    opacity: var(--bg_geometries_opacity);
}

/* Nav Bar ---------------------------------------------------------------------------- */
#nav_bar_container {
    position: fixed;
    display:flex;
    justify-content: center;
    z-index: 100;
    width: 100%;
    bottom: 60px;
    /* max-width: 1440px; */
}

#nav_bar_bg {
    position: relative;
    display:flex;
    width: 685px;
    height: 58px;
    border-radius: 50px;
    background: #0C4545;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
}

#nb_arrow_up {
    width:22px;
    margin: 24px;
}

.nb_text {
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    margin: 25px;
    color: #FFF;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;

}

/* #nb_arrow_btn {
    padding: 10px;
} */

.nb_button{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0px 0 0px 0;
    margin: 4px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 60px;
    background: #0E9494;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
}

.nb_button:hover {
    background-color: #00000000;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
}

.nb_button:active {
    background: #0E9494;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
}
.nb_button.active, .nb_button.active:hover {
    background: #0E9494;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
}

.nb_btn_bg_hidden {
    background-color: #00000000;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 1.0) inset, 0px 0px 0px 0px rgba(0, 0, 0, 1.0);
}

/* Top Logo  ------------------------------------------------------------------- */
#top_logo {
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--absolute_bg);
}

#top_logo_img {
    max-width: 200px;
    height: auto;
    margin:15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#top_logo_img img {
    width: 100%;
    height: auto;
    max-width: inherit;
}

/* Page wrapper and background  ------------------------------------------------------------------- */
#site_wrapper {
    position: relative;
    background-color: var(--absolute_bg);
    /* max-width: 1440px; */
    /* width: 100%; */
    /* overflow-y: hidden; */
    /* padding-bottom: 70px; */
}

#background-div {
    position: absolute;
	/* max-width: var(--max_width); */
    width: 94vw;
	height: 100%; 

    background: url('images/bg_cell.svg') repeat; 
    background-color: #FAF1FF;

    border-radius: 30px;
	margin: 0 3vw 0 3vw;
}

#page_elements {
    position: relative;
    width: 94vw;
	height:100%;
	margin: 0vw 3vw 10vw 3vw ;
	border-radius: 30px;
	overflow:hidden;
}


/* elements: top title  ------------------------------------------------------------------- */
#pe_top_title {
    position: relative;
}

#img_bg_1_A {
    position: absolute;
    left: -80px;
    top: -118px;
}

#img_bg_1_B {
    position: absolute;
    top: -130px;
    right: -150px;
    z-index: 0;
}

/* modules carousell  ------------------------------------------------------------------- */
#modules_carousell{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px 50px 20px;
    gap: 50px;
    align-self: stretch;
    overflow-x: hidden;
    z-index: 10;
    margin-bottom: 160px;
}

/* Reinvent the wheel  ------------------------------------------------------------------- */
.body_title{
    position: relative;
    padding: 20px 0 20px 0;
    width: 100%;
}

#pe_body_title {
    margin-top: 50px;
}

#img_bg_2_A {
    position: absolute;
    top: -150px;
    left: -200px;
}

#img_bg_2_B {
    position: absolute;
    top: 40px;
    right: -150px;
    z-index: 0;
}

/* Product Features  ------------------------------------------------------------------- */

#product_features {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    padding: 0 100px 20px 100px;
    z-index: 1;
}

.feature_text {
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    letter-spacing: 0.05em;
}

.feature_item{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:30px;
    padding: 20px;
    
}

.feature_icon{
    max-width: 190px;
}


/* Featured testimonial  ------------------------------------------------------------------- */

.text_16{
    color: #000;
    text-align: center;
    text-decoration: underline;
    font-family: var(--secondary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
}

#pe_featured_testimonial {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    width: 100%;
    
}

.featured_testimonial {
    color: #000;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 40px;
    z-index: 1;
}

#daniel_logo{
    margin: 40px 0 20px 0;
}

#img_bg_3_A{
    position: absolute;
    top: -120px;
    right: -360px;
    z-index: 0;
}


/* Transition Icon  ------------------------------------------------------------------- */
.continuation_icon{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 50px;

}

/* Body Title 2 you will never go back ------------------------------------------------ */

#img_bg_4_A {
    position: absolute;
    top: -140px;
    left: -365px;
    z-index: 0;
}

/* Testimonial and sales -------------------------------------------------------------- */
#pe_testimonial_and_sales {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 20px 0;
    gap: 50px;
}

#card_testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    border-radius: 20px;
    padding: 40px 40px 40px 40px;
    color: #000;
    font-family: var(--primary-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    z-index: 1;
}

#mike_card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items:last baseline;
    gap: 50px;
}

#mike_card_text {
    position: relative;
    color: #000;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

#mike_job_position {
    position: relative;
    font-weight: 700;

}

#mike_testimonial_img {
    position: relative;
    max-width:390px;
    bottom: 0;
}

.testimonials_sales_cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    margin-bottom: 40px;
    max-width: 480px;
}

.t_sales_card_title {
    color: #000;
    font-family: var(--primary-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; 
    margin: 0 0 20px 0;
}

.t_sales_card_text {
    color: #000;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}


/* Membership benefits -------------------------------------------------------------- */

#img_bg_5_A {
    position: absolute;
    top: -250px;
    left: -380px;
    z-index: 0;
}
#img_bg_5_B {
    position: absolute;
    top: -140px;
    right: -250px;
    z-index: 0;
}

/* Membership benefits icons -------------------------------------------------------------- */

.membership_benefits {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    padding: 0 100px 20px 100px;
    z-index: 1;
    
}

.membership_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 320px;
    padding: 20px;
}

.mb_icon_text {
    position: relative;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    
}

.membership_icon {
    max-width: 190px;
    margin-bottom: 30px;
    
}


/* Continuation with background images -------------------------------------------------------------- */

#img_bg_6_A {
    position: absolute;
    top: -150px;
    left: -245px;
    z-index: 0;

}

#img_bg_6_B {
    position: absolute;
    top: -80px;
    right: -250px;
    z-index: 0;
}

/* Modules Buttons -------------------------------------------------------------- */
.modules_anim {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.modules_buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2vw;
    
}

/* #module_buttons1 {
    transform: translateX(-100%);
}
*/

#modules_icons_carousell_right {
    transform: translateX(-25%);
} 

.modules_icons{
    /* position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px 0 0px;
    gap: 50px;
    align-self: stretch;
    overflow-x: hidden; */
    display: flex;
    margin: 30px 0 30px 0;
    gap: 50px;

    z-index: 10;

}


.module_icon_img {
    max-width: 300px;
}

.modules_icons_item {
    position: relative;
    flex: 0 0 0%

}


/* Buttons -------------------------------------------------------------- */

#buy_modes {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.buy-modes-button-background {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #0C4545;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
    gap: 20px;
}

.product_button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.15s;
    width: fit-content;
    height: 62px;
    padding: 0 40px 0 40px;
    flex-shrink: 0;
    border-radius: 60px;
    background: #0C4545;
    
    color: #FFF;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; 
    z-index: 1;
}

.product_button:active  {
    background: #18a7a7;
    border-color: #20b3b3;
    border-width: 1px;
    border-style: solid;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.33) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    color: #0C4545;
}

.product_button:hover {
    background: #18a7a7;
    border-color: #20b3b3;
    border-width: 1px;
    border-style: solid;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.33) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    color: #0C4545;
}

.product_button:focus {
    background: #0E9494;
    box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
}


/* Sales cards LEFT ---------------------------------------------------------------- */
#join_top_continuation{
    margin-bottom: 100px;
}

#img_bg_7_A{
    position: absolute;
    top: 150px;
    right: -80px;
    z-index: 0;
}

#sales_cards {
    position: relative;
    display: flex;
    justify-content: center;
    align-items:stretch;
    gap:40px;
    height: 750px;
}

#sales_cards_left{
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: #000;
    max-width: 500px;
    min-width: 450px;
    overflow: hidden;
    padding-bottom: 43px;
    height: 100%;
}

#join_make_kontakt_bg {
    position: absolute;
    top: -90px;
    left: -30px;
    z-index: 0;
}

#slots_availability_button{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    padding: 20px 10px 20px 10px;
    gap: 10px;
    width: 190px;
    height: 30px;
    margin: 53px 0 30px 36px;
    z-index: 1;
}

#availability_status_led {
    background-color: #6FFF75;
    border-radius: 100px;
    width: 17px;
    height: 17px;
    /* margin: 0 10px 0 0 ; */
    z-index: 10;
}

#join_title{
    color: #EEE;
    font-family: var(--primary-font);
    font-size: 82px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 8%;
    z-index: 1;
}

#join_mk_logo {
    position: relative;
    max-width: 437px;
    margin: 10px 30px 50px 8%;
}

#join_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
}
#join_logo_negative {
    width:200px;
}

#join_left_card_anchor:hover {
    text-decoration: none;
}

.join_buttons {
    position:relative;
    height: 100%;
    border-radius: 20px;
    border: 2px solid #5A5A5A;
    margin: 0 30px 20px 30px;
    padding-bottom: 30px;
}

.join_button_title {
    color: #FFF;
    font-family: var(--primary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 23px;
    margin-left: 25px;
}

.join_button_text {
    color: #FFF;
    font-family: var(--primary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
    margin-left: 25px;
}

.join_arrow {
    position: absolute;
    top: 105px;
    right: 24px;
}

/* Sales cards RIGHT ---------------------------------------------------------------- */

#sales_cards_right{
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: #ffffff;
    max-width: 637px;
    min-width: 550px;
    overflow: hidden;
    padding: 0 50px 35px 50px;
    padding-bottom: 35px;
    height: 100%;
}

#sales_card_right_title {
    color: #000;
    font-family: var(--primary-font);
    font-size: calc(30px + 1vw);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 50px 0 50px 0px;
}

#join_plans_selection_bg{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #000;
    width: -moz-fit-content;
    width: fit-content;
    height: fit-content;
    border-radius: 60px;

}

.join_button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 155px;
    height: 40px;
    margin: 3px ;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 40px;
    background: #000;
    color: #FFD76F;
    font-family: var(--primary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: background-color 0.1s ease, color 0.1s ease, transform 0.13s ease; /* Include transform in the transition */
    transform: scale(1); /* Default scale */
}

.join_button:hover {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    
    background: #fcdf9339;
    color: #FFF;
    
}

.join_button.active {
    background: #FFD76F;
    color: #000;
}

.join_button:active {
    transform: scale(0.95);
}

#join_price {
    position: relative;
    display: flex;
    align-items: center;
    margin: 50px 0 0 30px;
}

#join_price_number {
    color: #000;
    font-family: var(--primary-font);
    font-size: calc(30px + 1vw);;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#join_price_per_month {
    color: #000;
    font-family: var(--primary-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: .1em;
}

#join_plan_description {
    display: flex;
    width: 434px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0 10px 30px;
    flex-shrink: 0;
    color: #000;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

#join_line{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    border-style: solid;
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-color: #00000044;
    border-width: 1.5px;
}

.join_whats_included_text{
    color: #000;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#join_whats_included{
    position: relative;
    display: flex;

    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    margin: 20px 0 0 60px;
}

#join_whats_included_list {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 0 20px 0;
}

.join_whats_included_list {
    position: relative;
    display: flex;
    align-items: flex-start;
}

ul {
    list-style-type: circle;
    padding-left: 20px;
}
li {
    color: #333;
    margin-bottom: 20px;
    margin-left: 70px;
    margin-top: 20px;
}

#join_get_started_button_container{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items:center;
    margin-left: 50px;
    margin-top: 10px;

}

#join_get_started_button {
    width: 135px;
    height: 44px;
    color: var(--White, #FFF);
    text-align: center; 
    font-family: var(--primary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-right: 20px;
}

#checkout_link:link {
    text-decoration: none;
}

#join_get_started_button_text{
    font-weight: 400;
}

#join_book_call_text{
    color: #000;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

a:link, a:active, a:visited {
    color: #000;
}
a:hover {
    color: #0E9494;
}


/* questions ------------------------------------------------------- */
#questions_book_call_container{
    display:flex;
    flex-direction: row;
    justify-content: center;
    gap: 150px;
    margin-top: 100px;

}

#questions_columns {
    max-width: 700px;
}

#questions_title{
    color: #000;
    font-family: var(--primary-font);
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 50px;
}

.question_card {
    margin-bottom: 20px;
    width: 530px;
    max-width: 530px;
}

.question_title {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px 25px 10px 30px;
    height: 40px;
    gap: 10px;
    align-self: stretch;
    border-radius: 20px;
    background: #C5E1E1;
    color: #000;
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.05em;
}

.question_title_text{
    width:100%;
}

.question_answer {
    display: none;
    background-color: #ffffff95;
    border-radius: 10px;
    border-style: dashed;
    border-width: 1.5px;
    border-color: #12027c31;
    /* max-width: 440px; */
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 4px;
    flex-direction: column;
    padding: 20px 20px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #000;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.question_arrow_wrapper{
    flex-shrink: 0;  
    display: flex;   
    align-items: center;    
}

.question_arrow {
    width: 16px;
}

#book_a_call_card {
    position: relative;
    display:flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF;
    padding: 40px 0 40px 0;
    border-radius: 20px;
    height: 440px;
    width:400px;
}

#book_call_title {
    position: relative;
    margin: 30px 55px 40px 40px;
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#book_call_button_text {
    font-weight: 400;
}
.schedule_now_btn {
    text-decoration: none;
}

/* Figma card ----------------------------------------------------------------------------- */

#figma_card_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;

}

#figma_card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF;
    width: 1000px;
    border-radius: 16px;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 40px;
    box-shadow: 8px 10px 30px 0px rgba(0, 0, 0, 0.20);
}

#f2k_bg_1_A {
    position: absolute;
    top: -180px;
    left: -440px;
    z-index: 0;
}

#f2k_bg_1_B {
    position: absolute;
    top: -75px;
    right: -190px;
    z-index: 0;
}

#f2k_logo{
    width: 200px;
}

#f2k_title {
    margin-top: 40px;
    color: #000;
    text-align: center;
    font-family: "Roboto Slab";
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#f2k_description {
    margin-top: 40px;
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#f2k_get_button {
    margin-top: 60px;
    font-weight: 500px;
}

#f2k_btn_link {
    text-decoration: none;

}


#fk2_sale_text {
    margin-top: 50px;
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#f2k_makers {
    margin-top: 10px;
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Module buttons carousell ---------------------------------------------------------------- */

#module_buttons_carousell {
    margin-top: 100px;
    gap: 50px;
    display: flex;
    animation: scroll_right 15s linear infinite;
    width:200%;
    z-index: 10;
}

#img_bg_8_A {
    position: absolute;
    top: -210px;
    left: -270px;
    z-index: 0;
}
#img_bg_8_B {
    position: absolute;
    top: -130px;
    right: -310px;
    z-index: 0;
}

#mk_big_logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px 0 50px 0;
 }

#mk_bottom_logo {
    width: 12vw;
    margin: 30px;
}

#mk_bottom_letter_logo {
    width: 60vw;
    padding-bottom: 20px
}

.summary_links_line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    color: #000;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

#summary_pricing:hover {
    text-decoration: underline;
    cursor: pointer;
}

#summary_contact:hover {
    text-decoration: underline;
    cursor: pointer;
}

#summary_get_started:hover {
    text-decoration: underline;
    cursor: pointer;
}

#summary_terms_and_conditions:hover {
    text-decoration: underline;
    cursor: pointer;
}

#summary_privacy_policy:hover {
    text-decoration: underline;
    cursor: pointer;
}

.summary_links:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #000;
    
}

.summary_links {
    text-decoration: none;
}

a {
    color:#000;
}
