@charset "utf-8";
/* CSS Document */

.ml-100 {
  margin-left: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mt-7 {
  margin-top: 70px;
}
.mt-90 {
  margin-top: 90px;
}
.f28 {
  font-size: 28px;
}
.bblue {
  color: #1790f0;
}
.py-10 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.py-15 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.title {
  font-size: 60px;
  font-weight: 900;
  color: #000;
}
.mvtext {
  padding: 105px 3rem !important;
  font-size: 42px;
  line-height: 1.4em;
}

.mvtext2 {
  padding: 180px 3rem !important;
  font-size: 42px;
}

.mvtext span {
  border-bottom: 3px solid #1790f0;
  color: #1790f0;
}

.quote-hide {
  display: none;
}

.quote-text {
  text-align: center;
  font-size: 36px;
  font-style: oblique;
  padding: 2em;
  z-index: 0;
}
.quote-text2 {
  text-align: center;
  font-family: "Lucida Bright", "serif";
  font-size: 34px;
  font-style: oblique;
  margin: 100px auto 0;
  max-width: max-content;
  z-index: 0;
  line-height: 1.2;
}

.quote-text2 span {
  border-bottom: 3px solid #1790f0;
}

.bold {
  font-weight: 700;
}

.quote-box1 {
  position: absolute;
  text-align: center;
  padding: 2em;
  z-index: 5;
  top: 250px;
  left: 0px;
}

.quote-box2 {
  position: absolute;
  text-align: center;
  padding: 2em;
  z-index: 5;
  top: 210px;
  left: 470px;
}

.quote-box3 {
  position: absolute;
  text-align: center;
  padding: 2em;
  z-index: 5;
  top: 270px;
  right: 50px;
}

.quote-box4 {
  position: absolute;
  text-align: center;
  padding: 2em;
  z-index: 5;
  top: 490px;
  left: 50px;
}

.quote-box5 {
  position: absolute;
  text-align: center;
  padding: 2em;
  z-index: 5;
  top: 510px;
  left: 430px;
}

.quote-box6 {
  position: absolute;
  text-align: center;
  padding: 2em;
  z-index: 5;
  top: 490px;
  right: 50px;
}

.box {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  padding: 15px;
}
.bluebox {
  box-shadow: rgba(0, 0, 0, 0.031) 0px 10px 50px;
}

.financialOneCustomBox {
  background-color: #178ef01e;
}

.service_icon_title_wrap {
  margin-bottom: 15px;
  display: flex;
}
.service_icon_title_wrap .service_icon {
  width: 80px;
  height: 80px;
}

.service_icon_title_wrap h3 {
  width: 100%;
  margin-top: 22px;
  margin-left: 25px;
}

/*swiper css*/
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.swiper-slide {
  text-align: left;

  background: #fff;
  border: 1px solid #fff;
  flex-shrink: 0;
  width: 95%;
}
.swiper-autoheight .swiper-slide .box {
  height: 360px;
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  top: 45%;
  width: 35px;
  border-radius: 50px;
}

.swiper-pagination-bullet {
  background: #0074e3;
}

.swiper-slide p {
  margin-bottom: 0;
}
.swiper-autoheight .swiper-slide {
  height: auto !important;
}
.swiper-slide-active {
  border: 1px solid #0074e3;
  transition: all ease-in 0.5s;
}

.swiper-wrapper,
.swiper-slide {
  align-items: center; /* add this will all relevant prefixes */
}

.paginationTitle {
  position: absolute;
  right: 40px;
  width: auto;
  font-size: 10px;
  text-wrap: nowrap;
  text-align: right;
  display: none;
  color: #fff;
  padding: 5px;
  margin-top: -5px;
  background-color: #0074e3;
  border-radius: 5px;
  line-height: 1em;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
  transition: all ease-in 0.2s;
}

.swiper-pagination-bullet:hover .paginationTitle,
.swiper-pagination-bullet:hover {
  display: block;
  opacity: 1;
}

#technology {
  background-image: url("../img/demain_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.dbox {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  z-index: 0;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all ease-in-out 0.2s;
}
.dbox:hover {
  transform: translateY(-10px);
}
.dcta {
  border-bottom: 6px solid #ffa633;
  font-size: 20px;
  font-weight: 900;
  width: 175px;
  background-image: linear-gradient(70deg, rgba(0, 0, 0, 0.9) 25%, /* font color */ rgba(255, 255, 255, 0.8) 50%, rgba(0, 0, 0, 0.9) 65% /* font color */);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s infinite;
}

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

/* demain whole content Shine */
/* .dbox:after {
  content: "";
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: 1;
  animation: slide 4s infinite;
  animation-delay: 1s;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 0.9)),
    color-stop(99%, rgba(128, 186, 232, 0)),
    color-stop(100%, rgba(125, 185, 232, 0))
  ); 
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  ); 
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
   
  ); 
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  ); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#007db9e8',GradientType=1 );
} */

/* animation */

/* @keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
} */

.dseperator {
  border: 1px solid #ffa633;
  width: 1px;
  height: 100%;
  margin: auto;
}
.dtitle {
  font-size: 46px;
  margin: -10px 0;
}
.dtext {
  font-size: 26px;
  font-weight: 400;
  color: #212529;
}

.a-middle {
  margin: auto 0;
}

#contact {
  background-color: #1790f0;
  height: 60%;
}

#vision img {
  right: 0;
  margin-top: -230px;
  position: absolute;
  width: 240px;
  z-index: -20;
}

#contact img {
  left: 0;
  position: absolute;
  width: 315px;
}

#team img {
  right: 0;
  margin-top: 600px;
  position: absolute;
  width: 240px;
}

.modal-content.no--shadow .modal-body {
  padding: 0px;
}
.modal-content.no--shadow {
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

#myModal--effect-fullwidth .modal.fade .modal-dialog {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  opacity: 1;
}
.modal-dialog.fullwidth--box {
  max-width: 90%;
  margin: 0 auto;
  left: 5px;
  transform: translate(0, 0) !important;
}

.modal-content.no--shadow {
  border: 0;
  box-shadow: none !important;
  /* width: 100%; */
}

#myModal--effect-fullwidth .modal.show .modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.modal.fade .modal-dialog.modal-dialog-zoom {
  -webkit-transform: translate(0, 0) scale(0.5);
  transform: translate(0, 0) scale(0.5);
}
.modal.show .modal-dialog.modal-dialog-zoom {
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}

.active {
  opacity: 1;
}
.inactive {
  opacity: 0.5;
}
.sm-rounded {
  border-radius: 8px;
}
/*
.lg-rounded{border-radius: 20px; box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;}
.teamboxtop{background-color: #ddd; border-radius:0 0 20px 20px; width: 65%; height: 60px; margin: 0 0 20 30;  overflow: hidden;}
.teamboxbottom{background-color: #ddd; border-radius:20px 20px 0 0; width: 65%; height: 60px; margin: 20 0 0 30; overflow: hidden;}
*/

div#myModal--effect-fullwidth {
  background: rgba(255, 255, 255, 1);
}

div#myModal--effect-fullwidth,
.modal-content.no--shadow {
  height: 100%;
  overflow: hidden;
}

.teamboxtop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ddd;
  border-radius: 0 0 25px 25px;
}
.teamboxbottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ddd;
  border-radius: 25px 25px 0 0;
}
.lg-rounded {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 65%;
  border-radius: 25px;
}
.teamboxbottom,
.teamboxtop {
  height: 30px;
  background: #eee;
  width: 450px;
}

.popup-slideDown {
  animation-name: pop-slide-down;
  animation-duration: 0.6s;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
@keyframes pop-slide-down {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.popup-slideUp {
  animation-name: pop-slide-up;
  animation-duration: 0.6s;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
.popup-slideRight {
  animation-name: pop-slide-right;
  animation-duration: 0.6s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.popup-zoomOut {
  animation-name: pop-zoomOut;
  animation-duration: 0.6s;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.popup-fadeIn {
  animation-name: pop-fadeIn;
  animation-duration: 0.6s;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

@keyframes pop-slide-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes pop-zoomOut {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pop-slide-right {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

#popThumbnail {
  position: absolute;
  bottom: 65px;
  width: 40%;
}
.hide {
  display: none !important;
}
#popThumbnail img {
  opacity: 0.4;
  max-width: 20%;
  cursor: pointer;
}
#popThumbnail img.active {
  opacity: 1;
}
.back img {
  max-width: 8%;
}

.tworowcarousel .slide {
  margin-bottom: 20px;
}

.card2-title {
  min-height: 180px;
  display: flex;
}
.card2-title p {
  align-self: center;
}
