:root {
  --dark: #000000;
  --dark-color: #353535;
  --light-dark: #999999;
  --bg-danger: #ff1e5a;
  --body-font-family: "Maven Pro", sans-serif;
  --heading-font-family: "Montserrat", sans-serif !important;
}

/* BEGIN: global style */
a,
a:hover {
  text-decoration: none;
}

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

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

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

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

p {
  color: #737373;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color) !important;
  font-family: var(--heading-font-family);
}

button:focus,
button {
  outline: none;
}

.section-heading.bottom-border {
  position: relative;
  margin-bottom: 30px;
}

.section-heading.bottom-border:after {
  content: "";
  height: 10px;
  background: var(--dark-color);
  width: 100px;
  position: absolute;
  left: 10px;
  bottom: -10px;
}

/* END: global style */
/* BEGIN: main menu style */
.main-menu {
  z-index: 1002;
  transition: all 0.3s linear;
  padding: 12px 0px;
}

.main-menu .navbar-brand {
  font-size: 1.65rem;
  font-weight: bold;
  padding: 0;
  transition: font-size 0.3s linear;
  color: var(--dark-color);
}

.main-menu.sticky .navbar-brand {
  /* font-size: 1.5rem; */
}

.main-menu .navbar-nav .nav-item.active .nav-link {
  font-weight: bold;
}

.main-menu .navbar-nav .nav-item .nav-link {
  color: var(--dark-color);
}

.main-menu .navbar-toggler {
  border: none;
  background: transparent;
}

.main-menu.sticky {
  background-color: var(--white);
}

@media (max-width: 576px) {
  .main-menu .navbar-nav {
    background-color: var(--white);
    padding: 5px 10px 0;
  }
}

/* END: main menu style */
/* BEGIN: top header style */
.top-header {
  height: 100vh;
}

.top-header .header-inner-text h1 {
  font-size: 5rem;
  color: var(--dark-color);
  font-weight: bold;
}

.top-header .header-inner-text h2 {
  font-size: 2.5rem;
  color: #737373 !important;
  font-weight: normal;
}

@media (max-width: 767px) {
  .top-header {
    height: 50vh;
    text-align: center;
  }

  .top-header .header-inner-text h1 {
    font-size: 3.5rem;
  }

  .top-header .header-inner-text h2 {
    font-size: 2rem;
  }
}

/* END: top header style */
/* BEGIN: section-heading style */
.section-heading {
  margin-bottom: 25px;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 1.4rem;
  }
}

/* END: section-heading style */
/* BEGIN: section-body style */
@media (min-width: 992px) {
  .section-body .col-sm-12:first-child {
    /* padding-left: 2.5rem;
    padding-right: 2.5rem; */
  }
}

/* Service page style */
.single-services {
  border: none;
  overflow: hidden;
}

.single-services .image {
  height: 250px;
  transform: scale(1);
  transition: transform 0.3s linear;
  /* -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right; */
  overflow: hidden;
  display: block;
}

.single-services .image:hover {
  /* transform: scale(1.05);
  max-width: 100%; */
}

.single-services .service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.single-services .service-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
}

.single-services .service-title:after {
  content: "";
  height: 5px;
  background: var(--dark-color);
  width: 75px;
  position: absolute;
  left: 0;
  bottom: 0px;
}

.single-services .service-content p {
  font-size: 1.55rem;
  width: 90%;
  margin-right: auto;
}

.single-services .view-details {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: bold !important;
}

.single-services .view-details i {
  font-size: 20px;
}

@media (min-width: 576px) and (max-width: 991px) {
  .single-services .image {
    height: 216px;
  }
}

@media (max-width: 767px) {
  .single-services .service-title {
    font-size: 1.55rem;
  }

  .single-services .service-content p {
    font-size: 1.25em;
    width: 100%;
  }

  .single-services .view-details {
    margin-left: auto;
  }
}

/* END: section-body style */
/* BEGIN: Index page version 2 */
.v2 .single-services .service-content {
  justify-content: center;
}

@media (min-width: 578px) {
  .v2 .single-services .view-details {
    margin-left: auto;
    margin-top: 15px;
  }
}

/* END: Index page version 2 */
/* BEGIN: Index page version 3 */
.v3 .single-services .view-details {
  background-color: #ddd;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: normal;
}

@media (min-width: 578px) {
  .v3 .single-services {
    /* -moz-box-shadow: 0 10px 2px 0px #ccc;
    -webkit-box-shadow: 0 10px 2px 0px #ccc;
    box-shadow: 0 10px 2px 0px #ccc;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-right: 1px solid #cccccc63; */
    -moz-box-shadow: 0 5px 10px 3px #ccc;
    -webkit-box-shadow: 0 5px 10px 3px #ccc;
    box-shadow: 0 5px 16px 2px #ddd;
    border-radius: 6px !important;
  }

  .v3 .single-services .view-details {
    margin-left: auto;
    margin-right: 25px;
  }
}

/* END: Index page version 3 */
/* BEGIN: blog style*/
.blog .blog-section .card {
  border: none;
}

.blog .blog-section .card-body {
  padding-left: 0;
  padding-right: 0;
}

.blog .blog-section .card-body .card-text {
  font-size: 0.85rem;
  font-weight: normal;
}

.blog .blog-section .card-body .card-title {
  font-weight: bold;
  font-size: 1.15em;
  line-height: 1.5rem;
}

.blog .blog-section .card-header {
  height: 195px;
}

.company-profile-section .company-anchor-link a i,
.blog-details-btn i {
  font-size: 25px;
  margin-left: 10px;
}

.company-profile-section .company-anchor-link a,
.blog-details-btn {
  background-color: var(--dark);
  border-color: var(--dark);
  opacity: 1;
  padding: 15px 0px;
  border-radius: 30px;
  font-weight: normal;
  color: var(--white);
  width: 205px;
  font-size: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.blog-details-btn:hover,
.blog-details-btn:focus,
.blog-details-btn:active {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
  opacity: 0.85;
  color: var(--white) !important;
  box-shadow: none;
}

/* END: blog style*/
/*BEGIN: company style */
.company {}

.company-profile-section .first-line {
  padding: 12px 10px 8px;
}

.company-profile-section h3 {
  font-size: 1.5rem;
  margin: 0 0 5px;
  font-weight: bold;
}

.company-profile-section .company-anchor-link a {
  background-color: #ddd;
  color: var(--dark-color);
  border-color: var(--white);
  /* padding: 10px 25px;
  border-radius: 25px;
  font-weight: normal; */
}

@media (max-width: 576px) {
  .company-profile-section h3 {
    font-size: 1.15rem;
  }
}

/*END: company style */
/*BEGIN: team page style */
.team {}

.team .team-section .card {
  margin-bottom: 15px;
  margin-top: 15px;
  border: none;
}

.team .team-section .card .card-body {
  padding-bottom: 0;
}

.team .team-section .card .card-body .card-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.team .team-section .card .card-body .card-text {
  font-size: 0.75rem;
  font-weight: normal;
  color: #737373;
  margin-bottom: 0;
}

/*END: team page style */
/*BEGIN: Service details page style */
.service-details .app-name-info {
  z-index: 1;
  padding-left: 10px;
}

.service-details .app-name-info h3 {
  font-size: 4rem;
  color: var(--white);
  font-weight: bold;
  margin-bottom: 0;
}

.service-details .app-name-info p {
  color: var(--white) !important;
  font-weight: bold;
  font-size: 1.65rem;
}

.service-details .single-app {
  height: 300px;
  /* -moz-box-shadow: 0 10px 2px 0px #ccc;
  -webkit-box-shadow: 0 10px 2px 0px #ccc;
  box-shadow: 0 10px 2px 0px #ccc; */
  /* border-radius: 20px !important;
  overflow: hidden;
  position: relative; */
  height: 300px;
  -moz-box-shadow: 0 10px 2px 0px #ccc;
  -webkit-box-shadow: 0 5px 5px 2px #ddd;
  box-shadow: 0 5px 5px 2px #ddd;
  border-radius: 10px !important;
  overflow: hidden;
  position: relative;
}

.service-details .single-app.alice:before {
  content: "";
  background: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.single-app .app-iamge {
  height: 100%;
  width: 225px;
  z-index: 1;
}

.service-details .serivce-title h3 {
  font-size: 2rem;
  font-weight: bold;
}

.service-details .serivce-title h4 {
  font-size: 2rem;
  font-weight: bold;
}

.service-details p {
  font-weight: normal;
  color: var(--dark-color) !important;
}

.service-details h5 {
  font-weight: bold;
}

.color-filter-1 {
  background-color: #ff3bcf;
}

.color-filter-2 {
  background-color: #ff2c8b;
}

.color-filter-3 {
  background-color: #ed2762;
}

.service-details .app-sample {
  margin-bottom: 30px;
}

.service-details .app-sample .card {
  border-radius: 0;
}

.service-details .app-sample .card .card-body {
  padding-top: 0;
}

.service-details .app-sample .card .card-header {
  border-bottom: 0;
  padding: 12px 0;
}

.service-details .app-sample .card .card-header h4 {
  color: var(--white) !important;
  font-size: 1.25rem;
  margin: 0;
}

.service-details .app-sample .card .card-img {
  border-radius: 0 !important;
}

.service-details-button i {
  font-size: 20px;
}

.service-details-button {
  background-color: #ddd;
  padding: 12px 35px;
  border-radius: 35px;
  font-weight: normal;
  margin-bottom: 25px;
}

.serivce-sub-title {
  margin-bottom: 20px;
  margin-top: 20px;
}

.service-business-analize {
  font-weight: bold;
  font-size: 1.5rem;
}

.business-analize-shadow-box {
  padding: 10px;
  text-align: center;
  -moz-box-shadow: 0 10px 2px 0px #ccc;
  -webkit-box-shadow: 0 10px 2px 0px #ccc;
  box-shadow: 0 10px 2px 0px #ccc;
  border-radius: 20px !important;
}

.business-analize-shadow-box h5 {
  color: #737373 !important;
}

@media (max-width: 767px) {
  .service-details .single-app {
    background: #ffffff !important;
  }

  .service-details .single-app .app-name-info {
    background: #ffffff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .service-details .single-app.bg-danger .app-name-info {
    background: var(--bg-danger);
  }

  .service-details .single-app {
    height: 495px;
    flex-direction: column !important;
    position: relative;
  }

  .service-details .app-name-info {
    /* order: 2;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: absolute;
    bottom: 0; */
    order: 2;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
  }

  .service-details .app-name-info h3 {
    /* font-size: 3rem;
    margin: 0 0 0; */
    font-size: 2rem;
    margin: 0 0 0;
  }

  .service-details .app-name-info p {
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .single-app .app-iamge {
    height: 412px;
    width: 100%;
    order: 1;
  }

  .service-details .alice .app-name-info p,
  .service-details .alice .app-name-info h3 {
    color: var(--text-dark) !important;
  }
}

/*END: Service details page style */
/* BEGIN: Apps details page style */
.app-details-page .display-2 {
  /* font-weight: bold; */
}

.app-details-page .display-4 {
  color: #737373 !important;
  font-size: 2.5rem;
}

.app-menu-datils h4 {
  font-size: 2.15rem;
  font-weight: bold;
  color: #737373 !important;
}

.app-menu-datils p {
  font-size: 1.35rem;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .app-details-page .display-2 {
    font-size: 2.75rem;
  }

  .app-details-page .display-4 {
    font-size: 1.5rem;
  }

  .app-menu-datils {
    text-align: center;
    margin-top: 25px;
  }

  .app-menu-datils h4 {
    font-size: 1.75rem;
  }
}

/* END: Apps details page style */
/*BEGIN: Contact page style */
.contact-box {
  margin-top: 45px;
  margin-bottom: 45px;
  padding: 45px;
  height: 300px;
  background-color: #000000 !important;
}

.contact-box h4 {
  color: var(--white) !important;
  font-weight: bold;
  font-size: 2rem;
}

.contact-box .container,
.contact-box .container>.row {
  height: 100%;
}

.contact-box .call-action-btn a {
  background-color: #ddd;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: normal;
}

@media (max-width: 576px) {
  .contact-box {
    height: 250px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .contact-box h4 {
    font-size: 1.5rem;
  }

  .contact-box .call-action-btn a {
    padding: 10px 25px;
    border-radius: 25px;
  }
}

/*END: Contact page style */
/* BEGIN: About us page */
.second-section-heading h3 {
  font-size: 2.25rem;
}

.second-section-heading h3,
.vision-section h4 {
  font-weight: bold;
}

.vision-section p {
  line-height: 2.5rem;
}

/* END: About us page */
.project-filter-btn {
  display: flex;
  /* width: 65px; */
  justify-content: space-between;
}

@media (min-width: 990px) {
  /* .project-filter-btn ~ .dropdown-menu {
  left: 381px !important;
} */
}

.project-filter-btn,
.project-filter-btn:hover,
.project-filter-btn:focus {
  background-color: transparent;
  outline: none;
  border: none;
  box-shadow: none;
}

.project-filter-btn.dropdown-toggle::after {
  content: "\f107";
  font-family: FontAwesome;
  border: none;
  margin-left: 10px;
}

.isotope-filters button,
.project-filter-btn {
  font-size: 20px;
}

/* ---- isotope ---- */
.isotope-filters button {
  border: none;
  line-height: 30px;
  cursor: pointer;
}

.isotope-filters button:focus {
  outline: none;
  outline-style: none;
  outline-offset: 0;
}

.isotope {
  /* background: #ddd; */
  /* max-width: 1200px; */
}

/* clear fix */
.isotope:after {
  content: "";
  display: block;
  clear: both;
}

/* ---- .item ---- */
.item {
  height: 200px;
  padding: 5px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item.height2 {
  height: 400px;
}

.grid-sizer,
.item {
  width: 25%;
}

.grid-item--width2 {
  width: 50%;
}

.item .caption {
  position: absolute;
  bottom: 20px;
  left: 15px;
}

.item .caption .category-title h4 {
  background-color: var(--white);
  padding: 5px 7px;
  font-size: 0.75rem;
  display: inline-block;
  font-weight: 400;
}

.item .caption p {
  background-color: var(--dark);
  display: inline-block;
  padding: 2px 7px;
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

@media (max-width: 990px) {
  .item {
    height: 165px;
  }

  .item.height2 {
    height: calc(165px * 2);
  }
}

@media (max-width: 767px) {
  .item {
    height: 200px;
  }

  .item.height2 {
    height: 200px;
  }

  .grid-sizer,
  .item {
    width: 50%;
  }
}

@media (max-width: 479px) {
  .project-filter-btn~.dropdown-menu {
    left: inherit;
  }

  .item {
    height: 200px;
  }

  .item.height2 {
    height: 200px;
  }

  .grid-sizer,
  .item {
    width: 100%;
  }

  .grid-item--width2 {
    width: 100%;
  }
}

/* Footer Style */
footer {
  color: var(--white);
  padding: 35px 0;
}

footer hr {
  background-color: var(--white);
}

footer h3,
footer .footer-main-container a {
  color: var(--white) !important;
}

footer p {
  color: var(--white);
  margin-bottom: 0;
}

.footer-social-media-link a {
  font-size: 27px;
}

.history-table tr td {
  border: none;
  font-size: 1.25rem;
}

.history-table tr td:first-child,
.history-table tr td:nth-child(2) {
  font-weight: bold;
}

.about-us-contact-btn {
  width: 235px;
}

.about-us-contact-btn i {
  margin-right: 20px;
}

.contact-us-title {
  font-size: 2rem;
}

/*  Service details page style*/
.service-details-page-top-section {
  height: 400px;
  margin-top: 64px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: relative;
}

@media (max-width:767px) {
  .service-details-page-top-section {
    height: 250px;
  }
}

@media (max-width:479px) {
  .service-details-page-top-section {
    height: 200px;
    text-align: center;
  }

  .service-title {
    text-align: center;
  }

  .service-title h2 {
    font-size: 2rem !important;
  }
}

.service-details-page-top-section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.details-page-breadcrumb {
  margin-top: 15px;
}

.details-page-breadcrumb p {
  color: var(--white);
}

.service-title {
  height: calc(100% - 54px);
}

.service-title h2 {
  font-size: 2.65rem;
  font-weight: bold;
  color: var(--white) !important;
}

.call-action-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.call-action-section .call-action-section-inner {
  margin: 0 5px;
  padding: 65px 25px;
  background-color: #ededed;
  border-radius: 10px;
}

.call-action-section .call-action-section-inner h3 {
  font-weight: bold;
}

.service-details-info {}

.service-details-info .service-details-page-title {
  margin: 25px 0;
}

.service-details-info .service-details-page-title h3 {
  font-size: 2.5rem;
  color: #9e9e9e !important;
  font-weight: bold;
}

.service-details-info .service-details-inner {
  margin: 0 auto;
}

.service-details-info .service-details-inner p {
  font-size: 1.55rem;
  color: var(--text-dark);
  line-height: 2.65rem;
  text-align: justify;
}

.trading-section-area .single-trading {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 5px 1px #ddd;
  padding: 25px 15px;
  margin-bottom: 20px;
}

.trading-section-area .single-trading .trend-logo {
  flex: 0 0 150px;
  width: 150px;
}

.trading-section-area .single-trading h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}

@media (max-width:767px) {
  .trading-section-area .single-trading h4 {
    font-size: 15px;
  }
}

.trading-section-area .single-trading .trend-institute-name {
  margin-left: 3rem;
}

.paper-preparation-instruction .single-paper-instruction {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 5px 2px #ddd;
  padding: 25px 15px;
  margin-bottom: 20px;
}

.project-details-video .embed-responsive {
  max-height: 450px;
}

.ytp-gradient-top {
  display: none;
}

.product-details-page-title h3 {
  font-size: 2.15rem;
  font-weight: bold;
}

.project-details-top-section .project-summary div {
  display: block;
}

.project-details-top-section .project-summary div p {
  background-color: var(--dark);
  display: inline-block;
  margin-bottom: 0;
  font-size: 1.5rem;
  color: var(--white);
  padding: 2px 5px;
}

.project-details-top-section .category-title {
  display: block;
}

.project-details-top-section .category-title h4 {
  font-size: 1rem;
  background-color: var(--white);
  display: inline-block;
  padding: 3px 10px;
  font-weight: normal;
}
