@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&amp;display=swap");
:root{
  --primary:#00686b;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  color: #444444;
}

a {
  color: #5b2d90;
  text-decoration: none;
}

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

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

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

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

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

  100% {
    transform: rotate(360deg);
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--primary);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff; 
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #15ba9b;
  text-decoration: underline;
}

#topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: #15ba9b;
}

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

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

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

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

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

#header .logo img {
  max-height: 100px;
}
#header.fixed-top .logo img {
  max-height: 65px;
}
.scrolled-offset {
  margin-top: 70px;
}

.underline-shape {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #ffe681;
}
/* .underline-shape::after {
  content: "";
  position: absolute;
  left: -4px;
  width: calc(100% + 8px);
  bottom: 7px;
  background-color: #F26730;
  z-index: -1;
  height: 27%;
} */

.theme-btn {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  background-color: #5b2d90;
  padding: 0 35px;
  overflow: hidden;
  text-align: center;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
  font-weight: 500; 
  border: none;
}
.theme-btn::before {
  background-color: #171d24;
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: -1;
  height: 103%;
  width: 102%;
  border-radius: 4px;
  content: "";
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.theme-btn:hover {
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.theme-btn:hover::before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-120 {
  padding-bottom: 120px;
}



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

}

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

.navbar li {
  position: relative;
}

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

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative; 
  text-transform: uppercase;
}

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

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

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #15ba9b;
}

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

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

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

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

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

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

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

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

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

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

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

.mobile-nav-toggle.fa-times {
  color: #000;
}

@media (max-width: 991px) {
  /* .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  } */

  .navbar {
    transition: .3s;
  }
}
.navbar-mobile {
  background-color: #fff;
  position: fixed;
  width: 320px;
  top: 0;
  right: -100%;
  overflow: hidden;
  height: calc(100vh + 0px);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 11;
}
.navbar.navbar-mobile {
  right:0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


.fix-social {
  position: fixed;
    top: 30%;
    right: -32%;
    z-index: 10000;
}
.fix-social ul {
  list-style: none;
  padding: 0;
  transform: translateX(-260px);
}
.fix-social ul li {
  display: block;
  margin: 5px;
  background: var(--primary);
  width: 300px;
  padding: 10px;
  border-radius: 30px 0px 0px 30px;
  transition: all 1s;
}
.fix-social ul li:hover {
  transform: translateX(-120px);
}
.fix-social ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bolder;
}
.fix-social ul li i {
  text-align: center;
  color: #000;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  transform: rotate(0deg);
}
.slider { 
  position: relative;
  overflow: hidden;
}

.slider .item-content { 
  position: absolute;
    top: 35%;
    left: 57%;
    z-index: 2;
    width: 650px;
}
.slider .item-content h1 {
  line-height: 44px;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
}
.slider .item-content h1 .underline-shape::after {
  background-color: #F26730;
}
.slider .item-content p {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 30px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

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

.section-title h6 {
    display: inline-block;
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #a7b4c0;
}

.section-title h2 {
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.section-title p {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #4c5267;
    line-height: 26px; 
    text-align: center;
}


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

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

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

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# feature
--------------------------------------------------------------*/
.feature {
  background: url("../img/calculator-bg.png"), var(--primary);
  overflow: hidden;
  position: relative;
}

.feature .owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.feature-widget {
  text-align: center;
  background-color: var(--bs-white);
  border: 1px solid var(--black_50);
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 40px 33px;
  height: 100%;
}

.feature-widget:hover {
  box-shadow: 0px 5.9348835945px 29.6744174957px 0px rgba(6, 7, 46, 0.1019607843);
}
.feature-widget h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-top: 0px;
  margin-bottom: 10px; 
  min-height: 70px;
}
.feature-widget p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--p_color);
  font-family: "Roboto", sans-serif;
  margin-bottom: 8px;
}
.feature-widget a { 
  background: #15ba9b;
  border-radius: 20px; 
  padding: 5px 15px;
  color: #fff;
}

.feature-widget-i {
  background: #0c6c5a;
 padding: 15px 20px 0px;
 margin-right: 15px;
 border-radius: 5px;
 line-height: 40px; 
 min-height: 65px; 
}
.feature-widget-i i { 
 color: #fff; 
 font-size: 24px;
}


.testimonial .shapes img,
.feature .shapes img{
  position: absolute;
  animation: pulse 1.5s ease-out infinite alternate both;
}
.testimonial .shapes img:nth-child(1),
.feature .shapes img:nth-child(1) {
  top: 15%;
  left: 15%;
  animation: floatingBubble 15s linear infinite alternate both;
}
.testimonial  .shapes img:nth-child(2),
.feature  .shapes img:nth-child(2) {
  top: 25%;
  left: 40%;
  animation: moveX 15s linear infinite alternate both;
}
.testimonial  .shapes img:nth-child(3),
.feature  .shapes img:nth-child(3) {
  right: 35%;
  top: 15%;
  animation: moveY 15s linear infinite alternate both;
}
.testimonial  .shapes img:nth-child(4),
.feature  .shapes img:nth-child(4) {
  top: 0%;
  right: 10%;
}
.testimonial  .shapes img:nth-child(5),
.feature  .shapes img:nth-child(5) {
  top: 35%;
  left: 60%;
  animation: floatingBubble2 15s linear infinite alternate both;
}
.testimonial  .shapes img:nth-child(6),
.feature  .shapes img:nth-child(6) {
  bottom: 0%;
  left: 15%;
}
.testimonial  .shapes img:nth-child(7),
.feature  .shapes img:nth-child(7) {
  bottom: 25%;
  right: 10%;
  animation: moveY 15s linear infinite alternate both;
}
.testimonial  .shapes img:nth-child(8),
.feature  .shapes img:nth-child(8) {
  top: 5%;
  left: 0%;
  opacity: 0.1;
  animation: none;
}
.testimonial  .shapes img:nth-child(9),
.feature  .shapes img:nth-child(9) {
  bottom: 20%;
  right: 0%;
  opacity: 0.1;
  animation: none;
}

.choose-widget { 
  padding: 15px; 
  display: flex;  
}
.choose-widget-i img {
  border: 20px solid var(--primary);
  border-radius: 100px;
  transition: all .7s ease-in-out;
}

.choose-widget-h4 { 
  align-content: center;
  position: relative;
}
.choose-widget-h4::before{
  position: absolute;
  top: 10px;
  left: -35px;
  content: '';
  width: 175%;
  height: 20px;
  background: var(--primary);
  transition: all .7s ease-in-out;

}
.choose-widget-h4::after{
  position: absolute;
  bottom: 10px;
  left: -35px;
  content: '';
  width: 175%;
  height: 1px;
  background: #000;
}
.choose-widget-h4 h5 {
    position: relative;
    padding-left: 10px;
    padding-top: 10px;
    width: 115px; 
    margin: 0;
    transition: all .7s ease-in-out;

}
.choose-widget:hover .choose-widget-i img{
  border-color: #191919;
  transform: rotate(360deg);
}
.choose-widget:hover .choose-widget-h4 h5{
  font-size: 24px;
}
.choose-widget:hover .choose-widget-h4::before{
  background: #191919;

}


.testimonial,.calculator { 
  background: url("../img/calculator-bg.png"), var(--primary);
  overflow: hidden;
  position: relative;
}
.testimonial .testimonial-slider .slick-list {
margin: 0 -25px;
padding: 0 10px;
}
.testimonial .testimonial-slider .slick-dots {
bottom: inherit;
}
.testimonial .testimonial-slider .slick-dots li.slick-active button {
background-color: #5d5d66;
border-color: #5d5d66;
}
.testimonial .testimonial-slider .single-client {
padding: 20px 25px;
box-shadow: 0 0.5px 1px 0 rgba(51, 77, 114, 0.1), 0px 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);
-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;
margin: 55px 15px;
border-radius: 10px;
background: var(--bs-white);
}
.testimonial .testimonial-slider .single-client:hover {
box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.15);
}
.testimonial .testimonial-slider .single-client img {
border-radius: 50%;
margin-top: -55px;
width: auto !important;
}
.testimonial .testimonial-slider .single-client .quote {
font-size: 17px;
font-family: "Inter", sans-serif;
font-weight: 400;
font-style: italic;
color: var(--black_600);
margin: 25px 0 39px 0;
position: relative;
}
.testimonial .testimonial-slider .single-client .quote::after {
content: "\f10e";
position: absolute;
bottom: -15px;
right: 10px;
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-style: normal;
color: #6d27e5;
font-size: 25px;
opacity: 0.3;
}
.testimonial .testimonial-slider .single-client .client-info {
display: flex;
justify-content: space-between;
padding: 0 0 10px 0;
align-items: center;
}
.testimonial .testimonial-slider .single-client .client-info p {
font-size: 17px;
font-family: "Roboto", sans-serif;
font-weight: 500;
color: var(--secondary_color);
text-transform: capitalize;
line-height: 28px;
}
.testimonial .testimonial-slider .single-client .client-info .role {
display: inline-block;
font-size: 12px;
color: var(--p_color);
font-family: "Inter", sans-serif;
font-weight: 400;
text-transform: capitalize;
line-height: 19px;
}
.testimonial .testimonial-slider .single-client .client-info .rating a i {
color: #efba34;
font-size: 14px;
}


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

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

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

#footer .footer-top p {
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  position: relative;
  padding-bottom: 12px;
}

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

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

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

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}

#footer .copyright {
  background-color: rgba(255, 255, 255, 0.1);
}

#footer .copyright .copyright-text {
  color: #c8ccd0;
}
#footer .copyright .copyright-text p {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #9199a1;
}
#footer .copyright .social-button a {
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease-out; 
  margin-right: 15px;
}


.details input {
  width: 100%;
}

.detail {
  display: flex;
  justify-content: space-between;
}


.about .nav-pills .nav-item{ 
  width: 50%;
}
.about .nav-pills .nav-item button{
  width: 100%;
  border: 0;
  border-radius: 0;
  color: var(--primary);
} 
.about .nav-pills .nav-item button.active{
  background: var(--primary);
  color: #fff;
}
.about .nav-pills .nav-item button.active::after {
  position: absolute;
  bottom: -39px;
  height: 0;
  width: 0;
  left: 50%;
  transform: rotate(180deg);
  border: 20px solid transparent;
  border-bottom-color: var(--primary);
  content: "";
}
.benefits-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.benefits-options li {
  list-style: none;
  padding: 0 0 0 50px;
  font-weight: 500;
  font-size: 20px;
  line-height: 50px;
  color: rgba(90, 90, 90, 1);
  flex-basis: 50%;
  box-sizing: border-box;
}
.cta-one {
  background-color: #f2f4f8;
  padding: 100px 0;
}
.cta-one h2 {
    font-size: 45px;
    line-height: 60px;
}

.cta-one .btn-secondary {
  align-items: center;
  border-radius: 30px;
  column-gap: 10px;
  display: inline-flex;
  font-size: 16px;
  line-height: 30px;
  overflow: hidden;
  padding: 8px 30px;
  position: relative;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  z-index: 1;
  background: var(--primary);
  border: 1px solid var(--primary);
  position: relative;
}
.cta-one .btn-secondary:hover {
  background-color: #fff;
  border-color: var(--primary);
  color: var(--primary);

}
.cta-one .btn-secondary:hover i {
  transform: rotate(-45deg);
}

/*Resposive*/

@media (max-width:991px){
  .back-to-top.active {
    visibility: hidden;
    opacity: 1;
}
  .fix-social {
    position: fixed;
    top: auto;
    right: auto;
    width: 100%;
    bottom: 0px;
    left: 0;
    z-index: 2;
  }
  .fix-social ul {
    list-style: none;
    padding: 0;
    transform: none;
  }
  .fix-social ul li {
    display: block;
    margin: 5px;
    background: var(--primary);
    width: 47%;
    padding: 10px;
     border-radius: 30px 0px 30px 0px; 
    transition: all 1s;
    float: left;
    text-align: center;
  }
  .fix-social ul li:hover {
    transform: translateX(0px);
}
}

@media (max-width:1399px){
  .feature-widget {
    padding: 40px 25px;
}
}
@media (max-width:575px){
  #header .logo img {
    max-height: 80px;
}

.slider .loan-calculator {
  max-width: 340px;
  padding: 15px 20px;
  top: 3%;
  left: 0;
  right: 0;
  margin: auto;
}
.loan-calculator .form-cap {
  font-size: 14px;
}
.slider .item-content {
  top: 72%;
  left: 0;
  width: 320px;
  right: 0;
  margin: auto;
}
.slider .item-content h1 {
  line-height: 30px;
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
}
.slider .item-content p {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
}
.process-widget.even {
  margin-top: 0px;
}

.arrowRow { display: none;}

.calculator .shapes img:nth-child(8), .testimonial .shapes img:nth-child(8), .feature .shapes img:nth-child(8) { 
  display: none;
}
#header {
  height: 90px;
}
.cta-one h2 {
  font-size: 24px;
  line-height: 30px;
}

.cta-one {
  padding: 50px 0;
}
.testimonial .testimonial-slider .single-client {
  
  margin: 0px 15px;
}
}