/**
*
* Template For : Qamr International
* Author: "Sk Jahid Hossain"
* Hlw I'M From Kolkata.
* I'm a Web & Graphics Designer.
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "tajawal", sans-serif;
    color: #444444;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #f8fffd;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1015a2;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */
/*--------------------------------------------------------------
# cursor-custom
--------------------------------------------------------------*/
#cursor-custom {
    height: 10px;
    width: 10px;
    pointer-events: none;
    position: fixed;
    background: #3192fb;
    border-radius: 50%;
    box-shadow: 0 0 10px #679dda, 0 0 20px #4285d1, 0 0 30px #3192fb, 0 0 40px #fff, 0 0 70px #fff, 0 0 80px #fff, 0 0 100px #fff, 0 0 150px #fff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 9px;
    bottom: 6px;
    z-index: 996;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 2px solid #3192fb;
}

.hero .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(63, 67, 253, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.back-to-top i {
    font-size: 28px;
    color: #2a8dfa;
    line-height: 0;
}

.back-to-top:hover {
    background: #ffffff;
    color: #2142d1;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: rgba(1, 4, 136, 0.9);
}

#header.header-transparent {
    background: transparent;
    border-bottom: 1px solid #364fd7;
}

#header .logo {
    margin: auto 50px;
}

#header.header-scrolled {
    background: #1640D6;
    height: 60px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

@media (max-width: 768px) {
    #header .logo {
        margin: auto 5px;
    }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 50px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
    margin: auto 50px;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
}

/* .navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 1.5px;
  margin-left: 5px;
} */
.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 30px;
    background-color: #fff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #01036f;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #1acc8d;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0;
        margin: auto 5px;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #3e98f961;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 80px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    height: max-content;
}

.navbar-mobile>ul>li>a:before {
    left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0205a1;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #3f43fd;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #1acc8d;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

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


/*------------------============ New Banner Section ================-------*/


/* SECTION - HOME */

.home {
  display: grid;
  grid-template-columns: 45% 50%;
  place-items: center;
  gap: 50px;
  background: rgb(67, 69, 112);
  background: radial-gradient(circle,rgb(33 66 209) 3%,#1e36b3 60%);
  overflow: hidden;
  padding: 130px 80px 50px;
}
.home img {
  width: 100%;
  pointer-events: none;
  user-select: none;
}

.home .description {
  color: #fff;
  padding: 0 50px;
}

.home .description > h1 {
  font-family: "Tilt Neon", sans-serif;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 600;
}
.home .description a{
    border-radius: 10px;
    border: 2px solid #ffffff;
    padding: 10px;
}

.home .gradient-text {
  font-family: "Tajawal";
  color: #ffffff;
  background-size: contain;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 36px;
}

.home .description > p {
  font-family: "Tajawal";
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.home .users-color-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home .item {
  max-width: 300px;
  aspect-ratio: 1/1;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.5),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s linear 1 forwards;
  opacity: 0;
}

.home .item:nth-child(1) {
  background-color: #67d7e1;
  border-radius: 50% 50% 0 50%;
}

.home .item:nth-child(2) {
  border-radius: 50% 50% 0 0;
}

.home .item:nth-child(3) {
  background-color: #6cc164;
  border-radius: 0 0 50% 0;
}

.home .item:nth-child(4) {
  border-radius: 0 0 0 50%;
}

.home .item:nth-child(5) {
  border-radius: 0 50% 50% 0;
}

.home .item:nth-child(6) {
  background-color: #8071a8;
  border-radius: 0 50% 50% 50%;
}

.home .item:nth-child(7) {
  border-radius: 50% 50% 0 50%;
}

.home .item:nth-child(8) {
  background-color: #fe7519;
  border-radius: 50% 0 0 50%;
}

.home .item:nth-child(9) {
  background-color: #f5bec3;
  border-radius: 0 50% 50% 0;
}

.home .item:nth-child(10) {
  border-radius: 50%;
}

.home .item:nth-child(11) {
  background-color: #fcd659;
  border-radius: 50% 0 50% 50%;
}

.home .item:nth-child(12) {
  border-radius: 50% 0 0 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* SECTION - CARD CONTAINER */

.home .card-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  min-height: 100vh;
  background: rgb(67, 69, 112);
  background: radial-gradient(
    circle,
    rgba(67, 69, 112, 1) 3%,
    rgba(35, 36, 57, 1) 60%
  );
  overflow: hidden;
  padding: 90px 50px;
}

.home .card {
  max-width: 300px;
  aspect-ratio: 3/5;
  border-radius: 15px;
  margin: 20px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  cursor: grab;
}

.home .content {
  position: relative;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(10, 1fr);
  padding: 20px;
  background: rgba(104, 104, 104, 0.5);
  user-select: none;
}

.home .content::before,
.content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(
    from var(--gradient-angle),
    rgb(109, 186, 22),
    rgb(30, 119, 95),
    rgb(55, 141, 167),
    rgb(59, 91, 174),
    rgb(144, 118, 236),
    rgb(59, 91, 174),
    rgb(55, 141, 167),
    rgb(30, 119, 95),
    rgb(109, 186, 22)
  );
  animation: rotation 8s linear infinite;
}

.home .content::after {
  filter: blur(30px);
}

@keyframes rotation {
  0% {
    --gradient-angle: 0deg;
  }
  100% {
    --gradient-angle: 360deg;
  }
}

.home .content img {
  aspect-ratio: 3/2;
  border-radius: 10px;
  grid-row: 1 / 5;
  margin-bottom: 20px;
  user-select: none;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.home .content h1 {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  grid-row: 5 / 6;
}

.home .content p {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  grid-row: 6 / 9;
}

.home .btn-grad {
  background-image: linear-gradient(
    to right,
    #ece9e6 0%,
    #ffffff 51%,
    #ece9e6 100%
  );
  padding: 10px 16px;
  color: #000;
  box-shadow: 0 0 5px #eee;
  outline: 0;
  font-size: 1rem;
  font-weight: 400;
  grid-row: 9 / 10;
  cursor: pointer;
  transition: all 0.5s ease-in;
}

.home .btn-grad:is(:hover, :focus-visible) {
  text-decoration: none;
}

.home .control {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 14px;
}

.home .control li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #559b9a, #3b3d8a);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5),
    inset 0px 4px 4px rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 50%;
  cursor: pointer;
  transform: scale(1);
}

.home .control li::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #559b9a, #3b3d8a);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease-in;
  opacity: 0;
}

.home .control li:hover::before {
  opacity: 1;
}

.home .arrow {
  font-size: 1.5rem;
  color: #fff;
}

@media (max-width: 1215px) {
  .home .description > p {
    font-size: 1rem;
  }

  .home .btn {
    font-size: 1rem;
  }
}

@media (max-width: 1015px) {
  .home .home {
    grid-template-columns: 45% 50%;
    gap: 50px;
    padding: 140px 50px;
  }
  
  .home .description > p {
    font-size: 1rem;
  }

  .home .btn {
    padding: 8px 12px;
  }

  .home .btn-grad {
    padding: 8px 12px;
  }
}

@media (max-width: 865px) {
  .home {
    grid-template-columns: 45% 50%;
    gap: 60px;
    padding: 130px 70px;
  }
}

@media (max-width: 815px) {
  .home {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "userscolorcontainer"
      "description";
    gap: 30px;
    padding: 90px 80px 70px;
  }

  .home .users-color-container {
    grid-area: userscolorcontainer;
    margin-top: 20%;
  }

  .home .description {
    grid-area: description;
    padding: 0;
    text-align: center;
  }

  .home .description > p {
    font-size: 1.1rem;
  }

}

@media (max-width: 815px) {
  .home .description > p {
    font-size: 2rem;
  }
}

@media (max-width: 460px) {
   .home {
    gap: 0;
    padding: 30px 40px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f5ff;
}

.section-title {
    margin: auto 50px;
    padding: 40px 0px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #214ce7;
    font-family: "Poppins", sans-serif;
}

.section-title .text-box {
    margin: 9% 2%;
    padding: 5%;
    /* background: #f9f9fd; */
    display: inline-block;
    border-radius: 10px;
    text-align: center;
}

/* .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #1acc8d;
  margin: 4px 10px;
} */

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #010483;
}

@media (max-width: 992px) {
    .section-title p {
        font-size: 26px;
    }

    .section-title {
        margin: auto;
        padding: 20px 0px 5px 0px;
    }

    .section-title h2 {
        margin: 0px;
    }

    .section-title h2::after {
        display: none;
    }

    .right-header h2::after {
        content: "";
        width: 20px;
        height: 1px;
        display: flex;
        background: #1acc8d;
        margin: 4px 10px;
    }

    .left-header h2::before {
        content: "";
        width: 20px;
        height: 1px;
        display: flex;
        background: #1acc8d;
        margin: 4px 10px;
    }

    /* .main-after::after{
    content: "";
    width: 350px;
    height: 1px;
    display: inline-block;
    background: #1acc8d;
    margin: 4px 10px 20px 10px;
  } */
}
/*--------------------------------------------------------------
# About-section
--------------------------------------------------------------*/
.about-pt{
    margin: 100px 0;
    padding: 30px;
}
.about-pt img{
    max-width: 100% !important;
}
.about-pt .btn-box{
    background: #2142d1;
    width: max-content;
    padding: 10px 30px;
    border-radius: 10px;
    margin: 10px 0;
}
.about-pt .content-column .inner-column{
    position: relative;
    margin-top: 20%;
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .about-pt .content-column .inner-column {
    margin-top: 0;
}
.about-pt .content-column .inner-column {
    position: relative;
    padding-left: 30px;
    margin-top: 20%;
}
.about-pt .image-column .inner-column:before {
    content: '';
    width: calc(50% + 80px);
    height: calc(90% + 160px);
    top: -57px;
}
}
.about-pt .sec-title{
    text-align: right !important;
}
.about-pt .sec-title .title{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #2142d1;
    font-weight: 500;
    margin-bottom: 15px;
}
.about-pt .sec-title h2{
    position: relative;
    display: block;
    font-size: 28px;
    line-height: 1.28em;
    color: #222222;
    padding-bottom: 18px;
    font-family: "Tajawal";
}
.about-pt .sec-title h2:before{
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 3px;
    background-color: #d1d2d6;
}
.about-pt .text{
    font-size: 18px;
    line-height: 26px;
    color: #1a1a1a;
    font-weight: 400;
    text-align: right;
}
.about-pt .image-column{
  position: relative;
}
.about-pt .image-column .inner-column{
    position: relative;
    padding-left: 70px;
    padding-bottom: 0px;
}
.about-pt .image-column .inner-column:before{
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(85% + 160px);
    top: -36px;
    left: 0;
    background: transparent;
    z-index: 0;
    border: 4px solid #2142d1;
    border-radius: 40px;
    border-top-style: dotted;
    border-left-style: dotted;
}
.about-pt .image-column .inner-column .author-desc{
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background: orange;
    padding: 10px 15px;
    left: 96px;
    width: calc(100% - 152px);
    border-radius: 50px;
}
.about-pt .image-column .image-1{
    position: relative;
}
.about-pt .image-column .image-1 img{
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
    border-radius: 10px;
}
.about-pt .image-column .inner-column .author-desc{
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background: #ffffffcf;
    padding: 10px 15px;
    left: 0;
    width: 50%;
    border-radius: 50px;
}
.about-pt .image-column .inner-column .author-desc h2{
    font-size: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #2142d1;
    margin: 0;
}
.about-pt .image-column .inner-column .author-desc span{
    font-size: 16px;
    letter-spacing: 6px;
    text-align: center;
    color: #2142d1;
    display: block;
    font-weight: 400;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 60px 0;
    background: #f9f9fd;
}

.about h3 {
    margin: 20px 0 20px 0;
    font-family: tajawal;
    font-size: 40px;
    font-weight: 600;
    color: #214ce7;
}

.about ul {
    margin: 15px;
    padding: 15px;
    text-decoration: none;
    list-style: none;
}

.about ul li {
    margin: 10px;
    padding: 15px;
    list-style: none;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    background: #fbfbfd;
    width: 250px;
    height: 150px;
    float: left;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.about ul li:hover {
    box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.about .arabic_para {
    font-family: tajawal;
    font-size: 26px !important;
    color: #214ce7;
    margin-right: 3%;
    text-align: right;
}
/*.about .far{
    background: none;
}*/
/* .about h3::after {
  content: "";
  width: 70%;
  height: 1px;
  display: inline-block;
  background: #1015a2;
  margin: 4px 10px;
} */
.about .icon-box {
    padding-top: 10px;
}

.about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: #010483;
    margin-bottom: 15px;
}

/* .about .icon-box {
  margin-top: 2px;
} */
.about .icon-box .icon {
    float: right;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}
.robin{
    font-size: 21px;
    font-size: 21px;
    color: #2a4ee299;
    background: #9ad6fd82;
    border-radius: 50%;
    padding: 9px;
}
.robin2{
    font-size: 21px;
    font-size: 21px;
    color: #2a4ee299;
    background: #9ad6fd82;
    border-radius: 50%;
    padding: 9px;
}
.far {
    font-weight: 300;
    color: #167afa;
    background: #167afa26;
    border-radius: 50px;
    padding: 11px 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
}
.about .icon-box .title {
    font-family: tajawal;

}

@media (max-width: 992px) {
    .about .icon-box .title {
        font-family: tajawal;
    }

    .about .icon-box .icon {
        display: inline;
    }

    .about .icon-box .icon i {
        font-size: 24px;
    }

    .about {
        padding: 10px 0 10px 0;
    }

    .about h3 {
        margin: 10px 0 10px 0;
        font-family: tajawal;
        font-size: 22px;
        font-weight: 600;
        color: #1015a2;
    }
}

.about .icon-box .title {
    margin-left: 88px;
    margin-top: 7px;
    font-family: tajawal;
    margin-bottom: 5px;
    font-size: 18px !important;
    text-align: right;
    margin-right: 80px;
    margin-bottom: -37px;
    font-weight: 300;
}

/* .about .icon-box .title a:hover {
  color: #1acc8d;
} */
.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

.hero .video-box {
    background: url("../img/about.png") center center no-repeat;
    background-size: contain;
    min-height: 300px;
}

@media (max-width: 768px) {
    .hero .video-box {
        background: url("../img/about.png") center center no-repeat;
        background-size: contain;
        min-height: 170px;
    }
}

.hero .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.hero .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hero .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(63, 67, 253, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.hero .play-btn:hover::after {
    border-left: 15px solid #3f43fd;
    transform: scale(20);
}

.hero .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*----------------- Counter Section --------------------------*/
.counter-pt{
    background: #f9f9fd;
    padding: 50px 30px;
    margin: 30px 0;
}
.counter {
  background-color: #f9f9fd;
  padding: 20px 0;
  border-radius: 5px;
  box-shadow: -10px 0 10px 0px rgba(1, 41, 112, 0.08);
}

.count-title {
  font-size: 36px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: #727272;
}

.count-text {
  font-size: 13px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: #2142d1;
}

.fa-2x {
  margin: 0 auto;
  float: none;
  display: table;
  color: #4ad1e5;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    background: #f9f9fd;
    background-position: center center;
    background-size: cover;
    position: relative;
}

/* .testimonials {
  padding: 80px 0;
  background: url("../img/hand.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
} */
/* .testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.85);
} */
.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h3 span {
    font-family: tajawal;
    font-size: 24px;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    font-family: poppins;
    font-size: 16px;
    margin: 0 auto 15px auto;
    color: #eee;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }

    .test-price {
        margin: auto;
    }
}

.pricing .section-title .branches_para {
    font-family: poppins;
    color: #585858;
    float: left;
}

.pricing .section-title .arabic_para {
    font-family: tajawal;
    font-size: 26px;
    color: #585858;
    float: left;
}

@media (max-width: 768px) {
    .pricing .section-title .branches_para {
        font-family: poppins;
        font-size: 30px;
        margin: 0;
    }

    .pricing .section-title .arabic_para {
        font-family: tajawal;
        font-size: 20px;
        margin: 0;
    }
}

/*----------------------------- Brand Logo ------------------------*/
:root {
    --marquee-width: 80vw;
    --marquee-height: 20vh;
    /* --marquee-elements: 12; */
    /* defined with JavaScript */
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
    height: var(--marquee-height);
    background-color: #f9f9fd;
    color: #eee;
    overflow: hidden;
    position: relative;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, #111 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, #111 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}

/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4);
    /* 5rem; */
    white-space: nowrap;
}

.marquee-content li img {
    width: 100%;
    /* height: 100%; */
    border: 2px solid #ffffff;
    padding: 20px;
}

@media (max-width: 600px) {
    html {
        font-size: 12px;
    }

    :root {
        --marquee-width: 100vw;
        --marquee-height: 16vh;
        --marquee-elements-displayed: 3;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    padding: 55px 0px;
}

.team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.team .member .pic {
    border-radius: 4px;
    overflow: hidden;
}

.team .member img {
    transition: all ease-in-out 0.4s;
}

/* .team .member:hover img {
  transform: scale(1.1);
} */
.team .member .member-info-first {
    background: rgba(255, 255, 255, 0.9);
    padding: 0px 0px 30px 0px;
    border-radius: 0 0 4px 4px;
    transition: 0.2s ease;
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 5%), 0 6px 20px 0 rgb(0 0 0 / 8%);
    height: 200px;
}

.team .member .member-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 0px 0px 29px 0px;
    border-radius: 0 0 4px 4px;
    /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
    transition: 0.2s ease;
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 5%), 0 6px 20px 0 rgb(0 0 0 / 8%);
    height: 200px;
}

.team .member .member-info-first:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 0px 0 #292dac;
}

.team .member .member-info:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 0 0 #3192fb;
}

.team .member h4 {
    font-weight: 500;
    margin-bottom: 2px;
    font-size: 16px;
    color: #585858;
    position: relative;
}

.team .member span {
    font-family: "Tajawal";
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #585858;
}

.team .member .social {
    margin-top: 10px;
}

.section-title .branches_para {
    font-family: poppins;
    font-size: 30px;
    color: #214ce7;
}

.section-title .arabic_para {
    font-family: tajawal;
    font-size: 34px;
    color: #214ce7;
    float: right;
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

@media (max-width: 768px) {
    .team .member {
        margin-bottom: 10px;
        padding: 8px 0px;
    }

    .section-title .branches_para {
        font-size: 16px !important;
        margin: 0;
        padding-bottom: 5px;
    }

    .section-title .arabic_para {
        font-size: 22px;
        margin: 0;
        line-height: 30px;
        float: left;
    }

    .team .member .member-info-first {
        background: rgba(255, 255, 255, 0.9);
        padding: 0px 0px 11px 0px;
        border-radius: 0 0 4px 4px;
        transition: 0.2s ease;
    }

    .gallery .arabic_para {
        font-family: tajawal;
        margin: 0;
        font-size: 16px;
        color: #01036f;
        float: right;
    }

    .gallery .branches_para {
        font-family: poppins;
        font-size: 14px;
        color: #01036f;
        float: left;
        padding-top: 10px;
        margin: 0;
    }
}

.branch_para {
    text-align: center;
    font-family: poppins;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.arabic_para {
    font-family: tajawal;
    font-size: 20px;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-us {
    margin: 30px 0;
    padding: 30px;
    background: #f9f9fd;
}

.contact-us h2 {
    color: #157af6;
    font-weight: 500;
}
.contact-us h5{
    color: #214ce7;
    margin-right: 10px;
    font-weight: 600;
}
.contact-us p{
    color: #242424;
    display: inline-block;
    font-size: 22px;
}
.contact-us span {
    color: #4e4e4e;
    font-size: 20px;
    float: left;

}
.contact-us span a img{
    width:16%;
    margin: 5px;
    background: #167afa47;
    border-radius: 50%;
    padding: 10px;
}
.contact-us ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
}
.contact-us ul li{
    margin: 0;
    padding: 0;
    text-align: left;
    margin-left: 10px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    border: 1px solid #add1ff;
    background: transparent;
    outline: none;
    width: 100%;
    text-transform: capitalize;
    padding: 0.6rem 0.4rem;
    border-radius: 4px;
    font-family: "tajawal", sans-serif;
}
.aside {
    animation: animateClr 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99);
    background-size: 400%;
    border-radius: 20px;
}

.aside .h3 {
    font-size: 26px;
    color: #214ce7;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

@keyframes animateClr {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

ion-icon:not([name="logo-codepen"]) {
    border: 1px solid currentColor;
    border-radius: 20%;
    padding: 1rem;
}
/*--------------------------------------------------------------
Client -Pt
--------------------------------------------------------------*/
.client-pt{
    margin: 0;
    padding: 30px;
}
.client-pt .box{
    margin: 10px;
    padding: 5px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e6e6ef;
    text-align: center;
}
.client-pt .box img{
    width: 100%;
    padding: 10px;
}
.client-pt .branches_para{
    font-family: poppins;
    font-size: 26px !important;
    color: #214ce7;
    text-transform: capitalize;
    font-weight: 700;
}
.client-pt .arabic_para{
    font-family: tajawal;
    font-size: 22px;
    color: #214ce7;
    font-weight: 700;
}
@media only screen and (min-width: 1200px){
    .client-pt .arabic_para{
        font-size: 34px;
        float: right;
        margin-bottom: 50px;
    }
    .about-pt .sec-title h2 {
        font-size: 32px;
    }
    .contact-us span a img{
    width: 12%;
    margin: 5px;
    background: #167afa47;
    border-radius: 50%;
    padding: 10px;
}
.about .arabic_para{
    font-size: 36px !important;
}
.about .icon-box .title{
    font-size: 26px !important;
}
.client-pt .branches_para{
    font-size: 36px !important;
}
}
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.form-items {
    margin: auto 50px;
}

.faq .faq-list {
    padding: 0;
}

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

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #34e5a6;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #1acc8d;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

.faq .form_header {
    margin: 10px auto;
}

.faq .form_header h1 {
    font-family: poppins;
    font-size: 20px;
    color: #1015a2;
}

.faq .first_form_header {
    margin: 10px auto;
}

.faq .first_form_header h1 {
    font-family: tajawal;
    font-size: 24px;
    font-weight: 500;
    color: #1015a2;
    float: right;
}

.faq .form_header_2 {
    margin: 30px 0px 0px 0px;
}

.faq .form_header_2 h1 {
    font-family: poppins;
    font-size: 20px;
    color: #1015a2;
}

.faq .second_form_header {
    margin: 30px 0px 0px 0px;
}

.faq .second_form_header h1 {
    margin-bottom: 0px;
    font-family: tajawal;
    font-size: 24px;
    font-weight: 500;
    color: #1015a2;
    float: right;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }

    .form-items {
        margin: auto;
    }
}

@media (max-width: 768px) {
    .faq .form_header {
        margin: auto;
    }

    .faq .form_header h1 {
        font-family: poppins;
        font-size: 12px;
        color: #010479;
        float: left;
    }

    .faq .first_form_header {
        margin: auto;
    }

    .faq .first_form_header h1 {
        margin-top: -24px;
        font-family: tajawal;
        font-size: 14px;
        font-weight: 500;
        color: #010479;
        float: right;
    }

    .faq .form_header_2 {
        margin: 24px 0px -25px 0px;
    }

    .faq .form_header_2 h1 {
        margin-bottom: 15px;
        font-family: poppins;
        font-size: 12px;
        color: #010479;
        float: left;
    }

    .faq .second_form_header {
        margin: auto;
    }

    .faq .second_form_header h1 {
        margin-bottom: -13px;
        font-family: tajawal;
        font-size: 14px;
        font-weight: 500;
        color: #010479;
        float: right;
    }
}
/*------------ What Our Clien Say ---------------------------*/
.client-say{
    margin: 30px 0 50px;
    padding: 20px;
}
.client-say h1{
    margin: 30px auto 50px;
    font-family: 'Poppins';
    font-weight: 400;
}
.card-s {
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
    perspective: 500px;
    border: none;
    background-color: inherit;
    margin: 30px 0;
}

.card-s .face {
    position: absolute;
    color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
    transform-style: preserve-3d;
    transition: 0.5s;
    backface-visibility: hidden;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    /* border-right: 1px solid #999;
border-bottom: 1px solid #999; */
}

.card-s .face.front-face,
.card-s .face.back-face {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-s .face.front-face .profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.card-s .face.front-face .name {
    letter-spacing: 2px;
    color: #2142d1;
}

.card-s .face.front-face .designation {
    font-size: 0.8rem;
    color: #ddd;
    letter-spacing: 0.8px;
    color: #646464;
}

.card-s:hover .face.front-face {
    transform: rotateY(180deg);
}

.card-s .face.back-face {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    transform: rotateY(180deg);
    padding: 20px 30px;
    text-align: center;
    user-select: none;
}

.card-s .face.back-face .fa-quote-left {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 1.2rem;
    color: #303030;
}

.card-s .face.back-face .fa-quote-right {
    position: absolute;
    bottom: 35px;
    right: 25px;
    font-size: 1.2rem;
    color: #303030;
}

.card-s:hover .face.back-face {
    transform: rotateY(360deg);
}

@media(max-width: 991.5px) {
    .col-lg-4 {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}
.testimonial {
    color: #303030;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-items {
    margin: auto 50px;
}

.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #1015a2;
    float: left;
    width: 44px;
    height: 44px;
    background: #f0f0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #010483;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #1015a2;
    color: #fff;
}

.gallery .galery-iltem {
    margin: auto 50px;
}

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.4;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .gallery .galery-iltem {
        margin: auto;
    }

    .contact-items {
        margin: auto;
    }

    .section-title h2 {
        margin: 0px 0px 13px 10px;
    }

    .section-title p {
        margin: 0px 10px 0px 10px;
    }

    .address {
        margin: 0px 0px 20px 30px;
    }

    .email {
        margin: 0px 0px 20px 30px;
    }

    .phone {
        margin: 0px 0px 40px 30px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #2142d1;
    padding: 0px;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    padding: 18px 0 18px 0;
}

#footer .copyright {
    text-align: center;
    padding-top: 0px;
    font-family: poppins;
    font-size: 16px;
    margin: 8px 0;
}
#footer a{
    font-size: 18px;
}

@media (max-width: 575px) {
    #footer .footer-top {
        padding: 10px 0 20px 0;
    }

    #footer .copyright {
        border: none;
        font-size: 16px;
    }
}
#footer .modal-title{
    color: #000000;
}
#footer .btn-primary:focus{
    box-shadow: none;
}
.testimonials .branch_arabic h2 {
    padding-bottom: 50px;
    font-family: tajawal;
    font-size: 28px;
}

.left-header h2 {
    font-family: tajawal;
    font-size: 18px;
    float: right;
    letter-spacing: 0px;
}

.right-header h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #a9cfff;
    margin: 4px 10px;
}

.left-header h2::before {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #a9cfff;
    margin: 4px 10px;
}

#faq .right_search {
    margin: 100px 0 0 0;
}

#faq .right_search i {
    font-size: 60px;
    color: #010479;
}

#faq .first_header {
    margin-bottom: 30px;
}

#faq .first_header h3 {
    color: #010479;
    font-family: poppins;
    font-size: 28px;
    font-weight: 600;
}

#faq .first_header h3 span {
    font-family: tajawal;
    font-weight: 600;
}

#faq .header h4 {
    margin-bottom: 20px;
    color: #010479;
    font-family: poppins;
    font-size: 20px;
}

#faq .header_second h3 {
    font-family: tajawal;
    color: #010479;
    font-size: 22px;
    line-height: 50px;
}

.left-header h2 {
    font-family: tajawal;
    font-size: 18px;
    float: none;
    text-align: right;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 20px 0px;
    }

    .testimonials .branch_arabic h2 {
        padding-top: 5px;
        text-align: center;
        font-family: tajawal;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
    }

    .left-header h2 {
        font-family: tajawal;
        font-size: 14px;
        letter-spacing: 0px;
    }

    .right-header h2 {
        margin: 0px;
        font-family: poppins;
        font-size: 14px;
        float: left;
    }

    .right-header h2::after {
        content: "";
        width: 70px;
        height: 1px;
        display: flex;
        background: #1acc8d;
        margin: -2px 119px;
    }

    .left-header h2::before {
        display: none;
    }

    .main-after .right-header h2::after {
        content: "";
        width: 178px;
        height: 1px;
        display: flex;
        background: #1acc8d;
        margin: -2px 91px;
    }

    #faq .header_second h3 {
        line-height: 25px;
        margin-bottom: 40px;
        font-size: 18px;
    }

    /* .left-header h2{
    font-family: tajawal;
    font-size: 12px;
    float: right;
  } */
}

.box {
    padding: 5px 5px;
}

.contact .section-title h2::after {
    content: "";
    width: 150px;
    height: 1px;
    display: inline-block;
    background: #1acc8d;
    margin: 5px 5px;
}

@media (max-width: 768px) {
    .team {
        padding: 35px 0px 0px 0px;
        background: #f5f5ff;
    }

    #faq .right_search {
        margin: 0px 0 0 0;
    }

    #faq .right_search i {
        font-size: 42px;
    }

    #faq .first_header h3 {
        font-size: 20px;
    }

    #faq .header h4 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    section {
        padding: 20px 0px;
    }
}

.btn-primary {
    background-color: #010488 !important;
    border-color: #010488 !important;
}

/* .form-label{
  font-size: 20px;
}
.form-control{
  font-size: 22px;
} */
.pricing .box {
    padding: 40px 20px;
    margin: 0px 10px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 5%), 0 6px 20px 0 rgb(0 0 0 / 8%);
}

.pricing .box:hover {
    transform: scale(1.2) rotate(2deg);
    box-shadow: 0 3px 0 0 #3192fb;
}

@media (max-width: 767px) {
    #pricing {
        padding: 30px 0px;
    }

    .pricing .box {
        padding: 10px 20px;
        margin: 0px 7px;
        background: #fff;
        text-align: center;
        border-radius: 4px;
        position: relative;
        overflow: hidden;
        transition: 0.3s;
    }

    .pricing .box:hover {
        transform: scale(1.1) rotate(2deg);
        box-shadow: 0 2px 0 0 #292dac;
    }

    .english_title {
        font-size: 18px;
        color: #084298;
        font-weight: 600;
        text-align: center;
    }

    .name {
        color: #fff;
        text-align: center;
        margin-top: 40px;
        font-size: 20px;
        font-weight: 600;
    }
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 250px;
    perspective: 1000px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
}

.contact .section-title {
    margin: auto;
    padding: 40px 10px 0 0;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: rgb(255, 255, 255);
}

.flip-card-back {
    background-color: #1015a2;
    transform: rotateY(180deg);
}

.flip-card-back h1 {
    margin: 50px auto 20px auto;
    color: #fff;
}

.flip-card-back p {
    padding: 0 20px 0 20px;
    color: #fff;
    text-align: center;
    font-family: poppins;
    font-size: 20px;
}

@media (max-width: 767px) {
    .contact .info .effect {
        margin-left: 12px !important;
    }
}

@media (max-width: 992px) {
    .contact .section-title {
        margin: auto;
        padding: 40px 10px 0 0;
    }

    .contact .section-title h2 {
        text-align: left;
    }
}

.foreign {
    /* margin-bottom: 100px; */
}

@media (max-width: 992px) {
    .foreign {
        margin-bottom: -15px;
    }
}

.cerificate_box {
    margin: 20px 5px;
}

@media (max-width: 768px) {
    .cerificate_box {
        margin: auto;
        padding: 6px 0px;
    }

    .buttons {
        background: #00a149;
        font-size: 12px;
    }
}

option {
    font-family: tajawal;
}

.buttons {
    background: #00bd17;
    font-size: 14px;
    border: none;
}

.buttons i {
    padding: 0px 5px;
    font-size: 16px !important;
    /* padding: 5px 10px 0px 5px!important;
  font-size: 20px!important; */
}

#order {
    background: #ffffff;
}

.order {
    padding: 20px 0px;
    margin: 0px auto;
}

.order h2 {
    font-family: tajawal;
    font-size: 32px;
    font-weight: 600;
    color: #157af6;
    margin-bottom: 35px;
}

.order h1 {
    margin: 75px 0px 20px 0px;
    font-family: tajawal;
    font-size: 36px;
    font-weight: 600;
    color: #157af6;
}

.order button {
    padding: 5px 30px;
    background: #00bd17;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    border: none;
}

.order i {
    padding-right: 5px;
}

.order-last {
    padding: 20px 0px;
    margin: 20px auto;
    background: #ffffff;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-bottom: 0;
}

.order-last h2 {
    font-family: tajawal;
    /* font-size: 28px; */
    font-weight: 400;
    color: #1640D6;
    margin-bottom: 15px;
}

.order-last h1 {
    margin: 0px 0px 15px 0px;
    font-family: tajawal;
    font-size: 36px;
    font-weight: 400;
    color: #1640D6;
}

.order-last button {
    padding: 5px 30px;
    background: #00bd17;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    border: none;
    margin-right: 50px;
}

.order-last i {
    padding-right: 5px;
}

@media (max-width: 768px) {
    .order {
        margin: 0px 0px;
    }

    .order h2 {
        font-family: tajawal;
        font-size: 12px;
        font-weight: 600;
        color: #1015a2;
    }

    .order h1 {
        margin: 10px 0px;
        font-family: tajawal;
        font-size: 16px;
        font-weight: 600;
        color: #1015a2;
    }

    .order button {
        padding: 5px 20px;
        background: #00a149;
        color: #fff;
        border: none;
        font-size: 12px;
    }

    .order-last {
        margin: 0px 0px;
    }

    .order-last h2 {
        font-family: tajawal;
        font-size: 18px;
        font-weight: 600;
        color: #1015a2;
    }

    .order-last h1 {
        margin: 20px 0px;
        font-family: tajawal;
        font-size: 22px;
        font-weight: 600;
        color: #1015a2;
    }

    .order-last button {
        padding: 5px 20px;
        background: #00a149;
        color: #fff;
        border: none;
        margin-right: 10px;
        font-size: 12px;
    }
}

.form-label {
    font-size: 18px;
    font-weight: 500;
    color: #4777b3;
}
.form-label small {
    color: #00aee6;
    margin-left: 5px;
}
.form-control {
    border: 1px solid #3034ff;
    color: #010488;
    font-size: large;
}

@media (max-width: 768px) {
    .form-control {
        border: 1px solid #3034ff;
        color: #010488;
        font-size: 16px;
    }

    .form-label {
        font-size: 16px;
        font-weight: 500;
        color: #010488;
    }
}

.form-select {
    color: #212529;
    border: 1px solid #3034ff;
}

.card {
    border: 1px solid #ededed;
/*    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);*/
}

.card .img-fluid {
    max-width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 30px;
}

.card-body p {
    margin: 0px;
    font-family: "Tajawal";
    font-size: 18px;
    font-weight: 600;
    color: #1015a2;
    text-align: center;
}

.card-title {
    padding: 8px 0px;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 600;
    color: #214ce7;
}

.card-body a {
    font-family: "Tajawal";
    font-size: 18px;
    font-weight: 600;
}

.btn-hire {
    background: #00bd17;
    border: #00bd17;
    color: #fff;
    transition: 0.3s ease;
}

.btn-hire:hover {
    background: #027a38;
    border: #027a38;
    color: rgb(255, 255, 255);
}

/*--------------------------------------------------------
*Our_Team
----------------------------------------------------------*/