*/ :root {
  --white-color: #fff;
  --black-color: #000;
  --text-color: #333;
}

* {
  transition: all 0.5s ease;
}

body {
  background-color: rgb(254, 242, 242) !important;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif !important;
  box-sizing: border-box;
  position: relative;
  color: #000;
}

a {
  color: white !important;
  text-decoration: none !important;
}

/* header logo */
.header_logo {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

img.header_logo-img {
  height: 100px;
  max-width: 100%;
  transition: 1s;
}

/* time */
.Time {
  margin-right: 20px;
}

#currentTime {
  border: #ffffff 1px solid;
  border-radius: 5px;
  color: #ffffff;
  font-size: 17px;
  padding: 6px 10px;
  white-space: nowrap;
  transition: 1s;
}

@media (max-width: 768px) {
  #currentTime {
    font-size: 14px;
    padding: 5px;
  }
}

@media (max-width: 448px) {
  #currentTime {
    font-size: 11px;
  }
}

/*responsive*/

@media screen and (max-width: 1024px) {
  #name {
    left: 23%;
  }
}

@media screen and (max-width: 768px) {
  .footer_container-logo {
    display: none;
  }

  .footer_container {
    display: block;
  }
}

@media screen and (min-width: 676px) {
  #menuList {
    display: none !important;
  }
}

@media screen and (max-width: 896px) {
  a.direction {
    display: none;
  }

  #Menu {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .footer_container-content {
    display: block;
  }

  img.header_logo-img {
    height: 80px;
  }

  #name {
    font-size: 1.8em;
  }
}

/* @media screen and (max-width: 672px) {
} */

@media screen and (max-width: 576px) {
  img.header_logo-img {
    height: 70px;
  }
}

@media screen and (max-width: 512px) {
  img.header_logo-img {
    height: 65px;
  }
}

@media screen and (max-width: 448px) {
  img.header_logo-img {
    height: 60px;
  }
}
