/* Fonts */
/* @font-face {
  font-family: 'GothamBook';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'MSung HK Light';
  src: url('../fonts/MSung-HK-Light.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'MSung HK Medium';
  src: url('../fonts/MSung-HK-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
} */


:root {
  /* --default-font: "Roboto",Arial;
  --heading-font: "MSung HK Medium", "Roboto", sans-serif;
  --heading-font-light: "MSung HK Light",  "Roboto", sans-serif;
  --nav-font: "GothamBook",  "Roboto", sans-serif;
  --body-font: "Gilroy",  "Roboto", sans-serif; */

  --heading-font: "Noto Serif TC", serif;
  --heading-font-light: "Noto Serif TC", serif;
  --nav-font: "Montserrat", sans-serif;
  --body-font: "Manrope", sans-serif;

  --background-color: #ffffff;
  --default-color: #4d4d4d;
  --heading-color: #000;
  --accent-color: #cc9933;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #fff;
  --nav-hover-color: #cc9933;
  --nav-mobile-background-color: #ffffff;
  --nav-mobile-dropdown-color: #000;
  --nav-dropdown-background-color: #000;
  --nav-dropdown-color: #fff;
  --nav-dropdown-hover-color: #cc9933;

  scroll-behavior: smooth;
}

.light-background {
  --background-color: #f2f4f6;
  --surface-color: #ffffff;
}

.dark-light {
  --background-color: #1a1a1a;
}
.dark-background {
  --background-color: #000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --contrast-color: #ffffff;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width:1486px !important;
  }
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--body-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.title{
	color: var(--accent-color);
}

.zoomimg{
  position: relative;
  overflow: hidden;
  width:100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.zoomimg img:hover {
  transform: scale(1.2);
}
/*--------------------------------------------------------------
# Default Components
--------------------------------------------------------------*/
.btn.btn-get-started {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px;
  border-radius: 0;
  transition: 0.5s;
  margin: 10px 0;
  animation: fadeInUp 1s both 0.4s;
}

.btn.btn-get-started:hover {
  background: var(--accent-color);
  color: #000;
  border: 1px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title p.sub-title{
  font-size: 16px;
  font-family: var(--nav-font);
  color: var(--accent-color);
  margin-bottom: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;

}
.section-title h2.main-title{
    color: var(--heading-color);
    font-size: 52px;
    line-height: 1.3;
    font-family: var(--heading-font-light);
    font-weight: 500;
}

.section-title h2.main-title::after {
  content: "";
  width: 70px;
  height: 3px;
  display: block;
  background: var(--accent-color);
  margin-top: 12px;
}
.section-title.text-center h2.main-title::after{
  margin: 12px auto 0;
}
.sub-title-txt{
  font-size: 22px;
  margin: 20px 0px;
}
.body-description{
  font-size: 20px;
}

@media (max-width: 768px) {
  .section-title p.sub-title{
    font-size: 14px;
  }
  .section-title h2.main-title{
    font-size: 26px;
  }
  .sub-title-txt{
    font-size: 18px;
  }
  .sub-title-txt br{
    display: none;
  }
  .body-description{
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section-title h2.main-title{
    font-size: 36px;
  }
  .body-description{
    font-size: 16px;
  }
  .sub-title-txt{
    font-size: 20px;
  }
  .sub-title-txt br{
    display: none;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .section-title h2.main-title{
    font-size: 36px;
  }
  .body-description{
    font-size: 18px;
  }
  .sub-title-txt{
    font-size: 20px;
  }
  .sub-title-txt br{
    display: none;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #fff;
  /* background-color: #000; */
  padding: 16px 0;
  transition: all 0.5s;
  z-index: 997;
  /* box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1); */
}
.scrolled .header{
  background-color: #000000;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /* max-height: 60px; */
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
	.header {
		padding: 6px 0;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 13px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
	  font-weight: 500;
    padding: 0 1px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 1px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    /* background-color: var(--accent-color); */
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--accent-color);
    font-size: 28px;
    line-height: 0;
    /* margin-right: 10px; */
    cursor: pointer;
    transition: color 0.3s;
  }
 

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    /* inset: 60px 20px 20px 20px;
    border-radius: 6px; */
    padding: 10px 0;
    margin: 0;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    width: 80%;
    right: 0px;
    bottom: 0px;
    top: 0px;
    border-radius:0px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-mobile-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    /* background-color: rgba(33, 37, 41, 0.03); */
    background-color: transparent;
    margin-top: 0px;
    border: none;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    /* color: #fff; */
    color: var(--nav-dropdown-background-color);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #000;
  font-size: 16px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-subtitle{
  font-size: 16px;
  font-family: var(--nav-font);
  color: var(--accent-color);
  margin-bottom: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.footer .address p {
  margin-bottom: 0px;
}
.address_box a{
  display: block;
  color: var(--nav-color);
}

.footer .address  {
  margin-bottom: 0px;
}
.address .address_box img{
  width: 40px;
  height: 40px;
}
.footer .address a:hover {
	color: var(--accent-color);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #999999;
  margin-right: 16px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #fff;
  display: inline-block;
  line-height: 1;
  position: relative;
  padding-left: 20px;
  transition: .5s ease;
}
.footer .footer-links ul a::after {
  position: absolute;
  content: "\F285";
  font-family: bootstrap-icons;  
  font-style: normal;
  color: var(--accent-color);
  left: 0px;
  top: 0px;
  bottom: 0px;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
  padding-left: 25px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.form-control {
	border: 2px solid #999999;
}
.form-control:focus {
    box-shadow: none;
}
input::placeholder, .form-control::placeholder {
  color: #999999;
  opacity: 1;
}
.footer .footer-newsletter .form-control {
	color: #fff;
  padding: 24px 15px;
	border: 2px solid #999999;
	border-radius: 0;
	background-color: transparent;
  font-family: var(--nav-font);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer .footer-newsletter .form-control:focus {
	border: 2px solid var(--accent-color);
}
.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter button {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  background: #999999;
  color: #000;
  transition: 0.3s;
  border-radius: 0;
}
.footer .footer-newsletter button i{
  font-size: 24px;
}
.footer .footer-newsletter button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: #fff;
}


.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid #7c7c7c;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  /* font-size: 13px; */
}

.fooeter_social ul{
  padding-left: 0px;
  list-style: none;
}
.fooeter_social ul li{
  display: inline-block;
  padding-right: 15px;
}
.fooeter_social ul li a{
  color: #999999;
  font-size: 26px;
}
.fooeter_social ul li a:hover{
  color: var(--accent-color);
}
.fooeter_social ul li a i{
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease-out;
}

/* Spinning Loader */
#preloader:before {
  content: "";
  position: absolute;
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: animate-preloader 1.5s linear infinite;
}

/* Company Logo Inside Preloader */
#preloader img {
  position: absolute;
  width: 60px;
  height: auto;
  z-index: 10;
}

body.loading {
  overflow: hidden;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 30px;
  height: 30px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #000;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


.floating_whatsapp{
  position: fixed;
  bottom: 70px;
  right: 15px;
  width: 75px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}
@keyframes whatsapppulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.floating_whatsapp .whatsapp_icon{
  background-color: #42db87;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size:24px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: whatsapppulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: whatsapppulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: whatsapppulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: whatsapppulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.bg-cover{
  background-size: cover;
}
.bg-center-center{
background-position: center center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 214px 0;
  position: relative;
  text-align: left;
}

.page-title p {
  font-size: 16px;
  font-family: var(--nav-font);
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  margin-bottom: 0px;
  font-weight: 500;
}
.page-title h1 {
  font-size: 58px;
  line-height: 1.1;
  font-family: var(--heading-font-light);
}
@media screen and (max-width: 768px) {
  .about_us_banner{
    background-position: 75% 0px;
  }
  .page-title {
    text-align: center;
    padding: 101px 0px;
  }
  .page-title br{
    display: none;
  }
  .page-title h1 {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .page-title {
    padding: 115px 0;
  }
  .page-title h1 {
    font-size: 38px;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .page-title{
    padding: 200px 0px;
  }
  .page-title h1{
    font-size: 48px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/* .section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 16px;
  font-family: var(--nav-font);
  color: var(--accent-color);
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.section-title p::after {
  content: "";
  width: 70px;
  height: 3px;
  display: block;
  background: var(--accent-color);
  margin-top: 12px;
}
.section-title.text-center p::after {
  margin: 12px auto 0;
}
.section-title p {
  color: var(--heading-color);
  font-size: 44px;
  line-height: 1.1;
  padding-top: 12px;
  font-family: var(--heading-font);
} */

/* Service Box Hover Effect */
.service-item {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Scale & Shadow on Hover */
.service-item:hover {
  transform: translateY(-10px);
}

.service-item .title{
	margin-bottom: 12px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-video {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-video .hero-video-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: center;
}

.hero-video .hero-video-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video .hero-video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 60%) 100%);
  z-index: 2;
}

.hero-video .hero-video-container .container {
  z-index: 3;
}

.hero-video .hero-video-container .hero-video-content {
  padding-right: 30px;
}
.hero-video .hero-video-container .hero-video-content img{
  filter:brightness(0) invert(1);
  width: 150px;
}
.hero-video .hero-video-container .hero-video-content h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-video .hero-video-container .hero-video-content p {
  color: var(--nav-dropdown-color);
}

.hero-video .hero-video-container .hero-video-content .video_btn{
}

.hero-video .hero-video-container .hero-video-content .video_btn a{
  border: 1px solid #fff !important;
  padding: 15px 45px;
  border-radius: 30px;
  color: #fff !important;
}
.hero-video .hero-video-container .hero-video-content .video_btn a:hover{
  border: 1px solid var(--accent-color) !important;
  color: #fff !important;
  background-color: var(--accent-color) !important;;
}

.video-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}



@media (max-width: 768px) {
  .hero-video .hero-video-container .hero-video-content{
    padding-right: 0px;
    text-align: center;
  }
  .hero-video .hero-video-container .hero-video-content h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
    .hero-video .hero-video-container .hero-video-content p {
    font-size: 14px;
  }
  .hero-video .hero-video-container .hero-video-content h1 br{
    display: none;
  }
  .hero-video .hero-video-container{
    min-height: 50vh;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-video .hero-video-container .hero-video-content h1 {
    font-size: 34px;
    text-align: left;
  }
  .hero-video .hero-video-container .hero-video-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-banner {
  padding: 0;
}

.hero-banner .carousel-caption{
	display: flex;
  flex-direction: column;
  align-items: flex-start;
	text-align: left;
	justify-content: center;
	right: 0px;
	left: 0px;
  top: -80px;
}
.hero-banner .carousel-caption img{
	animation: fadeInDown 1s both;
  width: 180px;
}
.hero-banner .carousel-indicators {
	justify-content: flex-start;
	margin-bottom: 2.5rem;
	right: auto;
	left: auto;
	margin-left: 0;
}
.carousel-indicators [data-bs-target]{
	background-color: #cc9933;
}

.hero-banner h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1.3;
  color: #fff;
  font-family: var(--heading-font);
  animation: fadeInDown 1s both;

}
.hero-banner p{
  font-size: 20px;
  animation: fadeInDown 1s both 0.2s;
}
.hero-banner a{
  margin-top: 30px;
}
.main_img_lg{
  display: block;
}
.main_img_sm{
  display: none;
}
@media (max-width: 768px) {
  .hero-banner .carousel-caption{
    top: 0px;
  }
  .hero-banner h2 {
    font-size: 22px;
  }
  .hero-banner p {
    font-size: 14px;
  }
  .hero-banner .carousel-caption img{
	  width: 100px;
  }
  .hero-banner a{
    margin-top: 0px;
  }
  .main_img_sm{
    display: block;
    height: 500px;
    object-fit: cover;
  }
  .main_img_lg{
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-banner .carousel-caption img{
	  width: 140px;
  }
  .hero-banner h2 {
    font-size: 32px;
  }
  .hero-banner p {
    font-size: 16px;
  }
  .hero-banner a {
    margin-top: 0px;
  }
  .hero-banner .carousel-caption{
    top:0px;
  }
  .projects .project-item .project-img{
    width: 175px;
  }
  .main_img_sm{
    display: none;
  }
  .hero-banner .carousel-indicators{
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .hero-banner h2{
    font-size: 54px;
  }
  .hero-banner .carousel-caption{
    top:-25px;
  }
}

.btn-get-started {
  color: #000;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px;
  border-radius: 0;
  transition: 0.5s;
  margin: 10px 0;
  animation: fadeInUp 1s both 0.4s;
}

.btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: #000;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 20%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 1024px) {
  .hero-banner .carousel-item > *:first-child {
    width: auto!important;
	height: 500px;
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.about{
  position: relative;
  background-color: transparent;
}
.about-video{ 
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about_video_overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
   background: #ffffff;
  z-index: 2;
  opacity: .8;
}
.about .container{
  z-index: 3;
  position: relative;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
  height: 100%;
}

.contact input[type=text],
.contact input[type=email],
.contact input[type=tel],
.contact textarea {
  font-size: 14px;
  padding: 28px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #000000!important;
  /* background-color: color-mix(in srgb, var(--background-color), transparent 50%); */
  background-color: transparent;
  border-color: #999999;
  font-family: var(--nav-font);
  letter-spacing: 1.5px;
}

.contact input[type=text]:focus,
.contact input[type=email]:focus,
.contact textarea:focus {
  border-color: var(--accent-color);
  background-color: transparent;
}

.contact input[type=text]::placeholder,
.contact input[type=email]::placeholder,
.contact textarea::placeholder {
  color: #999999;
  text-transform: uppercase;
}

.contact.dark-light input[type=text],
.contact.dark-light input[type=email],
.contact.dark-light input[type=tel],
.contact.dark-light textarea {
  color: #999999 !important;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 80px 0;
}

.stats-video{ 
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.status_video_overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(177 127 44 / 70%); /* Dark overlay */
  z-index: 2;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 40px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 70px;
  color: var(--default-color);
  font-family: var(--heading-font);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font-light);
  font-size: 26px;
}
.stats-item-border{
  position: relative;
}
.stats-item-border::after{
  content: '';
  position: absolute;
  right: 0px;
  bottom: 0px;
  top: 0px;
  width: 2px;
  height: 100%;
  background: var(--accent-color);
}
.row .col-lg-3:last-child .stats-item-border::after {
  display: none;
}

@media (max-width: 768px) {
	.stats .stats-item {
		width: 100%;
	}
  .stats .stats-item span {
    font-size: 44px;
  }
  .stats .stats-item p {
    font-size: 20px;
  }
  .stats-item-border::after{
    content: none;
  }
  .stats .stats-item{
    padding: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stats-item-border::after{
    content: none;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .stats .stats-item span{
    font-size: 54px;
  }
  .stats .stats-item{
    padding: 30px;
  }
  .stats .stats-item p{
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Background Section
--------------------------------------------------------------*/
.bg-img{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center;
}
.chairman-bg {
    background-image: url('../img/bg/chairman-bg.jpg');
}
/* .about-bg {
    background-image: url('../img/bg/about-us-bg.jpg');
} */
/* .testimonial-bg {
    background-image: url('../img/bg/testimonial-bg.jpg');
} */

.image-collage {
   height: 650px;
}

/* Custom positioning and clipping */
.img1 {
  bottom: 10%;
}

.img2 {
	left: 10%;
}

.who-we-are-bg{
  background-image: url('../img/bg/who-we-are-bg.jpg');
}
.bg-black{
  background-image: url('../img/bg/bg-black.jpg');
}
@media (max-width: 767px) {
	.image-collage {
		height: 100%;
	}
	.img1 {
		position: relative!important;
		width: 100%;
	}
	.section-title p {
		font-size: 30px;
	}
}



/*--------------------------------------------------------------
# testimonial Section
--------------------------------------------------------------*/
.testimonials{
  position: relative;
}

.testimonials-video{ 
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials_video_overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgb(177 127 44 / 70%);
  z-index: 2;
}

.testimonials .container, .testimonials .container-fluid{
  position: relative;
  z-index: 3;
}

.testimonials .wrapper{
  max-width: 1150px;
  margin: 0px auto;
}
.testimonials .wrapper .slick-list .slick-slide h4{
  font-size: 30px;
}
.testimonials .wrapper .slick-list .slick-slide p{
  font-size: 20px;
}
.my-slider {
	background-color: #fff;
  border: 1px solid #999999;
	padding: 50px;
}
.my-slider::before {
	content: "\f103"; /* Unicode for Bootstrap bi-quote */
	font-family: flaticon_mycollection !important;
	font-size: 60px;
	color: #cc9933;
	position: absolute;
	top: -60px;
	left: 7%;
	transform: translateX(-50%);
	background: transparent;
	padding: 5px;
}
.slick-prev:before {
    content: '\F284'!important;
}
.slick-next:before {
    content: '\f285'!important;
}
.my-slider .slick-prev:before, .slick-next:before {
  display: inline-block!important;
  font-family: bootstrap-icons !important;
	font-size: 10px!important;
  color: #fff!important;
  background-color: var(--accent-color);
  padding: 13px;
  opacity: 1 !important;
}

.my-slider .slick-prev {
	left: -25%;
}
.my-slider .slick-next {
	right: -25%;
}

.project-swiper .swiper-button-next, .project-swiper .swiper-button-prev {
	color: #000;
	background-color: var(--accent-color);
  /* width: 35px;
  height: 35px; */
  /* padding: 100px; */
}


.project-swiper .swiper-button-next:after, .project-swiper .swiper-button-prev:after {
    font-size: 10px;
    font-weight: 700;
}
@media (max-width: 768px) {
  .my-slider {
    padding: 24px;
  }
  .my-slider::before{
    font-size: 36px;
    top: -35px;
  }
  .my-slider .slick-prev {
	left: 35%;
  }
  .my-slider .slick-next {
	right: 35%;
  }
  .my-slider .slick-prev, 
  .my-slider .slick-next{
    top: 100%;
    height: 0px;
    margin: 10px auto;
  }
  .testimonials .wrapper{
    max-width: 100%;
    margin: 0px 25px;
  }
  .testimonials .wrapper .slick-list .slick-slide h4{
    font-size: 20px;
  }
  .testimonials .wrapper .slick-list .slick-slide p{
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.my-slider .slick-prev {
		right: 0;
    height: 0px;
    top: 100%;
    margin: 10px auto;
	}
  .my-slider .slick-next {
		left: 0;
    height: 0px;
    top: 100%;
    margin: 10px auto;
	}
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .my-slider .slick-prev{
    left: -5% !important;
  }
  .my-slider .slick-next{
    right: -5% !important;
  }
}
/*--------------------------------------------------------------
# projects Section
--------------------------------------------------------------*/
.projects .project-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  /* margin: 40px 60px; */
  margin: 40px;
  min-height: 550px;
  text-align: center;
  transition: 0.3s;
}
.projects .project-item-photo{
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.projects .project-item-photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
.projects .swiper-slide-active .project-item-photo::after{
	background: linear-gradient(to top, rgba(204, 153, 51, 1), rgba(0, 0, 0, 0.2));
}
.projects .slide-content{
	display: none;
}
.projects .swiper-slide-active .slide-content{
	display: flex;
    position: absolute;
    gap: 50px;
    z-index: 2;
    flex-direction: column;
    bottom: 50px;
	text-align: center;
    width: 100%;
    align-items: center;
}

.projects .project-item .project-img {
  text-align: center;
  filter: brightness(0) invert(1); 
  width: 200px;
}
.projects .swiper-pagination-fraction {
    color: #fff;
	font-size: 24px;
	font-family: var(--heading-font);
	position: relative;
}
.projects .swiper-pagination-fraction::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto;
}
.projects .swiper-wrapper {
  height: auto;
}

.projects .swiper-pagination {
  margin-top: 20px;
  position: relative;
}


.projects .swiper-slide {
  opacity: 0.3;
  transition: transform 1s ease-in-out;
}


@media (max-width: 1199px) {
  .projects .swiper-slide-active {
    opacity: 1;
  }

  .projects .swiper-pagination {
    margin-top: 0;
  }

  .projects .project-item {
    margin: 40px 20px;
  }
}

@media (min-width: 768px) {
  .projects .swiper-slide-active {
    opacity: 1;
    transform: scale(1.12);
  }
}
@media (max-width: 768px) {
  .projects .project-item {
		min-height: 300px;
    margin: auto;
  }
  .projects .project-item .project-img {
	  width: 125px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
	.projects .project-item {
		min-height: 450px;
	}
}
/* @media (min-width: 1025px) and (max-width: 1199px) {
	.projects .project-item {
		min-height: 275px;
	}
} */
/* @media (max-width: 1366px) {
  .projects .project-item{
    margin: 40px !important;
  }
} */

/*--------------------------------------------------------------
# Vision & Mission
--------------------------------------------------------------*/
.vision-card{
  border: 1px solid var(--accent-color);
  padding: 57px 70px;
  transition: .3s ease;
}
.vision-card:hover{
  transform: translateY(-10px);
}
.vision-card h2{
  color: var(--heading-color);
  font-size: 60px;
  line-height: 1.1;
  margin-left: 40px;
  font-family: var(--heading-font-light);
  transition: .3s ease;
}
.vision-card:hover h2{
  color: var(--accent-color) !important;
}
@media (max-width: 768px) {
  .vision-card{
    padding: 30px;
  }
  .vision-card img{
    width: 75px;
  }
  .vision-card h2{
    font-size: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {

}
@media (min-width: 1025px) and (max-width: 1366px) {
  .vision-card{
    padding: 40px;
  }
}

/*--------------------------------------------------------------
# Awards Section
--------------------------------------------------------------*/
.sec-awards .awards-list p{
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: bold;
}
.awards-desc{
  transition: .3s ease;
}
.awards-desc:hover{
  transform: translateY(-10px);
}
@media (max-width: 768px) {
  .sec-awards .awards-list p{
    font-size: 16px;
  }
  .sec-awards .awards-list p br{
    display: none;
  }
}

/*--------------------------------------------------------------
# Ongoing Project Listing Page
--------------------------------------------------------------*/
.projects_card{
  margin-bottom: 50px;
}

.projects_card_wrapper .projects_card_logo{
  display: flex;
  margin-left: -100px;
  margin-top: 20px;
}
.projects_card_wrapper .projects_card_logo .projects_logo{
  background-color: #f2f2f2;
  padding: 15px 50px;
}
.projects_card_wrapper .projects_card_logo .projects_logo img{
  width: 180px;
  height: 100px;
}
.projects_size_desc{
  display: flex;
  align-items:center;
}
.projects_size_desc .projects_size_box{
  position: relative;
  padding: 5px 10px;
}
.projects_size_desc .projects_size_box::after{
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  background: var(--accent-color);
  right: 0px;
  top: 0px;
}
.projects_size_desc .projects_size_box:last-child::after {
  content: none;
}
.projects_size_desc .projects_size_box h4{
  font-size: 18px;
  font-family: var(--nav-font);
  color: var(--accent-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.projects_card_desc h3{
  text-transform: uppercase;
}
.projects_card_btns a{
  text-transform: uppercase;
  font-size: 16px;
  padding: 8px 10px;
  background-color: var(--accent-color);
  color: #fff;
  font-family: var(--nav-font);
  border-radius: 0px;
  margin-right: 10px;
  transition: .5s ease;
  border: 1px solid var(--accent-color);
}
.projects_card_btns a:hover{
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}
@media screen and (max-width: 768px) {
  .projects_card_wrapper .projects_card_logo{
    margin-left: 0px;
  }
  .projects_card_wrapper .projects_card_logo .projects_logo{
    padding: 10px;
  }
  .projects_card_wrapper .projects_card_logo .projects_logo img{
    width: 150px;
    height: 75px;
  }
  .projects_card_btns a{
    font-size: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .projects_card_wrapper .projects_card_logo{
    margin-left: 0px;
  }
}
@media (min-width: 1025px) and (max-width: 1366px) {
  .projects_card_wrapper .projects_card_logo{
    margin-left: -60px;
  }
}

/*--------------------------------------------------------------
# Completed Project Listing Page
--------------------------------------------------------------*/
.comp_project_dets{
  transition:0.3s ease;
}
.comp_project_dets:hover{
  transform: translateY(-10px);
}
.comp_project_dets .comp_project_logo{
  background-color: #f2f2f2;
}

.comp_project_dets .comp_project_logo img{
  height: 180px;
}
.comp_project_dets .comp_project_link{
  background-color: var(--accent-color);
}
.comp_project_dets .comp_project_link a{
  text-transform: uppercase;
  color: var(--contrast-color);
  font-family: var(--heading-font-light);
  font-size: 24px;
}
.comp_project_dets .comp_project_link a:hover{
  color: var(--contrast-color);
}
@media screen and (max-width: 768px) {
  .comp_project_dets .comp_project_link a{
    font-size: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

}
/*--------------------------------------------------------------
# JRD Program Page
--------------------------------------------------------------*/
.jrd_program_spec li{
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.jrd_program_spec li img{
  width: 50px;
}
.jrd_program_spec li p{
  margin-left: 20px;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
}

@media (min-width: 769px) and (max-width: 1024px) {

}
/*--------------------------------------------------------------
# JRD Program Page
--------------------------------------------------------------*/
.address.address_ligh .address_box a{
  color: inherit;
}
.address.address_ligh .address_box a:hover{
  color: var(--accent-color);
}
.downloadapp p{
  font-size: 16px;
  font-family: var(--nav-font);
  color: var(--accent-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.downloadapp a{
  font-size: 30px;
  color: #cccccc;
  margin-right: 15px;
  transition: 0.3s;
}
.downloadapp a:hover{
  color: var(--accent-color);
}

.fooeter_social.contact_social h4{
  font-size: 16px;
  font-family: var(--nav-font);
  color: var(--accent-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.fooeter_social.contact_social ul li a{
  font-size: 30px;
  color: #cccccc;
  margin-right: 15px;
  transition: 0.3s;
}
.fooeter_social.contact_social ul li a:hover{
  color: var(--accent-color);
}
@media screen and (max-width: 768px) {
}

@media (min-width: 769px) and (max-width: 1024px) {

}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.page_testimonials .testimonials_list{
  position: relative;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 20px;
}
.page_testimonials .testimonials_list::before{
  content: "\f103";
  font-family: flaticon_mycollection !important;
  font-size: 60px;
  color: #efefef;
  position: absolute;
  top: -25px;
  left: 0px;
  background: transparent;
  padding: 5px;
}
.page_testimonials .testimonials_list .testimonials_data{
  padding: 20px;
  position: relative;
  z-index: 1;
}
.page_testimonials .testimonials_list .testimonials_data p.testimonials_desc{
  margin-bottom: 10px;
}
.page_testimonials .testimonials_list .testimonials_data p.testimonials_author{
  font-size: 24px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 0px;
}
.page_testimonials .testimonials_list .testimonials_data p.testimonials_profile{
  color: #000000;
}
@media screen and (max-width: 768px) {
}

@media (min-width: 769px) and (max-width: 1024px) {

}


/*--------------------------------------------------------------
# Play Icon 
--------------------------------------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}
.chairman_video{
  display: flex;
  align-items: center;
}
.chairman_video p{
  font-family: var(--nav-font);
  margin-bottom: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}


@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
