/* ------------------------------------------ */
/*         General & Basic Styles
/* ------------------------------------------ */

body,
html {
  height: 100%;
}

body {
  font-family: "Tajawal", sans-serif;
}

html.overflowH,
body.overflowH {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
  padding-right: 0;
  list-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none !important;
  outline: none;
  color: inherit;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:active,
a:focus {
  outline: 0;
  color: inherit;
}

.center-block {
  float: none;
}

.background-cover {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}

input,
textarea,
button,
select {
  outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

.Owl {
  direction: ltr;
}

.splash {
  padding: 0 15px;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.splash.displayNone {
  opacity: 0;
  visibility: hidden;
}

.splash img {
  display: inline-block;
  margin-bottom: 100px;
  max-width: 100%;
}

.btnStyle {
  width: 220px;
  height: 60px;
  line-height: 55px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.btnStyle:hover,
.btnStyle:active,
.btnStyle:focus {
  color: #fff;
}

.titleStyle {
  font-weight: 700;
  font-size: 50px;
  color: #000;
  margin-bottom: 50px;
  text-align: center;
}

/* ------------------------------------------ */
/*         Header
/* ------------------------------------------ */

.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  padding: 0 20px;
  z-index: 999;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header.headerFixed {
  border: none;
  background-color: #fff;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.02);
}

.header .logo {
  float: right;
  margin-top: 10px;
}

.header .logo.logoBlack {
  display: none;
}

.header .logo img {
  max-width: 100%;
}

.header.headerFixed .logo.logoWhite {
  display: none;
}

.header.headerFixed .logo.logoBlack {
  display: block;
}

.header .headerMenu {
  float: left;
}

.header .headerMenu li {
  float: right;
  position: relative;
}

.header .headerMenu li a {
  display: block;
  height: 100px;
  line-height: 100px;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 0 15px;
}

.header .headerMenu li .subMenu a:before {
  display: none;
}

.header .headerMenu li .subMenu {
  position: absolute;
  right: 0;
  top: 100%;
  width: 210px;
  padding: 15px 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.header .headerMenu li .subMenu {
  width: 220px;
}

.header .headerMenu li a:hover ~ .subMenu,
.header .headerMenu li .subMenu:hover {
  opacity: 1;
  visibility: visible;
}

.header .headerMenu li .subMenu li {
  display: block;
  float: none;
  background: none;
}

.header .headerMenu li .subMenu li a {
  color: #000;
  display: block;
  font-size: 16px;
  height: 50px;
  font-weight: 500;
  line-height: 50px;
}

.header .headerMenu li .subMenu li a:hover {
  color: #fff;
  font-size: 16px;
  background-color: #0a24ae;
}

.header.headerFixed .headerMenu li a {
  color: #000;
}

.header .headerMenu li a:before {
  content: "";
  position: absolute;
  right: calc(50% - 25px);
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: #dc17cc;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header .headerMenu li a:hover:before,
.header .headerMenu li a.Active:before {
  width: 50px;
}

.header .lang {
  float: left;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
  color: #fff;
}

.header.headerFixed .lang {
  color: #000;
}

.header.headerFixed .openMenu {
  color: #000;
  border-color: #000;
}

.openMenu {
  float: left;
  color: #fff;
  z-index: 999;
  font-size: 20px;
  cursor: pointer;
  display: none;
  margin-top: 12px;
  border: 2px solid #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 27px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.transformPage {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.menuMobile {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  left: 0;
  top: 0;
  display: none;
}

.menuMobile .BgClose {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  cursor: pointer;
}

.menuMobile .menuContent {
  width: 320px;
  max-width: 100%;
  background-color: #f7f7f7;
  position: absolute;
  top: 0;
  height: 100%;
  overflow: auto;
  z-index: 100;
  right: -320px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menuMobile .menuContent.active {
  right: 0;
}

.menuMobile .headMenu {
  padding: 30px 20px 10px;
  background-color: #fff;
}

.menuMobile .menuContent .changeLang {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  float: right;
}

.menuMobile .menuContent .closeX {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 16px;
  color: #20489a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  padding: 0;
  opacity: 1;
  cursor: pointer;
  text-transform: uppercase;
  font-style: normal;
}

.menuMobile .menuContent .closeX i {
  font-size: 20px;
  float: left;
}

.menuMobile .menuContent .closeX:hover {
  opacity: 1;
}

.menuMobile .menuContent .logoMenu {
  display: block;
  margin: 15px auto 20px;
}

.menuMobile .menuContent .logoMenu img {
  max-width: 100%;
}

.menuMobile .menuContent .menuRes li a {
  color: #000;
  height: 65px;
  display: block;
  font-size: 15px;
  padding: 0 15px;
  line-height: 60px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.menuMobile .menuContent .menuRes li a i {
  width: 30px;
  float: left;
  text-align: center;
  color: #000;
  font-size: 20px;
  height: 100%;
  line-height: 65px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menuMobile .menuContent .menuRes li .subMenu {
  display: none;
}

.menuMobile .menuContent .menuRes li .subMenu li a {
  padding-right: 40px;
  position: relative;
}

.menuMobile .menuContent .menuRes li .subMenu li a:before {
  content: "\f104";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  right: 8px;
  top: 0;
  height: 100%;
  font-size: 20px;
  line-height: 65px;
  width: 29px;
  color: #000;
  display: block;
  text-align: center;
}

.menuMobile .menuContent .menuFooter {
  text-align: right;
  padding: 20px;
}

.menuMobile .menuContent .menuFooter a {
  color: #000;
  border-radius: 50%;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}

/* ------------------------------------------ */
/*         Slider
/* ------------------------------------------ */

.bx-wrapper {
  border: none;
  margin: 0;
}

.bx-wrapper .bx-viewport {
  border: none;
  background: none;
  border: 0;
  box-shadow: none;
  left: 0;
}

.slider {
  position: relative;
  z-index: 1;
}

.slider .bgSlider {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: rgb(10, 55, 161);
  background: -moz-linear-gradient(
    147deg,
    rgb(10 36 174) 0%,
    rgba(220, 23, 204, 1) 100%
  );
  background: -webkit-linear-gradient(
    147deg,
    rgb(10 36 174) 0%,
    rgba(220, 23, 204, 1) 100%
  );
  background: linear-gradient(
    147deg,
    rgb(10 36 174) 0%,
    rgba(220, 23, 204, 1) 100%
  );
}

.particles {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider .slider-details {
  height: 100vh;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider .slider-details .titleEn {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 25px;
}

.slider .slider-details .title {
  font-size: 62px;
  margin-bottom: 70px;
}

.slider .slider-details .title span {
  font-weight: 800;
}

.slider .bx-wrapper .bx-pager {
  padding-top: 0;
}

.slider .the-slider-control li span i {
  position: absolute;
  right: 30px;
  top: calc(50% - -50px);
  z-index: 3;
  text-align: center;
  display: block;
  width: 35px;
  height: 45px;
  line-height: 47px;
  font-size: 20px;
  background-color: #fff;
  opacity: 1;
  color: #000;
  font-size: 17px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.slider .the-slider-control li span#slider-prev i {
  right: auto;
  left: 30px;
}

.slider .the-slider-control li span:hover i {
  opacity: 1;
}

.slider .go-down {
  position: absolute;
  left: calc(50% - 15px);
  bottom: 65px;
  color: #8ccbf2;
  cursor: pointer;
  font-size: 25px;
  z-index: 10;
  animation: translate 2.5s ease-in-out infinite;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@keyframes translate {
  0% {
    opacity: 0.9;
  }
  50% {
    -webkit-transform: translateY(12px) scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.9;
  }
}
@-webkit-keyframes translate {
  0% {
    opacity: 0.9;
  }
  50% {
    -webkit-transform: translateY(12px) scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.9;
  }
}
@-moz-keyframes translate {
  0% {
    opacity: 0.9;
  }
  50% {
    -webkit-transform: translateY(12px) scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.9;
  }
}
@-ms-keyframes translate {
  0% {
    opacity: 0.9;
  }
  50% {
    -webkit-transform: translateY(12px) scale(1);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.9;
  }
}

/* ------------------------------------------ */
/*         ِAbout Us
/* ------------------------------------------ */

.aboutUs {
  padding: 50px 0;
  color: #000;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bgAbout {
  content: "";
  position: absolute;
  right: 0;
  top: -370px;
  z-index: -1;
}

.aboutUs img {
  max-width: 100%;
  margin: 0 auto 75px;
  display: block;
}

.aboutUs .name {
  margin-top: 100px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  display: block;
}

.aboutUs .desc {
  max-width: 520px;
  line-height: 40px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.aboutUs .item {
  display: block;
  border-radius: 10px;
  background-color: #eff2fb;
  padding: 35px 45px 75px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.aboutUs .item img {
  display: inline-block;
  margin-bottom: 50px;
  max-width: 100%;
}

.aboutUs iframe {
  display: block;
  width: 100%;
  height: 366px;
  border-radius: 20px;
  margin-bottom: 30px;
}

/* ------------------------------------------ */
/*         ِProjects
/* ------------------------------------------ */

.projects .titleStyle {
  margin-bottom: 60px;
}

.project {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 610px;
  padding: 88px 30px 30px;
  direction: rtl;
}

.project:before {
  content: "";
  z-index: -1;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(
    0,
    rgba(220, 23, 204, 1) 0%,
    rgb(10 36 174) 100%
  );
  background: -webkit-linear-gradient(
    0,
    rgba(220, 23, 204, 1) 0%,
    rgb(10 36 174) 100%
  );
  background: linear-gradient(0, rgba(220, 23, 204, 1) 0%, rgb(10 36 174) 100%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.project:hover:before {
  opacity: 0.87;
}

.project .bgProj {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.project:hover .bgProj {
  opacity: 0;
}

.project img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
  width: auto;
}

.project .title {
  line-height: 35px;
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 25px;
  position: relative;
  color: #fff;
}

.project .title:before {
  content: "";
  position: absolute;
  right: 0;
  /*bottom:0;*/
  bottom: -50px;
  width: 60px;
  height: 4px;
  background-color: #dc17cc;
}

.project .btnStyle {
  position: absolute;
  right: calc(50% - 100px);
  bottom: -150px;
  color: #ffffff;
}

.project:hover .btnStyle {
  bottom: 60px;
}

.projects .owl-theme .owl-nav.disabled + .owl-dots {
  display: none;
}

/* ------------------------------------------ */
/*         strategy
/* ------------------------------------------ */

.strategy {
  padding: 175px 0 0;
  position: relative;
  text-align: center;
}

.strategy .go-down {
  position: absolute;
  left: calc(50% - 15px);
  top: 75px;
  color: #8ccbf2;
  cursor: pointer;
  font-size: 25px;
  z-index: 10;
  animation: translate 2.5s ease-in-out infinite;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.strategy .titleStyle {
  margin-bottom: 75px;
}

.strategy .item {
  display: inline-block;
  margin-bottom: 80px;
}

.strategy .item .icon {
  width: 174px;
  height: 174px;
  line-height: 174px;
  background-color: #f5f5f5;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
  color: #0a24ae;
}

.strategy .item .icon:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  background: -moz-linear-gradient(
    22deg,
    rgb(10 36 174) -12%,
    rgba(220, 23, 204, 1) 100%
  );
  background: -webkit-linear-gradient(
    22deg,
    rgb(10 36 174) -12%,
    rgba(220, 23, 204, 1) 100%
  );
  background: linear-gradient(
    22deg,
    rgb(10 36 174) -12%,
    rgba(220, 23, 204, 1) 100%
  );
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.strategy .item:hover .icon:after {
  opacity: 1;
}

.strategy .item .icon:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  border: 2px solid #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}

.strategy .item .icon i {
  display: inline-block;
  font-size: 70px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.strategy .item:hover .icon:before {
  opacity: 1;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.strategy .item:hover .icon {
  color: #fff;
}

.strategy .item .desc {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
}

/* ------------------------------------------ */
/*         Join
/* ------------------------------------------ */

.join {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  /*background:url(../images/businessman-analyze-data-stock-market-research.png)  */
}

.join:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.59);
  z-index: -1;
}

.join .title {
  font-size: 60px;
  margin-bottom: 35px;
  font-weight: 700;
  color: #fff;
}

/* ------------------------------------------ */
/*         events
/* ------------------------------------------ */

.events {
  padding: 145px 0 75px;
  background-color: #f6f6f6;
  position: relative;
}

.events .titleStyle {
  margin-bottom: 45px;
}

.events .go-down {
  position: absolute;
  left: calc(50% - 15px);
  top: 55px;
  color: #8ccbf2;
  cursor: pointer;
  font-size: 25px;
  z-index: 10;
  animation: translate 2.5s ease-in-out infinite;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.events .owl-theme .owl-dots {
  display: none;
}

.sliderArrows .owl-carousel .owl-nav button {
  border: none;
  background: #0a24ae;
  text-align: center;
  width: 35px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 17px;
  position: absolute;
  right: -60px;
  top: calc(50% - 17.5px);
  border-radius: 0;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sliderArrows .owl-carousel .owl-nav button:hover {
  background-color: #0a24ae;
}

.sliderArrows .owl-carousel .owl-nav button:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0;
  z-index: -1;
  background: -moz-linear-gradient(
    22deg,
    rgb(10 36 174) -12%,
    rgba(220, 23, 204, 1) 100%
  );
  background: -webkit-linear-gradient(
    22deg,
    rgb(10 36 174) -12%,
    rgba(220, 23, 204, 1) 100%
  );
  background: linear-gradient(
    22deg,
    rgb(10 36 174) -12%,
    rgba(220, 23, 204, 1) 100%
  );
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sliderArrows .owl-carousel .owl-nav button:hover:after {
  opacity: 1;
}

.sliderArrows .owl-carousel .owl-nav button.owl-next {
  right: auto;
  left: -60px;
}

.event {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.event:hover {
  background-color: #000a41;
}

.event .mask {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.event .mask:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.33);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.event .mask:after {
  content: "";
  z-index: 1;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(
    0,
    rgba(220, 23, 204, 1) 0%,
    rgb(10 36 174) 100%
  );
  background: -webkit-linear-gradient(
    0,
    rgba(220, 23, 204, 1) 0%,
    rgb(10 36 174) 100%
  );
  background: linear-gradient(0, rgba(220, 23, 204, 1) 0%, rgb(10 36 174) 100%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.event:hover .mask:before {
  opacity: 0;
}

.event:hover .mask:after {
  opacity: 0.9;
}

.event .mask img {
  width: 100%;
}

.event .mask .btnStyle {
  position: absolute;
  right: calc(50% - 100px);
  top: -100px;
  width: 200px;
  opacity: 0;
  z-index: 2;
}

.event:hover .mask .btnStyle {
  opacity: 1;
  top: calc(50% - 30px);
}

.event .details {
  padding: 22px 30px;
}

.event .details .title {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 33px;
  display: inline-block;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.event:hover .details .title {
  color: #fff;
}

.event .details .date {
  color: #b9b9b9;
  font-size: 16px;
  font-weight: 500;
}

/* ------------------------------------------ */
/*         contact Us
/* ------------------------------------------ */

.contact {
  height: 555px;
  position: relative;
  z-index: 1;
  padding: 40px 100px;
}

.contact > iframe {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1;
}

.contact .formContact {
  max-width: 100%;
  width: 645px;
  padding: 40px 55px 55px;
  position: relative;
  background-color: #000a41;
  z-index: 1;
  overflow: hidden;
}

.contact .formContact:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  background: url(../images/bgContact.png) center bottom no-repeat;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.contact .formContact:before {
  content: "";
  position: absolute;
  right: 60px;
  top: 0;
  height: 4px;
  width: 200px;
  background-color: #dc17cc;
}

.contact .formContact .titleForm {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #fff;
}

.contact .formContact input,
.contact .formContact textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  margin-bottom: 20px;
  border: none;
  border-left: 3px solid transparent;
  background-color: #041050;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.contact .formContact textarea {
  padding: 15px;
  height: 80px;
  resize: none;
}

.contact .formContact input:focus,
.contact .formContact textarea:focus {
  border-color: #dc17cc;
}

.contact .formContact input::input-placeholder,
.contact .formContact textarea::input-placeholder {
  color: #a2a2a2;
}
.contact .formContact input::-webkit-input-placeholder,
.contact .formContact textarea::-webkit-input-placeholder {
  color: #6d7495;
}
.contact .formContact input::-moz-placeholder,
.contact .formContact textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #6d7495;
}
.contact .formContact input:-ms-input-placeholder,
.contact .formContact textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #6d7495;
}
.contact .formContact input:-moz-placeholder,
.contact .formContact textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #6d7495;
}

.contact .formContact .btnForm {
  display: block;
  width: 200px;
  height: 50px;
  border: none;
  background-color: #0a24ae;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  border-radius: 30px;
  font-weight: 700;
  background: -moz-linear-gradient(
    0,
    rgba(220, 23, 204, 0.7) -70%,
    rgb(10 36 174) 100%
  );
  background: -webkit-linear-gradient(
    0,
    rgba(220, 23, 204, 0.7) -70%,
    rgb(10 36 174) 100%
  );
  background: linear-gradient(
    0,
    rgba(220, 23, 204, 0.7) -70%,
    rgb(10 36 174) 100%
  );
}

/* ------------------------------------------ */
/*         Footer
/* ------------------------------------------ */

.footer {
  padding: 75px 0 70px;
  overflow: hidden;
  position: relative;
  background-color: #040a27;
  z-index: 1;
}

.footer:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -130px;
  background: url(../images/bgFooter.png) center no-repeat;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.footer .logoFooter {
  display: block;
  margin: 0 auto 25px;
  max-width: 100%;
}

.footer .info {
  display: inline-block;
  margin-bottom: 15px;
}

.footer .info li {
  float: left;
  font-size: 18px;
  color: #4e5378;
}

.footer .info li:not(:last-of-type):after {
  content: "|";
  margin: 0 15px;
  float: right;
}

.footer .info li a {
  font-size: 18px;
  color: #4e5378;
}

.footer .location {
  max-width: 500px;
  margin: 0 auto 45px;
  font-weight: 500;
  font-size: 16px;
  color: #4e5378;
  display: block;
  text-align: center;
}

.footer .footerDown {
  display: flex;
  justify-content: space-between;
}

.footer .footerDown .copyrights {
  font-weight: 500;
  color: #4e5378;
  margin-top: 12px;
}

.footer .footerDown .socialFooter {
  margin-right: -160px;
}

.footer .footerDown .socialFooter li {
  float: left;
}

.footer .footerDown .socialFooter li a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #4e5378;
  margin: 0 7px;
  font-size: 16px;
  color: #4e5378;
  display: block;
  text-align: center;
  line-height: 45px;
}

/* ------------------------------------------ */
/*         breadcrumb
/* ------------------------------------------ */

.breadcrumbs {
  padding: 273px 0 155px;
  position: relative;
  overflow: hidden;
}

.breadcrumbs:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.breadcrumbs .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 50px;
}

.breadcrumbs h2:before {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #df17cc;
  position: absolute;
  right: 0;
  bottom: 0;
}

.breadcrumbs .bg {
  width: auto;
  height: auto;
  min-width: 100%;
  right: 0;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -2;
}

.breadcrumbs ul li {
  display: inline-block;
  color: #fff;
  font-size: 16px;
}

.breadcrumbs ul li:not(:first-of-type):before {
  content: "/";
  padding: 0 20px;
  color: #fff;
}

.breadcrumbs ul li a {
  color: #fff;
}

.breadcrumbs ul li.active a {
  color: #fff;
}

/* ------------------------------------------ */
/*         About Page
/* ------------------------------------------ */

.aboutDesc {
  padding: 120px 0 110px;
  background-color: #000d54;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #fff;
}

.aboutDesc .bg {
  position: absolute;
  left: -30px;
  top: 0;
  z-index: -1;
}

.aboutDesc .title {
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 30px;
}

.aboutDesc .desc {
  line-height: 40px;
  font-size: 20px;
  font-weight: 500;
}

/* ------------------------------------------ */
/*         Vision
/* ------------------------------------------ */

.vision {
  padding: 105px 0 85px;
  background-color: #f6f6f6;
}

.vision .mask {
  display: block;
  margin-bottom: 30px;
  position: relative;
}

.vision .mask:before {
  content: "";
  height: 250px;
  width: 4px;
  background-color: #df17cc;
  position: absolute;
  left: -4px;
  top: calc(50% - 125px);
}

.vision .mask img {
  width: 100%;
}

.vision .item:not(:last-of-type) {
  border-bottom: 1px solid #e1e1e1;
}

.vision .item {
  padding-bottom: 30px;
  margin-top: 25px;
  margin-right: 25px;
  max-width: 430px;
}

.vision .item .title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.vision .item .desc {
  max-width: 385px;
  text-align: justify;
  line-height: 35px;
  font-size: 16px;
  font-weight: 500;
}

/* ------------------------------------------ */
/*         opinion Poll
/* ------------------------------------------ */

.opinionPoll {
  position: fixed;
  right: 31px;
  bottom: 0;
  z-index: 999;
  width: 260px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.opinionPoll .title {
  cursor: pointer;
  padding: 0 20px;
  background-color: #0a1757;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  height: 50px;
  line-height: 54px;
  position: relative;
}

.opinionPoll .title i {
  position: absolute;
  left: 23px;
  top: 0;
  line-height: 57px;
}

.opinionPoll .formOpinion {
  display: none;
  background-color: #fff;
  padding: 20px 30px;
  position: relative;
}

.opinionPoll .formOpinion .back {
  position: absolute;
  left: 15px;
  top: 10px;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

.opinionPoll .formOpinion .ques {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 25px;
}

.opinionPoll .formOpinion .step:not(:first-of-type) {
  display: none;
}

.opinionPoll .formOpinion .btnForm,
.opinionPoll .formOpinion .next {
  display: block;
  width: 100px;
  height: 40px;
  border: none;
  line-height: 40px;
  background-color: #0a24ae;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  border-radius: 30px;
  font-weight: 700;
  background: -moz-linear-gradient(
    0,
    rgba(220, 23, 204, 0.7) -70%,
    rgb(10 36 174) 100%
  );
  background: -webkit-linear-gradient(
    0,
    rgba(220, 23, 204, 0.7) -70%,
    rgb(10 36 174) 100%
  );
  background: linear-gradient(
    0,
    rgba(220, 23, 204, 0.7) -70%,
    rgb(10 36 174) 100%
  );
}

.opinionPoll .formOpinion .label-relative {
  position: relative;
  overflow: hidden;
}

.opinionPoll .formOpinion .label-relative label {
  padding-right: 33px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  width: 100%;
  display: block;
  position: relative;
}

.opinionPoll .formOpinion .label-relative label input[type="checkbox"] {
  position: absolute;
  z-index: -9999;
  width: auto;
  height: auto;
  font-weight: 400;
}

.opinionPoll .formOpinion .label-relative label span {
  width: 21px;
  height: 21px;
  background-clip: content-box;
  padding: 2px;
  border: 2px solid #b5b5b5;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.opinionPoll
  .formOpinion
  .label-relative
  label
  input[type="checkbox"]:checked
  + span {
  background-color: #4820b7;
  border-color: #4820b7;
}

/* ------------------------------------------ */
/*         projectsPage
/* ------------------------------------------ */

.projectsPage {
  padding: 80px 0;
}

.projectsPage .project {
  margin-bottom: 30px;
}

.eventsPage {
  padding: 100px 0;
}

.eventsPage .event {
  margin-bottom: 30px;
}

.services {
  padding: 75px 0 70px;
  background-color: #fff;
}

.services .container {
  width: 1400px;
  max-width: 100%;
}

.services .event {
  background-color: #efefef;
  margin-bottom: 30px;
  min-height: 476px;
}

.services .event .mask {
  display: block;
}

.services .event:hover {
  background-color: #0a24ae;
}

.services .event .details {
  padding: 20px;
}

.services .event .details .title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
}

.services .itemServ {
  background: -moz-linear-gradient(
    0,
    rgba(220, 23, 204, 1) 0%,
    rgb(10 36 174) 100%
  );
  background: -webkit-linear-gradient(
    0,
    rgba(220, 23, 204, 1) 0%,
    rgb(10 36 174) 100%
  );
  background: linear-gradient(0, rgba(220, 23, 204, 1) 0%, rgb(10 36 174) 100%);
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 476px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.services .itemServ:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bgServices.png) no-repeat center;
  z-index: -1;
}

.services .itemServ .details .title1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 17px;
}

.services .itemServ .details .title2 {
  line-height: 40px;
  font-size: 25px;
  font-weight: 500;
  max-width: 228px;
  margin: 0 auto 70px;
}

.services .itemServ .details .btnSer {
  display: block;
  width: 176px;
  height: 50px;
  line-height: 50px;
  border: none;
  background-color: #0a24ae;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  border-radius: 30px;
  font-weight: 700;
  background: -moz-linear-gradient(
    134deg,
    rgba(220, 23, 204, 0.7) 0%,
    rgb(10 36 174) 100%
  );
  background: -webkit-linear-gradient(
    134deg,
    rgba(220, 23, 204, 0.7) 0%,
    rgb(10 36 174) 100%
  );
  background: linear-gradient(
    134deg,
    rgba(220, 23, 204, 0.7) 0%,
    rgb(10 36 174) 100%
  );
}

/* ------------------------------------------ */
/*         Media
/* ------------------------------------------ */

.media-library {
  padding: 85px 0 75px;
}

.btnsTab {
  margin-bottom: 40px;
  margin-right: 7.5px;
}

.btnsTab li {
  float: right;
  width: 150px;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  text-align: center;
  background-color: #dc17cc;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnsTab li:hover,
.btnsTab li.active {
  background-color: #0a24ae;
}

.tabs .tab:not(:first-of-type) {
  display: none;
}

.media-library .item {
  float: right;
  padding: 0 7.5px;
  margin: 7.5px 0;
  width: 33.3333%;
  position: relative;
  cursor: pointer;
}

.media-library .item img {
  width: 100%;
}

.media-library .item a {
  position: relative;
  display: block;
}

.media-library .item a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.56);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.media-library .item i {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 36, 174, 0.89);
  text-align: center;
  color: #fff;
  font-size: 25px;
  opacity: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.media-library .item i:before {
  content: "\f002";
  width: 50px;
  height: 50px;
  display: inline-block;
  border: 2px solid #fff;
  line-height: 47px;
  border-radius: 50%;
  font-size: 20px;
}

.media-library .item:hover a:after {
  opacity: 0;
}

.media-library .item:hover i {
  opacity: 1;
}

.media-library .videos .item {
  float: none;
  width: 100%;
  padding: 0;
  display: block;
}

.video-box .modal-body {
  padding: 0;
}

.video-box .modal-body iframe {
  display: block;
  height: 300px;
}

/* ------------------------------------------ */
/*         Details Page
/* ------------------------------------------ */

.detailsPage {
  padding: 65px 0;
}

.detailsPage .content {
  background-color: #f6f6f6;
  padding: 0 40px 35px;
}

.detailsPage .imgPost {
  width: 100%;
}

.detailsPage .content .date {
  display: block;
  text-align: left;
  padding: 15px 0 35px;
  color: #979797;
  font-size: 16px;
  margin-left: -10px;
}

.detailsPage .content .title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
  line-height: 33px;
}

.detailsPage .content .desc {
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 55px;
}

.detailsPage .content .author .text {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 17px;
}

.detailsPage .content .author .details {
  padding-right: 95px;
  position: relative;
  z-index: 1;
  padding-top: 12px;
}

.detailsPage .content .author img {
  position: absolute;
  right: 0;
  top: 0;
  width: 75px;
  height: 75px;
  background-color: #fff;
  border-radius: 50%;
  border: 4px solid #e3e3e3;
}

.detailsPage .content .author .name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #000;
}

.detailsPage .content .author .job {
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

/* ------------------------------------------ */
/*         Advantages
/* ------------------------------------------ */

.advantages {
  padding: 120px 0 35px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.advantages .item {
  position: relative;
  min-height: 275px;
}

.advantages .item:after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -20px;
  width: 0;
  height: 3px;
  background-color: #d318cb;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.advantages .item:hover:after {
  width: 50px;
  right: calc(50% - 25px);
}

/* ------------------------------------------ */
/*         gover subsidies
/* ------------------------------------------ */

.goverSubsidies {
  padding: 85px 0 55px;
  background-color: #000d54;
}

.goverSubsidies .title {
  font-size: 40px;
  color: #fff;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  margin-top: 70px;
  z-index: 1;
}

.goverSubsidies .title:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #d318cb;
}

.goverSubsidies .list li {
  margin-bottom: 17px;
  color: #b0b5d4;
  font-size: 15px;
  font-weight: 500;
  padding-right: 25px;
  position: relative;
}

.goverSubsidies .list li:before {
  content: "\f100";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 20px;
}

/* ------------------------------------------ */
/*         team
/* ------------------------------------------ */

.teamHead {
  background: #f6f6f6;
}

.team {
  padding: 75px 0 100px;
}

.team .titleStyle {
  margin-bottom: 53px;
  font-size: 30px;
}

.team .owl-carousel .owl-nav button {
  background-color: #f6f6f6;
  color: #000;
}

.team .owl-carousel .owl-nav button:hover {
  color: #fff;
  background-color: #0a24ae;
}

.team .owl-carousel .owl-nav button:after {
  display: none;
}

.team .owl-theme .owl-dots {
  display: none;
}

.member {
  text-align: center;
}

.member .mask {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 306px;
}

.member .mask:after {
  content: "";
  z-index: 2;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(
    0,
    rgba(220, 23, 204, 1) 0%,
    rgb(10 36 174) 100%
  );
  background: -webkit-linear-gradient(
    0,
    rgba(220, 23, 204, 1) 0%,
    rgb(10 36 174) 100%
  );
  background: linear-gradient(0, rgba(220, 23, 204, 1) 0%, rgb(10 36 174) 100%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.member:hover .mask:after {
  opacity: 0.79;
}
.member .mask:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.member:hover .mask:before {
  opacity: 0;
}

.member .mask span {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 15px;
  z-index: 5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.member .mask:hover span {
  opacity: 1;
  bottom: 70px;
}

.member .mask span:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: calc(50% - 25px);
  bottom: 0;
}

.member .mask img {
  width: 100%;
}

.member .name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.member .text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.team2 {
  background-color: #f6f6f6;
}

.team2 .member {
  margin-bottom: 30px;
}

.team2 .member .mask:after {
  display: none;
}

/* ------------------------------------------ */
/*         underwriting
/* ------------------------------------------ */

.bank {
  padding: 55px 0 45px;
}

.bank .head {
  background-color: #1e24b1;
  padding: 65px 20px 50px;
  text-align: center;
  color: #fff;
}

.bank .head .title {
  font-size: 30px;
  font-weight: 500px;
  line-height: 60px;
  margin-bottom: 10px;
  display: block;
}

.bank .head .numb {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 50px;
}

.bank .list {
  background-color: #f9f9f9;
}

.bank .list li:not(:last-of-type) {
  border-bottom: 1px solid #e5e5e5;
}

.bank .list li {
  padding: 25px 35px;
  font-weight: 700;
  font-size: 25px;
  color: #000;
}

.bank .list li:first-of-type {
  font-size: 30px;
  line-height: 55px;
}

.bank .list li img,
.bank .list li span {
  float: left;
  font-size: 25px;
  font-weight: 500;
}

.formStyle .form {
  margin-bottom: 40px;
  background-color: #f9f9f9;
  padding: 40px 70px 60px;
}

.formStyle .form .titleForm {
  margin-bottom: 45px;
  margin-right: -70px;
  padding-right: 40px;
  position: relative;
  font-weight: 700;
  float: right;
  font-size: 25px;
  margin-top: 5px;
}

.formStyle .form .titleForm:before {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 25px);
  width: 4px;
  height: 50px;
  background-color: #1e24b1;
}

.formStyle .form .inputStyle {
  position: relative;
  margin-bottom: 25px;
  z-index: 1;
}

.formStyle .form .inputStyle input,
.formStyle .form .fileStyle {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  border: 1px solid #f1f1f1;
  font-size: 16px;
  color: #676767;
  background-color: #f1f1f1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.formStyle .form .fileStyle input::input-placeholder {
  color: #676767;
}
.formStyle .form .fileStyle input::-webkit-input-placeholder {
  color: #676767;
}

.formStyle .form .fileStyle input:-moz-placeholder {
  color: #676767;
}

.formStyle .form .fileStyle input::-moz-placeholder {
  color: #676767;
}

.formStyle .form .fileStyle input:-ms-input-placeholder {
  color: #676767;
}

.formStyle .form .fileStyle {
  margin-bottom: 25px;
  overflow: hidden;
  cursor: pointer;
  font-weight: 400;
  color: #676767;
  position: relative;
}

.formStyle .form .fileStyle input {
  position: absolute;
  right: -100%;
  top: -100%;
}

.formStyle .form .inputStyle input:focus {
  border-color: #dedede;
  background-color: #fff;
}

.formStyle .form .inputStyle .text {
  position: absolute;
  left: 17px;
  top: 20px;
  color: #8e8e8e;
  font-size: 16px;
  font-weight: 500;
  z-index: 1;
}

.formStyle .form .price {
  float: right;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

.formStyle .form .price span {
  font-weight: 800;
  font-size: 50px;
}

.formStyle .form button,
.formStyle .form a {
  float: left;
  width: 200px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  border-radius: 35px;
  background-color: #1e24b1;
  border: none;
}

.formStyle .form .titleInput {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.formStyle .form .info {
  float: left;
}

.formStyle .form .info li {
  float: right;
  border-radius: 25px;
  padding: 10px 15px 10px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  padding-left: 55px;
  background-color: #ffffff;
}

.formStyle .form .info li:first-of-type {
  margin-left: 10px;
}

.formStyle .form .info li i {
  position: absolute;
  left: 10px;
  top: 6.5px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  background-color: #f1f1f1;
  color: #aaaaaa;
  text-align: center;
  border-radius: 50%;
}

.formStyle .form .info li.active i {
  background-color: #1e24b1;
  color: #fff;
}

/* ------------------------------------------ */
/*         More Details
/* ------------------------------------------ */

.moreDetails {
  padding: 110px 0;
  color: #fff;
  text-align: center;
  background-color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.moreDetails:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.62);
  z-index: -1;
}

.moreDetails .bg {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
}

.moreDetails .title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.moreDetails .desc {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 50px;
}

.moreDetails .whatsapp {
  display: inline-block;
  width: 177px;
  height: 55px;
  line-height: 53px;
  color: #fff;
  background-color: #4caf50;
  border-radius: 31px;
  font-size: 20px;
  position: relative;
  font-weight: 700;
  padding-left: 20px;
}

.moreDetails .whatsapp i {
  font-size: 30px;
  position: absolute;
  left: 15px;
  top: 10px;
}

.select {
  background-color: #f1f1f1;
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

.selectStyle {
  width: 100%;
  height: 60px;
  float: right;
  position: relative;
  width: 100%;
  cursor: pointer;
}

.selectStyle .value {
  font-size: 16px;
  color: #676767;
  line-height: 60px;
  display: block;
  padding: 0 20px;
  cursor: pointer;
  position: absolute;
  font-weight: 400;
  right: 0;
  width: 100%;
  height: 100%;
}

.selectStyle .icon {
  position: absolute;
  left: 20px;
  top: 22px;
  color: #707070;
  font-size: 18px;
  z-index: -1;
}

.selectStyle .listSelect {
  position: absolute;
  top: 100%;
  right: 0;
  width: 190px;
  background-color: #fff;
  display: none;
  z-index: 100;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.06);
}

.selectStyle .listSelect li {
  color: #000;
  font-size: 16px;
  cursor: pointer;
  background-color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.selectStyle .listSelect li span {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  display: block;
}

.selectStyle .listSelect li:hover,
.selectStyle .listSelect li.active {
  background-color: #1e24b1;
  color: #fff;
}

.selectStyle .listSelect li:before {
  content: "\f00c";
  width: 16px;
  height: 16px;
  font: normal normal normal 14px/1 FontAwesome;
  color: #fff;
  border: 1px solid #9e9e9e;
  position: absolute;
  left: 14px;
  text-align: center;
  line-height: 15px;
  top: 17px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.selectStyle .listSelect li.active:before,
.selectStyle .listSelect li:hover:before {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000;
}

/*********************************************************/

.governance {
  margin-top: 63px;
}

.governance .card {
  margin-bottom: 45px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  text-align: center;
  border: 0;
  padding: 44px 0 38px 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 170px;
}

.governance .card .card-title {
  font-size: 20px;
  font-weight: bold;
  -webkit-line-clamp: 1 !important;
  margin-bottom: 16px;
  max-width: 250px;
  margin: 0 auto;
  line-height: 30px;
}

.governance .card .card-link {
  width: 100px;
  height: 42px;
  line-height: 42px;
  color: #7e7e7e;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  margin: auto;
  background-color: #f3f3f3;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 3%;
}

.governance .card:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.16);
}

.governance .card:hover .card-link {
  background-color: #dc17cc;
  color: #fff;
}

.policy .card {
  height: 255px;
  padding-right: 10px;
  padding-left: 10px;
}

.policy .card .card-title {
  -webkit-line-clamp: 2 !important;
}

/* ===================================== */

/* start commonQuestions */

/* ======================================= */

.questions {
  padding: 65px 0;
}

.questions .titleQuestions {
  color: #000;
  font-weight: 700;
  font-size: 30px;
  position: relative;
}

.questions .titleQuestions::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #dc17cc;
}

.questions .iconRight,
.questions .iconLeft {
  line-height: 30px;
  background: #0a1757;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
}

.questions .titleBox {
  color: #000;
  line-height: 35px;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
}

.questions .answer {
  color: #555;
  font-size: 18px;
  font-weight: 500;
}

.questions .owl-carousel .owl-nav.disabled {
  display: block;
  position: absolute;
  top: -45px;
  right: 235px;
}

.questions .member {
  display: block;
  text-align: right;
  margin-top: 50px;
}

.location.questions1 {
  margin-bottom: 15px;
}

.aboutDesc.session {
  margin-bottom: 60px;
}
