/**
* Template Name: BizLand - v3.2.0
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Titillium Web", sans-serif;
  color: #16133e;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Titillium Web", sans-serif;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #015dd8;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #015dd8;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  color: #16133e;
  /* font-size: 14px; */
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.blue-span {
  font-weight: bold;
  color: #015dd8;
}

/* .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #16133e;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  } */

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar li:hover > a {
  color: #16133e;
}

.navbar .active {
  color: #16133e;
  font-weight: bold;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #106eea;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  #forCustomerBanner {
    padding-top: 100px !important;
  }
  #forCustomerBanner .banner-image-section {
    display: none;
  }
  .why-use-deceta .car {
    margin-bottom: 100px;
    margin-top: 100px;
  }
  .phone-frame-section{
    margin-top: 15%;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #015dd8;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #015dd8;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 85vh;
  background-size: cover;
  background: url(../images/for_business_background.png?c8b22a950c093f5836f869d093ae3d0b)
    center;
  position: relative;
}

#hero:before {
  content: "";
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.2)
  );
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .login_form {
  background-color: white;
  width: 70%;
  border-radius: 14px;
}

.login_form h3 {
  font-size: 24px !important;
  font-weight: 700;
  color: #16133e !important;
}

.login_form i {
  background-color: #f5f7f7;
  text-align: center;
  color: #b7b7ba;
  padding: 12px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.login_form input {
  background-color: #f5f7f7;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-color: #f5f7f7;
  border-radius: 10px;
  color: #b7b7ba;
  font-size: 12px;
  font-family: "Titillium Web", sans-serif;
}
.login_form button {
  background-color: #015dd8;
  font-size: 16px;
  border-color: #015dd8;
  font-family: "Titillium Web", sans-serif;
  font-weight: bold;
}

#hero .container {
  position: relative;
  margin-left: 12%;
}

#hero h1,
#hero h1 label {
  margin-top: 2%;
  /* font-family: "Titilliums Web"!important; */
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .banner_title {
    display: none;
  }
  #hero .login_form {
    width: 90%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  padding-top: 150px;
  overflow: hidden;
}
.spacer_section {
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}
.section-bg {
  background-color: #ffffff;
}

.linear_to_bottom {
  background-image: linear-gradient(to bottom, #f7f9fa, #ffffff);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #ffffff;
  color: #16133e;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #16133e;
}

.section-title p {
  line-height: 19px;
  font-size: 18px;
  color: #767e84;
  margin: 15px auto 0 auto;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
  # Featured Services
  --------------------------------------------------------------*/
.featured-services {
  background-image: linear-gradient(to top, #f7f9fa, #ffffff);
}

.featured-services .section-title h3 {
  margin-bottom: 50px;
}
.featured-services .rounded-box {
  background-color: #3bd381;
  padding: 16px;
  padding-top: 23px;
  padding-bottom: 23px;
  color: white;
  margin-bottom: 50px;
  border-radius: 36px;
}
.featured-services .broken-text {
  position: relative;
  left: -16px;
}
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #015dd8;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  background-color: #015dd8;
  font-size: 30px;
  padding: 10px;
  border-radius: 20px;
  line-height: 1;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

.featured-services .title a {
  color: #16133e;
}

.featured-services .icon-box:hover .title a {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
  # features
  --------------------------------------------------------------*/
.features h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.feature_desc_box {
  margin-top: 2%;
}

.features p {
  line-height: 19px;
  font-size: 18px;
  color: #767e84;
  margin: 15px 0 0 0;
}

.feature_linear_color {
  padding-top: 90px;
  background-image: linear-gradient(to bottom, #f7f9fa, #ffffff);
}
.feature_parent {
  padding-top: 90px;
}

.computer_section {
  padding-bottom: 200px;
  padding-top: 120px;
}

.computer {
  position: relative;
  top: 50%;
  left: 50%;
  width: 130%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  transition: all 0.3s ease;
}
.computer .inside_computer_image {
  position: relative;
  top: 31.5%;
  left: 50%;
  width: 55%;
  padding-top: 32%;
  transform: translate(-50%, -50%);
  background-size: cover;
  z-index: 15;
  transition: all 0.3s ease;
}

#feature1_img {
  background-image: url(../images/dashboard.png?6e339ff018bdd1fd0502f14dbdbd105f);
}

#feature2_img {
  background-image: url(../images/branches.png?8063599b93b2fc670436863a0f6f5ad5);
}
#feature3_img {
  background-image: url(../images/invoices.png?a00d7c3de06e1ffcf3125c1cc6dcd490);
}
#feature4_img {
  background-image: url(../images/commCenter.png?4af316635bec20432aed14a04cf4e516);
}
#feature5_img {
  background-image: url(../images/reports.png?5bdfac466fd0e85b5ab134c0af42871f);
}

.laptop_img {
  content: url(../images/screen.svg?18503491a35fbdc878b943f44d3656e1);
}

.computer img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 768px) {
  .computer.right {
    top: 150%;
  }
  .computer.right {
    top: 150%;
  }
  .computer_section .col-lg-5 {
    position: relative;
  }
  .computer img {
    width: 300px;
  }
}

/*--------------------------------------------------------------
  # How it Works
  --------------------------------------------------------------*/
.how_it_works h3 {
  margin: 0 0 15px 0;
  font-size: 32px;
  font-weight: 700;
}

.how_it_works p {
  line-height: 19px;
  font-size: 18px;
  color: #767e84;
  margin: 0 0 0 0;
}

.how_it_works .title {
  margin: 0 0 0 0;
  font-size: 22px;
  font-weight: 700;
}

.how_it_works .desc {
  line-height: 19px;
  font-size: 15px;
  color: #767e84;
  margin: 0 0 0 0;
}

.how_it_works_circle {
  background-color: #e6eaed;
  color: #16133e;
  font-size: 28px;
  font-weight: 700;

  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .how_it_works img {
    margin-top: 50px;
  }
}

/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ffffff;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon img {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #16133e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 27px;
  color: #767e84;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a {
  color: #015dd8;
}

.services .icon-box:hover .icon {
  border-color: #015dd8;
}

/*--------------------------------------------------------------
  # pricing
  --------------------------------------------------------------*/
.pricing .period_types {
  padding: 8px;
  background-color: #edf0f2;
  border-radius: 14px;
}
.period_types button {
  font-size: 16px;
  font-weight: bold;
  color: #16133e;
  padding: 10px;
}

.active_price_period_btn {
  background-color: white;
  border-radius: 12px;
}
.inactive_price_period_btn {
  background-color: #edf0f2;
  border-color: #edf0f2;
  border-radius: 12px;
}

.save_price p {
  color: #767e84;
  font-size: 15px;
}

.period_pricing_details {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0;
}
.period_pricing_details article {
  width: 100%;
  /*max-width: 1000px;*/
  /*margin: 0 auto;*/
  /*height: 1000px;*/
  position: relative;
}
.period_pricing_details ul {
  display: flex;
  top: 0px;
  z-index: 10;
  padding-bottom: 14px;
}
.period_pricing_details li {
  list-style: none;
  flex: 1;
}
.period_pricing_details li:last-child {
  border-right: 1px solid #ddd;
}
.period_pricing_details button {
  width: 100%;
  border: 1px solid #ddd;
  border-right: 0;
  border-top: 0;
  padding: 10px;
  background: #fff;
  font-size: 14px;
  font-weight: bold;
  height: 60px;
  color: #999;
}
.period_pricing_details li.active button {
  background: #f5f5f5;
  color: #000;
}

.period_pricing_details .gray_box {
  background-color: #f2f5f7;
  border: 1px solid #e5eaf4;
}

.period_pricing_details table {
  border-collapse: separate !important;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}
.period_pricing_details th {
  background: #f5f5f5;
  display: none;
}
.period_pricing_details td,
.period_pricing_details th {
  height: 53px;
}
.period_pricing_details td,
.period_pricing_details th {
  padding: 10px;
  empty-cells: show;
}
.period_pricing_details td,
.period_pricing_details th {
  text-align: left;
}
.period_pricing_details td + td,
.period_pricing_details th + th {
  text-align: center;
  display: none;
}
.period_pricing_details td.default {
  display: table-cell;
}

.period_pricing_details .pacakage_type_title {
  font-size: 14px;
}

.period_pricing_details .pacakage_type_desc {
  font-size: 20px;
}

.period_pricing_details .package_type_box {
  border-top: 1px solid #e5eaf4;
}
.period_pricing_details .txt-l {
  font-size: 28px;
  font-weight: bold;
}
.period_pricing_details .txt-top {
  position: relative;
  top: -9px;
  left: -2px;
}
.period_pricing_details .tick {
  font-size: 18px;
  color: #11c177;
}
.period_pricing_details .wrong_tick {
  font-size: 18px;
  color: #e5eaf4;
  font-weight: bold;
}
.period_pricing_details .hide {
  border: 0;
  background: none;
}

@media (min-width: 640px) {
  .period_pricing_details ul {
    display: none;
  }
  .period_pricing_details td,
  th {
    display: table-cell !important;
  }
  .period_pricing_details td,
  th {
    width: 60%;
  }
  .period_pricing_details td + td,
  .period_pricing_details th + th {
    width: auto;
  }
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 0 0;
  color: #444444;
  font-size: 14px;
}

.newsletter {
  margin: 20px;
  margin-bottom: 140px;
  margin-top: 0px;
  padding-top: 50px;
  padding-bottom: 30px;
  border-radius: 19px;
  background: #015dd8;
  text-align: center;
  color: white;
  font-size: 15px;
}

.newsletter h3 {
  margin: 0 0 15px 0;
  font-size: 30px;
  font-weight: 700;
}

.newsletter p {
  line-height: 19px;
  font-size: 16px;
  margin-bottom: 50px;
}

.newsletter form button,
.newsletter form a {
  border: 0;
  background: none;
  font-weight: bold;
  font-size: 13px;
  padding: 15px 22px;
  background: white;
  color: #015dd8;
  transition: 0.3s;
  border-radius: 15px;
}

.newsletter form button:hover {
  background: #e5eaf4;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #161429;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  padding-top: 18px;
  margin-bottom: 0;
  color: white;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  position: relative;
  padding-bottom: 4px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  margin-top: 50px;
}

#footer .footer-top .footer-links p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: white;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 2px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: white;
  font-size: 14px;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover,
#footer .footer-top .footer-links h4 a:hover {
  text-decoration: none;
  color: #035ed8;
}

#footer .footer-top .social-links {
  display: flex;
}

#footer .footer-top .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #efeef3;
  color: #0d0d0d;
  line-height: 1;
  margin-right: 6px;
  border-radius: 4px;
  text-align: center;
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #035ed8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top .footer-links h4 a {
  color: white;
}

#footer .copyright {
  text-align: center;
  color: #121212;
  font-weight: bold;
  font-size: 12px;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

.with-flag {
  display: flex;
  align-items: center;
}

.with-flag .input-group-append {
  margin-bottom: 10px;
  background-color: #f5f7f7;
  padding: 7px 0 9px 12px;
  border-radius: 10px;
}

.with-flag .input-group-append strong {
  font-size: 12px;
}

.start-free-trial {
  padding: 5px 40px;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  margin: 20px 0;
  background-color: #015dd8;
}

.feature-section-img1 {
  width: 100%;
  background-color: transparent;
  /*    border-radius: 10px;*/
}

.feature-section-img2 {
  width: 80%;
  position: absolute;
  left: 25%;
  top: 40%;
  background-color: transparent;

  /*    border-radius: 10px;*/
}

.alert {
  font-weight: 500;
  border-radius: 10px;
  border: none;
}

.alert-success {
  background: rgba(40, 199, 111, 0.2) !important;
  color: #28c76f !important;
}

.alert-danger {
  background: rgba(234, 84, 85, 0.2) !important;
  color: #ea5455 !important;
}

.downloadBox {
  background-color: black;
  border-radius: 12px;
  padding: 10px;
  font-size: 13px;
}

.customer-services {
  background-image: linear-gradient(to top, #f7f9fa, #ffffff);
}

.customer-services .icon-box {
  border: 1px solid #ffffff;
  padding-top: 40px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.customer-services .icon-box .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.customer-services .icon-box .icon img {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.customer-services .icon-box h4 {
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
}

.customer-services .icon-box h4 a {
  color: #16133e;
  transition: ease-in-out 0.3s;
}

.customer-services .icon-box p {
  line-height: 27px;
  color: #767e84;
  margin-bottom: 0;
}

.customer-services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.customer-services .icon-box:hover h4 a {
  color: #015dd8;
}

.customer-services .icon-box:hover .icon {
  border-color: #015dd8;
}

.navigation_box {
  background-color: #16133e;
  border-radius: 10px;
  width: 50px;
  height: 50px;
}

.left-rectangle {
  width: 0;
  height: 0;
  align-self: center;
  border-top: 8px solid transparent;
  border-right: 16px solid #fff;
  border-bottom: 8px solid transparent;
}

.right-rectangle {
  width: 0;
  height: 0;
  align-self: center;
  border-top: 8px solid transparent;
  border-left: 16px solid #fff;
  border-bottom: 8px solid transparent;
}

/*--------------------------------------------------------------
  # Mobile Section 
  --------------------------------------------------------------*/
.mobile-section {
  border-radius: 15px;
  padding-bottom: 10%;
  margin-top: 13%;
}

.mobile-section .title {
  color: #16133e;
  font-weight: bold;
}

.mobile-section .note {
  color: #015dd8;
  font-weight: bold;
}

.mobile-section .desc {
  line-height: 19px;
  font-size: 18px;
  color: #767e84;
}

/*--------------------------------------------------------------
  # for customer (why use deceta) 
  --------------------------------------------------------------*/
.why-use-deceta .car {
  background-color: #015dd8;
  border-radius: 50%;
}

.why-use-deceta .icon-box {
  border: 1px solid #e5eaf4;
  border-radius: 12px;
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 30px;
  padding-bottom: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.why-use-deceta .icon-box h4 {
  color: #16133e;
  font-weight: bold;
}

.why-use-deceta .icon-box p {
  color: #767e84;
  text-align: center;
}

.how-deceta-work {
  background-color: #161429;
}

.download-deceta {
  background-image: linear-gradient(to bottom, #f7f9fa, #ffffff);
}

.Phone {
  position: relative;
  margin: -13% auto;
  background-repeat: no-repeat;
  background-image: url(../images/forCustomer/mobile_frame.png);
  width: 187px;
  aspect-ratio: auto 187 / 406;
  height: 406px;
  background-size: 100%;
}
.Phone-screen {
  position: absolute;
  width: 89%;
  left: 11px;
  height: 90%;
  top: 10px;
  overflow: hidden;
}
