@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/fontawesome.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css");
*,
::after,
::before {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
}

@supports (-webkit-overflow-scrolling: touch) {
  input {
    font-size: 16px;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  line-height: 28px;
  font-weight: 400;
  color: #373737;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  html,
  body {
    font-size: 14px;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.-mt-3 {
  margin-top: -15px;
}

.-mt-5 {
  margin-top: -25px;
}

.dashed {
  border-top: 1px dashed #D2D2D2;
  border-bottom: 1px dashed #D2D2D2;
}

#detailOverlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.297);
  z-index: 2000;
}

.top-3 {
  top: 1rem;
}

.text-red {
  color: #e13b45;
}

.ring_none:focus,
.ring_none:hover,
.ring_none:active {
  outline: none !important;
  box-shadow: none;
}

.z-index-new {
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 62px;
}
@media (max-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 30px;
  }
}

section {
  margin-top: 40px;
}
@media (max-width: 991px) {
  section {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  section {
    margin-top: 45px;
  }
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  display: inline-block;
}

a {
  text-decoration: none;
  color: transparent;
}

.outer {
  /* header */
  /* banner */
  /* about section */
  /* tool_renter */
  /* promise */
  /* testimonial */
  /* tool owner */
  /* tool buddy */
  /* contact us */
  /* footer */
  /* ---- about us page ---- */
  /* save money */
  /* ---- product page ---- */
  /* multiple tabs */
  /* product */
  /* ---- product detail page ---- */
  /* product detail */
  /* ---- view product page ---- */
  /* product */
}
.outer #header {
  background-color: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .outer #header {
    padding-bottom: 75px;
  }
}
.outer #header .header_outer .logo img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .outer #header .header_outer .logo img {
    max-width: 80%;
    width: 100%;
  }
}
.outer #header .header_outer .navbar {
  padding: 0;
}
@media (max-width: 1200px) {
  .outer #header .header_outer .navbar {
    position: fixed;
    width: 300px;
    height: 100vh;
    top: 0px;
    left: -300px;
    background-color: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
    padding: 30px 0px;
    transition: all 0.5s;
    display: block;
    z-index: 1;
  }
}
.outer #header .header_outer .navbar .logo_img {
  display: none;
}
@media (max-width: 1200px) {
  .outer #header .header_outer .navbar .logo_img {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .outer #header .header_outer .navbar ul {
    width: 100%;
    margin-top: 50px;
  }
}
@media (max-width: 1200px) {
  .outer #header .header_outer .navbar ul li {
    display: block;
    margin: 20px 0;
  }
}
.outer #header .header_outer .navbar ul li a {
  padding: 10px 0 10px 30px;
  font-weight: 600;
  font-size: 15px;
  color: #373737;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1200px) {
  .outer #header .header_outer .navbar ul li a {
    border-bottom: 2px solid transparent;
    padding: 10px 0 10px 20px;
  }
}
.outer #header .header_outer .navbar ul li a.active {
  color: #E13B45;
}
@media (max-width: 1200px) {
  .outer #header .header_outer .navbar ul li a.active {
    border-bottom: 2px solid #E13B45;
    width: 100%;
  }
}
.outer #header .header_outer .navbar .button-nav {
  display: none;
}
@media (max-width: 1200px) {
  .outer #header .header_outer .navbar .button-nav {
    display: inline-flex;
    margin-top: 30px;
  }
}
@media (max-width: 1200px) {
  .outer #header .header_outer .navbar.show {
    left: 0;
  }
}
.outer #header .header_outer .form-group {
  margin-left: 30px;
  position: relative;
}
@media (max-width: 1200px) {
  .outer #header .header_outer .form-group {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .outer #header .header_outer .form-group {
    display: none;
  }
}
.outer #header .header_outer .form-group input {
  background-color: #fff;
  border: 1px solid #E13B45;
  font-size: 14px;
  height: 45px;
  width: 335px;
  border-radius: 5px;
  font-weight: 400;
}
.outer #header .header_outer .form-group .btn {
  position: absolute;
  color: #E13B45;
  font-size: 18px;
  top: 3px;
  right: 0;
  outline: none;
  border: none;
}
.outer #header .header_outer .download-now-btn {
  margin-left: 10px;
  background: #E13B45;
  color: #fff;
  border-radius: 5px;
  padding: 8px 25px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .outer #header .header_outer .download-now-btn {
    display: none;
  }
}
.outer #header .header_outer .download-now-btn .bi {
  margin-left: 5px;
  font-size: 20px;
}
.outer #header .header_outer .search-btn {
  color: #E13B45;
  outline: none;
  border: none;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  font-size: 24px;
  background: transparent;
  visibility: hidden;
  position: absolute;
  right: 0;
}
@media (max-width: 767px) {
  .outer #header .header_outer .search-btn {
    visibility: visible;
    right: 80px;
  }
}
.outer #header .header_outer #popup {
  display: none;
}
@media (max-width: 767px) {
  .outer #header .header_outer #popup {
    display: block;
  }
}
.outer #header .header_outer #popup .popup-outer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  position: absolute;
  top: 90px;
  left: 0;
  transition: all 0.5s;
}
.outer #header .header_outer #popup .popup-outer .popup {
  width: 100%;
  padding: 0 15px;
}
.outer #header .header_outer #popup .popup-outer .popup .close-popup {
  position: absolute;
  top: 3px;
  right: 15px;
  z-index: 1;
  display: none;
}
.outer #header .header_outer #popup .popup-outer .popup .close-popup a {
  font-size: 20px;
  background-color: #E13B45;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer #header .header_outer #popup .popup-outer .popup .form-group {
  margin: 0;
  padding: 0;
  display: block;
}
.outer #header .header_outer #popup .popup-outer .popup .form-group input {
  background-color: #fff;
  border: 1px solid #828181;
  font-size: 12px;
  height: 45px;
  border-radius: 5px;
  outline: none;
  display: block;
  width: 100%;
}
.outer #header .header_outer .toggle {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  cursor: pointer;
  overflow: hidden;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .outer #header .header_outer .toggle {
    visibility: visible;
  }
}
.outer #header .header_outer .toggle span {
  position: absolute;
  width: 40px;
  height: 4px;
  background: #E13B45;
  border-radius: 10px;
  transition: 0.5s;
}
.outer #header .header_outer .toggle span:nth-child(1) {
  transform: translateY(-10px);
  width: 25px;
  left: 15px;
}
.outer #header .header_outer .toggle.show span:nth-child(1) {
  width: 30px;
  transform: translateY(0) rotate(45deg);
  transition-delay: 0.125s;
}
.outer #header .header_outer .toggle span:nth-child(2) {
  transform: translateY(10px);
  width: 15px;
  left: 15px;
}
.outer #header .header_outer .toggle.show span:nth-child(2) {
  width: 30px;
  transform: translateY(0) rotate(315deg);
  transition-delay: 0.25s;
}
.outer #header .header_outer .toggle.show span:nth-child(3) {
  transform: translateX(60px);
}
.outer #banner {
  background-color: #fff;
  border-bottom-left-radius: 50% 25%;
  border-bottom-right-radius: 50% 25%;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 120px 0 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100%;
}
@media (max-width: 991px) {
  .outer #banner {
    min-height: 500px;
    border-radius: 0;
    margin-bottom: 25px;
  }
}
.outer #banner .small_device {
  display: none;
}
.outer #banner .small_device .text h6 {
  font-size: 16px;
  line-height: 30px;
  color: #2b2b2b;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .outer #banner .small_device .text h6 {
    font-size: 14px;
    line-height: 25px;
  }
}
.outer #banner .small_device .text h1 {
  color: #E13B45;
  font-size: 56px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 70px;
}
@media (max-width: 767px) {
  .outer #banner .small_device .text h1 {
    font-size: 42px;
    margin-top: 10px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .outer #banner .small_device .text h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.outer #banner .small_device .text h5 {
  font-size: 24px;
  color: #E13B45;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  line-height: 28px;
}
@media (max-width: 767px) {
  .outer #banner .small_device .text h5 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 500px) {
  .outer #banner .small_device .text h5 {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .outer #banner .small_device .text .icons {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .outer #banner .small_device .text .icons {
    justify-content: center;
    margin-top: 10px;
  }
}
.outer #banner .small_device .text .icons .download_icon {
  padding-right: 15px;
}
@media (max-width: 991px) {
  .outer #banner .small_device .text .icons .download_icon {
    padding-right: 0;
    margin: 0 10px;
  }
}
.outer #banner .small_device .text .icons img {
  width: 150px;
}
@media (max-width: 767px) {
  .outer #banner .small_device .text .icons img {
    width: 100px;
  }
}
@media (max-width: 1024px) {
  .outer #banner .text {
    text-align: center;
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .outer #banner .text {
    order: 2;
    margin-top: 20px;
  }
}
.outer #banner .text h6 {
  font-size: 16px;
  line-height: 30px;
  color: #2b2b2b;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .outer #banner .text h6 {
    font-size: 14px;
    line-height: 25px;
  }
}
.outer #banner .text h1 {
  color: #E13B45;
  font-size: 56px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 70px;
}
@media (max-width: 767px) {
  .outer #banner .text h1 {
    font-size: 42px;
    margin-top: 10px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .outer #banner .text h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.outer #banner .text h5 {
  font-size: 24px;
  color: #E13B45;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  line-height: 28px;
}
@media (max-width: 767px) {
  .outer #banner .text h5 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 500px) {
  .outer #banner .text h5 {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .outer #banner .text .icons {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .outer #banner .text .icons {
    justify-content: center;
    margin-top: 10px;
  }
}
.outer #banner .text .icons .download_icon {
  padding-right: 15px;
}
@media (max-width: 991px) {
  .outer #banner .text .icons .download_icon {
    padding-right: 0;
    margin: 0 10px;
  }
}
.outer #banner .text .icons img {
  width: 150px;
}
@media (max-width: 767px) {
  .outer #banner .text .icons img {
    width: 100px;
  }
}
@media (max-width: 991px) {
  .outer #banner .image {
    order: 1;
  }
}
.outer #banner .image img {
  max-width: 100%;
  max-height: 500px;
}
@media (max-width: 991px) {
  .outer #banner .image img {
    display: none;
  }
}
.outer #banner .slick-slide img {
  display: unset;
}
.outer #banner .slick-dots {
  position: relative;
}
@media (max-width: 991px) {
  .outer #banner .slick-dots {
    display: none;
  }
}
.outer #banner .slick-dots li {
  margin: 0 5px;
}
.outer #banner .slick-dots li button {
  background: transparent;
}
.outer #banner .slick-dots li button::before {
  font-size: 10px;
  color: #373737;
  opacity: 0.75;
  border: 1px solid transparent;
  border-radius: 50%;
}
.outer #banner .slick-dots li.slick-active button::before {
  font-size: 8px;
  color: #E13B45;
  opacity: 1;
  border: 1px solid #E13B45;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .outer .about {
    padding-top: 0px;
  }
}
.outer .about .about_text {
  font-size: 22px;
  color: #E13B45;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .outer .about .about_text {
    display: flex;
    justify-content: center;
  }
}
.outer .about .left h2 {
  font-size: 46px;
  line-height: 62px;
}
@media (max-width: 1199px) {
  .outer .about .left h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .outer .about .left h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 35px;
  }
}
.outer .about .right {
  padding-left: 60px;
}
@media (max-width: 1199px) {
  .outer .about .right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .outer .about .right {
    text-align: center;
    padding-left: 0;
  }
}
.outer .about .right h6 {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .outer .about .right h6 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .outer .about .right h6 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.outer .about .features {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .outer .about .features {
    margin-top: 0;
  }
}
.outer .about .features .outer_box {
  text-align: center;
}
@media (max-width: 767px) {
  .outer .about .features .outer_box {
    margin-top: 20px;
  }
}
.outer .about .features .outer_box .image {
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}
.outer .about .features .outer_box .image img {
  max-width: 100%;
}
.outer .about .features .outer_box h4 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .outer .about .features .outer_box h4 {
    font-size: 18px;
  }
}
.outer .about .features .outer_box p {
  font-size: 14px;
  line-height: 25px;
}
@media (max-width: 500px) {
  .outer .tool_renter {
    margin-top: 30px;
  }
}
.outer .tool_renter .colored_box {
  background-color: #E13B45;
  border-radius: 35px;
  padding: 30px 0px;
}
.outer .tool_renter .colored_box .text {
  position: relative;
}
.outer .tool_renter .colored_box .text .image {
  position: absolute;
  bottom: 15px;
  right: 60px;
}
.outer .tool_renter .colored_box .text .image img {
  max-width: 100%;
}
.outer .tool_renter .colored_box .text .content {
  text-align: center;
  padding: 0 50px;
}
.outer .tool_renter .colored_box .text .content h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 45px;
}
@media (max-width: 767px) {
  .outer .tool_renter .colored_box .text .content h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  .outer .tool_renter .colored_box .text .content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
  }
}
.outer .tool_renter .colored_box .text .content p {
  color: #fff;
  margin-top: 30px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .outer .tool_renter .colored_box .text .content p {
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  .outer .tool_renter .colored_box .text .content p {
    margin-top: 10px;
  }
}
.outer .tool_renter .colored_box .steps .steps_wrapper {
  padding: 50px 0;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px rgba(0, 0, 0, 0.0509803922);
  margin-right: 40px;
  counter-reset: a;
}
@media (max-width: 991px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper {
    padding: 20px 0;
  }
}
.outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner {
  display: flex;
}
@media (max-width: 767px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner {
    justify-content: center;
  }
}
.outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box {
  position: relative;
  flex: 1;
  padding-top: 50px;
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box {
    width: 45%;
    flex: unset;
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box {
    width: 100%;
    flex: unset;
    margin-bottom: 25px;
  }
}
.outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box::after {
  content: counter(a);
  counter-increment: a;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: #F9D8DA;
  border-radius: 50%;
  color: #E13B45;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-width: 60px;
  width: 60px;
  height: 60px;
  border: 5px solid #fff;
}
.outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 80px;
  border-top: 2px dashed #F9D8DA;
  top: 30px;
}
@media (max-width: 767px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box::before {
    left: 140px;
  }
}
@media (max-width: 500px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box::before {
    display: none;
  }
}
.outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 21px;
  height: 80px;
}
@media (max-width: 767px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_img {
    margin-top: 15px;
    margin-bottom: 0px;
  }
}
.outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_img img {
  max-height: 80px;
}
.outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_text {
  display: inline-block;
  text-align: center;
  font-weight: 600;
}
.outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box:last-child::before {
  display: none;
}
@media (max-width: 767px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box:nth-child(3) {
    order: 2;
    margin-top: 60px;
  }
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box:nth-child(3)::before {
    left: -140px;
  }
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box:nth-child(2)::before {
    rotate: 90deg;
    left: 40%;
    top: 200px;
    width: 20%;
  }
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box:last-child {
    order: 1;
    margin-top: 60px;
  }
}
@media (max-width: 500px) {
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box:nth-child(3) {
    margin-top: 0;
    order: 2;
  }
  .outer .tool_renter .colored_box .steps .steps_wrapper .steps_inner .step_box:last-child {
    margin-top: 0;
    order: 2;
  }
}
.outer .promise {
  background-color: #fff;
  border-bottom-right-radius: 500px;
  box-shadow: 0px 15px 20px rgba(114, 114, 114, 0.25);
  position: relative;
  overflow: hidden;
  background-image: url(../images/promise_img.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (max-width: 1199px) {
  .outer .promise {
    border-bottom-right-radius: 0px;
    box-shadow: none;
    background-image: none;
  }
}
@media (max-width: 500px) {
  .outer .promise {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.outer .promise .main_outer h2 {
  font-size: 46px;
  line-height: 62px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .outer .promise .main_outer h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .outer .promise .main_outer h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  .outer .promise .main_outer h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
  }
}
.outer .promise .main_outer .items .outer_box {
  margin-top: 50px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .outer .promise .main_outer .items .outer_box {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
.outer .promise .main_outer .items .outer_box .image {
  background: #FBE2E3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  min-width: 90px;
  width: 90px;
  height: 90px;
}
.outer .promise .main_outer .items .outer_box .image img {
  max-width: 100%;
}
.outer .promise .main_outer .items .outer_box .item_info h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
@media (max-width: 500px) {
  .outer .promise .main_outer .items .outer_box .item_info h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
  }
}
.outer .promise .main_outer .items .outer_box .item_info p {
  font-size: 14px;
  line-height: 25px;
  margin-top: 10px;
}
.outer .testimonial {
  background-image: url(../images/testimonial_bg.png);
  background-size: cover;
  text-align: center;
  padding-top: 30px;
}
.outer .testimonial h2 {
  font-size: 40px;
  color: #fff;
}
@media (max-width: 767px) {
  .outer .testimonial h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0px;
  }
}
@media (max-width: 500px) {
  .outer .testimonial h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
  }
}
.outer .testimonial .slider {
  padding: 40px 50px;
}
@media (max-width: 767px) {
  .outer .testimonial .slider {
    padding: 40px 10px;
  }
}
.outer .testimonial .slider p {
  color: #fff;
  margin-top: 20px;
}
@media (max-width: 500px) {
  .outer .testimonial .slider p {
    font-size: 14px;
    margin-top: 10px;
  }
}
.outer .testimonial .slider .image {
  margin-top: 20px;
}
.outer .testimonial .slider .image img {
  max-width: 100%;
  border-radius: 50%;
  display: inline-block;
}
.outer .testimonial .slider h4 {
  font-size: 24px;
  color: #E13B45;
  font-weight: 800;
}
@media (max-width: 500px) {
  .outer .testimonial .slider h4 {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .outer .testimonial .slider h4 {
    font-size: 18px;
  }
}
.outer .testimonial .slider h4::before {
  background-color: #E13B45;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 50px;
  margin-right: 10px;
}
.outer .testimonial .slider h4::after {
  background-color: #E13B45;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 50px;
  margin-left: 10px;
}
.outer .testimonial .slider .location {
  font-size: 14px;
  color: #fff;
  margin-top: 0;
  font-family: "Open Sans", sans-serif;
}
.outer .testimonial .slick-dots {
  position: relative;
}
.outer .testimonial .slick-dots li {
  margin: 0 10px;
}
.outer .testimonial .slick-dots li button {
  background: transparent;
}
.outer .testimonial .slick-dots li button::before {
  font-size: 8px;
  color: #fff;
  opacity: 0.75;
  border: 1px solid transparent;
  border-radius: 50%;
}
.outer .testimonial .slick-dots li.slick-active button::before {
  font-size: 8px;
  color: #E13B45;
  opacity: 1;
  border: 1px solid #E13B45;
  border-radius: 50%;
}
.outer .testimonial .slick-slider .slick-prev::before {
  content: none;
}
.outer .testimonial .slick-slider .slick-next::before {
  content: none;
}
@media (max-width: 500px) {
  .outer .tool_owner {
    margin-top: 30px;
  }
}
.outer .tool_owner .text .content {
  padding: 0 20px;
}
@media (max-width: 991px) {
  .outer .tool_owner .text .content {
    text-align: center;
    padding: 0 50px;
  }
}
@media (max-width: 500px) {
  .outer .tool_owner .text .content {
    padding: 0 0;
  }
}
.outer .tool_owner .text .content h3 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 45px;
}
@media (max-width: 767px) {
  .outer .tool_owner .text .content h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  .outer .tool_owner .text .content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
  }
}
.outer .tool_owner .text p {
  margin-top: 20px;
}
@media (max-width: 500px) {
  .outer .tool_owner .text p {
    font-size: 14px;
  }
}
.outer .tool_owner .steps .steps_wrapper {
  padding: 50px 0;
  background-color: #fff;
  border-radius: 20px;
  margin-right: 40px;
  counter-reset: a;
}
@media (max-width: 991px) {
  .outer .tool_owner .steps .steps_wrapper {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .outer .tool_owner .steps .steps_wrapper {
    padding: 20px 0;
  }
}
.outer .tool_owner .steps .steps_wrapper .steps_inner {
  display: flex;
}
@media (max-width: 767px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner {
    justify-content: center;
  }
}
.outer .tool_owner .steps .steps_wrapper .steps_inner .step_box {
  position: relative;
  flex: 1;
  padding-top: 50px;
  margin-right: 10px;
  margin-left: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box {
    width: 45%;
    flex: unset;
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box {
    width: 100%;
    flex: unset;
    margin-bottom: 25px;
  }
}
.outer .tool_owner .steps .steps_wrapper .steps_inner .step_box::after {
  content: counter(a);
  counter-increment: a;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: #F9D8DA;
  border-radius: 50%;
  color: #E13B45;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-width: 60px;
  width: 60px;
  height: 60px;
  border: 5px solid #fff;
}
.outer .tool_owner .steps .steps_wrapper .steps_inner .step_box::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 80px;
  border-top: 2px dashed #F9D8DA;
  top: 30px;
}
@media (max-width: 767px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box::before {
    left: 140px;
    width: 90%;
  }
}
@media (max-width: 500px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box::before {
    display: none;
  }
}
.outer .tool_owner .steps .steps_wrapper .steps_inner .step_img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 21px;
  height: 80px;
}
@media (max-width: 767px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_img {
    margin-top: 15px;
    margin-bottom: 0px;
  }
}
.outer .tool_owner .steps .steps_wrapper .steps_inner .step_img img {
  max-height: 80px;
}
.outer .tool_owner .steps .steps_wrapper .steps_inner .step_text {
  display: inline-block;
  text-align: center;
  font-weight: 600;
}
.outer .tool_owner .steps .steps_wrapper .steps_inner .step_box:last-child::before {
  display: none;
}
@media (max-width: 767px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box:nth-child(3) {
    order: 2;
    margin-top: 60px;
  }
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box:nth-child(3)::before {
    left: -110px;
    width: 90%;
  }
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box:nth-child(2)::before {
    rotate: 90deg;
    left: 40%;
    top: 200px;
    width: 20%;
  }
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box:last-child {
    order: 1;
    margin-top: 60px;
  }
}
@media (max-width: 688px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box:nth-child(2)::before {
    top: 228px;
  }
}
@media (max-width: 500px) {
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box:nth-child(3) {
    margin-top: 0;
    order: 2;
  }
  .outer .tool_owner .steps .steps_wrapper .steps_inner .step_box:last-child {
    margin-top: 0;
    order: 2;
  }
}
.outer .tool_buddy .outer_box {
  border-radius: 35px;
  background-color: #E13B45;
  padding: 40px 0;
}
@media (max-width: 500px) {
  .outer .tool_buddy .outer_box {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .outer .tool_buddy .outer_box .latout {
    order: 2;
    margin-top: 40px;
    padding: 0 30px;
  }
}
.outer .tool_buddy .outer_box .latout .content {
  text-align: center;
}
.outer .tool_buddy .outer_box .latout .content .image {
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.outer .tool_buddy .outer_box .latout .content .image img {
  max-width: 100%;
}
.outer .tool_buddy .outer_box .latout .content h4 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 500px) {
  .outer .tool_buddy .outer_box .latout .content h4 {
    font-size: 20px;
    line-height: 25px;
    margin-top: 20px;
  }
}
.outer .tool_buddy .outer_box .latout .content p {
  color: #fff;
  text-align: center;
}
@media (max-width: 991px) {
  .outer .tool_buddy .outer_box .app_download {
    order: 1;
  }
}
.outer .tool_buddy .outer_box .app_download .text {
  padding: 0 40px;
  text-align: center;
}
.outer .tool_buddy .outer_box .app_download .text h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 45px;
  text-align: center;
}
@media (max-width: 767px) {
  .outer .tool_buddy .outer_box .app_download .text h3 {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  .outer .tool_buddy .outer_box .app_download .text h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
  }
}
.outer .tool_buddy .outer_box .app_download .text p {
  color: #fff;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .outer .tool_buddy .outer_box .app_download .text p {
    margin-top: 10px;
  }
}
.outer .tool_buddy .outer_box .app_download .text h6 {
  color: #fff;
  text-align: center;
}
@media (max-width: 991px) {
  .outer .tool_buddy .outer_box .app_download .text h6 {
    line-height: 30px;
  }
}
.outer .tool_buddy .outer_box .app_download .text .icons {
  justify-content: center;
}
.outer .tool_buddy .outer_box .app_download .text .icons .download_icon {
  padding: 0 10px;
}
.outer .tool_buddy .outer_box .app_download .text .icons .download_icon img {
  width: 130px;
}
@media (max-width: 500px) {
  .outer .contact {
    margin-top: 30px;
  }
}
.outer .contact .contact_info .text_left_side h3 {
  font-size: 34px;
}
@media (max-width: 767px) {
  .outer .contact .contact_info .text_left_side h3 {
    font-size: 28px;
    line-height: 40px;
  }
}
@media (max-width: 500px) {
  .outer .contact .contact_info .text_left_side h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
  }
}
.outer .contact .contact_info .text_left_side p {
  margin-top: 10px;
}
.outer .contact .contact_info .text_left_side .contact_links {
  display: flex;
  align-items: baseline;
}
.outer .contact .contact_info .text_left_side .contact_links .bi {
  color: #E13B45;
  font-size: 24px;
  margin-top: 30px;
}
.outer .contact .contact_info .text_left_side .contact_links .contact_text {
  margin-left: 20px;
  margin-top: 10px;
}
.outer .contact .contact_info .text_left_side .contact_links .contact_text h5 {
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  line-height: 40px;
}
@media (max-width: 500px) {
  .outer .contact .contact_info .text_left_side .contact_links .contact_text h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
  }
}
.outer .contact .contact_info .text_left_side .contact_links .contact_text p {
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 5px;
}
.outer .contact .contact_info .text_left_side .contact_links .contact_text p a {
  color: #373737;
}
.outer .contact .contact_info .form_right_side {
  padding: 0 40px;
}
.outer .contact .contact_info .form_right_side .form h3 {
  font-size: 34px;
}
@media (max-width: 767px) {
  .outer .contact .contact_info .form_right_side .form h3 {
    font-size: 28px;
    line-height: 40px;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .outer .contact .contact_info .form_right_side .form h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    margin-top: 30px;
  }
}
.outer .contact .contact_info .form_right_side .form .form-group {
  margin-top: 30px;
}
@media (max-width: 500px) {
  .outer .contact .contact_info .form_right_side .form .form-group {
    margin-top: 20px;
  }
}
.outer .contact .contact_info .form_right_side .form .form-group input {
  background-color: #fff;
  border: 1px solid #828181;
  font-size: 14px;
  height: 45px;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
  display: block;
  width: 100%;
}
.outer .contact .contact_info .form_right_side .form .form-group textarea {
  background-color: #fff;
  border: 1px solid #828181;
  font-size: 14px;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
  resize: none;
  display: block;
  width: 100%;
}
.outer .contact .contact_info .form_right_side .submit_btn {
  margin-top: 20px;
  background: #E13B45;
  color: #fff;
  border-radius: 5px;
  padding: 8px 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  transform: 0.5s;
}
.outer .contact .contact_info .form_right_side .submit_btn:hover {
  opacity: 0.75;
  transform: 0.5s;
}
.outer .footer {
  margin-top: 60px;
  background-image: url(../images/footer_bg.png);
  background-size: cover;
  padding: 50px 0 0;
}
@media (max-width: 500px) {
  .outer .footer {
    padding-top: 30px;
  }
}
.outer .footer .about_text .image img {
  max-width: 100%;
}
.outer .footer .about_text p {
  color: #fff;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .outer .footer .about_text p {
    font-size: 14px;
  }
}
.outer .footer .about_text .social_links {
  margin-top: 20px;
}
.outer .footer .about_text .social_links span {
  color: #fff;
}
@media (max-width: 991px) {
  .outer .footer .about_text .social_links span {
    font-size: 14px;
  }
}
.outer .footer .about_text .social_links img {
  margin-left: 15px;
  max-width: 100%;
}
.outer .footer .useful_links {
  padding-left: 150px;
}
@media (max-width: 991px) {
  .outer .footer .useful_links {
    padding-left: 80px;
  }
}
@media (max-width: 767px) {
  .outer .footer .useful_links {
    padding-left: 10px;
  }
}
.outer .footer .useful_links h4 {
  font-size: 26px;
  color: #fff;
}
@media (max-width: 991px) {
  .outer .footer .useful_links h4 {
    font-size: 20px;
    line-height: 24px;
    margin-top: 30px;
  }
}
.outer .footer .useful_links ul li {
  display: block;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .outer .footer .useful_links ul li {
    font-size: 14px;
  }
}
.outer .footer .useful_links ul li a {
  color: #fff;
}
.outer .footer .download_app {
  text-align: center;
}
@media (max-width: 767px) {
  .outer .footer .download_app {
    text-align: left;
    margin-top: 30px;
  }
}
.outer .footer .download_app img {
  max-width: 100%;
  margin: 0 auto;
}
.outer .footer .download_app h5 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 991px) {
  .outer .footer .download_app h5 {
    font-size: 18px;
  }
}
.outer .footer .download_app .icons {
  justify-content: center;
}
@media (max-width: 767px) {
  .outer .footer .download_app .icons {
    justify-content: left;
  }
}
.outer .footer .download_app .icons .download_icon {
  padding: 0 10px;
}
@media (max-width: 767px) {
  .outer .footer .download_app .icons .download_icon {
    padding: 0;
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .outer .footer .download_app .icons .download_icon {
    padding: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.outer .footer .download_app .icons .download_icon img {
  width: 140px;
}
@media (max-width: 575px) {
  .outer .footer .download_app .icons .download_icon img {
    width: 100%;
  }
}
.outer .footer .copyright_text p {
  color: #fff;
  font-size: 14px;
  margin-top: 50px;
  text-align: center;
  margin-bottom: 10px;
}
.outer .save_money h2 {
  font-size: 46px;
  line-height: 62px;
}
@media (max-width: 767px) {
  .outer .save_money h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 35px;
  }
}
.outer .save_money h6 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .outer .save_money h6 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.outer .multiple_tabs {
  padding-top: 160px;
}
@media (max-width: 1024px) {
  .outer .multiple_tabs {
    padding-top: 162px;
  }
}
.outer .multiple_tabs .nav .nav-item .nav-link {
  padding: 10px 30px;
  border: 1px solid #E13B45;
  border-radius: 5px;
  font-size: 18px;
  color: #E13B45;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 767px) {
  .outer .multiple_tabs .nav .nav-item .nav-link {
    font-size: 12px;
    padding: 3px 25px;
  }
}
.outer .multiple_tabs .nav .nav-item .nav-link.active {
  background-color: #E13B45;
  color: #fff;
}
.outer .multiple_tabs .nav .nav-item .dropdown-menu .dropdown-item {
  font-size: 18px;
  color: #E13B45;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 767px) {
  .outer .multiple_tabs .nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 12px;
  }
}
.outer .multiple_tabs .nav .nav-item .dropdown-menu .dropdown-item.active {
  background-color: #E13B45;
  color: #fff;
}
.outer .multiple_tabs .nav .nav-item .dropdown-menu .dropdown-item:active {
  background-color: #E13B45;
  color: #fff;
}
.outer .multiple_tabs .nav .nav-item.show .nav-link {
  background-color: #E13B45;
  color: #fff;
}
@media (max-width: 625px) {
  .outer .multiple_tabs .text {
    width: 100%;
  }
}
.outer .multiple_tabs .text .tools_count h6 {
  font-size: 20px;
  text-align: right;
  line-height: 24px;
}
@media (max-width: 625px) {
  .outer .multiple_tabs .text .tools_count h6 {
    text-align: left;
    margin-top: 15px;
  }
}
.outer .product {
  margin-top: 0px;
}
.outer .product .box {
  margin-top: 30px;
}
.outer .product .box .outer_box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  padding: 30px 20px 20px;
  position: relative;
  min-height: 100%;
}
.outer .product .box .outer_box .image {
  text-align: center;
}
.outer .product .box .outer_box .image img {
  max-width: 100%;
  height: 125px;
}
.outer .product .box .outer_box .fvrt {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #F2B200;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-size: 22px;
}
.outer .product .box .outer_box .text {
  margin-top: 10px;
}
.outer .product .box .outer_box .text h5 {
  font-size: 16px;
  color: #E13B45;
  font-weight: 800;
  line-height: 28px;
}
.outer .product .box .outer_box .text p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.outer .product .box .outer_box .text .star .bi {
  color: #E13B45;
}
.outer .product .box .outer_box .text .cost {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}
.outer .product .box .outer_box .text ul li {
  font-size: 14px;
  font-weight: 700;
}
.outer .product .box .outer_box .text .colored_text {
  color: #E13B45;
  font-size: 14px;
  font-weight: 700;
  margin-top: 3px;
}
.outer .product .box .outer_box .text .tool {
  align-items: center;
  display: flex;
  margin-top: 7px;
}
.outer .product .box .outer_box .text .tool li .bi-tools {
  background-color: #E13B45;
  height: 32px;
  width: 32px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer .product .box .outer_box .text .tool .star {
  margin-left: 5px;
  font-size: 16px;
}
.outer .product_detail {
  padding-top: 120px;
}
.outer .product_detail .image {
  display: flex;
  align-items: center;
  min-height: 100%;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .outer .product_detail .image {
    display: block;
  }
}
.outer .product_detail .image .img_left {
  width: 70%;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .outer .product_detail .image .img_left {
    width: 100%;
  }
}
.outer .product_detail .image .img_left img {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin-right: 10px;
  width: 100%;
}
.outer .product_detail .image .img_right {
  width: 30%;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .outer .product_detail .image .img_right {
    width: 100%;
    padding: 10px;
  }
}
.outer .product_detail .image .img_right img {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin: 10px 5px;
  max-width: 100px;
}
@media (max-width: 1200px) {
  .outer .product_detail .image .img_right img {
    max-width: 120px;
  }
}
.outer .product_detail .text h5 {
  font-size: 22px;
  color: #E13B45;
  line-height: 28px;
  font-weight: 700;
}
.outer .product_detail .text .outer_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.outer .product_detail .text .outer_box .user_profile {
  display: flex;
  align-items: center;
}
.outer .product_detail .text .outer_box .user_profile .user_info {
  margin-left: 15px;
}
.outer .product_detail .text .outer_box .user_profile .user_info .name {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.outer .product_detail .text .outer_box .user_profile .user_info .star .bi {
  color: #E13B45;
  font-size: 16px;
}
.outer .product_detail .text .outer_box .view_tools .view_button {
  border: 1px solid #e13b45;
  color: #373737;
  border-radius: 5px;
  padding: 5px 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  transform: 0.5s;
}
.outer .product_detail .text .desc_text {
  margin-top: 20px;
}
.outer .product_detail .text .desc_text h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.outer .product_detail .text .desc_text p {
  font-size: 14px;
  line-height: 26px;
  margin-top: 5px;
}
.outer .product_detail .text .rating h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 20px;
}
.outer .product_detail .text .rating .star {
  color: #E13B45;
  font-size: 16px;
  margin-left: 3px;
}
.outer .product_detail .text .cost {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.outer .product_detail .text .cost .box {
  display: flex;
  align-items: center;
}
.outer .product_detail .text .cost .box h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.outer .product_detail .text .cost .box span {
  font-size: 14px;
  margin-left: 15px;
}
.outer .product_detail .desc_text {
  margin-top: 20px;
}
.outer .product_detail .desc_text h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.outer .product_detail .desc_text p {
  font-size: 14px;
  line-height: 26px;
  margin-top: 5px;
}
.outer .product_detail .left_box .outer_box h6 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.outer .product_detail .left_box .outer_box .nav .nav-item .nav-link {
  padding: 10px 30px;
  border: 1px solid #E13B45;
  border-radius: 5px;
  font-size: 18px;
  color: #E13B45;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 767px) {
  .outer .product_detail .left_box .outer_box .nav .nav-item .nav-link {
    font-size: 10px;
    padding: 3px 26px;
  }
}
.outer .product_detail .left_box .outer_box .nav .nav-item .nav-link.active {
  background-color: #E13B45;
  color: #fff;
}
.outer .product_detail .left_box .outer_box .nav .nav-item .dropdown-menu .dropdown-item {
  font-size: 18px;
  color: #E13B45;
  font-weight: 700;
  cursor: pointer;
}
.outer .product_detail .left_box .outer_box .nav .nav-item .dropdown-menu .dropdown-item.active {
  background-color: #E13B45;
  color: #fff;
}
.outer .product_detail .left_box .outer_box .nav .nav-item .dropdown-menu .dropdown-item:active {
  background-color: #E13B45;
  color: #fff;
}
.outer .product_detail .left_box .outer_box .nav .nav-item.show .nav-link {
  background-color: #E13B45;
  color: #fff;
}
.outer .product_detail .left_box .date_box {
  margin-top: 30px;
}
.outer .product_detail .left_box .date_box h6 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.outer .product_detail .left_box .date_box .form {
  margin-top: 10px;
}
.outer .product_detail .left_box .date_box .form label {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 5px;
  margin-top: 10px;
}
.outer .product_detail .left_box .date_box .form .form-group input {
  background-color: #fff;
  border: 1px solid #E13B45;
  border-radius: 5px;
  font-size: 14px;
  height: 45px;
  outline: none;
  box-shadow: none;
  display: block;
  width: 100%;
}
.outer .product_detail .left_box .promo_code {
  margin-top: 30px;
}
.outer .product_detail .left_box .promo_code h6 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.outer .product_detail .left_box .promo_code .form-group {
  margin-top: 10px;
}
.outer .product_detail .left_box .promo_code .form-group input {
  background-color: #fff;
  border: 1px solid #E13B45;
  border-radius: 5px;
  font-size: 14px;
  height: 45px;
  outline: none;
  box-shadow: none;
  display: block;
  width: 60%;
}
.outer .product_detail .left_box .repair_protection {
  margin-top: 30px;
  margin-bottom: 20px;
}
.outer .product_detail .left_box .repair_protection label {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-left: 10px;
}
.outer .product_detail .bottom_btn {
  display: flex;
  justify-content: center;
}
.outer .product_detail .bottom_btn .submit_btn {
  margin-top: 40px;
  text-align: center;
  background: #E13B45;
  color: #fff;
  border-radius: 5px;
  padding: 8px 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  transition: 0.5s;
}
.outer .product_detail .bottom_btn .submit_btn:hover {
  opacity: 0.75;
  transition: 0.5s;
}
.outer .view_product {
  padding-top: 160px;
}
.outer .view_product .box {
  margin-top: 30px;
}
.outer .view_product .box .outer_box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  padding: 30px 20px 20px;
  position: relative;
  min-height: 100%;
}
.outer .view_product .box .outer_box .image {
  text-align: center;
}
.outer .view_product .box .outer_box .image img {
  max-width: 100%;
  height: 125px;
}
.outer .view_product .box .outer_box h5 {
  margin-top: 30px;
  font-size: 16px;
  color: #E13B45;
  font-weight: 800;
  line-height: 28px;
}
.outer .view_product .box .outer_box .star .bi {
  color: #E13B45;
}
.outer .view_product .box .outer_box .cost {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}
.outer .view_product .box .outer_box ul li {
  font-size: 14px;
  font-weight: 700;
}/*# sourceMappingURL=theme.css.map */