/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #0269b2;
  text-decoration: none;
}

a:hover {
  color: #021a32;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}
p {
    margin: 0 0 15px 0;
    font-family: 'Roboto', sans-serif;
}
img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
  vertical-align: middle;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0269b2;
  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: #021a32;
  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: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
  position: relative;
}
#header.header-scrolled {
  /*padding: 12px 0;*/
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  position: fixed;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #021a32;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
#header .logo a span {
  color: #0269b2;
}
#header .logo img {
  max-height: 60px;
}
/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 25px;
  background: #0269b2;
  color: #fff;
  border-radius: 25px;
  padding: 13px 30px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
.get-started-btn:hover {
  background: #e35052;
  color: #fff;
}
@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}
.call-btn {
    margin-left: 30px;
    background: transparent;
    color: #1a1a1a;
    border-radius: 0;
    padding: 0;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 35px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  transition: 0.3s;
  /*text-transform: uppercase;*/
  line-height: 25px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #0269b2;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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-size: 14px;
}
.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: #0269b2;
}
.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: #021a32;
  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(0, 0, 0, 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: #021a32;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #0269b2;
}
.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: #0269b2;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

section{
    padding: 50px 0;
    position: relative;
}
.nx-featured-slider{
    z-index: 1;
    background: url("../img/hero-bg.jpg") top center no-repeat;
    position: relative;
    background-color: #fff;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 30px;
    height: 90vh;
    overflow: hidden;
}
.nx-featured-slider:after{
  position: absolute;
  content: "";
  display: block;
  background-color: #0269b2;
}
.main-slider-wrapper.home-slider .slick-list{
    padding: 115px 0 60px;
}
.nx-featured-slider:after {
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0.9;
}
.home-banner-content-wrapper {
    position: relative;
    z-index: 3;
    height: 90vh;
}
.banner-content-block {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 65%;
    margin: 0 auto;
    text-align: center;
}
.banner-content-block .spec{
    margin-bottom: 10px;
}
.banner-content-block .banner-title {
    text-transform: none;
    font-weight: 700;
    line-height: 1.2;
    font-size: 70px;
    color: #fff;
    text-transform: uppercase;
}
.banner-content-block .hero-content p{
  margin-bottom: 30px;
  color: #fff;
  font-size: 18px;
}

/*--------------------------------------------------------------
#  About wrapper style
--------------------------------------------------------------*/
.section-title {
    color: #0269b2;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
    padding-left: 10px;
}
.section-title:after{
    content: "";
    height: 100%;
    width: 3px;
    display: block;
    left: 0;
    background-color: #0269b2;
    position: absolute;
    top: 0;
}
.section-subtitle {
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
    font-size: 32px;
    text-transform: capitalize;
    color: #021a32;
}
.centu-abt-wrapper .section-content{
    padding-right: 70px;
}
.section-content .logo img{
  height: 110px;
  margin-bottom: 15px;
}
.about-font-img {
    padding: 200px;
    background: #1e90ff;
    background-size: cover;
    background-position: top center;
    border-radius: 4px;
}
.signature{
  position:relative;
  padding-top:20px;
}
.signature .signature-img{
  position:absolute;
  left:0px;
  top:0px;
}
.signature h5{
  position:relative;
  color: #0269b2;
  font-weight:600;
  text-transform:capitalize;
  font-size: 18px;
}
.signature .designation{
  position:relative;
  color: #1a1a1a;
  font-size:14px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.section-bg {
  padding: 120px 0;
  color: #fff;
}
.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  /*transform: skewY(-3deg);*/
}

/*** Service ***/
.service-item {
    background: #ffffff;
    transition: .5s;
    /*box-shadow: 0px 0px 38px rgb(0 0 0 / 10%);*/
    border: 1px solid #DEE2E6;
    border-radius: 6px;
}
.service-item img{
  margin-bottom: 15px;
  /*height: 70px;*/
  width: 70px;
}
.service-item:hover {
    margin-top: -10px;
    /*background: #0269b2;*/
}
.service-item * {
    transition: .5s;
}
.service-item:hover * {
    /*color: #ffffff !important;*/
}

/*--------------------------------------------------------------
# cta wrapper style
--------------------------------------------------------------*/

.centu-cta-wrapper h3{
    font-size: 30px;
    font-weight: 700;
}
.ct-shadow {
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
.btn {
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    text-align: center;
    background-color: #0269b2;
    border: 1px solid #0269b2;
    color: #fff;
    border-radius: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.btn:hover,
.btn:focus {
  background-color: #e35052;
  border-color: #e35052;
  color: #fff;
}
.banner-btn{
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #1a1a1a;
  padding: 13px 40px;
}
.banner-btn:hover{
  background-color: #021a32;
  border-color: #021a32;
}
.solution-item {
    margin: 20px 0;
    padding: 60px 20px;
    border-radius: 6px;
    background-color: #0269b2;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 265px;
    cursor: pointer;
}
.solution-item:hover {
    -webkit-box-shadow: 0px 0px 24px 5px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 24px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 24px 5px rgb(0 0 0 / 10%);
    margin-top: 16px;
}
.solution-item .icon_container {
    height: 80px;
}
.icon_container {
    width: auto;
    margin-bottom: 25px;
}
.icon_container img {
    height: 80px;
    width: 80px;
}

.solution-item-body h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
/*.solution-item-body h4 a {
    color: var(--heading-color);
}
.solution-item-body h4 a:hover{
    color: var(--secondary-color);
}*/


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-list-slick .slick-dots,
.centu-job-list-wrapper .slick-dots{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.testimonial-list-slick .slick-dots li,
.centu-job-list-wrapper .slick-dots li{
    display: inline-block;
    width: 15px;
    height: 15px;
    border: none;
    outline: none;
    padding: 0px;
    margin: 0px;
    border-radius: 50%;
    content: '';
    background: #e8e8e8;
    margin-right: 20px;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.testimonial-list-slick .slick-dots li:hover,
.centu-job-list-wrapper .slick-dots li:hover{
    background: #0269b2;
}
.testimonial-list-slick .slick-dots li.slick-active,
.centu-job-list-wrapper .slick-dots li.slick-active{
    background: #0269b2;
}
.testimonial-list-slick .slick-dots li:last-child,
.centu-job-list-wrapper .slick-dots li:last-child{
    margin-right: 0px;
}
.testimonial-list-slick .slick-dots li button,
.centu-job-list-wrapper .slick-dots li button{
    display: none;
}

.testimonial-list-slick{
    margin: 0 -13px;
}
.testi-items{
    margin: 20px 13px;
}
.testimony-item-wrap {
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(0, 0, 0, 0.8);
}
.testimony-item-wrap .user-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    position: relative;
    margin-left: 30px;
    margin-bottom: 25px;
}
.testimony-item-wrap .user-img img{
    border-radius: 50%;
}
.testimony-item-wrap .user-img .text-quote {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.testimony-item-wrap .side-line {
    position: relative;
    border-left: 1px solid #e6e6e6;
    padding-left: 20px;
    /*font-size: 15px;*/
}
.testimony-item-wrap .side-line:after {
    position: absolute;
    top: 50%;
    left: -2px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '';
    width: 3px;
    height: 30px;
    background: #0269b2;
}
.testi-designation{
    padding-left: 20px;
    margin-top: 10px;
}
.testimony-item-wrap .u-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    color: #0269b2;
}
.testimony-item-wrap .u-position {
    font-size: 14px;
    margin-bottom: 5px;
}
.testimony-item-wrap .u-company {
    font-size: 13px;
    color: #a7aaac;
}

.ace-address-wrapper{
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
section#contact {
    background: #0269b2;
    padding: 110px 0px;
    vertical-align: middle;
    background: url("../img/parallax.jpg"); 
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.ace-contact-area:after {
    content: "";
    background-color: rgb(2 105 178);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}
.contact-right-content,
.contact-left-content {
    position: relative;
    z-index: 2;
    display: block;
}
.contact-right-content{
  margin: 0 auto;
}
.contact-form-content-wrapper{
/*  z-index: 2;
  position: relative;
  display: block;*/
}
.ace-contact-area .contact-form-content-wrapper {
  background-color: #f5f5f5;
  padding: 50px 30px;
  border-radius: 4px;
}
.ace-contact-area .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.ace-contact-area .php-email-form .error-message br + br {
  margin-top: 25px;
}
.ace-contact-area .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.ace-contact-area .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.ace-contact-area .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.ace-contact-area .php-email-form .form-group {
  margin-bottom: 25px;
}
.ace-contact-area .php-email-form input, .ace-contact-area .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.ace-contact-area .php-email-form input:focus, .ace-contact-area .php-email-form textarea:focus {
  border-color: #021a32;
}
.ace-contact-area .php-email-form input {
  padding: 10px 15px;
}
.ace-contact-area .php-email-form textarea {
  padding: 12px 15px;
}
.ace-contact-area .php-email-form button[type=submit] {
  background: #0269b2;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  text-transform: uppercase;
}
.ace-contact-area .php-email-form button[type=submit]:hover {
  background: #e35052;
}

.contact-left-content .section-title:after{
  background-color: #ffffff;
}
.contact-left-content .section-title{
  color: #ffffff;
}
.contact-left-content .section-subtitle{
  color: #ffffff;
}
.call-item{
  /*background-color: #0269b2;*/
  /*padding: 10px 20px;*/
  /*border-radius: 4px;*/
  /*display: inline-block;*/
}
.call-item h4{
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}
.call-item p{
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 15px;
}
.call-item a{
  color: #ffffff;
}
.cta-btn i{
  margin-right: 10px;
  font-size: 23px;
}
.cta-btn .btn{
  border-radius: 25px;
  padding: 12px 40px;
}
.contact-form-content-wrapper .section-subtitle{
  font-size: 22px;
  /*font-weight: */
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer{
  width: 100%;
  /*padding-top: 80px;*/
  background: #1a1a1a;
}
.centu-address-wrapper{
  padding-bottom: 5px;
  border-bottom: solid 1px #f8f9fa30;
}

.footer_content {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #f8f9fa30;
}

/*********************************
15.3 Footer Copyright
*********************************/

.site-info{
  padding-top: 19px;
  padding-bottom: 19px;
}
.footer_social ul li{
  display: inline-block;
  margin-right: 7px;
}
.footer_social ul li a i{
  color: #FFFFFF;
}
.footer_social ul li a i:hover{
  color: #0269b2;
}
.footer_social ul li:last-child{
  margin-right: 0px;
}
.footer_copyright span {
    color: #fff;
    font-size: 12px;
}
.footer_copyright span a{
    color: #fff;
}
.footer_copyright span a:hover{
    color: #e35052;
}
.address-block-border {
    padding: 0 10px;
    border-right: 1px solid #dddddd;
}
.address-block-border:last-child{
    border:none;
}
.address-block{
    padding: 30px 20px;
    display: flex;
    margin: 20px 0;
    /*align-items: center;*/
}
.contact_details .address-block .add-icon-wrap {
    padding-right: 15px;
}
.contact_details .address-block .add-icon-wrap i {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    /*background: #f3f6fa;*/
    color: #0269b2;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 48px;
}
.contact_details .address-block .address-block-body p {
    font-size: 15px;
    line-height: 26px;
    color: #1a1a1a;
    margin-bottom: 0;
}
.address-block-body a{
    color: #1a1a1a;
    font-size: 15px;
}
.contact_details .address-block .address-block-body h4{
    color: #1a1a1a;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}


.footer_social .social_menu {
    text-align: right;
    margin-bottom: 0;
}

@media screen and (min-width: 1900px) {
  .nx-featured-slider{
      height: 90vh;
  }
  .banner-content-block{
    width: 70%;
  }
}
@media (min-width: 992px) {
  .col-md-1-5 { width: 20%; }
  .col-md-2-5 { width: 40%; }
  .col-md-3-5 { width: 60%; }
  .col-md-4-5 { width: 80%; }
  .col-md-5-5 { width: 100%; }
}

@media (min-width: 1200px) {
  .col-lg-1-5 { width: 20%; }
  .col-lg-2-5 { width: 40%; }
  .col-lg-3-5 { width: 60%; }
  .col-lg-4-5 { width: 80%; }
  .col-lg-5-5 { width: 100%; }
}

@media screen and (min-width: 1900px) {
  .banner-content-block .banner-title {
      font-size: 82px;
  }
  .banner-content-block .hero-content p {
      font-size: 22px;
  }
  .solution-item{
    min-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .banner-content-block .banner-title{
    font-size: 32px;
  }
  .call-btn{
    margin-right: 15px;
  }
  .get-started-btn{
    display: none;
  }
  .nx-featured-slider,
  .home-banner-content-wrapper{
    height: 70vh;
  }
  .banner-content-block{
    top: 45%;
  }
  .banner-content-block{
    /*left: 100px;*/
    width: 100%;
  }
  .signature{
    margin-bottom: 20px;
  }
  .about-font-img{
    padding: 180px;
  }
  .solution-item{
    margin: 10px 0;
  }
  .contact-left-content{
    margin-bottom: 20px;
  }
  .ace-contact-area .contact-form-content-wrapper{
    padding: 30px 12px;
  }
  .address-block{
    border-bottom: 1px solid #ddd;
    margin: 8px 0;
    padding: 10px;
  }
  .solution-item:hover{
    margin: 10px 0;
  }
  .section-title{
    font-size: 16px;
  }
  .section-subtitle{
    font-size: 22px;
  }

}