*{
    padding: 0;
    margin: 0;
}
body{
    font-family: "Lato", serif;
    font-size: 14px;
    animation: gradient 15s ease infinite;
	background-color: var(--background);

}
body.lang-ar {
    font-family: "Noto Kufi Arabic", serif;
	font-size: 14px;
    animation: gradient 15s ease infinite;
	background-color: var(--background);
}
:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--background:#ffffff;
	--banner:linear-gradient(to left, #74a179, #277EB8);
	--faq:#fafafa;
	--p:#818992;
	--icon:#404040;
  }

[data-theme="dark"] {
	--color-white: #000000;
	--color-black: #ffffff;
	--background:#222831;
	--banner:linear-gradient(to left, #77a07d, #39739a);
	--faq:#323b49;
	--p:#d7d7d7;
	--icon:#ffffff;


    
  }
a {
	color:#277EB8;
}
a:hover {
	color:#277EB8;
}
h1, h2, h3 {
	font-weight: 700;
}

h4, h5 {
	font-weight:600;
}
h6 {
	font-weight:500;
}
.white {
	color:var(--color-white) !important;
}
.black {
	color:var(--color-black);
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
 
    50% {
        background-position: 100% 50%;
    }
 
    100% {
        background-position: 0% 50%;
    }
}
.navbar {
	position: fixed;
	right: 0;
	left: 0;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	min-height: 50px;
	line-height: 50px;
	background: transparent;
	z-index: 1030;
}
.navbar .active {
	color: #5f0099 !important;
}
.navbar .navbar-brand {
}
.navbar .nav-item {
	margin: 0 5px;
	padding: 0;
}
.navbar .nav-item a {
	color: var(--color-black);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
}
.navbar .nav-item a:hover {
	color: #277EB8;
}
.navbar .nav-link {
	position: relative;
	padding: 0;
}
.navbar .navbar-toggler {
	cursor: pointer;
}
.navbar .navbar-toggler span {
	color: var(--color-black);
}
.navbar-style2 .active:after, .navbar-style2 .nav-link:after {
	display: none;
}
.nav-scroll {
	background: var(--background);
	-webkit-box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
	box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.0509803922);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}
.nav-scroll .navbar-nav > li > a {
	color: var(--color-black);
}
.nav-scroll .navbar-brand img {
	-webkit-transform: scale(1.03) !important;
	transform: scale(1.03) !important;
}
.nav-scroll .navbar-toggler {
	cursor: pointer;
}
.nav-scroll .navbar-toggler span {
	color: var(--color-black);
}
.nav-scroll .nav-link:hover:after {
	background-color: #2388ed;
}
.nav-scroll .active {
	position: relative;
}
/* From Uiverse.io by Type-Delta */ 
/* a clone from joshwcomeau.com 
 * but this version runs on pure CSS
 */

 .themeToggle {
	color: var(--color-black);
	width: 2.1em;
  }
  .nav-scroll .navbar-nav > .themeToggle  {
	color: var(--color-black);
}
  .st-sunMoonThemeToggleBtn {
	position: relative;
	cursor: pointer;
  }
  
  .st-sunMoonThemeToggleBtn .themeToggleInput {
	opacity: 0;
	width: 100%;
	aspect-ratio: 1;
  }
  
  .st-sunMoonThemeToggleBtn svg {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.4s ease;
	transform: rotate(40deg);
  }
  
  .st-sunMoonThemeToggleBtn svg .sunMoon {
	transform-origin: center center;
	transition: inherit;
	transform: scale(1);
  }
  
  .st-sunMoonThemeToggleBtn svg .sunRay {
	transform-origin: center center;
	transform: scale(0);
  }
  
  .st-sunMoonThemeToggleBtn svg mask > circle {
	transition: transform 0.64s cubic-bezier(0.41, 0.64, 0.32, 1.575);
	transform: translate(0px, 0px);
  }
  
  .st-sunMoonThemeToggleBtn svg .sunRay2 {
	animation-delay: 0.05s !important;
  }
  .st-sunMoonThemeToggleBtn svg .sunRay3 {
	animation-delay: 0.1s !important;
  }
  .st-sunMoonThemeToggleBtn svg .sunRay4 {
	animation-delay: 0.17s !important;
  }
  .st-sunMoonThemeToggleBtn svg .sunRay5 {
	animation-delay: 0.25s !important;
  }
  .st-sunMoonThemeToggleBtn svg .sunRay5 {
	animation-delay: 0.29s !important;
  }
  
  .st-sunMoonThemeToggleBtn .themeToggleInput:checked + svg {
	transform: rotate(90deg);
  }
  .st-sunMoonThemeToggleBtn .themeToggleInput:checked + svg mask > circle {
	transform: translate(16px, -3px);
  }
  .st-sunMoonThemeToggleBtn .themeToggleInput:checked + svg .sunMoon {
	transform: scale(0.55);
  }
  .st-sunMoonThemeToggleBtn .themeToggleInput:checked + svg .sunRay {
	animation: showRay1832 0.4s ease 0s 1 forwards;
  }
  
  @keyframes showRay1832 {
	0% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
  }
  
.banner {
	background: var(--banner);
	padding:100px 0px;
	position:relative;
}
.banner::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.banner a.weblink {
	color:#ffffff;
	border-bottom:1px dotted #ffffff;
}
.banner a:hover {
	text-decoration:none;
}
.svg-wave {
	position: absolute;
	bottom: 0;
	width: 100%;
}
.banner-text {
	padding-right:80px;
	margin:50px 0px 0px;
}
.banner-text p {
	margin:40px 0px;
}
.banner-text ul {
	list-style: none;
}
.banner-text ul li {
	display: inline-block;
	margin: 0px 10px 10px 0px;
}
.banner-text ul li a {
	display: block;
}
.banner-text ul li a img {
	width: 150px;
	border-radius: 7px;
}
.moveUpDown{
    animation: mover 3s infinite  alternate;

}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}
.form-select{
	flex: auto;
	height: 55px;
	border: 1px solid #B1B6C5;
    border-radius: 15px;
	border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group button{
    width: 175px;
    height: 55px;
    border: 1px solid #277eb8;
    border-radius: 40px;
	border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #277eb8;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}
.input-group button:hover{
    background-color: #196395;
}
.prelative {
	position:relative
}
.section-padding {
	padding:80px 0px;
}
.sectioner-header {
	width:69%;
	margin:0 auto;
}
.line {
	height: 2px;
	width: 50px;
	background: #277eb8;
	display: block;
	margin: 20px auto 20px;
}
.line::after {
	content:"";
	position: absolute;
	left: 50%;
	width: 150px;
	height: 2px;
	border-bottom: 2px dashed #277eb8;
	margin-left: -75px;
}
.sectioner-header p {
	color: var(--p);
	font-size: 17px;
}
.section-content {
	margin-top: 80px;
}
.icon-box {
	margin-bottom:50px;
}
.icon-box i {
	display: block;
	position: relative;
	width: 135px;
	height: 135px;
	border-radius: 100px;
	background: #277eb8;
	background:  linear-gradient(to left, #277eb8, #277eb8);
	color: #ffffff;
	font-size: 50px;
	line-height: 135px;
	margin: 0 auto;
}
.icon-box h5 {
	margin-top:30px;
}
.icon-box p {
	color: var(--p);
	font-size: 14px;
	width: 80%;
	margin: 0 auto;
}
.single-feature {
	margin-bottom: 80px;
	margin-top: 40px;
}
.single-feature h5 {
	font-size: 16px;
}
.media-right-margin {
	margin-right:25px;
}
.single-feature p {
	color:  var(--p);
	font-size: 13px;
}
.icon-border {
}
.icon-border span {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 100px;
	color: #277eb8;
	font-size: 18px;
	line-height: 50px;
	border: 1px solid #277eb8;
}
.faq {
	background: var(--faq);
	border-bottom: 1px solid #e4e4e4;
}
.faq-content {
	margin: 20px 0px;
}
.faq-content h4 {
	font-weight: 400;
	font-size: 20px;
}
.faq-content p {
	color: var(--p);
	font-weight:300;
	margin-top:15px;
}


.social-icon {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	margin:0;
	padding:0;
	display:flex;
  }
  .social-icon li {
	list-style:none;
  }
  .social-icon li a {
	display:block;
	position:relative;
	width:75px;
	height:75px;
	line-height:75px;
	font-size:40px;
	text-align:center;
	text-decoration:none;
	color:var(--icon);
	margin: 0 30px;
	transition:.5s;
  }
  .social-icon li a span {
	position:absolute;
	transition: transform .5s;
  }
  .social-icon li a span:nth-child(1),
  .social-icon li a span:nth-child(3){
	width:100%;
	height:3px;
	background:var(--icon);
  }
  .social-icon li a span:nth-child(1) {
	top:0;
	left:0;
	transform-origin: right;
  }
  .social-icon li a:hover span:nth-child(1) {
	transform: scaleX(0);
	transform-origin: left;
	transition:transform .5s;
  }
  
  .social-icon li a span:nth-child(3) {
	bottom:0;
	left:0;
	transform-origin: left;
  }
  .social-icon li a:hover span:nth-child(3) {
	transform: scaleX(0);
	transform-origin: right;
	transition:transform .5s;
  }
  
  .social-icon li a span:nth-child(2),
  .social-icon li a span:nth-child(4){
	width:3px;
	height:100%;
	background:var(--icon);
  }
  .social-icon li a span:nth-child(2) {
	top:0;
	left:0;
	transform:scale(0);
	transform-origin: bottom;
  }
  .social-icon li a:hover span:nth-child(2) {
	transform: scale(1);
	transform-origin: top;
	transition:transform .5s;
  }
  .social-icon li a span:nth-child(4) {
	top:0;
	right:0;
	transform:scale(0);
	transform-origin: top;
  }
  .social-icon li a:hover span:nth-child(4) {
	transform: scale(1);
	transform-origin: bottom;
	transition:transform .5s;
  }
  
  .facebook:hover {
	color: #3b5998;
  }
  .facebook:hover span { 
	background: #3b5998 !important;
  }
  .twitter:hover {
	color: #30363a;
  }
  .twitter:hover span { 
	background: #30363a !important;
  }
  .telegram:hover {
	color: #24A1DE;
  }
  .telegram:hover span { 
	background: #24A1DE !important;
  }
  .whatsapp:hover {
	color: #25D366;
  }
  .whatsapp:hover span { 
	background: #25D366 !important;
  }
  .social-icon li a .twitter {
	color: #60c0fc;
  }
  /* Terms */


.terms-container{
    width: 600px;
    height: auto !important;
    background-color: #f1f1f1;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    -webkit-box-shadow: 6px -13px 37px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px -13px 37px 5px rgba(0,0,0,0.75);
    box-shadow: 6px -13px 37px 5px rgba(0,0,0,0.75);
    border-radius: 5px;
}
.terms-container .text-center h1{
    color: #333333;
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: .8888889em;
    line-height: 1.1111111;
}
.terms-container h2{
    color: #333333;
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
}
.terms-container p{
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
  
  @media all and (max-width:991px) {
	.navbar .navbar-collapse {
		overflow: auto;
		background:  var(--background);
		color: var(--background) !important;
		text-align: center;
		padding: 10px 0;
	}
	.nav-scroll .navbar-nav > .themeToggle{
		left: 47.5%;
	}
	.navbar .navbar-collapse .navbar-nav > .themeToggle{
		left: 47.5%;
	}

	.nav-scroll .navbar-collapse {
		background: var(--background) !important;
	}
	#contact_form {
		margin-bottom:20px;
	}
	.iphone{
		scale: 1.7 !important;
		top: 30px;
        position: absolute;
	}
	.terms-container{
		scale: 0.9;
	}
	}
	@media all and (max-width:768px) {
		.terms-container{
			scale: 0.7;
			position: relative;
			right: 10%;
		}
	.nav-scroll .navbar-brand img, .navbar-brand img {
		transform: scale(0.75) !important;
		-webkit-transform: scale(0.75) !important;
	}
	.iphone{
		scale: 1.1 !important;
		top: 0px;
        position: relative;
	}
	.input-group button{
		width: 140px;
	}
	.banner-text {
		padding-right: 0px;
		margin: 10px 0px 0px;
		text-align: center;
	}
	h2 {
		font-size: 25px;
	}
	h3 {
		font-size: 23px;
	}
	.section-padding {
		padding: 40px 0px;
	}
	.banner-text p {
		margin: 25px 0px;
	}
	.banner-text ul li a img {
		width: 140px;
		border-radius: 7px;
	}
	.sectioner-header {
		width: 90%;
	}
	.sectioner-header p {
		font-size: 14px;
	}
	.about-btn {
		padding: 5px 30px;
		margin-top: 0px;
		font-size: 16px;
	}
	.single-feature {
		margin-bottom: 20px;
		margin-top: 20px;
	}
	
	
	
	.faq-content {
		margin: 10px 0px;
	}
	.faq-content h4 {
		font-size: 16px;
	}
	.faq-content p {
		font-size: 13px;
	}
	
	.footer-copy p {
		font-size: 10px;
	}
	.social-icon li a {
		
		width:45px;
		height:50px;
		line-height:50px;
		font-size:30px;
		margin: 0 15px;
	
	  }
	}
	@media all and (max-width:568px){
		.terms-container{
			scale: 0.6;
			position: relative;
			right: 20%;
		}
	}
 


	.section-content-terms {
		background-color: #f9f9f9; /* لون خلفية خفيف */
		border-radius: 10px; /* زوايا دائرية */
		padding: 20px; /* مساحة داخلية */
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* تأثير الظل */
	  }
	  
	  .section-content-terms ol {
		padding-left: 20px; /* مسافة للقائمة */
	  }
	  
	  .section-content-terms ol li {
		margin-bottom: 10px; /* مسافة بين البنود */
		font-size: 16px; /* حجم الخط */
		line-height: 1.6; /* ارتفاع السطر */
		color: #333; /* لون النص */
	  }
	  
	  .section-content-terms ol li::before {
		content: "✓"; /* رمز أمام كل بند */
		color: #007bff; /* لون الرمز */
		margin-right: 8px; /* مسافة بين الرمز والنص */
	  }
	  
	  .section-content-terms p {
		margin-top: 15px; /* مسافة بين الفقرات */
		font-size: 16px; /* حجم الخط */
		line-height: 1.8; /* ارتفاع السطر */
		color: #555; /* لون النص */
	  }
	  
	  .section-content-terms p.p_2 {
		font-weight: bold; /* خط عريض للفقرات المهمة */
		text-align: justify; /* تنسيق النص بالتساوي */
		color: #000; /* لون أسود للنص */
	  }
	  
	  .section-content-terms p.p_3 {
		font-style: italic; /* نمط مائل */
	  }
	  
	  .section-content-terms p.p_4 {
		color: #d9534f; /* لون أحمر للتحذيرات */
		font-weight: bold; /* خط عريض */
	  }
	  
	  .section-content-terms p.p_5 {
		text-align: center; /* محاذاة النص للوسط */
		color: #007bff; /* لون أزرق */
		font-size: 18px; /* تكبير النص */
		font-weight: bold; /* خط عريض */
	  }
	  