@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');

:root {
 
  --bodyColor: #000;
  --white: #fff;
  --grey: #ababab;
  --dark-grey: #434e49;
  --box-color: #000403;
  --border-radius: 0;

  --brand-color-1: #5e87eb;
  --brand-color-2: #2F8B9B;
  --brand-color-3: #FEBC35;
  --brand-color-4: #02f291;
  --brand-color-5: #ff3c00;
}


body.dark-mode {
 
  --bodyColor: #f3f3f3;
  --brand-color-4: #03cc60;
  --white: #050505;
  --grey: #5c5c5c;
  --box-color: #f0f0f0;
  --border-radius: 0;
}


.switch-button {
  border-radius: var(--border-radius);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  padding: 1rem;
  border: 0.5px solid var(--grey);
}

.btn-light-mode {
  color: var(--brand-color-3);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'El Messiri', sans-serif;	
  direction: ltr;
  color: var(--white);
  background-color: var(--bodyColor);
  text-align: left;
  position: relative;
  overflow: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

::selection {
  color: var(--white);
  background-color: var(--brand-color-3);
}

.primary-text {
  color: var(--brand-color-3) !important;
}

.grey-text {
  color: var(--grey);
}

.text-white {
  color: var(--white);
}

.bg-box {
  background-color: var(--box-color);
}

.heading-1,
.heading-2 {
  color: var(--white);
}

.heading-1 {
  font-size: 56px;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
}

.heading-2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
}

.heading-3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
}

.body-1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--grey);
}

.body-2 {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
  line-height: 28px;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-32 {
  gap: 32px;
}

@media (max-width: 990px) {
  .heading-1 {
    font-size: 36px;
  }

  .heading-2 {
    font-size: 20px;
  }

  .heading-3 {
    font-size: 16px;
  }

  .body-1 {
    font-size: 16px;
    line-height: 28px;
  }

  .body-2 {
    font-size: 14px;
    line-height: 26px;
  }

  .gap-8 {
    gap: 4px;
  }

  .gap-16 {
    gap: 8px;
  }

  .gap-32 {
    gap: 16px;
  }

  .padding-32 {
    padding: 16px;
  }

  .padding-16 {
    padding: 8px;
  }

  .padding-8 {
    padding: 4px;
  }

  .icon-lg {
    font-size: 36px;
  }

  .icon-md {
    font-size: 22px;
  }

  .icon-sm {
    font-size: 14px;
  }

  .section {
    padding-block: 3rem;
  }

  .bordered-box {
    padding: 8px;
  }

  .shape {
    display: none;
  }
}

a {
  color: var(--brand-color-3);
  text-decoration: none;
  text-transform: capitalize;
}

.w-fit {
  width: fit-content;
}

.shape {
  position: absolute;
  overflow: hidden;
  opacity: 0.6;
}

.dark-mode .sape {
  opacity: 0.4;
}

.bordered-box {
  border: 0.5px solid var(--dark-grey);
  padding: 16px;
  background-color: transparent;
  border-radius: var(--border-radius);
}

.portfolio .bordered-box img{
  height: 300px;
  object-fit: cover;
}
.portfolio .bordered-box h3 {
  margin-top: 15px;
}
.padding-32 {
  padding: 32px;
}

.padding-16 {
  padding: 16px;
}

.padding-8 {
  padding: 8px;
}

.icon-lg {
  font-size: 48px;
}

.icon-md {
  font-size: 32px;
}

.icon-sm {
  font-size: 24px;
}

p {
  color: var(--grey);
}

.section {
  direction: initial;
  padding-block: 6rem;
}

.blury {
  width: 1200px;
  z-index: -1;
}

.organise {
  width: 700px;
  z-index: -1;
}

input,
textarea {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: var(--grey);
}

.btn {
  background-color: var(--brand-color-3);
  color: var(--bodyColor);
  font-weight: 800;
  border-radius: var(--border-radius);
  padding: 10px 28px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-transform: capitalize;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  outline: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  z-index: 1;
  transition: color 300ms ease-in-out;
}

.btn:hover {
  color: var(--white);
  border-color: solid var(--dark-grey);
}

.learn-more {
  gap: 10px;
  text-transform: capitalize;
  color: var(--brand-color-3);
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.learn-more i {
  font-size: 22px;
  margin-left: 8px;
}

.learn-more:hover {
  letter-spacing: 1.5px;
  transition: all 0.5s;
  color: var(--white);
}


ul {
  list-style: none;
}

img {
  width: 100%;
}




#progress {
  --scroll-value: 0%;
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  background: conic-gradient(var(--brand-color-3) var(--scroll-value), var(--dark-grey) var(--scroll-value));
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;
  display: grid;
  background-color: var(--bodyColor);
  place-items: center;
  font-size: 35px;
  color: var(--brand-color-3);
}

#progress-value i {
  font-size: 24px;
}



.header {
  direction: initial;
  position: fixed;
  z-index: 900;
  padding-block: 12px;
  background-color: var(--bodyColor);
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: none;
}

@media (max-width: 990px) {
  .navbar {
    background-color: var(--box-color);
  }
}

.navbar .logo {
  width: 9rem;
}

.navbar ul li a {
  font-weight: 600;
  color: var(--grey);
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--brand-color-3) !important;
}

.navbar i {
  font-size: 24px;
  color: var(--grey);
}


.hero {
  margin-top: 10%;
}

.hero .heading-1 {
  font-size: 64px;
}

.hero .container > * {
  position: relative;
}

@media (max-width: 990px) {
  .hero .heading-1 {
    font-size: 56px;
    padding-top: 80px;
    word-break: break-all;
  }
  .heading-1-c {
    padding: 0;
  }
}

@media (max-width: 720px) {
  .hero .heading-1 {
    font-size: 36px;
    padding-top: 85px;
  }
  .heading-1-c {
    padding: 0;
  }
}

.hero .blury {
  position: absolute;
  right: 10%;
  top: -60%;
  width: 1000px;
  transform: rotate(90deg);
}



.about .blury-1 {
  top: -150px;
  right: -550px;
  z-index: -1;
}

.about .organise {
  top: 0;
  left: -400px;
  z-index: -1;
}

.about .container > * {
  position: relative;
}

.about .blury-2 {
  top: 100px;
  left: -500px;
}



.services .blury-1 {
  top: -150px;
  right: -500px;
}

.services .organise {
  width: 700px;
  top: 0;
  right: -300px;
}

.services .container > * {
  position: relative;
}

.services .blury-2 {
  top: 100px;
  left: -500px;
}

@media (max-width: 990px) {
  .mobile-none {
    display: none;
  }

  .services .reverse {
    display: flex;
    flex-direction: column-reverse !important;
    flex-wrap: wrap;
  }
}



.portfolio .blury-1 {
  top: -200px;
  right: -500px;
}
.portfolio .bordered-box {
  min-height: 550px;
}
@media (max-width: 1200px) {
   .portfolio .bordered-box {
  min-height: 600px;
}
}
@media (max-width: 991px) {
  .portfolio .bordered-box {
    min-height: auto;
  }
}
.portfolio .organise {
  top: 0;
  right: -300px;
}

.portfolio .scroller > * {
  position: relative;
}

.portfolio .blury-2 {
  bottom: -100px;
  left: -500px;
}


.testimonials .blury-1 {
  top: -200px;
  right: -500px;
}

.testimonials .organise {
  top: 0;
  left: -300px;
}

.testimonials .scroller > * {
  position: relative;
}

.testimonials .container > * {
  position: relative;
}

.testimonials .blury-2 {
  bottom: -100px;
  left: -500px;
}

.testimonials .bordered-box {
  width: 600px;
  background-color: var(--box-color);
}

@media (max-width: 990px) {
  .testimonials .bordered-box {
    width: 400px;
  }

  .testimonials .img img {
    width: 100px;
    height: 100px;
  }

  .testimonials .img {
    flex: 0.3;
  }

  .testimonials .text {
    flex: 0.7;
  }
}

@media (max-width: 400px) {
  .testimonials .bordered-box {
    width: 320px;
  }
}

.testimonials .img img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}


@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroller {
  width: 100%;
}

.scroller__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 35s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}


.pricing .dollar {
  font-size: 18px;
  font-weight: bold;
}

.pricing .blury-1 {
  top: -300px;
  left: -600px;
}

.pricing .blury-2 {
  bottom: -400px;
  right: -600px;
}

.pricing .shape-text {
  position: absolute;
  top: 20px;
  right: 10px;
}

.pricing .shape-text h3 {
  font-size: 42px;
  color: rgba(34, 50, 43, 0.445);
  font-weight: bold;
  line-height: 16px;
}

.pricing .shape-text h4 {
  font-size: 30px;
  color: rgba(34, 50, 43, 0.466);
  font-weight: bold;
}

.pricing .month {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: bold;
}

.pricing .line-0 {
  line-height: 0;
}

.pricing .shape-icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 82px;
  color: #262e2b63;
}



.cta .blury-1 {
  top: -200px;
  left: -600px;
}

.cta .container > * {
  position: relative;
}



.team .blury-1 {
  top: 200px;
  right: -600px;
}

.team .container > * {
  position: relative;
}

.team .content-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  background: linear-gradient(to top, rgb(0, 4, 3), rgba(0, 0, 0, 0.288));
  opacity: 0;
}

.dark-mode .team .content-overlay {
  background: linear-gradient(
    to top,
    rgb(235, 241, 240),
    rgba(255, 255, 255, 0.075)
  );
}

.team .content-overlay:hover {
  opacity: 1;
}

.team .icon {
  width: 50px;
  height: 50px;
}



.faq .blury-1 {
  top: -200px;
  left: -600px;
}

.faq .blury-2 {
  top: 0;
  right: -600px;
}

.faq .container > * {
  position: relative;
}

.faq .btn {
  color: var(--white) !important;
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: transparent !important;
  border: none !important;
  text-align: start;
}

.rotate-icon {
  transition: transform 0.3s ease-in-out;
}

.rotate-icon.rotated {
  transform: rotate(180deg);
}


.contact .blury-1 {
  top: -400px;
  left: -600px;
}

.contact .blury-2 {
  top: -400px;
  right: -600px;
}

.contact-map {
  height: 320px;
}

@media (max-width: 990px) {
  .contact-map {
    height: auto;
  }
}

.toast-success {
  background-color: var(--brand-color-3) !important;
  opacity: 1 !important;
}

.toast-error {
  background-color: #8b0500 !important;
  opacity: 1 !important;
}

.toast {
  border-radius: var(--border-radius) !important;
  color: var(--white);
  box-shadow: none !important;
  z-index: 900;
}



.footer-link {
  font-size: 16px;
  color: var(--grey);
}

.footer a i {
  font-size: 16px;
  color: var(--grey);
}

.footer i:hover {
  color: var(--brand-color-3);
}

.copy {
  font-size: 12px;
  color: var(--dark-grey);
}

.navbar-brand{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.navbar-brand img{
  width: 50px;
  height: 50px;
}

.footer-logo{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.footer-img{
  width: 40px;
  height: 40px;
}

.desc-comments{
  flex: 1;
}

.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.6);
	backdrop-filter: blur(5px);
}

.modal-content {
  overflow: auto;
	background-color: #fff;
	padding: 40px;
	border: none;
	width: 100%;
	max-width: 600px;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 10px 25px rgba(0,0,0,0.5);
	animation: modalopen 0.4s ease-out;
	color: #fff;
}

.modal-content .contact-form{
	padding: 0;
}

.pricing-footer .theme-btn{
	margin: 0 30px;
}

.modal-content .theme-btn{
	width: 100%;
}

.modal-content .checkbox-text a{
	color: var(--brand-color-3);
}

.modal-content .witr_con_btn2 .w_btn2{
	width: 100%;
}

.modal-content .witr_field2 .witr_form_field2 select, .modal-content .witr_field2 .witr_form_field2 input, .modal-content .witr_field2 .witr_form_field3 input, .modal-content .witr_text_area2 textarea{
	color: #fff;
}

@keyframes modalopen {
	from {
		opacity: 0;
		transform: translate(-50%, -55%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.close-modal {
	position: absolute;
	right: 25px;
	top: 15px;
	color: #aaa;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
	line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
	color: #fff;
	text-decoration: none;
}

#modalTariffTitle {
	margin: 0;
	color: #212529;
	text-align: center;
	font-size: 28px;
	font-weight: 600;
}

.tariff-price-display {
	display: flex;
	align-items: baseline;
	justify-content: center; 
	font-size: 32px;
	font-weight: 700;
	color: var(--brand-color-3);
}

.tariff-price-display .price-period {
	font-size: 18px;
	color: #aaa;
	margin-left: 5px;
}

@media (max-width: 768px) {
	.modal-content {
		width: 90%;
		padding: 30px 20px;
	}
	
	.close-modal {
		right: 20px;
		top: 10px;
		font-size: 28px;
	}
	
	#modalTariffTitle {
		font-size: 24px;
	}
	
	.tariff-price-display {
		font-size: 28px;
		margin-bottom: 25px;
	}
	
	.price-toggle-container {
		margin: 20px 0;
	}
	
	.price-toggle-container span {
		font-size: 16px;
	}

	.site-breadcrumb .breadcrumb-title{
		font-size: 30px;
	}
}

@media (max-width: 575px) {
  .heading-1 {
    font-size: 30px;
  }

  .heading-2 {
    font-size: 18px;
  }

}

@media (max-width: 480px) {
	.modal-content {
		width: 95%;
		padding: 25px 15px;
	}

	.navbar-brand span{
		font-size: 16px;
	}

	.navbar-brand img{
		width: 40px;
		height: 40px;
	}
	
	#modalTariffTitle {
		font-size: 20px;
	}
	
	.tariff-price-display {
		font-size: 24px;
	}
	
	.price-toggle-switch {
		width: 50px;
		height: 28px;
		margin: 0 10px;
	}
	
	.price-toggle-slider:before {
		height: 22px;
		width: 22px;
	}
	
	input:checked + .price-toggle-slider:before {
		transform: translateX(22px);
	}
}

.text-sign{
	margin-top: 20px;
}

	.price-toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
	margin: 0 15px;
	vertical-align: middle;
}

.price-toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.price-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 34px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.price-toggle-slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

input:checked + .price-toggle-slider {
	background-color: var(--brand-color-3);
}

input:checked + .price-toggle-slider:before {
	transform: translateX(26px);
}

.price-toggle-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0;
}

.price-toggle-container span {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	transition: color 0.3s;
}

input:checked ~ .price-toggle-container span:first-child {
	color: #888;
}

input:not(:checked) ~ .price-toggle-container span:last-child {
	color: #888;
}

.no-comments-message {
  margin-top: 12px;
  padding: 12px 16px;
  text-align: center;
  font-size: 16px;
  background: #F9FBFF;
  color: #5D6678;
}

.privacy-flex section{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rand-list-style{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
 
.rand-list-style li {
	list-style: circle;
}

.rand-list-style img{
	padding: 30px 0;
}

.privacy-flex div{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-check{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.light-theme .form-check-label{
	margin-left: 10px;
	color: #fff;
}

.dark-mode .form-check-label{
	margin-left: 10px;
	color: #000;
}

.form-check-input{
	width: 20px;
	height: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-color: #000;
}

.modal-content .heading-3{
	color: #000;
}

.modal-content .form-check-label{
	color: #000;
}

.form-check-label{
	margin-left: 10px;
}

.portfolio-desc{
  min-height: 220px;
}

.thanks-page-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  font-size: 20px;
}

.main-form-sign{
  min-height: 80vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.main-form{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: center;
}

.blog-comments-single img {
  width: 80px;
  height: 80px;
  border: 2px solid #333;
  border-radius: 50%;
}

.blog-comments-content {
  padding: 20px 30px;
}

.blog-comments-content span {
  font-size: 14px;
}

.blog-comments-content a {
  font-weight: 600;
  margin-top: 5px;
}

.blog-comments-content a:hover {
  color: #333;
}

.blog-comments-reply {
  margin-left: 50px;
  margin-right: 50px;
}

.services .bordered-box img{
  height: 300px;
  object-fit: cover;
}

.blog-desc{
justify-content: space-around;
  min-height: 360px;
}

@media (max-width: 991px) {
  .section{
    padding-block: 1rem;
  }
}

.light-theme{
  .navbar-toggler{
    color: #fff !important;
  }
}

@media (max-width: 575px) {
  .blog-comments-single {
    flex-direction: column;
  }
  .modal-content .heading-3{
    display: none;
  }

  .tariff-price-display{
    margin-bottom: 0;
  }

  #modalTariffTitle{
    margin-bottom: 0;
  }

  .modal-content .main-form{
    gap: 10px;
  }

  .modal-content .g-4{
    --bs-gutter-y: 0.5rem;
    --bs-gutter-x: 0.5rem;
  }
}