/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-family: Poppins-Regular,system-ui,-apple-system,Arial,sans-serif;
  font-weight: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

input[type='text'], textarea, select, button, input[type='email'] {
  font-family: Poppins-Regular,system-ui,-apple-system,Arial,sans-serif;
  font-size: 16px !important;
  outline:none;
  border-radius: 0px;
}

* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

*, *::before, *::after {
  box-sizing: inherit;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

html{font-size:16px;}

/* @media (max-width: 880px) {
  html { font-size: 15px; }
}

@media (max-width: 400px) {
  html { font-size: 14px; }
} */

html, body {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

a:link{text-decoration: none;}

li, p {
  max-width: 75ch;
}

p{
  line-height: 180%;
}

:root {
    --white-bg: #fbfbfb;
    --blue-awg: #53a6d7;
    --blue-awg-hover: #3495cd;
    --blue-text: #0e4c83;
    --black: #000;
    --error: #e54c69;
    --maroon: #981212;
}

@font-face {
  font-family: Poppins-Regular;
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  src: url(../font/Poppins-Regular.woff2) format('woff2');
}

@font-face {
  font-family: Poppins-Medium;
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  src: url(../font/Poppins-Medium.woff2) format('woff2');
}

@font-face {
  font-family: Newake;
  font-weight: normal;
  font-style: normal;
  font-display: auto;
  src: url(../font/Newake.woff2) format('woff2');
}

a {
  color: #000000bf;
}
  
  /* Header */
  
.header {
  padding: 26px 18px 20px 18px;
  /* max-width: 1200px; */
  height: 50px;
  margin: 0 auto;
  /* border-bottom: 5px solid var(--blue-awg); */
  /* box-shadow: 0px 6px 12px rgb(27 27 29 / 15%); */
}

.header-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.header .logo img {
  width: 160px;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: var(--white-bg);
}

.header li {
  max-width: unset;
}

.header li a {
  padding: 15px 0px;
  margin: 0px 20px;
  display: block;
  text-decoration: none;
  transition: 0.25s;
}


.header li a:hover,
.header .menu-btn:hover {
  /* background-color: var(--blue-awg); */
  color: var(--blue-awg-hover);
}

.header .logo {
  display: block;
  float: left;
  text-decoration: none;
  padding: 0 10px;
}

/* Menu */

.header .menu {
  z-index: 1;
  position: relative;
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

.header .menu-icon {
  cursor: pointer;
  display: block;
  float: right;
  padding: 28px 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.header .menu-icon .navicon {
  background: var(--blue-awg);
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: var(--blue-awg);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 330px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.menu-btn-contact{
  background-color: var(--blue-awg);
  border-radius: 4px;
  color: #ffffff;
  margin-left: 20px;
  padding:15px 15px !important;
  text-align: center;
}

.menu-btn-contact:hover{
  color: #ffffff !important;
  background-color: #3495cd;
}

.hero-banner-wrapper {
  width:100%;
  height: 45vw;
  overflow: hidden;
  position: relative;
  /* background: rgb(115,192,237);
  background: -moz-radial-gradient(circle, rgba(115,192,237,1) 0%, rgba(83,166,215,1) 100%);
  background: -webkit-radial-gradient(circle, rgba(115,192,237,1) 0%, rgba(83,166,215,1) 100%);
  background: radial-gradient(circle, rgba(115,192,237,1) 0%, rgba(83,166,215,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#73c0ed",endColorstr="#53a6d7",GradientType=1); */

  /* background: rgb(115,192,237);
  background: linear-gradient(90deg, rgba(115,192,237,1) 50%, rgba(83,166,215,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#73c0ed",endColorstr="#53a6d7",GradientType=1); */

  background-image: url(../images/landing-hero-bg.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position-y: 0;
}

.hero-banner-wrapper .overlay-bg{
  background-image: url(../images/plant.png);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position-x: 62vw;
  background-position-y: 15vw;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
}

.hero-banner-wrapper .image-container, .hero-banner-wrapper .video-container{
  width: 100%;
  height: 41vw;
  position: absolute;
  bottom: 0;
}

.hero-banner-wrapper img {
  width: auto;
  height: 41vw;
}

.hero-banner-wrapper .video-container{
  perspective: 220vw;
}

.click-to-play-product-video {
  background-image: url(../images/icon/click-to-play-btn.svg);
  width: 7vw;
  height: 7vw;
  max-width: 70px;
  max-height: 70px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 38.3%;
  left: 36vw;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  z-index: 999;
  cursor: pointer;
  /* transform: rotateY(36deg) skew(7deg, -6deg); */
}

.click-to-play-product-video:hover {
  opacity: 1;
}

.video-container video {
  -o-object-fit: cover;
     object-fit: cover;
     width: 14.2vw;
     height: 8.7vw;
     margin-left: 28.8vw;
     margin-top: 11.2vw;
  position: absolute;
  /* transform: rotateY(36deg) skew(7deg, -6deg); */
}

.popup-sub {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  overflow-x: hidden;
  background-color: #00121cc2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-sub .container{
  display: block;
  margin: 20px;
  width: calc(100% - 120px);
  max-width: 530px;
  min-height: 375px;
  /* background-color: var(--blue-awg); */
  background-color: #181818;
  padding: 40px;
  border-radius: 8px;
  position: relative;
}

.popup-sub .header-text {
  color: white;
  font-size: 14px;
  padding-top: 20px;
}

.popup-sub .welcome-msg {
  color: white;
  font-size: 32px;
  line-height: 42px;
  padding-right: 40px;
  padding-top: 20px;
}

.popup-sub .email {
  padding-top: 20px;
}

.popup-sub .input-email-sub{
  min-width: 300px;
  height: 28px;
  text-align: left;
  border: 1px solid rgb(99 99 99 / 18%);
  padding: 10px 22px;
  letter-spacing: 1px;
  color: #636363;
  -webkit-appearance: none;
}

.popup-sub .submit-button {
  padding-top: 20px;
}

.popup-sub .submit-button button{
  padding: 12px 52px;
  font-size: 1.25rem !important;
  cursor: pointer;
  background: var(--blue-awg);
  border: none;
  border-bottom: 2px solid transparent;
  color: #ffffff;
  position: relative;
}

.popup-sub .submit-button button:hover::after{
  content: "";
  position: absolute;
  width: 100%;
  background: white;
  height: 2px;
  bottom: 4px;
  left: 0px;
}

.popup-sub .container img {
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 20px;
  cursor: pointer;
  filter: invert(1);
  -webkit-filter: invert(1);
}

.popup-sub .container img:hover {
  filter: invert(0.5);
  -webkit-filter: invert(0.5);
}

.popup-sub .no-thanks{
  margin-top: 15px;
}

.popup-sub .no-thanks span{
  color: #2568a3;
  text-decoration: underline;
  cursor: pointer;
}

#email-error{
  display: none;
  color: #e51414;
  font-size: 12px;
  padding-top: 5px;
}

.text-shaking{
  -webkit-animation: horizontal-shaking 0.35s;
          animation: horizontal-shaking 0.35s;
}

@-webkit-keyframes horizontal-shaking {
  0% { transform: translateX(0) }
  25% { transform: translateX(5px) }
  50% { transform: translateX(-5px) }
  75% { transform: translateX(5px) }
  100% { transform: translateX(0) }
 }

@keyframes horizontal-shaking {
  0% { transform: translateX(0) }
  25% { transform: translateX(5px) }
  50% { transform: translateX(-5px) }
  75% { transform: translateX(5px) }
  100% { transform: translateX(0) }
 }

#done-sign-up{
  display: none;
  color: white;
  font-size: 32px;
  line-height: 42px;
  padding-right: 40px;
  padding-top: 20px;
}

#done-sign-up .ok-button{
  padding: 4px 0px;
  font-size: 1.25rem !important;
  cursor: pointer;
  background: #00b75a;
  color: #ffffff;
  margin-top: 20px;
  width: 130px;
  text-align: center;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  display: flex !important;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0;
  z-index: 99999;
  transition: 1s all;
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  -ms-transition: 1s all;
  -o-transition: 1s all;
}

.popup.active {
  visibility: visible;
  opacity: 1;
}

.popup video {
  width: 100%;
  max-width: 1000px;
  outline: none;
  position: relative;
}

.popup .close {
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 20px;
  cursor: pointer;
  filter: invert(1);
  -webkit-filter: invert(1);
}

.hero-banner-wrapper .title-container{
  position: absolute;
  right: 12vw;
  top: 30%;
  line-height: 4vw;
}

.hero-banner-wrapper .title-container h1{
  font-family: Newake;
  font-size: 4vw;
  color: white;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.hero-banner-wrapper .title-container h1:nth-child(2){
  margin-bottom: 0.6rem;
}

.hero-banner-wrapper .title-container p{
    font-size: 1.8vw;
    max-width: 30vw;
    line-height: 2.6vw;
    color: white;
    padding-top: 8px;
}

/** Home Page Start **/

.main-wrapper{
  margin: 0 auto;
  max-width: 1200px;
}

.main-desc-wrap{
  padding: 50px 20px;
  text-align: center;
}

.main-desc-wrap .logo img{
    width: 320px;
}

/* Topic Start */
.topic-title{
  text-align: center;
  padding: 20px;
  margin-top: 80px;
}

.topic-title h1{
  line-height: 125%;
}

.topic-title span:first-child{
  font-size: 42px; 
}

.topic-title span:last-child{
  color: var(--blue-awg);
}

.topic-container{
  max-width: 1200px;
  margin:0 auto;
  margin-top: 50px;
}

.topic-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 20px;
}

.topic-wrapper .pic-wrap img{
  min-width: 200px;
  width: 100%;
  height: 100%;
}

.topic-wrapper .info-wrap{
  padding-top: 50px;
}

.topic-wrapper .info-wrap .title{
  font-size: 1.85rem;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: flex-start;
  line-height: 125%;
  margin-bottom: 18px;
}

.topic-wrapper .info-wrap .title label {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background: red;
  text-align: center;
  background-color: #b2e3ff;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
}

/* .topic-wrapper .info-wrap .title::before{
  content: "1";
  width: 35px;
  height: 35px;
  position: absolute;
  background-color: #b2e3ff;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 35px;
  left: -50px;
  border-radius: 50%;
  font-family: cursive;
} */

.topic-wrapper .info-wrap .desc{
  font-size: 18px;
  max-width: 36ch;
  padding-left: 40px;
}

/* Topic End */

/* Brand Slider Start */
.brand-container{
  background-color: #ffffff;
  margin-top: 100px;
  padding-top: 50px;
  padding-bottom: 100px;
  border-top: 2px solid #f5f5f5;
}

.brand-slider-desc{
  padding: 0px 20px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.brand-slider {
  height: 75pt;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  touch-action: none;
  max-width: 1200px;
}

.brand-slider:before {
  left: 0;
  top: 0;
}

.brand-slider:after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.brand-slider:after,
.brand-slider:before {
  background: linear-gradient(to right,#ffffff 0%,hsla(0, 0%, 100%, 0) 100%);
  content: "";
  height: 75pt;
  position: absolute;
  width: 10vw;
  z-index: 2;
}

.brand-slider .slide-track-1 {
  -webkit-animation: scroll-l 25s linear infinite;
          animation: scroll-l 25s linear infinite;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  display: flex;
  width: 2640px;
}

.brand-slider .slide {
  height: 75pt;
  width: 220px;
  display: flex;
  align-items: center;
  text-align: center;
}

.brand-slider .slide .client-img {
  width: 150px;
  padding: 1pc;
  vertical-align: middle;
  margin: 0 auto;
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out;
  -webkit-user-drag: none;
}

.brand-slider .slide .client-img:hover {
  transform: scale(1.1, 1.1);
}

@-webkit-keyframes scroll-l {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-220px * 6));
  }
}

@keyframes scroll-l {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-220px * 6));
  }
}
@-webkit-keyframes scroll-r {
  100% {
      transform: translateX(0);
  }
  0% {
      transform: translateX(calc(-220px * 6));
  }
}
@keyframes scroll-r {
  100% {
      transform: translateX(0);
  }
  0% {
      transform: translateX(calc(-220px * 6));
  }
}

/* .slide-track-1:has(> .slide:hover){
	-webkit-animation-play-state: paused;
} */

.slide img:hover{
	transform: scale(1.1, 1.1);
  cursor: pointer;
}
/* Brand Slider End */

.bottom-container {
  background-color: white;
  padding-bottom: 50px;
}

.bottom-container .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 10px 20px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  background: #b8e1ff;
  margin-bottom: 100px;
}

.bottom-container .wrapper-1{
  width: 50%;
  max-width: 580px;
  min-width: 260px;
}

.bottom-container .wrapper-1 img{
  width: 100%;
  border-radius: 16px;
}

.bottom-container .wrapper-2 {
  padding: 40px;
}

.bottom-container .wrapper-2 h3{
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 125%;
}

.bottom-container .wrapper-2 h4{
  color: #00008b;
}

.bottom-container .wrapper-2 p{
  max-width: 49ch;
}

.bottom-container .wrapper-2 .cta-button{
  width: 150px;
  padding: 10px 20px;
  background: #00008b;
  border-radius: 30px;
  text-align: center;
  margin-top: 30px;
  color: white;
}

.bottom-container .wrapper-2 .cta-button:hover::after{
  content: ">";
  padding-left: 10px;
}

/** Home Page End **/

/** About Us Start **/
.hero-banner-about-us {
  height: 45vw;
  background-color: var(--blue-awg);
  background-image: url(../images/about-us-Activworld-Group-Sdn-Bhd.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero-banner-about-us .overlay {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  position: absolute;
  background-color: #08233261;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-banner-about-us .title{
  font-size: 58px;
  color: white;
  font-family: Newake;
}

.hero-banner-about-us .desc{
  font-size: 22px;
  color: white;
  max-width: 50ch;
}

.main-wrapper.what-we-do{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}

.what-we-do-wrap{
  padding: 20px;
}

.what-we-do-wrap .title{
  font-size: 1.85rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.what-we-do-wrap p{
  line-height: 180%;
}

.what-we-do-image-wrap{
  padding: 20px;
}

.what-we-do-image-wrap .group-1{
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 10px;
}

.what-we-do-image-wrap .group-1 img{
  width:100%;
  height:100%;
  border-top-left-radius: 16px;
}

.what-we-do-image-wrap .group-2 img{
  width: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.paper-clip-wrap{
  position: absolute;
  bottom: -91px;
  right: 10%;
}

.paper-clip-wrap img{
  width: 60px;
}

.main-wrapper.all-you-need {
  max-width: 1000px;
  padding: 20px;
  display: grid;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 150px;
  border-radius: 16px;
  /* box-shadow: 0px 2px 8px 1px #00000014; */
}

.all-you-need img {
  width: 100%;
  max-width: 800px;
  margin-bottom: 30px;
  border-radius: 16px;
}

.main-wrapper.all-you-need ul{
  padding-left: 20px;
  padding-top: 10px;
  list-style: auto;
}

.main-wrapper.all-you-need ul li{
  /* background: linear-gradient(90deg, #e7e7e7, transparent); */
  margin-top: 12px;
  padding: 6px 16px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

/** About Us End **/


/** Contact Page Start **/
.contact-banner-wrapper{
  height: 400px;
  background: url(../images/contact-us.jpg);
  background-size: cover;
  background-position: 60%;
  background-repeat: no-repeat;
}

.contact-banner-wrapper h1{
  font-size: 46px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.contact-title{
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-title svg{
  width: 36px;
  height: 36px;
}

.contact-title a{
  padding-left: 10px;
  color: #ffffff !important;
  position: relative;
}

.contact-title a:hover::after{
  content: "";
  bottom: 10px;
  left: 5px;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
}

.contact-title {
  color: #ffffff;
}

/* .contact-title h1::before, .contact-title h1::after{
  content: "-";
  font-size: 35px;
  padding: 6px;
} */

.contact-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px;
  background-color: #e0e8f1;
  margin: 100px 0px;
}

.contact-location{
  height: 500px;
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgb(182 101 252 / 7%);
}

.contact-location .content{
  padding-top: 4vw;
  padding-left: 4vw;
  color: var(--blue-text);
}

.contact-location .content h1 {
  position: relative;
  width: 100%;
  font-size: 32px;
}

.contact-location .content h1::after {
  content: '';
  position: absolute;
  width: 53px;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: var(--blue-awg);
}

.contact-container .content p.company-name{
  position: relative;
  width: 210px;
}

/* .contact-container .content p.company-name::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #0e4c83;
} */

.contact-location .content p.address {
  padding:10px 0px;
}

.contact-location .content a:hover > svg{
  transform: translateX(10px);
  transition: 1s;
}

.contact-map{
  height: 500px;
  background: var(--blue-awg);
  box-shadow: 0px 0px 20px 0px rgb(182 101 252 / 7%);
}

.google-map{
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-us{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
}

.contact-us .title{
  color: var(--blue-text);
  font-size: 32px;
  font-weight: bold;
  position: relative;
}

.contact-us .title::after {
  content: '';
  position: absolute;
  width: 53px;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: var(--blue-awg);
}

.contact-us .form-brief{
  max-width: 68ch;
  color: #959595;
  margin-top: 20px;
}

.form-control.has-error {
  border: 2px solid #e10808 !important;
}

.help-block{
  display: none;
  color: var(--error);
  text-align: right;
  padding-right: 8px;
}

.help-block.robot{
  text-align: center !important;
}

.contact-us .contact-us{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #e3e3e3;
}

.contact-us form{
  margin: 20px 0px 20px 0px;
}

.contact-us form .group-1{
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.contact-us form .group-2{
  width: 662px;
}

.contact-us form #company, .contact-us form #address, .contact-us form #subject, .contact-us form #message{
  width: calc(100% - 46px);
}

.contact-us form #message{
  resize:vertical;
  height: 300px;
}

.contact-us .form-group{
  margin-bottom: 1rem;
}

.contact-us .form-control{
  /* width: calc(100% - 44px); */
  /* width: 90%; */
  min-width: 280px;
  height: 28px;
  text-align: left;
  border: 1px solid rgb(99 99 99 / 18%);
  padding: 10px 22px;
  letter-spacing: 1px;
  color: #636363;
  -webkit-appearance: none;
}

.contact-us form select{
  background: url(../images/icon/drop-down-btn.svg), #fff;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: right;
}

.g-recaptcha div{
  margin-left: auto;
  margin-right: auto;
}


.btn-submit-enquiries{
  font-size: 1.25rem !important;
  padding: 1.25rem 7rem;
  cursor: pointer;
  background: var(--blue-awg);
  border: none;
  border-bottom: 2px solid transparent;
  color: #ffffff;
  position: relative;
}

.btn-submit-enquiries:hover::after{
  content: "";
  position: absolute;
  width: 100%;
  background: #fbfbfb;
  height: 2px;
  bottom: 4px;
  left: 0px;
}

#contact-form{
  padding: 36px 19px 40px 19px;
}
/** Contact Page End **/

/** Footer Start **/
footer{
  width: 100%;
}

.footer-wrap{
  margin: 0 auto;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.footer-info{
  padding: 50px 20px 20px 20px;
}

.social-icon-wrap{
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
  justify-items: center;
  margin: 0 auto;
}

.social-icon-wrap div {
  width: 35px;
  height: 35px;
  background-size: 35px 35px;
  background-repeat: no-repeat;
  text-shadow: 0px 2px 5px #000000;
  border: 1px solid white;
  border-radius: 50%;
  padding: 3px;
}

.social-icon-wrap .fb {
  background-image: url(../images/icon/facebook.svg);
  background-position: center;
}

.social-icon-wrap .shopee {
  background-image: url(../images/icon/shopee.svg);
  background-position: center;
}

.social-icon-wrap .twitter {
  background-image: url(../images/icon/twitter.svg);
  background-position: center;
}

.footer-menu-wrap{
  margin-top:20px;
}

.footer-menu {
  display: flex;
  list-style: none;
  justify-content: center;
}

.footer-menu li {
  height: 1rem;
  line-height: 1rem;
  border-right: 2px solid #ffffff;
}

.footer-menu li:last-child {
  border-right: 0;
}

.footer-menu li a {
  color: #ffffff;
  margin: 0px 10px;
  /* text-shadow: 0px 2px 5px #00000045; */
}

.footer-menu li a:hover {
  color: #282828;
}

.footer-hotline-wrap{
  padding: 20px;
  text-align: center;
  color: #ffffff;
  /* text-shadow: 0px 2px 5px #00000045; */
}

.footer-hotline-wrap a{
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 1px;
  /* text-shadow: 0px 2px 5px #00000045; */
}

.footer-award-wrap {
  display: flex;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 20px;
}

.footer-award-wrap img{
  width: 150px;
  height: auto;
  border-radius: 4px;
}

.footer-copyright{
  font-size: 0.8rem;
  background-color: #282828;
  padding: 20px;
  min-height: 18px;
  text-align: center;
  color: #b3b3b3;
}
/** Footer End **/

/** Why-Us Start **/

.why-us-banner-wrapper{
  height: 400px;
  background: url(../images/contact-us.jpg);
  background-size: cover;
  background-position: 60%;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.key-wrapper{
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 20px;
}

.key-wrapper.col1{
  grid-template-columns: 1fr;
}

.key-wrapper.col2{
  grid-template-columns: 1fr 1fr;
}

.key-wrapper.col3{
  grid-template-columns: 1fr 1fr 1fr;
}

.each-key-wrap{
  display: grid;
  row-gap: 20px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  text-align: center;
  justify-items: center;
}

.key-icon{
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.key-icon img{
  width: 100%;
  height: 100%;
}

.key-title{
  font-size: 1.25rem;
  color: var(--blue-awg);
  font-weight: bold;
}

.key-desc p{
  min-height: 145px;
  max-width: 38ch;
  font-size: 16px;
}

/* Comparison Slider */
.compare-slider {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px;
  /* background-color: #eee; */
  margin-bottom: 30px;
}

.comparison-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 20px 0;
  background-color: #fbfbfb;
}
.comparison-slider-wrapper .comparison-slider {
  position: relative;
  width: 100%;
  margin: 0;
  /* border: 5px white solid; */
  box-sizing: border-box;
}
.comparison-slider-wrapper .comparison-slider > img {
  width: 100%;
  height: auto;
  display: block;
}
.comparison-slider-wrapper .comparison-slider .overlay {
  display: none;
  position: absolute;
  width: 210px;
  bottom: 20px;
  right: 20px;
  /* background-color: rgba(0, 0, 0, 0.4); */
  padding: 10px;
  box-sizing: border-box;
  color: white;
  text-align: right;
}
@media screen and (min-width: 680px) {
  .comparison-slider-wrapper .comparison-slider .overlay {
    display: block;
 }
}
.comparison-slider-wrapper .comparison-slider .resize {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 43%; /* adjust here */
  overflow: hidden;
}
.comparison-slider-wrapper .comparison-slider .resize > img {
  display: block;
}
.comparison-slider-wrapper .comparison-slider .resize .overlay {
  right: auto;
  left: 20px;
  text-align: left;
}
.comparison-slider-wrapper .comparison-slider .divider {
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: rgba(256, 256, 256, 0.2);
  left: 43%; /* adjust here*/
  top: 0;
  bottom: 0;
  margin-left: -1px;
  cursor: ew-resize;
}
.comparison-slider-wrapper .comparison-slider .divider:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: -14px;
  top: 50%;
  margin-top: -10px;
  background-color: white;
  transform: rotate(45deg);
  transition: all 0.1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: -10px;
  top: 50%;
  margin-top: -6px;
  background-color: var(--blue-awg);
  transform: rotate(45deg);
  transition: all 0.1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:before {
  width: 30px;
  height: 30px;
  left: -14px;
  margin-top: -15px;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:after {
  width: 20px;
  height: 20px;
  left: -9px;
  margin-top: -10px;
  background-color: var(--blue-awg);
}

.comparison-slider-wrapper .title {
  padding: 20px;
}

.comparison-slider-wrapper .title h1 {
  text-align: center;
  line-height: 38px;
}

.comparison-slider-wrapper .title span {
  color: var(--blue-awg);
}

.comparison-slider-wrapper .caption {
  position: relative;
  width: 100%;
  padding: 10px;
  padding-bottom: 100px;
  box-sizing: border-box;
  font-size: 16px;
  max-width: 88ch;
  text-align: center;
  margin: 0 auto;
}

/** Why-Us End **/

/** Promotions Start **/
.main-wrapper.promotions{
  min-height: 100%;
	max-width: 100%;
  padding-bottom: 100px;
  background-color: #2c3181;
  /* background: rgb(37,37,135); */
  /* background: linear-gradient(90deg, rgba(37,37,135,1) 0%, rgba(92,17,139,1) 100%); */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#252587",endColorstr="#5c118b",GradientType=1);
}
.promotions .memphis{
  background: url(../images/icon/memphis-1.svg);
  width: 320px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  float: right;
}
.promotions .title{
  width: 320px;
  position: absolute;
  color: white;
  font-family: Newake;
  right: 0;
  text-align: right;
  padding: 30px;
  font-size: 40px;
}

.promotions .title-2{
  width: 320px;
  position: absolute;
  color: white;
  right: 0;
  text-align: right;
  padding: 60px 36px 30px 30px;
  font-size: 16px;
}

.promotions .awg-logo{
  text-align: center;
  margin-top: 30px;
}

.promotions .awg-logo img{
  max-width: 380px;
  width: 100%;
}

.promotions .deals-wrap{
  /* padding: 40px; */
  padding: 20px 40px 100px 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.promotions .deals-title{ /* promotion title */
  font-family: Newake;
  letter-spacing: 1px;
  color: #fff;
  font-size: 38px;
  text-align: center;
  font-style: italic;
  padding: 20px;
}

.promotions .deals-wrap p{ /* promotion description */
  color: white;
  /* font-size: 24px; */
  font-size: 20px;
  white-space: pre-line;
}

.promotions .deals-wrap label{ /* promotion period */
  font-size: 16px;
  color: #c5c8fb;
}

.promotions .deals-wrap p span{
  color: #ffeb00;
  font-size: 36px;
}

.promotions .deals-wrap p label{
  font-size: 36px;
}

.promotions .deals-image-wrap.first {
  border-top: 0 !important;
}

.promotions .deals-image-wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  padding-top: 60px;
  margin-bottom: 10px;
  border-top: 1px solid #50a3d4;
}

.promotions .deals-image-wrap img{
  max-width: 1200px;
  width: 100%;
}

.action-btn-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  border-top: 1px solid #50a3d4;
  padding-top: 60px;
}

.action-btn-wrapper img:hover{
  box-shadow: 0px 5px #360e56;
}

.action-btn-wrapper img{
  width: 100%;
  max-width: 480px;
}

.cta {
    display: flex;
    padding: 10px 20px 10px 32px;
    text-decoration: none;
    font-size: 22px;
    color: white;
    background: #6225E6;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
}

.cta:focus {
   outline: none; 
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #FBC638;
}

.cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.cta:hover  span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}

.cta span {
  transform: skewX(15deg);
  line-height: 43px;
  white-space: nowrap;
}

.cta span:nth-child(2) {
  width: 20px;
  margin-left: 13px;
  position: relative;
  top: 12%;
}
  
/**************SVG****************/

.cta path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

.cta path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta:hover path.three {
    -webkit-animation: color_anim 1s infinite 0.2s;
            animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
    transform: translateX(0%);
    -webkit-animation: color_anim 1s infinite 0.6s;
            animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
    transform: translateX(0%);
    -webkit-animation: color_anim 1s infinite 0.4s;
            animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@-webkit-keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #FBC638;
    }
    100% {
        fill: white;
    }
}

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #FBC638;
    }
    100% {
        fill: white;
    }
}
/** Promotions End **/

/** News & Events Start **/
.hero-banner-news-events{
  max-width: 1200px;
  margin:0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-banner-news-events .title{
  font-size: 48px;
  font-family: Newake;
  color: var(--blue-awg);
}

.hero-banner-news-events .desc p{
  font-size: 18px;
}

.news-events-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  align-items: start;
  padding: 40px;
}

.news-events-wrap .cover-image{
  position: relative;
}

.news-events-wrap .cover-image img{
  width: 100%;
}

.news-events-wrap .time{
  background-color: #eb0000;
  color: #fff;
  max-width: 100px;
  min-width: 70px;
  padding: 16px 6px;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 12px;
}

.news-events-wrap .date{
  font-size: 38px;
  font-weight: bold;
  line-height: 38px;
  letter-spacing: -1px;
}

.news-events-wrap .date label{
  padding-left: 2px;
  font-size: 14px;
  vertical-align: top;
  letter-spacing: 1px;
}

.news-events-wrap .wrap2{
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 4px;
  font-size: 14px;
  border-top: 1px solid #ffc9c9;
  padding-top: 3px;
}

.news-events-wrap .title{
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.news-events-wrap .desc p{
  white-space: pre-line;
}
/** News & Events End **/

/* Wide Screen */
  
@media (min-width: 1061px) {
  .header li {
    float: left;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

@media (min-width: 1200px) {
  .click-to-play-product-video {
    top: 38.3%;
    left: 36vw;
  }
}

@media (max-width: 1200px) {
  .contact-container{
    margin: 0;
    padding: 80px 40px;
  }

  .key-desc p{
    min-height: 200px;
  }

  .topic-wrapper .info-wrap .desc{
    font-size: 16px;
  }

  .main-wrapper.all-you-need{
    margin: 0px 20px 50px 20px;
  }
}

@media (max-width: 1060px) {
  .header .menu {
    box-shadow: 0px 5px 5px rgb(27 27 29 / 15%);
  }

  .header .menu li:last-child {
    margin-bottom: 25px;
  }

  .header .menu li:last-child{
    background-color: var(--blue-awg);
  }

  .menu-btn-contact{
    padding: 15px 0px !important;
    text-align: left;
  }

  .header li a:hover, .header .menu-btn:hover{
    background-color: unset;
  }

  .hero-banner-wrapper .title-container{
    line-height: 4.5vw;
  }

  .hero-banner-wrapper .title-container p{
    font-size: 18px;
    max-width: 33vw;
    line-height: 3vw;
  }

  .contact-container{
    grid-template-columns: 1fr;
  }

  .contact-location .content{
    padding: 30px;
  }

  .contact-location{
    height: 490px;
  }

  .key-wrapper.col3{
    grid-template-columns: 1fr 1fr;
  }

  .key-desc p{
    min-height: 170px;
  }

  .topic-title span:first-child {
    font-size: 34px;
  }

  .topic-wrapper .info-wrap .title{
    font-size: 1.5rem;
  }

  .hero-banner-about-us {
    height: 54vw;
  }

  .hero-banner-about-us .title{
    font-size: 48px;
  }

  .news-events-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width:725px){
  .bottom-container {
    padding: 20px;
  }

  .bottom-container .content{
    flex-direction: column;
  }

  .contact-us form{
      width: 100%;
  }

  .contact-us form .group-1{
      grid-template-columns: 1fr;
      width: 100%;
  }

  .contact-us form .group-2{
      width: auto;
      width: 100%;
  }

  .contact-us .form-control{
      width: calc(100% - 46px) !important;
      min-width: unset;
  }

  .topic-title span:first-child {
    font-size: 30px;
  }

  .topic-title h1{
    font-size: 26px;
  }

  .main-wrapper.what-we-do{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .footer-wrap{
    background-position: 20%;
  }

  .social-icon-wrap{
    margin: unset;
    padding-left: 10px;
  }

  .footer-menu {
    flex-direction: column;
    row-gap: 15px;
  }

  .footer-menu li{
    border-right: 0;
  }

  .footer-menu li a{
    font-size: 0.85rem;
  }

  .footer-hotline-wrap{
    padding: 10px;
    text-align: left;
  }

  .footer-award-wrap{
    justify-content: flex-start;
    margin-top: 0;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }

  .footer-award-wrap img{
    width: 120px;
  }
}

@media (max-width: 660px) {
  .hero-banner-wrapper{
    height: 85vw;
  }

  .hero-banner-wrapper .overlay-bg{
    height: 85vw;
    background-position-x: 63vw;
    background-position-y: 55vw;
  }

  .hero-banner-wrapper .title-container{
    left: 5vw;
    top: 8%;
    line-height: 7vw;
  }

  .hero-banner-wrapper .title-container h1{
    font-size: 44px;
    line-height: 45px;
  }

  .hero-banner-wrapper .title-container p{
    font-size: 22px;
    max-width: 57vw;
    line-height: 28px;
  }

  .brand-slider .slide .client-img{
    width: 130px;
  }

  .key-desc p{
    min-height: 200px;
  }

  .topic-wrapper{
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .topic-wrapper.odd {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media (max-width: 580px) {
  .hero-banner-wrapper .title-container h1 {
    font-size: 40px;
    line-height: 45px;
}

  .hero-banner-wrapper .title-container p{
    font-size: 20px;
    max-width: 60vw;
    line-height: 26px;
  }

  .contact-banner-wrapper h1{
    font-size: 32px;
  }

  .contact-title svg{
    width: 24px;
    height: 24px;
  }

  .contact-title a:hover::after{
    bottom: 5px;
  }
  /* .contact-title h1::before, .contact-title h1::after{
    font-size: 21px;
  } */

  .key-wrapper {
    padding:0px 20px;
  }
  
  .key-wrapper.col2, .key-wrapper.col3{
    grid-template-columns: 1fr;
  }

  .key-desc p{
    min-height: unset;
    padding-bottom: 50px;
  }

  .topic-wrapper .info-wrap{
    padding-top: 10px;
    width: calc(100% - 40px);
  }

  .hero-banner-about-us {
    height: 70vw;
  }

  .hero-banner-about-us .title{
    font-size: 42px;
  }

  .hero-banner-about-us .desc{
    font-size: 16px;
  }

  .promotions .awg-logo{
    padding-left: 40px;
    text-align: left;
  }

  .promotions .awg-logo img{
    max-width: 230px;
  }

  /* .promotions .deals-wrap{
    text-align: left;
  } */
}

@media (max-height: 480px) {
  .popup-sub{
    align-items: flex-start;
  }

  .popup video{
    width: 100vh;
  }
}

@media (max-width: 480px) {
  .popup-sub .input-email-sub{
    width: calc(100% - 40px);
    min-width: unset;
  }

  .popup-sub .welcome-msg{
    font-size: 26px;
    line-height: 38px;
    padding-right: 10px;
  }

  .hero-banner-wrapper .title-container h1{
    font-size: 30px;
    line-height: 35px;
  }

  .hero-banner-wrapper .title-container p{
    font-size: 16px;
    max-width: 85%;
    line-height: 1.25rem;
  }

  .bottom-container .wrapper-2 {
    padding: 20px;
  }

  .contact-container{
    padding: 10px;
  }

  .compare-slider{
    background-color: #fbfbfb;
  }

  .topic-container{
    margin-top: 0;
  }
  
  .topic-title span:first-child {
    font-size: 28px;
  }

  .topic-title h1{
    font-size: 24px;
  }

  .topic-wrapper .pic-wrap img{
    width: 90%;
    height: 90%;
  }

  .topic-wrapper .info-wrap .title {
    font-size: 1.25rem;
    letter-spacing: -0.5px;
  }

  .topic-wrapper .info-wrap .desc{
    font-size: 14px;
  }

  .comparison-slider-wrapper .caption{
    font-size: 14px;
    padding-bottom: 0;
  }

  .key-desc p {
    font-size: 14px;
  }

  .main-wrapper.what-we-do p, .main-wrapper.all-you-need p{
    font-size: 14px;
  }

  .main-wrapper.all-you-need ul li{
    font-size: 14px;
  }

  .promotions .deals-wrap{
    /* padding: 20px; */
    padding: 20px 20px 100px 20px;
  }
  
  .promotions .deals-wrap p{
    font-size: 18px;
  }

  .promotions .deals-wrap p span, .promotions .deals-wrap p label{
    font-size: 30px;
  }

  .promotions .awg-logo{
    padding-left: 20px;
  }

  .g-recaptcha {
    transform: scale(0.87);
    transform-origin: 0 0;
    width: 100%;
    position: absolute;
  }

  .btn-submit-enquiries {
    padding: 1.25rem 6rem;
    margin-top: 85px;
  }

  .news-events-wrap{
    padding: 40px 20px;
  }
}

@media (max-width: 380px) {
  .hero-banner-wrapper{
    height: 100vw;
  }

  .hero-banner-wrapper .overlay-bg{
    height: 100vw;
    background-position-y: 70vw;
  }

  .hero-banner-wrapper .title-container h1{
    font-size: 24px;
    line-height: 32px;
  }

  .footer-award-wrap{
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  
  .footer-hotline-wrap{
    display: flex;
    flex-direction: column-reverse;
  }

  .contact-map{
    height: 400px;
  }

  .contact-us .form-control{
    width: calc(100% - 44px);
  }

  .hero-banner-about-us {
    height: 75vw;
  }

  .hero-banner-about-us .title{
    font-size: 36px;
  }

  .hero-banner-about-us .desc{
    font-size: 16px;
  }
}