/* ====================================== */
main {
  padding: 2rem 1rem;
}

.hero {
  padding: 2rem 0;
}

.hero h1 {
  font-size: 50px;
  text-align: center;
  margin: auto;
  line-height: 1.5;
}

.pricing {
  padding: 2rem 0;
}
.p-text {
  font-size: 20px;
  max-width: 500px;
}
.col-group {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 5%;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.col {
  width: 30%;
  /* min-height: 500px; */
  /* border: 1px solid #d4d4d45a; */
  background-color: #060606;
  border-radius: 15px;
  padding: 2rem 1rem;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.pricing .col{
  min-height: 400px;
}
/* .col:hover {
  background-color: #ffffff;
  color: #000000;
} */

.best-selling {
  background-color: red;
  text-align: center;
  padding: 8px 1rem;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.col h3 {
  font-size: 25px;
  text-align: start;
  font-weight: 800;
  height: 50px;
}

.col ul {
  list-style: none;
  padding-left: 1.5rem;
}
.col li {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 500;
}
.list-icon {
  color: green;
}
.col strong {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
.loader {
  margin: 1rem 0;
  margin-left: 1.5rem;
}
.col small {
  font-size: 15px;
  font-weight: 600;
}
.col-link {
  color: red;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}

.c-sales .ft-btn {
  background-color: transparent;
  color: red;
  width: 100%;
  font-weight: 500;
  border: 1px solid red;
}

.ft {
  margin-bottom: 1rem;
}

.col .ft-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 10px;
  margin-top: 1rem;
  border-radius: 10px;
  font-weight: 500 !important;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}
/* .col:hover .ft .ft-btn{
    background-color: #000000 !important;
    color: #ffffff !important;
} */

.p-compact .ft-btn {
  background-color: red;
  color: #ffffff;
}
.p-plus .ft-btn {
  background-color: transparent;
  color: red;
  border: 1px solid red;
}

.start {
  padding: 1rem;
  margin-top: 2rem;
}
.start h2 {
  font-size: 35px;
}
.start p {
  font-size: 18px;
  font-weight: 500;
}
/* #package {
  pointer-events: none;
} */
.take {
  padding: 2rem 1rem;
  text-align: center;
}
.take .container {
  background-color: #060606;
  padding: 2rem 1rem;
}
.take h2 {
  font-size: 30px;
  font-weight: 500;
}
.take p {
  font-size: 16px;
  max-width: 800px;
  margin: auto;
}
.take a {
  padding: 20px 25px;
  background-color: green;
  display: block;
  max-width: 300px;
  margin: 1rem auto;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
}
#video-modal .modal{
  max-width: 800px;
}
#image-modal .modal{
  max-width: 1000px;
}

@media (max-width: 868px) {
  .col-group {
    gap: 4%;
  }
  .col {
    width: 48%;
  }
}
/* @media (max-width: 768px) {
  
  } */
@media (max-width: 600px) {
  h1 {
    max-width: 100% !important;
  }
  .col-group {
    gap: 4%;
  }
  .col {
    width: 100%;
  }
  .p-compact{
    order: 1;
  }
  .p-plus{
    order: 2;
  }
  .c-sales{
    order: 3;
  }
}
