@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  font-size: 15px;
  color: #191919;
  background: #fff url("../images/bg.jpg") no-repeat top center;
  background-size: cover;
}

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus,
button:focus,
button:hover {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  color: #666;
  width: 100%;
}
button {
  background: none;
  border: none;
  padding: 0;
}
.t-body {
  overflow: hidden;
  padding-top: 80px;
}
.deco {
  position: absolute;
}
.max-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.full-container {
  position: relative;
}
/* header */
.header-sec {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #fff;
}
.header-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.logo img {
  max-height: 60px;
}
/** Home slider **/
.banner-dekstop {
  position: relative;
  background: #000;
}
.banner-d .swiper-slide {
  background: rgb(0, 0, 0, 0.4);
}
.slider-content-text {
  position: absolute;
  color: #fff;
  left: 10%;
  top: -5%;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-size: 40px;
  line-height: 1.2;
}
.sdtext-1 {
  opacity: 0;
  font-weight: 600;
  color: #82e3fc;
}
.sdtext-2 {
  opacity: 0;
  font-weight: 600;
  color: #82e3fc;
}
.sdtext-3 {
  opacity: 0;
  font-size: 65%;
  color: #fff;
  margin: 15px 0 0;
}
button.sd-btn {
  background: #2440da;
  border: none;
  min-width: 190px;
  height: 60px;
  margin: 25px 0 5px;
  color: #fff;
  border-radius: 45px;
  padding: 0px 15px;
  font-size: 55%;
}
button.sd-btn:hover {
  background: #fff;
  color: #000;
}
.swiper-slide-active .sdtext-1 {
  animation: fadeInUp linear 0.2s;
  animation-delay: 0.5s;
  opacity: 0;
  animation-fill-mode: both;
}
.swiper-slide-active .sdtext-2 {
  animation: fadeInUp linear 0.2s;
  animation-delay: 0.8s;
  opacity: 0;
  animation-fill-mode: both;
}
.swiper-slide-active .sdtext-3 {
  animation: fadeInUp linear 0.2s;
  animation-delay: 1.2s;
  opacity: 0;
  animation-fill-mode: both;
}
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, -30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    transform: translate3d(-100px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    transform: translate3d(100px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.banner-d .swiper-button-prev::after {
  content: none;
}
.banner-d .swiper-button-next::after {
  content: none;
}
.banner-d .swiper-button-prev,
.banner-d .swiper-button-next {
  color: #fff;
  height: 30px;
}
.banner-d .swiper-button-prev:hover,
.banner-d .swiper-button-next:hover {
  transform: scale(1.07);
}

.template-wrapper {
  text-align: center;
  position: relative;
  padding: 15px 0;
}
.tpbox {
  position: relative;
  display: inline-block;
  max-width: 23%;
  margin: 1% 0.4%;
}
.tpimg {
  position: relative;
  display: block;
}
.hover-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.2s;
}
.magnified-icon {
  font-size: 38px;
  color: #f5f5f5;
  transform: scale(0.5);
  transition: ease-in-out 0.2s;
}
.tpimg:hover .hover-layer {
  visibility: visible;
  opacity: 1;
  transition: ease-in-out 0.2s;
}
.tpimg:hover .hover-layer .magnified-icon {
  transform: scale(1);
}
.tpbtn-wrap {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}
.tp-name {
  background: #fff;
  border: 1px solid #a2a2a2;
  border-radius: 30px;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: #1c4050;
  text-transform: uppercase;
}
a.demo-btn {
  display: inline-block;
  width: 48%;
  border-radius: 35px;
  background: #070064;
  color: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.demo-btn:hover {
  background: #82e3fc;
  color: #000;
}
.tpbox.hot::after {
  content: "";
  background: url(../images/hot.png) no-repeat;
  background-size: 100%;
  width: 45px;
  height: 56px;
  position: absolute;
  z-index: 1;
  top: -6px;
  left: -0;
  animation: hithere 2s ease infinite;
}
.tpbox.myr::after {
  content: "";
  background: url(../images/myr.png) no-repeat;
  background-size: 100%;
  width: 45px;
  height: 56px;
  position: absolute;
  z-index: 1;
  top: -6px;
  left: -0;
  animation: hithere 2s ease infinite;
}

@keyframes hithere {
  30% {
    transform: scale(1.2);
  }
  40%,
  60% {
    transform: rotate(-20deg) scale(1.2);
  }
  50% {
    transform: rotate(20deg) scale(1.2);
  }
  70% {
    transform: rotate(0deg) scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.footer-sec {
  background: #070064;
  position: relative;
  padding: 10px 0 10px;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1080px) {
  .t-body {
    padding-top: 60px;
  }
  .header-container {
    height: 60px;
  }
  .logo img {
    max-height: 40px;
  }
  .tpbox {
    max-width: 48%;
  }
  .swiper-banner .swiper-slide {
    height: 60vw;
  }
  .mb-img {
    object-fit: cover;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .tp-name {
    font-size: 14px;
  }
  .tpbox.hot::after {
    width: 5vw;
    height: 6.5vw;
  }
  .slider-content-text {
    font-size: 5vw;
  }
}

@media (max-width: 480px) {
  .full-container {
    padding: 0 10px;
  }
  .tpbox {
    max-width: 98%;
    margin: 2% 0.5%;
  }
  .tpbox.hot::after {
    width: 9vw;
    height: 10.5vw;
  }
}
