@font-face {
  font-family: IranianSans;
  src: url(../fonts/iransans.ttf);
}
:root {
  --default-font: "IranianSans", "Roboto", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "IranianSans", "Amatic SC", sans-serif;
  --nav-font: "IranianSans", "Inter", sans-serif;
}
:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #37373f;
  --accent-color: #ce1212;
  --contrast-color: #ffffff;
  --orange-color: #fd7b26;
  --blue-color: #140653;
  --success-color: #50b16e;
  --error-color: #cb2524;
}
:root {
  --nav-color: white;
  --nav-hover-color: white;
  --nav-dropdown-background-color: #fd7b26;
  --nav-dropdown-color: white;
  --nav-dropdown-hover-color: #140653;
}
:root {
  --alt-background-color: #0b0139;

  /* --alt-background-color: #1f1f24; */
}
:root {
  scroll-behavior: smooth;
}
body {
  color: var(--default-color);
  background-color: #140653;
  opacity: 1;
  /* background-image: radial-gradient(#1e058f 1.3px, #140653 1.3px); */
  background-size: 26px 26px;
  font-family: var(--default-font);
  direction: rtl;
  background-image: url(../img/main-background.jpg);
  background-repeat: repeat-y;
  background-size: auto;
  background-position-y: 732px;
}
a {
  color: var(--orange-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--orange-color), transparent 25%);
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--contrast-color);
  font-family: var(--heading-font);
}
label {
  display: inline;
  color: #d0d0d0;
  font-weight: 700;
  font-size: medium;
  margin-bottom: 20px;
}
li {
  list-style: none;
}
.header {
  color: var(--default-color);
  background-color: var(--orange-color);
  padding: 0px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 3px solid #fff;
}
.logo {
  line-height: 1;
}
.logo img {
  max-height: 50px;
  margin-right: 8px;
}
.logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}
.logo span {
  color: var(--accent-color);
  font-size: 36px;
}
.gfield_required {
  margin-right: 4px;
  color: var(--accent-color);
}
.gfield_description {
  padding-top: 20px;
  color: #d3d3d3;
  font-size: small;
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .navmenu {
    order: 3;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu .active:before,
  .navmenu a:hover:before,
  .navmenu li:hover > a:before {
    visibility: visible;
    width: 100%;
  }
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu li:hover > a {
    color: var(--nav-color);
  }
}
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
.footer {
  --background-color: var(--alt-background-color);
  --default-color: #ffff;
  --heading-color: #ffff;
  --heading-font: var(--default-font);
  color: var(--default-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}
.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer .address p {
  margin-bottom: 0;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:after,
#preloader:before {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  animation-delay: -0.5s;
}
@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--orange-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--orange-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--default-font);
}
.section,
section {
  color: var(--default-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}
@media (max-width: 1199px) {
  .section,
  section {
    scroll-margin-top: 56px;
  }
}
.section-title {
  text-align: center;
  padding-bottom: 25px;
  position: relative;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}
.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 48px;
  font-weight: 500;
  font-family: var(--heading-font);
}
.section-title p .description-title {
  color: var(--accent-color);
}
.hero {
  --background-color: var(--blue-color);
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 15px 0;
  display: flex;
  min-height: 700px;
}
.hero h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}
.about .content ul i {
  font-size: 14px;
  left: 0;
  color: var(--orange-color);
  margin-left: 5px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.menu .nav-link {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 80%);
}
@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}
.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}
.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--default-font);
}
@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}
.menu .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.menu .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
@keyframes animate-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact .php-email-form {
  box-shadow: 0 0 20px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #fff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form input[type="email"],
.contact .php-email-form input[type="text"],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
}
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
@keyframes animate-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #fd7b26;
  --bs-btn-border-color: #f58133;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff8535;
  --bs-btn-hover-border-color: #fd7b26;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #fd7b26;
  --bs-btn-active-border-color: #fd7b26;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #fd7b26;
  --bs-btn-disabled-border-color: #fd7b26;
}
.form__group {
  position: relative;
  padding: 15px 0 0;
}
.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #fff;
  outline: 0;
  font-size: 13px;
  color: #fff;
  padding: 7px 0;
  background: 0 0;
  transition: border-color 0.2s;
}
.form__field::placeholder {
  color: transparent;
}
.form__field:placeholder-shown ~ .form__label {
  font-size: 13px;
  cursor: text;
  top: 20px;
}
.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 10px;
  color: #fff;
}
.form__field:focus {
  padding-bottom: 6px;
  font-weight: 700;
  border-width: 3px;
  border-image-slice: 1;
}
.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}
.form__field:invalid,
.form__field:required {
  box-shadow: none;
}
@keyframes moveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.float-animation-20 {
  animation: moveUpDown 2s ease infinite;
}
.float-animation-15 {
  animation: moveUpDown 1.5s ease infinite;
}
.float-animation-17 {
  animation: moveUpDown 1.7s ease infinite;
}
.float-animation-18 {
  animation: moveUpDown 1.8s ease infinite;
}
.float-animation-19 {
  animation: moveUpDown 1.9s ease infinite;
}
.card-service-text {
  background-color: var(--orange-color);
  color: var(--contrast-color);
  padding: 2px;
  border-radius: 20px;
  text-align: center;
  width: 190px;
}
.customer-brand {
  width: 170px;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  /* background-color: var(--orange-color); */
  color: var(--contrast-color);
  border-radius: 50%;
}
.customer-brand img{
  height:100%;
}
.card-package {
  max-width: 350px;
  position: relative;
  background-color: var(--contrast-color);
  padding: 1.2rem;
  padding-top: 1.7rem;
  border-radius: 50px;
  margin-bottom: 30px;
}
.card-package-base-plan-border {
  border: 4px solid var(--orange-color);
}
.card-package-base-plan-background {
  background-color: var(--orange-color);
}
.card-package-silver-plan-border {
  border: 4px solid #6ab563;
}
.card-package-silver-plan-background {
  background-color: #6ab563;
}
.card-package-gold-plan-border {
  border: 4px solid #5d01a3;
}
.card-package-gold-plan-background {
  background-color: #5d01a3;
}
.package-period{
  font-size: 15px;
}
.card-package-head {
  position: absolute;
  width: 80%;
  top: -25px;
  font-size: 20px;
  font-weight: bold;
  left: 50%;
  border-radius: 40px;
  transform: translate(-50%, 0);
  text-align: center;
  padding: 7px;
  color: var(--contrast-color);
}
.card-package-body p {
  font-weight: bold;
  font-size: 14px;
}
.card-package-body > div {
  margin-bottom: 3px;
}
.card-package-body .fa-check {
  color: var(--success-color);
}
.card-package-body .bi-x {
  color: var(--error-color);
  font-size: large;
}
.card-package-body .bi-x::before,
.card-package-body .fa-check::before {
  font-weight: 700 !important;
  font-size: larger;
}
.card-package-footer {
  position: absolute;
  transform: rotate(90deg);
  right: -144px;
  bottom: 8rem;
  padding: 1rem;
  font-size: 21px;
  font-weight: 700;
  color: var(--contrast-color);
  border-start-start-radius: 50px;
  border-start-end-radius: 50px;
  text-align: center;
}
.custom-package-head {
  background-color: var(--orange-color);
  padding: 7px;
  max-width: 46%;
  z-index: 1;
}
.custom-package-body {
  max-width: 85%;
  margin: auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.57) 0%, rgba(255, 255, 255, 0.5691526610644257) 37%, rgba(255, 255, 255, 0.7400210084033614) 50%, rgba(255, 255, 255, 1) 76%);
  border-radius: 30px;
  backdrop-filter: blur(4px);
}
.label {
  display: inline;
  color: var(--default-color);
  font-weight: 700;
  font-size: 16px;
  min-width: 400px;
  text-align: justify;
}
.btn-primary {
  background-color: var(--orange-color);
  white-space: nowrap;
  display: block;
}
.dotted-input {
  width: 100%;
  border: none;
  border-bottom: thin dashed #000;
  padding-bottom: 0;
  outline: 0;
  background-color: inherit;
}
.dotted-input::placeholder {
  color: black;
}
.question {
  color: var(--contrast-color);
  font-size: medium;
}
.accordion-btn {
  border: 0;
  background-color: transparent;
  float: inline-end;
  cursor: pointer;
}
.accordion-itm {
  padding: 10px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.accordion-itm.open .plusimg {
  transform: rotate(180deg);
  color: var(--orange-color);
}
.accordion-itm .plusimg {
  transition: transform 0.5s ease;
  color: var(--contrast-color);
}
.accordion-itm:last-of-type {
  border-bottom: 0;
  padding-bottom: 10px;
}
.accordion-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #0b0139;
  padding: 10px;
  border-radius: 10px;
}
.accordion-bdy p {
  padding: 12px 0;
  margin-bottom: 0;
  color: #dedede;
  text-align: justify;
}
.accordion-bdy.hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.accordion-bdy {
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.card-blog {
  background: var(--alt-background-color);
  border-radius: 4px;
  margin-bottom: 20px;
  padding:0;
}
.card-blog figure {
  position: relative;
}
.card-blog figure img {
  object-fit: fill;
  height: 230px;
  width: 100%;
  border-radius: 4px;
  display: block;
}
.card-blog figure .data {
  background-color: var(--orange-color);
  border-radius: 6px;
  width: 68px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  left: 15px;
  top: 15px;
}
.card-blog .content {
  padding: 15px;
  padding-top: 10px;
}
.card-blog .content .list {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.card-blog .content .list li .text {
  color: #6d7a8c;
  font-size: 14px;
}
.card-blog .content .more {
  color: var(--contrast-color);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}
.card-blog .content .title {
  color: var(--contrast-color);
  margin-bottom: 20px;
}
.card-blog .content .title:hover {
  color: #a1a1a1;
}
#contact-us .section-title{
  padding-bottom: 0;
}
section#blog{
  margin-top: 3rem;
}
.wrapper {
  width: 100%;
}
#form-message-success,
#form-message-warning {
  display: none;
}
#form-message-warning {
  color: red;
}
.info-wrap {
  color: var(--contrast-color);
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: var(--background-color);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control-file {
  display: block;
  width: 100%;
}
.form-inline .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}
#contactForm .error {
  display: block;
  margin-top: 5px;
  color: var(--accent-color);
  font-size: 12px;
  text-align: right;
}
#contactForm .form-control {
  font-size: 16px;
}
.card-most-viewed {
  background-color: var(--orange-color);
  min-width: 200px;
  min-height: 200px;
  margin-left: 10px;
  margin-bottom: 10px;
  border-radius: 30px;
}
.single-footer-widget {
  position: relative;
  z-index: 1;
}
.copywrite-text {
  color: var(--contrast-color);
}
.single-footer-widget .copywrite-text a {
  color: var(--orange-color);
  font-size: 1rem;
}
.single-footer-widget .copywrite-text a:focus,
.single-footer-widget .copywrite-text a:hover {
  color: color-mix(in srgb, var(--orange-color), transparent 20%);
}
.single-footer-widget .widget-title {
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
}
.single-footer-widget .footer_menu li a {
  color: var(--orange-color);
  margin-bottom: 1rem;
  display: block;
  font-size: 1rem;
}
.single-footer-widget .footer_menu li a:focus,
.single-footer-widget .footer_menu li a:hover {
  color: color-mix(in srgb, var(--orange-color), transparent 20%);
}
.single-footer-widget .footer_menu li:last-child a {
  margin-bottom: 0;
}
.footer_social_area {
  position: relative;
  z-index: 1;
}
.footer_social_area a {
  border-radius: 50%;
  height: 40px;
  text-align: center;
  width: 40px;
  display: inline-block;
  background-color: #f5f5ff;
  line-height: 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-right: 10px;
}
.footer_social_area a i {
  line-height: 36px;
}
.footer_social_area a:focus,
.footer_social_area a:hover {
  color: #fff;
}
.scrolled .header {
  box-shadow: 0px 0 18px
    color-mix(in srgb, var(--default-color), transparent 85%);
}
.main-float-img1{
  position: absolute;
  background-image: url(../img/balloon.jpg);
  width: 163px;
  height: 310px;
  top: -71px;
  background-size: contain;
  left: 100px;
}
.main-float-img2{
  position: absolute;
  background-image: url(../img/balloon.jpg);
  width: 163px;
  height: 310px;
  top: 150px;
  background-size: contain;
  left: 600px;
}
.main-float-img3{
  position: absolute;
  background-image: url(../img/balloon.jpg);
  width: 163px;
  height: 310px;
  top: 54px;
  background-size: contain;
  left: 1110px;
}

.main-float-img4{
  position: absolute;
    background-image: url(../img/balloon.jpg);
    width: 126px;
    height: 241px;
    top: 70px;
    background-size: contain;
    left: 380px;
    z-index: 10;
}

.main-float-img5{
  position: absolute;
  background-image: url(../img/balloon.jpg);
  width: 126px;
  height: 241px;
  top: -12px;
  background-size: contain;
  left: 866px;
  z-index: 10;
}

.main-background {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust height as needed */
  background-image: url('../img/hero-background.png'); /* Replace with your image URL */
  background-size: contain;
  background-position: center;
  overflow: hidden;
}



.hero-item-desktop{
  padding-top:125px;
}

.hero-item-desktop h2{
  font-size: 19px;
  color: white;
  margin: 0;
  font-weight: bold;
}
.hero-item-angle{
  margin-left: 7px;
  color: var(--orange-color);
  font-size: 32px;
}
.hero-item-container1{
  display: flex;
   align-items: center;
}
.hero-item-container2{
  margin-right: 64px;
  margin-top: 12px; 
  display: flex;
}
.hero-form-title{
  border-radius: 15px;
  margin: 0 !important;
  font-size: 17px !important;
  color: white !important;
}

.hero-form-title-container{
  display: inline-flex;
  min-width: 300px;
  justify-content: center;
  border-radius: 15px;
  background-color: var(--orange-color);
  white-space: nowrap;
  padding: 8px;
  color: white;
}
#services{
  padding-top: 0;
}
.service-item-icon img{
  width: 86%;
}
.side-background1{
  background-image: url(../img/side-background1.png);
  background-size: contain;
  background-repeat: repeat-y;
  position: absolute;
  height: 92%;
  left: 0;
  width: 571px;
  top: 750px;
  z-index: -1;
}
.side-background2{
  background-image: url(../img/side-background1.png);
  background-size: contain;
  background-repeat: repeat-y;
  position: absolute;
  height: 100%;
  left: 0;
  width: 571px;
  top: 50px;
  z-index: -1;
}
.service-outcome-img{
  height: 200px;
}
.width-md-50{
  width: 50% !important;
}
.width-md-80{
  width: 80% !important;
}
.width-md-70{
  width: 70% !important;
}
.seo-req-form{
  padding: 35px 10px 20px 1px;
}
.main {
  position: relative;
}
.about-us-text{
  color: white; 
  text-align: justify;
  line-height: 30px;
}
footer{
  padding-top: 40px;
}
.footer-about-us{
  color: white;
  text-align: justify;
  font-size: 12px !important;
}
.site-logo{
  background: rgb(2,0,36);
  background: radial-gradient(circle, rgb(230 230 243 / 27%) 0%, rgb(255 255 255 / 63%) 0%, rgb(255 255 255 / 0%) 90%, rgb(9 9 121 / 0%) 61%);
  padding:10px;
}

.blog-title{
  padding:15px;
}
.blog-text{
  color: #ebebeb;
  font-size: 14px;
  text-align: justify;
}
h4{
  color: white;
  font-size: 35px;
}
.title-sub-section{
  align-items: center;
  display: flex;
  justify-content: center;
}
.section-title{
  margin-bottom: 15px;
}
.h6{
  color: white;
  font-size: 25px;
  font-weight: bold;
}

.footer_menu ul{
  padding-right: 0;
  padding-left: 0;
}
.container{
  position: relative;
}
.faq-title{
  margin-bottom: 45px;
  position: absolute;
  top: 85px;
  right: 97px;
}
.faq-image img{
  width: 330px;
}
.faq-title h4{
  width:100px;
}
.hero-send-btn{
  text-align: center;
  margin-top: 18px;
  display: flex;
  justify-content: start;
  padding: 16px;
}
.hero-send-btn .btn{
  padding: 5px 35px;
  width: 100%;
  background-color: #ffffff;
  color: var(--orange-color);
}
.hero-send-btn .btn:hover{
  background-color: #ffeeee;
}
.fa-brands{
  color: var(--orange-color);
  font-size: 22px;
  margin-right: 15px;
}
.sub-footer{
  direction: ltr;
  text-align: left;
  display: flex;
}
.copyright{
  font-size: 12px;
  direction: rtl;
  color: white;
}
.social-icons{
  margin-right:auto;
  direction: ltr;
  margin-right:auto
}
.article-details {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 15px;
}
.article-details figure {
  position: relative;
}
.article-details figure img {
  object-fit: fill;
}
.article-details .content {
  padding: 15px;
}
.article-details .title {
  font-size: 19px;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.article-details .content p {
  text-align: justify;
}
.article-details .footer {
  padding: 15px 15px 5px;
  margin-top: 15px;
  border-top: 1px solid #F2F2F2;
}
.list-tag {
  list-style: none;
}
#FAQ{
  margin-top: 6rem;
}
#services{
  margin-top: -6rem;
}
#customers{
  margin-top: 5rem;
}
.section-title i,.title-sub-section i,.faq-title i{
  font-size: 42px;
  color: var(--orange-color);
  margin-left: 10px;
}
article .fa-solid{
  color: var(--orange-color);
}
.card-blog .content .more:hover{
  color: var(--orange-color);
  padding: 6px;
  border: 1px solid;
  border-radius: 3px;
}
.card-blog .content .more:hover + .card-blog .content .more .fa-solid{
  margin-right: 5px;
}
.custom-package-body img{
  width: 234px;
}
.custom-package-body{
  height: 142px;
}
#aboud-us{
  margin-top: 43px;
}
.packages-container {
  margin: 0 auto;
  max-width: 1330px;
}
.main-container{
  margin-top: 11px;
   position: relative;
    z-index: 100;
}
.title-container{
  display: flex;
  justify-content: center;
  z-index: 100;
}
.hero-title{
  line-height: 44px; text-align: center; max-width: 360px;
}
.hero-items-mobile{
  padding-bottom: 30px; margin-right: 22%;
}
.contact-us-icon{
  font-size: 60px;
  color: var(--orange-color);
  margin-bottom: 10px;
}
.hero-item-angle{
  margin-left: 7px;
    color: var(--orange-color);
    font-size: 32px;
}
.hero-item-desktop-1{
  font-size: 19px; color: white; margin: 0
}
.hero-item-desktop-2{
  font-size: 19px; color: white
}
.hero-item-desktop-2-container{
  margin-right: 73px; margin-top: 19px; display: flex
}
.hero-field-angle{
  margin-left: 10px; font-size: 21px
}
.hero-form-container{
  border-radius: 15px;
    background-color: var(--orange-color);
    padding: 16px;
    width: 300px;
    margin-top: 13px !important;
}
.hero-website-field{
  width: 85%; margin: auto; margin-bottom: 15px
}
.hero-phone-field{
  width: 85%; margin: auto
}
.monthly-label{
  width: 90px;
  text-align: left;
}
.monthly-field{
  width: 50%;
  margin-right: 20px;
}
.contact-info .fa{
  color: var(--orange-color);
}
@media (max-width: 992px) {
  body{
    background-size: contain;
  }
  .main-background {
    background-size: cover;
  }
  .service-outcome-img{
    height: 130px;
  }
  .width-md-50{
    width: unset !important;
  }
  .width-md-80.width-100,.width-md-70.width-100{
    width: 100% !important;
  }
  .card-package-footer{
    position: absolute;
    transform: rotate(0deg);
    bottom: -65px;
    left: 41px;
    right: unset;
    padding: 1rem;
    font-weight: 700;
    color: var(--contrast-color);
    border-radius: 0 0 50px 50px;
    text-align: center;
  }
  .card-package-base-plan-border,.card-package-silver-plan-border,.card-package-gold-plan-border{
    margin-bottom: 100px;
  }
  .custom-package-head{
    max-width: 100%;
    font-size: 14px;
  }
  .customer-brand{
    margin-bottom: 20px;
  }
  .dotted-input{
    width: 100%;
  }
  .seo-req-form{
    padding-top: 15px;
  }
  .h6{
    font-size: 17px;
  }
  .faq-title{
    position: static;
  }
  .faq-title h4{
    width:unset;
  }
  .services-section img{
    width: 100%;
  }
  h4{
    font-size: 25px;
  }
  #services{
    margin-top: 0;
  }
  .custom-package-body{
    height: auto;
  }
}

