/*
Theme Name: Divi - Child theme
Theme URI: 
Version: 0.8
Description: Divi - Child 
Author: Social Mind
Author URI: http://www.socialmind.gr
Template: Divi
*/
/*@import url(../Divi/style.css);*/
/* =Theme customization starts here

------------------------------------------------------- */


:root {
	--blue: #005de4;
	--lime: #bbfa6d;
	--light-blue: #7fbcee;
	--faded: #e7f0fe;
	--header-height: 77px;
}

.slide-effect {
	will-change: transform, opacity;
}

.textSlide {
	overflow: hidden;
}

.textSlide .et_pb_text_inner {
	display: block !important;
	will-change: transform;
}

.sub-title h2 {
	font-size: 14px;
	font-weight: 600;
	border-left: 2px solid var(--blue);
	padding: 0px 0 0px 7px;
}

.main-title h3, .main-title-single h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.3em;
}

.main-title-single.small h2 {
	font-size: 36px;
}

form .row {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	margin-bottom: 10px;
	flex-wrap: wrap
}

input.text,input.title,input[type=email],input[type=password],input[type=tel],input[type=text],select,textarea {
	background-color: #fff;
	border: 1px solid #bbb;
	padding: 2px;
	color: #4e4e4e
}

.row .form-group input[type=text],.row .form-group select,.row .form-group input[type=number] {
	border: 1px solid rgb(220,222,239);
	border-radius: 4px;
	font-size: 16px;
	padding: 8px 12px;
	width: 100%
}

.row .form-group label {
	display: inline-flex
}

form .form-group {
	width: 100%;
	min-width: 150px;
	flex: 1;
	margin-bottom: 10px
}

#demo_request_internal input[type=submit] {
	padding: 16px 32px;
	border: none;
	background: var(--blue);
	border-radius: 8px;
	color: white;
	font-size: 16px;
	cursor: pointer;
	margin: 0 auto;
	display: block;
	margin-top: 25px;
	transition: all 0.5s ease
}

#demo_request_internal input[type=submit]:hover {
	background-color: #212121;
}

.contact-us .et_pb_blurb:hover {
	transform: translateX(2em) !important;
	box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.3);
}

.contact-us .et_pb_blurb {
	transition: all .5s ease;
}

.hm-connections .small.et_pb_group {
	flex: 1;
	gap: 0;
	align-items: center;
	align-items: center;
	justify-content: space-between;
}

.hm-banner .pos.et_had_animation {
	animation: bouncing 1s linear infinite alternate;
}

@keyframes bouncing {a
	0% {
		transform: translateZ(0);
	}
	100% {
		transform: translate3d(0, -3%, 0);
	}
}

.hm-connections .main img {
	border-radius: 30px 30px 30px 30px;
}

.hm-connections .main .et_pb_image_wrap {
	border-width: 10px 10px 10px 10px;
	border-color: var(--blue);
	border-radius: 40px 40px 40px 40px;
	box-shadow: 0px 0px 0px 12px #d0d9fd;
	border-style: solid;
}

/* 1. Register the custom property for smooth angle animation */
@property --ui-glow-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

/* 2. Keyframes to drive rotation */
@keyframes glowRotate {
	to {
		--ui-glow-angle: 360deg;
	}
}

/* 3. The container for the glowing image/icon */
.rotating-glow-container {
	/* Variable defaults, adjustable per element */
	--ui-glow-color: white; 
	--ui-glow-speed: 6s;        /* Slow, smooth rotation speed */
	--ui-glow-radius: 16px;     /* Match the image's roundness */
	--ui-glow-blur: 20px;       /* Control the diffusion/softness */
	--ui-glow-spread: 5px;      /* Control the size of the glow area */

	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: var(--ui-glow-radius);
	/* The shadow applied to the entire pseudo-element below */
	overflow: visible; /* Crucial: allowed the shadow to be seen outside the bounds */
}

/* 4. The image/icon inside the container */
.rotating-glow-container > .your-icon-element {
	position: relative;
	z-index: 2; /* Keeps the icon above the glow layer */
	border-radius: inherit; /* Inherit the radius from the container */
}

/* 5. The pseudo-element that *is* the glow layer */
.rotating-glow-container::after {
	content: "";
	position: absolute;
	/* Inset defines how large the glow base is */
	inset: calc(var(--ui-glow-blur) * -0.2); /* Sits just slightly wider than the icon */
	border-radius: calc(var(--ui-glow-radius) * 1.5); /* Slightly softer corners for the glow */
	pointer-events: none;
	z-index: 1; /* Puts it behind the main icon */

	/* The rotating color beam */
	background: conic-gradient(
		from var(--ui-glow-angle),
		var(--ui-glow-color) 0deg,
		transparent 120deg, /* Control how wide the colored part is */
		transparent 240deg,
		var(--ui-glow-color) 360deg
	);

	/* The "Magic Sauce" for the soft glow: Drop-shadow filter */
	filter: blur(var(--ui-glow-blur)); /* Blurs the entire gradient */
	opacity: 0.8; /* Slight transparency for a more organic feel */

	/* Execute the rotation */
	animation: glowRotate var(--ui-glow-speed) linear infinite;
}


.hm-connections .small.et_pb_group .et_pb_divider {
	flex: 1;
	height: 2px;
}

.hm-connections .small.et_pb_group .et_pb_divider:before {
	top: -4px;
	border-top-color: var(--light-blue);
	border-top-style: solid;
	border-top-width: 10px;
	z-index: -1;	
}

.hm-connections .small.et_pb_group .et_pb_divider:after {
	content: "";
	display: block;
	border-top: 2px dashed var(--blue);
	position: absolute;
	left: 0;
	top: 0px;
	width: 100%;
	height: 2px;
	z-index: -1;
}

.hm-connections .wrapper:after {
	content: '';
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	height: 0px;
	bottom: 0;
	margin: auto;
	border-top: 2px dashed var(--blue);
	top: 0px;
}

.hm-connections .wrapper:before {
	content: '';
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	height: 6px;
	background: var(--light-blue);
	bottom: 0;
	margin: auto;
	top: 0;
}

.hm-features .features .et_pb_text {
	padding: 24px 24px 24px 24px;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #E5E5E6;
	border-radius: 24px 24px 24px 24px;
	text-align: center;
	font-weight: 700;
	color: var(--gcid-heading-color);
	font-size: 18px;
	opacity: 0;
	overflow: hidden;
	white-space: nowrap;
	box-sizing: border-box; 
}

.hm-features .features .et_pb_text:hover {
	border-color: var(--blue);
}

.hm-features .features .et_pb_text:nth-child(odd) {
	margin-left: auto;
}

.stats .et_pb_number_counter {
	row-gap: 10px;	
}

.stats .et_pb_number_counter .percent {
	height: 48px;
}

.faq .et_pb_accordion_item {
	padding: 0;
}

.faq .et_pb_toggle h5.et_pb_toggle_title {
	padding: 20px;
	transition: all .5s ease;
}

.faq .et_pb_accordion_item:hover h5.et_pb_toggle_title {
	color: var(--blue) !important;
}

.faq .et_pb_toggle .et_pb_toggle_content {
	padding: 0 20px 20px 20px;
}

.faq .et_pb_toggle .et_pb_toggle_title:before {
	right: 24px;
}

.faq .et_pb_accordion .et_pb_toggle_title:before {
	content: "\33";
	display: block !important;
	color: var(--gcid-heading-color);
	font-size: 23px;
	transition: all .5s ease;
}

.faq .et_pb_accordion .et_pb_toggle_open .et_pb_toggle_title:before {
	transform: rotate(180deg);

}

.faq .et_pb_accordion_item {
	transition: all .5s ease;
}

.faq .et_pb_accordion_item.et_pb_toggle_open {
	transform: scale(1.04);
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.faq .et_pb_accordion_item h5.et_pb_toggle_title {
	font-weight: bold;
	font-size: 18px;
}

.contact-us .et_pb_blurb {
	border-radius: 10px;
	padding: 25px;
}

.contact-us .et_pb_blurb span.et_pb_image_wrap:not(.et_flex_module):not(.et_grid_module) {
	background: var(--faded);
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	width: 60px;
	height: 60px;
}

.timeline-style.et_pb_timeline .et_pb_timeline_card {
	background-color: transparent;
	padding: 0 0 20px 0;
}

.timeline-style.et_pb_timeline.et_pb_module .et_pb_timeline_connector {
	background-color: var(--light-blue);
	left: 23px;
}

.timeline-style.et_pb_timeline .et_pb_timeline_marker:before {
	content: '';
	width: 15px;
	height: 15px;
	position: absolute;
	border-radius: 100%;
	background: var(--blue);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.timeline-style.et_pb_timeline .et_pb_timeline_marker {
	width: 50px;
	height: 50px;
	background-color: white;
}

.features-btns .et_flex_column {
	gap: 10px;
}

.features-btns .et_pb_blurb_content.et_flex_module {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}

.features-btns h4.et_pb_module_header {
	padding: 0;
}

.features-btns .et_pb_blurb_position_left .et-pb-icon {
	font-size: 24px;
}

.features-btns .et_pb_blurb {
	flex: 0 1 calc(33.3% - 6.9px);
	transition: all .5s ease;
}

.features-btns .et_pb_blurb:hover {
	transform: scale(0.9);
}

.features-table .header .package, .features-table .feature-wrap .includes {
	flex: 2;
}

.features-table .header .title, .features-table .feature-wrap .feature {
	flex: 3;
}

.pricing-tables .price {
	font-size: 72px;
	line-height: 1;
	color: black;
	font-weight: bold;
}

.pricing-tables .price span.descr {
	font-size: 17px;
	font-weight: normal;
	color: var(--gcid-body-color);
}

.toggle-container {
	position: relative;
	background-color: #ffffff;
	display: inline-flex;
	padding: 5px;
	border-radius: 50px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.toggle-container input[type="radio"] {
	display: none;
}

.toggle-option {
	position: relative;
	z-index: 2; 
	width: 100px; 
	padding: 10px 0;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	color: #4a5568;
	cursor: pointer;
	user-select: none;
	transition: color 0.3s ease;
}

#months12:checked ~ label[for="months12"],
#months24:checked ~ label[for="months24"] {
	color: #ffffff;
}

.slider {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100px; 
	height: calc(100% - 10px);
	background-color: #0c62c4;
	border-radius: 40px;
	z-index: 1;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); 
}

#months24:checked ~ .slider {
	transform: translateX(100px);
}

.pricing-tables ul {
	list-style: none;
	padding: 0;
}

.pricing-tables ul li {
	position: relative;
	padding-left: 25px;
	padding-bottom: 12px;
}

.pricing-tables ul li:before {
	content: '\52';
	font-family: 'ETmodules';
	color: var(--blue);
	font-size: 17px;
	position: absolute;
	left: 0;
	top: 0;
}

a.main-btn.intrested {
	display: block;
	width: 100%;
	text-align: center;
	max-width: 100% !important;
}

/* Καθορισμός του section ως pinned container */
.cards-stack-section {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Ο wrapper των κάρτων */
.cards-wrapper {
	position: relative;
	width: 100%;
	height: 100vh; /* Γεμίζει την οθόνη */
}

/* Το container που κρατά τις κάρτες */
.cards-container {
	position: relative;
	width: 100%;
	height: 100%;
}

/* Τοποθέτηση όλων των slides το ένα πάνω στο άλλο */
.scroll-slide.et_pb_row {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform, opacity;
}


.phone-slider-wrapper {
	overflow: hidden !important;
	position: relative;
	touch-action: pan-y;
	width: 270px;
	max-width: 100%;
	aspect-ratio: 250 / 484;
	margin: auto;
}

.phone-slider.et_pb_group {
	max-width: 100%;
}

.phone-slider .et_pb_image {
	min-width: 100%;
	height: 100%;
	max-width: 100%;
	flex: 0 0 100%
}

.phone-slider .et_pb_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media all and (max-width: 980px) {
	.features-btns .et_pb_blurb {
		flex: 0 1 calc(50% - 5px);
	}

	.faq .et_pb_toggle .et_pb_toggle_title:before {
		right: 6px;
	}
}

@media all and (max-width: 800px) {
	.hm-connections .et_pb_row_nested > .et_pb_column, .hm-connections .wrapper > .et_pb_column {
		flex-direction: column;	
	}

	.hm-connections .et_pb_group.small {
		width: 100%;
	}

	.hm-connections .small:before {
		content: '';
		width: 100%;
		position: absolute;
		left: 0;
		right: 0;
		height: 6px;
		background: var(--light-blue);
		bottom: 0;
		margin: auto;
		top: 0;
	}

	.hm-connections .small .et_pb_image {
		z-index: 1;
	}

	.hm-connections .small:after {
		content: '';
		width: 100%;
		position: absolute;
		left: 0;
		right: 0;
		height: 0px;
		bottom: 0;
		margin: auto;
		border-top: 2px dashed var(--blue);
		top: 0px;
	}

	.hm-connections .wrapper:before, .hm-connections .wrapper:after {
		display: none;
	}
}

@media all and (max-width: 670px) {
	.features-btns .et_pb_blurb {
		flex: 100%;
	}
}


@media all and (max-width: 550px) {
	.main-title h3, .main-title-single h2 {
		font-size: 40px;
	}
}

@media all and (max-width: 465px) {
	.features-table h3 {
		font-size: 16px;
	}
}