*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerheight: 100px;
  --headerpadding: 15px;
  --headerfixed: 156px;
  --headerstripfixed: 0px;
  --footerstrip: 66px;
  --sectionpadding: 50px 0 60px;
  --secondary: #000;
  --primary: #0D2054;
  --white: #fff;
  --text: #4d4d4d;
  --gray: #151414;
  --bggray: #E8EBFF;
  --triangle: 10px;
  --triangle2: 20px;
  --container:1750px;
  --containerfluid: 4rem;
  --arrowsize: 20px;
  --space: 11px;
}
@media (max-width: 767px) {
  :root {
    --space: 5px;
  }
}

body.overflow-hidden {
  overflow: hidden;
  margin-right: 8px;
}
@media (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 8px);
}
@media (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins";
  font-family-scroll-behavior: smooth;
  font-weight: 400;
}

body {
  overflow-x: hidden;
  width: 100%;
  background: #000;
}
body.hidden {
  overflow: hidden;
  margin-right: 8px;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
}

.fancybox__container {
  z-index: 9999 !important;
}

.container-main {
  padding: 4px var(--containerfluid);
}
@media (max-width: 991px) {
  .container-main {
    padding: 4px 30px;
  }
}
@media (max-width: 540px) {
  .container-main {
    padding: 4px 18px;
  }
}

@media (max-width: 991px) {
  main {
    overflow-x: hidden;
  }
}

a {
  transition: 0.3s ease;
  cursor: pointer;
  font-family: "Circular Pro Book";
  font-size: 1.2rem;
}

.ham-btn {
  margin-left: 0;
}
@media (max-width: 768px) {
  .ham-btn {
    margin-left: 24px;
  }
}

.arrow {
  margin-left: 12px;
}
@media (max-width: 540px) {
  .arrow {
    width: 20px;
  }
}

.center {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 38px;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .center {
    gap: 24px;
  }
}

.custom-margin {
  margin-top: 30px;
}

.btn, .regBtn-outline-navy, .regBtn-outline, .regBtn-blue, .regBtn-violet2, .regBtn-violet, .regBtn-danger, .regBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  background-color: transparent;
  color: inherit;
}
@media (max-width: 540px) {
  .btn, .regBtn-outline-navy, .regBtn-outline, .regBtn-blue, .regBtn-violet2, .regBtn-violet, .regBtn-danger, .regBtn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.btn::before, .regBtn-outline-navy::before, .regBtn-outline::before, .regBtn-blue::before, .regBtn-violet2::before, .regBtn-violet::before, .regBtn-danger::before, .regBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.btn:hover::before, .regBtn-outline-navy:hover::before, .regBtn-outline:hover::before, .regBtn-blue:hover::before, .regBtn-violet2:hover::before, .regBtn-violet:hover::before, .regBtn-danger:hover::before, .regBtn:hover::before {
  transform: scaleX(1);
}
.btn svg, .regBtn-outline-navy svg, .regBtn-outline svg, .regBtn-blue svg, .regBtn-violet2 svg, .regBtn-violet svg, .regBtn-danger svg, .regBtn svg {
  margin-right: 12px;
}
.btn svg path, .regBtn-outline-navy svg path, .regBtn-outline svg path, .regBtn-blue svg path, .regBtn-violet2 svg path, .regBtn-violet svg path, .regBtn-danger svg path, .regBtn svg path {
  transition: fill 0.4s ease;
}

.regBtn {
  background: var(--white);
  color: var(--secondary);
}
.regBtn::before {
  background-color: var(--secondary);
}
.regBtn:hover {
  background-color: transparent;
  color: var(--white);
}
.regBtn:hover::before {
  background-color: var(--secondary);
}

.regBtn-danger {
  background: linear-gradient(270deg, #B42323 0%, #E5292C 100%);
  color: var(--white);
}
.regBtn-danger::before {
  background-color: #E5292C;
}
.regBtn-danger:hover {
  background-color: transparent;
  color: var(--white);
}
.regBtn-danger:hover::before {
  background-color: #E5292C;
}

.regBtn-violet {
  background: linear-gradient(270deg, #C83A99 0%, #993BF8 100%);
  color: var(--white);
}
.regBtn-violet::before {
  background-color: #993BF8;
}
.regBtn-violet:hover {
  background-color: transparent;
  color: var(--white);
}
.regBtn-violet:hover::before {
  background-color: #993BF8;
}

.regBtn-violet2 {
  background: linear-gradient(270deg, #C83A99 0%, #993BF8 100%);
  color: var(--white);
  background: linear-gradient(270deg, #6600DB 0%, #993BF8 100%);
}
.regBtn-violet2::before {
  background-color: #993BF8;
}
.regBtn-violet2:hover {
  background-color: transparent;
  color: var(--white);
}
.regBtn-violet2:hover::before {
  background-color: #993BF8;
}

.regBtn-blue {
  background: linear-gradient(270deg, #419DE9 0%, #1873A7 100%);
  color: var(--white);
}
.regBtn-blue::before {
  background-color: #1873A7;
}
.regBtn-blue:hover {
  background-color: transparent;
  color: var(--white);
}
.regBtn-blue:hover::before {
  background-color: #1873A7;
}

.regBtn-outline {
  background: transparent;
  color: white;
  border: 1px solid white;
}
.regBtn-outline::before {
  background-color: white;
}
.regBtn-outline:hover {
  background-color: transparent;
  color: black;
}
.regBtn-outline:hover::before {
  background-color: white;
}

.regBtn-outline-navy {
  background: transparent;
  color: #001F4D;
  border: 1px solid #001F4D;
}
.regBtn-outline-navy::before {
  background-color: #001F4D;
}
.regBtn-outline-navy:hover {
  background-color: transparent;
  color: var(--white);
}
.regBtn-outline-navy:hover::before {
  background-color: #001F4D;
}

.on-mobile {
  display: block;
}
@media (max-width: 991px) {
  .on-mobile {
    display: none;
  }
}

.on-desktop {
  display: none;
}
@media (max-width: 991px) {
  .on-desktop {
    display: block;
  }
}
.on-desktop h2 {
  padding-top: 30px;
  text-align: center;
}

.py {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .py {
    padding: 45px 0;
  }
}

.header-fixed {
  height: 90px;
  background-color: #181818;
  z-index: 999999 !important;
}
@media (max-width: 540px) {
  .header-fixed {
    height: 58px;
  }
}

.img-hover-scale {
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.img-hover-scale img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.img-hover-scale:hover img {
  transform: scale(1.08);
}

.silverShouth {
  font-family: "SilverSouthScript";
}
.silverShouth::first-letter {
  text-transform: uppercase;
}

span {
  font-family: "Circular Pro Book";
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: var(--white);
}

h1, h2, h3 {
  font-family: "Optima";
}

h4, h5, h6 {
  font-family: "Circular Pro Book";
  font-weight: 500;
}

h1 {
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 46px;
  }
}

h2 {
  font-family: "Optima";
  font-size: 45px;
  line-height: 1.25;
}
@media (max-width: 540px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 365px) {
  h3 {
    font-size: 22px;
  }
}

.heading h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .heading h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .heading h3 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  .heading h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 365px) {
  .heading h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 1300px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  h6 {
    font-size: 16px;
    line-height: 22px;
  }
}

.cart {
  width: 290px;
}

p {
  color: var(--gray);
  font-family: "Circular Pro Book";
  font-size: 16px;
}
@media (max-width: 540px) {
  p {
    font-size: 14px;
  }
}

.bg {
  height: 100%;
}

a {
  color: #fff;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

svg {
  vertical-align: middle;
  transition: 0.3s ease;
}

.invert-img {
  transform: scaleX(-1);
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.owl-prev img {
  transform: scaleX(-1);
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
}
.item-md figure img {
  transition: 0.5s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
  max-width: 435px;
}
.model .close {
  position: absolute;
  top: 0;
  right: 0;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 999999;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
@media (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  opacity: 1;
  transform: translateY(0%);
}

.banner, .home-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.banner img,
.banner video, .home-banner img,
.home-banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.banner::before, .home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(366deg, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, 0.94) 84%), linear-gradient(190deg, rgba(0, 0, 0, 0) 24.5%, rgba(0, 0, 0, 0.93) 70%);
}

.banner-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .banner-wrapper {
    bottom: 7%;
  }
}
@media (max-width: 540px) {
  .banner-wrapper {
    bottom: 3%;
  }
}

.banner::before {
  background: linear-gradient(3deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.94) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 0.82) 95%);
}

.banner, .home-banner {
  height: 100vh;
}
@media (max-width: 991px) {
  .banner, .home-banner {
    height: 65vh;
  }
}
@media (max-width: 768px) {
  .banner, .home-banner {
    height: 55vh;
  }
}
@media (max-width: 540px) {
  .banner, .home-banner {
    height: 56vh;
  }
}
@media only screen and (max-width: 420px) {
  .banner, .home-banner {
    height: 50vh;
  }
}

.play-btn {
  --btnsize: 50px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  width: 60px;
  height: 60px;
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: transparent;
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  display: none;
}

.svg path[fill] {
  fill: currentColor;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-hovleft:hover svg {
  transform: translateX(-3px);
}

.btn-hovright:hover svg {
  transform: translateX(3px);
}

.ahov:hover {
  color: var(--prime) !important;
}

.aWhover:hover {
  color: #fff !important;
  padding-left: 5px;
}

.flex .colA {
  padding-left: 0;
}

.model.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
  z-index: 99999 !important;
}
.model.enquire-pop.is-open {
  transform: translateX(0%);
}
.model.enquire-pop button.close {
  top: 25px;
  right: 25px;
}
.model.enquire-pop .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.model.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.model.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.model.enquire-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--secondary);
  font-weight: 500;
  text-transform: capitalize;
}
.model.enquire-pop .model-body .title p {
  color: var(--gray);
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
.model.enquire-pop .model-body .form {
  --gaptb: 15px;
}
.model.enquire-pop .model-body .form .sbmt-grp {
  width: 100%;
}
.model.enquire-pop .model-body .form .sbmt-grp a {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 10px 22px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
.model.enquire-pop .model-body .form .sbmt-grp a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  z-index: -2;
}
.model.enquire-pop .model-body .form .sbmt-grp a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
.model.enquire-pop .model-body .form .sbmt-grp a:hover::before {
  width: 100%;
}
.model.enquire-pop .model-body .form .sbmt-grp a::after {
  background: #4459C5;
}
.model.enquire-pop .model-body .form .sbmt-grp a::before {
  background: #1B0E96;
}

.ham-pop-img {
  margin-right: -133px;
  margin-top: 95px;
}

.model.ham-pop {
  right: 0;
  max-width: 480px;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: 9999999 !important;
}
.model.ham-pop.is-open {
  transform: translateX(0%);
}
.model.ham-pop .close {
  top: 30px;
  right: 25px;
}
.model.ham-pop .close path {
  stroke: var(--text) !important;
  stroke-width: 2 !important;
}
.model.ham-pop .model-body {
  padding: 0px 40px 30px;
  margin-top: 85px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.model.ham-pop .model-body::-webkit-scrollbar {
  width: 6px;
  background: var(--white);
}
.model.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.ham-pop .model-body .ico {
  max-width: 70px;
  margin-bottom: 55px;
  line-height: 0;
}
.model.ham-pop .model-body .ico img, .model.ham-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.model.ham-pop .model-body .nav-list {
  flex: 1;
}
.model.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
}
.model.ham-pop .model-body .nav-list > li.desktop-non {
  display: none;
}
@media (max-width: 991px) {
  .model.ham-pop .model-body .nav-list > li.desktop-non {
    display: block;
  }
}
.model.ham-pop .model-body .nav-list > li.hasDropdown {
  position: relative;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico {
  position: absolute;
  right: 0;
  top: 4px;
  --sizeplu: 20px;
  height: var(--sizeplu);
  width: var(--sizeplu);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--prime);
  transition: 0.5s ease;
  transform: rotate(90deg);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--prime);
  transition: 0.5s ease;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico.active::before {
  transform: rotate(0deg);
  opacity: 0;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham {
  display: none;
  padding-top: 15px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  max-height: 226px;
  overflow-y: auto;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar {
  width: 4px;
  background: #fff;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar-thumb {
  background-color: #1BB6F0;
  border-radius: 4px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li {
  padding: 4px 0;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a {
  font-size: 15px;
  color: #000;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a:hover {
  color: var(--prime);
}
.model.ham-pop .model-body .nav-list > li > a {
  font-size: 20px;
  line-height: 1.06;
  color: #000;
  display: inline-block;
  font-weight: 500;
}
.model.ham-pop .model-body .nav-list > li > a:hover {
  color: var(--prime);
}
.model.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.model.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  color: var(--text);
}
.model.ham-pop .model-body .bottom-list .social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--prime);
}
.model.ham-pop .model-body .bottom-list .social-icons a::before {
  border-radius: 50%;
  transform: scale(1.5);
  z-index: -1;
  opacity: 0;
  transition: 0.2s ease;
}
.model.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 4px;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg {
  width: 24px;
  height: 24px;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path {
  transition: none;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path[stroke], .model.ham-pop .model-body .bottom-list .social-icons a svg path[fill=none] {
  stroke: currentColor;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path[fill] {
  fill: currentColor;
}
.model.ham-pop .model-body .bottom-list .social-icons a:hover {
  color: #dadada;
}
.model.ham-pop .model-body .bottom-list .social-icons a:hover::before {
  transition: 0.5s ease;
  opacity: 1;
  transform: scale(1);
}

.sticky-action-bar {
  display: none;
}
@media (max-width: 768px) {
  .sticky-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: var(--primary);
    justify-content: space-between;
    align-items: center;
  }
  .sticky-action-bar > div {
    display: flex;
    flex: 1;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
    border-top: 1px solid rgba(133, 133, 133, 0.5);
  }
  .sticky-action-bar > div a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
  }
  .sticky-action-bar > div a svg {
    width: 20px;
    height: 20px;
  }
  .sticky-action-bar > div a svg path {
    fill: var(--white);
  }
  .sticky-action-bar > div a p {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
  }
  .sticky-action-bar > div:nth-child(2) {
    border-left: 1px solid rgba(133, 133, 133, 0.5);
    border-right: 1px solid rgba(133, 133, 133, 0.5);
  }
}

.about {
  background: linear-gradient(90deg, rgba(28, 28, 28, 0.9411764706) 20%, #000000 100%) !important;
  color: #fff;
}

.card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1024px) {
  .card {
    gap: 45px;
  }
}
@media (max-width: 991px) {
  .card {
    gap: 27px;
    grid-template-columns: 1fr;
  }
}
.card .overlay-parent {
  position: relative;
  width: 100%;
  height: 100%;
}
.card .overlay-parent img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .overlay-parent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.card .overlay-parent .overlay-content {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  gap: 120px;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}
@media (max-width: 1366px) {
  .card .overlay-parent .overlay-content {
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .card .overlay-parent .overlay-content {
    gap: 64px;
  }
}
@media (max-width: 540px) {
  .card .overlay-parent .overlay-content {
    gap: 36px;
  }
}
.card .overlay-parent .overlay-content h4 {
  color: var(--white);
  font-size: 4rem;
  font-family: "SilverSouthScript";
}
@media (max-width: 768px) {
  .card .overlay-parent .overlay-content h4 {
    font-size: 4.5rem;
  }
}
@media (max-width: 540px) {
  .card .overlay-parent .overlay-content h4 {
    font-size: 3.2rem;
  }
}
.card .overlay-parent .overlay-content p {
  color: var(--white);
  font-size: 1.8rem;
  margin-left: 120px;
}
@media (max-width: 991px) {
  .card .overlay-parent .overlay-content p {
    font-size: 30px;
  }
}
@media (max-width: 540px) {
  .card .overlay-parent .overlay-content p {
    font-size: 18px;
  }
}
.card .card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 991px) {
  .card .card-content {
    text-align: center;
  }
}
@media (max-width: 540px) {
  .card .card-content {
    gap: 0;
  }
}
.card .card-content h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #4C3B05 -44%, #E2B522 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1024px) {
  .card .card-content h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 540px) {
  .card .card-content h2 {
    font-size: 29px;
  }
}
.card .card-content p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.card .card-content .card-media {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 45px;
}
@media (max-width: 540px) {
  .card .card-content .card-media {
    align-items: center;
  }
}
.card .card-content .card-media .icon-flex {
  display: flex;
  gap: 20px;
}
@media (max-width: 540px) {
  .card .card-content .card-media .icon-flex {
    align-items: center;
    flex-direction: column;
  }
}
.card .card-content .card-media .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.card .card-content .card-media .social-icons > .line {
  width: 1px;
  height: 18px;
  background: #fff;
}
.card .card-content .card-media .num {
  font-size: 16px;
  font-weight: 500;
}
.card .card-content .card-media img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(99%) saturate(681%) hue-rotate(359deg) brightness(104%) contrast(104%);
}
.card .card-content .card-media p {
  font-family: "SilverSouthScript";
  font-size: 2.5rem;
  color: var(--gray);
}
.card .card-content .card-media svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .card {
    grid-template-columns: 1fr;
  }
}

.ham-pop-menu ul li h3 {
  margin: 14px 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
}

.social-media {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.social-media a {
  color: var(--secondary);
}
.social-media .social-icons {
  display: flex;
  gap: 20px;
}

.tab-nav {
  cursor: default;
  display: flex;
  gap: 1rem;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
  border-radius: 6px;
  background-color: transparent;
  color: #a3a3a3;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.tab-nav [data-tab].active {
  color: #ffffff;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs {
  transition: opacity 0.3s ease;
}
.tab-nav-content .tabs.active {
  position: relative;
  opacity: 1;
  height: auto;
  pointer-events: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  overflow: visible;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.yellow-btn {
  background-color: #E2B522;
  color: var(--black);
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease-out;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn, .regBtn, .regBtn-danger, .regBtn-violet, .regBtn-violet2, .regBtn-blue, .regBtn-outline, .regBtn-outline-navy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  background-color: transparent;
  color: red;
}
@media (max-width: 540px) {
  .btn, .regBtn, .regBtn-danger, .regBtn-violet, .regBtn-violet2, .regBtn-blue, .regBtn-outline, .regBtn-outline-navy {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.btn::before, .regBtn::before, .regBtn-danger::before, .regBtn-violet::before, .regBtn-violet2::before, .regBtn-blue::before, .regBtn-outline::before, .regBtn-outline-navy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.btn:hover::before, .regBtn:hover::before, .regBtn-danger:hover::before, .regBtn-violet:hover::before, .regBtn-violet2:hover::before, .regBtn-blue:hover::before, .regBtn-outline:hover::before, .regBtn-outline-navy:hover::before {
  transform: scaleX(1);
  color: red;
}
.btn svg, .regBtn svg, .regBtn-danger svg, .regBtn-violet svg, .regBtn-violet2 svg, .regBtn-blue svg, .regBtn-outline svg, .regBtn-outline-navy svg {
  margin-right: 12px;
}
.btn svg path, .regBtn svg path, .regBtn-danger svg path, .regBtn-violet svg path, .regBtn-violet2 svg path, .regBtn-blue svg path, .regBtn-outline svg path, .regBtn-outline-navy svg path {
  transition: fill 0.4s ease;
}

.regBtn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid white;
}
.regBtn-outline::before {
  background-color: #ffffff;
}
.regBtn-outline:hover {
  background-color: transparent;
  color: var(--black);
}
.regBtn-outline:hover::before {
  background-color: #ffffff;
}

.swiper-button-lock {
  display: none !important;
}

.blogs-banner {
  overflow: visible;
}

.bg {
  height: 100vh;
}
.bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bg .banner-wrapper {
  bottom: 0;
}
.bg .banner-wrapper .container-main .hero-lower {
  margin-bottom: 40px !important;
}
@media (max-width: 991px) {
  .bg .banner-wrapper .container-main .hero-lower {
    margin-bottom: 12px !important;
  }
}

.blog {
  padding: 80px 0;
}

.blog-slider-parent {
  position: relative;
}
.blog-slider-parent .swiper-group {
  top: 50%;
  right: -4%;
}

.blog-head {
  display: flex;
  justify-content: space-between;
}

.dates-blogHero {
  width: 88%;
  text-align: left;
}
@media (max-width: 1024px) {
  .dates-blogHero {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .dates-blogHero {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .dates-blogHero {
    width: 100%;
    margin: 0 auto;
  }
}
.dates-blogHero h4 {
  font-size: 2rem;
  text-align: left;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .dates-blogHero h4 {
    font-size: 2rem;
    padding: 15px 0;
    line-height: 2.5rem;
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .dates-blogHero h4 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-align: center !important;
  }
}
.dates-blogHero svg {
  width: 24px;
  height: 24px;
  text-align: left !important;
}
.dates-blogHero svg path {
  fill: var(--white);
  stroke: var(--white);
}
.dates-blogHero span {
  font-size: 20px;
  margin: 0;
  text-align: left !important;
  color: var(--white);
  margin-left: 16px;
}

.blog1 {
  height: 602px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1536px) {
  .blog1 {
    height: 345px;
  }
}
@media (max-width: 991px) {
  .blog1 {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .blog1 {
    height: 400px;
  }
}
@media (max-width: 540px) {
  .blog1 {
    height: 345px;
  }
}
.blog1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-in-out;
  transform: scale(1.05);
}
.blog1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 28%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.3s ease-in-out;
}
.blog1:hover img {
  transform: scale(1.1);
}
.blog1:hover .hover-blog {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding-bottom: 20px;
  transform: translateY(0);
}

.blog-content1 {
  position: absolute;
  bottom: 8% !important;
  left: 8% !important;
  width: 85%;
  padding: 0;
  z-index: 9999 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.blog-content1 h4 {
  text-align: left;
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--white);
}
@media (max-width: 1536px) {
  .blog-content1 h4 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.blog-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
@media (max-width: 991px) {
  .blog-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.para-parent {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .para-parent {
    text-align: left;
    width: 100%;
  }
}
.para-parent p {
  margin-bottom: 20px;
  color: #666;
}

.para-content {
  margin-top: 45px;
}
.para-content h5 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  line-height: 2rem;
}

.blog-prev {
  right: 50%;
  transform: rotate(180deg);
}

.blog-next, .blog-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
}
.blog-next img, .blog-prev img {
  width: 12px;
}

.related-blog.py {
  padding-top: 0;
}

.related-heading {
  position: relative;
  margin-bottom: 30px;
}
.related-heading h2 {
  font-size: 2.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .related-heading h2 {
    font-size: 2rem;
  }
}
@media (max-width: 540px) {
  .related-heading h2 {
    font-size: 1.8rem;
    text-align: left;
  }
}
.related-heading .swiper-group {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .related-heading .swiper-group {
    top: 20%;
  }
}
@media (max-width: 540px) {
  .related-heading .swiper-group {
    top: 11%;
  }
}
.related-heading .swiper-group button {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--gray);
  opacity: 0.6;
}
@media (max-width: 991px) {
  .related-heading .swiper-group button {
    width: 40px;
    height: 40px;
  }
}
.related-heading .swiper-group button svg {
  width: 34px;
  height: 34px;
}
.related-heading .swiper-group button svg path {
  fill: #000000 !important;
}

.wrapper {
  --border-radius: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 30px;
  border-radius: var(--border-radius);
}
.wrapper input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: pointer;
}
.wrapper input[type=checkbox]:checked ~ .tooltip {
  width: 145px;
  height: 54px;
  animation: stretch-animation 0.6s ease-out forwards;
  top: -80px;
  opacity: 1;
}
.wrapper .share-toggle {
  display: block;
}
.wrapper .share-toggle svg {
  width: 45px;
  height: 45px;
}
.wrapper .share-toggle svg path {
  fill: var(--white);
  stroke: var(--white);
}
.wrapper .tooltip {
  width: 90px;
  height: 75px;
  border-radius: 70px;
  position: absolute;
  background: #fff;
  z-index: 2;
  padding: 0 15px;
  box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
  opacity: 0;
  top: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: opacity 0.15s ease-in, top 0.15s ease-in, width 0.15s ease-in;
}
.wrapper .tooltip a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.wrapper .tooltip a svg {
  width: 24px;
  height: 26px;
  cursor: pointer;
  fill: currentColor;
  stroke: currentColor;
}
.wrapper .tooltip .arrow {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -8px;
  transform: rotate(45deg);
  z-index: 0;
}

@keyframes stretch-animation {
  0% {
    transform: scale(1, 1);
  }
  10% {
    transform: scale(1.1, 0.9);
  }
  30% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.05, 0.95);
  }
  100% {
    transform: scale(1, 1);
  }
}
.para-parent ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}
.para-parent ul li {
  margin-bottom: 8px;
  font-family: "Circular Pro Book";
  position: relative;
  padding-left: 16px;
  color: #666;
}
.para-parent ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

h5 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 2rem;
}

.category {
  background: #1a1a1a;
  padding: 30px 25px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 12%;
  border-radius: 8px;
}
@media (max-width: 1366px) {
  .category {
    top: 15%;
  }
}
@media (max-width: 991px) {
  .category {
    position: relative;
    top: 0;
    order: 1;
  }
}

.category-title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #333;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Circular Pro Book";
}
@media (max-width: 768px) {
  .category-title {
    font-size: 1rem;
  }
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-item {
  border: none;
  transition: all 0.3s ease;
}
.category-item:last-child {
  margin-bottom: 0;
}
.category-item .category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  color: #ccc;
  text-decoration: none;
  background: #1a1a1a;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin: 0;
  box-shadow: 0 0 0 transparent;
}
.category-item .category-link:hover {
  background: #282828;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.category-item .category-link:hover .category-count {
  background: #fff;
  color: #1a1a1a;
}
.category-item.active .category-link {
  background: #282828;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.category-item.active .category-count {
  background: #ffffff;
  color: #555353;
}

.category-name {
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .category-name {
    font-size: 0.95rem;
  }
}

.category-count {
  background: #2a2a2a;
  color: #999;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 35px;
  text-align: center;
}
@media (max-width: 768px) {
  .category-count {
    font-size: 0.8rem;
    padding: 3px 10px;
  }
}/*# sourceMappingURL=blog-details.css.map */