@media (min-width: 992px) {
  .card-columns {
    -moz-column-count: 4;
         column-count: 4;
  }
}
@media (min-width: 1200px) {
  .card-columns {
    -moz-column-count: 5;
         column-count: 5;
  }
}

@font-face {
  font-family: helvetica;
  src: url(../fonts/helveticaneueltarabicroman1.ttf);
}
html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: helvetica;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #55585A;
  height: 100vh;
  margin: 0px;
  padding: 0px;
}

main {
  overflow-x: hidden;
  overflow-y: hidden;
}

/*======= All Headings ========*/
h1,
h2,
h3,
h4,
h5 {
  color: #1B3352;
  font-weight: 400;
}

h1 {
  font-size: 55px;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 767px) {
  h1 {
    font-size: 27px;
    line-height: 1.4;
  }
}

.large-heading {
  font-size: 39px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .large-heading {
    font-size: 24px;
    line-height: 1.7;
  }
}

.small-heading {
  font-size: 31px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .small-heading {
    font-size: 23px;
  }
}

h2 {
  font-size: 35px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 22px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  h3 {
    font-size: 14px;
    line-height: 1.9;
  }
}

h4 {
  font-size: 32px;
}
@media (max-width: 767px) {
  h4 {
    font-size: 23px;
  }
}

.large-text {
  font-size: 20px;
}
@media (max-width: 767px) {
  .large-text {
    font-size: 16px;
  }
}

.small-text {
  font-size: 16px;
}
@media (max-width: 767px) {
  .small-text {
    font-size: 13px;
  }
}

.md-heading {
  font-size: 44px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .md-heading {
    font-size: 26px;
  }
}

.text-white {
  color: #FFFFFF;
}

.text-gray {
  color: #55585A;
}

.dark {
  color: #1B3352;
}

.text-darkblue {
  color: #224A99;
}

.text-black {
  color: #000000;
}

.text-light-green {
  color: #52C5B6;
}

.text-gradient {
  color: #25559C;
}

.text-darkgray {
  color: #413B3D;
}

.bg-darkgray {
  background-color: #413B3D;
}

.bg-blue {
  background-color: #1B3454;
}

.bg-lightgreen {
  background-color: #A8D0C5;
}

.bg-dark-sky {
  background-color: #76C8E3;
}

.bg-white {
  background-color: #FFFFFF;
}

.bg-light {
  background-color: #F7F6F6;
}

.bg-sky {
  background-color: rgba(17, 149, 207, 0.05);
}

.font-weight-bold {
  font-weight: 700;
}

.panel-box {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 20px;
}
@media (max-width: 767px) {
  .panel-box {
    padding: 25px;
    font-size: 12px;
  }
}

.split-container {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  justify-content: space-between;
  align-items: center;
}

.spacer {
  height: 100px;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .spacer {
    height: 80px;
  }
}

hr {
  margin: 25px 0px;
}

header {
  max-height: 80px;
}

.navbar {
  position: relative;
  background: #F7F6F6;
  padding: 20px 0px;
  position: fixed;
  width: 100%;
  z-index: 100;
}
@media (max-width: 767px) {
  .navbar {
    padding: 15px 0px !important;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-collapse {
    position: relative;
  }
}
.navbar .navbar-brand {
  width: 190px;
  height: 60px;
}
@media (max-width: 767px) {
  .navbar .navbar-brand {
    width: 130px;
    height: auto;
    z-index: 110;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-nav {
    margin: 0px 300px 0px auto;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  padding: 8px 28px;
  color: #2C2F30;
  font-size: 20px;
  font-weight: 500;
}
.navbar .navbar-nav .nav-item.active .nav-link, .navbar .navbar-nav .nav-item:hover .nav-link {
  color: #c1933f;
}
@media (max-width: 767px) {
  .navbar .navbar-collapse {
    height: 100vh;
    position: absolute;
    z-index: 108;
    width: 100%;
    top: 0px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-collapse .navbar-nav .nav-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-collapse .navbar-nav {
    margin-top: 7rem !important;
  }
}
.navbar .navbar-collapse span {
  font-size: 20px;
  color: #2C2F30;
  font-weight: 700;
  padding: 15px 28px;
}
@media (max-width: 767px) {
  .navbar .navbar-collapse .app-log {
    width: 100%;
    margin-top: 3rem;
  }
}
.navbar .navbar-collapse .logo-wrap {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar .navbar-collapse .mobile-menu-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-filter: blur(20px);
  background: rgba(229, 229, 229, 0.7);
}
.navbar .navbar-toggle {
  position: relative;
  float: right;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  width: 35px;
  height: 35px;
  background: rgba(247, 246, 246, 0.4);
  border: 0.7px solid #524D4F;
  border-radius: 3.5px;
  z-index: 110;
  text-align: center;
}
.navbar .navbar-toggle .icon-bar {
  position: absolute;
  display: block;
  width: 21px;
  height: 0.7px;
  margin: 0 auto;
  border-radius: 1px;
  background-color: #2C2F30;
  transition: all 0.4s ease-in-out;
}
.navbar .navbar-toggle .icon-bar:nth-of-type(1) {
  top: 9px;
  left: 5px;
}
.navbar .navbar-toggle .icon-bar:nth-of-type(2) {
  top: 16px;
  left: 5px;
}
.navbar .navbar-toggle .icon-bar:nth-of-type(3) {
  top: 23px;
  left: 5px;
}
.navbar .navbar-toggle.active .icon-bar:nth-of-type(1) {
  top: 15px;
  transform: rotate(45deg);
}
.navbar .navbar-toggle.active .icon-bar:nth-of-type(2) {
  background-color: transparent;
}
.navbar .navbar-toggle.active .icon-bar:nth-of-type(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.add-shadow {
  box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.08);
}

footer {
  background-color: #F7F6F6;
  color: #224A99;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 20px;
}
footer ul li span {
  font-size: 19px;
}
footer ul li a {
  color: #224A99;
  font-weight: 400;
  font-size: 19px;
}
footer .footer-logo-title span {
  font-size: 14px;
  color: #224A99;
  font-weight: 400;
}
footer .footer-panel {
  color: #224A99;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffffff;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.05);
  margin: 0px 0px 0px auto;
  padding: 10px 25px;
}
@media (max-width: 767px) {
  footer .footer-panel {
    padding: 5px 25px 5px 25px;
  }
}
footer .footer-panel span a {
  font-size: 14px;
}
footer .footer-social-icons div {
  background-color: #FAFBFA;
  border-radius: 50%;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
  padding: 0.3em;
  margin: 0.5em;
  position: relative;
  z-index: 10;
}
footer .footer-social-icons div a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
footer .footer-social-icons div a img {
  width: 20px;
}
footer .footer-last-text {
  color: #E8E8E5;
  font-size: 1em;
  padding: 0 2em;
}
footer .footer-logo img {
  max-width: 8em;
}

/*-----style starts here----*/
.home-banner {
  background-color: #F7F6F6;
  position: relative;
  overflow: hidden;
  min-height: 650px;
}
@media (min-width: 768px) {
  .home-banner {
    min-height: 800px;
  }
}
@media (min-width: 1200px) {
  .home-banner {
    min-height: 500px;
  }
}
.home-banner::after {
  content: "";
  display: block;
  width: 500px;
  min-height: 500px;
  position: absolute;
  left: -80px;
  top: 100px;
  background: url("../assets/header-img.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .home-banner::after {
    width: 100%;
    min-height: 300px;
    top: 280px;
  }
}
@media (min-width: 768px) {
  .home-banner::after {
    width: 58%;
  }
}
@media (min-width: 1200px) {
  .home-banner::after {
    top: 100px;
    min-height: 650px;
    left: -150px;
  }
}
.home-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: start;
  min-height: 500px;
  height: auto;
  font-size: 14px;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .home-banner .banner-content {
    margin-top: 50px;
  }
  .home-banner::after {
      left: 0;
  }
}
@media (min-width: 992px) {
  .home-banner .banner-content {
    min-height: 600px;
    height: 70vh;
    width: 100%;
    font-size: 23px;
  }
}
.home-banner .app-links-wrap {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.home-banner .app-links-wrap .app-link {
  max-width: 120px;
}
@media (min-width: 768px) {
  .home-banner .app-links-wrap .app-link {
    max-width: 380px;
  }
}

.Appian {
  background-color: #F7F6F6;
  padding: 170px 0px 130px 0px;
}
@media (max-width: 767px) {
  .Appian {
    padding: 0px 0px 50px 0px !important;
  }
  .home-banner {
      min-height: 0;
  }
}
.Appian .img-cover {
  background-image: url("../assets/bg-sea.png");
  width: 100%;
  height: 660px;
  max-height: 100%;
  background-repeat: no-repeat;
  position: relative;
}
.Appian .img-cover .investment-results {
  width: 100%;
  height: 325px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 120px;
}
@media (max-width: 767px) {
  .Appian .img-cover .investment-results {
    width: 100%;
    height: 315px;
    margin: 0px auto;
  }
}
.Appian .img-cover .investment-results img {
  height: 100%;
}
.Appian .img-cover::after {
  content: "";
  display: block;
  background-image: url("../assets/Logo-element.png");
  background-repeat: no-repeat;
  background-size: 170px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 15px;
  left: 0px;
}
@media (max-width: 767px) {
  .Appian .img-cover::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .Appian .img-cover {
    background-size: cover;
    max-height: 450px;
    box-shadow: none;
    padding: 0px;
  }
}
.Appian .abyan-designed-logo {
  width: 211px;
  margin: auto;
}
@media (max-width: 767px) {
  .Appian .abyan-designed-logo {
    width: 100px;
    margin: 0px auto 0px 0px;
  }
}
@media (max-width: 767px) {
  .Appian .split-container {
    flex-direction: column;
  }
}
.Appian .img-wrapper {
  width: 408px;
}
.Appian .img-wrapper img {
  height: 100%;
}
@media (max-width: 767px) {
  .Appian .img-wrapper {
    width: 100%;
    height: 325px;
    display: flex;
    justify-content: flex-end;
  }
}
.Appian .content-box {
  max-width: 80%;
  font-size: 18px;
}
@media (max-width: 767px) {
  .Appian .content-box {
    max-width: 80%;
    font-size: 12px;
  }
}

.investment-Calculate {
  background-color: #F7F6F6;
  padding: 90px 0px 0px 0px;
}
@media (max-width: 767px) {
  .investment-Calculate {
    padding: 0px;
  }
}
.investment-Calculate .investment-content {
  font-size: 18px;
  height: 180px;
}
@media (max-width: 767px) {
  .investment-Calculate .investment-content {
    font-size: 14px;
    line-height: 1.6;
    height: 160px;
  }
}
.investment-Calculate .rangeSlider-value {
  min-width: 120px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .investment-Calculate .rangeSlider-value {
    font-size: 12px;
    min-width: 74px;
  }
}
.investment-Calculate .graph-box {
  position: relative;
  z-index: 5;
  height: 100%;
  width: 100%;
}
.investment-Calculate .graph-box .graph-panel {
  width: 100%;
  height: 100%;
  margin-bottom: 50PX;
  padding: 30px;
  background-repeat: no-repeat;
  border-radius: 10px;
  background-position: bottom;
  -o-object-fit: fill;
     object-fit: fill;
  background: linear-gradient(to bottom, #ffffff 15%, #ffffff 45%, #D7DDE6 70%);
}
.investment-Calculate .graph-box .graph-panel .nav-pills-img {
  width: 100%;
  min-height: 180px;
  background-color: transparent;
}
.investment-Calculate .graph-box .graph-footer-text {
  font-size: 18px;
  padding: 0px 11px;
  color: #D9D9D9 !important;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767px) {
  .investment-Calculate .graph-box .graph-footer-text {
    font-size: 11px;
    line-height: 2;
    padding: 0px 9px;
  }
}
.investment-Calculate .section-range .form-range {
  width: 600px;
}
@media (max-width: 767px) {
  .investment-Calculate .section-range .form-range {
    width: 280px;
  }
}
.investment-Calculate .section-pills .tagline {
  padding-right: 4.5rem;
}
@media (max-width: 767px) {
  .investment-Calculate .section-pills .tagline {
    padding-right: 0.36rem;
  }
}
.investment-Calculate .section-pills .tagline li {
  list-style: none;
  position: relative;
  margin-right: 22px;
  font-size: 17px;
}
@media (max-width: 767px) {
  .investment-Calculate .section-pills .tagline li {
    font-size: 10px;
  }
}
.investment-Calculate .section-pills .tagline li::before {
  content: "";
  display: inline-flex;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background-color: #1195CF;
  margin-left: 9px;
  margin-top: -1px;
  align-items: center;
  position: absolute;
  right: -23px;
  top: 9px;
}
@media (max-width: 767px) {
  .investment-Calculate .section-pills .tagline li::before {
    top: 7px;
    width: 10px;
    height: 10px;
  }
}
.investment-Calculate .section-pills .nav-item {
  margin: auto;
}
.investment-Calculate .section-pills .nav-item .nav-link {
  background-color: #ffffff;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.05);
  color: #55585A;
  font-size: 18px;
  min-width: 170px;
}
@media (max-width: 767px) {
  .investment-Calculate .section-pills .nav-item .nav-link {
    font-size: 12px;
    padding: 10px 5px;
    min-width: 110px;
  }
}
.investment-Calculate .section-pills .nav-item .nav-link.active {
  background: linear-gradient(103.95deg, #1B3352 0%, #25559C 116.17%);
  color: #ffffff;
}
.investment-Calculate .bg-tab-content {
  width: 100%;
  height: 400px;
  margin-top: -360px;
  position: relative;
  background: linear-gradient(103.95deg, #1B3352 0%, #25559C 116.17%), #1B3352;
}
.investment-Calculate .bg-tab-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../assets/Vector.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom 30%;
  position: absolute;
  z-index: 10;
}
@media (max-width: 767px) {
  .investment-Calculate .bg-tab-content::after {
    background-image: none;
  }
}
@media (max-width: 767px) {
  .investment-Calculate .grap-value {
    margin-bottom: 20px;
  }
}
.investment-Calculate .grap-value .value-number {
  font-size: 20px;
  color: #1B3352;
}
@media (max-width: 767px) {
  .investment-Calculate .grap-value .value-number {
    font-size: 16px;
  }
}
.investment-Calculate .grap-value .value-name {
  font-size: 14px;
  color: #939191;
}
@media (max-width: 767px) {
  .investment-Calculate .grap-value .value-name {
    font-size: 13px;
  }
}
.investment-Calculate .grap-value .bold-valuenumber {
  font-size: 32px;
  font-weight: 700;
  color: #25559C;
}
@media (max-width: 767px) {
  .investment-Calculate .grap-value .bold-valuenumber {
    font-size: 26px;
  }
}
.investment-Calculate .grap-value .bold-valuename {
  font-size: 18px;
  color: #224A99;
}
@media (max-width: 767px) {
  .investment-Calculate .grap-value .bold-valuename {
    font-size: 16px;
  }
}

.Islamic-law {
  background-color: #ffffff;
  padding: 90px 0px;
}
@media (max-width: 767px) {
  .Islamic-law {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
.Islamic-law .shariah-btn {
  background-color: #ffffff;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.05);
  background: linear-gradient(103.95deg, #1B3352 0%, #25559C 116.17%);
  color: #ffffff;
  font-size: 18px;
  min-width: 170px;
  display: inline-block;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .Islamic-law .shariah-btn {
    font-size: 12px;
    padding: 10px 5px;
    min-width: 120px;
  }
}
.Islamic-law .law-content {
  font-size: 19px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .Islamic-law .law-content {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 50px;
  }
}
.Islamic-law .mufti-card {
  width: 276px;
  height: 269px;
  color: black;
  font-size: 16px;
  line-height: 2;
  background: #FEFEFE;
  box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 30px;
}
@media (max-width: 767px) {
  .Islamic-law .mufti-card {
    width: 100%;
    height: 100%;
    padding: 20px 17px;
    font-size: 10px;
  }
}
.Islamic-law .mufti-card .mufti-img {
  background: #f2f2f2;
  width: 120px;
  border-radius: 5px;
  margin: auto;
  padding-top: 4px;
}
@media (max-width: 767px) {
  .Islamic-law .mufti-card .mufti-img {
    width: 70px;
    background-color: transparent;
  }
}

.slider-section {
  background: rgba(236, 236, 236, 0.3);
  padding: 60px 0px;
}
@media (max-width: 767px) {
  .slider-section {
    padding: 20px 0px 50px 0px;
  }
}
.slider-section .knowledge-slider {
  padding: 0;
}
@media (min-width: 992px) {
  .slider-section .knowledge-slider {
    padding: 3rem 0;
  }
}
.slider-section .knowledge-slider .item {
  height: auto;
  width: 100%;
}
.slider-section .knowledge-slider .item .owl-slider {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.slider-section .knowledge-slider .owl-nav {
  display: block;
  margin-top: 50px;
}
.slider-section .knowledge-slider .owl-nav span {
  display: none;
  background-color: none;
}
.slider-section .knowledge-slider .owl-nav .owl-prev {
  background-image: url("../assets/slider-arrow-left.svg");
  width: 54px;
  height: 54px;
  margin: 0px 30px;
}
.slider-section .knowledge-slider .owl-nav .owl-prev:hover {
  background-color: transparent;
}
.slider-section .knowledge-slider .owl-nav .owl-next {
  background-image: url("../assets/slider-arrow-right.svg");
  width: 54px;
  height: 54px;
  margin: 0px 30px;
}
.slider-section .knowledge-slider .owl-nav .owl-next:hover {
  background-color: transparent;
}
@media (max-width: 767px) {
  .slider-section .knowledge-slider .owl-nav {
    display: none;
  }
}

.investment-journey {
  background-color: #ffffff;
  padding: 120px 0px;
}
@media (max-width: 767px) {
  .investment-journey {
    padding: 70px 0px 30px 0px;
  }
}
.investment-journey .panel-box {
  height: auto;
}
@media (max-width: 767px) {
  .investment-journey .panel-box {
    height: 317px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .investment-journey .panel-box .split-container {
    display: block;
  }
}
.investment-journey .sign-up-img {
  width: 400px;
  height: 320px;
  background-repeat: no-repeat;
  background-image: url("../assets/sign-up.png");
  position: absolute;
  top: -80px;
  background-size: 240px;
  right: -157px;
}
@media (max-width: 767px) {
  .investment-journey .sign-up-img {
    width: 279px;
    height: 209px;
    position: absolute;
    top: 158px;
    background-size: 153px;
    right: -117px;
  }
}
.investment-journey .sign-up-text {
  padding-right: 290px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .investment-journey .sign-up-text {
    padding-right: 0px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .investment-journey .app-logo-cover {
    position: absolute;
    left: 25px;
    top: 154px;
  }
}
.investment-journey .app-logo {
  width: 199px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  margin: 10px 0px;
}
@media (max-width: 767px) {
  .investment-journey .app-logo {
    display: block;
    width: 130px;
    height: 40px;
    margin-bottom: 20px;
  }
}

.Frequently-Questions {
  padding: 100px 0 150px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .Frequently-Questions {
    padding: 100px 0px;
  }
}
.Frequently-Questions .panel-box {
  box-shadow: unset;
  border-radius: unset;
  position: relative;
  margin-bottom: 0px;
}
.Frequently-Questions .panel-box::before {
  content: "";
  background-image: url("../assets/footer-logo.png");
  background-repeat: no-repeat;
  width: 550px;
  height: 790px;
  position: absolute;
  right: 754px;
}
@media (max-width: 767px) {
  .Frequently-Questions .panel-box::before {
    background-size: cover;
    width: 170px;
    height: 421px;
    position: absolute;
    right: 180px;
    top: 386px;
  }
}
.Frequently-Questions .accordion-item {
  border-bottom: unset;
}
.Frequently-Questions .accordion-button {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  padding: 20px 0px;
  border-bottom: 1px solid #E5E5E5;
}
@media (max-width: 767px) {
  .Frequently-Questions .accordion-button {
    font-size: 16px;
  }
}
.Frequently-Questions .accordion-button:after {
  background-image: url("../assets/ant-design-plus-outlined.svg");
}
.Frequently-Questions .accordion-body {
  color: #55585A;
  padding: 40px 0px;
  font-size: 18px;
  border: unset;
}
@media (max-width: 767px) {
  .Frequently-Questions .accordion-body {
    font-size: 16px;
    padding: 25px 0px 25px 20px;
  }
}
.Frequently-Questions .accordion-button:focus {
  border-bottom: 1px solid #E5E5E5;
  box-shadow: none;
}
.Frequently-Questions .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../assets/minus-icon.svg");
}

.advisor-section {
  background-color: #F7F6F6;
  padding: 200px 0px 130px 0px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .advisor-section {
    padding: 140px 0px 90px 0px;
  }
}
.advisor-section .advisor-content {
  width: 539px;
  padding-top: 0px;
}
@media (max-width: 767px) {
  .advisor-section .advisor-content {
    width: 308px;
    padding-top: 20px;
  }
}
.advisor-section .advisor-img {
  width: 425px;
  height: 425px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
}
@media (max-width: 767px) {
  .advisor-section .advisor-img {
    width: 245px;
    height: 245px;
    margin: 0px 20%;
  }
}
.advisor-section .advisor-img::before {
  content: "";
  background-image: url("../assets/Logo-element.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  position: absolute;
  right: 195px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 4rem;
}
@media (max-width: 767px) {
  .advisor-section .advisor-img::before {
    background-size: 200px;
    right: 85px;
    top: 30px;
  }
}
.advisor-section .advisor-img .img-wrapper {
  width: 100%;
  height: 100%;
  background-image: url("../assets/New-team-picture.png");
  background-size: cover;
  border-radius: 15px;
}

.financial-concept {
  background-color: #F7F6F6;
  padding: 90px 0px;
  font-size: 20px;
  min-height: 460px;
}
@media (max-width: 767px) {
  .financial-concept {
    padding: 0px 0px 50px 0px;
    font-size: 16px;
    min-height: auto;
  }
}
.financial-concept p span {
  font-size: 32px;
}
@media (max-width: 767px) {
  .financial-concept p span {
    font-size: 14px;
  }
}
.financial-concept .financial-logo {
  padding-top: 90px;
}
@media (max-width: 767px) {
  .financial-concept .financial-logo {
    padding-top: 0px;
  }
}
.financial-concept .financial-conspt-img {
  width: 680px;
  height: auto;
  position: absolute;
  left: 0px;
  top: 10px;
}
.financial-concept .financial-conspt-img img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .financial-concept .financial-conspt-img {
    display: none;
  }
}

.offer-section {
  background-color: #F7F6F6;
  padding: 0px 0px 100px 0px;
  position: relative;
}
@media (max-width: 767px) {
  .offer-section {
    padding: 100px 0px;
  }
}
.offer-section::after {
  content: "";
  background-image: url("../assets/footer-logo.png");
  width: 500px;
  height: 779px;
  position: absolute;
  right: 1px;
  top: 403px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .offer-section::after {
    display: none;
  }
}
.offer-section .Portfolios-slider {
  width: 100%;
  height: 320px;
  min-height: 240px;
  background: #ffffff;
  position: relative;
  box-shadow: 3px 5px 20px rgba(217, 217, 217, 0.2);
  border-radius: 10px;
}
.offer-section .Portfolios-slider .offer-name {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
  display: inline-block;
}
.offer-section .Portfolios-slider .offer-title {
  font-size: 18px;
  color: #55585A;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .offer-section .Portfolios-slider .offer-title {
    font-size: 16px;
    font-weight: 400;
    max-width: 273px;
    line-height: 2.1;
  }
}

.offer-section {
  background-color: #F7F6F6;
  padding: 100px 0px;
}
.offer-section .offer-card {
  width: 344px;
  height: 303px;
  background: #FFFFFF;
  box-shadow: 3px 5px 20px rgba(217, 217, 217, 0.2);
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .offer-section .offer-card {
    width: 340px;
    margin: 0px auto;
  }
}
.offer-section .offer-card .img1 {
  background-image: url("../assets/vect-1.svg");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  left: -7px;
  top: -26px;
}
.offer-section .offer-card .img2 {
  background-image: url("../assets/vect-2.svg");
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50px;
}
.offer-section .offer-card .img3 {
  background-image: url("../assets/vect-3.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50px;
}
.offer-section .offer-card .offer-card-body {
  padding: 0px 27px 40px 27px;
  position: absolute;
  top: 90px;
}
.offer-section .offer-card .offer-card-body .offer-name {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
  display: inline-block;
}
.offer-section .offer-card .offer-card-body .offer-title {
  font-size: 18px;
  color: #55585A;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .offer-section .offer-card .offer-card-body .offer-title {
    font-size: 16px;
    font-weight: 400;
  }
}

.team-section {
  background-color: #F7F6F6;
  padding: 10px 0px 100px 0px;
}
@media (max-width: 767px) {
  .team-section {
    padding: 0px 0px 50px 0px;
  }
}
.team-section .team-card {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 10px;
  padding: 20px 28px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .team-section .team-card {
    padding: 17px;
    background-color: #ffffff;
  }
}
.team-section .team-card:hover {
  background-color: #FFFFFF;
  cursor: pointer;
}
.team-section .team-card .team-porfile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .team-section .team-card .team-porfile {
    width: 84px;
    height: 84px;
  }
}
.team-section .team-card .team-content {
  margin: 16px 0px;
  text-align: center;
}
@media (max-width: 767px) {
  .team-section .team-card .team-content {
    margin: 10px 0px;
  }
}
.team-section .team-card .team-content .team-name {
  font-size: 23px;
  color: #25559C;
  font-weight: 700;
  display: block;
  text-align: center;
}
@media (max-width: 767px) {
  .team-section .team-card .team-content .team-name {
    font-size: 14px;
  }
}
.team-section .team-card .team-content .team-postion {
  font-size: 16px;
  color: #413B3D;
  text-align: center;
}
@media (max-width: 767px) {
  .team-section .team-card .team-content .team-postion {
    font-size: 10px;
  }
}
.team-section .team-card .team-content .socil-icon {
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  .team-section .team-card .team-content .socil-icon {
    width: 26px;
    height: 26px;
  }
}
.team-section .team-card .team-content .socil-icon img {
  width: 100%;
  height: 100%;
}

.abyan-app-section {
  padding: 150px 0px 100px 0px;
  background-color: #F7F6F6;
}
@media (max-width: 767px) {
  .abyan-app-section {
    padding: 100px 0px 90px 0px;
  }
}
.abyan-app-section .abyan-app-content {
  font-size: 23px;
}
@media (max-width: 767px) {
  .abyan-app-section .abyan-app-content {
    font-size: 14px;
  }
}
.abyan-app-section .abyan-app .img-wrapper {
  height: 705px;
  max-height: 704px;
  background-image: url("../assets/investment-header.jpg");
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  background-size: contain;
}
@media (max-width: 767px) {
  .abyan-app-section .abyan-app .img-wrapper {
    height: 300px;
    background-size: 300px;
    margin: 30px 0px;
  }
}
.abyan-app-section .abyan-app .img-wrapper::after {
  content: " ";
  width: 334px;
  max-width: 335px;
  height: 483px;
  max-height: 484px;
  display: block;
  position: absolute;
  top: 316px;
  left: -115px;
  background-image: url("../assets/Logo element.png");
  background-repeat: no-repeat;
  background-size: 300px;
}
@media (max-width: 767px) {
  .abyan-app-section .abyan-app .img-wrapper::after {
    height: 307px;
    background-size: 205px;
    top: 240px;
    left: -3px;
    margin-bottom: 30px;
  }
}

.section-tab {
  background-color: #F7F6F6;
  padding: 10px 0px 120px 0px;
}
.section-tab .nav-tabs {
  border: unset;
}
.section-tab .nav-item {
  position: relative;
  z-index: 10;
}
.section-tab .nav-item .nav-link {
  color: gray;
  font-size: 18px;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 2px 4px 10px rgba(5, 48, 72, 0.25);
}
.section-tab .nav-item .nav-link.active {
  color: #000000;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-tab .nav-item .nav-link {
    font-size: 14px;
    padding: 8px;
  }
}
.section-tab .tab-content > .active {
  display: block;
  z-index: 12;
  position: relative;
}
.section-tab .tab-content > .active .panel-box {
  border-radius: 10px 0px 10px 10px;
  font-size: 18px;
  height: 600px;
  max-height: 650px;
  padding: 25px;
  position: relative;
}
.section-tab .tab-content > .active .panel-box::after {
  content: "";
  width: 500px;
  height: 595px;
  background-image: url("../assets/footer-logo.png");
  background-repeat: no-repeat;
  position: absolute;
  top: -460px;
  right: -495px;
  background-size: 500px;
}
@media (max-width: 767px) {
  .section-tab .tab-content > .active .panel-box::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-tab .tab-content > .active .panel-box {
    height: 435px;
    max-height: 420px;
  }
}
.section-tab .tab-content > .active .panel-box .tab-img-wrapper {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 585px;
  max-height: 585px;
  position: absolute;
  left: -2px;
  top: 140px;
}
.section-tab .tab-content > .active .panel-box .tab-img-wrapper.img1 {
  background-image: url("../assets/pill3.svg");
}
.section-tab .tab-content > .active .panel-box .tab-img-wrapper.img2 {
  background-image: url("../assets/pill2.svg");
}
.section-tab .tab-content > .active .panel-box .tab-img-wrapper.img3 {
  background-image: url("../assets/pill1.svg");
}
@media (max-width: 767px) {
  .section-tab .tab-content > .active .panel-box .tab-img-wrapper {
    background-size: 393px;
    height: 350px;
    max-height: 360px;
  }
}
.section-tab .tab-contents {
  padding-right: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 20px;
}
@media (max-width: 767px) {
  .section-tab .tab-contents {
    padding: 0px;
  }
}
.section-tab .tab-text {
  font-size: 16px;
}
@media (max-width: 767px) {
  .section-tab .tab-text {
    font-size: 12px;
  }
}
.section-tab .tab-text span {
  font-size: 18px;
  font-weight: 700;
  display: block;
}
@media (max-width: 767px) {
  .section-tab .tab-text span {
    font-size: 14px;
  }
}

.invest-section {
  padding: 110px 0px 90px 0px;
  background-color: #F7F6F6;
}
@media (max-width: 767px) {
  .invest-section {
    padding: 0px;
  }
}
.invest-section .nav-pills .nav-link {
  font-size: 18px;
  text-align: start;
  background-color: transparent;
  border-radius: 10px;
  color: #55585A;
  width: 500px;
  padding: 14px 12px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .invest-section .nav-pills .nav-link {
    width: 340px;
    margin-bottom: 30px;
  }
}
.invest-section .nav-pills .nav-link.active .check-tick::before {
  background-image: url("../assets/check.png");
  background-repeat: no-repeat;
}
.invest-section .check-tick::before {
  content: "";
  display: none;
  width: auto;
  height: 100%;
  width: 30px;
  background-image: url("../assets/check.png");
  background-repeat: no-repeat;
  margin: 5px 0px 0px 11px;
}
.invest-section .check {
  display: flex;
  align-items: flex-start;
}
.invest-section .check::before {
  content: "loremmmm";
  display: inline-block;
  color: transparent;
  height: 100%;
  width: 30px;
  background-image: url("../assets/check.png");
  background-repeat: no-repeat;
  margin: 5px 0px 0px 11px;
}
.invest-section .img-cover {
  width: auto;
  height: 620px;
}
.invest-section .img-cover img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 767px) {
  .invest-section .img-cover {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .invest-section .img-cover img {
    max-width: 100%;
    max-height: 100%;
  }
}

/*===========Range Slider =============*/
.sliderLable {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #333;
}

.rangeSlider.ui-slider-horizontal {
  height: 10px;
  border: 1px solid #efefef;
  background-image: none;
  position: relative;
}
@media (max-width: 767px) {
  .rangeSlider.ui-slider-horizontal {
    width: 73% !important;
  }
}
.rangeSlider.ui-slider-horizontal .ui-slider-step {
  width: 100%;
  position: absolute;
  top: -7px;
  display: flex;
  justify-content: space-between;
}
.rangeSlider.ui-slider-horizontal .ui-slider-step .ui-slider-steps {
  border-right: 1px solid #1B3557 !important;
  width: 2px;
  height: 15px;
}
.rangeSlider .ui-slider-range {
  background-image: none;
  background-color: #ffffff;
}
.rangeSlider .ui-slider-handle {
  width: 15px;
  height: 15px;
  top: -5px;
  background-image: none;
  background-color: #1B3557 !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: none;
}
@media (max-width: 767px) {
  .rangeSlider .ui-slider-handle {
    width: 20px;
    height: 20px;
  }
}
.rangeSlider .ui-slider-handle .bubble {
  background: #D3F0FF;
  color: #1B3352;
  position: absolute;
  padding: 8px;
  border-radius: 5px;
  left: 50%;
  transform: translate(-50%, -12%);
  top: -38px;
  font-size: 18px;
  min-width: 70px;
  line-height: 17px;
  height: 32px;
  text-align: center;
  top: -37px;
}
@media (max-width: 767px) {
  .rangeSlider .ui-slider-handle .bubble {
    font-size: 12px;
    left: 87%;
  }
}
.rangeSlider .ui-slider-handle .bubble::after {
  content: "";
  position: absolute;
  border-left: 0.3rem solid transparent;
  border-right: 0.3rem solid transparent;
  border-top: 0.3rem solid #D3F0FF;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 5px);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5 !important;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

/*===========End Range Slider =============*/
.white-box {
  background-color: #ffffff !important;
  box-shadow: 1px 4px 10px rgba(128, 130, 145, 0.1);
}

.stop-scroll {
  overflow: hidden;
}

#why-Abyan-section {
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(247, 246, 246, 0.4);
}

#why-Abyan-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.ul-number ul {
  list-style: decimal;
}
.ul-number .privacy-h-c {
  font-size: 20px;
  color: #1B3352;
  font-weight: 700;
}
.ul-number .line-height-2 {
  line-height: 2em;
}/*# sourceMappingURL=style.css.map */