.body {
    padding-bottom: 0;
    margin-top: 0;
}
.topnav {
	background: rgb(255 255 255 / 10%);
	border-bottom: unset;
}

.home_container {
    width: 100%;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.home_section {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 50px 0;
}

.hs_max_width {
    max-width: 1000px;
    width: 100%;
    padding: 100px 50px;
    box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
    .hs_max_width {
        padding: 50px 30px;
    }
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media screen and (max-width: 1000px) {
    .row {
        flex-direction: column;
    }
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.para_heading {
    text-align: center;
    margin: 20px 0;
    font-size: 70px;
    max-width: 1000px;
    width: 100%;
    position: relative;
}

.content_para {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: normal;
    margin: 100px 0;
}

.content_para *:first-child {
    margin-right: 40px;
}

.content_para_img {
    display: flex;
    flex-direction: column;
    align-items: center;
	    max-width: 500px;
}

.content_para_img img {
    max-width: 100%;
}

.content_para > * {
    width: 50%;
}

.content_para_text {
    max-width: 700px;
}

.content_para_text h2 {
    margin-bottom: 40px;
}

.content_section.column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content_section_img {
    max-width: 50%;
    margin: 20px 0;
}
@media screen and (max-width: 1000px) {
    .content_para {
        flex-direction: column-reverse;
    }
    .content_para:nth-child(2) {
        margin-top: 50px;
    }
    .content_para:nth-child(3) {
        flex-direction: column;
    }
    .content_para *:first-child {
        margin-right: 0;
    }
    .content_para_img {
        margin-right: 0;
        margin-top: 20px;
    }
    .content_para > * {
        width: unset;
    }
}






/* Section 1 */
.front_section {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.front_background_colour {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(146deg, rgb(219 219 255) 30%, rgb(255 255 255) 100%)
}
.front_background_white {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	z-index: 1;
	pointer-events: none; /* allows clicks to pass through */
	inset: 0;
}
.front_section > * {
	z-index: 2;
}

.front_text_container {
	padding: 190px 0;
	z-index: 3;
}
.front_section_text {
    max-width: 500px;
}
.front_section_text h2 {
    font-size: 80px;
    margin: 0;
    margin-bottom: 40px;
    font-weight: 700;
}
.front_section_text p {
	font-size: 20px;
}


.front_section_text h2 strong {
    font-weight: 700;
    /* background: -webkit-linear-gradient(287deg, hsl(151 41% 41% / 1) 20%, hsl(151 85% 44% / 1) 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.front_buttons {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    width: 100%;
    /* flex-direction: column-reverse; */
}

.front_button {
    padding: 20px 30px;
    border: 2px solid #f1f1ff;
    border-radius: 15px;
    color: white;
    background-color: hsl(240 67% 51% / 1);
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    background: radial-gradient(circle, hsla(237, 60%, 60%, 1) 0%, hsla(237, 54%, 51%, 1) 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.front_button:hover {
	filter: brightness(0.8);
}
.front_about {
    color: #1c1f62;
    background: #f1f1ff;
    /* display: none; */
}

.front_signup {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.topnav_links_text {
    border-right: 1px solid;
}

.front_signup img {
    height: 21px;
    margin-right: 0;
    filter: invert(1) brightness(2);
    margin-left: 15px !important;
}
@media screen and (max-width: 1000px) {
	.front_text_container {
		max-width: 90%;
	}
	.front_buttons {
		flex-direction: column-reverse;
	}
}






/* Section 3 */
.hs3 {
	max-width: 1000px;
	margin: 60px 0;
}

.hs3_list_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px 35px;
	margin-top: 60px;
}

.hs3_list_item {
	flex: 0 0 calc(100% / 2 - 20px);
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 25px;
}
.hs3_li_image {
	flex-shrink: 0;
	max-width: 150px;
}
.hs3_li_image img {
	width: 100%;
}

.hs3_li_heading {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

@media screen and (max-width: 1000px) {
	.hs3_list_item {
		flex: unset;
		padding: 0 20px;
		width: 100%;
	}
	.hs3_list_container {
		gap: 60px 35px;
	}
}





/* Section 4 */
.results_message {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
	text-align: center;
}
.results_message div:first-child {
    max-width: 78%;
}

.results_plot {
    margin: 0;
	border: 8px solid #f3f3f7;
    border-radius: 5px;
    outline: 1px solid #ccc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    margin-top: 40px;
}





/* Section 5 */
.hs5 .hs_max_width {
    padding: 100px 0px;    
}
.review_container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgb(242 242 242);
    /* margin-top: 40px; */
    padding: 40px;
    border-radius: 30px;
    max-width: 1000px;
}
.review_switch {
    width: 30px;
    cursor: pointer;
    border-radius: 50%;
}
.review_switch:hover {
    background: #f3f3f7;
}
.review_switch_left {
    transform: rotate(180deg);
    margin-right: 40px;
}
.review_switch_right {
    margin-left: 40px;
}
/* Slides */
.review_slides_wrapper {
	width: 100%;
	overflow: hidden;
}
.review_slides_container {
	display: flex;
	width: 0%;
	height: 100%;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review_slide {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: start;
	border-radius: 30px;
	position: relative;
	gap: 0;
    padding: 20px 60px;
}
.with_results {
	padding: 20px 30px !important;
	gap: 60px !important;
}

.review_details {
    display: flex;
    width: 55%;
    justify-content: space-between;
    flex-direction: column;
}

.review_verified {
    background: #38b159;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.review_author {
	align-self: start;
	display: flex;
	flex-direction: row;
	align-items: start;
	gap: 20px;
	width: 100%;
	position: relative;
}

.review_icon {
    width: 70px;
}

.review_details {
    min-width: 200px;
    font-size: 18px;
    padding-top: 7px;
}
.review_results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review_name {
    font-weight: bold;
    font-size: 20px;
}

.review_date {
    margin-top: 15px;
}

.review_content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    height: 320;
    width: 60%;
}

.review_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.review_left_plot {
	margin: 0;
	margin-top: 10px;
}

.review_right {
    display: flex;
    flex-direction: column;
    align-items: start;
	width: 90%;
}

.review_content_body {
    font-size: 16px;
    /* color: #3a3a3a; */
    margin-top: 5px;
}

.review_message {
    font-style: italic;
    display: flex;
}

.review_final {
    font-weight: 500;
    margin: 20px;
}

.review_slides_progress {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.progress_unit {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    margin: 0px 10px;
}

.review_quote_mark {
	font-size: 60px;
	margin: 0;
	padding: 0;
	height: 40;
}

.review_message p {
    margin: 40px 0px;
}

.review_message .review_quote_mark:last-child {
    align-self: end;
}

@media screen and (max-width: 1000px) {
	.review_container {
		padding: 20px 0px;
	}
	.review_slide {
		padding: 10px;
	}
	.review_top {
		flex-direction: column-reverse;
	}
	.review_verified {
		align-self: end;
		margin-bottom: 20px;
	}
	.review_content {
		flex-direction: column;
		gap: 40px;
		height: unset;
	}
	.review_switch {
		margin: 5px;
	}
	.review_right {
		max-width: unset;
	}
	.review_left_plot {
		margin-top: 0px;
	}
	
	.review_container {
		padding: 20px 0px;
	}
	.review_slide {
		padding: 20px;
		flex-direction: column;
		gap: 20px !important;
	}
	
	.review_slide > *{
		width: 100%;
		box-sizing: border-box;
	}
	.review_top {
		flex-direction: column-reverse;
	}
	.review_verified {
		align-self: unset;
		margin-bottom: 20px;
	}
	.review_content {
		flex-direction: column;
		gap: 0px;
		height: unset;
	}
	.review_switch {
		margin: 5px;
	}
	.review_right {
		max-width: unset;
	}
	.review_left_plot {
		margin-top: 0px;
	}
	.review_content_top {
		flex-direction: column;
		align-items: start !important;
		justify-content: unset !important;
		padding-left: 20px;
		gap: 20px;
	}
	.para_heading_wide > * {
	    padding: 20px !important;
	}
	.hs5 {
		margin-top: 50px;
		padding-bottom: 0 !important;
	}
}


/* Section 7 */
.hs7 {
	background: #f2f2f2;
	margin-bottom: 100px;
}
.guarantee_container {
	display: flex;
	flex-direction: row;
    justify-content: start;
}
.guarantee_container img {
	width: 200px;
	height: auto;
	margin-right: 50px;
	object-fit: contain;
}
.guarantee_text {
	display: flex;
	flex-direction: column;
    justify-content: start;
}
.guarantee_text .gc_heading {
	font-size: 2em;
    margin: 20px 0;
	font-weight: bold;
}
.guarantee_text .gc_line {
	margin: 10px 0;
}
.guarantee_text .gc_line.learn_more {
    align-self: end;
    color: #3e44c6;
}
@media screen and (max-width: 1000px) {
	.guarantee_container {
		flex-direction: column;
	}
	.guarantee_container img {
		align-self: center;
		margin-right: 0;
	}
}






/* Section 6 */
.hs6 {
    margin: 0;
    background: rgb(255, 255, 255, 0%);
    min-height: 600px;
}

.bubble_message_container {
	display: flex;
	flex-direction: row;
    justify-content: center;
    width: 100%;
}

.pricing_message {
	font-size: 2em;
	font-weight: 500;
	color: white;
	padding: 18px;
    border-radius: 15px;
    width: 100%;
	text-align: center;
    background: hsla(237, 54%, 51%, 1);
    background: radial-gradient(circle, hsla(237, 54%, 51%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
}

.pricing {
	display: flex;
	flex-direction: row;
	justify-content: center;
	/* max-width: 1000px; */
}

@media screen and (max-width: 1000px) {
    .pricing {
        flex-wrap: wrap;
    }
}

.price_tier {
    max-width: 500px;
    max-height: 700px;
    border: 1px solid #E1E1E2;
    color: #1C1F62;
    margin: 40px;
    background: white;
    width: 100%;
    min-width: 380px;
}

.pt_body {
	padding: 60px 10px;
	display: flex;
	flex-direction: column;
    align-items: center;
}

.pt_ribbon {
	width: 100%;
	height: 30px;
	color: white;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(219,192,246,1) 50%);
	font-weight: 700;
	
	display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: end;
}

.pt_ribbon div {
	margin-right: 7px;
}

.paid_ribbon {
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(62,68,198,1) 50%);
}

.pt_title {
	font-size: 2.5em;
	font-weight: 600;
	margin-top: 40px;
}

.pt_price {
	margin: 40px 0px;
}

.pt_price_line1 {
	font-size: 2.5em;
	font-weight: 600;
}
.pt_price_line2 {
	font-size: 1.3em;
	font-weight: 500;
}

.pt_signup {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	background-color: #efae00;
	margin: 20px 0px;
	padding: 15px 30px;
	border-radius: 5px;
	text-align: center;
	border: 1px solid #000;
	text-decoration: unset;
	box-shadow: 0 3px  4px rgba(0, 0, 0, 0.25);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pt_signup:hover {
    cursor: pointer;
    background-color: #b78500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.pt_list li {
	font-size: 1em;
	font-weight: 400;
	
	margin: 20px 0px;
}





/* Payment Plans */
.purchase-main-container {
    display: none;
    overflow-y: auto;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
}

.plans-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex: 1;
    margin-bottom: 2rem;
}

.purchase-main-container::-webkit-scrollbar {
    width: 6px;
}

.purchase-main-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.purchase-main-container::-webkit-scrollbar-thumb {
    background: #3e44c6;
    border-radius: 3px;
}

.purchase-main-container::-webkit-scrollbar-thumb:hover {
    background: #2e34a6;
}

.plan-tile {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    /* cursor: pointer; */
    transition: all 0.2s ease;
    background: white;
    position: relative;
    min-height: 700px;
}

.plan-content {
    padding: 1.5rem;
}

.plan-ribbon {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
}

.plan-ribbon.free {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(219,192,246,1) 50%);
    color: white;
}

.plan-ribbon.standard {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(62,68,198,1) 50%);
    color: white;
}

.plan-ribbon.offer {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(237,185,7,1) 50%);
    color: white;
}

.plan-tile:hover {
    /* border-color: #3e44c6; */
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 25px rgba(62, 68, 198, 0.1); */
}

.plan-tile.selected {
    border-color: #3e44c6;
    background: #f8fafc;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0;
    height: 120px;
    flex-direction: column;
    justify-content: start;
    gap: 60px;
}

.plan-name {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: #3e44c6;
}

.plan-original-price {
    font-size: 20px;
    color: #6b7280;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.plan-badge {
    background: #3e44c6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    position: absolute;
    right: 20;
    top: 40;
}

.plan-features {
    list-style: none;
    color: #4b5563;
    margin: 4rem 0;
    padding-inline-start: 20px;
}

.plan-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3e44c6;
    font-weight: 700;
}

.plans-container > * {
    flex: 1;
}

.plan-header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-period {
    font-size: 16px;
    color: #6b7280;
    font-weight: 400;
}

@media (max-width: 1050px) {
	.plans-container {
		flex-direction: column;
		align-items: center;
	}
	.plan-tile {
		min-height: 600px;
		width: 90%;
	}
	.plan-features {
	    padding-bottom: 50px;
	}
}


/* Section 1 */
.gradient-container {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460); */
    --animation-speed: 12s;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, #8b5cf6, #7c3aed);
    top: -10%;
    left: -20%;
    animation: sweep-1 var(--animation-speed, 12s) infinite;
}

.orb-2 {
    width: 1050px;
    height: 1050px;
    background: radial-gradient(circle, #ec4899, #be185d);
    top: 20%;
    right: -25%;
    animation: sweep-2 var(--animation-speed, 15s) infinite;
}

.orb-3 {
    width: 1500px;
    height: 1500px;
    background: radial-gradient(circle, #3b82f6, #1d4ed8);
    bottom: -30%;
    left: -10%;
    animation: sweep-3 var(--animation-speed, 18s) infinite;
}

.orb-4 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, #a855f7, #7e22ce);
    top: -20%;
    right: -15%;
    animation: sweep-4 var(--animation-speed, 20s) infinite;
}

.orb-5 {
    width: 1350px;
    height: 1350px;
    background: radial-gradient(circle, #06b6d4, #0891b2);
    top: 10%;
    left: 20%;
    animation: sweep-5 var(--animation-speed, 14s) infinite;
}

.orb-6 {
    width: 960px;
    height: 960px;
    background: radial-gradient(circle, #f472b6, #ec4899);
    bottom: -10%;
    right: 10%;
    animation: sweep-6 var(--animation-speed, 16s) infinite;
}

.orb-7 {
    width: 1140px;
    height: 1140px;
    background: radial-gradient(circle, #6366f1, #4338ca);
    top: 30%;
    left: 40%;
    animation: sweep-7 var(--animation-speed, 22s) infinite;
}

@keyframes sweep-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(150px, -80px) scale(1.1) rotate(90deg); }
    50% { transform: translate(300px, 80px) scale(0.95) rotate(180deg); }
    75% { transform: translate(150px, 200px) scale(1.05) rotate(270deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes sweep-2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    20% { transform: translate(-100px, -150px) scale(1.2) rotate(72deg); }
    40% { transform: translate(-200px, 0px) scale(0.9) rotate(144deg); }
    60% { transform: translate(-150px, 150px) scale(1.1) rotate(216deg); }
    80% { transform: translate(80px, 80px) scale(0.95) rotate(288deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes sweep-3 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(180px, -200px) scale(1.05) rotate(120deg); }
    66% { transform: translate(-80px, -250px) scale(0.95) rotate(240deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes sweep-4 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-120px, 180px) scale(0.9) rotate(90deg); }
    50% { transform: translate(120px, 300px) scale(1.15) rotate(180deg); }
    75% { transform: translate(-200px, 120px) scale(1.0) rotate(270deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes sweep-5 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    30% { transform: translate(120px, 160px) scale(1.05) rotate(108deg); }
    60% { transform: translate(-160px, -120px) scale(0.95) rotate(216deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes sweep-6 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    20% { transform: translate(-80px, -180px) scale(1.25) rotate(72deg); }
    40% { transform: translate(200px, -80px) scale(0.8) rotate(144deg); }
    60% { transform: translate(150px, 180px) scale(1.1) rotate(216deg); }
    80% { transform: translate(-100px, 140px) scale(0.95) rotate(288deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

@keyframes sweep-7 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(160px, -100px) scale(0.95) rotate(90deg); }
    50% { transform: translate(-120px, 200px) scale(1.2) rotate(180deg); }
    75% { transform: translate(220px, 150px) scale(1.0) rotate(270deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}














/* Section 2 */
.hs2 {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* max-width: 1000px; */
	z-index: 10;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
	margin: 60px 0;
}
.hs2_top {
	margin-bottom: 60px;
}
.hs2_bottom {
    display: flex;
    flex-direction: column;
	align-items: center;
	justify-content: start;
	width: 100%;
}
.hs2_panel {
	padding: 120px 30px;
	width: 100%;
	background: #f7f7f7;
    display: flex;
    flex-direction: column;
	align-items: center;
}
.hs2_panel_content {
	max-width: 1000px;
	height: 220px;
	display: flex;
	flex-direction: row;
}
.hs2_panel_text {
}
.hs2_panel_heading {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
}
.hs2_flex_section {
	display: flex;
	min-height: 600px;
	gap: 90px;
	max-width: 1000px;
	padding: 60px;
	padding-top: 120px;
}
.topnav {
	background: rgb(255 255 255 / 10%);
	border-bottom: unset;
}

.home_container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home_section {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	padding: 50px 0;
	/* overflow-x: hidden; */
	box-sizing: border-box;
}

.hs_max_width {
	max-width: 1000px;
	width: 100%;
	padding: 100px 50px;
	box-sizing: border-box;
}

.row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.para_heading {
	text-align: center;
	margin: 20px 0;
	font-size: 70px;
	max-width: 1000px;
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.content_para {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	white-space: normal;
	margin: 100px 0;
}

.content_para *:
	first-child {
    margin-right: 40px;
}

.content_para_img {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 500px;
}

.content_para_img
	img {
    max-width: 100%;
}

.content_para > * {
	width: 50%;
}

.content_para_text {
	max-width: 700px;
}

.content_para_text
	h2 {
    margin-bottom: 40px;
}

.content_section.column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content_section_img {
	max-width: 50%;
	margin: 20px 0;
}

@media screen and (max-width: 1000px) {
	.hs2_flex_left {
	}
	.hs2_flex_section {
		flex-direction: column;
		padding-top: 300px !important;
		padding-bottom: 0 !important;
	}
	.home_section {
		overflow-x: hidden;
	}
	.hs2 {
		margin: 0;
	}
	.hs2_flex_right {
		gap: 100px !important;
	}
	
}





/* Section 1 */
.front_section {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.front_background_colour {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(146deg, rgb(219 219 255) 30%, rgb(255 255 255) 100%)}
.front_background_white {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	z-index: 1;
	pointer-events: none; /* allows clicks to pass through */
	inset: 0;
}
.front_section > * {
	z-index: 2;
}

.front_text_container {
	padding: 190px 0;
	z-index: 3;
}
.front_section_text {
	max-width: 500px;
}
.front_section_text
	h2 {
    font-size: 80px;
	margin: 0;
	margin-bottom: 40px;
	font-weight: 700;
}
.front_section_text
	p {
 font-size: 20px;
}


.front_section_text
	h2 strong {
    font-weight: 700;
	/* background: -webkit-linear-gradient(287deg, hsl(151 41% 41% / 1) 20%, hsl(151 85% 44% / 1) 100%); */
	/* -webkit-background-clip: text; */
	/* -webkit-text-fill-color: transparent; */
}

.front_buttons {
	margin-top: 60px;
	display: flex;
	gap: 20px;
	width: 100%;
	/* flex-direction: column-reverse; */
}

.front_button {
	padding: 20px 30px;
	border: 2px solid #f1f1ff;
	border-radius: 15px;
	color: white;
	background-color: hsl(240 67% 51% / 1);
	font-size: 18px;
	text-decoration: none;
	font-weight: 600;
	background: radial-gradient(circle, hsla(237, 60%, 60%, 1) 0%, hsla(237, 54%, 51%, 1) 100%);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.front_button:
	hover {
 filter: brightness(0.8);
}
.front_about {
	color: #1c1f62;
	background: #f1f1ff;
	/* display: none; */
}

.front_signup {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.topnav_links_text {
	border-right: 1px solid;
}

.front_signup
	img {
    height: 21px;
	margin-right: 0;
	filter: invert(1) brightness(2);
	margin-left: 15px !important;
}
@media screen and (max-width: 1000px) {
	.front_text_container {
		max-width: 90%;
	}
	.front_buttons {
		flex-direction: column-reverse;
	}
	.diagonal-container {
		display: none;
	}
	.front_section_text h2 {
		font-size: 60px !important;
	}
}






/* Section 3 */
.hs3 {
	max-width: 1000px;
}

.hs3_list_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px 35px;
	margin-top: 60px;
}

.hs3_list_item {
	flex: 0 0 calc(100% / 2 - 20px);
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 25px;
}
.hs3_li_image {
	flex-shrink: 0;
	max-width: 150px;
}
.hs3_li_image
	img {
 width: 100%;
}

.hs3_li_heading {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}
	@media screen and (max-width: 1000px) {
 .hs3_list_item {
  flex: unset;
	padding: 0 20px;
	width: 100%;
 }
 .hs3_list_container {
	gap: 60px 35px;
	padding-top: 180px;
	}
}





/* Section 4 */
.hs4 {
	background: #f2f2f2;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	margin-bottom: 50px;
}

.results_message {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;
	text-align: center;
}
.results_message
	div:first-child {
    max-width: 78%;
}

.results_plot {
	margin: 0;
	border: 8px solid #f3f3f7;
	border-radius: 5px;
	outline: 1px solid #ccc;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: auto;
	margin-top: 40px;
	box-sizing: border-box;
}














/* Section 6 */
.hs6 {
	padding-bottom: 300px;
	margin: 0;
}

.bubble_message_container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
}

.pricing_message {
	font-size: 2em;
	font-weight: 500;
	color: white;
	padding: 18px;
	border-radius: 15px;
	width: 100%;
	text-align: center;
	background: hsla(237, 54%, 51%, 1);
	background: radial-gradient(circle, hsla(237, 54%, 51%, 1) 0%, hsla(0, 0%, 100%, 1) 100%);
}

.pricing {
	display: flex;
	flex-direction: row;
	justify-content: center;
	/* max-width: 1000px; */
}
	@media screen and (max-width: 1000px) {
    .pricing {
        flex-wrap: wrap;
    }
}

.price_tier {
	max-width: 500px;
	max-height: 700px;
	border: 1px solid #E1E1E2;
	color: #1C1F62;
	margin: 40px;
	background: white;
	width: 100%;
	min-width: 380px;
}

.pt_body {
	padding: 60px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pt_ribbon {
	width: 100%;
	height: 30px;
	color: white;
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(219,192,246,1) 50%);
	font-weight: 700;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: end;
}

.pt_ribbon
	div {
 margin-right: 7px;
}

.paid_ribbon {
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(62,68,198,1) 50%);
}

.pt_title {
	font-size: 2.5em;
	font-weight: 600;
	margin-top: 40px;
}

.pt_price {
	margin: 40px 0px;
}

.pt_price_line1 {
	font-size: 2.5em;
	font-weight: 600;
}
.pt_price_line2 {
	font-size: 1.3em;
	font-weight: 500;
}

.pt_signup {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	background-color: #efae00;
	margin: 20px 0px;
	padding: 15px 30px;
	border-radius: 5px;
	text-align: center;
	border: 1px solid #000;
	text-decoration: unset;
	box-shadow: 0 3px  4px rgba(0, 0, 0, 0.25);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pt_signup:
	hover {
    cursor: pointer;
	background-color: #b78500;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.pt_list
	li {
 font-size: 1em;
	font-weight: 400;
	margin: 20px 0px;
}





/* Payment Plans */
.purchase-main-container {
	display: none;
	overflow-y: auto;
	padding-right: 0.5rem;
	padding-top: 0.5rem;
}

.plans-container {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	flex: 1;
	margin-bottom: 2rem;
}

.purchase-main-container::
	-webkit-scrollbar {
    width: 6px;
}

.purchase-main-container::
	-webkit-scrollbar-track {
    background: #f1f1f1;
	border-radius: 3px;
}

.purchase-main-container::
	-webkit-scrollbar-thumb {
    background: #3e44c6;
	border-radius: 3px;
}

.purchase-main-container::
	-webkit-scrollbar-thumb:hover {
    background: #2e34a6;
}

.plan-tile {
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 0;
	/* cursor: pointer; */
	transition: all 0.2s ease;
	background: white;
	position: relative;
	min-height: 700px;
}

.plan-content {
	padding: 1.5rem;
}

.plan-ribbon {
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-top-left-radius: 11px;
	border-top-right-radius: 11px;
}

.plan-ribbon.free {
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(219,192,246,1) 50%);
	color: white;
}

.plan-ribbon.standard {
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(62,68,198,1) 50%);
	color: white;
}

.plan-ribbon.offer {
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(237,185,7,1) 50%);
	color: white;
}

.plan-tile:
	hover {
    /* border-color: #3e44c6; */
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 25px rgba(62, 68, 198, 0.1); */}

.plan-tile.selected {
	border-color: #3e44c6;
	background: #f8fafc;
}

.plan-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 5rem 0;
	height: 120px;
	flex-direction: column;
	justify-content: start;
	gap: 60px;
}

.plan-name {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
}

.plan-price {
	font-size: 32px;
	font-weight: 700;
	color: #3e44c6;
}

.plan-original-price {
	font-size: 20px;
	color: #6b7280;
	text-decoration: line-through;
	margin-left: 0.5rem;
}

.plan-badge {
	background: #3e44c6;
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 10px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
	position: absolute;
	right: 20;
	top: 40;
}

.plan-features {
	list-style: none;
	color: #4b5563;
	margin: 4rem 0;
	padding-inline-start: 20px;
}

.plan-features
	li {
    position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.plan-features
	li:before {
    content: "✓";
	position: absolute;
	left: 0;
	color: #3e44c6;
	font-weight: 700;
}

.plans-container > * {
	flex: 1;
}

.plan-header-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.price-period {
	font-size: 16px;
	color: #6b7280;
	font-weight: 400;
}
	@media (max-width: 1050px) {
 .plans-container {
  flex-direction: column;
	align-items: center;
 }
 .plan-tile {
	min-height: 600px;
	width: 90%;
 }
 .plan-features {
	padding-bottom: 50px;
 }
}


/* Section 1 */
.gradient-container {
	position: absolute;
	width: 100%;
	height: 100%;
    max-width: unset !important;
    margin-right: unset !important;
	background: linear-gradient(300deg, rgba(122, 128, 235, 1) 0%, rgba(127, 203, 227, 1) 16%, rgba(217, 136, 219, 1) 70%);
	background-image: url("/static/media/home/gradient.dde7bd4ae202.png");
	top: 0;
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.4;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	mix-blend-mode: screen;
}

.orb-1 {
	width: 1200px;
	height: 1200px;
	background: radial-gradient(circle, #8b5cf6, #7c3aed);
	top: -10%;
	left: -20%;
	animation: sweep-1 var(--animation-speed, 12s) infinite;
}

.orb-2 {
	width: 1050px;
	height: 1050px;
	background: radial-gradient(circle, #ec4899, #be185d);
	top: 20%;
	right: -25%;
	animation: sweep-2 var(--animation-speed, 15s) infinite;
}

.orb-3 {
	width: 1500px;
	height: 1500px;
	background: radial-gradient(circle, #3b82f6, #1d4ed8);
	bottom: -30%;
	left: -10%;
	animation: sweep-3 var(--animation-speed, 18s) infinite;
}

.orb-4 {
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, #a855f7, #7e22ce);
	top: -20%;
	right: -15%;
	animation: sweep-4 var(--animation-speed, 20s) infinite;
}

.orb-5 {
	width: 1350px;
	height: 1350px;
	background: radial-gradient(circle, #06b6d4, #0891b2);
	top: 10%;
	left: 20%;
	animation: sweep-5 var(--animation-speed, 14s) infinite;
}

.orb-6 {
	width: 960px;
	height: 960px;
	background: radial-gradient(circle, #f472b6, #ec4899);
	bottom: -10%;
	right: 10%;
	animation: sweep-6 var(--animation-speed, 16s) infinite;
}

.orb-7 {
	width: 1140px;
	height: 1140px;
	background: radial-gradient(circle, #6366f1, #4338ca);
	top: 30%;
	left: 40%;
	animation: sweep-7 var(--animation-speed, 22s) infinite;
}
	@keyframes sweep-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% {
	transform: translate(150px, -80px) scale(1.1) rotate(90deg); }
    50% {
	transform: translate(300px, 80px) scale(0.95) rotate(180deg); }
    75% {
	transform: translate(150px, 200px) scale(1.05) rotate(270deg); }
    100% {
	transform: translate(0, 0) scale(1) rotate(360deg); }
}
	@keyframes sweep-2 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    20% {
	transform: translate(-100px, -150px) scale(1.2) rotate(72deg); }
    40% {
	transform: translate(-200px, 0px) scale(0.9) rotate(144deg); }
    60% {
	transform: translate(-150px, 150px) scale(1.1) rotate(216deg); }
    80% {
	transform: translate(80px, 80px) scale(0.95) rotate(288deg); }
    100% {
	transform: translate(0, 0) scale(1) rotate(360deg); }
}
	@keyframes sweep-3 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% {
	transform: translate(180px, -200px) scale(1.05) rotate(120deg); }
    66% {
	transform: translate(-80px, -250px) scale(0.95) rotate(240deg); }
    100% {
	transform: translate(0, 0) scale(1) rotate(360deg); }
}
	@keyframes sweep-4 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% {
	transform: translate(-120px, 180px) scale(0.9) rotate(90deg); }
    50% {
	transform: translate(120px, 300px) scale(1.15) rotate(180deg); }
    75% {
	transform: translate(-200px, 120px) scale(1.0) rotate(270deg); }
    100% {
	transform: translate(0, 0) scale(1) rotate(360deg); }
}
	@keyframes sweep-5 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    30% {
	transform: translate(120px, 160px) scale(1.05) rotate(108deg); }
    60% {
	transform: translate(-160px, -120px) scale(0.95) rotate(216deg); }
    100% {
	transform: translate(0, 0) scale(1) rotate(360deg); }
}
	@keyframes sweep-6 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    20% {
	transform: translate(-80px, -180px) scale(1.25) rotate(72deg); }
    40% {
	transform: translate(200px, -80px) scale(0.8) rotate(144deg); }
    60% {
	transform: translate(150px, 180px) scale(1.1) rotate(216deg); }
    80% {
	transform: translate(-100px, 140px) scale(0.95) rotate(288deg); }
    100% {
	transform: translate(0, 0) scale(1) rotate(360deg); }
}
	@keyframes sweep-7 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% {
	transform: translate(160px, -100px) scale(0.95) rotate(90deg); }
    50% {
	transform: translate(-120px, 200px) scale(1.2) rotate(180deg); }
    75% {
	transform: translate(220px, 150px) scale(1.0) rotate(270deg); }
    100% {
	transform: translate(0, 0) scale(1) rotate(360deg); }
}














/* Section 2 */
.hs2 {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* max-width: 1000px; */
	z-index: 10;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
}
.hs2_top {
	margin-bottom: 60px;
}
.hs2_bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	width: 100%;
}
.hs2_panel {
	padding: 120px 30px;
	width: 100%;
	background: #f7f7f7;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.hs2_panel_content {
	max-width: 1000px;
	height: 220px;
	display: flex;
	flex-direction: row;
}
.hs2_panel_text {
}
.hs2_panel_heading {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
}
.hs2_flex_section {
	display: flex;
	min-height: 600px;
	gap: 90px;
	max-width: 1000px;
	padding: 120px 60px;
}
.hs2_flex_left {
} 
.hs2_flex_right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 260px;
}
.hs2_bottom_panel {
	padding-top: 70px;
	background: #fff;
}
.hs2_panel_graphic {
	display:  flex;
	gap: 40px;
	align-items: start;
	justify-content: center;
	height: 270px;
	width: 300px;
	position: sticky;
	top: 40%;
	border-radius: 8px;
	text-align: center;
}
/* Graphic */
.bookmaker_graphic_column.exchange {
	margin-right: 30px;
}
.bookmaker_graphic_icon {
	width: 30px;
	height: 30px;
	background: gold;
	border-radius: 10%;
}
.bookmaker_graphic_axis {
	position: absolute;
	width: 100%;
	border: 1px dashed #6b7280;
}
.bookmaker_graphic_scale {
	position: relative;
	padding-top: 30px;
}
.bookmaker_graphic_odds {
	width: 30px;
	height: 30px;
	background: #6b7280;
	border-radius: 10%;
	font-size: 12px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bookmaker_graphic_change {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	color: #6b7280;
	margin-top: -70px;
}
.bookmaker_graphic_per {
	font-size: 12px;
}
.bookmaker_graphic_arrow {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 16px solid #6b7280;
	border-bottom: 0px solid #6b7280;
}
#b1_odds {
	margin-top: 200%;
}

#b2_odds {
	margin-top: 600%;
}

#b3_odds {
	margin-top: 400%;
}

#b2_odds {
	margin-top: 600%;
}

#e_odds_original {
	position: absolute;
	top: 30px;
	background: #febc12;
}
#e_odds_changing {
	background: #febc12;
}
#e_odds_arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-top: -30px;
}
.exchange_graphic_trunk {
	width: 3px;
	background: #ffe493;
	margin-top: 5px;
}
.exchange_graphic_arrow {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 16px solid #ffe493;
	top: 90px;
	margin-bottom: 5px;
}
.exchange_graphic_spacer {
	width:100%;
	height:30px;
	background:white;
	position:absolute;
	top:0;
}
.bookmaker_graphic_column.exchange {
	padding: 0;
}
.magnifying_glass {
	position: absolute;
	width: 80px;
	top: 106px;
	left: -1000px;
	z-index: 2;
}
.mg_text {
	position: absolute;
	top: 73px;
	left: 160px;
	color: white;
	background: #000000;
	padding: 10px;
	border-radius: 10px;
}
.diagonal-container {
	position: absolute;
	inset: 0;
	background: white;
	clip-path: polygon(100% 17%, -44% 100%, 100% 100%);
	z-index: 3;
	clip-path: polygon(100% 35%, 0% 100%, 100% 100%);
}
.para_heading_sticky {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	position: sticky;
	top: 9%;
	background: white;
	z-index: 1000;
}
.para_heading_sticky
	h2 {
    text-align: start;
	background: white;
	z-index: 4;
	margin: 0;
	padding: 20px 0;
	padding-bottom: 40px;
}
.para_heading_sticky
	h2::after {
    content: '';
	position: absolute;
	left: -15%;
	right: -15%;
	bottom: 0px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 90%, transparent 100%);
	filter: blur(1px);
};
}
.hs2_flex_left {
}	
.hs2_flex_right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 260px;
}
.hs2_bottom_panel {
	padding-top: 70px;
	background: #fff;
}
.hs2_panel_graphic {
	display:  flex;
	gap: 40px;
	align-items: start;
	justify-content: center;
	height: 270px;
	width: 300px;
	position: sticky;
	top: 40%;
	border-radius: 8px;
	text-align: center;
}
/* Graphic */
.bookmaker_graphic_column.exchange {
	margin-right: 30px;
}
.bookmaker_graphic_icon {
    width: 30px;
    height: 30px;
    background: gold;
	border-radius: 10%;
}
.bookmaker_graphic_axis {
    position: absolute;
    width: 100%;
    border: 1px dashed #6b7280;
}
.bookmaker_graphic_scale {
    position: relative;
    padding-top: 30px;
}
.bookmaker_graphic_odds {
    width: 30px;
    height: 30px;
    background: #b70c0c;
    border-radius: 10%;
    font-size: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bookmaker_graphic_change {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	color: #b70c0c;
	margin-top: -70px;
}
.bookmaker_graphic_per {
	font-size: 12px;
}
.bookmaker_graphic_arrow {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 16px solid #b70c0c;
	border-bottom: 0px solid #b70c0c;
}
#b1_odds {
    margin-top: 200%;
}

#b2_odds {
    margin-top: 600%;
}

#b3_odds {
    margin-top: 400%;
}

#b2_odds {
    margin-top: 600%;
}

#e_odds_original {
    position: absolute;
    top: 30px;
    background: #febc12;
}
#e_odds_changing {
    background: #febc12;
}
#e_odds_arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-top: -30px;
}
.exchange_graphic_trunk {
    width: 3px;
    background: #ffe493;
    margin-top: 5px;
}
.exchange_graphic_arrow {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 16px solid #ffe493;
	top: 90px;
	margin-bottom: 5px;
}
.exchange_graphic_spacer {
	width:100%;
	height:30px;
	background:white;
	position:absolute;
	top:0;
}
.bookmaker_graphic_column.exchange {
	padding: 0;
}
.magnifying_glass {
    position: absolute;
    width: 80px;
    top: 106px;
    left: -1000px;
    z-index: 2;
}
.mg_text {
    position: absolute;
    top: 73px;
    left: 160px;
    color: white;
    background: #000000;
    padding: 10px;
    border-radius: 10px;
}
.diagonal-container {
	position: absolute;
	inset: 0;
	background: white;
	clip-path: polygon(100% 17%, -44% 100%, 100% 100%);
	z-index: 3;
	clip-path: polygon(100% 35%, 0% 100%, 100% 100%);
}
.para_heading_sticky {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: sticky;
    top: 9%;
    background: white;
    z-index: 1000;
}
.para_heading_wide h2 {
    text-align: start;
    /* background: white; */
    z-index: 4;
    margin: 0;
    padding: 20px 0;
    padding-bottom: 40px;
    font-size: 70px;
    max-width: 1000px;
    width: 100%;
    position: relative;
}
.para_heading_sticky h2::after {
    content: '';
    position: absolute;
    left: -15%;
    right: -15%;
    bottom: 0px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 90%, transparent 100%);
    filter: blur(1px);
}
.review_background {
    background: #f2f2f2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.para_heading_wide {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: white;
    padding: 0 20px;
    box-sizing: border-box;
}
.para_subtext {
    width: 100%;
    max-width: 1000px;
    font-size: 18px;
    color: black;
    box-sizing: border-box;
}

.review_content_top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.review_stars {
    font-size: 40px;
    background: linear-gradient(190deg, #d5b403, #ffdf59, #e7b702);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.review_stars > * {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 1px #ffca00;
    line-height: 30px;
}
.review_location {
    margin-bottom: 20px;
}
.hs6 .para_heading_wide {
    background: none;
}

.hs6 .para_subtext {
    color: black;
    font-size: 24px;
}

footer {
    background: none;
    position: sticky;
    margin-top: -210px;
    z-index: 3000;
    filter: brightness(0);
}

.sign_up_offer {
    margin-top: 140px;
    width: 100%;
    padding: 80px;
    box-sizing: border-box;
    border: 5px solid #ffffff;
    border-radius: 40px;
    position: relative;
    display: flex;
    gap: 36px;
    margin-bottom: 10px;
}

.sign_up_offer_label {
    position: absolute;
    transform: rotate(352deg);
    font-size: 60px;
    font-weight: 700;
    color: white;
    padding: 20px;
    border: 5px solid white;
    border-radius: 50px;
    top: -60px;
    left: -60px;
    background: radial-gradient(circle, hsl(50.37deg 60% 60%) 0%, hsl(44.31deg 54% 51%) 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sign_up_offer_text {
    font-size: 70px;
    font-weight: 700;
    box-sizing: border-box;
}

.sign_up_offer_amount {
    color: white;
    text-shadow: -2px -2px 0 #3c3c3c, 2px -2px 0 #3c3c3c, -2px 2px 0 #3c3c3c, 2px 2px 0 #3c3c3c;
}

.sign_up_offer_text strong {
	color: black;
	text-decoration: line-through;
	text-shadow: none;
}

.sign_up_offer_subtext {
    font-size: 40px;
	margin-top: 40px;
}

.sign_up_offer_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    al;
    align-items: center;
    gap: 100px;
}

.sign_up_offer_logo {
    width: 100%;
    max-width: unset !important;
    margin: 0 !important;
}

.sign_up_offer_footer {
    font-size: 13px;
    color: white;
}

.homepage_community_icons {
    display: flex;
    gap: 100px;
    margin-top: 40px;
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.homepage_community_icons a img {
    width: 50px;
    max-width: unset !important;
    margin: 0 !important;
}

.homepage_community_icons a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 40px;
    color: black;
    text-decoration: none;
    border-bottom: 2px solid black;
    padding: 20px;
    padding-bottom: 10px;
    border-top-right-radius: 15px;
}
.homepage_community_icons a:hover {
    background: #655abd5e;
}

.homepage_community {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0;
}

@media screen and (max-width: 1000px) {
    .hs6 h2 {
        font-size: 40px;
    }
	.hs6 .hs_max_width {
	    padding: 50px 30px;
	}
	.hs6 {
		padding-bottom: 450px;
	}
	footer {
	    margin-top: -400px;
	}
	.sign_up_offer_offer {
		padding: 100px 40px;
		flex-direction: column;
	}
	.sign_up_offer_text {
		font-size: 10vw;
	}
	.sign_up_offer_logo {
		display:none
	}
	.homepage_community_icons {
		flex-direction: column;
		gap: 40px
	}
	.homepage_community_icons a {
		border: none;
		padding:30px;
		backdrop-filter: blur(100px);
	}
}
@media screen and (max-width: 1000px) {
	.hs2 {
		margin-top: -100px;
	}
    .hs3 {
        margin-top: 0;
		padding-top: 0;
    }
	.hs6 {
		padding-top: 50px !important;
	}
	.hs7 {
		padding-top: 0 !important;
	}
	.hs7 .hs_max_width.row {
		gap: 40px !important;
	}
	.para_heading {
		font-size: 3em !important;
	}
	.hs_max_width {
		padding: 50px;
	}
}
@media screen and (max-width: 1000px) {
    .hs4 h2 {
        font-size: 50px;
    }
}




/* Section 7 */

.hs7 {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 0;
	padding-bottom: 50px;
}
img.guarantee_img {
    max-width: 30%;
}

.hs7 .hs_max_width.row {
    gap: 80px;
}

.guarantee_text_bottom {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
}

@media screen and (max-width: 1000px) {
    .hs7 .hs_max_width {
        flex-direction: column;
    }
	.guarantee_img {
		max-width: 50% !important;
	}
}




.hs8.home_section {
    margin-bottom: 120px;
    gap: 40px;
}

.hs8_list_container {
    max-width: 1000px;
    overflow: hidden;
    width: 100%;
}

.hs8_list {
    display: flex;
    gap: 20px;
	animation: scroll 60s linear infinite;
}

.hs8_list_item {
    display: flex;
    flex-direction: column;
	padding: 20px 0;
    margin: 20px;
    gap: 10px;
}

.hs8_item_name {
    font-weight: 300;
    font-size: 32px;
}

.hs8_item_stars {
	position: relative;
	display: inline-block;
	font-size: 2rem; /* size of stars */
	line-height: 1;
}

.hs8_item_stars .back {
	color: #ccc; /* empty stars */
}

.hs8_item_stars .front {
	color: gold; /* filled stars */
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	width: 0; /* will be set dynamically */
}

.hs8_bottom {
    width: 100%;
    max-width: 1000px;
    font-size: 18px;
    color: black;
    box-sizing: border-box;
	padding: 0 20px;
}

.hs8_text {
    display: flex;
    flex-direction: column;
    align-items: start;
	max-width: 1000px;
    width: 100%;
	padding: 0 40px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-400%);
	}
}

@media screen and (max-width: 1000px) {
	.hs8_list {
		animation: scroll 20s linear infinite;
	}
	.hs8_bottom {
		padding: 0 40px;
	}
}

.front_text_container {
    padding: 190px 0;
    z-index: 3;
    max-width: unset !important;
    width: 55%;
    gap: 70px;
}

.front_section_title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
}
.front_section_title strong {
    font-weight: 700;
    color: #000000;
}

/* Video in laptop */
.front_video_container {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin-bottom: 100px;
}
.front_video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.front_video_border {
	position: absolute;
	margin-left: 5px !important;
	top: 50%;
	left: 50%;
	width: 170%;
	height: 170%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	object-fit: contain;
}
.front_video video {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
	.front_text_container {
        max-width: 90% !important;
        flex-direction: column;
        padding-top: 30%;
		width: unset !important;
    }
	.front_section_title {
		font-size: 4em;
	}
    .front_section img {
        max-width: 150% !important;
        margin-left: 0;
        margin-right: unset !important;
    }
	.front_video_container {
		margin-bottom: unset;
	}
}


.hs9 {
    background: rgb(255, 255, 255, 0%);
    position: relative;
    padding: 100px 40px;
    gap: 40px;
}

.hs9_text {
    display: flex;
    flex-direction: column;
    align-items: start;
	gap: 40px;
	max-width: 700px;
}

.hs9_signup_message {
    font-size: 18px;
    font-weight: 600;
}

.hs9_message {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
	z-index: 1;
}

.hs9_left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hs9_right {
    max-width: 200px;
}

.hs9_title {
    font-weight: 700;
    font-size: 40px;
}
.hs9_subtext {
    font-weight: 400;
    font-size: 18px;
	z-index: 1;
}

.hs9_signup {
    display: flex;
    flex-direction: row;
    align-items: center;
	z-index: 1;
	gap: 20px;
}

@media screen and (max-width: 1000px) {
	.hs8 {
		padding: 0;
	}
	.hs9 {
        margin-top: 100px !important;
	}
	.hs9_signup {
		flex-direction: column;
	}
}

@media (min-resolution: 1.2dppx) {
	.para_heading {
		font-size: 3em !important;
	}
}