/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 15 2025 | 00:21:01 */
:root {
	--theme-content-spacing: 0;
	--theme-font-weight: normal;
}

@media (min-width: 1400px) {
	.site {
    	max-width: 1280px;
    	margin: 0 auto;
	}
	
    #header > div[data-device="desktop"] {
        max-width: 1280px;
        margin: 0 auto;
    }

    #header .ct-container-fluid {
        max-width: 1280px;
        margin: 0 auto;
    }
}

#header [data-items] {
	justify-content: flex-end;
}

.ct-container-full {
	padding: 0 !important;
}

.ct-menu-link {
	font-weight: normal !important;
}

.menu-item a:hover {
	text-decoration: underline;
	transition: all 0.3s ease;
}

.text-rtl {
	text-align: justify;
    text-align-last: right;
	text-justify: inter-word;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 12px;
	margin-bottom: 12px;
    padding: 0 16px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 12px; /* Position line behind the dots */
    left: 0;
    right: 0;
    height: 2px;
    z-index: 1;
    background-color: var(--theme-palette-color-5);
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
	cursor:pointer;
	padding: 0 16px;
	display: flex;
    justify-content: space-between;
    flex-direction: column;
	row-gap: 16px
}

.point {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--theme-palette-color-1);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
}

.step.active .point {
    background-color: var(--theme-palette-color-5);
}

.dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--theme-palette-color-1);
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
    transition: background-color 0.5s ease;
}

.step.active .dot {
    background-color: var(--theme-palette-color-5);
}

.step.active .check {
	display: block;
}

.timeline p {
    font-weight: bold;
    color: var(--theme-palette-color-5);
    font-size: 24px;
    line-height: 1.2;
	margin: auto 0;
}

.check {
    color: var(--theme-palette-color-7);
    font-size: 18px;
}

.item-description.active {
    opacity: 1;
    visibility: visible;
}

.item-description {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.radius-30 {
	border-radius: 30px;
}

.faq .uagb-faq-questions {
	margin-bottom: 16px;
	border-radius: 80px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 8px;
}

.social {
    display: flex;
    flex-direction: column;
	align-items: flex-end;
}

.display-none {
	display: none;
}

.card-info {
  	transition: background 0.6s;
}

.card-info .card-info-text {
  	opacity: 0;
	transition: opacity 3 ease;
}

.card-info:hover .card-info-text {
	opacity: 1;
}

.card-info::before {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-info:hover::before {
  opacity: 1;
}

.ct-panel-inner {
	background-color: var(--theme-palette-color-5) !important;
}

@supports (-webkit-touch-callout: none) {
	@media screen and (max-device-width: 1024px) {
		.background-fixed {
			background-attachment: scroll;
		}
	}
}