/*--------------------------------------------------------------
# Custom Font  Ingeborg
--------------------------------------------------------------*/

@font-face {
  font-family: 'Ingeborg';
  src: url('https://gallantcs.com/assets/form_vendor/mdi-font/fonts/Ingeborg-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}


body {
  font-family: 'Montserrat', sans-serif;
  color: #000;
}
body section#shadow-host-companion{
  padding: 0 !important;
}

a {
  text-decoration: none;
}

a:hover {
  color: #f4f4f4;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Ingeborg';
  color: #771B13;

}

img {
  width: 100%;
}

@media(max-width:767px){
  body .container {
    padding: 0px 35px;
}
}

/*--------------------------------------------------------------
# scroll bar
--------------------------------------------------------------*/

/*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: #771B13;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}*/


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn-get-started {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  color: #fff;
  background: #CD2E21;
}

.btn-get-started:hover {
  background: #771B13;
  color: #fff;
}

/*--------------------------------------------------------------
# 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 #771B13;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@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: #1a98d3;
  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;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #106eea;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
}

#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 .container {
  justify-content: space-between;
}


#header .logo a {
  color: #222222;
}

#header .logo img {
  max-height: 40px;
  object-fit: contain;
}

.scrolled-offset {
  margin-top: 70px;
}

@media (max-width:767px) {
  #header .container {
    justify-content: center;
  }
  
}

/*--------------------------------------------------------------
# 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,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #1a98d3;
  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 .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #1a98d3;
}

.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;
}

#header .btn-get-started {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  color: #fff;
  background: #cd2e21;
  border-radius: 50px;
}

#header .btn-get-started:hover{
  background-color: #771b13;
}

#header .btn-login {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  color: #000;
  background: transparent;
  border: 2px solid #1a98d3;
}

.navbar>ul>li>a.btn-login:before,
.navbar>ul>li>a.btn-get-started:before {
  background-color: transparent;
}

@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;
  }
}

.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,
.navbar-mobile a:focus {
  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: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    background: url(../images/Hero-bg.png) 50% 30%;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    background-color: rgb(230 229 229 / 20%);
}

@media(min-width:992px){
  #hero{
    height:700px;
  }
}

#hero .start-btn {
  display:none;
  justify-content: center;
}

#hero .container {
  position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
    color: #771B13;
    text-transform: initial;
    letter-spacing: 2px;
    word-spacing: 4px;
}

#hero h2 {
    color: #000000;
    margin: 5px 0 30px 0;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-transform: initial;
    word-spacing: 0px;
    letter-spacing: 1px;
    padding: 20px 38px;
    line-height: 30px;
}

#hero .btn-get-started {
  border: 1px solid #fff;
  display: none;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

#hero .hero-inner-section {
  width: 700px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
    background-size: contain;
  }

  #hero .hero-inner-section {
    width: 100%;
  }

  #hero h1 {
    font-size: 40px;
    line-height: 50px;
    padding: 0px 0px;
  }

  #hero h2 {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
    padding: 20px 0px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
    border-radius: 50px;
  }
  #hero .btn-get-started {
    display:block;
    justify-content: center;

  }
  #hero .container{
    padding:0px 35px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fff;
}

.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: #e7f1fd;
  color: #106eea;
  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: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

.section-bg p {
    font-size: 15px;
    line-height: 30px;
}

@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 .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  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: #106eea;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.icon img {
  width: 70%;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

#services .affiliate-btn {
  justify-content: center;
  margin-top: 50px;
}

/*--------------------------------------------------------------
# Bookkeeping
--------------------------------------------------------------*/

section#Bookkeeping {
  padding-bottom: 0px;
  padding-top: 0px;
}

@media(min-width:992px){

section#Bookkeeping .row {
  height: 700px;
}
}

section#Bookkeeping .Bookkeeping-column {
  align-content: center;
  align-items: center;
  justify-content: center;
}

section#Bookkeeping .Consulting-image {
  width: 60%;
}

.Bookkeeping .content h3 {
  font-weight: 800;
  font-size: 55px;
}

.Bookkeeping .content ul {
  list-style: none;
  padding: 0;
}

.Bookkeeping .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.Bookkeeping .content ul li:first-child {
  margin-top: 35px;
}

.Bookkeeping .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.Bookkeeping .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.Bookkeeping .content ul p {
  font-size: 15px;
}

.Bookkeeping .content p:last-child {
  margin-bottom: 0;
}

@media(max-width:767px){
  section#Bookkeeping .Consulting-image{
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Management Accounting
--------------------------------------------------------------*/

section#Management-accounting {
  padding-bottom: 0px;
  padding-top: 0px;
  background-color: rgb(230 229 229 / 50%);
}

@media(min-width:992px){
section#Management-accounting .row {
  height: 700px;
}
}

section#Management-accounting .Management-accounting-column {
  align-content: center;
  align-items: center;
  justify-content: center;
}

section#Management-accounting .Consulting-image {
  width: 60%;
}

.Management-accounting .content h3 {
  font-weight: 800;
  font-size: 55px;
}

.Management-accounting .content ul {
  list-style: none;
  padding: 0;
}

.Management-accounting .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.Management-accounting .content ul li:first-child {
  margin-top: 35px;
}

.Management-accounting .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.Management-accounting .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.Management-accounting .content ul p {
  font-size: 15px;
}

.Management-accounting .content p:last-child {
  margin-bottom: 0;
}

@media(max-width:767px){
  section#Management-accounting .Consulting-image {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Financial Statements Preparation
--------------------------------------------------------------*/

section#Financial-statements-preparation {
  padding-bottom: 0px;
  padding-top: 0px;
}

@media(min-width:992px){

section#Financial-statements-preparation .row {
  height: 700px;
}
}

section#Financial-statements-preparation .Financial-statements-preparation-column {
  align-content: center;
  align-items: center;
  justify-content: center;
}

section#Financial-statements-preparation .Consulting-image {
  width: 60%;
}

.Financial-statements-preparation .content h3 {
  font-weight: 800;
  font-size: 55px;
}

.Financial-statements-preparation .content ul {
  list-style: none;
  padding: 0;
}

.Financial-statements-preparation .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.Financial-statements-preparation .content ul li:first-child {
  margin-top: 35px;
}

.Financial-statements-preparation .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.Financial-statements-preparation .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.Financial-statements-preparation .content ul p {
  font-size: 15px;
}

.Financial-statements-preparation .content p:last-child {
  margin-bottom: 0;
}

@media(max-width:767px){
  section#Financial-statements-preparation .Consulting-image {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Tax Preparation & Compliance
--------------------------------------------------------------*/

section#Tax-preparation-compliance {
  padding-bottom: 0px;
  padding-top: 0px;
  background-color: rgb(230 229 229 / 50%);
}

@media(min-width:992px){
section#Tax-preparation-compliance .row {
  height: 700px;
}
}

section#Tax-preparation-compliance .Tax-preparation-compliance-column {
  align-content: center;
  align-items: center;
  justify-content: center;
}

section#Tax-preparation-compliance .Consulting-image {
  width: 60%;
}

.Tax-preparation-compliance .content h3 {
  font-weight: 800;
  font-size: 55px;
}

.Tax-preparation-compliance .content ul {
  list-style: none;
  padding: 0;
}

.Tax-preparation-compliance .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.Tax-preparation-compliance .content ul li:first-child {
  margin-top: 35px;
}

.Tax-preparation-compliance .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.Tax-preparation-compliance .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.Tax-preparation-compliance .content ul p {
  font-size: 15px;
}

.Tax-preparation-compliance .content p:last-child {
  margin-bottom: 0;
}

@media(max-width:767px){
  section#Tax-preparation-compliance .Consulting-image {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# On-Demand
--------------------------------------------------------------*/

section#On-Demand {
  padding-bottom: 0px;
  padding-top: 0px;
}

@media(min-width:992px){
section#On-Demand .row {
  height: 700px;
}
}

section#On-Demand .On-Demand-column {
  align-content: center;
  align-items: center;
  justify-content: center;
}

section#On-Demand .Consulting-image {
  width: 60%;
}

.On-Demand .content h3 {
  font-weight: 800;
  font-size: 55px;
}

.On-Demand .content ul {
  list-style: none;
  padding: 0;
}

.On-Demand .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.On-Demand .content ul li:first-child {
  margin-top: 35px;
}

.On-Demand .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.On-Demand .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.On-Demand .content ul p {
  font-size: 15px;
}

.On-Demand .content p:last-child {
  margin-bottom: 0;
}

@media(max-width:767px){
  section#On-Demand .Consulting-image {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Business Advisory
--------------------------------------------------------------*/

section#Business-advisory {
  padding-bottom: 0px;
  padding-top: 0px;
  background-color: rgb(230 229 229 / 50%);
}

@media(min-width:992px){
section#Business-advisory .row {
  height: 700px;
}
}

section#Business-advisory .Business-advisory-column {
  align-content: center;
  align-items: center;
  justify-content: center;
}

section#Business-advisory .Consulting-image {
  width: 60%;
}

.Business-advisory .content h3 {
  font-weight: 800;
  font-size: 55px;
}

.Business-advisory .content ul {
  list-style: none;
  padding: 0;
}

.Business-advisory .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.Business-advisory .content ul li:first-child {
  margin-top: 35px;
}

.Business-advisory .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.Business-advisory .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.Business-advisory .content ul p {
  font-size: 15px;
}

.Business-advisory .content p:last-child {
  margin-bottom: 0;
}

@media(max-width:767px){
  section#Business-advisory .Consulting-image {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Corporate Venture Launchpad
--------------------------------------------------------------*/

section#Corporate-venture-launchpad {
  padding-bottom: 0px;
  padding-top: 0px;
}

@media(min-width:992px){
section#Corporate-venture-launchpad .row {
  height: 700px;
}
}

section#Corporate-venture-launchpad .Corporate-venture-launchpad-column {
  align-content: center;
  align-items: center;
  justify-content: center;
}

section#Corporate-venture-launchpad .Consulting-image {
  width: 60%;
}

.Corporate-venture-launchpad .content h3 {
  font-weight: 800;
  font-size: 55px;
}

.Corporate-venture-launchpad .content ul {
  list-style: none;
  padding: 0;
}

.Corporate-venture-launchpad .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.Corporate-venture-launchpad .content ul li:first-child {
  margin-top: 35px;
}

.Corporate-venture-launchpad .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.Corporate-venture-launchpad .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.Corporate-venture-launchpad .content ul p {
  font-size: 15px;
}

.Corporate-venture-launchpad .content p:last-child {
  margin-bottom: 0;
}

@media(max-width:767px){
  section#Corporate-venture-launchpad .Consulting-image {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

@media(max-width:767px){
  section#Bookkeeping .Bookkeeping-column,
  section#Management-accounting .Management-accounting-column,
  section#Financial-statements-preparation .Financial-statements-preparation-column,
  section#Tax-preparation-compliance .Tax-preparation-compliance-column,
  section#On-Demand .On-Demand-column,
  section#Business-advisory .Business-advisory-column,
  section#Corporate-venture-launchpad .Corporate-venture-launchpad-column {
    padding: 0px 0px !important;
  }

  section#Bookkeeping,
  section#Management-accounting,
  section#Financial-statements-preparation,
  section#Tax-preparation-compliance,
  section#On-Demand,
  section#Business-advisory,
  section#Corporate-venture-launchpad {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .content h3 {
    font-size: 40px !important;
    margin-bottom: 20px;
}

.Consulting-image {
    padding-top: 40px;
}

}

section#services{
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: rgb(230 229 229 / 50%);
}

@media(min-width:992px){
section#services .row {
  height: 1030px;
  align-content: center;
}
}

section#services .section-title h3 {
  margin: 15px 0 0 0;
  font-size: 55px;
  font-weight: 800;
}

section#services .section-title p {
    margin: 10px auto 0 auto;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
}

.services .icon-box {
  text-align: center;
  padding: 10px 10px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 15px;
}

.services .icon-box h4 {
  color: #000;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 13px;
  margin-bottom: 0;
}

.second-discription p {
  width: 80%;
  margin-top: 50px !important;
}

@media(max-width:767px){

  .section-bg:nth-child(odd) .row {
    flex-direction: column-reverse;
  }

  section#services .section-title h3 {
    margin: 15px 0 20px 0;
    font-size: 40px;
  }

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer h1.logo img {
    max-height: 40px;
    object-fit: contain;
    object-position: left center;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #771B13;
}

#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;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#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: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fbfbfb;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fbfbfb;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #fff;
  color: #fbfbfb;
  text-decoration: none;
}

#footer .copyright {
  text-align: left;
}

.copyright-container {
  padding-bottom: 0 !important
}

.footer-btn {
  margin-top: 50px;
  margin-left: 6px;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 0;
    font-size: 11px;
  }

  #footer .footer-top .footer-links ul li:first-child {
      padding-top: 0;
      font-size: 11px;
      font-weight: 500;
      text-align: center;
      padding-bottom: 0;
  }

  footer#footer .container {
      padding: 0px 0px;
      width: 200px;
  }

  .copyright-container {
    display: none;
}

#footer .footer-top .footer-contact {
    margin-bottom: 0px;
}

#footer .footer-top .col-lg-3.col-md-6.footer-links.mobile-copyright {
    margin-bottom: 0;
}

#footer .footer-top .col-lg-3.col-md-6.footer-links.mobile-copyright .copyright-container{
  display: block !important;
}

#footer h1.logo img {
    object-position: center center;
}

}


