/*------------------------------------------------------------------
[Style Layout Sheet For "Ficient"]
*  Basic Common CSS for HTML Tags(like:- html, body, div, span, p, a, h1 and many others)
*  Fonts
1. Body
2. Preloader
3. Home Page
-------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
html {
  width: 100%;
  height: 100%;
}
a, a:hover {
  text-decoration: none;
  outline: 0;
}
img {
  max-width: 100%;
  -webkit-user-drag: none;
}
button:focus, input:focus, textarea:focus {
  outline: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  float: left;
  width: 100%;
  color: #838383;
  margin: 0;
  font-size: 18px;
}
.no-scroll{
  overflow: hidden;
}
@font-face {
  font-family: 'icomoon';
  src: url('../css/fonts/icomoon.eot?90hs88');
  src: url('../css/fonts/icomoon.eot?90hs88#iefix') format('embedded-opentype'),  url('../css/fonts/icomoon.ttf?90hs88') format('truetype'),  url('../css/fonts/icomoon.woff?90hs88') format('woff'),  url('../css/fonts/icomoon.svg?90hs88#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-tick:before {
  content: "\e906";
}
.icon-icon-minus:before {
  content: "\e903";
}
.icon-icon-plus:before {
  content: "\e904";
}
.icon-left-arrow:before {
  content: "\e901";
}
.icon-right-arrow:before {
  content: "\e902";
}
.icon-facebook:before {
  content: "\e900";
}
.icon-twitter:before {
  content: "\e905";
}

/**-------------------------
2. PreLoader CSS Starts
-------------------------**/

.no-js #loader {
  display: none;
}
.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}
.se-pre-con {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000;
}
.loader {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 25%;
  max-width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  perspective: 500px;
  background-color: #fff;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
.ball-clip-rotate-multiple {
  position: relative;
}
.ball-clip-rotate-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -30px;
  top: -36px;
  border: 2px solid #42b9f1;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  height: 60px;
  width: 60px;
  -webkit-animation: rotate 1s 0s ease-in-out infinite;
  animation: rotate 1s 0s ease-in-out infinite;
}
.ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: -18px;
  left: -12px;
  width: 26px;
  height: 26px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-color: #1f4579 transparent #1f4579 transparent;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

/**-------------------------
PreLoader CSS Ends
-------------------------**/

/**-------------------------
3. Home Page CSS Starts
-------------------------**/

.page-bg{
  background-image: url(../images/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.navigation-wrap {
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 99;
    padding: 20px 30px;
}
.header-fixed {
    border-bottom: 1px solid #ededed78;
}
.navbar-nav{
  align-items: center;
}
.navbar {
  padding: 0;
}
.navbar-brand img {
  width: 100%;
  max-width: 100%;
}
.navbar-brand {
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 210px;
  margin-right: 0;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}
.navbar-toggler:active, .navbar-toggler:focus {
  outline: none;
}
.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 18px;
  background-image: none;
  position: relative;
  border-bottom: 2px solid #1f4579;
  transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, .navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 2px;
  background-color: #1f4579;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}
.nav-item {
  position: relative;
  margin-left: 34px;
}
.nav-link {
  color: #838383 !important;
  transition: all 200ms linear;
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
  font-size: 17px;  
}
.nav-item:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  border-bottom: 4px solid #dbae5b;
  transition: all .2s ease-in-out;
}
.nav-item:hover::after, .nav-item.active:after {
  width: 100%;
}
.nav-btn .nav-link{
  background-color: #dbae5b;
  border: 2px solid #dbae5b;
  padding: 10px 22px !important;
  border-radius: 8px;
  color: #fff !important;
  font-size: 18px;
  display: inline-block;
  transition: 0.48s;
  line-height: 22px;
}
.nav-btn .nav-link:hover{
  background-color: #fff;
  color: #dbae5b !important;
}
.nav-item.nav-btn:after{
  display: none;
}
.banner-wrapper {
  padding: 150px 0 0px 0;
}
.banner-content {
 margin: 60px 0 20px 0;
}
.banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #1f4579;
}
.banner-content p {
  font-size: 20px;
  line-height: 30px;
  padding: 20px 0;
}
.get-btn {
  display: inline-block;
  margin: 15px 0;
}
.get-btn a {
  background-color: #dbae5b;
  border: 2px solid #dbae5b;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 22px;
  display: inline-block;
  color: #ffffff;
  transition: 0.48s;
}
.get-btn a:hover{
  background-color: #fff;
  color: #dbae5b;
}
.overpay-area {
  padding: 80px 0 30px 0;
}
.overpay-content h2, .result-content h2 {
  font-size: 46px;
  font-weight: 700;
  max-width: 50%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 58px;
  color: #1f4579;
}
.overpay-content h2 {
    max-width: 100%;
}
.overpay-list {
  padding: 30px 0 0 0;
}
.overpay-list-wrap {
  padding: 20px 0;
}
.overpay-list-wrap h4 {
  color: #4FB9C6;
  font-size: 22px;
  line-height: 30px;
  min-height: 60px;
}
.overpay-list-wrap p {
  font-size: 18px;
  padding: 20px 0;
  line-height: 26px;
}
.result-content h2{
  max-width: 100%;
}
.result-list {
  text-align: center;
  padding: 30px 0 0 0;
}
.result-list-wrap {
  padding: 20px 0;
}
.result-list-icon {
  max-width: 35%;
  width: 100%;
  margin: 0 auto;
}
.result-list-content h5 {
  color: #3e3e3e;
  font-size: 26px;
  font-weight: 600;
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
  padding: 20px 10px;
  line-height: 34px;
  min-height: 108px;
}
.result-list-content p{
  font-size: 18px;
  line-height: 26px;
}
.steps-wrapper{
  padding: 80px 0px 20px 0;
}
.steps-content h2, .saving-content h2{
  font-size: 46px;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
  line-height: 58px;
  color: #1f4579;
}
.steps-list {
  padding: 50px 0px;
}
.steps-list-wrap {
  padding: 30px 0;
}
.step-list-content {
  max-width: 80%;
  width: 100%;
}
.step-two .step-list-content {
  margin-left: 60px;
}
.step-list-content h3 {
  color: #4FB9C6;
  font-size: 30px;
  line-height: 30px;
  padding-bottom: 10px;
}
.step-list-content p {
  font-size: 20px;
  line-height: 30px;
}
.saving-wrapper {
  padding: 70px 0;
}
.saving-map-wrap {
  max-width: 80%;
  width: 100%;
  margin: 40px auto 60px auto;
  text-align: center;
}
.saving-map-wrap iframe{
  border: none;
}
.saving-slider {
  max-width: 85%;
  width: 100%;
  margin: 40px auto 30px;
}
.savingcarousel .carousel-cell {
  width: 100%;
  margin: 0 20px;
}
.saving-slide-content {
  display: flex;
  background-color: #e7f2f6;
  padding: 40px 100px;
  border-radius: 10px;
  width: 80%;
  margin: 0 auto;
}
.savingcarousel .flickity-button {
  color: #c2c8ca;
  font-size: 50px;
  top: 43%;
  background-color: transparent;
}
.savingcarousel .flickity-button:hover{
  color: #42b9f1;
}
.savingcarousel .flickity-prev-next-button.next {
  right: 30px;
}
.savingcarousel .flickity-prev-next-button.previous {
  left: 15px;
}
.savingcarousel .flickity-button-icon{
  display: none;
}
.savingcarousel .flickity-button.previous:before, .savingcarousel .flickity-button.previous:before {
  content: "\e901";
  display: block;
  font-family: 'icomoon' !important;
}
.savingcarousel .flickity-button.next:before, .savingcarousel .flickity-button.next:before {
 content: "\e902";
 display: block;
 font-family: 'icomoon' !important;
}
.quote-image, .quote-content{
  display: inline-block;
}
.quote-image {
  margin-right: 30px;
}
.quote-content h4{
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 30px;
}
.quote-content h6 {
  color: #1f4579;
  font-style: italic;
  font-size: 16px;
}
.case-study-wrap {
  margin: 0 auto;
  max-width: 70%;
  width: 100%;
  padding: 60px 0 0 0;
}
.case-study-wrap h3 {
  color: #42b9f1;
  font-size: 30px;
  line-height: 30px;
  padding-bottom: 16px;
}
.case-study-wrap p{
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}
.pile-wrapper {
  background-color: #1f4579;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.pile-content {
  max-width: 60%;
  width: 100%;
  margin: 0 auto;
}
.pile-content h3 {
  font-size: 52px;
  font-weight: 700;
  line-height: 60px;
}
.pile-content p {
    padding: 20px 0;
    font-size: 22px;
    line-height: 32px;
    color: #d3d3d3;
}
.pile-btn {
  display: inline-block;
}
.pile-btn a {
  background-color: #dbae5b;
  border: 2px solid #dbae5b;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 22px;
  display: inline-block;
  color: #ffffff;
  transition: 0.48s;
}
.pile-btn a:hover{
  background-color: #ffffff;
  color: #dbae5b;
}
footer {
  background-color: #2d2d2d;
  padding: 15px 0;
}
.footer-content p{
  color: #a7a7a7;
  font-size: 14px;
}
.social-icons ul{
  text-align: right;
}
.social-icons ul li {
  display: inline-block;
  margin-left: 10px;
}
.social-icons ul li a {
  color: #a7a7a7;
  transition: 0.48s;
  background-color: #2d2d2d;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-icons ul li a:hover{
  background-color: #a7a7a7;
  color: #2d2d2d;
}

/**-------------------------
Home Page CSS Ends
-------------------------**/

/**-------------------------
Contact Page CSS Starts
-------------------------**/

.contact-page{
  background-image: url(../images/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-wrapper {
  padding: 180px 0 80px 0;
}
.contact-wrapper {
  background-image: url(../images/contact-image.png);
  background-repeat: no-repeat;
  background-position: 100% 30%;
  background-size: 40% auto;
}
.contact-wrap-image{
  display: none;
}
.contact-form-wrap h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1f4579;
}
.contact-form-wrap h4 {
  font-size: 40px;
  font-weight: 700;  
  padding: 15px 0;
  color: #1f4579;
}
.contact-form-wrap p {
  font-size: 18px;
  line-height: 28px;
}
.contact-wrap {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}
.contact-form {
  padding: 10px 0;
}
.contact-field-wrap input, .contact-field-wrap textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px 18px;
  font-size: 18px;
  background-color: #f5f5f5;
  border: 2px solid whitesmoke;
  border-radius: 10px;
}
.contact-field-wrap input:focus, .contact-field-wrap textarea:focus{
  border: 2px solid #42b9f1;
}
.contact-field-wrap textarea{
  min-height: 300px;
}
.contact-field-wrap input::placeholder, .contact-field-wrap textarea::placeholder { 
  color: #838383;
}
.contact-field-wrap input:-ms-input-placeholder, .contact-field-wrap textarea:-ms-input-placeholder { 
  color: #838383;
}
.contact-field-wrap input::-ms-input-placeholder, .contact-field-wrap textarea::-ms-input-placeholder { 
  color: #838383;
}
.contact-field-wrap input::-webkit-outer-spin-button, .contact-field-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact-field-wrap input[type=number] {
  -moz-appearance: textfield;
}
.submit-btn {
  background-color: #dbae5b;
  border: 2px solid #dbae5b;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 20px;
  display: inline-block;
  color: #ffffff;
  transition: 0.48s;
  margin: 15px 0;
}
.submit-btn:hover {
  background-color: #fff;
  color: #dbae5b;
}

/**-------------------------
Contact Page CSS Ends
-------------------------**/

/**-------------------------
Resources Page CSS Starts
-------------------------**/

.faq-wrapper{
  padding: 180px 0 40px 0;
}
.faq-heading h2{
  font-size: 52px;
  font-weight: 700;
  color: #1f4579;
  text-align: center;
}
.faq-image-wrap, .faq-subtext{
  text-align: center;
}
.faq-subtext{
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}
.faq-subtext p {
  font-size: 18px;
  line-height: 28px;
  padding: 50px 0;
}
.faq-list-wrap {
  padding: 50px 0;
}
.faq-list-heading h3 {
  font-size: 40px;
  font-weight: 700;
  color: #1f4579;
}
.ac-icon { 
  position: absolute;
  right: 30px;
  color: #4FB9C6;
  font-weight: bold;
  font-size: 20px;
  margin-top: 8px;
}
.faq-list-wrap .accordion{
  padding:20px 0;
}
.faq-list-wrap .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 10px 0;
}
.faq-list-wrap .card {
  border-left: none;
  border-right: none;
  background-color: transparent;
  border-radius: 0;
}
.faq-list-wrap .card-body {
  padding: 0px 0 25px 0px;
}
.faq-title {
  background-color: transparent;
  border: none;
  padding: 10px 0;
  font-size: 26px;
  color: #838383;
  text-align: left;
  max-width: 94%;
  width: 100%;
  transition: 0.48s;
}
.faq-list-wrap .card-body p {
  font-size: 18px;
  line-height: 30px;
  border-left: 4px solid #4FB9C6;
  padding-left: 20px;
}
.faq-title[aria-expanded="true"], .faq-title:hover {
  color: #4FB9C6;
}
.faq-list-wrap .card-body p a{
  color: #4FB9C6;
  text-decoration: underline;
  transition: 0.48s;
}
.faq-list-wrap .card-body p a:hover{
  color: #1f4579;
}

/**-------------------------
Resources Page CSS Ends
-------------------------**/

/**-------------------------
Features Page CSS Starts
-------------------------**/

.features-wrapper {
  padding: 180px 0 60px 0;
}
.features-image-wrap {
  padding-top: 70px;
}
.features-content{
  padding-top: 20px;
}
.features-content h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1f4579;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.features-content h2 span.icon-tick {
  background-color: #dbae5b;
  color: #fff;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  font-weight: bold;
  margin-left: 20px;
}
.feature-list-wrapper{
  padding: 10px 0;
}
.feature-list-wrap {
  padding: 60px 0;
}
.feature-info {
  max-width: 94%;
  width: 100%;
}
.right-list .feature-info {
  margin: 0 0 0 auto;
}
.feature-list, .action-wrap, .why-list {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
.feature-info h3 {
  color: #1f4579;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
}
.feature-info h5 {
  color: #4FB9C6;
  padding: 14px 0 14px 0;
  font-size: 32px;
  line-height: 34px;
}
.feature-info p{
  font-size: 18px;
  line-height: 28px;
  padding: 4px 0;
}
.feature-info ul {
  margin-left: 20px;
  margin-top: 10px;
}
.feature-info li {
  list-style: disc;
  padding: 6px 4px;
}
.feature-pile .pile-content {
  max-width: 62%;
}
.feature-pile .pile-content h3 {
  margin-bottom: 30px;
}
.action-wrapper {
  padding: 60px 0 80px 0;
  overflow: hidden;
}
.action-content h3 {
    color: #1f4579;
    font-size: 44px;
    line-height: 52px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 700;
}
.action-content .action-subtext{
  padding: 0 20px;
}
.blue-wrap {
  background-color: #1f4579;
  margin: 24px 0px;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
}
.purple-wrap {
  background-color: #dbae5b;
  margin: 24px 0px;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
}
.blue-wrap h6, .purple-wrap h6{
  font-weight: 600;
  font-size: 22px;
}
.action-count-wrap {
  position: absolute;
  right: -260px;
  width: 140%;
}
.count-list {
  background-color: #69d9d5;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
  color: #fff;
  padding: 20px 30px 20px 80px;
  border-radius: 16px;
}
.count-list h2 {
  line-height: 56px;
  font-weight: 700;
  font-size: 50px;
}
.count-list p {
  text-transform: uppercase;
  font-size: 18px;
}

/**-------------------------
Features Page CSS Ends
-------------------------**/

/**-------------------------
How it Works Page CSS Starts
-------------------------**/

.work-wrapper {
  padding: 180px 0 60px 0;
}
.work-content h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1f4579;
  padding-top: 100px;
}
.how-list-wrapper {
  padding: 90px 0;
}
.how-info {
  display: flex;
}
.how-count {
  margin-right: 30px;
}
.how-count h2 {
  font-size: 160px;
  font-weight: 700;
  color: #1f4579;
}
.how-info-content {
  padding-top: 12px;
}
.how-info-content h2{
  font-size: 40px;
  font-weight: 700;
  color: #1f4579;
  padding-top: 14px;
  padding-bottom: 10px;
}
.how-info-content p {
  font-size: 18px;
  line-height: 28px;
  padding: 4px 0;
}
.how-info-content ul {
  margin-left: 20px;
}
.how-info-content li {
  list-style: disc;
  padding: 4px 4px;
}
.how-connect-image {
  max-width: 50%;
  width: 100%;
  margin: 0 auto;
}
.list-connect-1 .how-connect-image img {
  margin-left: -100px;
}
.list-connect-2 .how-connect-image img{
 margin-top: -200px;
 margin-left: 224px;
 position: relative;
 z-index: -1;
}
.info-2 {
  position: relative;
  top: -80px;
}
.info-2-image{
  margin-top: 20px;
}

/**-------------------------
How it Works Page CSS Ends
-------------------------**/

/**-------------------------
Why Ficient Page CSS Starts
-------------------------**/

.why-wrapper{
  padding: 180px 0 60px 0;
}
.why-content h2{
  font-size: 52px;
  font-weight: 700;
  color: #1f4579;
}
.why-content h4 {
  color: #4FB9C6;
  padding: 15px 0;
  font-size: 28px;
}
.why-content p {
  font-size: 18px;
  line-height: 28px;
}
.why-list-wrap {
  padding: 60px 0;
}
.why-list-image {
  max-width: 50%;
  width: 100%;
  margin: 0 auto;
}
.why-list-info h3{
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: #1f4579;
  padding-bottom: 10px;
}
.why-list-info .highlight-txt {
  font-size: 24px;
  line-height: 30px;
  padding: 10px 0;
}
.blue-txt {
  color: #dbae5b;
  font-weight: 600;
}
.why-list-info p{
  font-size: 18px;
  line-height: 28px;
  padding: 6px 0;
}
.why-list-info ul {
  margin-left: 20px;
}
.why-list-info li {
  list-style: disc;
  padding: 4px 4px;
}

/**-------------------------
Why Ficient Page CSS Ends
-------------------------**/
