/*************************************

Template Name: Sunlite Mortgage Template
Author: Jonayed Islam
Author Url: http://jonayed.com
Version: 1.0
Design and Developed by: Bongosoft Ltd.

****************************************/
/*================================================
            Table of contents
==================================================

1. GOOGLE FONTS
2. GENERAL CSS
3. BACK TO TOP
4. PRELOADER
5. HEADER SECTION STYLE
6. BANNER SECTION
7. SLIDER SECTION
8. VIDEO BACKGROUND SECTION
9. SERVICES SECTION
10. WORK SECTION
11. TESTIMONIALS SECTION
12. TEAM SECTION
13. COUNTER SECTION
14. GALLERY SECTION
15. BLOG SECTION
16. CONTACT SECTION
17. FOOTER SECTION


/*================================================
   1.  GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif; */

/*================================================
   2. GENERAL CSS
==================================================*/
body {
  font-family: poppins, sans-serif;
  color: #777;
  background-color: #fff;
  font-size: 16px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  line-height: 1.3;
  font-family: montserrat, sans-serif;
  color: #0d1820;
}
p {
  line-height: 1.8;
}
a {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  text-decoration: none;
	outline: 0;
}
img {
  max-width: 100%;
}
a:focus, a:hover {
	text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
a,
textarea,
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"],
input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  outline: none;
}
*, ::before, ::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
* {
  box-sizing: border-box;
}
html *, html *:before, html *:after {
  box-sizing: border-box;
}
.btn, .btn:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}
/*================================================
             2. PRELOADER
==================================================*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(23%, #10c317),
    color-stop(64%, #15d09a)
  );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    vertical-align: middle;
}
.spinner {
  width: 40px;
  height: 40px;
  background-color: #fff;
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
/*================================================
    3. BACK TO TOP
==================================================*/
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.m-backtotop {
  -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;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient( 90deg , rgb(16, 195, 23) 23%, rgb(21, 208, 154) 64%);
  border-radius: 25px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
  z-index: 9999;
}
.m-backtotop > div {
  -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;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.m-backtotop > div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}
.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: linear-gradient( 90deg , rgb(16, 195, 23) 23%, rgb(21, 208, 154) 64%);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
/*================================================
   6. NAV SECTION STYLE
==================================================*/
#header.headerbg-darkcolor nav.navbar.bootsnav {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
#header.headerbg-darkcolor {
  background-color: #fff;
  -webkit-box-shadow: 0 20px 20px 0 #dddddd52;
  box-shadow: 0 20px 20px 0 #dddddd52;
}
.bootsnav .collapse .nav {
  margin-left: auto;
  margin-right: auto;
}
.top-search {
  padding-right: 40px;
  padding-left: 40px;
}

/*================================================
            ONE SERVICE AREA STYLE SECTION
==================================================*/
.one-service-area {
  padding-top: 75px;
  padding-bottom: 85px;
}
.one-section-title {
  text-align: center;
  margin-bottom: 50px;
}
.one-section-title .sub-title {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(23%, #10c317),
    color-stop(64%, #15d09a)
  );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 5px;
}
.one-section-title .sub-title:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  right: -48px;
  bottom: 7px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(23%, #10c317),
    color-stop(64%, #15d09a)
  );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
}
.one-section-title h2 {
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 0;
}
.one-section-title p {
  margin-top: 5px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.one-service-area .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 0;
}
.one-service-area .nav-tabs li {
  display: contents;
}
.one-service-area .nav-tabs .nav-default {
  display: inline-block;
  margin-bottom: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}
.one-service-area .nav-tabs .nav-default.active .service-item:before {
  opacity: 1;
}
.one-service-area .nav-tabs .nav-default.active .service-item i {
  color: #fff;
}
.one-service-area .nav-tabs .nav-default.active .service-item span {
  color: #fff;
}
.one-service-area .service-item {
  text-align: center;
  background-color: #efefef;
  border-radius: 4px;
  padding: 20px 40px 18px;
  position: relative;
  z-index: 1;
}
.one-service-area .service-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(23%, #10c317),
    color-stop(64%, #15d09a)
  );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
  border-radius: 4px;
  opacity: 0;
  z-index: -1;
}
.one-service-area .service-item i {
  display: block;
  color: #0d1820;
  font-size: 50px;
  margin-bottom: 15px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.one-service-area .service-item span {
  display: block;
  color: #0d1820;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.one-service-area .service-advisor {
  padding: 35px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 20px 0 #dddddd96;
  box-shadow: 0 0 20px 0 #dddddd96;
}
.one-service-area .service-advisor .advisor-img img {
  width: 100%;
}
.one-service-area .service-advisor .advisor-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.one-service-area .service-advisor .advisor-content p {
  margin-bottom: 20px;
}
.one-service-area .service-advisor .advisor-content ul {
  margin: 0;
  padding: 0;
  margin-bottom: 22px;
}
.one-service-area .service-advisor .advisor-content ul li {
  list-style-type: none;
  display: block;
  color: #444;
  margin-bottom: 12px;
  font-size: 16px;
}
.one-service-area .service-advisor .advisor-content ul li:last-child {
  margin-bottom: 0;
}
.one-service-area .service-advisor .advisor-content ul li i {
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 3px;
  margin-right: 3px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(23%, #10c317),
    color-stop(64%, #15d09a)
  );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.one-service-area .service-advisor .advisor-content .advisor-link {
  display: inline-block;
}
.one-service-area .service-advisor .advisor-content .advisor-link:hover i {
  left: 2px;
}
.one-service-area .service-advisor .advisor-content .advisor-link a {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(23%, #10c317),
    color-stop(64%, #15d09a)
  );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.one-service-area .service-advisor .advisor-content .advisor-link i {
  display: inline-block;
  color: #12ca59;
  font-size: 16px;
  position: relative;
  top: 0px;
  left: 8px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}




/*================================================
   7. HERO SECTION STYLE
==================================================*/
.hero-section {position: relative;min-height: 100vh;display: flex;align-items: center;z-index: 1;overflow: hidden;}
.hero-section::before {content: '';position: absolute;top: 0;left: 0;width: 25%;height: 100%;background-color: #12ca59;transform: skewX(0deg);transform-origin: bottom left;z-index: -1;}
.hero-img {max-width: 500px;border-radius: 20px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);}
.hero-wrapper-text p {font-size: 18px;line-height: 30px;margin: 15px 0px 28px;color: #000;}
.hero-wrapper-text h2 {font-size: 40px;font-weight: 800;padding: 0;color: #000;margin: 0;}
.type-wrap {color: #12ca59;font-weight: 800;font-size: 45px;position: relative;}
.type-wrap:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  background-color: #12ca59;
  margin-right: 10px;
  margin-bottom: 25px;
  left: 0;
  bottom: 5px;}
.type-wrap #typed5 {
  margin-left: 50px;
}

/* Responsive */
@media (max-width: 768px) {
.hero-section::before {width: 100%;transform: skewX(0deg);}
.hero-img {width: 70%;}
.text-white {text-align: center;} 
}



/*================================================
       FOR SOCIAL AND BUTTON STYLE
==================================================*/
.social-sidebar {position: fixed;top: 40%;right: 20px;display: flex;flex-direction: column;gap: 15px;z-index: 999;}
.social-icon {position: relative;display: flex;align-items: center;justify-content: center;color: white;background-color: #2e2e2e;width: 45px;height: 45px;border-radius: 50%;text-decoration: none;transition: all 0.3s ease;overflow: visible;}
.social-icon:hover {background-color: #12ca59;}
.social-label {position: absolute;right: 100%;white-space: nowrap;margin-right: 10px;padding: 5px 10px;background-color: #12ca59;color: #fff;font-weight: 600;border-radius: 3px;opacity: 0;pointer-events: none;transform: translateX(10px);transition: all 0.3s ease;font-family: Arial, sans-serif;font-size: 14px;user-select: none;}
.social-icon:hover .social-label {opacity: 1;pointer-events: auto;transform: translateX(0);}


/*================================================
       EXPERIENCE SECTION STYLE
==================================================*/
.experience-section {padding: 80px 0;background: #eff2f6;}
.section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
}
.experience-wrapper {
    padding: 0 20px;
    margin-top: 40px;
}
.experience-info {
    background-color: transparent;
    padding-left: 50px;
    position: relative;
    margin-bottom: 40px;
}
.experience-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #12ca59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;}
.experience-date {
    display: inline-block;
    background-color: #12ca59;
    color: #fff;
    padding: 4px 10px;
    font-size: 14px;
    margin-bottom: 8px;
    margin-top: 6px;
  }
.experience-title {font-size: 24px;color: #000;margin: 5px 0;font-weight: 700;}
.experience-desc {color: #777;font-size: 14px;margin-top: 8px;}



/*================================================
            ONE SERVICE AREA STYLE SECTION
==================================================*/
.four-step-area {
  padding: 80px 0;
}
.one-about-area {
  padding: 135px 0;
  padding-bottom: 0;
}
.about-content .one-section-title {
  text-align: left;
}
.about-content .one-section-title h2 {
  font-size: 45px;
  margin-bottom: 5px;
}
.about-content .one-section-title p {
  max-width: unset;
}
.about-content .one-section-title .sub-title {
  font-size: 22px;
  margin-bottom: 0;
}
.about-img {
  position: relative;
  margin-right: 30px;
}
.about-img img {
  position: relative;
}
.about-two__box i {
  color: #fff;
}
.about-img::before {
  content: "";
  width: 10000px;
  height: calc(100% + 85px);
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #12ca59;
  border-radius: 4px;
}
.about-two__box {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
.about-two__box h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-family: poppins, sans-serif;
  font-weight: 600;
  margin-left: 10px;
  margin-bottom: 0;
}
.about-image {
  width: 100%;
}
.btn-lets-talk {
  font-family: montserrat, sans-serif;
  border: none;
  padding: 10px 40px;
  color: #fff;
  position: relative;
  z-index: 99;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.5s ease-in-out;
  margin-top: 5px;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}
.btn-lets-talk:hover {
  color: #fff;
}
.btn-lets-talk::before, .btn-lets-talk::after {
  content: "";
  position: absolute;
  transform: skew( -30deg );
  transition: all 0.5s ease-in-out;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(23%, #10c317),
    color-stop(64%, #15d09a)
  );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.btn-lets-talk:hover::before, .btn-lets-talk:hover::after {
  transform: skew( 0deg );
}
.broker-area-servies {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 36px;
    margin-bottom: 10px;
}
.broker-area-servies li {
  display: inline-block;
  background: #8c9092;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 15px;
  transition: 0.5s;
  color: #fff;
  margin-bottom: 5px;
  margin-right: 3px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0.2px;
  cursor: pointer;
}
.broker-area-servies li:hover {
  background: #12ca59;
}
.broker-area-servies li:first-child {
  background: transparent;
  font-size: 20px;
  margin: 0;
  display: inline-block;
  margin-right: 5px;
  color: #6d6d6d;
  font-weight: 600;
  padding: 0;
}
.contact-details {
    line-height: 27px;
}
.about-me-page-content h2 {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 2px;
  font-weight: 700;
  font-family: poppins, sans-serif;
}
@-webkit-keyframes move-up-down {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); } }

@keyframes move-up-down {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px); }
}
.four-step-area .step-item {
    background-color: #fff;
    position: relative;
    padding: 55px 15px 25px 25px;
    border-radius: 4px;
    margin-top: 40px;
    -webkit-box-shadow: 0 0 45px 0 #dddddd96;
    box-shadow: 0 0 45px 0 #dddddd96;
    margin-bottom: 40px;
    z-index: -100;
    max-height: unset;
    min-height: 300px;
}
.four-step-area .step-item:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: -57px;
    top: 50%;
    border: 25px solid transparent;
    border-right: 35px solid #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .5s all ease;
    transition: .5s all ease;
}
.four-step-area .step-item .step-span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-box-shadow: 0 6px 20px 0 #dddddd96;
    box-shadow: 0 6px 20px 0 #dddddd96;
    text-align: center;
    margin-top: -90px;
    background-color: #fff;
    margin-bottom: 20px;
    transition: 0.5s;
}
.four-step-area .step-item .step-span span {
    display: inline-block;
    line-height: 70px;
    width: 70px;
    height: 70px;
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a));
    background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 26px;
}
.four-step-area .step-item h3 {
    color: #1a1b1e;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.four-step-area .step-item p {
    color: #848484;
    margin-bottom: 0;
}
.four-step-area .step-item:hover h3 {
   color: #10c317;
   transition: 0.5s;
}


/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq-one {
  background-color: #0c2139;
  position: relative;
  padding-top: 85px;
  padding-bottom: 90px;
}
.faq-one .one-section-title {
  margin-bottom: 20px;
}
.faq-img-two {
  margin-top: 52px;
}
@media (max-width: 991px){
  .faq-one{
    padding-top: 330px;
    padding-bottom: 80px;
  }
}
.faq-one__box .main-header__info-phone > i {
  font-size: 38px;
  color: #fff;
}
.faq-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.02;
  background-size: cover;
}
.faq-one__content {
  padding-right: 41px;
}
.faq-one__content p{
  color: #b0c2d7;
  margin-top: 35px;
}
@media (max-width: 425px){
  .faq-one__content p{
    margin-top: 20px;
  }
}
@media (max-width: 1199px) {
  .faq-one__content {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .faq-one__content {
    margin-bottom: 40px;
  }
}
.faq-one .block-title {
  max-width: 520px;
}
.faq-one .block-title p {

}
.faq-one .block-title h2 {
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.faq-one #accordion li {
  border-radius: 4px;
}
.faq-one #accordion li + li {
  margin-top: 20px;
}
.faq-one ul {
  margin-top: 25px;
}
.faq-one #accordion .para-title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  margin-bottom: 0;
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 4px;
}
@media (max-width: 480px) {
  .faq-one #accordion .para-title {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.faq-one #accordion .para-title span {
  display: block;
  transition: all 500ms ease;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 440px) {
  .faq-one #accordion .para-title span {
    max-width: 95%;
  }
}
.faq-one #accordion .para-title.active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.faq-one #accordion .para-title.active i {
  color: #fff;
}
.faq-one #accordion .para-title i {
  font-size: 16px;
  transition: all 500ms ease;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: -webkit-gradient(linear,left top,right top,color-stop(23%,#10c317),color-stop(64%,#15d09a));
  background: linear-gradient( 90deg,#10c317 23%,#15d09a 64%);
  border-radius: 50%;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
}
@media (max-width: 480px) {
  .faq-one #accordion .para-title i {
    right: 10px;
  }
}
.faq-one #accordion .collapse {
  transition: all 500ms ease;
}
.faq-one #accordion p {
  transition: all 500ms ease;
  background-color: #fff;
  margin: 0;
  padding: 0 20px;
  padding-bottom: 20px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
@media (max-width: 480px) {
  .faq-one #accordion p {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.faq-one__faq-page {
  background-color: #fff;
  padding-top: 70px;
}
@media (max-width: 991px) {
  .faq-one__faq-page {
    padding-top:60px;
    padding-bottom: 80px;
  }
}
@media (max-width: 425px) {
  .faq-one__faq-page {
    padding-top:40px;
    padding-bottom: 60px;
  }
}
.faq-one__faq-page #accordion li {
  background-color: #eff2f6;
  border-radius: 4px;
  transition: all 500ms ease;
}
.faq-one__faq-page #accordion li.active {
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}
.faq-one__faq-page #accordion li .para-title {
  background-color: #eff2f6;
}
.faq-one__faq-page #accordion li .para-title.active {
  background-color: #fff;
}
.faq-one__faq-page #accordion li .collapse {
  background-color: #eff2f6;
}
.faq-one__box {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .faq-one__box {
    margin-top: 60px;
  }
}
.faq-one__box img {
  width: 100%;
}
.faq-one__box .main-header__info-phone {
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.faq-one__box .main-header__info-phone-content span {
  color: #f5f5f5;
  font-size: 12px;
}
.faq-one__box .main-header__info-phone-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
/*============================================================================= TESTIMONIALS AREA WRAPPER STYLE ========================================================*/
.testimonials-area-wrapper {
  padding-top: 85px;
  padding-bottom: 95px;
  background-color: #eff2f6;
  background-image: url(../images/testimonials/testimonials-map-1-1.png);
  background-position: top center;
  background-repeat: no-repeat;
}
.testimonials-area-wrapper .one-section-title {
  margin-bottom: 30px;
}
.clients-testimonial-slider .owl-item img {
  width: auto;
}
.testimonials-box {
  text-align: left;
  background-color: #fff;
  transition: all .5s ease;
  position: relative;
  padding: 34px 50px 35px 35px;
  border-left: 3px solid #12ca59;
  transition: all .5s ease;
  min-height: 220px;
  max-height: 220px;
}
.testimonials-box p {
  display: block;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease 0s;
  padding-bottom: 15px;
  color: #12ca59;
  margin: 0;
}
.testimonials-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  transition: all 0.3s ease 0s;
  color: #000;
}
.testimonials-box h3 {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 0px;
  transition: all 0.3s ease 0s;
  padding-bottom: 0px;
  color: #12ca59;
  font-weight: 600;
}
.testimonials-box:hover h3,
.testimonials-box:hover p {
  color: #000;
}
.testimonials-box:hover h2 {
  color: #12ca59;
}
/* .testimonials-box:hover {
  border-left: 3px solid #000;
} */


/*========================================================
   NEWSLETTER AREA SECTION STYLE
=========================================================*/
.newsletter-area:before {
  background: #12ca59;
  content: "";
  height: 48px;
  position: absolute;
  right: 0;
  top: 10px;
  width: 43%;
}
.newsletter-area:after {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  -o-border-image: none;
  border-image: none;
  border-style: solid;
  border-width: 24px 10px;
  content: "";
  height: 5px;
  position: absolute;
  right: 43%;
  top: 10px;
  width: 0;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #12ca59 #12ca59;
}
.newsletter-area {
  background: #2d3e50 none repeat scroll 0 0;
  color: #ffffff;
  position: relative;
}
.newsletter-area:before {
  height: 149px;
  left: 0;
  right: auto;
  top: -20px;
  width: 44%;
}
.newsletter-area:after {
  border-width: 74.5px 40px;
  left: 44%;
  right: auto;
  top: -20px;
}
.newsletter-content h2, .newsletter-content h3 {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.9px;
  color: #fff;
  text-transform: capitalize;
}
.newsletter-content h2 {
}
.newsletter-content h3 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1;
}
.subscribe-form input {
  color: #696969;
  height: 100%;
  padding-left: 15px;
  width: 100%;
  border: 0;
}
.subscribe-form > button {
  background-color: #0d1820;
  z-index: 1;
  padding: 10px 16px 12px;
  font-weight: 700;
  font-family: montserrat, sans-serif;
  text-transform: capitalize;
  height: 100%;
  letter-spacing: 0.5px;
  position: absolute;
  color: #fff;
  border: 0;
  right: 0;
  font-size: 18px;
  line-height: 40px;
  top: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 34%;
}
.subscribe-form > button::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
  z-index: -1;
  border-radius: 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.subscribe-form > button:hover::before {
  width: 0;
}
.newsletter-form {
  overflow: hidden;
  padding: 36px 0;
}
.subscribe-form {
  float: right;
  height: 56px;
  position: relative;
  width: 525px;
}
.subscribe-form:before {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #fff #fff transparent transparent;
  -o-border-image: none;
  border-image: none;
  border-style: solid;
  border-width: 28px 15px;
  content: "";
  height: 5px;
  left: -30px;
  position: absolute;
  top: 0;
  width: 0;
}
.newsletter-content {
  padding-top: 26px;
  z-index: 9;
  position: relative;
}
/*========================================================
   FOOTER SECTION STYLE
=========================================================*/
.footer-wrapper {
  background: #2d3e50 none repeat scroll 0 0;
  color: #fff;
  padding: 70px 0 55px;
}
.footer-widget {

}
.footer-widget h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer-contact {
  margin: 0;
  padding: 0;
}
.footer-contact li {
  list-style: none;
  line-height: 28px;
  font-weight: 400;
  font-size: 16px;
}
.list-footer-menu {
  margin: 0;
  padding: 0;
}
.list-footer-menu li {
  list-style: none;
}
.list-footer-menu li a {
    font-size: 16px;
    color: #fff;
    line-height: 32px;
    position: relative;
    font-weight: 400;
}
.list-footer-menu li a:hover {
    color: #fff;
}
.list-footer-menu li a:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.list-footer-menu li a:hover:before {
    width: 100%;
}
.quick-link {
  margin: 0;
  padding: 0;
}
.quick-link li {
  list-style: none;
}
.quick-link li a {
  color: #fff;
  background: #179bd7;
  padding: 10px 10px;
  display: block;
  font-size: 15px;
  margin-top: 15px;
  text-align: center;
  transition: 0.5s;
}
.quick-link li a:hover {
  background: #173e71;
}
.footer-bottom {
  background: #2d3e50;
  width: 100%;
  color: #fff;
}
.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.design-link {
  text-align: right;
}
.design-link p {
  display: inline-block;
  color: #fff;
}
.design-link img {
  margin-top: 4px;
}
.rights-text {
  margin-top: 3px;
}
.border-top-footer {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  padding-bottom: 10px;
}
/*=============================================================================
                BLOG SECTION WRAPPER STYLE
========================================================*/
.blog-section-wrapper {
  padding-top: 90px;
  padding-bottom: 80px;
}
.blog-section-wrapper .one-section-title {
  margin-bottom: 35px;
}
.post{
	position:relative;
	margin:0 auto 30px;
}
.post-inner{
	position:relative;
	max-width:410px;
	margin:0 auto;
}
.post *{
	transition:all 700ms ease;
	-moz-transition:all 700ms ease;
	-webkit-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
}
.post .image{
	position:relative;
	overflow:hidden;
	width:100%;
	z-index:1;
}
.post .image::after{
	content:'';
	position:absolute;
	left:0px;
	top:-100%;
	width:100%;
	height:100%;
	display:block;
	background:#12ca59;
	opacity:0.50;
	z-index:0;
	transition:all 700ms ease;
	-moz-transition:all 700ms ease;
	-webkit-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
}
.post:hover .image::after{
	top:0%;
}
.post .image img{
	position:relative;
	display:block;
	width:100%;
}
.post .image .curve{
	position:absolute;
	right:-100px;
	top:100%;
	width:250%;
	height:150%;
	z-index:1;
	background:#fcfcfc;
	transform:rotate(-13deg);
	-webkit-transform:rotate(-13deg);
	-moz-transform:rotate(-13deg);
	-ms-transform:rotate(-13deg);
	-o-transform:rotate(-13deg);
}
.post:hover .image .curve{
	transform:rotate(0deg);
	-webkit-transform:rotate(0deg);
	-moz-transform:rotate(0deg);
	-ms-transform:rotate(0deg);
	-o-transform:rotate(0deg);
}
.post .content{
	position:relative;
	top:0px;
	margin:-60px 25px 0px;
	z-index:2;
}
.post:hover .content{
	top:46px;
}
.post .content:before{
	position:absolute;
  right: 0px;
  top: -44px;
	background:#ffffff;
  content: "";
  height: 96%;
  width: 100%;
	border:1px solid #e2e2e2;
	z-index:0;
  position: absolute;
  transform: skewY(-13deg);
	-webkit-transform: skewY(-13deg);
	-moz-transform: skewY(-13deg);
	-ms-transform: skewY(-13deg);
	-o-transform: skewY(-13deg);
	transition:all 700ms ease;
	-moz-transition:all 700ms ease;
	-webkit-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
}
.post:hover .content:before,
.post:hover .content .inner-box{
	border-color:#12ca59;
}
.post .content .inner-box{
	position:relative;
	background:#ffffff;
	border:1px solid #e2e2e2;
	border-top:none;
	padding:20px 25px 25px;
	z-index:5;
  min-height: 235px;
  max-height: 235px;
  overflow: hidden;
}
.post .content h3{
  position: relative;
  padding-left: 15px;
  border-left: 5px solid #12ca59;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 28px;
  margin-bottom: 15px;
}
.post .content .text{
	position:relative;
	font-size:16px;
	font-weight:400;
	line-height:1.6em;
	margin-bottom:15px;
	color:#6e6e6e;
}
.read-more {
  display: inline-block;
}
.read-more a {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.read-more i {
  display: inline-block;
  color: #12ca59;
  font-size: 16px;
  position: relative;
  top: 0px;
  left: 8px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.read-more:hover i {
  left: 2px;
}
.inner-box {
  /* min-height: 208px;
  max-height: 208px; */
  overflow: hidden;
}
.btn-all-news {
  position: relative;
  text-align: center;
  padding-top: 25px;
}
.btn-event-all {
  color: #12ca59;
  font-size: 18px;
  line-height: 46px;
  display: inline-block;
  padding: 0 20px;
  border-radius: 25px;
  border: 1px solid #12ca59;
  text-align: center;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 9;
  text-transform: capitalize;
}
.btn-event-all:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 300px;
  height: 300px;
  line-height: 20em;
  left: 50%;
  margin-left: -150px;
  text-align: center;
  -webkit-transition: -webkit-box-shadow 0.5s ease-out;
  transition: -webkit-box-shadow 0.5s ease-out;
  -o-transition: box-shadow 0.5s ease-out;
  transition: box-shadow 0.5s ease-out;
  transition: box-shadow 0.5s ease-out, -webkit-box-shadow 0.5s ease-out;
  z-index: -1;
}
.btn-event-all:hover {
  border: 1px solid transparent;
  color: #fff;
}
.btn-event-all:hover:before {
  -webkit-box-shadow: inset 0 0 0 10em #12ca59;
  box-shadow: inset 0 0 0 10em #12ca59;
}
.latest-news-single-item {
  margin-top: 45px;
  margin-bottom: 55px;
}
.latest-news-single-item a {
  display: block;
  background:#eff3f4 none repeat scroll 0 0;
  border-bottom: 3px solid #12ca59;
  padding: 0 35px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-bottom: 20px;
  color: #000;
}
.latest-news-image {
  overflow: hidden;
  position: relative;
  text-align: center;
  top: -35px;
}
.latest-news-single-item-text {
  margin-top: -15px;
  overflow: hidden;
  min-height: 250px;
  max-height: 250px;
  /* min-height: 330px;
  max-height: 330px; */
}
.latest-news-single-item-text h4 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.latest-news-single-item-text p {
  text-align: justify;
  font-size: 16px;
  line-height: 1.6;
}
.latest-news-single-item-text-info {
  padding-bottom: 15px;
  display: block;
  width: 100%;
  float: left;
}
.latest-news-single-item-text-info span {
  font-size: 14px;
}
.latest-news-button-wrapper {
  text-align: center;
  margin-top: -43px;
}
.latest-news-button-wrapper .latest-news-button {
  background: #12ca59;
  padding: 6px 25px;
  color: #ffffff;
  display: inline-block;
  font-size: 18px;
  border: 0;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.latest-news-single-item a:hover {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 2px 20px rgba(34, 30, 31, 0.4);
  border-color: #12ca59;
}
.latest-news-single-item:hover .latest-news-button-wrapper .latest-news-button {
  background: #03b046 !important;
  box-shadow: none !important;
}
.latest-news-button-wrapper .latest-news-button:hover {
  box-shadow: none !important;
}
.all-news {
  text-align: center;
}
.event-all {
  color: #fff;
  position: relative;
  background-color: #0d1820;
  z-index: 1;
  padding: 10px 16px 12px;
  border-radius: 0!important;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.9px;
  font-family: 'Montserrat', sans-serif;
}
.event-all:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
  z-index: -1;
  border-radius: 0!important;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.event-all:hover:before {
  width: 0;
}
.event-all:hover {
  color: #fff;
}


/*================================================
   LENDER SECTION WRAPPER STYLE
==================================================*/
.lenders-section-wrapper {
  padding-top: 0px;
  padding-bottom: 70px;
}
.lenders-section-wrapper .one-section-title {
  margin-bottom: 10px;
}
.lenders-logo-slider .owl-nav .owl-next {
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 0;
  opacity: 1;
  margin: 2px;
  right: 0;
  position: absolute;
  top: -55px;
  border: 1px solid #ddd;
  transition: all 0.5s ease 0s;
  text-align: center;
}
.lenders-logo-slider .owl-nav .owl-next i {
  color: #fff !important;
}
.lenders-logo-slider .owl-nav .owl-next:hover {
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
}
.lenders-logo-slider .owl-nav .owl-next:hover i {
  color: #000 !important;
}
.lenders-logo-slider .owl-nav .owl-next i {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.lenders-logo-slider .owl-nav .owl-prev {
  background: transparent;
  width: 30px;
  text-align: center;
  height: 30px;
  border-radius: 0;
  opacity: 1;
  margin: 2px;
  right: 35px;
  position: absolute;
  top: -55px;
  border:0;
  transition: all 0.5s ease 0s;
}
.lenders-logo-slider .owl-nav .owl-prev:hover {
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
}
.lenders-logo-slider .owl-nav .owl-prev:hover i {
  color: #000;
}
.lenders-logo-slider .owl-nav .owl-prev i {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}
.lenders-logo-slider .owl-nav button.owl-next,
.lenders-logo-slider .owl-nav button.owl-prev,
.lenders-logo-slider button.owl-dot {
    background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
    background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
}
/*--========================================== ABOUT ME PAGE STYLE =================================================*/
.page-header {
  position: relative;
}
.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header .container {
  position: relative;
  z-index: 10;
  padding-top: 90px;
  padding-bottom: 95px;
}
@media (max-width: 480px) {
  .page-header .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.page-header .container h2 {
  margin: 0;
  line-height: 1;
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: .7px;
}
@media (max-width: 480px) {
  .page-header .container h2 {
    font-size: 42px;
  }
}
.thm-breadcrumb {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
  /* background: rgba(255,255,255,.09); */
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64% );
  padding: 11px 21px 11px 11px;
  border-radius: 4px;
  text-transform: capitalize;
}
.thm-breadcrumb li {
  line-height: 1;
  display: inline-block;
  align-items: center;
  letter-spacing: 0.5px;
}
.thm-breadcrumb li:not(:last-of-type) {
  margin-right: 6px;
}
.thm-breadcrumb li:first-child
{
  margin-left: 10px;
}
.thm-breadcrumb li a {
  padding-bottom: 3px;
  color: inherit;
}
.thm-breadcrumb li a:hover {
  color: #000;
}
.thm-breadcrumb span a {
  margin: 0 10px;
}
/*--========================================== CONTACT PAGE STYLE =================================================*/
.contact-one {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #eff2f6;
}
.contact-one__content .one-section-title {
  text-align: left;
  margin-bottom: 20px;
}
.contact-one__content .one-section-title .sub-title {
  text-transform: capitalize;
}
.contact-one__content .one-section-title h2 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media (max-width: 991px){
  .contact-one {
    padding-top: 80px;
    padding-bottom:80px ;
  }
}
@media (max-width: 767px) {
  .contact-one{
    padding-top: 60px;
    padding-bottom:55px ;
  }
}
@media (max-width: 991px) {
  .contact-one__content {
    margin-bottom: 50px;
  }
}
.contact-one__content
{
  padding-bottom: 10px;
}
.contact-one__content > p {
  margin: 0;
  margin-bottom: 45px;
}
.contact-one__box + .contact-one__box {
  border-top: 1px solid #e6eaef;
  margin-top: 25px;
  padding-top: 25px;
}
.contact-one__box {
  display: flex;
  align-items: center;
  text-align: left;
}
@media (min-width: 1200px) {
  .contact-one__box {
    margin-right: 30px;
  }
}
.contact-one__box i {
  width: 65px;
  height: 65px;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64% );
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 500ms ease;
  border-radius: 50%;
}
.other-box i {
  width: 75px;
}
.contact-one__box-content {
  margin-left: 20px;
}
.contact-one__box-content h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.contact-one__box-content a {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  display: block;
  color: #6c757d;
  transition: all 500ms ease;
}
.contact-one__box-content a:hover {
  color: #12ca59;
}
@media (max-width: 425px){
  .contact-one__box-content a {
    max-width: 180px;
  }
}
.contact-one__form {
  margin-top: 40px;
}
.contact-one__form-consent label {
  display:contents;
}
.contact-one__form .low-gutters {
  margin-left: -10px;
  margin-right: -10px;
}
.contact-one__form .low-gutters > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
.contact-one__form-input{
  width: 100%;
  display: block;
  border: none;
  outline: none;
  background-color: #fff;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 4px;
  font-size: 15px;
}
.contact-one__form-input:focus{
  box-shadow: none;
  background-color: #fff;
}
.contact-one__form-box{
  margin-top: 40px;
}
.contact-one__form textarea {
  height: 140px;
  padding-top: 20px;
}
.contact-one__form label strong
{
  font-size: 12px !important;
  color: #0c2139;
}
.contact-one__form-submit
{
  margin-top: 10px;
}
.contact-two {
  padding-top: 100px;
  padding-bottom: 70px;
}
@media (max-width: 991px){
  .contact-two{
    padding: 80px 40px;
  }
}
@media (max-width: 425px){
  .contact-two{
    padding: 60px 30px;
  }
}
.contact-two .about-one__form {
  margin-top: 0;
}
@media (max-width: 991px) {
  .contact-two .about-one__form {
    margin-top: 50px;
  }
}
@media (max-width: 425px) {
  .contact-two .about-one__form {
    margin-top: 30px;
  }
}
.contact-two .contact-one__form > p {
  margin: 0;
  margin-top: -10px;
  margin-bottom: 35px;
}
.contact-two .contact-one__form textarea {
  height: 185px;
}
.contact-page-btn {
  color: #fff;
  position: relative;
  background-color: #0d1820;
  z-index: 1;
  padding: 10px 16px 12px;
  border-radius: 5px;
  border: 0;
}
.contact-page-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.contact-page-btn:hover:before {
  width: 0;
}
.google-map__home-two {
  width: 100%;
}
.google-map__home-two iframe {
  display: block;
  border: none;
  outline: none;
  width: 100%;
  height: 450px;
}
/*--========================================== TESTIMONIALS PAGE STYLE =================================================*/
.testimonials-page {
  padding-top: 70px;
  padding-bottom: 50px;
}
.testimonials-page .one-section-title {
  margin-bottom: 30px;
}
.testimonials-page .testimonials-box {
  background: #f3f3f3 none repeat scroll 0 0;
}
.testimonials-page .testimonials-box-wrapper {
  margin-bottom: 75px;
  display: block;
  position: relative;
  padding-bottom: 0;
}
/*--========================================== BLOG PAGE STYLE =================================================*/
.blog-page-wrapper {
  padding: 80px 0;
}
.blog-page-wrapper .one-section-title {
  margin-bottom: 30px;
}
.blog-pagination-wrapper {
  display: contents;
}
.blog-pagination-wrapper .pagination {
  margin-left: auto;
  margin-right: auto;
}
.blog-pagination-wrapper .pagination .page-link {
  color: #12ca59;
}
.blog-pagination-wrapper .pagination .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
  border-color: #10c317;
}
.blog-pagination-wrapper .pagination .page-link:hover {
  color: #fff;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
  border-color: #10c317;
}
/*--========================================== ABOUT PAGE STYLE =================================================*/
.about-me-page-wrapper {
  padding-top: 90px;
  padding-bottom: 80px;
}
.about-me-page-wrapper .one-section-title {
  margin-bottom: 40px;
}
.about-me-page-image {
  position: relative;
  margin-left: 30px;
}
.about-me-page-image::before {
  content: "";
  width: 20px;
  height: 280px;
  background-color: #12ca59;
  position: absolute;
  top: 0;
  left: -50px;
  border-radius: 4px;
}
.about-me-page-image img {
  -webkit-box-shadow: 0px 10px 30px rgb(0 0 0 / 10%);
  box-shadow: 0px 10px 30px rgb(0 0 0 / 10%);
}
.about-me-page-image-text {
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  width: 100%;
  max-width: 190px;
  border-radius: 4px;
  padding: 20px 20px 20px 20px;
  position: absolute;
  bottom: 30px;
  left: -50px;
}
.about-me-page-image-text img {
  box-shadow: none;
}
.about-me-page-image-text h3 {
  margin: 0;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #333;
  margin-top: 10px;
}
.about-social-icon {
    margin: 0;
    display: block;
    padding: 0;
    margin-top: 45px;
    margin-left: -35px;
}
.about-social-icon li {
    list-style: none;
    transform: rotate(0deg);
}
.about-social-icon li a {
    margin: 0 5px 5px 5px;
    display: inline-block;
    transition: 0.5s;
}
.about-social-icon li a {
    font-size: 20px;
    color: #12ca59;
    width: 35px;
    height: 35px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    line-height: 35px;
    text-align: center;
    transition: all 0.5s ease-in;
    background: transparent;
}
.about-social-icon li a:hover {
    transform: rotate(360deg);
    color: #fff;
}
.about-social-icon li .facebook {
    border: 2px dotted #12ca59;
}
.about-social-icon li:hover .facebook {
    background: #3b5999 !important;
    border: 2px dotted transparent;
}
.about-social-icon li .twitter {
    border: 2px dotted #12ca59;
}
.about-social-icon li:hover .twitter {
    background: #55acee !important;
    border: 2px dotted transparent;
}
.about-social-icon li .google-plus {
    border: 2px dotted #12ca59;
}
.about-social-icon li:hover .google-plus {
    background: #dd4b39 !important;
    border: 2px dotted transparent;
}
.about-social-icon li .dribbble {
    border: 2px dotted #12ca59;
}
.about-social-icon li:hover .dribbble {
    background: #ea4c89 !important;
    border: 2px dotted transparent;
}
.about-social-icon li .linkedin {
    border: 2px dotted #12ca59;
}
.about-social-icon li:hover .linkedin {
    background: #0077B5 !important;
    border: 2px dotted transparent;
}
.mobile-social-icon {
  text-align: center;
}
.mobile-social-icon {
  margin-top: 20px;
}
.social-mobile-text h4 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.social-mobile {
  margin: 0;
}
.social-mobile li {
  display: inline-block;
}
/*=============================================================================================
    SERVICES PAGE STYLE
==============================================================================================*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
.service-one__home-two {
  position: relative;
  margin-bottom: 0;
  padding: 85px 0 80px;
  /* background-color: #eff2f6; */
}
.service-one__home-two .one-section-title {
  margin-bottom: 10px;
}
@media (max-width: 991px)
{
  .service-one__home-two
  {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
@media (max-width: 425px)
{
  .service-one__home-two
  {
    padding-top: 60px;
    padding-bottom: 45px;
  }
}
.service-one__home-two__shape-1 {
  position: absolute;
  z-index: 10;
  top: 70px;
  left: 245px;
  -webkit-animation-name: bubbleMover;
  animation-name: bubbleMover;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}
.service-one__home-two__shape-2 {
  position: absolute;
  z-index: 10;
  top: 100px;
  right: 366px;
  -webkit-animation-name: bubbleMover;
  animation-name: bubbleMover;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}
.service-one__home-two__shape-3 {
  position: absolute;
  z-index: 10;
  right: 146px;
  top: 450px;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.service-one__home-two .container {
  position: relative;
}
.service-second {
    background-color: #fff;
    padding: 30px 35px 30px 40px;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
    position: relative;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 10;
    margin-top: 35px;
    margin-bottom: 15px;
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
}
@media (max-width: 1199px)
{
  .service-second
  {
    padding: 30px 45px 30px 40px;
  }
}
.service-second:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all .5s ease-in-out 0s;
    -moz-transition: all .5s ease-in-out 0s;
    -ms-transition: all .5s ease-in-out 0s;
    -o-transition: all .5s ease-in-out 0s;
    transition: all .5s ease-in-out 0s;
}
.service-second-info-icon {
    padding-bottom: 15px;
}
.service-second h3 a {
  font-size: 28px;
  margin-top: 5px;
  color: #0d1820;
  font-weight: 600;
  font-family: poppins, sans-serif;
}
.service-second__content {
    position: relative;
    padding-top: 25px;
}
.service-second .service-second__content:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    top: 0;
    right: -40px;
    background-color: #e6e8eb;
    left: -40px;
    width: calc(100% + 75px);
}
.service-second .service-second__content:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    top: 0;
    left: -40px;
    width: calc(100% + 75px);
    transform: scaleX(0);
    transform-origin: left;
    -webkit-transition: all .35s ease 0s;
    -khtml-transition: all .35s ease 0s;
    -moz-transition: all .35s ease 0s;
    -ms-transition: all .35s ease 0s;
    -o-transition: all .35s ease 0s;
    transition: all .35s ease 0s;
}
.service-second__content p {
    position: relative;
}
.service-second .service-second-right-icon-box {
    position: absolute;
    right: -10px;
    bottom: 20px;
    z-index: -1;
}
.service-second .service-second-right-icon-box i {
    font-size: 100px;
    color: rgba(50,50,50,0.05);
    display: block;
    transition: all .5s ease;
}
.service-second:hover .service-second-right-icon-box i {
    color: rgba(50,50,50,0.1);
    transition: all .5s ease;
}
.service-second:hover .service-second__content:after{
  transform:scaleX(1);
  background-color: #12ca59;
  -webkit-transition:all .4s ease-in-out 0s;
  -moz-transition:all .4s ease-in-out 0s;
  -ms-transition:all .4s ease-in-out 0s;
  -o-transition:all .4s ease-in-out 0s;
  transition:all .4s ease-in-out 0s;
}
.service-icon2 {
    font-size: 54px;
    line-height: 1.1;
    color: #12ca59;
    display: inline-block;
    margin-bottom: 10px;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
.service-second:hover .service-icon2 {
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
    transform: rotateY(360deg);
}
.service-btn-wrapper {
    display: inline-block;
}
.service-btn-wrapper a {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient( 90deg, #10c317 23%, #15d09a 64% );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-btn-wrapper i {
  display: inline-block;
  color: #12ca59;
  font-size: 16px;
  position: relative;
  top: 0px;
  left: 8px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-btn-wrapper:hover i {
  left: 2px;
}
.call-to-action {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  padding: 90px 0;
}
.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #333;
  opacity: 0.7;
}
.call-to-action .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.call-to-action .left-content p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
}
.call-to-action .left-content p span:not(:first-of-type)::before {
    content: "/";
    margin-left: 10px;
    margin-right: 10px;
}
.call-to-action .left-content h3 {
    margin: 0;
    font-size: 44px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
}
.service-apply-btn {
  color: #fff;
  position: relative;
  background-color: #0d1820;
  z-index: 1;
  padding: 10px 16px 12px;
  border-radius: 0!important;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.9px;
  font-family: 'Montserrat', sans-serif;
}
.service-apply-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
  background: linear-gradient(90deg, #10c317 23%, #15d09a 64%);
  z-index: -1;
  border-radius: 0!important;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.service-apply-btn:hover:before {
  width: 0;
}
.service-apply-btn:hover {
  color: #fff;
}
/*=============================================================================================
    SERVICES DETAILS PAGE STYLE
==============================================================================================*/
.service-details {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 0;
}
.service-sidebar {
    position: relative;
    z-index: 0;
}
/* .service-sidebar:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    bottom: -550px;
    z-index: -1;
    width: 5000px;
    left: auto;
    right: 0;
    background-color: #eff2f6;
    margin-top: -90px;
    margin-bottom: -90px;
} */
.service-sidebar__category {
    padding: 0px 20px 50px 20px;
    padding-bottom: 35px;
}
.serivces-widget-list {
    list-style: none;
    padding: 0;
}
.serivces-widget-list li {
    margin-bottom: 10px;
    display: block;
    line-height: 1.4;
}
.serivces-widget-list li a {
  display: block;
  padding: 15px 20px;
  margin: 0 0 10px;
  position: relative;
  background-color: #f1f1f1;
  border: none;
  z-index: 1;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border: 1px solid #f1f1f1;
  color: #0c2139;
  font-family: 'Montserrat', sans-serif;
}
.serivces-widget-list li a:before {
    content: "";
    width: 5px;
    left: -1px;
    bottom: 50%;
    background: #12ca59;
    height: 0;
    position: absolute;
    transition: all .3s cubic-bezier(0.65, 0.05, 0.36, 1);
    z-index: 1;
}
.serivces-widget-list li i {
    font-style: normal;
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    font-size: 13px;
}
.serivces-widget-list li a:hover {
    color: #12ca59;
}
.serivces-widget-list li a:hover:before,
.serivces-widget-list li.service-active a:before {
    height: 100%;
    bottom: 0;
}
.document-widget-post {
    margin-left: 20px;
    padding: 0px 20px 35px 0px;
}
.blog-sidebar__box-title {
    font-size: 23px;
    color: #0c2139;
    margin: 0;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    border-bottom: 1px solid #c2cedc;
    line-height: 1;
}
.blog-sidebar__box-title:after {
    content: '';
    width: 60px;
    height: 4px;
    background: #12ca59;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.pylon-links {
    margin-bottom: 10px;
    padding: 14px 15px;
    background-color: #f1f1f1;
    border: 1px solid #f1f1f1;
}
.pylon-links a {
    color: #0c2139;
}
.pylon-links i {
    padding-right: 11px;
    font-size: 18px;
    color: #12ca59;
}
.pylon-links a:hover, .pylon-links a:active, .pylon-links a:focus {
    color: #12ca59;
}
.service-sidebar__call {
    position: relative;
    border-radius: 4px;
    padding: 50px 40px;
    padding-right: 35px;
    margin: 0px 20px 50px 20px;
    background-color: #919893;
    z-index: 0;
}
.service-sidebar__call-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-blend-mode: hard-light;
    background-size: cover;
    background-position: center center;
    opacity: 0.1;
    z-index: -1;
}
.service-sidebar__call i {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    width: 67px;
    height: 67px;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 30px;
}
.service-sidebar__call h3 {
    font-size: 28px;
    line-height: 1;
    margin: 0;
    max-width: 250px;
    margin-bottom: 15px;
}
.service-sidebar__call h3 a {
  color: #fff;
}
.pylon-mail a {
    font-size: 16px;
    color: #ffc107;
}
.service-sidebar__call p {
    margin: 0;
    color: #fff;
    margin-top: 10px;
}
.service-details__image > img {
    border-radius: 4px;
}
.service-details__content > h3 {
    margin: 0;
    color: #0c2139;
    font-size: 34px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.service-details__content h4 {
    color: #0c2139;
    font-size: 28px;
    margin: 0;
    margin-top: 20px;
}
.service-details .about-two__list {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
}
.service-details .about-two__list li {
  flex: 0 0 100%;
  color: #0c2139;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.9;
}
.about-two__list li > i {
    color: #12ca59;
    margin-right: 10px;
}
.service-details-faq {
  padding-top: 20px;
  padding-bottom: 0;
}
.left-content-area {
  margin-bottom: 50px;
}
.right-content-area {
  margin-bottom: 50px;
  padding-bottom: 50px;
}
/*=============================================================================
          BLOG DETAILS SECTION WRAPPER STYLE
========================================================*/
.blog-details {
  padding-top: 100px;
  padding-bottom: 100px;
}
.blog-card__image {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.blog-card__image>span {
  background-color: #12ca59;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 4px;
  z-index: 10;
  padding: 12px 20px;
}
.blog-card__image img {
  width: 100%;
  border-radius: 4px;
  transform: scale(1);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card__meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.blog-card__meta a {
    display: flex;
    align-items: center;
    color: #4a4e52;;
    transition: all 500ms ease;
    font-size: 13px;
    margin-right: 0px;
    line-height: 1;
}
.blog-card__meta a > i {
    color: #12ca59;
    transition: all 500ms ease;
    margin-right: 5px;
}
.blog-card__meta a:not(:last-child):after {
    background-color: #ccc;
    display: inline-block;
    content: "";
    width: 1px;
    height: 16px;
    vertical-align: middle;
    margin: 0 15px;
}
.blog-details__content p {
    margin: 0;
    margin-bottom: 20px;
    line-height: 1.66;
}
.blog-details__quote {
    background-color: #eff2f6;
    font-size: 18px;
    color: #0c2139;
    padding: 35px 25px;
    margin: 25px 0;
    border-radius: 0 4px 4px 0;
    position: relative;
    line-height: 34px;
    font-style: italic;
    border-left: 4px solid #12ca59;
}
.blog-details__quote cite {
    font-size: 16px;
    font-weight: 700;
}
.blog-details__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #e6eaef;
    margin-top: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.blog-details__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.blog-details__tags a {
    font-size: 14px;
    color: #fff;
    margin-right: 8px;
    transition: all .5s ease;
    background: #12ca59;
    padding: 8px 14px;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 4px;
    text-transform: capitalize;
    font-weight: 400;
}
.blog-details__tags a:hover {
  background: #10c317;
}
.team-details__social {
    display: flex;
    flex-wrap: wrap;
}
.team-details__social a {
  display: flex;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  width: 41px;
  height: 41px;
  background-color: #eff2f6;
  color: #0c2139;
  font-size: 16px;
  margin-left: 5px;
  transition: all 500ms ease;
  border: 1px solid rgba(0,0,0,.06);
}
.team-details__social a:hover {
  background: #10c317;
  border-color: #10c317;
  color: #fff;
}
.blog-details__box-title {
    margin: 0;
    font-size: 30px;
    color: #0c2139;
    margin-bottom: 20px;
}
.contact-one__form {
    margin-top: 10px;
}
.contact-one__form .low-gutters {
    margin-left: -10px;
    margin-right: -10px;
}
.contact-one__form .low-gutters > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}
.contact-one__form-input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background-color: #fff;
    color: #555c63;
    height: 67px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
    font-size: 15px;
}
.thm-btn {
  color: #fff;
  position: relative;
  background-color: #0d1820;
  z-index: 1;
  padding: 10px 16px 12px;
  border-radius: 4px;
  border: 0;
}
.thm-btn:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient( linear, left top, right top, color-stop(23%, #10c317), color-stop(64%, #15d09a) );
    background: linear-gradient( 90deg, #10c317 23%, #15d09a 64%);
    z-index: -1;
    border-radius: 4px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.thm-btn:hover:before {
  width: 0;
}
.blog-sidebar__search {
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}
.search-form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
}
.search-field {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    color: #555c63;
    height: 56px;
    padding-left: 20px;
    margin-bottom: 0;
    border: 1px solid #dce4ed;
}
.search-submit {
    padding: 0;
    width: 60px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    outline: none !important;
    border: none;
    background-color: #10c317;
    color: #fff;
}
.blog-sidebar__box {
    margin-bottom: 30px;
    padding-left: 35px;
    padding-bottom: 10px;
}
.blog-sidebar__categories ul {
    margin-bottom: 0;
}
.blog-sidebar__categories ul li {
    text-align: right;
    margin-bottom: 10px;
    display: block;
    line-height: 1.4;
    color: #1d1c1c;
}
.blog-sidebar__categories ul li a {
    float: left;
    color: #1d1c1c;
    transition: all 0.5s ease;
}
.blog-sidebar__categories ul li a:hover {
  color: #10c317;
}
.blog-sidebar__categories ul li i {
    font-size: 14px;
}
.footer-widget__post-list {
    margin-bottom: 0;
    margin-top: 30px;
    padding-left: 0;
    list-style: none;
}
.footer-widget__post-list li {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
}
.footer-widget__post-list li > img {
    flex-shrink: 0;
}
.footer-widget__post-list-content {
    margin-left: 15px;
    width: 70%
}
.footer-widget__post-list-content span {
  font-size: 12px;
  color: #10c317;
  line-height: 1;
  display: block;
  margin-top: 0px;
  margin-bottom: 5px;
}
.footer-widget__post-list-content h3 {
    font-size: 20px;
    line-height: 26px;
    color: #555c63;
    margin-bottom: 0;
}
.blog-sidebar__tags-list {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}
.blog-sidebar__tags-list li {
    margin-right: 10px;
}
.blog-sidebar__tags-list li a {
    font-size: 14px !important;
    transition: all .5s ease;
    background: #fff;
    padding: 8px 14px;
    color: #000;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #dce4ed;
    -webkit-transition: all .5s ease-in-out 0s;
    -moz-transition: all .5s ease-in-out 0s;
    -ms-transition: all .5s ease-in-out 0s;
    -o-transition: all .5s ease-in-out 0s;
    transition: all .5s ease-in-out 0s;
}
.blog-sidebar__categories ul li a span {
    margin-left: 10px;
}
.blog-sidebar__tags-list li a:hover {
  background: #12ca59;
  color: #fff;
}
.footer-widget__post-list-content-image {
  width: 30%;
}
.footer-widget__post-list-content-image img {
  /* width: 100px;
  height: 66px; */
}
.footer-widget__post-list li a {
  display: flex;
}



@media only screen and (max-width: 767px) {

.hero-img {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.hero-section::before {
  background-color: #fff;
}
.hero-wrapper-text h2 {
  font-size: 24px;
}
.hero-wrapper-text {
  padding-top: 50px;
}
.type-wrap {
  font-size: 30px;
  text-align: center;
}
.type-wrap:after {
  left: 88px;
  bottom: -5px;
}
.one-section-title {
  margin-bottom: 0px !important;
}
.experience-info {
  margin-bottom: 20px;
}
.testimonials-box-wrapper {
  margin-bottom: 30px;
}


}