@import url("https://fonts.googleapis.com/css2?family=Exo:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Exo", sans-serif;
}
:root {
  --main-color: #d03b29;
  --text-color: #4b4453;
  --gradiant: linear-gradient(
    236deg,
    rgba(255, 128, 102, 1) 0%,
    rgba(208, 59, 41, 1) 100%
  );
}
a {
  text-decoration: none;
  color: rgb(137, 45, 45);
}
a:visited {
  color: var(--main-color);
}
li {
  list-style: none;
}
::selection {
  background: rgb(224, 131, 9);
  text-shadow: none;
  color: white;
}
html {
  position: relative;
  min-height: 100vh;
}
body {
  font-family: "Exo", sans-serif;
  color: rgb(101, 101, 101);
  padding-bottom: 100px;
}
body::-webkit-scrollbar {
  width: 0.4em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(250, 187, 13, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(251, 176, 59);
  outline: 1px solid rgb(251, 176, 50);
}
html {
  background-color: rgb(24, 25, 26);
}

/* navigation */
header > nav {
  background-color: rgb(0, 0, 0);
  color: rgb(251, 176, 59);
  padding: 11px 100px;
  display: flex;
  margin-bottom: 57px;
  justify-content: space-between;
  border-bottom: 2px solid;
}
header > nav .logo {
  font-family: "Playfair Display", serif;
  font-size: 32px;
}
header > nav .menu ul {
  display: flex;
}
header > nav .menu ul li {
  position: relative;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-left: 0;
  list-style: none;
}
header > nav .menu {
  display: flex;
  align-items: center;
}
header > nav .menu ul a {
  color: rgb(255, 255, 255);
  text-transform: capitalize;
  font-weight: 700;
  text-decoration: none;
  padding: 0px 8px;
}
header > nav .menu ul li::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  background-color: #ffffff;
  left: 50%;
  bottom: -4px;
  transition: all 0.5s ease 0s;
  transform: translate(-50%, 0);
}
header > nav .menu ul li:hover::after {
  width: 100%;
}
header > nav .menu .collapse {
  display: none;
}
/* search input */
.inputSearch {
  display: flex;
  justify-content: center;
  margin-bottom: 33px;
  margin-top: 140px;
}
.searchBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
form#search {
  display: grid;
  width: 770px;
  position: relative;
}
.logo img {
  width: 127px;
  margin: auto;
  display: flex;
  height: 33px;
  margin-left: 7px;
  object-fit: contain;
}
form#search input {
  line-height: 38px;
  background-color: rgb(46, 44, 44);
  margin: 0px;
  padding: 0px 17px;
  color: gray;
  border-radius: 103px;
  position: relative;
  transition: none 0s ease 0s;
  width: 100%;
  font-size: 18px;
  height: 41px;
  border: none;
}
form#search input:focus {
  outline: 0px;
}
form#search input::-webkit-search-cancel-button {
  appearance: none;
}
button#submit {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  right: 0px;
  background: rgba(208, 59, 41, 0);
  padding: 13px;
  border-radius: 0px 32px 29px 0px;
  cursor: pointer;
}
button#submit svg {
  width: 25px;
  height: 25px;
  fill: rgb(251 176 59);
  margin-right: 8px;
}
ul.sugest {
  display: none;
}
ul.sugest.active {
    padding-bottom: 0;
    transition: all .3s ease 0s;
    background: #fff;
    display: block;
    overflow: hidden!important;
    position: absolute;
    width: 100%;
    top: 85px;
    z-index: 1;
}
ul.sugest li {
  padding: 10px 15px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: gray;
  background: #2e2c2c;
}
ul.sugest li:hover {
  background: #383636;
}
ul.sugest li svg {
  width: 16px;
  height: 16px;
  fill: gray;
  margin-right: 7px;
}
input#searchInput.active {
  border-radius: 26px 26px 0px 0px;
}

/* bottom category */
.bottom-category {
  padding: 0 100px;
  display: flex;
  margin-top: 70px;
  justify-content: center;
}
.item a {
  text-decoration: none;
}
.bottom-category .item .icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgb(255 0 0) 0%, rgb(235 208 19) 100%);
  border-radius: 100%;
  margin: auto;
  border: 2px solid #930f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 33px;
  color: white;
}
.bottom-category .item:nth-child(2) .icon i {
  font-size: 25px;
}
.bottom-category .item {
  padding: 10px 19px;
}
.bottom-category > .item .text h3 {
  color: #f2830c;
  margin-top: 6px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
}
.bottom-category .item .icon h1 {
  font-size: 18px;
  border: 1px solid;
  border-radius: 100px;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* search suggetion */
.mobileTitle {
  display: none;
}
.suggetionIcon {
  display: none;
  margin-bottom: -8px;
}
.suggetionIcon svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: white;
}
.search-suggetion {
  text-align: center;
  width: 57%;
  margin: auto;
}
.text-con {
  width: 55%;
  text-align: center;
  margin: auto;
  margin-top: 60px;
}
mark {
  background: transparent;
  color: lightgray;
}

.result .item.main {
  display: none;
}
.search-suggetion ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.search-suggetion ul li {
  background: #2e2c2c;
  padding: 6px 13px;
  margin: 6px;
  border-radius: 4px;
}

.search-suggetion ul li a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  text-transform: capitalize;
}
.text-con p::after {
  content: "”";
  font-size: 71px;
  position: absolute;
  bottom: -64px;
  margin-left: 2px;
}

.text-con p::before {
  content: "“";
  font-size: 62px;
  position: absolute;
  top: -17px;
  margin-left: -22px;
}

.text-con p {
  position: relative;
  text-align: justify;
}
/* footer */
footer {
  text-align: center;
  background-color: rgb(0, 0, 0);
  padding: 11px 100px;
  border-top: 2px solid rgb(251, 176, 59);
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
}
footer p {
  text-transform: uppercase;
  font-weight: 200;
  font-size: 13px;
  color: rgb(228, 227, 227);
}
.copyright p span a {
  color: rgb(251, 176, 59);
  text-decoration: none;
}
footer > .top ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer > .top ul a {
  text-decoration: none;
  color: white;
}
footer > .top ul li {
  padding: 4px 10px;
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 200;
  margin-bottom: 9px;
  list-style: none;
  margin-left: 0;
}
.toptitle {
    text-align: center;
    font-size: 28px;
    margin-bottom: 16px;
    margin-top: -10px;
    color: white;
}

/* Responsive */
@media (max-width: 1150px) {
  form#search {
    width: 600px;
  }
  header > nav {
    padding: 11px 40px;
  }
  .text-con {
    width: 60%;
  }
}
@media (max-width: 850px) {
  form#search {
    width: 520px;
  }
  .text-con {
    width: 65%;
  }
}
@media (max-width: 750px) {
  .logo img {
    margin-left: 0px;
  }
  header > nav .menu ul a {
    overflow: hidden;
  }
  header > nav .menu .collapse {
    display: block;
    cursor: pointer;
  }
  header > nav .menu .collapse i {
    font-size: 20px;
  }
  header > nav .menu ul {
    display: grid;
    grid-gap: 10px;
    position: absolute;
    top: 57px;
    left: 0;
    background: black;
    width: 100%;
    z-index: 1;
    height: 0;
    height: 0px;
    visibility: hidden;
    transition: 0.5s;
  }
  header > nav .menu ul.active {
    visibility: visible;
    height: 186px;
    padding: 16px 16px;
  }
  header > nav .menu ul li {
    font-size: 22px;
    font-weight: 400;
  }
  header > nav .menu ul li:hover::after {
    width: 20%;
  }
  .bottom-category {
    padding: 0 40px;
    flex-wrap: wrap;
  }

  body {
    padding-bottom: 134px;
    height: 100vh;
  }
  .bottom-category {
    margin-top: 0px;
  }
  .inputSearch {
    margin-top: 67px;
  }
  footer {
    padding: 11px 40px;
  }
  footer > .top ul li {
    font-size: 15px;
  }
  .bottom-category .item {
    padding: 10px 9px;
  }
  footer > .top ul li {
    padding: 4px 7px;
  }
  header > nav .menu ul a {
    padding: 0px 23px;
  }
  header > nav .menu ul li {
    font-size: 19px;
    font-weight: 400;
  }
  .search-suggetion {
    width: 83%;
  }
  footer > .top ul li {
    margin-bottom: -3px;
  }
  footer > .top ul {
    margin-bottom: 13px;
  }
}
@media (max-width: 650px) {
  form#search {
    width: 420px;
  }
  .toptitle {
    font-size: 16px;
  }
  .text-con {
    width: 78%;
  }
  ul.sugest.active {
    top: 69px;
}
}
@media (max-width: 480px) {
  .suggetionIcon {
    display: block;
  }
  form#search {
    width: 360px;
  }
  footer {
    position: initial;
    margin-top: 40px;
  }
  .search-suggetion ul {
    display: grid;
    grid-template-columns: 1fr;
  }
  .mobileTitle {
    text-align: initial;
    color: white;
    display: block;
  }
  .search-suggetion ul li {
    border-radius: 0;
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid;
    font-size: 15px;
    text-align: initial;
    background-color: transparent;
    display: flex;
    padding-left: 0;
  }
  .logo img {
    width: 152px;
    margin: auto;
    display: flex;
    height: 33px;
    object-fit: contain;
  }
}
@media (max-width: 420px) {
  form#search {
    width: 310px;
  }
  form#search input {
    height: 41px;
    font-size: 16px;
  }
  .bottom-category {
    padding: 0 23px;
    margin-top: -14px;
  }
  button#submit svg {
    margin-right: 1px;
  }
}
@media (max-width: 340px) {
  form#search {
    width: 266px;
  }
  button#submit svg {
    width: 20px;
    height: 20px;
    margin-right: 2px;
  }
  header > nav {
    padding: 11px 20px;
  }
}
@media (max-width: 300px) {
  form#search {
    width: 228px;
  }
  form#search input {
    padding: 0px 11px;
  }
}
@media (max-width: 250px) {
  form#search {
    width: 190px;
  }
  form#search input {
    height: 30px;
  }
}
