/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}

.navcontent {
  max-width: 1250px;
  margin: auto;
  padding: 0px 30px;
}
.navnavbar {
  position: fixed;
  z-index: 5;
  width: 100%;
  padding: 25px 0;
  transition: all 0.3s ease;
}
.navnavbar.sticky {
  padding: 10px 0;
  background: #f1f1f1;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}
.navnavbar.sticky .navmenu-list li a {
  color: #000;
}
.navnavbar.sticky .navmenu-list li a:hover {
  color: #04f720;
}
.navnavbar .navcontent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navnavbar .navlogo {
  position: relative;
  float: left;
  margin-left: 0;
}
.navnavbar .navlogo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.navnavbar .navmenu-list {
  display: inline-flex;
}
.navmenu-list li {
  list-style: none;
}
.navmenu-list li a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.navmenu-list li a:hover {
  color: #06b41a; /*#0ca428;*/
  background-color: #f1f1f1;
  padding: 10px;
  font-weight: bold;
}
.navbanner {
  height: 20vh;
  /* background: url("../img/bgmot.jpg") no-repeat; */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.icon {
  color: #000;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.icon.cancel-btn {
  position: absolute;
  right: 30px;
  top: 20px;
}
.navnavbar.sticky .icon.navcancel-btn {
  top: 10px;
}
@media (max-width: 868px) {
  .navbanner {
    height: 20vh;
  }
  body.disabledScroll {
    overflow: hidden;
  }
  .icon {
    display: block;
    height: 95px;
    width: 33px;
    text-align: center;
    line-height: 50px;
    border-radius: 20%;
    z-index: 9;
  }
  .icon.navcancel-btn {
    display: none;
  }
  .icon.navcancel-btn.show {
    display: block;
  }
  .icon.hide {
    display: none;
  }
  .navnavbar .navmenu-list {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50%;
    background: #f1f1f1;
    display: block;
    padding: 40px 0;
    text-align: center;

    clip-path: circle(30px at calc(100% - 40px) calc(0% + 50px));
    transition: all 0.3s ease;
  }
  .navnavbar.sticky .navmenu-list {
    clip-path: circle(0px at calc(100% - 45px) calc(0% + 35px));
  }
  .navnavbar .navmenu-list.active {
    clip-path: circle(75%);
  }
  .navnavbar .navmenu-list li {
    margin-top: 45px;
  }
  .navnavbar .navmenu-list li a {
    font-size: 23px;
  }
}
@media only screen and (max-width: 771px) {
  .tm-welcome-right {
    height: 100px;
    margin-top: -100px !important;
  }
  .title {
    font-size: 1.7rem !important;
  }
}

.box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.box span {
  display: block;
  width: 40px;
  height: 40px;
  border-bottom: 7px solid #000;
  border-right: 7px solid #000;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}
.box span:nth-child(2) {
  animation-delay: -0.2s;
}
.box span:nth-child(3) {
  animation-delay: -0.4s;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
.title h4 {
  font-family: "Comic Sans MS" !important;
}

.lanfooter {
  background: linear-gradient(90deg, #86de61, #0f6d0ff5);
}

@media only screen and (min-width: 415px) and (max-width: 868px) {
  .navnavbar .navmenu-list {
    clip-path: circle(30px at calc(100% - 45px) calc(0% + 50px));
  }
}
