* {
  font-size: 14px;
}

.embed-responsive-item {
  border-radius: 16px;
}

.banner {
  object-fit: cover;
  width: 100%;
}

.banner-top-text {
  font-size: 1em;
}

.banner-top-text span {
  font-size: 2em;
  font-weight: bold;
}

.banner-top-text p {
  font-size: 0.8em;
  margin-bottom: 0px;
}

.grey-strip {
  /* background-color: #d0d3d5;
     */
  width: 100%;
  cursor: pointer;
}

.link {
  text-decoration: none;
}

.atozTitle {
  margin-top: 30px;
  font-size: 1.5em;
  color: orange;
  font-weight: bold;
}

.atozContent {
  font-size: 1em;
  color: white;
  font-weight: bold;
  margin-bottom: 0px;
}

.contact-send {
  width: 100%;
  height: 50px;
  border: 1px solid #000000;
  margin-bottom: 16px;
}

.contact-send:hover {
  width: 100%;
  height: 50px;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  margin-bottom: 16px;
}

.navbar-nav {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.navbar-collapse {
  background: #00000099;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: row;
}

.nav-link:hover {
  background: linear-gradient(to right, #000000, #00000000);
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
}

.about-banana-bg {
  background: repeating-radial-gradient(
      circle at 0% 50%,
      #3c3c3c1a,
      #2b2b2b1a 1px,
      #ffffff1a 1px,
      #ffffff1a 5px
    ),
    repeating-radial-gradient(
      circle at 100% 50%,
      #3c3c3c1a,
      #2b2b2b1a 1px,
      #ffffff1a 1px,
      #ffffff1a 5px
    ),
    linear-gradient(#ffffff, #ffffff);
}

.mainHomeModel {
  animation: zoomIn 0.8s ease-in-out;
  background-color: #233580;
  color: #ffffff;
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

body {
  padding-top: 88px;
}

.header-image-1,
.header-image-2,
.header-image-3,
.header-image-4,
.header-image-5 {
  width: 100%;
}

.header {
  height: 600px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.overlay-back {
  background: #ffffff99;
  border-radius: 16px;
  width: 80%;
}

.sub-title {
  font-size: 50px;
}

.sub-description {
  font-size: 20px;
}

@media (max-width: 768px) {
  .sub-title {
      font-size: 30px;
  }

  .sub-description {
      font-size: 15px;
  }
}

#menu-button {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #818181;
}

#menu-button:hover {
  color: #f1f1f1;
}

#mainSideNav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1032;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #222022;
  overflow-x: hidden;
  transition: 0.5s;
}

.brand-name {
  font-size: 30px;
  line-height: 15px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  transition: fade 0.5s;
}

.brand-name span {
  font-size: 15px;
}

.menu-items {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background: #D6AA9D;
}

#mainSideNav .menu-items a {
  padding: 8px 8px 16px 8px;
  text-decoration: none;
  font-size: 14px;
  color: #818181;
  display: block;
  transition: 0.3s;
  border-radius: 0;
}

#mainSideNav .side-nav-header {
  display: flex;
  flex-direction: row;
  padding: 10px 10px 10px 10px;
  background: #D6AA9D;
}

#mainSideNav .side-nav-header .closebtn {
  margin-left: auto;
}

#mainSideNav .side-nav-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#mainSideNav .side-nav-header a {
  text-decoration: none;
  font-size: 40px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

#mainSideNav .side-nav-header a:hover {
  color: #f1f1f1;
}

.subMenu {
  width: 100%;
  position: relative;
  z-index: 1000;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #222022;
  display: none;
  transition: 5s;
}

.subMenu a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  color: #818181;
  display: block;
}

.subMenu a:hover {
  color: #f1f1f1;
}

.subMenu .subMenuDetails {
  display: flex;
  flex-direction: row;
  color: #818181;
  padding: 64px;
  border-top: #3c3c3c solid 1px;
}

.subMenu .subMenuDetails:hover {
  color: #f1f1f1;
  background: #111111;
  background-image: repeating-linear-gradient(135deg,
          #54545417 0px,
          #54545417 1px,
          transparent 1px,
          transparent 11px),
      repeating-linear-gradient(45deg,
          #54545417 0px,
          #54545417 1px,
          transparent 1px,
          transparent 11px),
      linear-gradient(90deg,
          #111111,
          #111111);
  animation: move 5s linear infinite alternate;
}

@keyframes move {
  0% {
      background-position: 0 0;
  }

  100% {
      background-position: 100px 100px;
  }
}

.subMenu .subMenuDetails .subMenuImage {
  width: 300px;
  height: 300px;
}

.subMenu .subMenuTitleDescription {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}

.subMenu .subMenuTitleDescription .subMenuTitle {
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.product-multiple-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subMenu .subMenuTitleDescription .subMenuDescription {
  font-size: 16px;
  text-decoration: none;
}

.menu-item {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.side-nav-footer {
  position: relative;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 32px 0;
}

.side-nav-footer a {
  text-decoration: none;
  font-size: 14px;
  color: #818181;
  transition: 0.3s;
}

.side-nav-footer a:hover {
  color: #f1f1f1;
}

.broadcast-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.subMenu .subMenuTitleDescription {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  max-height: 300px;
  overflow-y: scroll;
}

.subMenu .subMenuTitleDescription::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1450px) {

  body {
      padding-top: 68px;
  }

  #menu-button {
      top: 20px;
      left: 10px;
      font-size: 25px;
  }

  .home-logo {
      height: 40px;
  }

  .menu-item {
      font-size: 20px !important;
  }

  .brand-name {
      font-size: 20px;
  }

  .brand-name span {
      font-size: 10px;
  }

  .subMenu .subMenuDetails .subMenuImage {
      width: 100%;
      height: 100%;
  }

  .subMenu .subMenuDetails {
      flex-direction: column;
  }

  .subMenu .subMenuDetails .subMenuTitleDescription {
      padding: 32px 0;
  }

  .subMenu .subMenuDetails .subMenuTitleDescription .subMenuTitle {
      font-size: 20px;
  }

  .subMenu .subMenuDetails .subMenuTitleDescription .subMenuDescription {
      font-size: 12px;
  }

}
