:root {
  --main-green: #6fbc84;
  --main-yellow: #fbc074;
  --main-blue: #57bfeb;
  --text-co: #243d2b;
  --secondary-co: #f2f2f2;
}

body {
  font-family: "Tajawal", sans-serif;
  font-style: normal;
  /*overflow-x: hidden;*/
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

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

ol {
  padding: 0rem;
  list-style: none;
}

blockquote {
  margin-bottom: 0rem;
}

.contact #emailForm .form-control {
  padding: 1rem;
  color: var(--main-green);
  border: thin solid var(--main-green);
  outline: none;
  box-shadow: none;
  text-align: right;
}
.contact #emailForm .form-control:focus {
  border: thin solid var(--main-green);
  box-shadow: 0 0 0 0.25rem rgba(1, 142, 39, 0.3098039216);
}
.contact #emailForm .form-control::-moz-placeholder {
  color: var(--main-green);
}
.contact #emailForm .form-control::placeholder {
  color: var(--main-green);
}

/*__________________________ btns ___________________*/
.btn-green-fill {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  outline: none;
  border: none;
  box-shadow: none;
  color: #fff;
  background-color: var(--main-green);
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.btn-green-fill:hover {
  color: #fff;
  background-color: #54a369;
}

.btn-yallow-fill {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  outline: none;
  border: none;
  box-shadow: none;
  color: #000000;
  background-color: var(--main-yellow);
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.btn-yallow-fill:hover {
  color: #000000;
  background-color: #f8a941;
}

.btn-blue-fill {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  outline: none;
  border: none;
  box-shadow: none;
  color: #fff;
  background-color: #0f82b9;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.btn-blue-fill:hover {
  color: #fff;
  background-color: #096996;
}

.btn-green-outline {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  outline: none;
  border: thin solid var(--text-co);
  box-shadow: none;
  color: var(--text-co);
  background-color: transparent;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.5s ease-in-out;
}
.btn-green-outline:hover {
  color: #fff;
  background-color: #54a369;
  border: thin solid var(--main-green);
}

.btn-secondary-fill {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  outline: none;
  border: none;
  box-shadow: none;
  color: var(--main-green);
  background-color: #f2f2f2;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.btn-secondary-fill:hover, .btn-secondary-fill:focus {
  color: var(--main-green);
  background-color: #dadada;
}

.head-sec {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  color: var(--text-co);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--main-green);
  position: relative;
}
.head-sec::after {
  content: "";
  background-color: var(--main-green);
  border-radius: 2rem;
  width: 15%;
  height: 6px;
  position: absolute;
  bottom: -9%;
  left: -1%;
}

/*__________________________ home ___________________*/
main {
  /*_________ header ______________*/
  /*_________ content _______________*/
  /*___________ footer ______________*/
}
main header {
  background-color: #f2f2f2;
  box-shadow: 0px -13px 28px #8b8b8b;
  position: relative;
  z-index: 1000;
}
main header::after {
  content: "";
  /* background: url("/images/head-sec-bg.webp") no-repeat right; */
  background-size: cover;
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
main header .cont {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
main header .cont nav .navbar-toggler {
  margin: 1rem 0rem;
}
main header .cont nav .navbar-toggler:focus {
  box-shadow: none;
}
main header .cont nav .menu ul.links {
  direction: rtl;
  justify-content: space-between;
}
main header .cont nav .menu ul.links li a {
  /*font-family: system-ui;*/
  font-weight: 400;
  padding: 1rem;
}
main header .cont nav .menu ul.links .join {
  display: none;
}
main header .cont .logo {
  width: 226px;
  overflow: hidden;
}
main header .cont .logo img {
  width: 100%;
  height: 100%;
}
main .content .hiro {
  background: url("./images/hiro-bg.webp") no-repeat;
  background-size: cover;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding-top: 5rem;
  padding-bottom: 10rem;
}
main .content .hiro .cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap-reverse;
}
main .content .hiro .cont .text {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin: 0rem auto;
}
main .content .hiro .cont .text .info {
  text-align: right;
}
main .content .hiro .cont .text .info h5 {
  color: var(--text-co);
  margin-bottom: 1rem;
}
main .content .hiro .cont .text .info h3 {
  color: var(--main-green);
  margin-bottom: 1rem;
}
main .content .hiro .cont .text .info p {
  color: var(--text-co);
  margin-bottom: 1rem;
  line-height: 1.8em;
  font-size: 1.1rem;
}
main .content .hiro .cont .text .info .cta {
  width: -moz-fit-content;
  width: fit-content;
}
main .content .hiro .cont .text .social {
  margin-bottom: 0rem;
}
main .content .hiro .cont .text .social li {
    background-color: var(--main-green);
    border-radius: 0.5rem;
    padding: 0.4rem 0.5rem;
    margin: 0.5rem 0;
    line-height: 0;
}
main .content .hiro .cont .text .social li i {
    color: #fff;
    font-size: 1.5rem;
}
main .content .hiro .cont .image {
  max-width: 100%;
  width: 504px;
}
main .content .hiro .cont .image img {
  width: 100%;
}
main .content .about {
  margin: 2rem 0rem;
  background: url("./images/sec-two-bg.webp") no-repeat center center;
  background-size: cover;
}
main .content .about .cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  height: 100%;
}
main .content .about .cont .image {
  min-width: 40%;
  max-width: 100%;
  min-height: 325px;
  overflow: visible;
  position: relative;
}
main .content .about .cont .image img {
  width: 100%;
  min-height: 365px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  position: absolute;
  top: -7%;
  left: 0;
  border-radius: 1rem;
  cursor: pointer;
  box-shadow: 0px 0px 13px -2px #243d2b;
}
main .content .about .cont .text {
  text-align: right;
}
main .content .about .cont .text .about-para {
    text-align: justify !important;
    direction: rtl;
}
main .content .about .cont .text .head {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  color: var(--text-co);
}
main .content .about .cont .text .head img {
  width: 200px;
}
main .content .about .cont .text .head h3 {
  font-weight: 600;
  font-size: 1.3rem;
}
main .content .about .cont .text p {
  color: var(--text-co);
  line-height: 1.8em;
  font-size: 1.1rem;
  width: 80%;
  margin-left: auto;
}
main .content .features {
  margin-top: 4rem;
}
main .content .features.policies {
    direction: rtl;
}
main .content .features .item {
    margin-bottom: 1rem;
    line-height: 1.6;
}
main .content .features .item h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}
main .content .features .item p, main .content .features .item ul {
    list-style-type: revert;
    font-size: 1em;
    text-align: justify;
    color: #555;
    margin: 0;
}
main .content .features .head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0rem;
}
main .content .features .cont .image img {
  width: 100%;
  height: 100%;
}
main .content .features .cont .text {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width:991px) {
  main .content .features .cont .text {
    flex-wrap: wrap !important;
    width: 100%;
    gap:0
  }
  main .content .features .cont .text .boxs {
    width: 50%;
  }
  main .content .features .cont .text .boxs li {
    flex-wrap: wrap;
    flex-direction: column !important;
  }
  main .content .packages .cont ul.price_boxes {
    /* flex-wrap: nowrap !important;
    display: flex !important;
    overflow-x: scroll; */
}
  main .content .packages .cont ul.price_boxes li {
    width: 100% !important;
  }
  main .content .packages .cont ul.price_boxes .package-feat {
    width: 100% !important;
  }
  main .content .packages .cont ul.price_boxes .package-feat li {
    width: 85% !important;
  }
  main .content .about .cont .image {
    min-height:345px;
  }
  main .content .about .cont .image img {
    min-height: auto
  }
  main .content .about .cont .image {
    min-height: 150px;
  }

}
main .content .about .cont .image img {
  object-fit: contain !important;
}
main .content .about {
  background: none !important;
}
main .content .features .cont .text .boxs li {
  margin: 0.3rem 0rem;
  padding: 0.5rem 0rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
main .content .features .cont .text .boxs li img {
  width: 40px;
  height: 40px;
  display: inline-block;
  padding: 0.5rem;
  background-color: #fff;
  box-shadow: 0px 0px 6px -3px #254335;
  border-radius: 0.5rem;
}
main .content .features .cont .text .boxs li p {
  white-space: nowrap;
}
main .content .packages {
  padding: 1rem;
  background-color: #eff7f1;
}
main .content .packages .cont {
  text-align: right;
}
main .content .packages .cont .head {
  margin-bottom: 3rem;
}
main .content .packages .cont .head h3 {
  width: 40%;
  margin-left: auto;
}
main .content .packages .cont ul.price_boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  justify-items: center;
  align-items: center;
  gap: 1rem;
  direction: rtl;
}
main .content .packages .cont ul.price_boxes li {
  position: relative;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.8rem;
}
main .content .packages .cont ul.price_boxes li .price-blur {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(182, 182, 182, 0.1);

    backdrop-filter: blur(10px) contrast(90%);
    -webkit-backdrop-filter: blur(10px) contrast(90%);
    border-radius: 0.8rem;
    font-weight: 550;
    z-index: 5;
}
main .content .packages .cont ul.price_boxes li h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--main-green);
}
main .content .packages .cont ul.price_boxes li p {
  margin: 1.3rem 0rem;
  font-weight: 500;
  color: #797979;
  font-size: 0.9rem;
}
main .content .packages .cont ul.price_boxes li .price {
  margin: 1rem 0rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.5rem;
}
main .content .packages .cont ul.price_boxes li .price blockquote strong {
  font-size: 1.5rem;
}
main .content .packages .cont ul.price_boxes li .price blockquote .type {
  font-size: 0.9rem;
  color: #797979;
}
main .content .packages .cont ul.price_boxes li ol.package-feat {
  margin: 1.3rem 0rem;
}
main .content .packages .cont ul.price_boxes li ol.package-feat li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0rem;
  margin: 1rem 0rem;
}
main .content .packages .cont ul.price_boxes li ol.package-feat li svg {
  display: inline-block;
  margin-top: 0.2rem;
  width: 10%;
}
main .content .packages .cont ul.price_boxes li ol.package-feat li span {
  font-weight: 550;
  font-size: 1rem;
  display: inline-block;
  width: 90%;
  margin: 0 0.2rem;
}
main .content .packages .cont ul.price_boxes li .btn {
  cursor: pointer;
  width: 100%;
  margin: 0rem auto;
  justify-content: center;
}
main .content .clients {
  margin: 3rem 0rem;
  overflow: hidden;
}
main .content .clients .cont {
  position: relative;
}
main .content .clients .cont .head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
main .content .contact {
  background-color: var(--main-green);
  text-align: right;
  padding: 0rem;
  border-radius: 2rem;
}
main .content .contact .cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0rem 2rem;
  padding-top: 3rem;
}
main .content .contact .cont .image {
  width: 50%;
  max-width: 100%;
}
main .content .contact .cont .image img {
  width: 100%;
}
main .content .contact .cont .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  width: 45%;
}
main .content .contact .cont .text .head {
  text-align: right;
}
main .content .contact .cont .text .head h3 {
  margin-left: auto;
  width: 13vw;
  color: #fff;
  border-color: var(--main-yellow);
}
main .content .contact .cont .text .head h3::after {
  background-color: var(--main-yellow);
}
main .content .contact .cont .text p {
  color: #fff;
}
main .content .contact .cont .text .socail {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
main .content .contact .cont .text .socail blockquote {
  margin: 0rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
main .content .contact .cont .text .socail blockquote img {
  width: 45px;
}
main .content .contact .cont .text .socail blockquote strong {
  color: #fff;
  font-size: 1.1rem;
  white-space: nowrap;
}
main .content .contact .cont .text form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
}
main .content .contact .cont .text .btn-yallow-fill {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 3rem;
  margin-left: auto;
}
main .content .contact .foot {
  background-color: var(--main-blue);
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap-reverse;
}
main .content .contact .foot form {
  padding: 2rem 3rem;
  border-radius: 0.5rem;
  background-color: var(--main-yellow);
  width: 35%;
  max-width: 80%;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
main .content .contact .foot form input {
  padding: 0.7rem;
}
main .content .contact .foot form .btn-blue-fill {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}
main .content .contact .foot .text {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
main .content .contact .foot .text img {
  width: 200px;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .content .contact .foot .text .info {
  color: #fff;
}
main .content .contact .foot .text .info p {
  margin-bottom: 0.5rem;
}
main .content .contact .foot .text .info p a {
  color: #000;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}
main footer .info {
  padding: 3rem 1rem;
  background-color: #f1f1f1;
}
main footer .info .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
main footer .info .container .row {
  width: 100%;
  direction: rtl;
}
main footer .info .container .logo {
  cursor: pointer;
}
main footer .info .container .logo img {
  width: 250px;
}
main footer .info .container .text {
  text-align: right;
}
main footer .info .container .links {
  direction: ltr;
  cursor: pointer;
}
main footer .info .container .links ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
main footer .info .container .links ul li {
    background-color: var(--main-yellow);
    border-radius: 0.5rem;
    padding: 0.4rem 0.6rem;
    line-height: 0;
}
main footer .info .container .links i {
    color: #fff;
    font-size: 2rem;
}
main footer .info .container .links a {
  font-size: 1.3rem;
  font-weight: 500;
}
main footer .copy {
  padding: 1.5rem 0rem;
  background-color: var(--main-green);
}
main footer .copy .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
main footer .copy .container blockquote a {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
}
main footer .copy .container span {
  font-weight: 500;
  color: #fff;
  font-size: 1.2rem;
}

/* Custom CSS for Owl Carousel */
.owl-carousel {
  margin: 1rem 0rem;
  padding: 0rem 1rem;
  overflow: hidden;
}

.owl-carousel .item {
  padding: 10px;
  background: #eff7f1;
  box-shadow: 4px 5px 8px 1px rgba(0, 0, 0, 0.101960784);
  border-radius: 1rem;
  cursor: grab;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 100%;
  max-width: 100%;
  width: 265px;
  height: 173px;
  overflow: hidden;
}
.owl-carousel .item img {
  width: 200px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.owl-item.active {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.owl-stage {
  display: flex;
  overflow: hidden;
  padding: 3rem 0rem;
  justify-content: center;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background-color: transparent;
  color: var(--main-yellow);
  border: none;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: 55%;
}
.owl-nav button.owl-prev i,
.owl-nav button.owl-next i {
  font-size: 2rem;
}
.owl-nav button.owl-prev {
  left: -2%;
}
.owl-nav button.owl-next {
  right: -2%;
}

/* ______________________________________________________________*/
/* _____________________ Media query ____________________________*/
/* ______________________________________________________________*/
@media (max-width: 450px) {
  main {
    /*___ header ____*/
    /*___ content ____*/
    /*_____ footer ___*/
  }
  main header::after {
    width: 70%;
  }
  main header .cont {
    align-items: flex-start;
  }
  main header .cont .join {
    display: none;
  }
  main header .cont nav .menu ul.links .join {
    display: block;
  }
  main .content .hiro .cont {
    justify-content: center;
  }
  main .content .hiro .cont .text .info .cta {
    background-color: #e6e5e5;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.5rem;
  }
  main .content .hiro .cont .text .info .cta img {
    width: 25px;
  }
  main .content .about {
    padding-top: 1rem;
  }
  main .content .about .cont {
    flex-wrap: wrap-reverse;
  }
  main .content .about .cont .text .head h3 {
    font-size: 1.2rem;
  }
  main .content .about .cont .text .head img {
    width: 160px;
  }
  main .content .about .cont .text p {
    width: 100%;
    font-size: 1rem;
  }
  main .content .about .cont .image {
    margin-top: 1rem;
    width: 100%;
  }
  main .content .about .cont .image img {
    -o-object-fit: fill;
       object-fit: fill;
  }
  main .content .features .head {
    flex-wrap: wrap-reverse;
  }
  main .content .features .head h3 {
    font-size: 1rem;
    margin-left: auto;
  }
  main .content .features .head .btn-secondary-fill {
    display: none;
  }
  main .content .features .cont {
    justify-content: center;
  }
  main .content .features .cont .text {
    justify-content: center;
  }
  main .content .packages .cont .head h3 {
    font-size: 1rem;
  }
  main .content .clients .cont .head h3 {
    font-size: 1rem;
    margin-left: auto;
  }
  main .content .clients .cont .head .btn-secondary-fill {
    display: none;
  }
  main .content .clients .cont .owl-carousel .owl-nav {
    display: none;
  }
  main .content .contact .cont {
    padding: 2rem 1rem;
    flex-wrap: wrap-reverse;
    gap: 3rem;
  }
  main .content .contact .cont .text {
    width: 100%;
  }
  main .content .contact .cont .text .head h3 {
    width: -moz-fit-content;
    width: fit-content;
  }
  main .content .contact .cont .text .btn-yallow-fill {
    font-size: 1rem;
  }
  main .content .contact .cont .text .socail {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  main .content .contact .cont .text .socail blockquote strong {
    font-size: 1rem;
  }
  main .content .contact .cont .text .socail blockquote img {
    width: 35px;
  }
  main .content .contact .cont .image {
    width: 100%;
  }
  main .content .contact .foot {
    flex-wrap: wrap;
    gap: 1rem;
  }
  main .content .contact .foot .text {
    flex-wrap: wrap;
  }
  main footer .info .container .logo img {
    width: 200px;
  }
  main footer .copy .container {
    justify-content: center;
  }
  main footer .copy .container blockquote a {
    font-size: 0.9rem;
  }
  main footer .copy .container span {
    font-size: 0.9rem;
  }
}
@media (min-width: 451px) and (max-width: 767px) {
  main {
    /*___ header ____*/
    /*___ content ____*/
    /*_____ footer ___*/
  }
  main header::after {
    width: 70%;
  }
  main header .cont {
    align-items: flex-start;
  }
  main header .cont .join {
    display: none;
  }
  main header .cont nav .menu ul.links .join {
    display: block;
  }
  main .content .hiro .cont {
    justify-content: center;
  }
  main .content .hiro .cont .text .info .cta {
    background-color: #e6e5e5;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.5rem;
  }
  main .content .hiro .cont .text .info .cta img {
    width: 25px;
  }
  main .content .about {
    padding-top: 1rem;
  }
  main .content .about .cont {
    flex-wrap: wrap-reverse;
  }
  main .content .about .cont .text .head h3 {
    font-size: 1.2rem;
  }
  main .content .about .cont .text .head img {
    width: 160px;
  }
  main .content .about .cont .text p {
    width: 100%;
    font-size: 1rem;
  }
  main .content .about .cont .image {
    margin-top: 1rem;
    width: 100%;
  }
  main .content .about .cont .image img {
    -o-object-fit: fill;
       object-fit: fill;
  }
  main .content .features .head {
    flex-wrap: wrap-reverse;
  }
  main .content .features .head h3 {
    font-size: 1rem;
    margin-left: auto;
  }
  main .content .features .head .btn-secondary-fill {
    display: none;
  }
  main .content .features .cont {
    justify-content: center;
  }
  main .content .features .cont .text {
    justify-content: center;
  }
  main .content .packages .cont .head h3 {
    font-size: 1rem;
  }
  main .content .clients .cont .head h3 {
    font-size: 1rem;
    margin-left: auto;
  }
  main .content .clients .cont .head .btn-secondary-fill {
    display: none;
  }
  main .content .clients .cont .owl-carousel .owl-nav {
    display: none;
  }
  main .content .contact .cont {
    padding: 2rem 1rem;
    flex-wrap: wrap-reverse;
    gap: 3rem;
  }
  main .content .contact .cont .text {
    width: 100%;
  }
  main .content .contact .cont .text .head h3 {
    width: -moz-fit-content;
    width: fit-content;
  }
  main .content .contact .cont .text .btn-yallow-fill {
    font-size: 1rem;
  }
  main .content .contact .cont .text .socail {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  main .content .contact .cont .text .socail blockquote strong {
    font-size: 1rem;
  }
  main .content .contact .cont .text .socail blockquote img {
    width: 35px;
  }
  main .content .contact .cont .image {
    width: 100%;
  }
  main .content .contact .foot {
    flex-wrap: wrap;
    gap: 1rem;
  }
  main .content .contact .foot .text {
    flex-wrap: wrap;
  }
  main footer .info .container .logo img {
    width: 200px;
  }
  main footer .copy .container {
    justify-content: center;
  }
  main footer .copy .container blockquote a {
    font-size: 0.9rem;
  }
  main footer .copy .container span {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  main {
    /*___ header ____*/
    /*___ content ____*/
    /*_____ footer ___*/
  }
  main header .cont {
    align-items: flex-start;
  }
  main header .cont .join {
    display: none;
  }
  main header .cont nav .menu ul.links .join {
    display: block;
  }
  main .content .hiro .cont {
    justify-content: center;
  }
  main .content .hiro .cont .text .info .cta {
    background-color: #e6e5e5;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.5rem;
  }
  main .content .hiro .cont .text .info .cta img {
    width: 25px;
  }
  main .content .about {
    padding-top: 1rem;
  }
  main .content .about .cont {
    flex-wrap: wrap-reverse;
  }
  main .content .about .cont .text .head h3 {
    font-size: 1.2rem;
  }
  main .content .about .cont .text .head img {
    width: 160px;
  }
  main .content .about .cont .text p {
    width: 100%;
    font-size: 1rem;
  }
  main .content .about .cont .image {
    margin-top: 1rem;
    width: 100%;
  }
  main .content .about .cont .image img {
    -o-object-fit: fill;
       object-fit: fill;
  }
  main .content .features .head {
    justify-content: space-between;
  }
  main .content .features .head h3 {
    font-size: 1rem;
  }
  main .content .features .cont {
    justify-content: center;
  }
  main .content .features .cont .text {
    width: 100%;
    justify-content: center;
  }
  main .content .contact .cont {
    padding: 2rem 1rem;
    flex-wrap: wrap-reverse;
    gap: 3rem;
  }
  main .content .contact .cont .text {
    width: 100%;
  }
  main .content .contact .cont .text .head h3 {
    width: -moz-fit-content;
    width: fit-content;
  }
  main .content .contact .cont .text .btn-yallow-fill {
    font-size: 1rem;
  }
  main .content .contact .cont .text .socail {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  main .content .contact .cont .text .socail blockquote strong {
    font-size: 1rem;
  }
  main .content .contact .cont .text .socail blockquote img {
    width: 35px;
  }
  main .content .contact .cont .image {
    width: 100%;
  }
  main .content .contact .foot {
    flex-wrap: wrap;
    gap: 1rem;
  }
  main .content .contact .foot .text {
    flex-wrap: wrap;
  }
}
main .content .packages .cont ul.price_boxes {
display: flex !important; 
}
@media (min-width: 992px) and (max-width: 1200px) {
  main {
    /*___ header ____*/
    /*___ content ____*/
    /*_____ footer ___*/
  }
  main header::after {
    width: 38%;
  }
}/*# sourceMappingURL=main.css.map */

@media (max-width: 768px) {
    main .content .features .item {
        padding: 15px;
    }
    main .content .features .item h4 {
        font-size: 1.3em;
    }
    main .content .features .item p, main .content .features .item ul {
        font-size: 0.9em;
    }
    main .content .packages .cont ul.price_boxes {
flex-wrap: wrap  ;
}
}