/* ======= CSS RESET ======== */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: 'Open Sans', sans-serif !important; */
  font-family: "Roboto", sans-serif !important;
}

::selection {
  background-color: #cc1616;
  color: white;
}

.bg-white {
  background-color: white !important;
}

a {
  color: #fff !important;
  text-decoration: none !important;
}

select:focus,
input:focus,
textarea:focus {
  border-color: #cc1616 !important;
  box-shadow: 0 0 0 0.1rem rgb(181 12 12 / 38%) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: 'Oswald', sans-serif !important; */
  font-family: "Rajdhani", sans-serif !important;
}

/* ======= NAVIGATION BAR ======== */

nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.75rem 0rem;
  justify-content: space-between;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  transition: top 0.4s;
  z-index: 999;
  background-color: white;
}

nav .links a {
  position: relative;
  color: #000 !important;
  font-weight: bold;
}
.dropdown-item:focus, .dropdown-item:hover::before{
  display: none;
}
nav .links a::before {
  content: "";
  position: absolute;
  background-color: #cc1616;
  display: flex;
  justify-self: center;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  bottom: -7px;
  transition: all 0.5s ease-in-out;
}
nav .links a:hover::before {
  transform: scaleX(1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-toggle::after {
  display: none !important;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
}
.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: fixed;
  top: 0;
  left: 200%;
  z-index: 25;
}
.links.show {
  left: 0;
  padding: 6rem 1rem 1rem;
  background-color: #191a19f2;
  height: 100vh;
  width: 100%;
}
.links.show a {
  color: white !important;
  padding: 1rem 0;
  text-align: center;
}

.header__icons i {
  font-size: 1.5rem;
  vertical-align: middle;
  color: #000;
}
.header__icons i:hover {
  color: #cc1616;
}
.menu {
  --height: 4px;
  --width: 16px;
  --bg: #191a19;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  cursor: pointer;
  right: 1.35rem;
  z-index: 50;
}
.menu.opened {
  --bg: white;
}
.menu .middle {
  height: var(--height);
  width: var(--width);
  background-color: var(--bg);
}
.menu::before,
.menu::after {
  content: "";
  background-color: var(--bg);
  height: var(--height);
  transition: 0.2s ease-in-out;
}
.menu::before {
  width: calc(var(--width) / 2);
}
.menu::after {
  width: calc(var(--width) * 1.5);
}
.menu.opened::before {
  width: calc(var(--width) * 1.5);
}
.menu.opened::after {
  width: calc(var(--width) / 2);
}
@media screen and (min-width: 1025px) {
  nav {
    justify-content: space-between;
  }
  .menu {
    display: none;
  }
  .links {
    position: static;
    flex-direction: row;
    gap: 2rem;
  }
}

.search__wrapper {
  background-color: #cc1616;
  padding: 18px;
  width: 82.8%;
  position: absolute;
  display: none;
}
.search__form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search__wrapper .field, 
.search__wrapper .field:focus {
  background: none;
  border: none;
  outline: none;
  color: white;
  width: 100%;
  box-shadow: none !important;
}

.search__form i {
  font-size: 24px;
  color: white;
  cursor: pointer;
  vertical-align: middle;
}
.field::placeholder {
  color: white;
}

/* ======= NAVIGATION BAR END ======== */

/* ======= HERO ======== */
#hero {
  width: 100%;
  display: flex;
  height: 300px;
  justify-content: center;
  align-items: center;
}

.search-bar {
  justify-content: center;
  display: flex;
  height: 70px;
  width: 100%;
  max-width: 700px;
  align-items: center;
  border-radius: 0.25rem;
  padding: 10px 20px;
  background-color: #0000000a;
  backdrop-filter: blur(4px) saturate(100%);
  border: 1px solid #0000001c;
}

.search-bar input {
  width: 100%;
  height: 70px;
  border: none;
  outline: none;
  background-color: transparent;
}

.search-bar button {
  width: 50px;
  border-radius: 0.25rem;
  height: 45px;
  background-color: #cc1616;
  border: none;
  outline: none;
  transition: all 0.5s;
}

.search-bar button i {
  font-size: 25px;
  color: #fff;
  vertical-align: middle;
}

#hero input:focus {
  box-shadow: none !important;
}

/* ======= HERO END ======== */

/* ======= LATEST-PHONES ======== */
#phones {
  width: 100%;
  height: auto;
  background-color: #0000000a;
  padding: 100px 0px 30px 0px;
}

.content-section {
  background-color: #fff;
  height: auto;
  border-radius: 0.25rem;
  border: 1px solid #0000001c !important;
}
.content-box-h-primary {
  display: flex;
  justify-content: center;
  padding: 15px 0px;
  border-bottom: 1px solid #0000001c;
  text-transform: uppercase;
  font-weight: bold;
  color: black;
  font-size: 42px;
}

.makers {
  position: relative;
  padding-top: 10px;
  left: 0;
  width: 100%;
}

.makers ul {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  list-style: none !important;
}

.makers li {
  float: left;
  height: 215px;
  position: relative;
  text-align: center;
  width: 138px;
  margin: 0px 0px 10px;
  padding-top: 0;
}

.makers a {
  display: block;
  text-align: center;
  width: 100%;
}

.makers img {
  background: #fff;
  clear: both;
  margin: 0 auto 0px;
  padding-top: 7px;
  padding-bottom: 7px;
  width: 100px;
}

.makers a strong {
  display: block;
  font-family: "Open Sans", sans-serif;
  margin: 0px auto 0;
  padding: 20px 5px;
  text-decoration: none;
  color: #777;
  position: absolute;
  bottom: 12px;
  font-size: 14px;
  width: 100%;
}

.makers a:hover strong {
  background-color: #cc1616;
  color: white;
}

/* ======= LATEST-PHONES END ======== */

/* PHONE SPECIFICATION */

.phone-img img {
  width: 270px;
  display: block;
  margin: auto;
}

.accent {
  font-size: 24px;
}

.specification-spotlight-features {
  display: flex;
  list-style: none;
  height: 255px;
  align-items: end;
}

.specification-spotlight-features li {
  height: 100px;
  width: 135px;
  color: #000;
  border-left: 1px solid #80808087;
  padding: 0px 10px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  cursor: help;
  font-weight: 300;
}

.specification-spotlight-features li i {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}

.phone-overview a {
  padding: 15px 40px 15px 40px;
  background-color: #cc1616;
  display: flex;
  transition: 500ms;
  text-transform: uppercase;
  font-weight: bold;
}

.phone-overview a:hover {
  background-color: #000;
  transition: 500ms;
  padding: 15px 45px;
}

#phone-specification {
  width: 100%;
  height: 1000px;
  background-color: #cc16160f;
}

.phone-h-primary {
  font-size: 16px;
  text-transform: capitalize;
}

.spec-heading-h-primary {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 0px;
}

.table-heading {
  color: #cc1616;
  padding: 10px 0px;
  text-transform: uppercase;
}

.table-detailed .ttl {
  color: #616161;
  font-weight: 600 !important;
  width: 16%;
  padding: 8px;
  padding-left: 0;
  font-size: 14px;
}

.table-detailed td.nfo {
  width: 50%;
  border-left: 1px solid #edf0f2;
  padding: 8px;
  font-size: 14px;
  color: #616161;
}

.table-detailed tr {
  border-bottom: 1px solid #edf0f2;
}

.note {
  font-size: 13px;
  line-height: 1.3;
  padding: 20px 30px;
  text-align: center;
  color: #616161;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cpy__name{
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(240, 238, 238);

}
.cpy__name img{
width: 140px;
filter: brightness(0);
transition: all .4s;

}
.cpy__name img:hover{

filter: brightness(1);
}
.cpy__name a{
padding: 0px 10px;
}

/* PHONE SPECIFICATION END */

/* ======= PHONES COMPARE ======== */

td > img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

#phones-compare h1 {
  font-weight: 500;
}

.compare__input{
  width: 100%;
  height: 38px;
  padding: 0px 10px;
  outline: none;
  border: 1px solid lightgray;
  border-radius: 0.25rem;
}
/* ======= PHONES COMPARE END ======== */


/* ======= CONTACT-US ======= */

#contact-us {
  background-color: #0000000a;
  padding: 30px 0px 30px 0px;
}

.contact-form {
  width: 360px;
  padding: 30px 35px;
  background: white;
  border-radius: 0.25rem;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.2);
}

.contact-form .contact-h-primary {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
  text-transform: capitalize;
}

.contact-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
}

.form-group {
  margin-bottom: 1rem;
}

.contact-form .form-control {
  height: 40px;
  font-size: 14px;
  border-radius: 2px;
}

.form-btn {
  width: 100%;
  padding: 6px;
  outline: none;
  border: none;
  background: #cc1616;
  border-radius: 2px;
  transition: 500ms;
}

.form-btn:hover {
  background-color: black;
}

/* ======= CONTACT-US END ======= */

/* ======= PRIVACY POLICY ======= */

#table-content-section {
  background: #0000000a;
  width: 100%;
  height: auto;
  padding: 35px 0px 35px 0px;
  box-shadow: 0px 0px 5px lightgray;
}

.main-content {
  width: 100%;
  height: auto;
  background: white;
  padding: 20px 0px;
}

.main-content h1 {
  font-size: 24px;
  border-bottom: 1px solid #edf0f2;
  font-weight: 700;
  padding: 0px 20px 20px 20px;
  text-transform: capitalize;
  color: #000;
}

.table-wrapper .tch {
  padding: 10px 20px;
  text-transform: capitalize;
  font-size: 18px;
  color: #cc1616;
}

.table-wrapper .tcd {
  padding: 10px 20px;
  font-size: 14px;
  color: #000000ad;
}

/* ======= PRIVACY POLICY END ======= */

/* ======= COMPANY SECTION ======= */

#company-section {
  background: lightgray;
  width: 100%;
  height: auto;
  padding: 35px 0px;
}

.company-wrapper {
  background-color: #fff;
}
/* ======= COMPANY SECTION END ======= */

/* ======= FOOTER ======== */
footer {
  width: 100%;
  height: auto;
  background-color: #fff;
}

.footer-h-primary {
  text-transform: uppercase;
  font-size: 20px;
  display: inline-block;
  position: relative;
  padding-bottom: 30px;
  color: #000;
}

.footer-h-primary::before {
  content: "";
  position: absolute;
  width: 40px;
  background-color: #cc1616;
  top: 40px;
  right: 0px;
  height: 1px;
  bottom: 0px;
  left: 0px;
}

.footer-wrapper {
  padding: 60px 0px 0px 0px;
}

.footer-wrapper p {
  font-size: 14px;
  color: #000000ad !important;
}

.footer-wrapper ul {
  padding: 0;
  list-style: none;
}

.footer-wrapper ul li a {
  color: #000000ad !important;
  line-height: 2;
  font-size: 14px;
  transition: 500ms;
  text-transform: capitalize;
}

.footer-wrapper ul li a:hover {
  padding-left: 6px;
  color: #000 !important;
}

.footer-wrapper ul li a i {
  vertical-align: middle;
}

.footer-wrapper ul li i {
  vertical-align: middle;
}

.follow-icon a {
  background: #cc1616;
  width: 35px;
  height: 35px;
  display: inline-block;

  transition: 500ms;
}

.follow-icon a:hover {
  background-color: #000;
}

.follow-icon a i {
  vertical-align: middle;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  border-top: 1px solid #0000001a;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-wrapper span {
  font-size: 14px;
  color: #000000ad;
}

.payment-icon img {
  width: 50px;
}

.scroll-to-top {
  width: 40px;
  display: block;
  position: fixed;
  bottom: 10px;
  right: 30px;
  height: 40px;
  line-height: 40px;
  background-color: #191919;
  transition: all 250ms;
}

.scroll-to-top:hover {
  background-color: #000;
}

.scroll-to-top i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-size: 28px;
}

/* ======= FOOTER END ======== */
