@charset "UTF-8";
body {
  font-family: "Almarai", sans-serif;
  background-color: #FFFFFF;
  direction: rtl;
}

a {
  text-decoration: none !important;
}

a:focus {
  box-shadow: none !important;
}

li {
  list-style: none !important;
}

::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: #079ba5 !important;
  border-radius: 40px !important;
}

::-webkit-scrollbar-track {
  border-radius: 20px !important;
}

header {
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 99;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(21, 90, 156, 0.95);
  display: flex;
  align-items: center;
}
@media (width < 992px) {
  header {
    height: 90px;
  }
}
@media (width < 500px) {
  header {
    height: 80px;
  }
}
header .cont-header {
  width: 95%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (width < 992px) {
  header .cont-header {
    width: 90%;
  }
}
header .cont-header #chk1 {
  display: none;
}
@media (width < 992px) {
  header .cont-header #chk1:checked ~ ul {
    left: 0;
  }
}
header .cont-header .logo img {
  width: 180px;
  transition: all 0.5s;
}
@media (width < 1200px) {
  header .cont-header .logo img {
    width: 150px;
  }
}
@media (width < 500px) {
  header .cont-header .logo img {
    width: 120px;
  }
}
@media (width < 400px) {
  header .cont-header .logo img {
    width: 100px;
  }
}
@media (width < 350px) {
  header .cont-header .logo img {
    width: 90px;
  }
}
header .cont-header .search-box {
  position: relative;
  width: 300px;
  transition: all 0.5s;
}
@media (width < 1300px) {
  header .cont-header .search-box {
    width: 250px;
  }
}
@media (width < 1100px) {
  header .cont-header .search-box {
    width: 200px;
  }
}
@media (width < 768px) {
  header .cont-header .search-box {
    width: 300px;
  }
}
header .cont-header .search-box input {
  width: 100%;
  height: 35px;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 1.5rem;
  text-align: center;
  font-size: 1rem;
  padding-inline: 1rem;
}
header .cont-header .search-box button {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 1.5rem;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.9);
  background-color: #0dd278;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .cont-header .search-box button svg {
  width: 18px;
}
header .cont-header ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  transition: all 0.5s;
}
@media (width < 992px) {
  header .cont-header ul {
    position: fixed;
    top: 90px;
    left: -100%;
    background-color: rgba(21, 90, 156, 0.95);
    height: calc(100vh - 90px);
    width: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
}
@media (width < 768px) {
  header .cont-header ul {
    width: 100%;
  }
}
@media (width < 500px) {
  header .cont-header ul {
    top: 80px;
    height: calc(100vh - 80px);
  }
}
header .cont-header ul li {
  padding: 0 1.5rem;
}
@media (width < 1300px) {
  header .cont-header ul li {
    padding-inline: 1rem;
  }
}
@media (width < 1100px) {
  header .cont-header ul li {
    padding-inline: 0.5rem;
  }
}
@media (width < 992px) {
  header .cont-header ul li {
    padding-inline: 0;
    padding-block: 1.5rem;
  }
}
header .cont-header ul li a {
  color: #FFFFFF;
  font-weight: 600;
  padding: 0 0 0.5rem;
  white-space: nowrap;
  transition: all 0.5s;
  position: relative;
}
header .cont-header ul li a::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 2px;
  opacity: 0;
  background-color: #0dd278;
  transform: translateX(-100%);
  transition: all 0.5s;
}
header .cont-header ul li a:hover, header .cont-header ul li a.active {
  color: #0dd278;
}
header .cont-header ul li a:hover::before, header .cont-header ul li a.active::before {
  opacity: 0.7;
  transform: translateX(0);
}
header .cont-header ul .language-btn {
  border: 1px solid #155a9c;
  border-radius: 0.5rem;
  background-color: #0dd278;
  padding: 0.5rem;
  cursor: pointer;
  color: #FFFFFF;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  display: none;
  justify-content: center;
  align-items: center;
}
@media (width < 570px) {
  header .cont-header ul .language-btn {
    display: flex;
  }
}
header .cont-header ul .language-btn:hover {
  background-color: #FFFFFF;
}
header .cont-header ul .language-btn:hover button, header .cont-header ul .language-btn:hover svg {
  color: #0dd278 !important;
}
header .cont-header ul .language-btn svg {
  width: 0.85rem;
  transition: all 0.5s;
}
header .cont-header ul .language-btn button {
  font-size: 0.85rem;
  color: #FFFFFF;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.5s;
}
header .cont-header .social-media {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.5s;
}
@media (width < 1100px) {
  header .cont-header .social-media {
    gap: 0.25rem;
  }
}
@media (width < 768px) {
  header .cont-header .social-media {
    display: none;
  }
}
header .cont-header .social-media a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #155a9c;
  background-color: #FFFFFF;
  opacity: 0.5;
  transition: all 0.5s;
}
header .cont-header .social-media a svg {
  width: 15px;
}
header .cont-header .social-media a:hover {
  color: #FFFFFF;
  opacity: 1;
  margin-top: -1rem;
}
header .cont-header .social-media a:hover:nth-child(1) {
  background-color: #0d6efd;
}
header .cont-header .social-media a:hover:nth-child(2) {
  background-color: #e1306c;
}
header .cont-header .social-media a:hover:nth-child(3) {
  background-color: #0a66c2;
}
header .cont-header .social-media a:hover:nth-child(4) {
  background-color: #282828;
}
header .cont-header .social-media a:hover:nth-child(5) {
  background-color: #1da1f2;
}
header .cont-header .language {
  border: 1px solid #155a9c;
  border-radius: 0.5rem;
  background-color: #0dd278;
  padding: 0.4rem;
  cursor: pointer;
  color: #FFFFFF;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 768px) {
  header .cont-header .language {
    padding: 0.35rem;
  }
}
@media (width < 570px) {
  header .cont-header .language {
    display: none;
  }
}
header .cont-header .language:hover {
  background-color: #FFFFFF;
}
header .cont-header .language:hover button, header .cont-header .language:hover svg {
  color: #0dd278 !important;
}
header .cont-header .language svg {
  width: 1rem;
  transition: all 0.5s;
}
@media (width < 992px) {
  header .cont-header .language svg {
    font-size: 0.9rem;
  }
}
@media (width < 768px) {
  header .cont-header .language svg {
    font-size: 0.85rem;
  }
}
header .cont-header .language button {
  color: #FFFFFF;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.5s;
}
@media (width < 992px) {
  header .cont-header .language button {
    font-size: 0.9rem;
  }
}
@media (width < 768px) {
  header .cont-header .language button {
    font-size: 0.85rem;
  }
}
header .cont-header .menu {
  display: none;
  cursor: pointer;
  color: #FFFFFF;
  padding: 0.25rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.5s;
  background-color: #0dd278;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
header .cont-header .menu svg {
  cursor: pointer;
}
@media (width < 992px) {
  header .cont-header .menu {
    display: block;
  }
}
@media (width < 400px) {
  header .cont-header .menu {
    padding: 0.2rem;
  }
}

.main {
  width: 90%;
  margin: auto;
  padding-block: 10rem 4rem;
  line-height: 1.5;
  display: flex;
}
@media (width < 992px) {
  .main {
    padding-top: 8rem;
  }
}
@media (width < 768px) {
  .main {
    padding-top: 7rem;
  }
}
@media (width < 500px) {
  .main {
    padding-top: 6rem;
  }
}
.main .category-container {
  border-top: 4px solid #000000;
  padding-top: 0.75rem;
  margin-bottom: 2rem;
}
.main .category-container a {
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: all 0.5s;
}
.main .category-container a:hover {
  color: #079ba5;
}
.main .category-container a strong {
  color: #0dd278;
}
.main .category-container h6 {
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
}
.main .category-container a.item {
  display: flex;
  gap: 1rem;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.main .category-container a.item:hover .img-mob img {
  transform: scale(1.1);
}
.main .category-container a.item:hover .details h6 {
  color: #079ba5;
}
.main .category-container a.item:hover .details .company-price p {
  color: #079ba5;
}
.main .category-container a.item:hover.compare {
  border-color: #079ba5;
}
.main .category-container a.item:hover.compare .img-mob img {
  transform: scale(1);
}
.main .category-container a.item .img-mob {
  min-width: 35%;
  max-width: 35%;
  height: 120px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
}
.main .category-container a.item .img-mob img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.main .category-container a.item .details {
  width: 100%;
  padding: 1rem 0 0.5rem 1rem;
  font-weight: 500;
}
.main .category-container a.item .details h6 {
  color: #000000;
  font-size: 0.9rem;
  height: 50px;
  margin-bottom: 0;
  transition: all 0.5s;
}
@media (width < 650px) {
  .main .category-container a.item .details h6 {
    font-size: 0.8rem;
  }
}
.main .category-container a.item .details .company-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
@media (width < 650px) {
  .main .category-container a.item .details .company-price {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.8rem;
  }
}
.main .category-container a.item .details .company-price p {
  margin-bottom: 0;
  color: #000000;
  transition: all 0.5s;
}
@media (width < 650px) {
  .main .category-container a.item .details .company-price p {
    margin-bottom: 0.25rem;
  }
}
.main .category-container a.item .details .company-price span {
  color: #0dd278;
  font-weight: 900;
}
.main .category-container a.item.blog .img-mob {
  height: 90px;
}
.main .category-container a.item.blog .details {
  width: 100%;
  padding: 1rem 0 0.5rem 1rem;
  font-weight: 500;
}
.main .category-container a.item.blog .details h6 {
  height: auto;
}
.main .category-container a.item.compare {
  border: 1px solid transparent;
  padding-inline-start: 0.5rem;
}
.main .category-container a.item.compare .img-mob {
  min-width: 40%;
  max-width: 40%;
  height: 140px;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: visible;
}
.main .category-container a.item.compare .img-mob img {
  min-height: 120px;
  max-height: 120px;
  min-width: 45%;
  max-width: 45%;
}
.main .category-container a.item.compare .img-mob span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  color: #079ba5;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.main .category-container a.item.compare .details {
  padding-inline-end: 0.5rem;
  display: flex;
  align-items: center;
}
.main .category-container a.item.compare .details h6 {
  height: auto;
}
.main .category-container a.item.compare .details h6 span {
  font-size: 1.25rem;
  color: #0dd278;
  display: block;
}
.main .suggestion {
  margin-top: 3rem;
}
.main .suggestion:first-child {
  margin-top: 0;
}
.main .suggestion h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem;
  margin-bottom: 2.5rem;
  background-color: #eee;
  color: #155a9c;
}
@media (width < 500px) {
  .main .suggestion h4 {
    font-size: 1rem;
  }
}
.main .suggestion .owl-carousel .card {
  height: 220px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
@media (width < 500px) {
  .main .suggestion .owl-carousel .card {
    max-width: 200px;
    margin: auto;
  }
}
.main .suggestion .owl-carousel .card img {
  width: 75%;
  margin-inline: auto;
  transform: scale(0.9);
  height: 100%;
  border-radius: 0.5rem;
  transition: all 1s;
}
.main .suggestion .owl-carousel .card .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  text-align: center;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5843137255);
  color: #FFFFFF;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: all 0.5s;
}
.main .suggestion .owl-carousel .card .title h6 {
  margin-bottom: 0;
  font-weight: 600;
}
@media (width < 768px) {
  .main .suggestion .owl-carousel .card .title h6 {
    font-size: 15px;
  }
}
@media (width < 500px) {
  .main .suggestion .owl-carousel .card .title h6 {
    font-size: 14px;
  }
}
.main .suggestion .owl-carousel .card:hover img {
  transform: scale(1);
}
.main .suggestion .owl-carousel .card:hover .title {
  color: #079ba5;
}
.main .suggestion .owl-carousel .owl-dots {
  margin-top: 1.5rem !important;
}
.main .suggestion .owl-carousel.company-slider .card {
  height: 120px;
}
.main .suggestion .owl-carousel.company-slider .card img {
  width: 100%;
  transform: scale(1);
}
.main .suggestion .owl-carousel.company-slider .card:hover img {
  transform: scale(1.2);
}
.main .suggestion .owl-carousel.company-slider .card .title {
  height: 40px;
}
@media (width < 992px) {
  .main .suggestion .owl-carousel.company-slider .card {
    height: 100px;
  }
  .main .suggestion .owl-carousel.company-slider .card .title {
    height: 35px;
  }
}
@media (width < 500px) {
  .main .suggestion .owl-carousel.company-slider .card .title {
    height: 30px;
  }
}
.main .suggestion .link-all a, .main .suggestion .link-all button {
  display: block;
  text-align: center;
  width: 280px;
  margin: 2rem auto 0;
  padding-block: 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #079ba5;
  color: #FFFFFF;
  transition: all 0.5s;
}
.main .suggestion .link-all a:hover, .main .suggestion .link-all button:hover {
  border: 1px solid #079ba5;
  background-color: #FFFFFF;
  color: #079ba5;
}
.main .suggestion h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  opacity: 0.5;
  line-height: 1.5;
  width: 90%;
  margin-bottom: 0;
}
.main .suggestion .compare {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  text-align: center;
  padding: 3rem 0;
}
@media (width < 650px) {
  .main .suggestion .compare {
    gap: 3rem;
  }
}
@media (width < 500px) {
  .main .suggestion .compare {
    gap: 1.5rem;
  }
}
.main .suggestion .compare .changemobile-btn {
  padding: 1.5rem;
  border-radius: 1rem;
  width: 200px;
  max-height: 300px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media (width < 500px) {
  .main .suggestion .compare .changemobile-btn {
    width: 150px;
    max-height: 275px;
  }
}
.main .suggestion .compare .changemobile-btn:hover img {
  transform: scale(1.05);
}
.main .suggestion .compare .changemobile-btn:hover .addToCompare-txt, .main .suggestion .compare .changemobile-btn:hover .mobile-name {
  color: #079ba5;
}
.main .suggestion .compare .changemobile-btn img {
  min-width: 120px;
  max-width: 120px;
  height: 200px;
  display: block;
  margin: auto auto 1.5rem;
  transition: all 0.5s;
}
@media (width < 500px) {
  .main .suggestion .compare .changemobile-btn img {
    min-width: 90px;
    max-width: 90px;
    height: 150px;
  }
}
@media (width < 360px) {
  .main .suggestion .compare .changemobile-btn img {
    min-width: 75px;
    max-width: 75px;
  }
}
.main .suggestion .compare .changemobile-btn .addToCompare-txt {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  transition: all 0.5s;
}
.main .suggestion .compare .changemobile-btn .mobile-fullname {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: -1.5rem;
}
.main .suggestion .compare .changemobile-btn .mobile-fullname .mobile-name {
  font-size: 1rem;
  transition: all 0.5s;
}
@media (width < 500px) {
  .main .suggestion .compare .changemobile-btn .mobile-fullname .mobile-name {
    font-size: 0.95rem;
  }
}
.main .suggestion .compare .changemobile-btn .mobile-fullname .mobile-brand {
  font-size: 0.75rem;
  background-color: #eee;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0.25rem;
  border-radius: 0.25rem;
}
.main .suggestion .compare .vs {
  background: #079ba5 linear-gradient(120deg, #04edff 0%, #0dd278 150%);
  color: #fff;
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 7px 20px 0px #079ba5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  transition: all 0.5s;
}
@media (width < 650px) {
  .main .suggestion .compare .vs {
    width: 75px;
    height: 75px;
    font-size: 1.5rem;
  }
}
@media (width < 500px) {
  .main .suggestion .compare .vs {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}
@media (width < 400px) {
  .main .suggestion .compare .vs {
    width: 50px;
    height: auto;
    padding: 0.25rem;
  }
}
@media (width >= 768px) {
  .main .suggestion .compare .modal .modal-dialog {
    max-width: 70%;
    min-width: 700px;
  }
}
@media (width < 768px) {
  .main .suggestion .compare .modal .modal-dialog {
    max-width: 80%;
    min-width: 570px;
  }
}
@media (width < 576px) {
  .main .suggestion .compare .modal .modal-dialog {
    max-width: 90%;
    min-width: 90%;
    margin-inline: auto;
  }
}
.main .suggestion .compare .modal .modal-header h1 {
  font-weight: bold;
  margin-bottom: 0;
  color: #0dd278;
}
.main .suggestion .compare .modal .modal-body {
  padding-block: 2rem 3rem;
  max-height: 450px;
  overflow-y: auto;
}
.main .suggestion .compare .modal .modal-body form {
  width: 500px;
  margin: 0 auto 2rem;
}
@media (width < 768px) {
  .main .suggestion .compare .modal .modal-body form {
    width: 90%;
  }
}
.main .suggestion .compare .modal .modal-body form input {
  padding: 0.5rem;
  font-size: 14px;
  direction: rtl;
}
.main .suggestion .compare .modal .modal-body .card {
  height: 220px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (width < 400px) {
  .main .suggestion .compare .modal .modal-body .card {
    height: 200px;
    width: 100%;
  }
}
.main .suggestion .compare .modal .modal-body .card img {
  width: 75%;
  margin-inline: auto;
  transform: scale(0.9);
  height: 100%;
  border-radius: 0.5rem;
  transition: all 1s;
}
.main .suggestion .compare .modal .modal-body .card .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  text-align: center;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5843137255);
  color: #FFFFFF;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: all 0.5s;
}
.main .suggestion .compare .modal .modal-body .card .title h6 {
  margin-bottom: 0;
  font-weight: 600;
}
@media (width < 400px) {
  .main .suggestion .compare .modal .modal-body .card .title h6 {
    font-size: 0.8rem;
  }
}
.main .suggestion .compare .modal .modal-body .card:hover img {
  transform: scale(1);
}
.main .suggestion .compare .modal .modal-body .card:hover .title {
  color: #079ba5;
}
.main .suggestion .go-to-compare a, .main .suggestion .go-to-compare button {
  display: block;
  width: 200px;
  margin: auto;
  color: #FFFFFF;
  background: #079ba5 linear-gradient(120deg, #079ba5 0%, #0dd278 100%);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 7px 30px -7px #0dd278;
  margin-bottom: 20px;
  font-size: 1.25rem;
  text-align: center;
}
@media (width < 650px) {
  .main .suggestion .go-to-compare a, .main .suggestion .go-to-compare button {
    padding: 0.5rem 1rem;
  }
}
@media (width < 500px) {
  .main .suggestion .go-to-compare a, .main .suggestion .go-to-compare button {
    width: 150px;
    font-size: 1rem;
  }
}

.mob-details {
  width: 90%;
  margin: auto;
  padding-block: 10rem 4rem;
  line-height: 1.5;
  display: flex;
}
@media (width < 992px) {
  .mob-details {
    padding-top: 8rem;
  }
}
@media (width < 768px) {
  .mob-details {
    padding-top: 7rem;
  }
}
@media (width < 500px) {
  .mob-details {
    padding-top: 6rem;
  }
}
.mob-details h1 {
  font-size: 1.25rem;
  margin: 0 0 3rem;
  font-weight: 900;
}
@media (width < 768px) {
  .mob-details h1 {
    font-size: 1.15rem;
  }
}
@media (width < 500px) {
  .mob-details h1 {
    font-size: 1rem;
  }
}
@media (width < 400px) {
  .mob-details h1 {
    font-size: 0.85rem;
  }
}
.mob-details h1 span {
  color: #0dd278;
  font-size: 1.5rem;
}
@media (width < 768px) {
  .mob-details h1 span {
    font-size: 1.25rem;
  }
}
@media (width < 500px) {
  .mob-details h1 span {
    font-size: 1.15rem;
  }
}
@media (width < 400px) {
  .mob-details h1 span {
    font-size: 1rem;
  }
}
.mob-details #mob-photos .carousel-inner .carousel-item {
  height: 400px;
}
.mob-details #mob-photos .carousel-inner .carousel-item img {
  display: block;
  width: 85%;
  height: 100%;
  margin: auto;
  border-radius: 0.75rem;
}
.mob-details #mob-photos .carousel-indicators {
  position: static;
  margin-top: 0.5rem;
}
.mob-details #mob-photos .carousel-indicators button {
  background-color: rgba(70, 70, 70, 0.5843137255);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-inline: 0.3rem;
}
.mob-details #mob-photos .addToCompare a {
  display: block;
  text-align: center;
  width: 200px;
  margin: 1rem auto 0;
  padding-block: 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #079ba5;
  color: #FFFFFF;
  transition: all 0.5s;
}
.mob-details #mob-photos .addToCompare a:hover {
  border: 1px solid #079ba5;
  background-color: #FFFFFF;
  color: #079ba5;
}
.mob-details .breif-details li {
  background-color: #155a9c;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
}
.mob-details .breif-details li:hover {
  background-color: #0dd278;
}
.mob-details .breif-details li .icon {
  background-color: #079ba5;
  max-width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.mob-details .breif-details li .icon svg {
  max-width: 20px;
  min-width: 20px;
}
.mob-details .all-details .nav {
  padding: 0;
  margin-bottom: 2rem;
  width: 75%;
  border-bottom: 4px solid #000000;
}
@media (width < 1070px) {
  .mob-details .all-details .nav {
    width: 85%;
  }
}
@media (width < 992px) {
  .mob-details .all-details .nav {
    width: 80%;
  }
}
@media (width < 768px) {
  .mob-details .all-details .nav {
    width: 85%;
  }
}
@media (width < 600px) {
  .mob-details .all-details .nav {
    width: 100%;
  }
}
.mob-details .all-details .nav .nav-item .nav-link {
  background-color: transparent;
  color: #000000;
  font-weight: 600;
  padding: 1rem 1.5rem;
  margin-inline-end: 0.3rem;
  border-radius: 0.25rem;
  transition: all 0.3s;
}
@media (width < 768px) {
  .mob-details .all-details .nav .nav-item .nav-link {
    font-size: 14px;
  }
}
@media (width < 500px) {
  .mob-details .all-details .nav .nav-item .nav-link {
    font-size: 12px;
  }
}
.mob-details .all-details .nav .nav-item .nav-link:hover {
  background-color: #eee;
}
.mob-details .all-details .nav .nav-item .nav-link.active {
  background-color: #0dd278;
  color: #FFFFFF;
  font-weight: 700;
}
.mob-details .all-details .tab-content .tab-pane .description {
  color: rgba(70, 70, 70, 0.5843137255);
  margin-bottom: 0;
  font-size: 18px;
}
@media (width < 768px) {
  .mob-details .all-details .tab-content .tab-pane .description {
    font-size: 1rem;
  }
}
@media (width < 500px) {
  .mob-details .all-details .tab-content .tab-pane .description {
    font-size: 0.9rem;
  }
}
.mob-details .all-details .tab-content .tab-pane .mob-img {
  width: 350px;
  max-height: 400px;
  margin-block: 3rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (width < 400px) {
  .mob-details .all-details .tab-content .tab-pane .mob-img {
    width: 100%;
  }
}
.mob-details .all-details .tab-content .tab-pane .mob-img img {
  width: 100%;
  transition: all 0.75s;
}
.mob-details .all-details .tab-content .tab-pane .mob-img:hover img {
  transform: scale(1.1);
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications h3 {
  background-color: #d9edf7;
  color: #31708f;
  padding: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (width < 768px) {
  .mob-details .all-details .tab-content .tab-pane .mob-specifications h3 {
    font-size: 1.1rem;
  }
}
@media (width < 500px) {
  .mob-details .all-details .tab-content .tab-pane .mob-specifications h3 {
    font-size: 1rem;
  }
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications .specific-item li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications .specific-item li svg {
  min-width: 18px;
  max-width: 18px;
  color: #0080ce;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications .specific-item li span {
  font-size: 1rem;
}
@media (width < 768px) {
  .mob-details .all-details .tab-content .tab-pane .mob-specifications .specific-item li span {
    font-size: 0.95rem;
  }
}
@media (width < 500px) {
  .mob-details .all-details .tab-content .tab-pane .mob-specifications .specific-item li span {
    font-size: 0.85rem;
  }
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications.mob-features h3 {
  background-color: #d6e9c6;
  color: #3c763d;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications.mob-features .specific-item li svg {
  color: #3c763d;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications.mob-defects h3 {
  background-color: #f2dede;
  color: #a94442;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications.mob-defects .specific-item li svg {
  color: #a94442;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications.mob-box h3 {
  background-color: rgba(128, 0, 128, 0.2);
  color: purple;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications.mob-box .specific-item li svg {
  color: purple;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications.mob-price h3 {
  background-color: #fcf8e3;
  color: #8a6d3b;
}
.mob-details .all-details .tab-content .tab-pane .mob-specifications.mob-price .specific-item li svg {
  color: #8a6d3b;
}
.mob-details .table-group {
  margin: 0px 0px 2.5rem;
  border: 1px solid #eee;
  border-radius: 0.7rem;
}
.mob-details .table-group .table-title {
  padding: 0.75rem;
  margin-bottom: 0;
  background: #155a9c;
  color: #FFFFFF;
  border-radius: 0.7rem 0.7rem 0 0;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-details .table-group .table-title .table-icon svg {
  max-width: 18px;
  min-width: 18px;
}
.mob-details .table-group .table-list li {
  font-size: 0.85rem;
  border-bottom: 1px solid #eee;
  transition: all 0.5s;
}
.mob-details .table-group .table-list li:last-child {
  border-bottom: none;
}
.mob-details .table-group .table-list li:last-child strong {
  border-bottom-right-radius: 0.7rem;
}
.mob-details .table-group .table-list li strong {
  width: 150px;
  padding-block: 0.75rem;
  display: inline-flex;
  justify-content: flex-start;
  padding-inline-start: 0.75rem;
  align-items: center;
  background-color: rgba(52, 178, 219, 0.3137254902);
}
.mob-details .table-group .table-list li .value {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  display: inline-flex;
  align-items: center;
}
.mob-details .table-group .table-list li:hover {
  background-color: #fcf8e3;
}
.mob-details .review .product-img {
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (width < 992px) {
  .mob-details .review .product-img {
    width: 33%;
  }
}
@media (width < 768px) {
  .mob-details .review .product-img {
    width: 50%;
  }
}
@media (width < 500px) {
  .mob-details .review .product-img {
    width: 75%;
  }
}
@media (width < 400px) {
  .mob-details .review .product-img {
    width: 100%;
  }
}
.mob-details .review .product-img img {
  height: 200px;
  width: 100%;
  border-radius: 0.5rem;
  transition: all 0.75s;
}
.mob-details .review .product-img img:hover {
  transform: scale(1.1);
}
.mob-details .review .user-review h5 {
  font-size: 1rem;
  font-weight: bold;
  color: #079ba5;
  margin-bottom: 0;
}
.mob-details .review .user-review .value {
  text-align: center;
  font-weight: 600;
  color: #aaa;
  direction: ltr;
}
.mob-details .review .user-review .value span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0dd278;
}
@media (width < 992px) {
  .mob-details .review .user-review {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
@media (width < 400px) {
  .mob-details .review .user-review {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.mob-details form {
  padding-inline-start: 2rem;
  margin-bottom: 3rem;
  border-right: 2px solid #eee;
}
@media (width < 992px) {
  .mob-details form {
    padding-inline-start: 0;
    border-right: none;
  }
}
.mob-details form .field-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mob-details form .field-item h6, .mob-details form .field-item label {
  margin-bottom: 0;
  font-weight: 600;
  color: #079ba5;
}
.mob-details form .field-item input.form-control, .mob-details form .field-item textarea.form-control {
  font-size: 0.9rem;
  padding-block: 0.5rem;
  resize: none;
}
.mob-details form .field-item input::-moz-placeholder, .mob-details form .field-item textarea::-moz-placeholder {
  color: #eee;
}
.mob-details form .field-item input::placeholder, .mob-details form .field-item textarea::placeholder {
  color: #eee;
}
.mob-details form .field-item button {
  width: 100%;
  padding-block: 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #079ba5;
  color: #FFFFFF;
  transition: all 0.5s;
}
.mob-details form .field-item button:hover {
  border: 1px solid #079ba5;
  background-color: #FFFFFF;
  color: #079ba5;
}
.mob-details form .field-item .rate {
  height: 46px;
  padding: 0;
  position: relative;
}
.mob-details form .field-item .rate:not(:checked) > input {
  position: absolute;
  top: 1.25rem;
}
.mob-details form .field-item .rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 35px;
  color: #ccc;
  position: relative;
  right: -8px;
}
.mob-details form .field-item .rate:not(:checked) > label:before {
  content: "★ ";
}
.mob-details form .field-item .rate > input:checked ~ label {
  color: #ffc700;
}
.mob-details form .field-item .rate:not(:checked) > label:hover,
.mob-details form .field-item .rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}
.mob-details form .field-item .rate > input:checked + label:hover,
.mob-details form .field-item .rate > input:checked + label:hover ~ label,
.mob-details form .field-item .rate > input:checked ~ label:hover,
.mob-details form .field-item .rate > input:checked ~ label:hover ~ label,
.mob-details form .field-item .rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}
.mob-details .comments {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #eee;
}
.mob-details .comments h4 {
  font-size: 1.25rem;
  color: #000000;
  font-weight: bold;
  margin-bottom: 2rem;
}
.mob-details .comments .comment {
  display: flex;
  gap: 1rem;
  line-height: 1.5;
  background-color: #fefefe;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}
.mob-details .comments .comment .icon {
  max-width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #eee;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.5s;
}
.mob-details .comments .comment .icon svg {
  width: 100%;
}
.mob-details .comments .comment .body-comment {
  margin-top: 0.5rem;
  width: 100%;
}
.mob-details .comments .comment .body-comment h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: all 0.5s;
}
.mob-details .comments .comment .body-comment p {
  margin-bottom: 0;
  transition: all 0.5s;
}
.mob-details .comments .comment .star {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.mob-details .comments .comment .star svg {
  color: #ffc700;
  fill: #ffc700;
  width: 18px;
}
.mob-details .comments .comment:hover {
  background-color: #079ba5;
}
.mob-details .comments .comment:hover .icon {
  background-color: #0dd278;
}
.mob-details .comments .comment:hover .body-comment h6 {
  color: #FFFFFF;
}
.mob-details .comments .comment:hover .body-comment p {
  color: #FFFFFF;
  opacity: 0.7;
}
.mob-details .comments .view-all {
  margin-top: 2rem;
  margin-inline: auto;
}
.mob-details .comments .view-all button {
  width: 200px;
  margin: auto;
  padding: 0.6rem;
  display: block;
  text-align: center;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #079ba5;
  color: #FFFFFF;
  transition: all 0.5s;
}
.mob-details .comments .view-all button:hover {
  border: 1px solid #079ba5;
  background-color: #FFFFFF;
  color: #079ba5;
}
.mob-details .category-container {
  border-top: 4px solid #000000;
  padding-top: 0.75rem;
  margin-bottom: 2rem;
}
.mob-details .category-container a {
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: all 0.5s;
}
.mob-details .category-container a:hover {
  color: #079ba5;
}
.mob-details .category-container a strong {
  color: #0dd278;
}
.mob-details .category-container h6 {
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
}
.mob-details .category-container a.item {
  display: flex;
  gap: 1rem;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.mob-details .category-container a.item:hover .img-mob img {
  transform: scale(1.1);
}
.mob-details .category-container a.item:hover .details h6 {
  color: #079ba5;
}
.mob-details .category-container a.item:hover .details .company-price p {
  color: #079ba5;
}
.mob-details .category-container a.item:hover.compare {
  border-color: #079ba5;
}
.mob-details .category-container a.item:hover.compare .img-mob img {
  transform: scale(1);
}
.mob-details .category-container a.item .img-mob {
  min-width: 35%;
  max-width: 35%;
  height: 120px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
}
.mob-details .category-container a.item .img-mob img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.mob-details .category-container a.item .details {
  width: 100%;
  padding: 1rem 0 0.5rem 1rem;
  font-weight: 500;
}
.mob-details .category-container a.item .details h6 {
  color: #000000;
  font-size: 0.9rem;
  height: 50px;
  margin-bottom: 0;
  transition: all 0.5s;
}
@media (width < 650px) {
  .mob-details .category-container a.item .details h6 {
    font-size: 0.8rem;
  }
}
.mob-details .category-container a.item .details .company-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
@media (width < 650px) {
  .mob-details .category-container a.item .details .company-price {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.8rem;
  }
}
.mob-details .category-container a.item .details .company-price p {
  margin-bottom: 0;
  color: #000000;
  transition: all 0.5s;
}
@media (width < 650px) {
  .mob-details .category-container a.item .details .company-price p {
    margin-bottom: 0.25rem;
  }
}
.mob-details .category-container a.item .details .company-price span {
  color: #0dd278;
  font-weight: 900;
}
.mob-details .category-container a.item.compare {
  border: 1px solid transparent;
  padding-inline-start: 0.5rem;
}
.mob-details .category-container a.item.compare .img-mob {
  min-width: 40%;
  max-width: 40%;
  height: 140px;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: visible;
}
.mob-details .category-container a.item.compare .img-mob img {
  min-height: 120px;
  max-height: 120px;
  min-width: 45%;
  max-width: 45%;
}
.mob-details .category-container a.item.compare .img-mob span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  color: #079ba5;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.mob-details .category-container a.item.compare .details {
  padding-inline-end: 0.5rem;
  display: flex;
  align-items: center;
}
.mob-details .category-container a.item.compare .details h6 {
  height: auto;
}
.mob-details .category-container a.item.compare .details h6 span {
  font-size: 1.25rem;
  color: #0dd278;
  display: block;
}
.mob-details .suggestion {
  margin-top: 3rem;
}
.mob-details .suggestion h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem;
  margin-bottom: 2.5rem;
  background-color: #eee;
  color: #155a9c;
}
@media (width < 500px) {
  .mob-details .suggestion h4 {
    font-size: 1rem;
  }
}
.mob-details .suggestion h4 strong {
  font-size: 1.35rem;
  color: #0dd278;
}
@media (width < 500px) {
  .mob-details .suggestion h4 strong {
    font-size: 1.1rem;
  }
}
.mob-details .suggestion .owl-carousel .card {
  height: 220px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
@media (width < 500px) {
  .mob-details .suggestion .owl-carousel .card {
    max-width: 200px;
    margin: auto;
  }
}
.mob-details .suggestion .owl-carousel .card img {
  width: 75%;
  margin-inline: auto;
  transform: scale(0.9);
  height: 100%;
  border-radius: 0.5rem;
  transition: all 1s;
}
.mob-details .suggestion .owl-carousel .card .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  text-align: center;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5843137255);
  color: #FFFFFF;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: all 0.5s;
}
.mob-details .suggestion .owl-carousel .card .title h6 {
  margin-bottom: 0;
  font-weight: 600;
}
@media (width < 768px) {
  .mob-details .suggestion .owl-carousel .card .title h6 {
    font-size: 15px;
  }
}
@media (width < 500px) {
  .mob-details .suggestion .owl-carousel .card .title h6 {
    font-size: 14px;
  }
}
.mob-details .suggestion .owl-carousel .card:hover img {
  transform: scale(1);
}
.mob-details .suggestion .owl-carousel .card:hover .title {
  color: #079ba5;
}
.mob-details .suggestion .owl-carousel .owl-dots {
  margin-top: 1.5rem !important;
}
.mob-details .suggestion .link-all a, .mob-details .suggestion .link-all button {
  display: block;
  text-align: center;
  width: 280px;
  margin: 2rem auto 0;
  padding-block: 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #079ba5;
  color: #FFFFFF;
  transition: all 0.5s;
}
.mob-details .suggestion .link-all a:hover, .mob-details .suggestion .link-all button:hover {
  border: 1px solid #079ba5;
  background-color: #FFFFFF;
  color: #079ba5;
}

.mob-details .show-blog img {
    min-width: 300px;
    max-width: 400px;
    max-height: 300px;
    display: block;
    margin: auto;
    border-radius: 0.5rem;
}
@media (width < 500px) {
    .mob-details .show-blog img {
        min-width: 250px;
        max-width: 300px;
        max-height: 250px;
    }
}
.mob-details .show-blog div:has(> table) {
    overflow-x: auto;
}

.compare-page {
  width: 90%;
  margin: auto;
  padding-block: 10rem 4rem;
  line-height: 1.5;
  display: flex;
}
@media (width < 992px) {
  .compare-page {
    padding-top: 8rem;
  }
}
@media (width < 768px) {
  .compare-page {
    padding-top: 7rem;
  }
}
@media (width < 500px) {
  .compare-page {
    padding-top: 6rem;
  }
}
.compare-page .category-container {
  border-top: 4px solid #000000;
  padding-top: 0.75rem;
  margin-bottom: 2rem;
}
.compare-page .category-container a {
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: all 0.5s;
}
.compare-page .category-container a:hover {
  color: #079ba5;
}
.compare-page .category-container a strong {
  color: #0dd278;
}
.compare-page .category-container h6 {
  color: #000000;
  font-size: 1.25rem;
  font-weight: bold;
}
.compare-page .category-container a.item {
  display: flex;
  gap: 1rem;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.compare-page .category-container a.item:hover .img-mob img {
  transform: scale(1.1);
}
.compare-page .category-container a.item:hover .details h6 {
  color: #079ba5;
}
.compare-page .category-container a.item:hover .details .company-price p {
  color: #079ba5;
}
.compare-page .category-container a.item:hover.compare {
  border-color: #079ba5;
}
.compare-page .category-container a.item:hover.compare .img-mob img {
  transform: scale(1);
}
.compare-page .category-container a.item .img-mob {
  min-width: 35%;
  max-width: 35%;
  height: 120px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
}
.compare-page .category-container a.item .img-mob img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.compare-page .category-container a.item .details {
  width: 100%;
  padding: 1rem 0 0.5rem 1rem;
  font-weight: 500;
}
.compare-page .category-container a.item .details h6 {
  color: #000000;
  font-size: 0.9rem;
  height: 50px;
  margin-bottom: 0;
  transition: all 0.5s;
}
@media (width < 650px) {
  .compare-page .category-container a.item .details h6 {
    font-size: 0.8rem;
  }
}
.compare-page .category-container a.item .details .company-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
@media (width < 650px) {
  .compare-page .category-container a.item .details .company-price {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.8rem;
  }
}
.compare-page .category-container a.item .details .company-price p {
  margin-bottom: 0;
  color: #000000;
  transition: all 0.5s;
}
@media (width < 650px) {
  .compare-page .category-container a.item .details .company-price p {
    margin-bottom: 0.25rem;
  }
}
.compare-page .category-container a.item .details .company-price span {
  color: #0dd278;
  font-weight: 900;
}
.compare-page .category-container a.item.compare {
  border: 1px solid transparent;
  padding-inline-start: 0.5rem;
}
.compare-page .category-container a.item.compare .img-mob {
  min-width: 40%;
  max-width: 40%;
  height: 140px;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: visible;
}
.compare-page .category-container a.item.compare .img-mob img {
  min-height: 120px;
  max-height: 120px;
  min-width: 45%;
  max-width: 45%;
}
.compare-page .category-container a.item.compare .img-mob span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  color: #079ba5;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.compare-page .category-container a.item.compare .details {
  padding-inline-end: 0.5rem;
  display: flex;
  align-items: center;
}
.compare-page .category-container a.item.compare .details h6 {
  height: auto;
}
.compare-page .category-container a.item.compare .details h6 span {
  font-size: 1.25rem;
  color: #0dd278;
  display: block;
}
.compare-page .suggestion {
  margin-top: 3rem;
}
.compare-page .suggestion:first-child {
  margin-top: 0;
}
.compare-page .suggestion h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem;
  margin-bottom: 2.5rem;
  background-color: #eee;
  color: #155a9c;
}
@media (width < 500px) {
  .compare-page .suggestion h4 {
    font-size: 1rem;
  }
}
.compare-page .suggestion h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  opacity: 0.5;
  line-height: 1.5;
  width: 90%;
  margin-bottom: 0;
}
.compare-page .suggestion .compare {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  text-align: center;
  padding: 3rem 0;
}
@media (width < 650px) {
  .compare-page .suggestion .compare {
    gap: 3rem;
  }
}
@media (width < 500px) {
  .compare-page .suggestion .compare {
    gap: 1.5rem;
  }
}
.compare-page .suggestion .compare .changemobile-btn {
  padding: 1.5rem;
  border-radius: 1rem;
  width: 200px;
  max-height: 300px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media (width < 500px) {
  .compare-page .suggestion .compare .changemobile-btn {
    width: 150px;
    max-height: 275px;
  }
}
.compare-page .suggestion .compare .changemobile-btn:hover img {
  transform: scale(1.05);
}
.compare-page .suggestion .compare .changemobile-btn:hover .addToCompare-txt, .compare-page .suggestion .compare .changemobile-btn:hover .mobile-name {
  color: #079ba5;
}
.compare-page .suggestion .compare .changemobile-btn img {
  min-width: 120px;
  max-width: 120px;
  height: 200px;
  display: block;
  margin: auto auto 1.5rem;
  transition: all 0.5s;
}
@media (width < 500px) {
  .compare-page .suggestion .compare .changemobile-btn img {
    min-width: 90px;
    max-width: 90px;
    height: 150px;
  }
}
@media (width < 360px) {
  .compare-page .suggestion .compare .changemobile-btn img {
    min-width: 75px;
    max-width: 75px;
  }
}
.compare-page .suggestion .compare .changemobile-btn .addToCompare-txt {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  transition: all 0.5s;
}
.compare-page .suggestion .compare .changemobile-btn .mobile-fullname {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: -1.5rem;
}
.compare-page .suggestion .compare .changemobile-btn .mobile-fullname .mobile-name {
  font-size: 1rem;
  transition: all 0.5s;
}
@media (width < 500px) {
  .compare-page .suggestion .compare .changemobile-btn .mobile-fullname .mobile-name {
    font-size: 0.95rem;
  }
}
.compare-page .suggestion .compare .changemobile-btn .mobile-fullname .mobile-brand {
  font-size: 0.75rem;
  background-color: #eee;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0.25rem;
  border-radius: 0.25rem;
}
.compare-page .suggestion .compare .vs {
  background: #079ba5 linear-gradient(120deg, #04edff 0%, #0dd278 150%);
  color: #fff;
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 7px 20px 0px #079ba5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  transition: all 0.5s;
}
@media (width < 650px) {
  .compare-page .suggestion .compare .vs {
    width: 75px;
    height: 75px;
    font-size: 1.5rem;
  }
}
@media (width < 500px) {
  .compare-page .suggestion .compare .vs {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}
@media (width < 400px) {
  .compare-page .suggestion .compare .vs {
    width: 50px;
    height: auto;
    padding: 0.25rem;
  }
}
@media (width >= 768px) {
  .compare-page .suggestion .compare .modal .modal-dialog {
    max-width: 70%;
    min-width: 700px;
  }
}
@media (width < 768px) {
  .compare-page .suggestion .compare .modal .modal-dialog {
    max-width: 80%;
    min-width: 570px;
  }
}
@media (width < 576px) {
  .compare-page .suggestion .compare .modal .modal-dialog {
    max-width: 90%;
    min-width: 90%;
    margin-inline: auto;
  }
}
.compare-page .suggestion .compare .modal .modal-header h1 {
  font-weight: bold;
  margin-bottom: 0;
  color: #0dd278;
}
.compare-page .suggestion .compare .modal .modal-body {
  padding-block: 2rem 3rem;
  max-height: 450px;
  overflow-y: auto;
}
.compare-page .suggestion .compare .modal .modal-body form {
  width: 500px;
  margin: 0 auto 2rem;
}
@media (width < 768px) {
  .compare-page .suggestion .compare .modal .modal-body form {
    width: 90%;
  }
}
.compare-page .suggestion .compare .modal .modal-body form input {
  padding: 0.5rem;
  font-size: 14px;
  direction: rtl;
}
.compare-page .suggestion .compare .modal .modal-body .card {
  height: 220px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (width < 400px) {
  .compare-page .suggestion .compare .modal .modal-body .card {
    height: 200px;
    width: 100%;
  }
}
.compare-page .suggestion .compare .modal .modal-body .card img {
  width: 75%;
  margin-inline: auto;
  transform: scale(0.9);
  height: 100%;
  border-radius: 0.5rem;
  transition: all 1s;
}
.compare-page .suggestion .compare .modal .modal-body .card .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  text-align: center;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5843137255);
  color: #FFFFFF;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: all 0.5s;
}
.compare-page .suggestion .compare .modal .modal-body .card .title h6 {
  margin-bottom: 0;
  font-weight: 600;
}
.compare-page .suggestion .compare .modal .modal-body .card:hover img {
  transform: scale(1);
}
.compare-page .suggestion .compare .modal .modal-body .card:hover .title {
  color: #079ba5;
}
.compare-page .suggestion .go-to-compare a, .compare-page .suggestion .go-to-compare button {
  display: block;
  width: 200px;
  margin: auto;
  color: #FFFFFF;
  background: #079ba5 linear-gradient(120deg, #079ba5 0%, #0dd278 100%);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 7px 30px -7px #0dd278;
  margin-bottom: 20px;
  font-size: 1.25rem;
  text-align: center;
}
@media (width < 650px) {
  .compare-page .suggestion .go-to-compare a, .compare-page .suggestion .go-to-compare button {
    padding: 0.5rem 1rem;
  }
}
@media (width < 500px) {
  .compare-page .suggestion .go-to-compare a, .compare-page .suggestion .go-to-compare button {
    width: 150px;
    font-size: 1rem;
  }
}
.compare-page .suggestion .compare-table {
  margin-top: 3rem;
}
.compare-page .suggestion .compare-table .container-table {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 0.75rem;
}
.compare-page .suggestion .compare-table .container-table .item {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  transition: all 1s;
  text-align: center;
}
.compare-page .suggestion .compare-table .container-table .item:first-child {
  border-radius: 0.75rem 0.75rem 0 0;
}
@media (width < 578px) {
  .compare-page .suggestion .compare-table .container-table .item {
    grid-template-columns: 125px 1fr 1fr;
  }
}
@media (width < 450px) {
  .compare-page .suggestion .compare-table .container-table .item {
    grid-template-columns: 100px 1fr 1fr;
  }
}
.compare-page .suggestion .compare-table .container-table .item:last-child {
  border-radius: 0 0 0.75rem 0.75rem;
}
.compare-page .suggestion .compare-table .container-table .item:last-child .info {
  border-bottom: none;
}
.compare-page .suggestion .compare-table .container-table .item:last-child .icon {
  border-bottom: none;
}
.compare-page .suggestion .compare-table .container-table .item:hover {
  background-color: #079ba5;
}
.compare-page .suggestion .compare-table .container-table .item:hover .info {
  color: #FFFFFF;
}
.compare-page .suggestion .compare-table .container-table .item:hover .icon h6 {
  color: #FFFFFF;
}
.compare-page .suggestion .compare-table .container-table .item .info {
  font-size: 1.25rem;
  font-weight: bold;
  border: solid #eee;
  border-width: 0 0 0.25rem 0;
  padding-inline-end: 1.75rem;
  padding-inline-start: 1rem;
  color: rgba(70, 70, 70, 0.5843137255);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  transition: all 0.5s;
}
.compare-page .suggestion .compare-table .container-table .item .info.info-right {
  padding-inline-end: 0;
  padding-inline-start: 1.75rem;
  padding-inline-end: 1rem;
  border-width: 0 0.25rem 0.25rem 0;
}
@media (width < 768px) {
  .compare-page .suggestion .compare-table .container-table .item .info {
    font-size: 1.1rem;
    padding-inline-end: 1.5rem;
  }
  .compare-page .suggestion .compare-table .container-table .item .info.info-right {
    padding-inline-start: 1.5rem;
  }
}
@media (width < 578px) {
  .compare-page .suggestion .compare-table .container-table .item .info {
    font-size: 1rem;
    padding-inline-end: 1.25rem;
  }
  .compare-page .suggestion .compare-table .container-table .item .info.info-right {
    padding-inline-start: 1.25rem;
  }
}
@media (width < 500px) {
  .compare-page .suggestion .compare-table .container-table .item .info {
    font-size: 0.85rem;
    padding-inline: auto;
  }
  .compare-page .suggestion .compare-table .container-table .item .info.info-right {
    padding-inline: auto;
  }
}
.compare-page .suggestion .compare-table .container-table .item .info .color {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-inline-end: 0.75rem;
}
@media (width < 768px) {
  .compare-page .suggestion .compare-table .container-table .item .info .color {
    width: 40px;
    height: 40px;
    margin-inline-end: 0.5rem;
  }
}
@media (width < 578px) {
  .compare-page .suggestion .compare-table .container-table .item .info .color {
    width: 30px;
    height: 30px;
    margin-inline-end: 0.25rem;
  }
}
.compare-page .suggestion .compare-table .container-table .item .icon {
  border: solid #eee;
  border-width: 0 0.25rem 0.25rem 0.25rem;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.compare-page .suggestion .compare-table .container-table .item .icon img {
  width: 60px;
  height: 40px;
  margin-bottom: 0.5rem;
}
.compare-page .suggestion .compare-table .container-table .item .icon h6 {
  font-weight: 900;
  margin-bottom: 0;
  color: #079ba5;
  transition: all 0.5s;
}
@media (width < 578px) {
  .compare-page .suggestion .compare-table .container-table .item .icon {
    padding: 1.25rem 0;
  }
  .compare-page .suggestion .compare-table .container-table .item .icon img {
    width: 50px;
  }
  .compare-page .suggestion .compare-table .container-table .item .icon h6 {
    font-size: 0.9rem;
  }
}
@media (width < 500px) {
  .compare-page .suggestion .compare-table .container-table .item .icon {
    padding: 1rem 0;
  }
  .compare-page .suggestion .compare-table .container-table .item .icon img {
    width: 40px;
  }
  .compare-page .suggestion .compare-table .container-table .item .icon h6 {
    font-size: 0.75rem;
  }
}

.blogs {
  width: 90%;
  margin: auto;
  padding-block: 10rem 4rem;
  line-height: 1.5;
}
@media (width < 992px) {
  .blogs {
    padding-top: 9rem;
  }
}
@media (width < 768px) {
  .blogs {
    padding-top: 8rem;
  }
}
.blogs .suggestion {
  margin-top: 4rem;
}
.blogs .suggestion:first-child {
  margin-top: 0;
}
.blogs .suggestion h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem;
  margin-bottom: 3rem;
  background-color: #eee;
  color: #155a9c;
}
@media (width < 500px) {
  .blogs .suggestion h4 {
    font-size: 1rem;
  }
}
.blogs .suggestion .card {
  border-radius: 0.5rem;
  border: 0;
  transition: all 0.5s;
}
.blogs .suggestion .card img {
  width: 100%;
  height: 250px !important;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: all 1s;
}
.blogs .suggestion .card .details span {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-block: 0.75rem;
  margin-inline: 0.5rem;
  color: #0dd278;
  transition: all 0.5s;
}
@media (width < 500px) {
  .blogs .suggestion .card .details span {
    font-size: 0.75rem;
  }
}
.blogs .suggestion .card .details h5 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-block: 0.75rem;
  margin-inline: 0.5rem;
  color: #000000;
  transition: all 0.5s;
}
@media (width < 500px) {
  .blogs .suggestion .card .details h5 {
    font-size: 1.1rem;
  }
}
.blogs .suggestion .card .details h6 {
  margin-bottom: 1.5rem;
  margin-inline: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: #079ba5;
  transition: all 0.5s;
}
@media (width < 500px) {
  .blogs .suggestion .card .details h6 {
    font-size: 0.9rem;
  }
}
.blogs .suggestion .card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.blogs .suggestion .card:hover .details span {
  color: #079ba5;
}
.blogs .suggestion .card:hover .details h5 {
  color: #0dd278;
}
.blogs .suggestion .card:hover .details h6 {
  color: #000000;
}
.blogs .suggestion .link-all a, .blogs .suggestion .link-all button {
  display: block;
  text-align: center;
  width: 280px;
  margin: 3rem auto 0;
  padding-block: 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #079ba5;
  color: #FFFFFF;
  transition: all 0.5s;
}
.blogs .suggestion .link-all a:hover, .blogs .suggestion .link-all button:hover {
  border: 1px solid #079ba5;
  background-color: #FFFFFF;
  color: #079ba5;
}

.categories-company {
  width: 80%;
  position: fixed;
  z-index: 9;
  top: 6.25rem;
  right: 10%;
  line-height: 1.5;
  display: flex;
  background-color: #079ba5;
  color: #FFFFFF;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
@media (width < 992px) {
  .categories-company {
    top: 5.65rem;
  }
}
@media (width < 768px) {
  .categories-company {
    display: none;
  }
}
.categories-company .item {
  text-align: center;
  padding-block: 0.75rem;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.5s;
}
.categories-company .item:hover, .categories-company .item.active {
  background-color: #0dd278;
}
@media (width < 768px) {
  .categories-company .item {
    font-size: 14px;
  }
}

.companies-devices {
  width: 95%;
  margin: auto;
  line-height: 1.5;
  position: relative;
  display: flex;
  padding-block: 13rem 4rem;
}
@media (width < 992px) {
  .companies-devices {
    padding-top: 14rem;
  }
}
@media (width < 768px) {
  .companies-devices {
    padding-top: 8rem;
    width: 90%;
  }
}
.companies-devices .container-filters {
  max-width: 300px;
  min-width: 300px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  padding: 0;
  position: relative;
  transition: all 0.5s;
  top: 0;
  right: 0px;
  min-height: 100vh;
  background-color: #FFFFFF;
  z-index: 8;
  /* Tooltip text */
}
.companies-devices .container-filters.open {
  right: 0;
}
@media (width < 850px) {
  .companies-devices .container-filters {
    right: 0;
  }
  .companies-devices .container-filters.open {
    right: -320px;
  }
}
@media (width < 768px) {
  .companies-devices .container-filters.open {
    right: -340px;
  }
}
@media (width < 700px) {
  .companies-devices .container-filters.open {
    right: -337px;
  }
}
@media (width < 650px) {
  .companies-devices .container-filters.open {
    right: -335px;
  }
}
@media (width < 600px) {
  .companies-devices .container-filters.open {
    right: -330px;
  }
}
@media (width < 500px) {
  .companies-devices .container-filters {
    max-width: 280px;
    min-width: 280px;
  }
  .companies-devices .container-filters.open {
    right: -305px;
  }
}
@media (width < 400px) {
  .companies-devices .container-filters {
    max-width: 260px;
    min-width: 260px;
  }
  .companies-devices .container-filters.open {
    right: -280px;
  }
}
.companies-devices .container-filters .accordion .accordion-item {
  background-color: #FFFFFF;
  color: #0dd278;
  border: none;
  margin-bottom: 0.25rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}
.companies-devices .container-filters .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-header .accordion-button {
  color: #FFFFFF;
  background-color: #079ba5;
  font-weight: 700;
  padding: 0.75rem;
  transition: all 0.5s;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-header .accordion-button::after {
  width: 15px;
  height: 15px;
  margin-inline: auto 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
  background-size: 15px;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #0dd278;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form {
  color: #079ba5;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form input {
  font-size: 14px;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form input::-moz-placeholder {
  color: #079ba5;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form input::placeholder {
  color: #079ba5;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form select {
  color: #079ba5;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form select option {
  margin-bottom: 0.5rem;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form .form-select {
  background-position: left 0.75rem center !important;
  padding-inline-start: 1.5rem !important;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form .item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 15px;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form .item:last-child {
  margin-bottom: 0;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form .item label {
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form .item label .company-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form .item label .company-logo img {
  width: 100%;
  max-height: 30px;
}
.companies-devices .container-filters .accordion .accordion-item .accordion-body form .item input {
  cursor: pointer;
}
.companies-devices .container-filters .tooltiptext {
  position: relative;
  display: inline-block;
}
.companies-devices .container-filters .drawer-icon .tooltiptext {
  opacity: 0;
  background-color: #0dd278;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  top: -75%;
  z-index: 1;
  transition: all 0.25s;
}
@media (width < 500px) {
  .companies-devices .container-filters .drawer-icon .tooltiptext {
    font-size: 0.75rem;
    top: -70%;
  }
}
@media (width < 360px) {
  .companies-devices .container-filters .drawer-icon .tooltiptext {
    font-size: 0.55rem;
    top: -60%;
  }
}
.companies-devices .container-filters .drawer-icon:hover .tooltiptext {
  opacity: 1;
}
.companies-devices .container-filters .drawer-icon {
  display: none;
  position: absolute;
  top: 0;
  left: -40px;
  background-color: #155a9c;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.55rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 8;
}
.companies-devices .container-filters .drawer-icon svg {
  margin-inline-start: 0.5rem;
  width: 1.25rem;
}
@media (width < 850px) {
  .companies-devices .container-filters .drawer-icon {
    display: block;
  }
}
.companies-devices .devices-list {
  position: absolute;
  right: 350px;
  width: calc(100% - 350px);
  padding-bottom: 3rem;
  transition: all 0.5s;
}
@media (width < 850px) {
  .companies-devices .devices-list {
    right: 30px;
    width: calc(100% - 30px);
  }
}
.companies-devices .devices-list .suggestion h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem;
  margin-bottom: 2.5rem;
  background-color: #eee;
  color: #155a9c;
}
@media (width < 500px) {
  .companies-devices .devices-list .suggestion h4 {
    font-size: 1rem;
  }
}
.companies-devices .devices-list .suggestion .owl-carousel .card {
  height: 120px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
@media (width < 992px) {
  .companies-devices .devices-list .suggestion .owl-carousel .card {
    height: 100px;
  }
}
@media (width < 500px) {
  .companies-devices .devices-list .suggestion .owl-carousel .card {
    max-width: 200px;
    margin: auto;
  }
}
.companies-devices .devices-list .suggestion .owl-carousel .card img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  transition: all 1s;
}
.companies-devices .devices-list .suggestion .owl-carousel .card .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  text-align: center;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5843137255);
  color: #FFFFFF;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: all 0.5s;
}
@media (width < 992px) {
  .companies-devices .devices-list .suggestion .owl-carousel .card .title {
    height: 35px;
  }
}
@media (width < 500px) {
  .companies-devices .devices-list .suggestion .owl-carousel .card .title {
    height: 30px;
  }
}
.companies-devices .devices-list .suggestion .owl-carousel .card .title h6 {
  margin-bottom: 0;
  font-weight: 600;
}
@media (width < 768px) {
  .companies-devices .devices-list .suggestion .owl-carousel .card .title h6 {
    font-size: 15px;
  }
}
@media (width < 500px) {
  .companies-devices .devices-list .suggestion .owl-carousel .card .title h6 {
    font-size: 14px;
  }
}
.companies-devices .devices-list .suggestion .owl-carousel .card:hover img {
  transform: scale(1.2);
}
.companies-devices .devices-list .suggestion .owl-carousel .card:hover .title {
  color: #079ba5;
}
.companies-devices .devices-list .suggestion .owl-carousel .owl-dots {
  margin-top: 1.5rem !important;
}
.companies-devices .devices-list .container-devices .card {
  height: 250px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
@media (width < 500px) {
  .companies-devices .devices-list .container-devices .card {
    max-width: 200px;
    margin: auto;
  }
}
.companies-devices .devices-list .container-devices .card img {
  width: 75%;
  margin-inline: auto;
  transform: scale(0.9);
  height: 100%;
  border-radius: 0.5rem;
  transition: all 1s;
}
.companies-devices .devices-list .container-devices .card .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  text-align: center;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5843137255);
  color: #FFFFFF;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  transition: all 0.5s;
}
.companies-devices .devices-list .container-devices .card .title h6 {
  margin-bottom: 0;
  font-weight: 600;
}
@media (width < 768px) {
  .companies-devices .devices-list .container-devices .card .title h6 {
    font-size: 15px;
  }
}
@media (width < 500px) {
  .companies-devices .devices-list .container-devices .card .title h6 {
    font-size: 14px;
  }
}
.companies-devices .devices-list .container-devices .card:hover img {
  transform: scale(1);
}
.companies-devices .devices-list .container-devices .card:hover .title {
  color: #079ba5;
}
.companies-devices .devices-list .container-devices .link-all a, .companies-devices .devices-list .container-devices .link-all button {
  display: block;
  text-align: center;
  width: 200px;
  margin: 1rem auto 0;
  padding-block: 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  background-color: #079ba5;
  color: #FFFFFF;
  transition: all 0.5s;
}
.companies-devices .devices-list .container-devices .link-all a:hover, .companies-devices .devices-list .container-devices .link-all button:hover {
  border: 1px solid #079ba5;
  background-color: #FFFFFF;
  color: #079ba5;
}

.footer {
  background-color: #155a9c;
  padding: 4rem 0 2rem;
}
.footer .container-footer {
  width: 90%;
  margin: auto;
}
.footer .container-footer .cont-logo img {
  width: 150px;
  height: 150px;
  display: block;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
@media (width < 500px) {
  .footer .container-footer .cont-logo img {
    width: 120px;
    height: 120px;
  }
}
.footer .container-footer .cont-logo p {
  margin-bottom: 0;
  color: #FFFFFF;
  opacity: 0.5;
  font-size: 15px;
  line-height: 1.5;
}
.footer .container-footer .navigate h5 {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1rem;
}
@media (width < 992px) {
  .footer .container-footer .navigate h5 {
    margin-bottom: 1rem;
  }
}
.footer .container-footer .navigate .list-navigation li {
  margin-bottom: 1rem;
}
.footer .container-footer .navigate .list-navigation li:last-child {
  margin-bottom: 0;
}
.footer .container-footer .navigate .list-navigation li a {
  color: #FFFFFF;
  opacity: 0.5;
  transition: all 0.5s;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.footer .container-footer .navigate .list-navigation li a.active {
  opacity: 1;
  font-weight: bold;
  color: #FFFFFF;
}
.footer .container-footer .navigate .list-navigation li a:hover {
  opacity: 0.99;
  color: #0dd278;
}
.footer .container-footer .navigate .list-navigation li a:hover.active {
  color: #FFFFFF;
}
.footer .container-footer .horizontal {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.6;
  margin-block: 1.5rem;
}
.footer .container-footer h6 {
  line-height: 1.5;
  color: #FFFFFF;
  opacity: 0.5;
}
@media (width < 768px) {
  .footer .container-footer h6 {
    text-align: center;
  }
}
.footer .container-footer h6 span {
  color: #0dd278;
  opacity: 1;
  font-weight: 800;
}
.footer .container-footer .social-media {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer .container-footer .social-media a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  color: #079ba5;
  background-color: #FFFFFF;
  opacity: 0.5;
  transition: all 0.5s;
}
.footer .container-footer .social-media a svg {
  width: 20px;
}
.footer .container-footer .social-media a:hover {
  color: #FFFFFF;
  opacity: 1;
  margin-top: -1rem;
}
.footer .container-footer .social-media a:hover:nth-child(1) {
  background-color: #0d6efd;
}
.footer .container-footer .social-media a:hover:nth-child(2) {
  background-color: #e1306c;
}
.footer .container-footer .social-media a:hover:nth-child(3) {
  background-color: #0a66c2;
}
.footer .container-footer .social-media a:hover:nth-child(4) {
  background-color: #282828;
}
.footer .container-footer .social-media a:hover:nth-child(5) {
  background-color: #1da1f2;
}/*# sourceMappingURL=index.css.map */