:root {
  --gutter: 20px;
  --primary: #85cbce;
  --background: #f3f3f3;
  --font-color: #36454f;
  --font-text: #6c777e;
  --white: white;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--font-color);
  width: 100vw;
  overflow-x: hidden;
}

.en {
  font-family: "Outfit", sans-serif;
}

.ar {
  font-family: "GE SS Two Medium", sans-serif;
}

a {
  text-decoration: none;
  color: var(--font-color);
}

h3 {
  padding-top: 2rem;
  font-size: 1.5rem;
}

p,
span {
  color: var(--font-text);
}

img {
  border-radius: 1rem;
}

li {
  list-style: none;
}

.main-header {
  background-image: url(Assets/BG1-03.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  margin-bottom: 5rem;
  -webkit-animation: slidebot 1s forwards;
  animation: slidebot 1s forwards;
}

@-webkit-keyframes slidebot {
  from {
    height: 0;
  }

  to {
    height: 70vh;
  }
}

@keyframes slidebot {
  from {
    height: 0;
  }

  to {
    height: 70vh;
  }
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 2rem;
  background-color: var(--white);
  z-index: 10;
  box-shadow: 5px 10px 50px #888;
}

.nav-logo {
  width: 7rem;
  display: inline;
  transition: width 0.25s ease-out;
}

.nav-logo:hover {
  width: 9rem;
}

.nav-menu{
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.25s ease-out;
}

.nav-item:hover::before {
  width: 100%;
}

.nav-item:hover {
  color: var(--primary);
}

.first-section {
  background-color: var(--background);
  margin: 0 auto 8rem auto;
  padding: 2rem;
  width: 70%;
  border-radius: 1rem;
}

.first-section-div {
  display: flex;
  gap: 1rem;
}

.first-section-contianer {
  display: flex;
  flex-direction: column;
}


.first-section-title {
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: uppercase;
}

.first-section-sub {
  padding-top: 2rem;
  font-size: 2rem;
  font-weight: 300;
}

.first-section-img {
  width: 40%;
  height: min-content;
  border-radius: 1rem;
}

.first-section-span {
  display: flex;
  margin-bottom: 2rem;
  line-height: 2rem;
  font-size: 1rem;
  font-weight: 300;
}

.products {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 1rem;
  grid-template-columns: 30% 30% 30%;
  margin-bottom: 2rem;
}

.products-div {
  margin-top: 0.5rem;
  height: 12rem;
  width: 12rem;
  background-color: var(--background);
  border-radius: 1rem;
}

.first {
  background-image: url(Assets/white-medicine-pills.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.second {
  background-image: url(Assets/hand-holds-capsule.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.third {
  background-image: url(Assets/cream-tube.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.fourth {
  background-image: url(Assets/suppository-anal-vaginal.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.fifth {
  background-image: url(Assets/natural-osmetics-.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.sixth {
  background-image: url(Assets/first-aid-medical-supplies-doctor.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.seventh {
  background-image: url(Assets/bottle-injection-medical-glass.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.upper-footer {
  margin-top: 7rem;
  display: flex;
  justify-content: space-between;
  background-color: var(--background);
  padding: 4rem 3rem;
}

.footer-logo {
  height: 6rem;
}

.social-media {
  display: flex;
  align-self: end;
  gap: 0.5rem;
  padding: 1rem;
}

.media-items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem;
  border-radius: 7px;
}

.media-icon {
  width: 1.5rem;
  border-radius: 0;
  transition: transform 0.25s ease-out;
}

.media-icon:hover {
  cursor: pointer;
  transform: scale(2);
}

.lower-footer {
  width: 90%;
  margin: -2rem auto;
  background-color: var(--font-color);
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem 1rem 0;
  gap: 1rem;
  border-radius: 1rem 1rem 0 0;
}

.copy {
  display: flex;
  align-items: flex-end;
}

.language {
  border: none;
  outline: none;
  background-color: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
}
