@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");

:root {
  --primary-color: #ff8015;
  --body-color: #212121;
  --body-color-2: #010422;
  --head-color: #d40f0a;
  --head-color-2: #0885e9;
  --text-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-padding-top: 50px;
  scroll-behavior: smooth;
}

.app {
  position: relative;
  background: var(--body-color);
  color: var(--text-color);
  transition: 0.3s;
  min-height: 100vh;
}

.app.active {
  --body-color: #fff;
  --text-color: #000;
  --body-color-2: #f1f1f1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  display: inline-block;
  color: var(--text-color);
}

img {
  width: 100%;
}

input:focus {
  outline: none;
}

.section {
  padding: 30px 0;
}

.app-container {
  max-width: 1400px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

/******* Slick ****** */

.banner-slick .slick-dots {
  bottom: -35px;
}

.banner-slick .slick-dots li {
  width: 10px;
  height: 20px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.banner-slick .slick-dots li button {
  background: rgba(255, 255, 255, 0.4);
  height: 4px;
  width: 4px;
  padding: 0;
  overflow: hidden;
  border: none;
  transition: 0.3s;
}
.app.active .banner-slick .slick-dots li button {
  background: rgba(0, 0, 0, 0.1);
}

.banner-slick .slick-dots li.slick-active {
  width: 20px;
  margin: 0 3px;
}

.banner-slick .slick-dots li.slick-active button {
  width: 20px;
  background: var(--primary-color) !important;
}

.slick-dots li button::before {
  display: none;
}

.slide-arrow {
  position: absolute;
  top: 60%;
  width: 18px;
  padding: 0 4px;
  transform: translateY(-50%);
  z-index: 99;
  border: none;
  background: none;
  transition: 0.3s;
}
.slide-arrow.prev-arrow {
  left: -10px;
}
.slide-arrow.next-arrow {
  right: -10px;
}

.slide-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.product-for .slide-arrow {
  background: transparent;
  color: #fff;
  width: 20px;
}

.product-for .slick-disabled {
  opacity: 0.4;
}

.product-nav .slick-slide {
  opacity: 0.4;
}

.product-nav .slick-slide.slick-current {
  opacity: 1;
}


/* Alert message */

.box-alert{
  position: fixed;
  top: 40px;
  right: 10px;
  z-index: 9999;
}

.alert{
  width: 300px;
  background: #fff;
  padding: 0;
  animation: alertShow .5s ease-in-out;
}
@keyframes alertShow {
  0%{transform: translateX(20px);opacity: 0;}
  50%{transform: translateX(-5px);}
  100%{transform: translateX(0px);opacity: 1;}
}

.alert-success{
  border: 1px solid rgba(0, 226, 30, 1);
}

.alert-error{
  border: 1px solid rgba(226, 0, 0, 1);
}

.alert-content{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  cursor: pointer;
}

.alert-content .icon{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 50%;
  color: #fff;
}

.alert-success .icon{
  background: rgba(0, 226, 30, 1);
}
.alert-error .icon{
  background: rgba(226, 0, 0, 1);
}

.alert-text{
  color: #000;
}

.alert-text h5{
  font-size: 18px;
}
.alert-text span{
  font-size: 14px;
  font-weight: 300;
}

.alert-success .alert-text h5{
  color: rgba(0, 226, 30, 1);
}
.alert-error .alert-text h5{
  color: rgba(226, 0, 0, 1);
}

.alert-progress-bar{
  width: 100%;
  height: 4px;
}

.alert-success .alert-progress-bar{
  background: rgba(0, 226, 30, 1);
}
.alert-error .alert-progress-bar{
  background: rgba(226, 0, 0, 1);
}







/*---------------Effect--------------*/
.effect{
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.lanterns{
  position: absolute;
  width: 40px;
  right: -38px;
  bottom: -4px;
}
.lanterns-2{
  position: fixed;
  width: 40px;
  z-index: 9;
  top: 50vh;
  left: 10px;
}

/* Menu mobile */

/* menu mobile */

.nav-mobile-toggle{
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  padding: 6px 6px 6px 0;
  cursor: pointer;
  display: none;
}
.nav-mobile-toggle > span{
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
}

.modal-mobile{
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transform-origin: left center;
  -webkit-transition: visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
  transition: visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
  transition: transform 400ms ease 400ms, visibility 400ms ease 400ms;
  transition: transform 400ms ease 400ms, visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
  visibility: hidden;
}

.modal-mobile.active{
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
  transition: visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
  transition: transform 400ms ease 0ms, visibility 400ms ease 0ms;
  transition: transform 400ms ease 0ms, visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
}

.mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.8;
}

.mobile-nav-wrapper{
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  background-color: #252531;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 20px 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
  transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
  transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, transform 400ms ease 0ms;
  transition: opacity 400ms ease 0ms, visibility 400ms ease 0ms, transform 400ms ease 0ms, -webkit-transform 400ms ease 0ms;
}

.modal-mobile.active .mobile-nav-wrapper{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
  transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
  transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, transform 400ms ease 400ms;
  transition: opacity 400ms ease 400ms, visibility 400ms ease 400ms, transform 400ms ease 400ms, -webkit-transform 400ms ease 400ms;
}


.close-modal-mobile{
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 20px;
}


.logo-mobile{
  display: flex;
  align-items: center;
  gap: 5px;
}
.logo-mobile img{
  max-width: 50px;
}


.logo-mobile > p{
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.mobile-nav-content{
  margin-top: 30px;
}

.mobile-dropdown{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-content .mobile-dropdown:last-child{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown > a{
  padding: 14px 0;
  text-transform: capitalize;
  font-size: 14px;
  display: flex;
  gap: 6px;
}

.mobile-dropdown a ion-icon{
  font-size: 20px;
}


.dropdown-toggle{
  float: right;
  margin-top: 12px;
  width: 26px;
  height: 26px;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}


.submenu-mobile{
  margin-bottom: 10px;
  padding-left: 16px;
  font-size: 14px;
  text-transform: capitalize;
  display: none;

}


.submenu-mobile > li > a{
  display: block;
  padding: 10px 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}


.info-mobile{
  position: absolute;
  font-size: 14px;
  bottom: 20px;
}

.info-mobile > li{
  font-weight: 400;
  margin: 10px 0;
}

.info-mobile i{
  color: var(--primary-color);
  margin-right: 4px;
  font-weight: 500;
}



.link-line{
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 18px 20px 18px 22px;
  transition: .3s;
}

.link-line.active{
  width: 20px;
}


/* social */

.box-social{
  position: fixed;
  bottom: 76px;
  right: 28px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-item{
  border-radius: 50%;
  animation: socialShake 1s ease-in-out infinite;
  position: relative;
}

.social-item::before{
  content: "";
  position: absolute;
  top: -7px;
  left:-7px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  animation: socialShadow 2s ease-in-out infinite;
  z-index: -1;
  border-radius: 50%;
}

.social-item::after{
  content: "";
  position: absolute;
  top: -7px;
  left:-7px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: socialBorder 2s ease-in-out infinite;
  z-index: -1;
  border-radius: 50%;
}

@keyframes socialShadow {
  0% {
      transform: rotate(0) scale(.8) skew(1deg);
  }
  50% {
      transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
      transform: rotate(0) scale(.8) skew(1deg);
  }
  
}

@keyframes socialBorder {
  0% {
      transform: rotate(0) scale(.8) skew(1deg);
      opacity: 0;
  }
  50% {
      transform: rotate(0) scale(1) skew(1deg);
      opacity: 1;
  }
  100% {
      transform: rotate(0) scale(1.5) skew(1deg);
      opacity: 0;
  }
  
}

.social-item img{
  width: 36px;
  border-radius: 50%;
}

@keyframes socialShake {
  0%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
  10%{-webkit-transform: rotate(-8deg) scale(1) skew(1deg);}
  20%{-webkit-transform: rotate(8deg) scale(1) skew(1deg);}
  30%{-webkit-transform: rotate(-8deg) scale(1) skew(1deg);}
  40%{-webkit-transform: rotate(8deg) scale(1) skew(1deg);}
  50%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
  100%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
}




/* Modal contact */

.modal-contact{
  position: fixed;
  top: 0px;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  animation: showMenu 0.2s ease-in;
  transition: .3s;
}


.modal-contact::before{
  content: "";
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background: rgba(0,0,0,0.2);
  z-index: -1;
}

.modal-contact.active{
  opacity: 1;
  visibility: visible;
}

.contact-body{
  position: absolute;
  width: 40%;
  right: 0;
  top: 80px;
  background: var(--body-color);
  height: 100vh;
  max-height: 100vh;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all .3s cubic-bezier(.39,.575,.565,1);
  padding: 50px 50px 20px;
}
.contact-body.active{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.btn-close-contact{
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
}

.contact-head-title{
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 40px;
  color: #fff;
}

.group-contact{
  margin-bottom: 30px;
}

.group-contact input{
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: none;
}
.group-contact input:focus{
  outline: none;
}



.loading{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
}

.loading.active{
  opacity: 1;
  visibility: visible;
}

.loading img{
  width: 40px;
  opacity: 0.2;
}