
/* @Fonts */


@font-face {
  font-family: Gotham;
  src: url(../fonts/Gotham-Bold.otf) format("opentype");
  font-weight: bold;
}

@font-face {
  font-family: Gotham;
  src: url(../fonts/Gotham-Black.otf) format("opentype");
  font-weight: 900;
}

@font-face {
  font-family: Gotham;
  src: url(../fonts/Gotham-Medium.otf) format("opentype");
  font-weight: 500;
}

@font-face {
  font-family: Gotham;
  src: url(../fonts/Gotham-Book.otf) format("opentype");
  font-weight: normal;
}


:root {
  --Gotham:"Gotham", cursive;
  --Book : normal;
  --Bold : bold;
  --Black : 900;
  --Medium : 500;
  --primary-color: #0076BE;
  --dark-blue: #045E9A;
  --blue: #44ADE2;
  --lightBlue: #A0CCE8;
  --gray: #67696A;
  --bgPrimaryGradient: linear-gradient(to right,  #0076BE, 60%, transparent);
  --bgBlueGradient: linear-gradient(to right,  #A0CCE8, 60%, transparent);
}

/* @font-face {
  font-family: Gotham;
  src: url(../fonts/Gotham-Medium.otf);
  font-weight: 500;
} */



/*  Global  */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--Gotham);
  font-size: 14px;
}

form {
  margin: 0;
}

a:hover,
a:focus {
  color: var(--blue);
}

.border-2p {
  border: solid 2px;
}

.border-3p {
  border: solid 3px;
}

.color-primary-50 {
  color: var(--lightBlue);
}

.text-gray {
  color: var(--gray);
}

.font-weight-book{
  font-weight: var(--Book);
}

.font-weight-bold{
  font-weight: var(--Bold);
}

.font-weight-black{
  font-weight: var(--Black);
}
.font-weight-medium{
  font-weight: var(--Medium);
}


.font-18 {
  font-size: 18px;
}

.btn {
  font-weight: var(--Bold);
}
.btn-sm {
  padding: .25rem .5rem 0;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle {
  color: var(--primary-color);
}

.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus,
.show>.btn.dropdown-toggle:focus,
.btn:focus,
.btn-outline-primary.focus,
.btn-outline-primary:focus {
  box-shadow: none;
  border-color: var(--dark-blue);
}


.btn-outline-primary:active {
  background-color: var(--dark-blue) !important;
  border-color: var(--dark-blue);
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-blue {
  background-color: var(--blue);
}

.bg-light-blue {
  background-color: var(--lightBlue);
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-gray {
  color: var(--gray);
}
.text-underline {
  text-decoration: underline;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover{
  background-color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-light:hover{
  color: var(--primary-color);
}
.btn-light {
  color: var(--primary-color);
  border-color: white;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle,
.btn-light:hover {
  color: var(--primary-color);
}

.w-80 {
  width: 80% !important;
}

.w-90 {
  width: 90% !important;
}

hr.line {
  border-top-color: #BCBCBC;
}

.form-group.required{
  position: relative;
}
.form-group.required::before {
  content: "*";
  position: absolute;
  top: 7px;
  right: 16px;
  color: #f00;
  z-index: 9999;
  font-size: 20px;
}

/*PRELOADING------------ */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7600;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); 
}

/*General Custom ------------ */

.navbar-toggler {
  margin: .5rem;
  font-size: 1rem;
}

header {
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-end; 
}

.title-page{
  font-weight: var(--Black);
  letter-spacing: 5px !important;
  text-transform: uppercase;
}

section.list {
  
}
.list-head{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
section.list .num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--blue);
  border-radius: 50rem;
  color: #FFF;
  margin-bottom: 2rem;
  box-shadow: 3px 6px 10px rgba(0, 0, 0, .16);
  position: relative;
}
section.list  .num::before {
  content: "";
  width: 10px;
  height: 3px;
  background: #FFF;
  position: absolute;
  top: 15px;
}
section.list .quet {
  width: 70%;
  text-align: right;
}
section.list .list .list-title {
  text-transform: uppercase;
  margin-bottom: 4rem;
}
section.list .list-desc {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 0;
}

section.list .sub-list {
  font-size: 1.25rem;
}
section.list .sub-list .list-desc {
  margin-left: 1rem;
}
section.list .sub-list h6 {
  font-size: inherit
}
section.list .sub-list ul{
  margin: 0;
}
section.list .sub-list ul li {
  color: var(--primary-color);
  font-weight: var(--Book);
  line-height: 2.5rem;
}
section.list .sub-list ul li::before{
  content: "";
  width: 7px;
  height: 2px;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  background-color: var(--primary-color);
}

/* Navbar ---------- */
nav.navbar {
  padding-top: 0px ;
  padding-bottom: 0px ;
}
.navbar-nav {
  font-weight: var(--Bold);
}
.navbar-expand-md .navbar-nav .nav-link {
  padding: 1rem;
}
.nav-item.show > a.nav-link  {
  background-color: var(--dark-blue);
}

.navbar-nav .dropdown:hover {
  background-color: var(--dark-blue);
}
.navbar-nav .dropdown-menu{
  top: 95%;
}
.dropdown:hover .dropdown-menu{
  display: block;
}
.navbar-nav .dropdown-toggle::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  margin-left: 10px;
  vertical-align: unset;
  border: 0px;
}
.navbar-nav .dropdown-menu {
  background-color: var(--dark-blue);
  border-radius: 0;
  border-color: transparent;
  padding: 0px;
  min-width: 300px;
}
.navbar-nav .dropdown-menu .dropdown-item {
  padding: 1rem 1.5rem;
  font-weight: var(--Book);
  border-bottom: 1px solid var(--primary-color);
  color: #FFF;
  text-transform: uppercase;
  font-size: .8rem;
}
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: var(--blue);
}

.nav-logo {
  /* display: none; */
  transition: all .3s ease-in-out;
}

.nav-logo img {
  width: 35px;
  transition: all .3s ease-in-out;
}


.nav-link {
  font-size: .8rem;
}


/* header - home */
header.home {
  display: block;
}

header.home .carousel-item {
  max-height: calc(100vh);
  height: calc(100vh - 50px);
  background-size: cover;
  background-position: right center;
}
header.home .carousel-item video{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  min-width: 100vw;
  z-index: 1;
  transform: scale(1.5)
}

header.home .carousel-caption {
  top: 50%;
  left: 60px;
  bottom: auto;
  transform: translate(0, -50%);
  text-align: left;
  font-family: Gotham;
}

header.home .logo {
  z-index: 99;
  position: absolute;
  bottom: 5rem;
  right: 80px;
  width: 120px;
}

.carousel-indicators {
  bottom: 1rem;
}

.carousel-inner .carousel-item.overlay::before {
  content: " ";
  background: var(--bgPrimaryGradient);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
.carousel-inner .carousel-item.overlay:first-child::before {
  background: var(--bgBlueGradient);
  /* display: none; */
}
.carousel-indicators li {
  width: 10px;
  height: 10px;
  margin-right: 13px;
  border: 0;
  border-radius: 50rem;
}

/* boxs-news */
.boxs-news .row > div {
  min-height: 250px;
}
.boxs-news .col-lg-4:nth-child(2) {
  position: relative;
}
.box-cover {
  width: 100%;
  background-image: url(../image/pedro-lastra.png);
  background-position: center;
  background-size: cover;
}
.boxs-news .col-lg-4:nth-child(2)  img {
  /* position: absolute; */
}
/* .news-box {
  background-color: var(--lightBlue);
} */

.boxs-news h4 {
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.skyland {
  width: 30%;
}


/* Ithmaar Finance */
/* Ithmaar AI */
.show-less,
.show-more{
  cursor: pointer;
}

.ithmaar-ai span,
.ithmaar-finance span {
  color: var(--lightBlue);
  font-size: 1.3rem
}

.ithmaar-ai h2,
.ithmaar-finance h2 {
  font-size: 2.3rem;
  line-height: 3.5rem;
  font-weight: 400;
  color: #474848;
}

.ithmaar-ai p,
.ithmaar-finance p {
  font-size: 1.3rem;
  color: var(--gray);
  font-weight: 400
}

.photo-vedio {
  position: relative;
}

.icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* Scrolling items */
.scrolling-items {
  min-height: 50vh;
  position: relative;
  padding: 5rem 0 10rem 0;
  overflow: hidden;
}

.scroll-right .right,
.scroll-right .left {
  position: absolute;
  top: 42%;
  width: 60px;
  height: 60px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50rem;
  font-size: 16pt;
  color: #00609A;
  z-index: 99;
  cursor: pointer;
  box-shadow: 0 1px 20px 0px rgba(0, 0, 0, .5);
  transition: all .3s ease-in-out;
}

.scroll-right .right {
  left: 15px;
}

.scroll-right .left {
  right: 15px;
}

.scroll-right .right:hover,
.scroll-right .left:hover {
  background: var(--lightBlue);
  border-color: var(--lightBlue);
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.3);
}


/* CORPORATE FINANCE */
.corporate {
  list-style: none;
  display: flex;
  /* overflow: hidden; */
  padding-top: 7vmin;
  scroll-behavior: smooth;
  transition: all .5s ease-in-out;
}


.corporate li {
  /* display: inline-block;  */
  margin: 15px 20px;
  transition: all .3s ease-in-out;
}

.corporate li:hover {
  transform: translateY(3vmin)
}

.corporate li a {
  display: flex;
  flex-direction: column;
  color: #035E9A;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  box-shadow: 0px 10px 20px rgb(0, 0, 0, 0.16);
  overflow: hidden;
  border-radius: 50rem;
  height: 35vmin;
  width: 35vmin;
  min-height: 200px;
  min-width: 200px;
  padding: 10vmin;
  transition: all .3s ease-in-out;
}

.corporate li a:hover {
  /* height: 40vmin; */
  /* width: 40vmin; */
  background-color: #035E9A;
  color: #FFF;
  text-decoration: none;
}
.corporate li a .icon {
  width: 70px;
  min-height: 70px;
  background-size: cover;
  background-position: top;
  margin-bottom: .5rem;
}
.corporate li:nth-child(1) a .icon {
  background-image: url(../image/icons/mainModules/Corporate-Finance.svg);
}
.corporate li:nth-child(2) a .icon {
  background-image: url(../image/icons/mainModules/Retail-Finance.svg);
}
.corporate li:nth-child(3) a .icon {
  background-image: url(../image/icons/mainModules/Micro-finance.svg);
}
.corporate li:nth-child(4) a .icon {
  background-image: url(../image/icons/mainModules/Finance-Origination.svg);
}
.corporate li:nth-child(5) a .icon {
  background-image: url(../image/icons/mainModules/Collection&Legal-follow-up.svg);
}
.corporate li:nth-child(6) a .icon {
  background-image: url(../image/icons/mainModules/Tejara.svg);
}

.corporate li a:hover .icon {
  background-position: bottom;
}

.corporate li a h3 {
  font-weight: var(--Black);
  text-transform: uppercase;
}

/* .corporate li:nth-child(1) a {
  left: 5%;
}

.corporate li:nth-child(2) a {
  left: 30%;
} */

/* DEFICIENCY */
.deficiency {
  display: flex;
  
}

.deficiency li {
  position: absolute;
  z-index: 9;
}

.deficiency li h3 {
  position: relative;
  padding-top: 10px;
  font-weight: var(--Bold);
}

.deficiency li h3::before {
  position: absolute;
  content: " ";
  height: 1px;
  width: .6rem;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  background-color: #FFF;
}

.deficiency li:nth-of-type(1) {
  top: 2%;
  left: 20%;
}

.deficiency li:nth-of-type(2) {
  top: 1%;
  left: 65%;
}

.deficiency li:nth-of-type(3) {
  bottom: 4%;
  left: 15%;
}

.deficiency li:nth-of-type(4) {
  bottom: 4%;
  left: 65%;
}

.deficiency li:nth-of-type(4) {
  bottom: 4%;
  left: 65%;
}

.deficiency li:nth-of-type(4) {
  bottom: 4%;
  left: 37%;
}

.deficiency li:nth-of-type(5) {
  bottom: 4%;
  right: 25%;
}

.deficiency li:nth-of-type(6) {
  bottom: 4%;
  right: 6%;
}

.deficiency li a {
  display: flex;
  flex-direction: column;
  height: 150px;
  width: 150px;
  padding: 10px;
  color: #fff;
  font-size: 10px;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  box-shadow: 0px 6px 9px rgb(0, 0, 0, 0.16);
  overflow: hidden;
  border-radius: 50rem;
  transition: all .3s ease-in-out;
  text-decoration: none;
}

.deficiency li a h3 {
  font-size: 14px;
  font-weight: var(--Black);
  text-transform: uppercase;
}

/* Testimonial */
.testimonial {
  background-size: cover;
}

/* Numbers counter */
.numbers-counter{
  min-height: 43vmin;
}
.numbers-counter .counter h1 {
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 15px;
}

.numbers-counter h1:nth-of-type(3) {
  font-size: 3rem;
}

.numbers-counter h1 span {
  opacity: .5;
}

.numbers-counter h1 span.years {
  opacity: 1;
}

.numbers-counter h4 {
  opacity: .6;
}





/* header - over */
.finance-overview {
  /* margin-top: 50px; */
}

.finance-overview .row:first-of-type {
  /* min-height: 300px */
}

.head span {
  font-size: 1.3rem
}

.finance-overview h2 {
  letter-spacing: 4pt;
}

.finance-overview h2:first-of-type {
  color: var(--lightBlue);
}

.ithmaar-finance-paragraph .show-less {
  display: none;
}

/* optimize-experience */
.optimize-experience {
  background-image: url(../image/optimize-experience.png);
  background-position: center;
}

.optimize-experience .row {
  min-height: 50vh;
}

.optimize-experience h3 {
  color: var(--lightBlue);
  font-weight: normal;
  font-family: Gotham;
}

.optimize-experience h2 {
  color: #fff;
  letter-spacing: 0px;
  line-height: 2.6rem;
}


/* MAIN MODULES */
/* SUPPORTING MODULES */

.supporting-modules .circles,
.main-modules .circles {
  margin: 0 auto;
  width: 85%;
}

.supporting-modules .circle-item,
.main-modules .circle-item {
  width: 100%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 50rem;
  padding: 1rem;
  text-align: center;
  /* position: relative; */
  color: #FFF;
  text-decoration: none;
  margin-bottom: 3rem;
  box-shadow: 0 6px 9px rgb(0, 0, 0, 0.16);
}

.main-modules .circle-item {
  background: #00609A;
}

.supporting-modules .circle-item {
  background-color: var(--blue);
}

.supporting-modules .circle-item img,
.main-modules .circle-item img {
  width: 7vmin;
}

.supporting-modules .circle-item h4,
.main-modules .circle-item h4 {
  font-size: 1rem;
  font-weight: var(--Bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.75rem;
  padding-top: 5px
}

.supporting-modules .circle-item h4::before,
.main-modules .circle-item h4::before {
  content: " ";
  width: 10px;
  height: 1px;
  display: block;
  margin: 0 auto .5rem auto;
  background-color: #FFF;
}

.supporting-modules .o-list li::before {
  border-color: var(--gray);
}
.overview-modules .know-mores {
  padding: 1rem 10rem;
  font-size: 2rem;
  margin-bottom: 5rem;
}


/* Book a Visit */
.book-visit>div {
  /* flex: 0 0 50%;
  max-width: 50%; */
}

.book-visit .content,
.book-visit .photo,
.book-visit .content-link {
  height: 260px;
}
.book-visit .photo {
  background-image: url(../image/book.jpg);
  background-size: cover;
}
.book-banner {
  min-height: 250px;
}

.book-visit p {
  font-size: 10pt;
  font-weight: lighter;
}

.book-banner .photo img {
  width: 300px;
}


/* FEATURES */
.feature .row>div {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.feature {
  font-size: 1.25rem;
}

.feature .cover-feaure {
  background: url(../image/fastTrack.jpg) no-repeat center center;
}

.feature .content-feaure {
  padding-left: 6rem !important;
}

.feature li,
.feature h4 {
  line-height: 2.5rem;
}

.feature ul.circle>li::before {
  content: " ";
  margin-right: 5px;
  width: 9px;
  height: 9px;
  border: 1.75px solid var(--gray);
  border-radius: 3rem;
  display: inline-block;
}

.feature ul.dash li::before {
  content: " ";
  margin-right: 5px;
  width: 7px;
  height: 2px;
  border: 1.5px solid var(--gray);
  /* border-radius: 3rem; */
  display: inline-block;
  position: relative;
  top: -3px;
  background-color: var(--gray);
}

/* Technology */
.cover-technology {
  background: url(../image/optmize.jpg) no-repeat center center;
}

/* Process */

.cover-process {
  background: url(../image/process.jpg) no-repeat center center;
}
.feature .cover-process h2,
.feature .cover-technology h2,
.feature .cover-feaure h2 {
  line-height: 2.65rem;
}



.buttons-check .btn {
  padding: 1rem 10rem;
  font-size: 2rem;
}



/* About Us => Page */
header.about-us .row {
  /* min-height: calc(50vh - 60px); */
  /* min-height: 300px; */
}


.setup-process .all-process .row>div {
  /* min-height: 40vh; */
}


.cover-values {
  background-image: url(../image/values.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.all-process ul li {
  /* line-height: 1.1rem; */
}

/*  OUR STORY */
.story-section .head span {
  font-size: 1.5rem;
}

.story-section p {
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.button-check .btn{
  min-width: 48vmin;
}

/* ITHMAAR AI  ---------------- */
section.workshop-steps .cover {
  background-image: url(../image/Workshop-Steps.jpg);
  background-size: cover;
  background-position: center;
}

/* WHY ITHMAAR  ---------------- */
section.why-ithmaar .cover{
  max-height: 30vmin;
}
.equal-why-ithmaar {
  background-image: url(../image/calc-why-ithmaar.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.calc-circles {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  margin: 5rem 0;
  min-width: 600px;
}

.calc-circle {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: 250px;
  height: 250px;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 50rem;
  padding: 0 2.5rem;
  position: relative;
}
/* calc circle */
.calc-circle:nth-child(2){
  transform: translateX(250px)
}
.calc-circle:nth-child(1){
  transform: translateY(90px);
}
.calc-circle:nth-child(2)::after,
.calc-circle:nth-child(2)::before,
.calc-circle:nth-child(1)::after{
  content: "+";
  position: absolute;
  bottom: -60px;
  left: 50%;
  font-size: 30px;
  color: #FFF;
  font-weight: var(--Black);
  transform: translateX(-50%);
}
.calc-circle:nth-child(2)::before{
  top: -60px;
  bottom: auto;
}
.calc-circle:nth-child(3){
  transform: translatey(-90px)
}
.calc-circle h3{
  font-size: 1.25rem;
  font-weight: var(--Black)
}

/* equal-list  */
ul.equal-list {
  margin-right: 10rem;
}
ul.equal-list li{
  font-size: 1.5rem;
  color: #FFF;
  font-weight: var(--Black);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1.5rem;
  margin-left: 40px;
}
ul.equal-list li:last-child {
  margin-bottom: 0;
}
ul.equal-list li::before{
  content: "=";
  position: absolute;
  left: -40px;
}

/* ITHMAAR FINANCE MODULES  ---------------- */
section.main-modules {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

section.main-modules .modules{
  overflow-y: hidden;
  width: 100%;
  padding: 0 1.5rem;
}

section.main-modules .up,
section.main-modules .down {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
  width: 3rem;
  cursor: pointer;
}
section.main-modules .down{
  bottom: 0%;
  top: auto;
  rotate: 180deg;
}
section.main-modules .down img{
  transform: rotate(180deg);
}
section.main-modules .module{
  margin: 15px auto;

  position: relative;
}
section.main-modules .module .module-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  color: var(--primary-color);
  text-align: center;
  padding: 0 2.5rem;
  margin: 0 auto;
  background-color: #FFF;
  box-shadow: 0px 6px 10px rgb(0, 0, 0, 0.16);
  border-radius: 50rem;
  transition: all .3s ease-in-out;
}
section.main-modules .module .icon {
  height: 60px;
  width: 60px;
  background-position: top;
  background-size: cover; 
}
section.main-modules .module:hover .icon {
  background-position: bottom;
}
.carousel_box {
  display: flex;
}
section.main-modules .module:hover .module-head {
  background-color: var(--primary-color);
  color: #FFF;
}
section.supporting-modules .module:hover .module-head{
  background-color: var(--blue);
}
section.main-modules .module img{
  width: 50px;
}
section.main-modules .module h4{
  line-height: 2.25rem;
}
section.main-modules .module h4::before {
  content: "";
  width: 15px;
  height: 3px;
  background-color: var(--primary-color);
  display: block;
  margin: .5rem auto;
}
section.main-modules .module:hover h4::before {
  background-color: #FFF;
}
/* section.supporting-modules .module{
  transform: translateY(-1190px);
} */

section.main-modules .module-desc {
  position: absolute;
  top: 0;
  right: calc(100% + 30px);
  text-align: left;
  /* transform: translatex(-100%); */
  min-width: 75vmin;
  /* padding-right: 2rem; */
}
.carousel_box:nth-child(even) .module .module-desc {
  right: auto;
  left: calc(100% + 30px);
  /* transform: translatex(100%); */
}

.large-par .less,
.large-par .more,
.large-list .less,
.large-list .more {
  cursor: pointer;
  font-size: .8rem;
}

/* ITHMAAR FINANCE FEATURES  ---------------- */
section.business-management-components .cover{
  background-image: url(../image/business-change.jpg);
  background-size: cover;
  background-position: center;
  min-height: 300px;
  overflow: hidden;
}


/* ata & Analysis components */
section.data-analysis-components {
  background-image: url(../image/DATA-ANALYSIS-TOOLS.jpg);
  background-size: cover;
  overflow: hidden;
}
section.data-analysis-components .data {
  min-height: 50vmin;
}
section.data-analysis-components .cover {
  overflow: hidden;
  max-height: 100vmin;
}


/* ITHMAAR FINANCE PROCESS  ---------------- */
.setup-process-steps .data {
  min-height: 50vmin;
}
.setup-process-steps .cover {
  max-height: 50vmin;
  overflow: hidden;
  background-image: url(../image/Setup-Process-steps.jpg);
  background-position: center;
  background-size: cover;
}

.o-list {
  list-style: none;
  padding: 0;
}
.o-list li{
  line-height: 1.5rem;
  margin-left: 15px;
}
.o-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-bottom: 1px;
  margin-right: -10px;
  border: 1px solid #FFF;
  border-radius: 1rem;
  transform: translateX(-15px)
}
/*  OUR TEAM PAGE ---------------- */

section.our-team .members {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* padding-bottom: 200px; */
}
section.our-team .member {
  width: 40%;
  flex: 0 0 40%;
  flex-wrap: wrap;
  min-width: 400px;
  max-width: 400px;
  margin-bottom: 4rem;
}
section.our-team .member:nth-child(even){
  transform: translateY(200px)
}
.img-member {
  cursor: pointer;
}
section.our-team .member .member-info {
  padding-top: 2rem;
  padding-left: 2rem;
}
section.our-team .member .member-name,
section.our-team .member .member-title {
  color: var(--primary-color);
}
section.our-team .member .member-name {
  font-weight: var(--Black);
  color: var(--primary-color);
  text-transform: uppercase;
}
section.our-team .member .member-title {
  font-weight: var(--Bold);
  color: var(--primary-color);
}

section.our-team .member .member-desc {
  padding-top: .5rem;
  font-weight: var(--Book);
  font-size: 1rem;
  color: var(--gray);
}
section.our-team .member .member-desc a {
  cursor: pointer;
}

.img-add {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vmin;
  background-color: var(--lightBlue);
}

/* MODAL member -- */
.member .modal-header {
  padding: 1rem 1rem 0;
  border-bottom: 0px
}
.member .modal-body {
  padding: 1rem 3rem 3rem;
}

.modal .member-name{
  padding-top: 1.5rem;
  color: var(--primary-color);
  font-weight: var(--Bold);
  font-size: 1.5rem;
}
.modal .member-title{
  color: var(--primary-color);
  font-weight: var(--Medium);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal .member-desc {
  max-height: 300px;
  overflow-y: auto;
}


/*  Contact us page ---------------- */
.contact-us .q-head {
  cursor: pointer;
}
.contact-us .form-control {
  font-size: 14px;
}
.contact-us .tabs {
  display: none;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link:hover {
  color: #00609A; 
  background-color: var(--lightBlue);
  transition: all .3s ease-in-out;
}

.nav-pills .nav-link {
  border-radius: 0rem;
  padding: 1rem 2rem;
  font-size: 1.35rem;
  color: #00609A;
}




/* Modal ------------- */
.modal-title {
  color: var(--primary-color);
}
/* Footer ------------ */

.footer .copy-right {
  font-size: .8rem;
  padding-top: 1rem;
}

.footer .text-decoration {
  text-decoration: underline;
}

.footer img {
  width: 10rem;
}