@font-face {
  font-family: kinkolf;
  src: url("FontsFree-Net-Kinfolk_Reg.7c16ef0a.ttf");
  font-display: swap;
}

@font-face {
  font-family: montserrat-light;
  src: url("Montserrat-Light.004b488d.otf");
  font-display: swap;
}

@font-face {
  font-family: montserrat-bold;
  src: url("Montserrat-Bold.f51512d0.otf");
  font-display: swap;
}

@font-face {
  font-family: montserrat-regular;
  src: url("MontserratAlternates-Regular.a4d6482e.otf");
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  overflow-x: hidden;
}

:root {
  --primary-color: #804e33;
  --secondary-color: #f0e1d9;
  --tertiary-color: black;
  --paragraph-text-family: "montserrat-light", serif;
  --list-text-family: "montserrat-bold", serif;
  --heading-text-family: "kinkolf", serif;
}

::selection {
  background-color: var(--primary-color);
  color: pink;
}

html {
  background-color: var(--secondary-color);
  overflow-x: hidden;
}

.header {
  border-bottom: 2px solid var(--primary-color);
  background-color: var(--secondary-color);
  z-index: 200;
  width: 100%;
  height: 145px;
  transition: background-color .2s linear;
  position: fixed;
  top: 0;
  left: 0;
}

.navigation-bar {
  z-index: 22;
  background-color: inherit;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  position: relative;
}

.sub-links {
  text-align: center;
  font-family: var(--paragraph-text-family);
  border: 2px solid var(--primary-color);
  z-index: 999999;
  background-color: var(--primary-color);
  border-radius: 5px;
  min-width: 175px;
  font-size: 14px;
  display: none;
  position: absolute;
  bottom: -87px;
  left: -20px;
}

.desk-list-hidden {
  display: none;
}

.sub-links hr {
  background: var(--secondary-color);
  border: none;
  outline: none;
  height: 1px;
}

.sub-links .header-products-link a, .header-products-link a {
  width: 100%;
  height: 100%;
  color: var(--secondary-color);
  text-transform: capitalize;
  padding: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .1s linear, color .1s linear, border-radius .1s linear;
  display: inline-block;
}

.sub-links .header-products-link a:hover, .header-products-link a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.our-product-list:hover .sub-links {
  display: block;
}

.about-us-page {
  position: relative;
}

.about-us-page .sub-links {
  min-width: 175px;
  position: absolute;
  bottom: -57px;
  left: -43px;
}

.about-us-page:hover .sub-links {
  display: block;
}

.company-name-logo {
  display: none;
}

.logo {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 30px;
  display: flex;
  position: relative;
}

.anjum-logo-main {
  width: 160px;
  height: 105px;
}

.anjum-logo-name {
  width: 500px;
}

.name-logo-container {
  margin-top: 40px;
  text-decoration: none;
}

.slogan {
  text-transform: uppercase;
  color: var(--primary-color);
  text-align: center;
  font-family: montserrat-regular;
  font-size: 20px;
}

.navigation-links {
  gap: 14px;
  list-style-type: none;
  display: flex;
}

.navigation-list {
  height: 50px;
  font-family: var(--list-text-family);
  position: relative;
}

.navigation-list:before {
  content: "";
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  opacity: 0;
  transform-origin: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 100%;
  height: 2px;
  transition: opacity, transform .2s linear;
  position: absolute;
  bottom: 6px;
  transform: scaleX(0);
}

.navigation-list:hover:before {
  opacity: 1;
  transform: scaleX(1);
}

.navigation-list a, .navigation-list p {
  width: 100%;
  height: 100%;
  color: var(--primary-color);
  font-family: var(--text-family);
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.menu-icons {
  display: none;
}

.bar1, .bar2, .bar3 {
  background-color: var(--primary-color);
  width: 35px;
  height: 5px;
  margin: 6px 0;
  transition: all .4s;
}

.change .bar1 {
  transform: translate(0, 11px)rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px)rotate(45deg);
}

.phone-screen-visible {
  display: none;
}

.loader {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.overlay {
  z-index: 100;
  background-color: #000c;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.loader-image {
  z-index: 100;
  width: 250px;
  position: relative;
}

.product-heading {
  font-size: 48px;
  font-family: var(--heading-text-family);
  text-align: center;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  margin-top: 175px;
  border: 2px solid #000;
  border-radius: 10px;
  width: 800px;
  margin-inline: auto;
  line-height: 68px;
}

.all-products-container {
  max-width: 1440px;
  min-height: 50vh;
  max-height: auto;
  margin-top: 30px;
  border: 2px solid #000;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  display: flex;
}

.body-sticky .essential-heading {
  margin-top: 175px;
}

.category-products-container {
  flex-direction: column;
  column-gap: 20px;
  display: flex;
}

.category-product {
  column-gap: 5%;
  height: 400px;
  display: flex;
}

.products-image {
  align-self: center;
  width: 400px;
  height: 90%;
  margin-left: 20px;
  overflow: hidden;
}

.products-image img {
  width: 100%;
  height: 100%;
  transition: transform .5s linear;
}

.products-image:hover img {
  transform: scale(1.1);
}

.product-details {
  margin-right: 20px;
  flex-direction: column;
  width: 70%;
  margin-block: auto;
  display: flex;
}

.product-name {
  font-family: var(--paragraph-text-family);
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 50px;
}

.product-description {
  text-align: justify;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--paragraph-text-family);
  color: var(--tertiary-color);
}

.details-inquiry-container {
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.product-redirect {
  background-color: inherit;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  outline: none;
  align-self: center;
  width: 250px;
}

.product-redirect a {
  font-family: var(--paragraph-text-family);
  color: var(--primary-color);
  width: 100%;
  height: 100%;
  padding: 10px;
  text-decoration: none;
  display: inline-block;
}

.product-inquiry {
  cursor: pointer;
  color: var(--primary-color);
  align-self: flex-end;
  padding: 10px;
}

.category-product:nth-child(2n) {
  background-color: var(--primary-color);
}

.category-product:nth-child(2n) .product-name, .category-product:nth-child(2n) .product-inquiry, .category-product:nth-child(2n) .product-description, .category-product:nth-child(2n) .product-redirect a {
  color: var(--secondary-color);
}

.category-product:nth-child(2n) .product-inquiry, .category-product:nth-child(2n) .product-redirect a {
  border: 1px solid var(--secondary-color);
  border-radius: 6px;
}

.modal {
  z-index: 1000;
  background-color: #00000080;
  width: 100%;
  height: 100%;
  animation: .3s ease-in-out fadeIn;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

#product-inquiry-name {
  color: var(--primary-color);
  font-family: var(--heading-text-family);
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: bold;
}

.modal-content {
  background-color: var(--secondary-color);
  border-radius: 10px;
  width: 30%;
  margin: 12% auto;
  padding: 20px;
  animation: .3s ease-in-out slideIn;
  position: relative;
}

.close-button {
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  top: 18px;
  right: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-container {
  background: inherit;
  -webkit-backdrop-filter: blur(10px);
  margin-inline: auto;
  border: 1px solid #ffffff4d;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  height: 145px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  display: none;
  box-shadow: 0 4px 30px #0000001a;
}

.contact-container h2 {
  text-align: center;
  font-family: var(--heading-text-family);
  color: var(--primary-color);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 8px;
  position: relative;
}

.form-group label {
  font-family: var(--paragraph-text-family);
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  display: block;
}

.form-group input, .form-group textarea {
  border: 1px solid var(--primary-color);
  width: 100%;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
  padding: 8px 10px 8px 40px;
  font-size: 14px;
}

.form-group textarea, .phone-group input {
  padding-left: 10px;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 5px #804e3380;
}

.form-group img {
  opacity: .6;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 70%;
  left: 10px;
  transform: translateY(-50%);
}

.form-group .phone-group {
  gap: 10px;
  display: flex;
}

.iti {
  width: 100%;
  display: inline-block;
  position: relative;
}

.iti__country-list {
  z-index: 1100;
  min-width: 250px;
  max-width: 357px;
}

.form-group .phone-group select {
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 20px;
  width: 35%;
  padding-left: 40px;
}

.form-group .phone-group input {
  width: 65%;
}

input[type="text"], input[type="email"], input[type="tel"], .form-group textarea {
  font-family: var(--paragraph-text-family);
  color: var(--primary-color);
  font-size: 12px;
}

textarea::placeholder, ::placeholder {
  color: var(--primary-color);
  font-size: 12px;
}

.iti--separate-dial-code .iti__selected-dial-code {
  color: var(--primary-color);
}

.iti__country-list {
  min-width: 250px;
  max-width: 257px;
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.submit-button {
  background-color: var(--primary-color);
  width: 100%;
  color: var(--secondary-color);
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  transition: background-color .3s;
}

.submit-button:hover {
  background-color: #804e33cc;
}

#status {
  font-size: 14px;
  font-family: var(--paragraph-text-family);
  color: var(--primary-color);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

footer {
  background-color: var(--primary-color);
  margin-inline: auto;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}

.footer-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
  display: flex;
}

.upper-footer-div {
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-top: 43px;
  display: flex;
}

.footer-logo-heading {
  text-align: center;
}

.footer-logo {
  width: 120px;
  height: 80px;
  display: inline-block;
}

.footer-logo img {
  width: 100%;
  height: 100%;
}

.company-name-specific {
  font-size: 32px;
  font-family: var(--heading-text-family);
  color: var(--secondary-color);
  text-align: center;
  margin-top: 20px;
}

.mobile-view-visible {
  display: none;
}

.footer-links {
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
  display: flex;
}

.footer-links li {
  list-style-type: none;
}

.footer-links li a {
  color: var(--secondary-color);
  font-family: var(--paragraph-text-family);
  font-size: 18px;
  text-decoration: none;
}

.footer-links-list {
  position: relative;
}

.footer-links-list:before {
  content: "";
  background-color: var(--secondary-color);
  opacity: 0;
  transform-origin: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 100%;
  height: 2px;
  transition: opacity .3s linear, transform .3s linear;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
}

.footer-links-list:hover:before {
  opacity: 1;
  transform: scaleX(1);
}

.social-icons {
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  margin-top: 15px;
  transition: opacity .6s linear;
  display: flex;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.social-icons a img {
  width: 100%;
  height: 100%;
}

.social-icons a:hover {
  opacity: .6;
}

.trusted-seller {
  text-align: center;
  margin-top: 20px;
  display: block;
}

.list-seller-button {
  display: none;
}

.horizontal-line {
  background-color: var(--secondary-color);
  width: 100%;
  height: 2px;
  color: var(--primary-color);
  border: none;
  outline: none;
  margin-top: 25px;
}

.reserved-rights {
  margin-top: 10px;
  max-width: 1440px;
  margin-inline: auto;
}

.rights-title {
  color: var(--secondary-color);
  font-size: 16px;
  font-family: var(--paragraph-text-family);
  margin-bottom: 10px;
}

@media only screen and (width >= 1080px) and (width <= 1300px) {
  .header {
    height: 160px;
  }

  .anjum-logo-main {
    width: 130px;
    height: 70px;
  }

  .anjum-logo-name {
    width: 397px;
  }

  .name-logo-container {
    margin-top: 16px;
  }

  .slogan {
    margin-top: -9px;
    font-size: 18px;
  }

  .sub-links {
    min-width: 168px;
  }

  .about-us-page .sub-links {
    min-width: 168px;
    left: -43px;
  }

  .product-heading {
    font-size: 45px;
    line-height: 61px;
  }

  .product-description {
    font-size: 14px;
    line-height: 23px;
  }

  .product-name {
    font-size: 35px;
    line-height: 58px;
  }

  .modal-content {
    width: 40%;
    margin: 10% auto;
  }
}

@media only screen and (width >= 900px) and (width <= 1079px) {
  .header {
    height: 150px;
  }

  .anjum-logo-main {
    width: 110px;
    height: 50px;
  }

  .anjum-logo-name {
    width: 336px;
  }

  .name-logo-container {
    margin-top: -2px;
  }

  .slogan {
    margin-top: -9px;
    font-size: 18px;
  }

  .navigation-list a, .navigation-list p {
    font-size: 12px;
  }

  .sub-links {
    min-width: 145px;
    bottom: -76px;
  }

  .about-us-page .sub-links-small-devices {
    min-width: 145px;
    bottom: -50px;
    left: -40px;
  }

  .product-heading {
    font-size: 45px;
    line-height: 61px;
  }

  .product-description {
    font-size: 14px;
    line-height: 23px;
  }

  .product-name {
    font-size: 35px;
    line-height: 40px;
  }

  .products-image {
    width: 377px;
  }

  .modal-content {
    width: 40%;
    margin: 10% auto;
  }

  .upper-footer-div {
    min-width: 800px;
  }
}

@media only screen and (width >= 850px) and (width <= 900px) {
  .header {
    height: 130px;
  }

  .anjum-logo-main {
    width: 90px;
    height: 30px;
  }

  .anjum-logo-name {
    width: 284.256px;
  }

  .name-logo-container {
    margin-top: 0;
  }

  .slogan {
    margin-top: -7px;
    font-size: 12px;
  }

  .navigation-list a, .navigation-list p {
    font-size: 14px;
  }

  .product-heading {
    font-size: 45px;
    line-height: 61px;
  }

  .category-product {
    justify-content: center;
  }

  .products-image {
    width: 300px;
  }

  .product-description {
    font-size: 16px;
    line-height: 22px;
  }

  .details-inquiry-container {
    gap: 20px;
  }

  .product-details {
    width: 42%;
  }

  .product-name {
    font-size: 29px;
    line-height: 38px;
  }

  .category-product {
    column-gap: 5%;
    height: 350px;
    display: flex;
  }

  .modal-content {
    margin: 24% auto;
  }

  .upper-footer-div {
    min-width: 820px;
  }
}

@media only screen and (width <= 850px) {
  .header {
    height: 155px;
  }

  .navigation-bar {
    position: relative;
  }

  .navigation-container {
    background-color: var(--primary-color);
    z-index: 99999;
    border-radius: 5px;
    width: 145px;
    padding: 5px 0;
    display: none;
    position: absolute;
    bottom: -79px;
    right: 18px;
  }

  .anjum-logo-main {
    width: 130px;
    height: 70px;
  }

  .name-logo-container {
    margin-top: 16px;
  }

  .anjum-logo-name {
    width: 397px;
  }

  .slogan {
    margin-top: -9px;
    font-size: 18px;
  }

  .navigation-list {
    height: 25px;
    color: var(--secondary-color);
  }

  .navigation-list a {
    color: var(--secondary-color);
    font-size: 15px;
  }

  .phone-screen-visible {
    display: block;
  }

  .navigation-links {
    flex-direction: column;
    gap: 2px;
  }

  .menu-icons {
    cursor: pointer;
    display: block;
  }

  .bar1, .bar2, .bar3 {
    margin: 5px 0;
  }

  .change .bar1 {
    transform: translate(0, 9px)rotate(-45deg);
  }

  .header-products-link {
    display: block;
  }

  .about-us-page .sub-links {
    bottom: -34.5px;
    left: -175px;
  }

  .sub-links {
    z-index: 999999;
    position: absolute;
    bottom: -65px;
    left: -177px;
  }

  .navigation-list:before {
    display: none;
  }

  .our-product-list:hover .sub-links {
    display: block;
  }

  .sandalwood-links:hover .super-links-sandalwood-oil, .mobile-view-left-list-hidden {
    display: none;
  }

  .desk-list-hidden {
    display: block;
  }

  .company-name-logo {
    margin-top: 13px;
    display: block;
  }

  .tablet-view-disable {
    display: none;
  }

  .product-heading {
    width: 612px;
    margin-top: 182px;
    font-size: 40px;
    line-height: 50px;
  }

  .all-products-container {
    border: none;
  }

  .category-product {
    justify-content: center;
  }

  .products-image {
    width: 300px;
  }

  .product-description {
    font-size: 16px;
    line-height: 22px;
  }

  .details-inquiry-container {
    gap: 20px;
  }

  .product-details {
    width: 42%;
  }

  .product-name {
    font-size: 29px;
    line-height: 35px;
  }

  .category-product {
    column-gap: 5%;
    height: 350px;
    display: flex;
  }

  .modal-content {
    width: 60%;
    margin: 32% auto;
  }

  .horizontal-line {
    margin-top: 18px;
  }

  .company-name-specific {
    margin-top: 18px;
    font-size: 23px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
  }

  .footer-links li a {
    font-size: 14px;
  }
}

@media only screen and (width >= 600px) and (width <= 730px) {
  .header {
    height: 120px;
  }

  .anjum-logo-main {
    width: 110px;
    height: 50px;
  }

  .anjum-logo-name {
    width: 336px;
  }

  .name-logo-container {
    margin-top: 16px;
  }

  .slogan {
    margin-top: -9px;
    font-size: 18px;
  }

  .bar1, .bar2, .bar3 {
    margin: 4px 0;
  }

  .change .bar1 {
    transform: translate(0, 7px)rotate(-45deg);
  }

  .navigation-container {
    width: 130px;
    max-width: 140px;
    bottom: -88px;
  }

  .navigation-list a {
    color: var(--secondary-color);
    font-size: 14px;
  }

  .about-us-page .sub-links {
    bottom: -33.5px;
  }

  .sub-links {
    bottom: -63px;
    left: -175px;
  }

  .product-heading {
    width: 555px;
    margin-top: 150px;
    font-size: 35px;
    line-height: 49px;
  }

  .category-product {
    justify-content: center;
    column-gap: 5%;
    height: 350px;
    display: flex;
  }

  .products-image {
    width: 280px;
  }

  .product-description {
    font-size: 13px;
    line-height: 20px;
  }

  .product-redirect {
    width: 190px;
  }

  .details-inquiry-container {
    margin-top: 13px;
  }

  .product-details {
    width: 35%;
  }

  .product-name {
    font-size: 29px;
    line-height: 34px;
  }

  .modal-content {
    width: 60%;
    margin: 32% auto;
  }

  .upper-footer-div {
    min-width: 579px;
  }

  .company-name-specific {
    margin-top: 11px;
    font-size: 18px;
  }

  .list-heading h3 {
    display: none;
  }
}

@media only screen and (width >= 401px) and (width <= 600px) {
  .header {
    height: 90px;
  }

  .navigation-bar {
    height: 100%;
  }

  .navigation-container {
    z-index: 99999;
    width: 130px;
    max-width: 140px;
    padding: 2px 0;
    font-size: 12px;
    bottom: -106px;
  }

  .sub-links .header-products-link a, .header-products-link a {
    padding: 6px;
    font-size: 12px;
  }

  .about-us-page .sub-links {
    bottom: -35px;
    left: -175px;
  }

  .sub-links {
    z-index: 999999;
    padding: 2px;
    bottom: -64px;
    left: -175px;
  }

  .anjum-logo-main {
    width: 77px;
    height: 49px;
  }

  .anjum-logo-name {
    width: 220px;
  }

  .company-name-logo {
    margin-top: 7px;
    display: block;
  }

  .slogan {
    margin-top: -4px;
    font-size: 9px;
  }

  .bar1, .bar2, .bar3 {
    margin: 4px 0;
  }

  .change .bar1 {
    transform: translate(0, 7px)rotate(-45deg);
  }

  .navigation-list a {
    color: var(--secondary-color);
    font-size: 14px;
  }

  .product-heading {
    min-width: 332px;
    max-width: 376px;
    margin-top: 120px;
    font-size: 24px;
    line-height: 49px;
  }

  .category-product {
    justify-content: center;
    align-items: center;
    column-gap: 2%;
    height: 280px;
    display: flex;
  }

  .products-image {
    width: 183px;
    height: 236px;
  }

  .product-details {
    max-width: 23%;
    margin-right: 20px;
  }

  .details-inquiry-container {
    margin-top: 10px;
  }

  .product-name {
    font-size: 16px;
    line-height: 20px;
  }

  .product-description {
    font-size: 8px;
    line-height: 13px;
  }

  .product-redirect {
    justify-content: center;
    align-items: center;
    height: 32px;
    padding: 0;
    font-size: 11px;
    display: flex;
  }

  .product-redirect a {
    padding-top: 2px;
    font-size: 11px;
    line-height: 13px;
  }

  .modal-content {
    width: 75%;
    margin: 40% auto;
  }

  #product-inquiry-name {
    font-size: 17px;
  }

  .form-group label {
    font-size: 13px;
  }

  footer {
    height: 250px;
    margin-bottom: 0;
  }

  .upper-footer-div {
    margin-top: 10px;
  }

  .company-name-specific {
    margin-top: 18px;
    font-size: 20px;
  }

  .mobile-view-visible {
    display: flex;
  }

  .trusted-seller-social-icons {
    display: none;
  }

  .mobile-view-visible {
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    margin-top: 15px;
    transition: opacity .6s linear;
    display: flex;
  }

  .mobile-view-visible a {
    width: 30px;
    height: 30px;
    display: inline-block;
  }

  .mobile-view-visible a img {
    width: 100%;
    height: 100%;
  }

  .mobile-view-visible a:hover {
    opacity: .6;
  }

  .list-seller-button {
    width: 80px;
    margin-top: 10px;
    display: block;
  }

  .list-seller-button .list-trusted-seller img {
    width: 100%;
  }
}

@media only screen and (width >= 200px) and (width <= 400px) {
  .header {
    height: 91px;
  }

  .navigation-bar {
    height: 100%;
  }

  .bar1, .bar2, .bar3 {
    width: 23px;
    height: 4px;
    margin: 3px 0;
  }

  .change .bar1 {
    transform: translate(0, 4px)rotate(-45deg);
  }

  .change .bar3 {
    transform: translate(0, -10px)rotate(45deg);
  }

  .navigation-container, .mobile-view-left-list-hidden {
    z-index: 99999;
    width: 116px;
    padding: 2px 0;
    font-size: 10px;
    bottom: -95px;
  }

  .about-us-page .sub-links {
    bottom: -34px;
    left: -175px;
  }

  .sub-links {
    z-index: 999999;
    min-width: 150px;
    padding: 2px;
    font-size: 10px;
    display: none;
    bottom: -64px;
    left: -150px;
  }

  .sub-links .header-products-link a, .header-products-link a {
    z-index: 999999;
    padding: 7px;
    font-size: 10px;
  }

  .anjum-logo-main {
    width: 60px;
    height: 40px;
  }

  .anjum-logo-name {
    width: 195px;
  }

  .company-name-logo {
    margin-top: 1px;
    display: block;
  }

  .slogan {
    margin-top: -4px;
    font-size: 8px;
  }

  .navigation-container {
    width: 126px;
    max-width: 140px;
    bottom: -102px;
  }

  .navigation-list a {
    color: var(--secondary-color);
    font-size: 10px;
  }

  .category-product {
    justify-content: center;
    align-items: center;
    column-gap: 4%;
    height: 201px;
    display: flex;
  }

  .product-heading {
    min-width: 301px;
    max-width: 322px;
    margin-top: 120px;
    font-size: 21px;
    line-height: 41px;
  }

  .products-image {
    width: 135px;
    height: 170px;
  }

  .product-details {
    max-width: 23%;
    margin-right: 25px;
  }

  .details-inquiry-container {
    margin-top: 8px;
  }

  .product-name {
    font-size: 16px;
    line-height: 20px;
  }

  .product-description {
    font-size: 7.5px;
    line-height: 13px;
  }

  .product-redirect {
    justify-content: center;
    align-items: center;
    height: 22px;
    padding: 0;
    font-size: 7.5px;
    display: flex;
  }

  .product-redirect a {
    padding-top: 4px;
    font-size: 7px;
    line-height: 10px;
  }

  .modal-content {
    width: 80%;
    margin: 40% auto;
  }

  #product-inquiry-name {
    font-size: 18px;
  }

  .form-group label {
    font-size: 13px;
  }

  footer {
    height: 250px;
    margin-top: 30px;
  }

  .footer-logo {
    width: 100px;
    height: 62px;
  }

  .list-heading {
    margin-top: 20px;
  }

  .list-heading h3 {
    display: none;
  }

  .upper-footer-div {
    margin-top: 10px;
  }

  .company-name-specific {
    margin-top: 18px;
    font-size: 16px;
  }

  .mobile-view-visible {
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    margin-top: 15px;
    transition: opacity .6s linear;
    display: flex;
  }

  .mobile-view-visible a {
    width: 25px;
    height: 25px;
    display: inline-block;
  }

  .mobile-view-visible a img {
    width: 100%;
    height: 100%;
  }

  .mobile-view-visible a:hover {
    opacity: .6;
  }

  .list-seller-button {
    width: 80px;
    margin-top: 10px;
    display: block;
  }

  .list-seller-button .list-trusted-seller img {
    width: 100%;
  }

  .trusted-seller-social-icons {
    display: none;
  }

  .footer-links li a {
    font-size: 11px;
  }

  .reserved-rights {
    margin-top: 10px;
  }

  .rights-title {
    font-size: 10px;
    line-height: 18px;
  }

  .social-icons {
    margin-top: 6px;
  }
}
/*# sourceMappingURL=essential-oils.113540b5.css.map */
