@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif;
}

:root {
  --yellow: #fed532;
  --yellow20: #fadd67cc;
  --white: #fff;
  --black: #333;
  --dark: #000;
  --black90: #383838;
  --black80: #5f5d5d;
  --black20: #f5f5f5;
  --black60: #8e8d8db3;
  --blue: #283df8;
  --blue20: #4274fc;
}

.visible-block {
  display: block;
}

.visible-flex {
  display: flex;
}

.hide {
  display: none;
}

.mirror-vertical {
  transform: scaleX(-1);
}

.container {
  width: 100%;
  height: auto;
  padding: 5rem 10vw;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 499;
}

.clip-path {
  background-color: var(--black20);
  clip-path: polygon(0 0, 0 92%, 100% 100%, 100% 8%);
}

.clip-path-reverse {
  background-color: var(--black20);
  clip-path: polygon(0 8%, 0 100%, 100% 92%, 100% 0%);
}

.h1_heading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.h1_heading h2 {
  font-size: 2.5em;
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 1vh;
  position: relative;
  text-align: center;
}
.h1_heading h2::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 3px;
  background-color: var(--yellow);
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}

p {
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 400;
  text-align: justify;
  line-height: 2rem;
}

p span {
  color: var(--yellow);
  font-weight: bold;
  font-size: 1.3em;
}

.poster_reverse {
  flex-direction: row-reverse;
}

@media (max-width: 550px) {
  .h1_heading h2 {
    font-size: 1.8em;
  }
  .clip-path {
    clip-path: polygon(0 0, 0 97%, 100% 100%, 100% 3%);
  }
  .clip-path-reverse {
    clip-path: polygon(0 3%, 0 100%, 100% 97%, 100% 0%);
  }
}
.top-container {
  width: 100%;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(8px 3px 5px rgba(0, 0, 0, 0.5));
  z-index: 50;
}

#social-clip {
  width: 100%;
  height: 100%;
  background-color: #fff;
  clip-path: url(#top-clip-path);
  display: flex;
  align-items: center;
  justify-content: end;
}
#social-clip a {
  display: block;
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
}
#social-clip a:first-child {
  width: auto;
  margin-right: 30px;
  text-decoration: none;
  color: var(--black);
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
}
#social-clip a:first-child:hover {
  color: var(--yellow);
}
#social-clip a:last-child {
  margin-right: 8vw;
}
#social-clip a:nth-child(2) {
  border-left: 1px solid #ccc;
}
#social-clip a img {
  width: auto;
  height: 65%;
  -webkit-filter: grayscale(1) contrast(0) brightness(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(1) contrast(0) brightness(0);
}
#social-clip a:hover img {
  -webkit-filter: grayscale(0) contrast(1) brightness(1);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0) contrast(1) brightness(1);
}

@media (max-width: 1024px) {
  #social-clip a {
    width: 35px;
  }
  #social-clip a:last-child {
    margin-right: 25px;
  }
}
@media (max-width: 850px) {
  #social-clip a {
    width: 25px;
  }
  #social-clip a:last-child {
    margin-right: 15px;
  }
  #social-clip a img {
    height: 50%;
  }
}
@media (max-width: 650px) {
  .top-container {
    display: none;
  }
}
.top-navbar {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s ease;
  padding: 10px 10vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.top-navbar .nav-logo {
  width: 100px;
  height: 100%;
  padding-top: 10px;
  transition: padding-top 0.3s ease;
}
.top-navbar .nav-logo img {
  width: auto;
  height: 90%;
  object-fit: contain;
}
.top-navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.top-navbar ul.dark-link li a {
  color: var(--white);
}
.top-navbar ul li {
  position: relative;
}
.top-navbar ul li a {
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.top-navbar ul li a:hover {
  color: var(--yellow);
}
.top-navbar ul li a.active {
  color: var(--yellow);
}
.top-navbar ul li ul {
  flex-direction: column;
  position: absolute;
  top: 0;
  padding-top: 10px;
  z-index: 1;
  gap: 10px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  display: block;
}
.top-navbar ul li ul li {
  display: none;
  width: 200px;
  padding: 0.5rem 1rem;
}
.top-navbar ul li:hover > ul li {
  display: flex;
}
.top-navbar.dark-bg {
  background-image: linear-gradient(#333, rgba(51, 51, 51, 0));
}
.top-navbar.changeColor {
  background-color: var(--black);
}
.top-navbar.changeColor .nav-logo {
  padding-top: 0;
}
.top-navbar.changeColor ul li a {
  color: var(--white);
}
.top-navbar.changeColor ul li a:hover {
  color: var(--yellow);
}
.top-navbar.changeColor ul li ul {
  background-color: var(--black);
}
.top-navbar .menu-toggle a,
.top-navbar #social-mob a {
  display: none;
}
.top-navbar .menu-toggle,
.top-navbar #social-mob {
  display: none;
}

@media (max-width: 1024px) {
  .top-navbar ul {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .top-navbar {
    padding: 10px 8vw;
  }
  .top-navbar .nav-logo {
    width: 80px;
  }
  .top-navbar ul {
    gap: 15px;
  }
  .top-navbar ul li a {
    font-size: 0.9rem;
  }
}
@media (max-width: 550px) {
  .top-navbar {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    z-index: 50;
    position: relative;
    background-color: transparent;
  }
  .top-navbar.dark-bg {
    background-image: linear-gradient(#fff, #fff);
  }
  .top-navbar .nav-logo {
    width: 70px;
    margin-left: 10vw;
  }
  .top-navbar ul {
    padding: 5vh 10vw;
    display: none;
    flex-direction: column;
    gap: 20px;
    height: auto;
    width: 100vw;
  }
  .top-navbar ul li a {
    color: var(--white);
  }
  .top-navbar ul li ul {
    margin-left: 15vw;
    top: -4vh;
  }
  .top-navbar .menu-toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 40px;
    right: 10vw;
    cursor: pointer;
  }
  .top-navbar .menu-toggle img {
    width: 100%;
    height: 100%;
  }
  .top-navbar #open-menu {
    display: block;
  }
  .top-navbar #close-menu {
    display: none;
  }
  .top-navbar .menu-list {
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
  }
  .top-navbar #social-mob {
    display: none;
    height: 50vh;
    margin: 5vh 15vw;
    justify-content: space-between;
  }
  .top-navbar #social-mob a {
    display: flex;
    width: 30px;
    height: 30px;
  }
}
/* scroll to top */
#scroll_top {
  position: fixed;
  bottom: 5vh;
  right: 3vw;
  height: 50px;
  width: 50px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0.6;
  z-index: 33;
}

#scroll_top:hover {
  opacity: 1;
}

#scroll_top_value {
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  background-color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  color: var(--black90);
}

#wats-float {
  position: fixed;
  bottom: 5vh;
  left: 3vw;
  height: 40px;
  width: auto;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0.6;
  z-index: 33;
}
#wats-float img {
  width: 100%;
  height: 100%;
  display: none;
}
#wats-float:hover {
  opacity: 1;
}

.copyright-section {
  background-color: var(--dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 10vw;
  font-size: 0.9rem;
}
.copyright-section .privacy-link {
  display: flex;
  gap: 20px;
  margin-left: 20px;
}
.copyright-section .privacy-link .terms-header {
  cursor: pointer;
  color: var(--black60);
}
.copyright-section .privacy-link .terms-header:hover {
  color: var(--black20);
}
.copyright-section .policy-area {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  border: 1px solid var(--black-90);
  border-radius: 10px;
  z-index: 1000;
  background-color: var(--black20);
  width: 85%;
  min-height: 90%;
  max-height: 95%;
  overflow-y: scroll;
  transition: 300ms ease-in-out;
  scrollbar-width: none;
}
.copyright-section .policy-area p {
  text-align: justify;
}
.copyright-section .policy-area .policy-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--black);
}
.copyright-section .policy-area .policy-heading h2 {
  font-size: 2rem;
  color: var(--black);
}
.copyright-section .policy-area .policy-heading .close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black60);
}
.copyright-section .policy-area .policy-heading .close-btn:hover {
  color: var(--black);
}
.copyright-section .policy-area .policy-content {
  padding: 1.5rem 2.5rem;
}
.copyright-section .policy-area .policy-content h2 {
  color: var(--black);
}
.copyright-section .policy-area .policy-content p {
  margin-bottom: 1rem;
  color: var(--black);
}
.copyright-section .policy-area .policy-content ul {
  margin-left: 2.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}
.copyright-section #policy-area {
  display: none;
}
.copyright-section #terms-area {
  display: none;
}

@media (max-width: 768px) {
  .copyright-section {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 5vw;
    text-align: left;
  }
  .copyright-section .privacy-link {
    justify-content: center;
    gap: 10px;
  }
}
footer {
  background-color: var(--black90);
  width: 100%;
  padding: 2rem 10vw;
  display: flex;
  justify-content: space-between;
}
footer .footer_bar {
  margin-right: 10vw;
}
footer .footer_bar .footer_head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .footer_bar .footer_head img {
  width: auto;
  height: 80px;
}
footer .footer_bar .footer_head h2 {
  font-size: 2.5rem;
  color: var(--white);
}
footer .footer_bar .footer_links {
  display: flex;
  gap: 5rem;
  margin-top: 30px;
}
footer .footer_bar .footer_link_col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .footer_bar .footer_link_col p {
  color: var(--yellow20);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
footer .footer_bar .footer_link_col a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
footer .footer_bar .footer_link_col a:hover {
  color: var(--yellow);
}
footer .footer_bar h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
footer .footer_bar h6 {
  color: var(--white);
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}
footer .footer_bar .footer_contact {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}
footer .footer_bar .footer_contact img {
  width: 30px;
  height: 30px;
}
footer .footer_bar .footer_contact a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
footer img {
  width: 25px;
  height: 25px;
}
footer .footer_social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .footer_social .footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1024px) {
  footer .footer_bar .footer_link_col p {
    font-size: 1rem;
  }
}
@media (max-width: 850px) {
  footer {
    flex-direction: column;
    gap: 4rem;
  }
  footer .footer_bar .footer_head img {
    height: 60px;
  }
  footer .footer_bar .footer_head h2 {
    font-size: 1.8rem;
  }
  footer .footer_bar .footer_links {
    margin-left: 10vw;
    gap: 10rem;
  }
}
@media (max-width: 550px) {
  footer .footer_bar .footer_links {
    gap: 2rem;
  }
  footer .footer_bar .footer_contact img {
    width: 25px;
    height: 25px;
  }
}
#enquiry-pop2 {
  width: 60%;
  height: 38rem;
  border-radius: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  align-items: center;
  justify-content: center;
  z-index: 999;
  display: none;
}
#enquiry-pop2 .pop-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#enquiry-pop2 .pop-left .close-btn {
  margin-top: 1.5rem;
  margin-right: 80%;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--black60);
}
#enquiry-pop2 .pop-left .close-btn:hover {
  color: var(--black);
}
#enquiry-pop2 .pop-left img {
  width: 60%;
  height: auto;
  padding-bottom: 30%;
}
#enquiry-pop2 .pop-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#enquiry-pop2 .pop-right h2 {
  font-size: 2.5rem;
  color: var(--blue);
  text-align: center;
}
#enquiry-pop2 .pop-right h3 {
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 400;
  margin: 0.7rem 0 1.5rem 0;
  text-align: center;
}
#enquiry-pop2 .pop-right form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
#enquiry-pop2 .pop-right form input,
#enquiry-pop2 .pop-right form textarea {
  background-color: var(--black20);
  text-decoration: none;
  width: 80%;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #949191;
  box-shadow: inset 2px 2px 8px rgba(0, 0, 0, 0.3);
}
#enquiry-pop2 .pop-right form input:focus,
#enquiry-pop2 .pop-right form textarea:focus {
  border: none;
  box-shadow: none;
}
#enquiry-pop2 .pop-right form textarea {
  height: 10rem;
  resize: none;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
#enquiry-pop2 .pop-right form button {
  background-color: #00375c;
  color: var(--white);
  border: none;
  width: 80%;
  height: 2.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#enquiry-pop2 .pop-right form button:hover {
  background-color: var(--blue20);
}

.page_poster {
  width: 100%;
  height: 80vh;
  display: flex;
  /* flex-direction: row-reverse; */
  align-items: center;
  justify-content: center;
}

.page_poster_img,
.page_poster_matter {
  width: 50%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.page_poster_img img {
  width: auto;
  height: 80%;
}

.poster_image_slider {
  width: 50%;
  height: 100%;
  background-image: url("../img/svg/brand_poster1.svg");
  background-size: 80%;
  /* background-color: tomato; */
  background-repeat: no-repeat;
  background-position: center;
  animation: image_slide 10s infinite linear;
}

@keyframes image_slide {
  0% {
    background-image: url("../img/svg/brand_poster1.svg");
  }
  40% {
    background-image: url("../img/svg/brand_poster1.svg");
  }
  50% {
    background-image: url("../img/svg/brand_poster2.svg");
  }
  90% {
    background-image: url("../img/svg/brand_poster2.svg");
  }
  100% {
    background-image: url("../img/svg/brand_poster1.svg");
  }
}
.page_poster_matter button {
  background-color: var(--yellow);
  color: var(--black90);
  border: none;
  border-radius: 0.8em;
  cursor: pointer;
  padding: 0.8em 2em;
  font-size: 1em;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page_poster_matter button:hover {
  background-color: var(--yellow20);
}

.page_poster_matter h2 {
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 500;
  text-align: center;
}

.page_poster_matter p {
  text-align: center;
}

.page_poster_matter h2 span {
  color: var(--yellow);
}

@media (max-width: 900px) {
  .page_poster_img img {
    width: 60%;
    height: auto;
  }
  .page_poster_matter h2 {
    font-size: 2rem;
  }
  .page_poster_matter p {
    padding: 0;
    margin: 0;
  }
  .page_poster_matter button {
    padding: 0.6em 1.5em;
    font-size: 0.9em;
  }
}
@media (max-width: 550px) {
  .page_poster {
    flex-direction: column;
  }
  .page_poster_img img {
    width: 80%;
  }
  .page_poster_img,
  .page_poster_matter {
    width: 80%;
  }
}

/*# sourceMappingURL=main.css.map */
