@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: 60%;
	--max_width: 600px;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--absolute_bg);
    /* box-sizing: border-box; */
}


/* Animations --------------------------------------------------------------------- */
@keyframes scroll_right {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%); /* 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: 50px 20px 20px 20px;
    color: #000;
    text-align: center;
    font-family: var(--primary-font);
    font-size: calc(12px + 10vw);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    z-index: 1;
}

.body_title {
    position: relative;
    color: #000;
    text-align: center;
    font-family: var(--primary-font);
    font-size: calc(12px + 7vw);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    z-index: 1;
    margin: 30px 0 30px 0;
    padding: 5px;
}

.title_sub_text{
	position: relative;
	width: 100%;
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: calc(12px + 2vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 20px 0 20px;
    letter-spacing: .05em;
	box-sizing: border-box;
}

.action_button_container{
    gap: 10px;
    align-self: stretch;
    margin: 20px 0 50px 0;
    cursor: pointer;
}

.action_button {
    display: flex;
    width: 40vw;
    height: 15vw;
    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: calc(10px + 2vw);
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* letter-spacing: 0.1em; */
}

.module_button {
    display: inline-flex;
    padding: 6px 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    margin-bottom: 20px;
    
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    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;
}



/* Page ------------------------------------------------------------------- */
#page_wrapper{
	position: relative;
	height: 100%;
}

.geometries {
    opacity: var(--bg_geometries_opacity);
	width:50%;
}

/* Nav Bar ---------------------------------------------------------------------------- */
#nav_bar_container {
    position: fixed;
    display:flex;
    justify-content: center;
    z-index: 100;
    width: 100%;
    bottom: 60px;
    max-width: var(--max_width);
}

#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: 150px;
    margin:15px;
}

#top_logo_img img {
    width: 100%;
    height: auto;
    max-width: inherit;
}

/* Page wrapper and background  ------------------------------------------------------------------- */
#site_wrapper {
    position: relative;
    background-color: var(--absolute_bg);

}

#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;
	
}

/* GENERAL ------------------------------------------------------------------------------------ */ 
.inner-wrapper {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* Ensure the wrapper fills the #page_elements */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* elements: top title  ------------------------------------------------------------------- */
#pe_top_title {
    position: relative;
	border-radius: 16px;
	overflow: hidden;
}

#img_bg_1_A {
    position: absolute;
    left: -50px;
    top: -50px;
	z-index: 0;
}

#img_bg_1_B {
	position: absolute;
    top: -40px;
    right: -50px;
    z-index: 0;
}

/* modules carousell  ------------------------------------------------------------------- */
#modules_carousell{
	position: relative;
	width:100%;
	display:flex;
	flex-direction: row;
	align-items: center;
	height: auto; /* Height can grow based on content */
    transform: translateX(10px);
	gap: 50px;
	z-index: 10;
	margin-bottom: 100px;
}

.carousell_animation {
	display: flex;
	gap:30px;
	/* animation: scroll_right 0.5s linear infinite; */
	/* width:100%; */
	/* height: 100%; */
}

.module_carousell_item {
	display: flex;
	flex-direction: column;
	align-items: start;
	/* Adjust based on the number of items you want to show at once */
	/* flex: 0 0 0%; */
	/* padding: 0px; */
	/* box-sizing: border-box; */
	/* max-height: 300px; */
	/* width: auto; */
	/* height: 10vh; */
	
}

.module_image {
	height: 37vw;
}


/* Reinvent the wheel  ------------------------------------------------------------------- */
#pe_body_title {
    margin-top: 50px;
    margin-bottom: 25px;
}

#img_bg_2_A {
    position: absolute;
    top: -40px;
    left: -80px;
}

#img_bg_2_B {
    position: absolute;
    top: -40px;
    right: -95px;
    z-index: 0;
}

/* Product Features  ------------------------------------------------------------------- */

#product_features {
    position: relative;
    display: flex;
    flex-direction: column;
    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: 400;
    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: 50vw;
}


/* 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: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 40px;
    z-index: 1;
}

#daniel_logo{
    width: 50vw;
    margin: 50px 0 50px 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: 30px;
    margin-bottom: 30px;

}

.continuation_icon img {
    width: 80px;
}


/* Body Title 2 you will never go back ------------------------------------------------ */
#pe_body_title2 {
    margin-bottom: 50px;;
}

#img_bg_4_A {
    position: absolute;
    top: -140px;
    left: -365px;
    z-index: 0;
}

/* Testimonial and sales -------------------------------------------------------------- */
#pe_testimonial_and_sales {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0 20px 0;
    gap: 50px;
    width:100%;
}

#card_testimonial {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    border-radius: 20px;
    color: #000;
    font-family: var(--primary-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;

    z-index: 1;
    padding: 30px;
    
    width:90%

}

#mike_card {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items:last baseline;
    gap: 50px;
    margin-top: -10px;
}

#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;
    width: 75vw;
}

.testimonials_sales_cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 10px 30px 00px;
    width: 80vw;
}

.t_sales_card_title {
    display: flex;
    justify-content: center;
    color: #000;
    font-family: var(--primary-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; 
    margin: 0 0 10px 0;
}

.t_sales_card_text {
    color: #000;
    font-family: var(--secondary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 20px;
}


/* 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;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    padding: 0 20px 20px 20px;
    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;
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    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;
}

/* Feature Modules and more ---------------------------------------------------------------------------- */
#pe_body_title4{
    margin: 0 10px 50px 10px;
}

/* 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: 10px;
    
}

#module_btns_anim_wrapper1 {
    transform: translateX(-100%);
}

#modules_icons_carousell_right {
    transform: translateX(-100%);

}

.modules_icons{
    display: flex;
    margin: 30px 0 30px 0;
    gap: 50px;
}


.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: center;
    flex-direction: column;
    gap:40px;
    width: 100%;
}

#sales_cards_left{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-radius: 20px;
    background-color: #000;
    overflow: hidden;
    width: 95%;
    height: auto;
}

#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;
    gap: 10px;
    min-width: 44vw;
    width: 44vw;
    height: 20px;
    margin-top: 53px;
    margin-left: 36px;
    z-index: 1;
}
#availability_status_led {
    background-color: #6FFF75;
    border-radius: 100px;
    width: 13px;
    height: 13px;
    z-index: 10;
}
#join_title{
    color: #EEE;
    font-family: var(--primary-font);
    font-size: calc(40px + 7vw);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 5%;
    z-index: 1;
}
#join_mk_logo {
    position: relative;
    display: flex;
    width: 80vw;
    margin: 10px 30px 40px 5%;
}
#join_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
#join_logo_negative {
    width: 33vw;
}
#join_left_card_anchor:hover {
    text-decoration: none;
}
.join_buttons {
    position:relative;
    padding: 0 0 30px 0;
    flex-shrink: 0;
    border-radius: 20px;
    border: 1px solid #5A5A5A;
    margin: 0 30px 20px 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: 5%;
}
.join_button_text {
    color: #FFF;
    font-family: var(--primary-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    margin: 20px 10% 0 10%;
}
.join_arrow {
    position: absolute;
    bottom: 20px;
    right: 24px;
}

/* Sales cards RIGHT ---------------------------------------------------------------- */

#sales_cards_right{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background-color: #ffffff;
    width: 95%;
    padding-bottom: 5vw;
    box-shadow: 8px 10px 30px 0px rgba(0, 0, 0, 0.20);
}

#sales_card_right_title {
    color: #000;
    font-family: var(--primary-font);
    font-size: calc(30px + 5vw);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 30px;
}

#join_plans_selection_bg{
    position: relative;
    display: flex;
    background-color: #000;
    width: 62vw;
    max-width: 380px;
    height: 50px;
    border-radius: 60px;
    max-width: 400px;
    margin: 8vw 0 8vw 0;
}

.join_button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30vw;
    max-width: 180px;
    height: 46px;
    margin-top: 2px;
    margin-left: 2px;
    padding: 22px 0 18px 0;
    gap: 20px;

    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.2s ease, color 0.2s ease, transform 0.13s ease;
    
}

#join_pro_button {
    position: absolute;
    right: 2px;
}

.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: 3vw 0 3vw 0;
}

#join_price_number {
    color: #000;
    font-family: var(--primary-font);
    font-size: calc(30px + 8vw);
    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;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 5vw;
    color: #000;
    font-family: var(--secondary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#join_line{
    display: flex;
    width: 60vw;
    height: 5vw;
    flex-direction: column;
    justify-content: center;
    border-style: solid;
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    border-width: 1.5px;
    border-bottom-color: #00000076;
}

.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-top: 20px;
}

#join_whats_included_list {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.join_whats_included_list {
    position: relative;
    display: flex;
    align-items: flex-start;
}

ul {
    list-style-type: circle;
    padding-left: 3vw;
}
li {
    color: #333;
    margin-bottom: 3vw;
    margin: 5vw 10vw 5vw 10vw;

}

#join_get_started_button_container{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items:center;
    margin: 3vw 0  5vw 10vw;

}

#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: column;
    justify-content: center;
    /* gap: 150px; */
    margin-top: 10vw;

}

#questions_columns {
    max-width: 700px;
}

#questions_title{
    text-align: center;
    color: #000;
    font-family: var(--primary-font);
    font-size: calc(30px + 8vw);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 50px;
}

.question_card {
    margin-bottom: 5vw;
    /* height: 20vw; */
    /* width: 530px;
    max-width: 530px; */
}

.question_title {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px 25px 10px 30px;
    margin: 0 5px 0 5px;
    height: 5%px;
    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: 1vw 5vw 0 5vw;

    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-top: 40px;
    border-radius: 20px;
    margin: 10vw 5vw;
    /* height:490px;
    width:400px; */
    box-shadow: 8px 10px 30px 0px rgba(0, 0, 0, 0.20);
}

#book_call_title {
    position: relative;
    margin: 10px;
    color: #000;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: calc(20px + 3vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#book_call_button_text {
    font-weight: 400;
}
#schedule_now_btn {
    text-decoration: none;
    margin: 10px 0 30px 0;
}

/* 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;
}


/* Module buttons carousell ---------------------------------------------------------------- */

#module_buttons_carousell {
    margin-top: 50px;
    gap: 50px;
    display: flex;
    animation: scroll_right 15s linear infinite;
    width:200%;
}

#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: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    margin: 0 0 15vw 0;
    padding: 0;
 }

#mk_bottom_logo {
    width: 50vw;
}

#mk_bottom_letter_logo {
    width: 75vw;
    
}

.summary_links_line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    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;
}
