 /* Colors */
 :root {
   --color-default: #1bbd36;
   --color-primary: #2ae149;
   --color-secondary: #033FFF;
   --color-dark: #0C356A;
   --color-white: #fff;
   --color-background:#f3f1f0;
 }


 /*  */
 :root {
   --font-default: Arial, Helvetica, sans-serif;
 }

 li {
   list-style: none;
 }

 a {
   color: #1bbd36;
   text-decoration: none;
 }

 a:hover {
   color: #2ae149;
   text-decoration: none;
 }

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



 


 /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
 .back-to-top {
   position: fixed;
   visibility: hidden;
   opacity: 0;
   left: 15px;
   bottom: 3px;
   z-index: 996;
   background: #1bbd36;
   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: #21df41;
   color: #fff;
 }

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






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

 #header .logo {
   font-size: 28px;
   margin: 0;
   padding: 0;
   line-height: 1;
   font-weight: 700;
   letter-spacing: 0.5px;
   text-transform: uppercase;
 }

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

 #header .logo a span {
   color: #1bbd36;
 }

 #header .logo img {
   max-height: 110px;
 }





 /*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
 .header-social-links {
   margin-left: 20px;
   border-left: 3px solid var(--color-default);
 }

 .header-social-links a {
   color: var(--color-dark);
   display: inline-block;
   line-height: 0px;
   transition: 0.3s;
   padding-left: 20px;
 }

 .header-social-links a i {
   line-height: 0;
 }

 .header-social-links a:hover {
   color: #1bbd36;
 }

 @media (max-width: 768px) {
   .header-social-links {
     padding: 0 15px 0 0;
     border-left: 0;
   }
 }





 /*--------------------------------------------------------------
# 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 a,
 .navbar a:focus {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 0 10px 30px;
   font-family: "Roboto", sans-serif;
   font-size: 13px;
   font-weight: 600;
   color: #111;
   white-space: nowrap;
   text-transform: uppercase;
   transition: 0.3s;
 }

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

 .navbar a:hover,
 .navbar .active,
 .navbar .active:focus,
 .navbar li:hover>a {
   color: #1bbd36;
 }

 .navbar .dropdown ul {
   display: block;
   position: absolute;
   left: 14px;
   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;
   border-top: 2px solid #1bbd36;
 }

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

 .navbar .dropdown ul a {
   padding: 10px 20px;
   font-size: 14px;
   font-weight: 500;
   text-transform: none;
   color: #111;
 }

 .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: #1bbd36;
 }

 .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: #111;
   font-size: 28px;
   cursor: pointer;
   display: none;
   line-height: 0;
   transition: 0.5s;
 }

 .mobile-nav-toggle.bi-x {
   color: #fff;
 }

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

   .navbar ul {
     display: none;
   }
 }

 .navbar-mobile {
   position: fixed;
   overflow: hidden;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.9);
   transition: 0.3s;
   z-index: 999;
 }

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

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

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

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

 .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: #1bbd36;
 }

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





 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
 #hero {
   width: 100%;
   height: 100vh;
   background-color: rgba(0, 0, 0, 0.8);
   overflow: hidden;
   position: relative;
 }

 #hero #hero .hero-inner,
 #hero .hero-item,
 #hero .hero-item::before {
   background-size: cover;
   background-position: top center;
   background-repeat: no-repeat;
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
 }

 #hero .hero-container {
   display: flex;
   align-items: flex-end;
   justify-content: center;
   position: absolute;
   bottom: 60px;
   top: 70px;
   left: 55px;
   right: 55px;
 }

 #hero .hero-content {
   background: rgba(4, 4, 4, 0.599);
   padding: 20px;
   color: #fff;
   border-top: 5px solid #1bbd36;
 }

 #hero .hero-content h1 {
   color: #fff;
   margin-bottom: 20px;
   font-size: 28px;
   font-weight: 700;
 }

 #hero .btn-get-started {
   font-family: "Roboto", sans-serif;
   font-weight: bold;
   font-size:20px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 12px 32px;
   border-radius: 4px;
   transition: 0.5s;
   line-height: 1;
   margin: 10px;
   color: #fff;
   animation-delay: 0.8s;
   border: 2px solid #1bbd36;
 }

 #hero .btn-get-started:hover {
   background: #1bbd36;
   color: #fff;
   text-decoration: none;
 }

 #hero .hero-inner .hero-item {
   transition-property: opacity;
   background-position: center top;
 }



 @media (min-width: 1024px) {
   #hero .hero-content {
     width: 60%;
   }

 }

 @media (max-width: 992px) {
   #hero .hero-container {
     top: 58px;
   }

   #hero .hero-content h2 {
     margin-bottom: 15px;
     font-size: 22px;
   }

   #hero .hero-content p {
     font-size: 15px;
   }
 }

 @media (max-height: 500px) {
   #hero {
     height: 120vh;
   }
 }




 /*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
 .cta {
   background:  var(--color-background);
   padding: 60px 0;
   color: #574741;
 }

 .cta h3 {
   font-size: 28px;
   font-weight: 700;
 }

 .cta h3 span {
   color: var(--color-primary);
 }

 .cta p {
   padding: 0;
   margin: 0;
   font-size: 16px;
   line-height: 35px;
 }

 .cta .cta-btn {
   font-family: "Poppins", sans-serif;
   text-transform: uppercase;
   font-weight: bold;
   font-size: 16px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 10px 25px;
   border-radius: 2px;
   transition: 0.4s;
   margin: 10px;
   border-radius: 4px;
   border: 2px solid var(--color-primary);
   color: var(--color-primary);
   background: #fff;
 }

 .cta .cta-btn:hover {
   background: var(--color-primary);
   color: #fff;
 }

 @media (max-width: 1024px) {
   .cta {
     background-attachment: scroll;
   }
 }

 @media (min-width: 769px) {
   .cta .cta-btn-container {
     display: flex;
     align-items: center;
     justify-content: flex-end;
   }
 }

 /*  */


 /* offer */


 .line {
   display: inline-block;
   width: 300px;
   height: 5px;
   background-color: var(--color-default);
 }


 .labels {
   padding: 1% 0;
   margin-top: 5%;
   margin-bottom: 5%;
 }

 .alizarin {
   background: var(--color-primary);
 }

 .amethyst {
   background: var(--color-primary);
 }

 .emerald {
   background: var(--color-dark);
 }

 .midnight-blue {
   background: var(--color-dark);
 }



 .dl {
   background:  var(--color-background);
   padding: 30px 0;
   border-radius: 20px;
   position: relative;
 }

 .dl:before {
   content: " ";
   height: 20px;
   width: 20px;
   background: #ddd;
   border-radius: 20px;
   position: absolute;
   left: 50%;
   top: 20px;
   margin-left: -10px;
 }

 .dl .brand {
   text-transform: uppercase;
   letter-spacing: 3px;
   padding: 10px 15px;
   margin-top: 10px;
   text-align: center;
   min-height: 100px;
 }

 .dl .discount {
   min-height: 50px;
   position: relative;
   font-size: 80px;
   line-height: 80px;
   text-align: center;
   font-weight: 700;
   padding: 20px 15px 0;
   color: var(--color-white);
 }

 .dl .discount:after {
   content: " ";
   border-right: 20px solid transparent;
   border-left: 20px solid transparent;
   position: absolute;
   bottom: -20px;
   left: 20%;
 }

 .dl .discount.alizarin:after {
   border-top: 20px solid var(--color-primary);
 }



 .dl .discount.emerald:after {
   border-top: 20px solid var(--color-dark);
 }

 .dl .discount.amethyst:after {
   border-top: 20px solid var(--color-primary);
 }

 .dl .discount .type {
   font-size: 20px;
   letter-spacing: 1px;
   text-transform: uppercase;
   margin-top: -30px;
 }

 .dl .descr {
   color: #999;
   margin-top: 10px;
   padding: 20px 15px;
 }

 .dl .ends {
   padding: 0 15px;
   color: var(--color-default);
   margin-bottom: 10px;
 }

 .dl .coupon {
   min-height: 50px;
   text-align: center;
   text-transform: uppercase;
   font-weight: 700;
   font-size: 18px;
   padding: 20px 15px;
 }

 .dl .coupon a.open-code {
   color: var(--color-primary);
 }

 /* end of offer */






 /* -------------------------------------------------------------------- */
 .backblack {
   background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../img/back.jpg');
   background-position: bottom;
   background-size: cover;
   background-repeat: no-repeat;
   height: 400px;
 }

 .parent {
   position: relative;
 }

 .custom-shape-divider-bottom-1712229004 {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   overflow: hidden;
   line-height: 0;
 }

 .custom-shape-divider-bottom-1712229004 svg {

   display: block;
   width: calc(100% + 1.3px);
   height: 150px;
 }

 .custom-shape-divider-bottom-1712229004 .shape-fill {
   fill: #fff;
 }

 .headclients {
   color: var(--color-default);
   text-align: center;
   text-transform: uppercase;
   padding: 2%;

 }



 /*marquee*/
 .marquee {
   width: 100%;
   margin: 0 auto;
   overflow: hidden;
   white-space: nowrap;
   box-sizing: border-box;
   animation: marquee 50s linear infinite;
   color: #fff;
 }

 .marquee:hover {
   animation-play-state: paused
 }

 /* Make it move */
 @keyframes marquee {
   0% {
     text-indent: 27.5em;
   }

   100% {
     text-indent: -105em;
   }
 }

 /* ------------------------------------------------------------ */






 /*  */


 .parent2 {
   position: relative;

 }

 .custom-shape-divider-top-1712231946 {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   overflow: hidden;
   line-height: 0;
   transform: rotate(180deg);
 }

 .custom-shape-divider-top-1712231946 svg {

   display: block;
   width: calc(100% + 1.3px);
   height: 150px;
 }

 .custom-shape-divider-top-1712231946 .shape-fill {
   fill: #FFF;
 }

 .why-us li {
   margin-bottom: 2px;
 }


 .points {
   color: var(--color-white);
   line-height: 35px;
   letter-spacing: 1.5px;



 }

 .headwhyus {
   color: var(--color-default);
   text-transform: uppercase;
   text-align: center;
   padding:2%;
 }

 /*  */




 /*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 2px solid rgba(0, 0, 0, 0.2);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--color-dark);
  transition: 0.3s;
}















/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1bbd36;
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

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

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

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

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









/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/


section {
 padding: 60px 0;
 overflow: hidden;
}

.section-bg {
 background-color:var(--color-background);
}

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

.section-title h2 {
 font-size: 13px;
 letter-spacing: 1px;
 font-weight: bold;
 padding: 8px 20px;
 margin: 0;
 background: #e7f1fd;
 color: var(--color-secondary);
 display: inline-block;
 text-transform: uppercase;
 border-radius: 50px;
}

.section-title h3 {
 margin: 15px 0 0 0;
 font-size: 32px;
 font-weight: 700;
}

.section-title h3 span {
 color: var(--color-secondary);
}

.section-title p {
 margin: 15px auto 0 auto;
 font-weight: 600;
}

@media (min-width: 1024px) {
 .section-title p {
   width: 50%;
 }
}


.faq {
 padding: 60px 0;
}

.faq .faq-list {
 padding: 0;
 list-style: none;
}

.faq .faq-list li {
 border-bottom: 1px solid var(--color-secondary);
 margin-bottom: 20px;
 padding-bottom: 20px;
}

.faq .faq-list .question {
 display: block;
 position: relative;
 font-size: 18px;
 line-height: 24px;
 font-weight: 500;
 padding-left: 25px;
 cursor: pointer;
 color: #000;
 transition: 0.3s;
}

.faq .faq-list i {
 font-size: 16px;
 position: absolute;
 left: 0;
 top: -2px;
}

.faq .faq-list p {
 margin-bottom: 0;
 padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
 display: none;
}

.faq .faq-list .collapsed {
 color: black;
}

.faq .faq-list .collapsed:hover {
 color: var(--color-secondary);
}

.faq .faq-list .collapsed .icon-show {
 display: inline-block;
 transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
 display: none;
 transition: 0.6s;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1bbd36;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #1bbd36;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact .info:hover i {
  background: #1bbd36;
  color: #fff;
}

.contact .form-contact {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .form-contact .form-group {
  padding-bottom: 8px;
}


.contact .form-contact input,
.contact .form-contact textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .form-contact input:focus,
.contact .form-contact textarea:focus {
  border-color: #1bbd36;
}

.contact .form-contact input {
  height: 44px;
}

.contact .form-contact textarea {
  padding: 10px 12px;
}

.contact .form-contact button[type=submit] {
  background: #1bbd36;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}



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

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

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

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

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

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

#footer .footer-top .footer-links ul li {
  padding: 10px 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: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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



#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1bbd36;
  color: #fff;
  text-decoration: none;
}

/*  */


.text{
 line-height:1.9;
 font-size:16px;
}

#service .btn-get-started {
 font-family: "Roboto", sans-serif;
 font-weight: 500;
 font-size: 20px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 12px 32px;
 border-radius: 4px;
 transition: 0.5s;
 line-height: 1;
 margin: 10px;
 color: #121212;
 animation-delay: 0.8s;
 border: 2px solid #1bbd36;
}

#service .btn-get-started:hover {
 background: #1bbd36;
 color: #fff;
 text-decoration: none;
}
/* ------------------------------------------------ */



/* Testimonials Section - Home Page
------------------------------*/
.testimonials {
background-color:  var(--color-background);
}

.testimonials .info h3 {
 font-weight: 700;
 font-size: 32px;
}

.testimonials .swiper {
 box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
 background-color: #fff;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
 overflow: hidden;
}

.testimonials .testimonial-item {
 box-sizing: content-box;
 min-height: 200px;
 position: relative;
 margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
 width: 90px;
 height: 90px;
 border-radius: 50px;
 border: 6px solid var(--color-primary);
 margin-right: 10px;
}

.testimonials .testimonial-item h3 {
 font-size: 18px;
 font-weight: bold;
 margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
 color: var(--color-secondary);
 font-size: 14px;
 margin: 0;
}

.testimonials .testimonial-item .stars {
 margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
 color: #ffc107;
 margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
 color: var(--color-primary);
 font-size: 26px;
 line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
 display: inline-block;
 left: -5px;
 position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
 display: inline-block;
 right: -5px;
 position: relative;
 top: 10px;
 transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
 font-style: italic;
 margin: 15px auto 15px auto;
 line-height: 1.9;

}

.testimonials .swiper-wrapper {
 height: auto;
}

.testimonials .swiper-pagination {
 margin-top: 20px;
 margin-bottom: 20px;
 position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
 width: 10px;
 height: 10px;
 background-color: var(--color-secondary);
 opacity: 1;
 border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
 background-color: var(--color-primary);
}

@media (max-width: 767px) {

 .testimonials .testimonials-carousel,
 .testimonials .testimonials-slider {
   overflow: hidden;
 }

 .testimonials .testimonial-item {
   margin: 15px;
 }
}
/*  */

.info-btn{
 width: 150px;
}

/*  */


  .btn-get-started {
 font-family: "Roboto", sans-serif;
 font-weight: 500;
 font-size: 20px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 12px 32px;
 border-radius: 4px;
 transition: 0.5s;
 line-height: 1;
 margin: 10px;
 color: #121212;
 animation-delay: 0.8s;
 border: 2px solid #1bbd36;
}

 .btn-get-started:hover {
 background: #1bbd36;
 color: #fff;
 text-decoration: none;
}

/*  */
.spam{
  display:none;
}