* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #262626;
  font-family: "Montserrat", "sans-serif";
  font-size: 16px;
  line-height: 1.6em;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

section {
  padding: 90px 0;
}

#main-header {
  padding: 10px 16px;
  position: sticky;
  top: 0px;
  z-index: 99;
  background: #ff8800;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  max-width: 920px;
  padding: 0;
  margin: auto;
  justify-content: space-between;
}

.navbar ul {
  display: none;
  text-align: end;
  flex-grow: 1;
}

.navbar li {
  display: inline-block;
  padding: 5px;
  margin-right: 16px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.navbar li:hover {
  opacity: 0.7;
}

.logo {
  color: #000;
  font-weight: 600;
  padding: 5px;
  font-size: 18px;
}

.link {
  margin: 0 auto;
  display: block;
  background-color: #4c3715;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  
}

.link:hover {
  opacity: 0.85;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.5);
}

.linkk {
  padding: 24px 35px 20px 38px;
  display: inline-block;
  background-color: #4c3715;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.linkk:hover {
  opacity: 0.85;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.5);
}


.btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 0px 10px;
  font-size: 18px;
  cursor: pointer;
}

#home {
  height: 60vh;
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #f9f0e8;
}

.container {
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  max-width: 1120px;
}

.container-static {
  max-width: 1024px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

.container-small {
  max-width: 920px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

.container-large {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

.container-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.showcase {
  max-width: 300px;
  margin: 0  auto;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 30px;
}

.section-subtext {
  margin: 0 auto;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  max-width: 600px;
}

#home .link {
  padding: 10px 0px;
  width: 140px;
  margin: 18px auto;
  text-transform: uppercase;
}

.tools-container ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  margin-top: 12px;


}

.tools-container li {
  margin: 0 26px;
  margin-bottom: 18px;

}

.tools-img {
  width: 80px;
  height: auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}

.tools-img:hover {
  filter: none;
  -webkit-filter: none;
  -ms-filter: none;
  -o-filter: none;
}

#products {
  background-color: #f58607;
}

.products-text {
  flex: 0 0 100%;
  margin-bottom: 30px;
}

.product-item {
  flex: 0 0 100%;
  padding: 30px 26px;
}

.product-item .item-image {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #e6e6ff;
}

.product-item .item-text {
  margin-top: 22px;
}

.product-item .item-text h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.product-item .item-image .icon {
  position: relative;
  top: 25%;
  font-size: 28px;
}

.feature-container {
  margin-top: 60px;
}

.feature-img-div {
  padding: 0 40px;
}

.feature-img-div .feature-img {
  max-width: 100%;
  height: auto;
}

.feature-text {
  padding: 0 40px;
  text-align: auto;
  position: relative;
}

.feature-img-div.reverse {
  order: 1;
}

.feature-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.feature-text p {
  margin-bottom: 12px;
}

.fancy-link {
  color: #8798ab;
  position: relative;
  font-weight: 600;
}

.fancy-link::after {
  content: "";
  background-color: #8798ab;
  position: absolute;
  height: 1px;
  width: 50%;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.fancy-link:hover::after {
  width: 80%;
}

#numbers {
  background-color: #f58607;
  color: #fff;
}
.custom-btn {
  width: 130px;
  height: 40px;
  color: #000;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn-5 {
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
  background: rgb(255,27,0);
  background: linear-gradient(0deg, rgba(236,19,19,1) 0%, rgba(250,194,6,1) 100%);
}
.btn-5:hover {
  color: #000;
  background: transparent;
   box-shadow:none;
}
.btn-5:before,
.btn-5:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #fff;
  box-shadow:
   -1px -1px 5px 0px #fff,
   7px 7px 20px 0px #0003,
   4px 4px 5px 0px #0002;
  transition:400ms ease all;
}
.btn-5:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.btn-5:hover:before,
.btn-5:hover:after{
  width:100%;
  transition:800ms ease all;
}
.custom-btnnn {
  width: 130px;
  height: 40px;
  color: #000;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn0 {
  color: #000;
  margin-bottom: 100px;
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding: 15px 35px 15px 35px;
  background-color: #ff8800;
  border: none;
}

.btn0:hover{
  color: #fff;
  background-color: #000;

}

.btn0-invert{
  color: #fff;
  margin-bottom: 100px;
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding: 15px 35px 15px 35px;
  background-color: #000;
  border: none;
}
.btn0-invert:hover{
  color: #fff;
  background-color: #ff8800;

}


.btn-51 {
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: 2px solid #ff8800;
  box-shadow:none;

}
.btn-51:hover {
  color: #000;
  background: transparent;
  box-shadow:none;

}
.btn-51:before,
.btn-51:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #ff8800;
  
}
.btn-51:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.btn-51:hover:before,
.btn-51:hover:after{
  width:100%;
  transition:800ms ease all;
}

.num-header {
  flex: 0 0 100%;
  margin-bottom: 60px;
}

.num-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2em;
}

.num-header p {
  margin: 12px;
  font-size: 18px;
  font-weight: 600;
}

.number {
  flex: 0 0 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.number h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
}

.num-footer {
  flex: 0 0 100%;
  margin-top: 20px;
}

.num-footer .num-link {
  transition: 0.2s;
}

.num-footer .num-link:hover {
  border-bottom: 1px solid #fff;
}

.benefits-section {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  text-align: left;
  padding-bottom: 24px;
}

.benefits-items {
  padding-bottom: 24px;
}

.benefits-icon-div {
  float: left;
  width: 15%;
}

.benefits-icons {
  font-size: 34px;
}

.benefits-text {
  float: right;
  width: 85%;
}

.benefits-text h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.graph-container {
  flex: 0 0 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.graph-container img {
  width: 100%;
  height: auto;
}

#reviews {
  background-color: #f6f6fd;
}

.review {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  margin-top: 56px;
}

.review.visible {
  display: none;
}

.review-text {
  flex: 0 1 50%;
  background-color: #7938fa;
  color: #fff;
  padding: 46px;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  text-align: left;
}

.reviewer {
  flex: 0 1 50%;
  padding: 46px;
  background-color: #fff;
}

.reviewer-avatar img {
  width: 80px;
  height: auto;
  margin: auto;
  border-radius: 50%;
  padding-bottom: 12px;
}

.reviewer-about h2 {
  font-size: 18px;
  font-weight: 600;
}

.reviewer-about p {
  font-size: 14px;
}

.fancy-link.underlined {
  font-weight: 500;
}

.fancy-link.underlined::after {
  width: 100%;
  bottom: -2px;
  visibility: hidden;
  transform: scaleX(0);
}

.fancy-link.underlined:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

.carousel-dots {
  margin-top: 12px;
}

.dot {
  display: inline-block;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 2px;
  margin-right: 6px;
  margin-left: 6px;
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
}

.dot:hover, .dot-selected {
  opacity: 0.6;
}

.pricing-header {
  margin-bottom: 20px;
}

.plan-content {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 50px 40px;
  margin: 0 auto;
}

.pricing-plan {
  margin-top: 50px;
}

.price {
  font-size: 36px;
  opacity: 0.7;
  font-weight: 600;
  margin: 40px 0;
}

.price-title {
  font-size: 18px;
}

.pricing-features {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 60px;
}

.pricing-features ul {
  display: flex;
  flex-flow: column wrap;
}

.pricing-features li {
  flex: 0 0 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

.pricing-features .list-img {
  float: left;
  width: 12%;
  position: relative;
  top: 0.2em;
}

.pricing-features li.unavailable {
  opacity: 0.4;
}

.pricing-plan .link {
  width: 130px;
  padding: 10px 0;
  text-transform: uppercase;
}

#main-footer {
  background-color: #f58607;
  padding: 15px 16px;
  position: relative;
}

.footer-content {
  font-size: 12px;
  padding: 0 40px;
  text-align: center;
  
}

.footer-content li {
  display: inline-block;
  padding: 0 10px;
}

.rights {
  flex-grow: 1;
  text-align: center;
}

.footer-content .fancy-link.underlined {
  color: #000;
  font-size: 12px;
}

.footer-content .fancy-link.underlined::after {
  background-color: #000;
}

.top-btn{
  background-color: #ec1313;
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  color: #fff;
  bottom: 40px;
  right: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}





@media (min-width: 1020px) {
  .container {
    max-width: 990px;
  }
  .container-large {
    max-width: 1120px;
  }
  .product-item {
    flex: 0 0 33.33%;
  }
  .benefits-section {
    display: flex;
    flex: 0 0 40%;
    flex-direction: column;
    text-align: left;
  }
  .graph-container {
    flex: 0 0 60%;
    align-self: center;
    padding-left: 36px;
  }
  .review {
    flex: 0 0 45%;
  }
  .reviews-container {
    justify-content: space-around;
  }
  .number {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
    .text-muted{
    display: block;
  }
      .footer-content {
    display: flex;
    align-items: baseline;
  }
}



@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
  #main-header {
    padding: 15px 16px;
  }
  .navbar {
    padding: 0 40px;
    align-items: baseline;
  }
  .navbar ul {
    display: block;
  }
  .navbar .btn {
    display: none;
  }
  .container {
    max-width: 720px;
  }
  .container-large {
    max-width: 1020px;
  }
  .product-item {
    flex: 0 0 50%;
  }
  .feature-container {
    display: flex;
    align-items: center;
    justify-items: center;
    margin-top: 80px;
  }
  .feature-img-div {
    flex: 0 0 500px;
  }
  .review {
    flex-flow: row;
    flex: 0 0 70%;
  }
  .review.visible {
    display: flex;
  }
  .carousel-dots {
    display: none;
  }
  .pricing-plan {
    flex: 0 0 50%;
    padding: 0 16px;
  }
  .pricing-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
  }
    .number {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
    .text-muted{
    display: block;
  }
}

@media (max-width: 565px) {

  .container {
    max-width: 525px;
  }

  .review {
    flex: 0 0 70%;
  }
  .number {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .text-muted{
    display: none;
  }

}
@media (max-width: 375px) {

  .text-muted{
    display: none;
  }


}