:root {
  --primary: #20b8c9;
  --secondary: #2c2c2c;
  --black: #000000;
  --black-2: #000000;
  --black-3: #000000;
  --black-4: #000000;
  --black-5: #000000;
  --black-6: #000000;
  --black-7: #000000;
  --black-13: #000000;
  --white: #ffffff;
  --white-2: #ffffff;
  --white-3: #ffffff;
  --white-4: #ffffff;
  --white-5: #ffffff;
  --white-6: #ffffff;
  --gray: #c2c2c2;
  --gray-2: #c2c2c2;
  --gray-3: #c2c2c2;
  --gray-4: #c2c2c2;
  --gray-5: #c2c2c2;
  --gray-6: #c2c2c2;
  --gray-7: #c2c2c2;
  --gray-8: #c2c2c2;
  --gray-9: #c2c2c2;
  --gray-10: #c2c2c2;
  --gray-11: #c2c2c2;
  --gray-12: #c2c2c2;
  --gray-13: #c2c2c2;
  --gray-14: #c2c2c2;
  --gray-15: #c2c2c2;
  --pink: #transparent;
  --pink-2: #transparent;
  --pink-3: #transparent;
  --pink-4: #transparent;
  --pink-5: #transparent;
  --bg-line: #transparent;
  --d-black: #000000;
  --d-black-2: #000000;
  --d-black-3: #000000;
}
html {
  overflow-x: hidden;
}

body {
  line-height: 1.7;
  font-weight: 500;
  font-size: 1.1rem;
  color: #000;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  color: #000;
}

.border-2 {
  border-width: 2px;
}

.text-black {
  color: #000 !important;
}

.bg-black {
  background: #000 !important;
}

.color-black-opacity-5 {
  color: rgba(0, 0, 0, 0.5);
}

.color-white-opacity-5 {
  color: rgba(255, 255, 255, 0.5);
}

.site-wrap:before {
  display: none;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-menu .site-wrap {
  height: 100%;
  width: 100%;
  z-index: 2;
}
.offcanvas-menu .site-wrap:before {
  opacity: 1;
  visibility: visible;
}

.btn {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  border-width: 2px;
}
.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.btn.btn-primary:hover {
  border-color: #f23a2e;
  background: #f23a2e;
  color: #fff;
}
.btn.btn-black {
  border-width: 2px;
  border-color: #000;
  background: #000;
  color: #fff;
}
.btn.btn-black:hover {
  color: #000;
  background-color: transparent;
}
.btn.btn-black.btn-outline-black {
  color: #000;
  background-color: transparent;
}
.btn.btn-black.btn-outline-black:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}
.btn.btn-white {
  border-width: 2px;
  border-color: #fff;
  background: #fff;
  color: #000;
}
.btn.btn-white:hover {
  color: #fff;
  background-color: transparent;
}
.btn.btn-white.btn-outline-white {
  color: #fff;
  background-color: transparent;
}
.btn.btn-white.btn-outline-white:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}
.btn.btn-outline-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn.btn-outline-white:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.line-height-1 {
  line-height: 1 !important;
}

.bg-black {
  background: #000;
}

.form-control {
  height: 50px;
  border-radius: 0px;
  background: none;
  border-width: 2px;
  font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}
.form-control:active,
.form-control:focus {
  border-color: #f23a2e;
  background: none;
}
.form-control:hover,
.form-control:active,
.form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.site-section {
  padding: 2.5em 0;
}
@media (min-width: 768px) {
  .site-section {
    padding: 3em 0 2em 0;
  }
}
.site-section.site-section-sm {
  padding: 4em 0;
}

.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .site-section-heading {
    font-size: 3rem;
  }
}

.border-top {
  border-top: 1px solid #edf0f5 !important;
}

.site-footer {
  padding: 4em 0;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 8em 0;
  }
}
.site-footer p {
  color: #737373;
}
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5 {
  color: #fff;
}
.site-footer a {
  color: #999999;
}
.site-footer a:hover {
  color: black;
}
.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer .footer-heading {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
}

.bg-text-line {
  display: inline;
  background: #000;
  -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  box-shadow: 20px 0 0 #000, -20px 0 0 #000;
}

.text-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5);
}

.text-black-opacity-05 {
  color: rgba(0, 0, 0, 0.5);
}

.hover-bg-enlarge {
  overflow: hidden;
  position: relative;
}
@media (max-width: 991.98px) {
  .hover-bg-enlarge {
    height: auto !important;
  }
}
.hover-bg-enlarge > div {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.8s all ease-in-out;
  -o-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
}
.hover-bg-enlarge:hover > div,
.hover-bg-enlarge:focus > div,
.hover-bg-enlarge:active > div {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
@media (max-width: 991.98px) {
  .hover-bg-enlarge .bg-image-md-height {
    height: 300px !important;
  }
}

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.bg-image.overlay {
  position: relative;
}
.bg-image.overlay:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.bg-image > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .img-md-fluid {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .display-1,
  .display-3 {
    font-size: 3rem;
  }
}

.play-single-big {
  width: 90px;
  height: 90px;
  display: inline-block;
  border: 2px solid #fff;
  color: #fff !important;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.play-single-big > span {
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -50%);
  -ms-transform: translate(-40%, -50%);
  transform: translate(-40%, -50%);
}
.play-single-big:hover {
  width: 120px;
  height: 120px;
}

.overlap-to-top {
  margin-top: -150px;
}

.ul-check {
  margin-bottom: 50px;
}
.ul-check li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.ul-check li:before {
  left: 0;
  font-size: 20px;
  top: -0.3rem;
  font-family: "icomoon";
  content: "\e5ca";
  position: absolute;
}
.ul-check.white li:before {
  color: #fff;
}
.ul-check.success li:before {
  color: #8bc34a;
}
.ul-check.primary li:before {
  color: #f23a2e;
}

.select-wrap,
.wrap-icon {
  position: relative;
}
.select-wrap .icon,
.wrap-icon .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
}
.select-wrap select,
.wrap-icon select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

/* Navbar */
.site-logo {
  position: relative;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.site-logo a {
  color: #fff;
}
.site-logo a span {
  color: #f23a2e;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  width: 100%;
}
.site-navbar .container-fluid {
  padding-left: 7rem;
  padding-right: 7rem;
}
@media (max-width: 991.98px) {
  .site-navbar .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid #f3f3f4 !important;
}
.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}
.site-navbar .site-navigation .site-menu .active {
  color: #f23a2e;
  display: inline-block;
  padding: 5px 8px;
}
.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}
.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
}
.site-navbar .site-navigation .site-menu > li > a {
  padding: 5px 8px;
  color: #fff;
  display: inline-block;
  text-decoration: none !important;
}
.site-navbar .site-navigation .site-menu > li > a:hover {
  color: #fff;
}
.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}
.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}
.site-navbar .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "icomoon";
}
.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #f23a2e;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #edf0f5;
  border-right: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown.arrow-top:before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #343a40;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
  color: #f23a2e !important;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li
  > a:hover {
  background: #f4f5f9;
  color: #25262a;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > a:before {
  content: "\e315";
  right: 20px;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > .dropdown,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > ul {
  left: 100%;
  top: 0;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:hover
  > a,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:active
  > a,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:focus
  > a {
  background: #f4f5f9;
  color: #25262a;
}
.site-navbar .site-navigation .site-menu .has-children:hover > a,
.site-navbar .site-navigation .site-menu .has-children:focus > a,
.site-navbar .site-navigation .site-menu .has-children:active > a {
  color: #f23a2e;
}
.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}
.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}
.site-navbar .site-navigation .site-menu.site-menu-dark > li > a {
  color: #000;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #25262a;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}
.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}
.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}
.site-mobile-menu .site-nav-wrap a:hover {
  color: #f23a2e;
}
.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}
.site-mobile-menu .site-nav-wrap li .active {
  color: #f23a2e;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}
.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px;
}
.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important;
}

.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}
.sticky-wrapper + .site-blocks-cover {
  margin-top: 96px;
}
.sticky-wrapper .site-navbar {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 1%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.sticky-wrapper .site-navbar .site-menu-toggle > span:before {
  color: #fff !important;
}
.sticky-wrapper .site-navbar .site-menu > li {
  display: inline-block;
}
.sticky-wrapper .site-navbar .site-menu > li > a.active {
  color: #fff;
  position: relative;
}
.sticky-wrapper .site-navbar .site-menu > li > a.active:after {
  height: 2px;
  background: #fff;
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
}
.sticky-wrapper.is-sticky .site-navbar {
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu-toggle > span:before {
  color: #000 !important;
}
.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #000;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li {
  display: inline-block;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
  padding: 5px 8px;
  color: #000;
  display: inline-block;
  text-decoration: none !important;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover {
  color: #f23a2e;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active:after {
  background: #f23a2e;
}
.sticky-wrapper .shrink {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Blocks */
.intro-section {
  position: relative;
}
.intro-section > .container {
  z-index: 10;
  position: relative;
}
.intro-section,
.intro-section .container .row {
  height: 100vh;
  min-height: 900px;
}
.intro-section:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  /* background: #ccc; */
  background-image: url(../images/backcata.png);
  /* background-image: url(https://t3.ftcdn.net/jpg/07/43/13/60/240_F_743136053_zdlHMbAGMxBrPAZznp4YcvyR3z8GutH9.jpg); */
  border-bottom-right-radius: 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  animation: zoomOut 2s ease-out forwards;
  transform: scale(1.2);
}
/* Keyframes for zoom out */
@keyframes zoomOut {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 991.98px) {
  .intro-section:before {
    width: 100%;
  }
}
.intro-section:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.intro-section h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
}
@media (max-width: 991.98px) {
  .intro-section h1 {
    font-size: 2rem;
  }
}
.intro-section .desc {
  color: white;
  font-size: 1.3rem;
  max-width: 700px;
}
.intro-section a {
  color: #fff;
  text-decoration: underline;
}
.intro-section a:hover {
  text-decoration: none;
}
.intro-section .btn {
  text-decoration: none;
}

.schedule-wrap {
  padding: 40px;
  background: #f23a2e;
  max-width: 700px;
  position: relative;
  z-index: 9;
  color: white;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.schedule-wrap:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: inherit;
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: skew(-12deg, 0deg);
  -ms-transform: skew(-12deg, 0deg);
  transform: skew(-12deg, 0deg);
}
.schedule-wrap strong {
  color: #fff;
  font-weight: bold;
}
.schedule-wrap .cta a {
  text-align: center;
  background: #f89d13;
  color: #fff;
  padding: 10px 20px;
}
.schedule-wrap .cta a .arrow {
  font-size: 1.2rem;
  position: relative;
  top: 3px;
}

.schedule-wrap2 {
  padding: 40px;
  background: #f23a2e;
  width: 50%;
  position: absolute;
  z-index: 9;
  right: 0;
  color: white;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .schedule-wrap2 {
    width: 90%;
  }
}
.schedule-wrap2:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: inherit;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transform: skew(12deg, 0deg);
  -ms-transform: skew(12deg, 0deg);
  transform: skew(12deg, 0deg);
}
.schedule-wrap2 strong {
  color: #fff;
  font-weight: bold;
}
.schedule-wrap2 .cta a {
  text-align: center;
  background: #f89d13;
  color: #fff;
  padding: 10px 20px;
}
.schedule-wrap2 .cta a .arrow {
  font-size: 1.2rem;
  position: relative;
  top: 3px;
}

.ftco-feature-1 {
  text-align: center;
  padding-top: 30px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background: #fff;
}
.ftco-feature-1:hover {
  transform: scale(1.1);
}
.ftco-feature-1 .icon {
  font-size: 70px;
  color: #f23a2e;
}
.ftco-feature-1 .ftco-feature-1-text {
  padding: 30px;
}
.ftco-feature-1 h2 {
  font-size: 20px;
  font-weight: bold;
}
.ftco-feature-1 p {
  color: #000;
}
.ftco-feature-1:hover,
.ftco-feature-1.active {
  -webkit-box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.1);
}

.block-14 .owl-nav {
  display: none;
}

.block-14 .owl-stage {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.block-14 .owl-dots {
  text-align: center;
}
.block-14 .owl-dots .owl-dot {
  display: inline-block;
  margin: 5px;
}
.block-14 .owl-dots .owl-dot > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}
.block-14 .owl-dots .owl-dot.active > span {
  background: #f23a2e;
}

.section-heading .subheading {
  color: #ababab;
  font-size: 1.2rem;
}

.section-heading .heading {
  color: #000;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: cursive;
}

.class-item {
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  z-index: 1;
}
.class-item .class-item-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
}
.class-item .class-item-thumbnail img {
  max-width: 100px;
  border-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.class-item .class-item-text h2 {
  font-size: 18px;
  margin-bottom: 0px;
}
.class-item .class-item-text h2 a {
  color: #000;
}
.class-item .class-item-text p,
.class-item .class-item-text span {
  color: #aeaeae;
}
.class-item .class-item-text span {
  font-size: 16px;
}
.class-item:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 2;
  background: #f23a2e;
}
.class-item:hover h2 a {
  color: #fff;
}
.class-item:hover p,
.class-item:hover span {
  color: #ff7c67;
}

.days {
  width: 100%;
  padding: 0;
  margin: 0 0 50px 0;
}
.days li {
  text-align: center;
  display: inline-block;
  width: 14.25%;
}
.days li a {
  background: #eee;
  padding: 10px;
  display: block;
}
.days li a:hover,
.days li a.active {
  background: #f23a2e;
  color: #fff;
}
#about-section h2 {
  color: #363636 !important;
  font-size: 32px !important;
}
#about-section.bgimg::before {
  background-color: rgba(0, 0, 0, 0);
}

.bgimg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.bgimg,
.bgimg .container .row {
  height: 500px;
}
.bgimg:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.bgimg .lead {
  color: #fff;
}
.bgimg > .container {
  z-index: 2;
  position: relative;
}
.bgimg h2 {
  color: #fff;
  font-size: 3rem;
  margin-top: 0;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .bgimg h2 {
    font-size: 2rem;
  }
}
.bgimg a {
  color: #fff;
  text-decoration: underline;
}
.bgimg a:hover {
  text-decoration: none;
}

.footer-section {
  padding: 7em 0;
}
.footer-section p {
  font-size: 1rem;
}
.footer-section h3 {
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 900;
}
.footer-section .footer-links li {
  margin-bottom: 10px;
}

.person img {
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 30px;
}

.person .position {
  color: #ca0000;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  font-family: math;
}

.person h3 {
  font-size: 18px;
  font-weight: 900;
}

.person p {
  font-size: 15px;
}

#contact-section .form-control {
  background: #fff;
}

/* .contact-wrap {
  padding-bottom: 8rem !important; } */

.footer-section {
  padding-top: 12rem !important;
}
/* custom styling  */
.site-navbar {
  padding: 20px 0;
}

.site-logo a {
  font-size: 24px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.site-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

.site-menu li {
  position: relative;
}

.site-menu li a {
  color: white;
  text-decoration: none;
  font-size: 14px !important;
  display: inline-block;
  font-weight: 600;
}

.site-menu li span {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

/* From 1151px to 1270px */
@media (min-width: 1151px) and (max-width: 1270px) {
  .site-navbar .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .site-navbar .site-navigation .site-menu .active {
    padding: 5px 4px !important;
  }

  .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
    padding: 5px 4px !important;
  }

  .site-menu li a {
    font-size: 12px;
  }
  .site-navbar .site-navigation .site-menu > li > a {
    padding: 5px 4px !important;
  }
}

/* From 992px to 1150px */
@media (min-width: 992px) and (max-width: 1150px) {
  .site-navbar .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .site-menu li a {
    font-size: 11px !important;
  }

  .AroojLogo {
    height: 30px !important;
  }
  .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
    padding: 5px 4px !important;
  }

  .site-navbar .site-navigation .site-menu .active {
    padding: 5px 4px !important;
  }
  .site-navbar .site-navigation .site-menu > li > a {
    padding: 5px 4px !important;
  }
}

/* From 1271px to 1443px */
@media (min-width: 1271px) and (max-width: 1443px) {
  .site-navbar .container-fluid {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .site-navbar .site-navigation .site-menu > li > a {
    padding: 5px 5px !important;
  }
}

/* On hover */
.site-menu li:hover span {
  animation: floatUp 0.6s ease forwards;
}

/* Animate each letter one after another */
/* .site-menu li:hover span:nth-child(1) { animation-delay: 0s; }
    .site-menu li:hover span:nth-child(2) { animation-delay: 0.05s; }
    .site-menu li:hover span:nth-child(3) { animation-delay: 0.1s; }
    .site-menu li:hover span:nth-child(4) { animation-delay: 0.15s; }
    .site-menu li:hover span:nth-child(5) { animation-delay: 0.2s; }
    .site-menu li:hover span:nth-child(6) { animation-delay: 0.25s; }
    .site-menu li:hover span:nth-child(7) { animation-delay: 0.3s; }
    .site-menu li:hover span:nth-child(8) { animation-delay: 0.35s; }
    .site-menu li:hover span:nth-child(9) { animation-delay: 0.4s; } */

@keyframes floatUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  50% {
    transform: translateY(-10%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive toggle placeholder */
.d-lg-none {
  display: none;
}

/* button */
/*----------------------------------------*/
/*  07. Button CSS START
/*----------------------------------------*/
.wc-btn-primary,
.wc-btn-black,
.wc-btn-light,
.wc-btn-pink,
.wc-btn-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-transform: capitalize;
  color: var(--black-3);
  border: 1px solid var(--gray);
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .wc-btn-primary,
  .wc-btn-black,
  .wc-btn-light,
  .wc-btn-pink,
  .wc-btn-secondary {
    padding: 30px;
  }
}
.wc-btn-primary:hover,
.wc-btn-black:hover,
.wc-btn-light:hover,
.wc-btn-pink:hover,
.wc-btn-secondary:hover {
  color: var(--black-2);
  border: 1px solid var(--primary);
}
.wc-btn-primary:hover span,
.wc-btn-black:hover span,
.wc-btn-light:hover span,
.wc-btn-pink:hover span,
.wc-btn-secondary:hover span {
  width: 350px;
  height: 350px;
}
.wc-btn-primary i,
.wc-btn-black i,
.wc-btn-light i,
.wc-btn-pink i,
.wc-btn-secondary i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  padding-left: 5px;
}
.wc-btn-primary span,
.wc-btn-black span,
.wc-btn-light span,
.wc-btn-pink span,
.wc-btn-secondary span {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background-color: var(--primary);
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.wc-btn-secondary {
  border: 1px solid var(--secondary);
  color: var(--gray-2);
}
.wc-btn-pink {
  border: 1px solid var(--secondary);
  color: var(--gray-2);
}
.wc-btn-pink:hover {
  border-color: var(--pink-2);
}
.wc-btn-pink span {
  background-color: var(--pink-2);
}
.wc-btn-light {
  border: 1px solid var(--secondary);
  color: var(--gray-2);
}
.wc-btn-light:hover {
  border-color: var(--white);
}
.wc-btn-light span {
  background-color: var(--white);
}
.wc-btn-black:hover {
  color: var(--white);
  border-color: var(--black-2);
}
.wc-btn-black span {
  background-color: var(--black-2);
}
.wc-btn-dark {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  color: var(--black-2);
  border: 1.3px solid var(--black-2);
  border-radius: 33px;
  padding: 20px 54px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wc-btn-dark:hover {
  color: var(--black-2);
  background-color: var(--white);
  border-color: var(--white);
}
.btn_wrapper,
#btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 300px;
  width: 300px;
  border-radius: 100%;
  margin-left: -40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .btn_wrapper,
  #btn_wrapper {
    width: 220px;
    height: 220px;
    margin-left: -25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .btn_wrapper,
  #btn_wrapper {
    width: 190px;
    height: 190px;
    margin-left: -10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn_wrapper,
  #btn_wrapper {
    width: 180px;
    height: 180px;
    margin-left: -5px;
  }
}
@media only screen and (max-width: 767px) {
  .btn_wrapper,
  #btn_wrapper {
    height: 175px;
    width: 175px;
    margin-left: -2.5px;
  }
}

.btn-item {
  position: absolute;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service__top-btn .btn_wrapper,
  .service__top-btn #btn_wrapper {
    width: 170px;
    height: 170px;
  }
  .service__top-btn .btn_wrapper .btn-item,
  .service__top-btn #btn_wrapper .btn-item {
    top: 0;
    left: 0;
  }
}
.about8__content .about_btn {
  font-size: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about8__content .about_btn {
    font-size: 18px;
  }
}
.about_btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0;
  background-color: black;
}

.axtratheme-btn {
  background: linear-gradient(145deg, #e0e0e0, #b0b0b0);
  color: #000 !important;
  font-weight: 700;

  margin-top: 15%;
  margin-left: 22%;
}

.axtratheme-btn:hover {
  background: #ed1d2496 !important;
  /* background-color: #31B6D1; */
  color: #fff !important;
  font-weight: 900;
}

a {
  box-shadow: none;
  text-decoration: none !important;
  /* cursor: none !important; */
}

/* custom pointer */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot,
.cursor-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  z-index: 2;
}

.cursor-circle {
  width: 40px;
  height: 40px;
  border: 1.5px solid #fff;
  background: transparent;
  z-index: 1;
}
/* body {
  cursor: none !important;
} */
.custom-icon {
  width: 230px;
  height: auto;
  display: inline-block;
  /* margin-bottom: 20px;  */
}
.marquee-container {
  background: white;
  padding-bottom: 20px;
  /* border-top: 2px solid #ED1C24; */
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding-top: 60px;
}

.marquee-track {
  display: flex;
  /* width: max-content; */
  animation: scroll-left 20s linear infinite;
}

.testimonial-item {
  flex: 0 0 auto;
  text-align: center;
  margin-right: 100px;
}

.testimonial-item img {
  width: 220px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* carousal */
.owl-carousel .owl-item img {
  margin: 0 auto 30px auto;
  /* width: 220px;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); */
}
/* certification */
.certificates-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap; /* Prevent wrap */
  gap: 40px;
  overflow-x: none; /* optional: allows scrolling if too wide on small screens */
  padding: 20px 0;
}
/* html {
  scroll-behavior: smooth;
} */

.certificate-item img {
  /* max-height: 100px; */
  height: auto;
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.certificate-item img:hover {
  transform: scale(1.4);
}
.col-md-2 {
  padding: 0px !important;
}
@media (max-width: 900px) {
  .certificates-row {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap !important;
  }

  .certificate-item {
    width: 100% !important;
    max-width: 300px; /* Optional: control max width */
    margin-bottom: 20px;
  }

  .certificate-item img {
    width: 100%;
    max-width: 100%;
  }
}

/* showcase */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--main-bg);
}

#decor-categories {
  /* background: linear-gradient(132deg, #5d521b 0%, #000000eb 100%) !important; */
  position: relative;
  padding: 3rem 0;
}

body.dark-theme #decor-categories {
  background: linear-gradient(135deg, #000 0%, #ffd700 100%) !important;
}

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

.gallery-item {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #111;
  min-height: 300px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2); */
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--gold);
  cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .material-icons {
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay .material-icons {
  transform: scale(1.2);
}

/* CTA Card in Gallery */
.border-gold {
  border-color: var(--gold) !important;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.border-gold:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: #ffed4a !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    margin-bottom: 1.5rem;
  }

  #decor-gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* Decor Categories Styles */
#decor-categories {
  /* background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); */
  position: relative;
  overflow: hidden;
}

#decor-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 2rem;
  /* background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); */
  gap: 3rem;
}

.decor-category {
  width: 100%;
  max-width: 1200px;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.decor-category:first-child {
  border-top: none;
}

.decor-category h3 {
  font-size: 2.5rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
}

/* Decor Header Line */
.decor-header-line {
  width: 100px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}

.decor-header-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
  transform: translate(-50%, -50%);
}

.decor-category h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin: 1rem auto;
  background: red;
  /* background: var(--gold); */
}

/* Decor Gallery Styles */
#decor-categories {
  /* background: linear-gradient(132deg, #5d521b 0%, #000000eb 100%) !important; */
  position: relative;
  padding: 2rem 0;
}

.decor-category {
  background-color: #d6cccc3d;
  margin-bottom: 3rem;
  /* background: rgba(0, 0, 0, 0.2); */
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.decor-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.decor-category h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* Large screens - 3 columns */
@media (min-width: 1200px) {
  .gallery-item {
    height: 350px;
    width: 100%;
  }

  .decor-category h3 {
    font-size: 1.5rem;
  }
}

/* Medium screens - 2 columns */
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-item {
    height: 400px;
  }

  .decor-category h3 {
    font-size: 1.7rem;
  }

  .decor-category {
    margin-bottom: 4rem;
  }
}

/* Small screens - 1 column */
@media (max-width: 767px) {
  .gallery-item {
    height: 450px;
  }

  .decor-category h3 {
    font-size: 1.9rem;
  }

  .decor-category {
    margin-bottom: 5rem;
  }
}

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

.gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .material-icons {
  font-size: 4rem;
  color: var(--gold);
}

.fa-2x {
  font-size: 2em;
}
#social-icon a {
  margin-right: 10px;
}
strong {
  color: #f23a2e;
  font-weight: 600;
}

/* payment details */
.shipping-payment-container {
  display: flex;
  gap: 40px;
  padding: 60px 40px;
  background-color: #fafafa;
}

.shipping-column {
  flex: 1;
  max-width: 40%;
}

.payment-column {
  flex: 1;
}

.shipping-column h2,
.payment-column h2 {
  /* font-size: 24px; */
  font-weight: 600;
  margin-bottom: 20px;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shipping-grid img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  padding: 10px;
  background: white;
  object-fit: contain;
}

.payment-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .shipping-payment-container {
    flex-direction: column;
  }

  .shipping-column,
  .payment-column {
    max-width: 100%;
  }

  .shipping-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* certificaiton transition */

@keyframes dropBounce {
  0% {
    transform: translateY(-500px);
    opacity: 0;
  }
  60% {
    transform: translateY(30px);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* .certificate-item {
  opacity: 0;
  animation: dropBounce 1.2s ease-out forwards;
} */

/* Shorter delays for a faster sequence */
/* .certificate-item:nth-child(1) {
  animation-delay: 0s;
}
.certificate-item:nth-child(2) {
  animation-delay: 0.15s;
}
.certificate-item:nth-child(3) {
  animation-delay: 0.3s;
}
.certificate-item:nth-child(4) {
  animation-delay: 0.45s;
}
.certificate-item:nth-child(5) {
  animation-delay: 0.6s;
}
.certificate-item:nth-child(6) {
  animation-delay: 0.75s;
} */

/* payment details transition */
@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* .payment-column p {
  opacity: 0;
  animation: slideInRight 0.3s ease-out forwards;
}

.payment-column p:nth-of-type(1) {
  animation-delay: 0s;
}

.payment-column p:nth-of-type(2) {
  animation-delay: 0.15s;
}

.payment-column p:nth-of-type(3) {
  animation-delay: 0.3s;
}

.payment-column p:nth-of-type(4) {
  animation-delay: 0.45s;
} */

.certificate-item,
.payment-column p {
  opacity: 0;
}
/* Triggered animations */
.certificate-item.animate {
  animation: dropBounce 1.2s ease-out forwards;
}

.payment-column p.animate {
  animation: slideInRight 0.3s ease-out forwards;
}

/* Optional delays */
.payment-column p:nth-of-type(1).animate {
  animation-delay: 0s;
}
.payment-column p:nth-of-type(2).animate {
  animation-delay: 0.3s;
}
.payment-column p:nth-of-type(3).animate {
  animation-delay: 0.45s;
}
/* .payment-column p:nth-of-type(4).animate { animation-delay: 0.45s; } */

.certificates-row .certificate-item:nth-of-type(1).animate {
  animation-delay: 0s;
}
.certificates-row .certificate-item:nth-of-type(2).animate {
  animation-delay: 0.15s;
}
.certificates-row .certificate-item:nth-of-type(3).animate {
  animation-delay: 0.3s;
}
.certificates-row .certificate-item:nth-of-type(4).animate {
  animation-delay: 0.45s;
}
.certificates-row .certificate-item:nth-of-type(5).animate {
  animation-delay: 0.6s;
}
.certificates-row .certificate-item:nth-of-type(6).animate {
  animation-delay: 0.75s;
}

/* @keyframes dropBounce {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
} */
/* our shipping transition */
@keyframes jello {
  0% {
    transform: none;
  }
  30% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  40% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  50% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  65% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  75% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  100% {
    transform: none;
  }
}

.shipping-grid img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shipping-grid img.animate {
  animation: jello 0.9s ease;
  opacity: 1;
}

i {
  color: #f23a2e;
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #333;
  color: white;
  border-radius: 50%;
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.3s;
}

.scroll-to-top:hover {
  background-color: #555;
  transform: scale(1.1);
}

.scroll-to-top i {
  font-size: 20px;
  margin: 15px;
}

/* Inquiry Button */
#inquiry-side {
  position: fixed;
  right: 28px;
  bottom: 138px; /* above your whatsapp/scroll buttons adjust as needed */
  z-index: 12000;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid red;
}
#inquiry-side button {
  display: flex;
  align-items: center;

  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 10px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  gap: 8px;
}
#inquiry-side i {
  font-size: x-large;
  width: 30px;
  transition: transform 0.3s ease;
}
@media (max-width: 480px) {
  #inquiry-side {
    right: 10px;
    bottom: 90px;
  }
  .inquiry-content {
    width: 100%;
    max-width: 100%;
  }
}

/* WhatsApp Button */
#whatsapp-button {
  position: fixed;
  bottom: 80px;
  right: 28px;
  z-index: 9999;
}

#whatsapp-button button {
  display: flex;
  align-items: center;
  background-color: rgb(45, 183, 66);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 10px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  gap: 8px;
}

#whatsapp-button img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

#toggle-button span {
  transition: opacity 0.3s ease;
}

/* Popup */
#whatsapp-popup {
  position: fixed;
  bottom: 150px;
  right: 29px;
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;

  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 0.4s ease;
}

#whatsapp-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Header */
.popup-header {
  background: rgb(45, 183, 66);
  color: black;
  padding: 15px;
  font-family: sans-serif;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.popup-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.popup-header p {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: rgb(217, 235, 198);
}

.popup-header .whatsapp-text {
  color: #ffffff;
  font-weight: bold;
}

/* Body */
.popup-body {
  padding: 15px;
  font-family: sans-serif;
}

.response-time {
  font-size: 11px;
  color: #33333399;
  margin-bottom: 10px;
}

/* Contact Cards */
.contact {
  display: flex;
  align-items: center;
  background: #f3f3f3;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.contact:hover {
  background: #e9fdf2;
}

.contact img.icon-left {
  width: 60px;
  margin-right: 10px;
}

.contact img.icon-right {
  margin-left: auto;
  width: 20px;
}

.contact-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.contact-name {
  font-size: 14px;
  font-weight: bold;
  color: #d81b60;
}

/* Float-in Animation */
@keyframes floatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.popup-close {
  display: flex;
  justify-content: flex-end;
  padding: 10px 15px;
  background: #ffffff;
}

.popup-close button {
  background: #25d366;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  line-height: 32px;
  text-align: center;
}

/* circle transition  */
/* Icon rotation container */
.icon-container {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease;
}

.icon-containerr {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease;
}

/* Rotate clockwise */
.icon-container.rotate-open {
  transform: rotate(360deg);
}

/* Rotate counterclockwise */
.icon-container.rotate-close {
  transform: rotate(-360deg);
}

/* Optional: fade for text */
#toggle-button span {
  transition: opacity 0.4s ease;
}
.contact {
  opacity: 0;
  transform: translateY(30px);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

button:focus {
  outline: none !important;
}

/* custom header */
/* Container styling */
.custom-heading {
  position: relative;
  background-color: lavenderblush; /* Light background */
  padding: 1rem 1rem;
  overflow: hidden;
  border-radius: 8px;
}

/* Vertical line on the left */
.custom-heading .line {
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 4px;
  background-color: #e74c3c; /* Red or any accent */
  z-index: 2;
}

/* Heading style */
.custom-heading h2 {
  font-size: 2.5rem;
  color: #333 !important;
  margin-left: 1.5rem; /* To give space after the line */
  position: relative;
  z-index: 3;
}

/* border-left: 3px solid red;
        background-color: lavenderblush; */

/* .owl-carousel .owl-stage {
  transition-timing-function: linear !important;
}

.owl-carousel .owl-item {
  transition: transform 0.5s linear !important;
} */

/* our process */
#our-process {
  margin-top: 30px;
  margin-bottom: 60px;
}
.brxe-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  font-family: "Outfit";
}
.brxe-container {
  display: flex;
  flex-direction: column;
  padding: 0 1.6rem;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
.process-steps {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 25px;
  column-gap: 20px;
}
.brxe-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.brxe-divider .line {
  width: 50px;
  height: 2px;
  background-color: #f23a2e;
}
.brxe-heading {
  width: auto;
  margin-bottom: 25px;
  width: 100%;
  align-self: flex-start;
  text-align: center;
  font-weight: 300;
  /* font-weight: 700; */
  font-family: "Outfit";
  color: #363636;
}
.brxe-block {
  flex: 1 1 30%;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brxe-image {
  width: 35%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}
.brxe-text p:first-child {
  margin-bottom: 5px;
}
.brxe-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #363636;
  font-family: "Outfit";
  font-weight: 700;
}
.brxe-text {
  font-family: "Outfit", sans-serif;
}
.brxe-text p {
  text-align: center;
  font-family: "Outfit";
  color: #363636;
  font-size: 15px;
  line-height: 1.7;
}
.brxe-button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 30px;
  background-color: #f23a2e;
  /* background-color: #68479c; */
  /* color: white; */
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
}
.brxe-button strong {
  color: white !important;
}

@media screen and (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .brxe-block {
    width: 100%;
    padding: 20px 0;
  }
}

/* Machinery Section Styles */
#machinery-section {
  display: block;
  width: 100%;
  margin-top: 72px;
}

.machinery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Outfit", sans-serif;
}

.machinery-container {
  display: flex;
  flex-direction: column;
  padding: 0 1.6rem;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

.machinery-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.machinery-divider .line {
  width: 32px;
  height: 2px;
  background-color: #f23a2e;
}

.machinery-heading {
  color: #363636;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.fw-500 {
  font-weight: 600;
}

.machinery-text {
  text-align: center;
  /* max-width: 800px; */
  /* margin-bottom: 30px; */
  color: #616161;
  /* font-size: 15px; */
  line-height: 1.7;
  /* text-align: center; */
  font-size: 18px;
  /* color: #616161; */
  /* margin-top: 18px; */
  margin-right: auto;
  margin-bottom: 36px;
  margin-left: auto;
  max-width: 924px;
  font-weight: 300;
}

.machinery-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .machinery-text {
    padding: 0 10px;
  }
}

@media screen and (min-width: 1300px) {
  .machinery-container {
    max-width: 1300px;
  }
}

/*  */
.bgvideo {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.bgvideo .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bgvideo .overlay {
  content: "";
  background-color: rgba(0, 0, 0, 0.4); /* Same as .bgimg:before */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}

.bgvideo > .container {
  z-index: 2;
  position: relative;
}

.bgvideo h2 {
  color: #fff;
  font-size: 3rem;
  margin-top: 0;
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .bgvideo h2 {
    font-size: 2rem;
  }
}

.bgvideo .lead {
  color: #fff;
}

.bgvideo a {
  color: #fff;
  text-decoration: underline;
}

.bgvideo a:hover {
  text-decoration: none;
}
.section-centered-carousel {
  background-color: #fafafa;
}
#showcase-section {
  padding-bottom: 0px !important;
}
section-centered-carousel {
  padding: 0 !important;
}

/* Modal container */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* backdrop */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: #00000075 !important;
}

/* modal content box */
.modal-content {
  position: relative;
  z-index: 10001;
  width: 96%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(18px) scale(0.99);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  outline: none;
}

.modal.show {
  display: flex;
}
.modal.show .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* close button */
.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 26px;
  width: 40px; /* make it square */
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  display: inline-flex; /* centers the inner content */
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #cccccc;
}

.close-button {
  background-color: #cccccc !important;
}

.close-button:hover,
.close-button:focus {
  /* color: #000; */
  text-decoration: none !important;
  cursor: pointer !important;
  background-color: #999999 !important; /* Darker gray on hover */
}
.submit-btn:hover {
  background-color: #b50202 !important;
}

/* header text */
.divh2 h2 {
  margin: 0 0 6px;
  font-size: 30px;
  justify-self: center;
  font-weight: bold;
}
.divh2 p {
  margin: 0 0 12px;
  color: #555;
}

/* actions */
.actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}
.btn {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  border: 1px solid #cfcfcf;
  cursor: pointer;
  background: #f5f5f5;
}
.btn-primary {
  background: #f23a2e;
  color: white;
  border-color: transparent;
}

/* simple form-control styles if not using framework */
.form-control {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

/* feedback */
.form-feedback {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #0a0;
}

/* responsive */
@media (max-width: 480px) {
  .modal-content {
    padding: 14px;
  }
}
