/*---------------------css code starts here---------------------------*/
/*---------------------Fonts-css-starts-here-----------------------*/

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("ttf");

}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("ttf");
    font-weight: regular;
}

@font-face {
    font-family: 'Friz Quadrata BT';
    font-style: normal;
    font-weight: normal;
    src:url('../fonts/friz-quadrata-bt-58703370183b3.woff') format('woff');
}
    

@font-face {
    font-family: 'Friz Quadrata Bold BT';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/friz-quadrata-bold-bt-587034ce36b86.woff') format('woff');
}

 /*---------------------common-css-starts-here-----------------------*/   
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body,
html {
  font-size: 16px;
 font-family: 'Roboto', sans-serif;
  height: 100%;
  background-color: #000;
  color: #fff;
}

ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1300px;
  width: 100%;
}

.container-fluid {
  max-width: 1500px;
  width: 100%;
}

p {
  font-size: 18px;
  color: #000;
}

h1 {
  font-size: 6.25rem;
  text-transform: uppercase;
  font-family: 'Friz Quadrata Bold BT';
  color: #562e91;
  font-weight: bold;
}

h2 {
  font-size: 3.125rem;
  text-transform: uppercase;
 font-family: 'Friz Quadrata Bold BT';
  color: #fff !important;
  /*font-weight: bold;*/
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
  font-family: 'Friz Quadrata Bold BT';

}

h4 {
  font-size: 1.375rem;
  font-family: 'Friz Quadrata Bold BT';
}

h5 {
  font-size: 2.438rem;
  font-family: 'Friz Quadrata Bold BT';
}

h6 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Friz Quadrata Bold BT';
}

.text-red {
  color: #f5c829;
}

a,
i {
  cursor: pointer;
  color: #f5c829;
  text-decoration: none;
}

.p-70 {
  padding: 4.375rem 0;
}

.p-30 {
  padding: 1.875rem 0;
}

.p--30 {
  padding: 30px;
}

.pl-25 {
  padding-left: 25%;
}

.pb-0 {
  padding-bottom: 0;
}

.pt-20{
  padding-top: 20px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-20{
  padding-bottom: 20px;
}

.pb-30{
  padding-bottom: 30px;
}

.hide {
  display: none;
}
.text-left{
  text-align: left;
}

.custom-btn {
    border-radius: 0;
    background-color: #fff;
    padding: 10px 30px;
    position: relative;
    z-index: 1;
    border: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    text-transform: uppercase;
    border: 2px solid #f5c829;
    color: #000 !important;
    position: relative;
    overflow: hidden;
}

.custom-btn:before {
  content: "";
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 1;
  transition-property: left, transform;
  transition-delay: 0s, 0s;
  transition-duration: 1s, 0.5s;
  opacity: 0;
}
.custom-btn:hover:before {
  left: 10px;
  transform: translateY(-50%) scale(50);
  transition-delay: 0s, 1s;
  opacity: 1;
  background: #f5c829;
  z-index: -1;
}
.custom-btn:after {
  content: "";
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 1;
  transition-property: right, transform;
  transition-delay: 0s, 0s;
  transition-duration: 1s, 0.5s;
  opacity: 0;
}
.custom-btn:hover:after {
  right: 10px;
  transform: translateY(-50%) scale(50);
  transition-delay: 0s, 1s;
  opacity: 1;
  background: #f5c829;
  z-index: -1;
}

.custom-btn i {
  margin-left: 20px;
}

.custom-btn:hover {
   background-color: #fff;
    transition: all 0.5s ease-in-out;
}


header .custom-btn:after {
  width: 43px;
  height: 43px;
}

div#mobileMenu {
    display: none;
}

.animation {
  border-radius: 100% !important;
  animation: ripple 0.6s linear infinite;
  border: none !important;
  padding: 0 !important;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1),
      0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1),
      0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1),
      0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1),
      0 0 0 80px rgba(255, 255, 255, 0);
  }
}

.title-text h2 {
  position: relative;
}

.title-text h2:after {
  content: "";
  position: absolute;
  width: 55px;
  height: 3px;
  background-color: #f5c829;
  left: 0;
  bottom: -4px;
}

.main-title.text-center h6 {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}


/*-------------------------common-css-ends-here---------------------------*/

/*-------------------------header-css-start-here---------------------------*/
/*header#header {
    position: fixed;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}*/


header#header {
    z-index: 9;
    position: relative;
     transition: all 0.3s ease;
}
#header.sticky {
       position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(0);
    opacity: 1;
}


header nav {
  z-index: 9;
}

.navbar-brand {
  padding: 0;
}

header ul.nav li a.nav-link {
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
}
header ul.nav li a.active{
  color: #f5c829 !important;
}

header ul.nav li a.nav-link:after{
  content: '';
    background-color: #f5c829;
    position: absolute;
    width: 5px;
    height: 0;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

header ul.nav li a.nav-link:hover:after,header ul.nav li a.active:after{
  height: 15px;
      transition: all .6s 
cubic-bezier(.4, 0, .2, 1);

}

header ul.nav li a.nav-link:hover {
    color: #f5c829 !important;
     transition: all .6s 
cubic-bezier(.4, 0, .2, 1);
}

header ul li a {
    font-size: 20px !important;
}
a.navbar-brand img {
    max-width: 330px;
}
.dropdown-toggle::after {
  content: "\f107";
  font-family: 'FontAwesome';
 /* transform: rotate(270deg);*/
  border: none;
  vertical-align: inherit;
  color: #000;
}

li.nav-item.dropdown:hover .dropdown-toggle::after,
li.nav-item.dropdown:active .dropdown-toggle::after {
  color: #f5c829;
}

header ul.navbar-nav li a.nav-link.active {
  color: #f5c829;
}

header ul.navbar-nav>li>a {
  position: relative;
}

header ul.navbar-nav>li>a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  height: 1px;
  width: 0%;
  background-color: #f5c829;
  margin-top: 10px;
  transition: all 200ms ease-in;
}
header ul.navbar-nav li:last-child a:before{
  display: none;
}

header ul.navbar-nav>li>a:hover:before {
  width: 85%;
}

header ul.navbar-nav li.nav-item.dropdown a:before {
  display: none;
}

header ul.navbar-nav li:hover a {
  color: #f5c829;
}

header nav .nav-item button {
  margin-left: 15px;
}

header nav.navbar {
  background-color: #000 !important;
  padding: 20px 0;
  /*  border-bottom: 1px solid #b3adad;*/
}

.top-social.d-flex li:hover a i {
  color: #f5c829;
}


.header.sticky {
  position: fixed;
  z-index: 1;
  width: 100%;
  top: 0;
  z-index: 99999;
  box-shadow: 3px 0px 10px 0 rgba(22, 22, 26, 0.18);
}

.header.sticky nav.navbar {
  background-color: rgba(255, 255, 255, 1) !important;
}

section#header-top .container,
header .container {
  max-width: 1300px;
}
   nav {
  padding: 50px;
  text-align: center;
}
nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  background: #ddd;
  border-radius: 5px;
}
nav > ul > li {
  float: left;
  width: 150px;
  height: 65px;
  line-height: 65px;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
nav > ul > li:hover {
  background: #d5d5d5;
}


/*-------------------------header-css-ends-here---------------------------*/

/*-------------------banner section css start here----------------------------*/
.flickity-button {
  display: none !important;
}
    .hero-slider {
    height: calc(100vh - 80px);
    overflow: hidden;
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
    width: auto !important;
}
.hero-slider .carousel-cell {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-slider .carousel-cell .slide-content {
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1;
}

.hero-slider .carousel-cell .slide-content p {
    line-height: normal;
}

.hero-slider .carousel-cell .slide-content .title {
    position: relative;
    font-size: 6.25rem;
    text-transform: uppercase;
    color: #ffffff;
}
.hero-slider .carousel-cell .slide-content .title {
    text-transform: uppercase;
    font-size: 5.25rem;
    color: #ffffff;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 1px #f5c829;
    -webkit-text-fill-color: #fff;
}
.hero-slider .carousel-cell .slide-content .btn {
    background-color: #fff200;
    display: inline-block;
    padding: 14px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    text-decoration: none;
}
.hero-slider .carousel-cell .slide-content .btn:hover {
    background: white;
    color: black;
    transition: all 0.2s ease;
}

/* --------------------------------
Masking
-------------------------------- */
.slide-content .title,
.slide-content .caption,
.slide-content .btn {
    position: relative;
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-content.mask .mask {
    position: relative;
    overflow: hidden;
}
.slide-content.mask .title {
    /*
    animation-duration: 2s;
    animation-delay: 0.2s;
    animation-name: slide-up;
    animation-fill-mode: backwards;
    animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
    /**/

    animation: slide-up 2s cubic-bezier(0.85, 0, 0.15, 1) 0.2s backwards;
    opacity: 1;
}
.slide-content.mask .caption,
.slide-content.mask .btn {
    animation-duration: 2s;
    animation-delay: 0.2s;
    animation-name: slide-down;
    animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
    text-transform: uppercase;

}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes poof {
    0% {
        opacity: 0;
        background-position: 100% 150%;
        transform: rotateZ(0) scale(1);
    }
    50% {
        opacity: 0.5;
        background-position: 100% 100%;
        transform: rotateZ(-10deg) scale(1.5);
    }
    100% {
        opacity: 0;
        background-position: 100% 50%;
        transform: rotateZ(-20deg) scale(2);
    }
}

/* Slides */

.hero-slider .carousel-cell .slide-content {
    text-align: center;
}


/*  Smokey static background */
.smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url(../images/smoke.gif);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    mix-blend-mode: color-dodge;
}
.flickity-page-dots {
    bottom: 15px;
    z-index: 999;
}
.flickity-page-dots .dot {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.65);
    border-radius: 0;
    margin: 0;
}
.flickity-page-dots .dot.is-selected{
  background:#fff;
}
.banner{
  overflow: hidden;
}
/*-----------------------About-css---starts-here---------------------------*/
section#about {
    background-color: #000;
}
.about-left p a,.about-left p b {
    color: #f5c829;
}
.bbb-imge img {
	width: 50% !important;
}
/*-----------------------What-we-buy-section-starts-here---------------------------*/
section#what-we-buy{
  background-image: url(../images/what-we-buy-bg.jpg);
  position: relative;
}
section#home-cta{
  position: relative;
}
section#what-we-buy:before,section#home-cta:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px; /* adjust height as needed */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  pointer-events: none;
}
.block-row .col-md-4 {
    width: calc(33.33%  - 120px);
}

.block-row {
    column-gap: 100px;
}
.buy-block-text h4 {
     font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

.buy-block-text h4 {
    /* display: inline; */
    background-repeat: no-repeat;
    background-position-y: -1px;
    background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: .8s cubic-bezier(.215,.61,.355,1)pxl-wide-menu-underline forwards;
    width: fit-content;
    margin: 0 auto;
}

.buy-block-text h4:hover {
    animation: .8s cubic-bezier(.215,.61,.355,1)pxl-wide-menu-underline-hover forwards;
}

@keyframes pxl-wide-menu-underline {
    0% {
        background-size: 100% 100%;
        background-position-x: 100%
    }

    100% {
        background-size: 0 100%;
        background-position-x: 100%
    }
}

@keyframes pxl-wide-menu-underline-hover {
    0% {
        background-position-x: 0;
        background-size: 0 100%
    }

    100% {
        background-position-x: 0;
        background-size: 100% 100%
    }
}

.buy-block-text a:hover{
  color: #fff;
  transition: all .6s 
cubic-bezier(.4, 0, .2, 1);
}
/*-----------------------home-cta-section-starts-here---------------------------*/
section#home-cta,section#about-us,.contact-us{
  /*background-image: url(../images/cta-bg.jpg);*/
 /* padding: 200px 0;*/
  position: relative;
}


.cta-text,.about-content,.contact-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 9;
}
.about-content {
  /*bottom: 0;*/
  top: auto;
   transform: translate(-50%, -100%);
}

section#home-cta h3{
   font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 3.313rem;
}
section#home-cta h2{
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  font-size: 6.313rem;
}
section#home-cta h2 a{
  color: #fff;
}
/*-----------------------about-section-css---starts-here---------------------------*/
.about-content h2,.contact-us h2{
color: #f5c829 !important;

}
.left-inner p {
  font-size: 20px;
}
.about-left p,.about-left a,.about-left b{
  font-size: 20px;
}
/*-----------------------contact-section-css---starts-here---------------------------*/
/*.contact-us {
  overflow: hidden;
  padding: 200px 0;
}*/

/*.contact-us img {
  width: 100%;
  border-radius: 150px 0 0 0;
}*/
.contact-inner {
    z-index: 1;
    position: relative;
}


.form-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 /* position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;*/
  z-index: 99999;
  position: relative;
}

.form-main .main-wrapper .form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.form-main .main-wrapper .form-wrapper .row {
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 100%;
}
.form-main .main-wrapper .form-wrapper .row .col-md-6 {
    width: calc(100% / 2 - 12px);
    padding: 0;
}

.form-main .main-wrapper .form-wrapper .form-card {
  position: relative;
  width: 100%;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input {
  padding: 10px 8px 10px 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid #c1bbb6;
  border-radius: 0;
  background: transparent;
  outline: none;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  box-sizing: border-box;
   font-family: 'Roboto', sans-serif;
  color: #fff !important;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #c1bbb6 !important;
  border-radius: 0 !important;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input:valid,
.form-main .main-wrapper .form-wrapper .form-card .form-input:focus {
  padding: 10px 8px 10px 0;
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #c1bbb6 !important;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input:valid,
.form-main .main-wrapper .form-wrapper .form-card .form-input:focus {
  border: 1px solid #515151;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input:valid~.form-label, .form-main .main-wrapper .form-wrapper .form-card .form-input:focus~.form-label {
    color: #515151;
    top: 30%;
    transform: translateY(-73%);
    font-size: 13px;
    line-height: 51px;
}
.form-main .main-wrapper .form-wrapper .form-card .form-input:focus,.form-main .main-wrapper .form-wrapper .form-card .form-input::placeholder{
      -webkit-text-fill-color: #fff !important;
}
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill,
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill:hover,
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill:focus {
  
    -webkit-text-fill-color: #fff !important; /* Text color */
}




.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill,
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill:hover,
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill:focus,
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
}

.form-main .main-wrapper .form-wrapper .form-card .form-input::-webkit-outer-spin-button,
.form-main .main-wrapper .form-wrapper .form-card .form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-main .main-wrapper .form-wrapper .form-card .form-label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea {
    padding: 20px 25px 15px;
    width: 100%;
    border: 1px solid #000;
    border-radius: 5px;
    background: transparent;
    outline: none;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    resize: none;
    box-sizing: border-box;
    color: #fff !important;
    padding-left: 0;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea:valid,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:focus {
  border: 1px solid #515151;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea:valid~.form-textarea-label,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:focus~.form-textarea-label {
  color: #515151;
  top: 18%;
  transform: translateY(-82%);
  font-size: 13px;
  line-height: 23px;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea:-webkit-autofill,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:-webkit-autofill:hover,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:-webkit-autofill:focus,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
}

.form-main .main-wrapper .form-wrapper .form-card .form-textarea-label {
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-70%);
  pointer-events: none;
  transition: 0.3s;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.btn-wrap {
    display: block;
    width: 100%;
}
.main-wrapper {
    width: 100%;
}
.contact-inner a {
    color: #fff;
    font-size: 20px;
}
.contact-inner a:hover {
    color: #f5c829;
    transition: all 0.2s ease;
}

.contact-icon:hover i,.contact-icons-footer li:hover i {
    transition: all 0.2s ease;
    color: #f5c829;
}
.contact-icon:hover,.contact-icons-footer li:hover{
  border-color:#f5c829;
}
.contact-inner h6 {
    margin-bottom: 7px;
}
.contact-icon,.contact-icons-footer li {
    border: 1px solid #fff;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
}
.contact-icon i,.contact-icons-footer i {
    color: #fff;
    font-size: 35px;
}
.contact-icons-footer ul {
    gap: 15px;
    display: flex;
}
.contact-icons-footer li {
    width: 57px;
    height: 57px;
}

.social-icons-footer li {
    background-color: #2a2a26;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}
.social-icons-footer li i {
    color: #fff;
    font-size: 20px;
}
.footer-block.spot li span {
    color: #f5c829;
}
footer .contact-inner a{
  font-size: 20px;
  color: rgba(255,255,255,0.65);
}
.footer-intro-box ul{
  padding-left: 0;
}
.footer-intro-box ul li:first-child a{
  padding-left: 0;
}
/*footer{
  background-image: url(../images/footer-bg.jpg)
}*/
.copyright p a,.copyright p{
  font-size: 14px;
  color: #fff !important;
}
.copyright{
  border-top: 1px solid #f5c829;
}
footer a.nav-link:hover {
    transform: scale(1.05);
    color: #f5c829 !important;
}
footer a.nav-link,spot li {
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons-footer li{
  position: relative;
  overflow: hidden;
}
.social-icons-footer li:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f5c829;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.social-icons-footer li:hover:before {
  -webkit-transform: scale(1.2);
  z-index: 0;
}
.social-icons-footer li a {
    z-index: 1;
}
/*-----------------------inner-page-css---starts-here---------------------------*/
.hero-slider.inner-banner {
    height: 400px !important;
}
.hero-slider.inner-banner .smoke {
    height: 492px;
}
.buy-block-text h5{
  font-size: 20px !important;
  margin-bottom: 0;
}
.we-pay .buy-block-img img{
width: 50%;
}

.we-pay .buy-block-img img {
    width: 100%;
}
.we-pay .buy-block-img{
  text-align: right;
}
.buy-block-text {
    width: 100%;
}
.what-we-pay-outer {
    background-color: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 15px;
}
#world_gold_coin, #canadian-gold-coin-bar, #usa-gold-coin, #carat-gold-jewellery, #scrap-silver, #canada-silver-coin, #usa-silver-coin {
  scroll-margin-top: 120px; /* Adjust based on your header height */
}
/*-----------------------Newly Uploaded Videos From Members section css Start Here---------------------------*/
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("../images/prev-hover.png");
}

.swiper-button-next {
  background-image: url("../images/next-hover.png");
  left: 60px !important;
}

.swiper-button-next:hover {
  background-image: url("../images/next-hover.png");
}

.swiper-button-prev:hover {
  background-image: url("../images/prev-hover.png");
}

.swiper-button-next,
.swiper-button-prev {
  top: auto;
  width: 50px;
  height: 50px;
  margin-top: 0;
  background-size: 50px 50px;
  bottom: 0;
  left: 0;
}

.swiper-wrapper {
  padding-bottom: 70px;
}

.swiper-pagination-progressbar {
  width: auto;
  left: 108px;
  right: 0;
  top: auto;
  bottom: 17px;
  height: 2px;
  background-color: red;
}

.swiper-pagination-progressbar {
  background: #ddd;
  position: relative;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #f5c829;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}


.box-inner:hover .block-content {
  background-color: rgba(222, 4, 4, 0.9);
  animation: flash 1s ease-in;
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0.7;
  }
}

.swiper-slide {
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
}
.swiper-pagination.swiper-pagination-progressbar {
    width: 90%;
    top: -23px;
    right: 0;
    left: 122px;
}
section#canada-silver-coin h6 {
    height: 65px;
}
.slider-text p {
    color: #f5c829 !important;
    font-weight: bold;
}
section#world_gold_coin .slider-text h6 {
    height: 50px;
}
/*table.price-table thead {
    background-color: #f5c829;
}*/
/*table.price-table {
    text-align: center;
}*/
table.price-table tbody td:nth-child(even) {
    text-align: right;
    font-weight: bold;
    color: #f5c829;
}
table.price-table thead tr th:nth-child(even) {
    text-align: right;
}
table.price-table thead th {
    border-bottom: 1px solid;
}

table.price-table {
    background-color: rgba(255,255,255,0.1);
}
table.price-table tbody tr:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
table.price-table th, table.price-table td {
    padding: 15px 40px;
}
table.price-table thead tr th {
    padding: 40px 40px;
    margin-bottom: 10px;
}
table.price-table tbody tr:first-child td {
    padding-top: 40px;
}
table.price-table tbody tr:last-child td {
    padding-bottom: 40px;
}
.what-we-pay-outer:hover h5 {
    color:#f5c829!important;
    transition: all 0.2s ease;
}
.what-we-pay-outer .buy-block-img img {
   transition: transform 0.4s ease;
}
.what-we-pay-outer:hover .buy-block-img img {
    transform: scale(1.05);
}

section.parallax-section{
    position:relative;
    height:400vh; /* for 4 cards */
    background:#000;
  }

  .card-wrapper{
    position:sticky;
    top:0;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
  }

.card {
    position: absolute;
    width: 100%;
    max-width: 90%;
    background: transparent;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease,transform 0.6s ease;
}
  .card.visible{
    opacity:1;
    transform:scale(1);
    z-index:3;
  }
  section.parallax-section .btn {
    margin-left: 0;
    display: block;
    width: max-content;
}

/*.parallax-section { position: relative; padding: 80px 0; }*/
/*.card-wrapper { max-width: 1100px; margin: 0 auto; }*/
.card {
  /*min-height: 360px;*/
  margin: 40px 0;
  padding: 28px;
  background: rgba(0,0,0,0.25);
  color: #fff;
  border-radius: 8px;
  transition: transform .5s, opacity .5s;
  opacity: 0.0; transform: translateY(20px);
}
/*.card.visible { opacity: 1; transform: translateY(0); }*/

/* arrows */
.arrow-controls {
    position: absolute;
 /*   transform: translateX(-50%); */
    z-index: 9999;
    left: 25%;
    bottom: 100px;
}
.arrow-controls button {
    color: #fff;
    background-color: #f5c829;
    width: 35px;
    height: 35px;
}

.arrow-btn {
  display: block;
  width: 45px;
  height: 45px;
  margin: 10px 0;
  font-size: 22px;
  color: #fff;
  background: rgba(255,255,255,0.2);
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}

.arrow-btn:hover {
  background: #fff;
  color: #000;
}
.disabled {
  opacity: 0.3;
  pointer-events: none;
}


  @media(max-width:768px){
    .card{padding:40px 20px;}
    .title{font-size:24px;}
  }
/*-----------------------Contact-us-page--css---starts-here---------------------------*/

section#contact-block-main .contact-inner h6 {
    color: #f5c829;
}
.contact-block:hover h6 {
    color: #fff !important;
}

.contact-block-icon {
    z-index: 1;
    position: relative;
}
section#contact-block-main .contact-inner a:hover{
  color: #fff !important;
}
section#contact-block-main .contact-inner a {
    font-size: 18px;
}

section#contact-block-main .contact-block {
    border: 1px solid #3b3b3b;
    padding: 30px;
    height: 250px;
}

.contact-page-contact .container-fluid .row {
    margin: 0;
}
.contact-page-contact .container-fluid {
    padding: 0;
    width: 100%;
    max-width: 100%;
}
.contact-page-contact .container-fluid .row:first-child .col-md-6 {
    padding-left: 0;
}
.cntact-form-sec {
    padding: 50px;
}
.contact-block{
  position: relative;
  overflow: hidden;
}
.contact-block:before {
    background: #f5c829;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: -100%;
    width: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 0;
}
.contact-block:after {
    content: "";
    background: #f5c829;
    height: 100%;
    left: 100%;
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 0;
}
.contact-block:hover:before, .contact-block:hover:after {
    left: 0;
    top: 0;
}
.blog-full-desc p {
    color: #fff;
}
.feuatred-image {
    margin-bottom: 20px;
}
.blog-full-desc h5 {
    font-size: 20px;
}
/*.fadeInLeft {
    animation-name: adFadeInLeft !important;
    animation-duration: 380ms !important;
    animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1) !important;
    will-change: transform !important;
    transition: opacity .4s ease-out,transform .8s !important;
}
    
    @-webkit-keyframes adFadeInLeft {
        from { opacity: 0; transform: translateX(-100px) translateZ(0) scaleX(1); transform-origin: top left; }
        to { opacity: 1; transform: translateX(0) translateZ(0) scaleX(1); }
    }
    @keyframes adFadeInLeft {
        from { opacity: 0; transform: translateX(-100px) translateZ(0) scaleX(1); transform-origin: top left; }
        to { opacity: 1; transform: translateX(0) translateZ(0) scaleX(1); }
    }*/
.about-img-left{
  position: relative;
}
.dot-circle {
  animation: rotateDots 18s linear infinite;
  transform-origin: center center;
  display: block;
  position: absolute;
/*  z-index: -1;*/
  top: 20px;
}
.about__img {
    z-index: 17;
    position: relative;
}

@keyframes rotateDots {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*.about-img-right{
  background-image: url('../images/about-right.jpg');
}*/

.about-img-right img.abt-rgt {
    height: 500px;
    border-radius: 309px 309px 309px 309px;
}
.about-img-right{
  position: relative;
}
img.bbb {
    position: absolute;
    width: 46% !important;
    top: 50%;
    transform: translateY(-50%);
    left: -60px;
}
.about-middle {
    padding-right: 12%;
}

.faq-right .accordion,.faq-right .accordion-item {
    color: #fff !important;
}
.faq-right .accordion-item {
    border: none;
    background-color: rgba(255,255,255,0.1) !important;
    margin-bottom: 15px;
}
.faq-right .accordion{
  border: none !important;
}
.faq-right button.accordion-button {
    background-color: transparent !important;
    color: #fff !important;
    font-size: 18px;
}
.faq-right button.accordion-button:after {
    filter: brightness(0) invert(1);
}
.faq-right button.accordion-button:focus{
  box-shadow: none;
}
.faq-right .accordion ul li{
  list-style-type: circle;
  font-weight: bold;
}
.faq-right .accordion ul {
    padding-left: 30px;
}
#faq .col-md-6 {
  min-height: auto; /* or 100vh or auto */
}
.faq-cta h2{
  color: #f5c829 !important;
}
.accordion .accordion-collapse {
      transition: height 0.8s 
linear !important;

}

.accordion-body {
    /*opacity: 0; */
    transform: translateY(-5px);
    transition: opacity 0.8s linear, transform 0.8s linear !important;
}
.accordion-button::after {
    transition: transform 0.8s linear !important;
}
.accordion .accordion-collapse.show .accordion-body {
    opacity: 1;
        transition: opacity 0.8s 
linear, transform 0.8s 
linear !important;
}
.accordion-body.show {
    opacity: 1;
    transform: translateY(0);
}
.text-white.small-text {
	font-size: 14px;
}
/*-----------------------Responsive-css---starts-here---------------------------*/
@media (max-width: 1025px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
  }
}

/*-----------------------Ipad and Mobile starts here---------------------------*/
@media (max-width: 991px) {}

/*-----------------------Ipad landscape-css-ends here---------------------------*/
@media (min-width: 992px) and (max-width: 1024px) {
  header ul.navbar-nav li.nav-item {
    padding: 0px 4px;
  }
}

/*-----------------------Ipad landscape-css-ends here---------------------------*/
/*-----------------------Ipad portrait-css-starts here---------------------------*/

@media (min-width: 768px) and (max-width: 991px) {
  .p-70 {
    padding: 50px 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h4 {
    font-size: 18px;
  }

  h6 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  .pl-25 {
    padding-left: 0;
  }

  .p-70 {
    padding: 40px 0;
  }

  .copyright p {
    margin-bottom: 5px;
    font-size: 14px;
    text-align: center !important;
  }

  .social-icons-footer {
    margin-bottom: 30px;
  }

  .footer-block {
    padding-bottom: 20px;
  }

  footer {
    padding-bottom: 0 !important;
  }
  .hero-slider .carousel-cell .slide-content .title {
    font-size: 40px;
    -webkit-text-stroke: 0.2px #f5c829;
}
/* Hamburger button */
.mobile-toggle {
  position: absolute;
  top: 0;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 9999;
  padding: 5px;
  display: none;
}

header#header .container {
    padding: 0;
}
.hero-slider {
    height: calc(100vh - 300px);
}
.hero-slider .carousel-cell {
    background-position: center center !important;
}
.about-left p, .about-left a, .about-left b {
    font-size: 20px;
    text-align: center;
}
p{
  text-align: center !important;
}
.about-content {
    position: unset;
}
.about-content {
    position: unset;
    transform: unset;
}
.cta-text, .about-content, .contact-outer {
    position: unset;
    transform: unset;
}
.block-row .col-md-4 {
    width: 100%;
}
section#home-cta .bg-overlay,section#about-us .bg-overlay,.contact-us .bg-overlay{
    display: none;
}
section#home-cta,section#about-us,.contact-us {
    background-image: url(../images/cta-bg.jpg);
    background-size: cover;
    padding: 80px 0;
}
section#home-cta:before{
  height: 100%;
}
.cta-inner h3 {
    font-size: 24px !important;
    z-index: 1;
    position: relative;
}
.cta-inner h2 {
    font-size: 36px !important;
     z-index: 1;
    position: relative;
}
.about-content h2, .contact-us h2 {
    text-align: center;
}
section#about-us {
    background-image: url(../images/about-bg.jpg);
    background-size: cover;
    padding-top: 0;
}
.about-right {
    padding-top: 30px;
}
.custom-btn {
    margin: 0 auto;
    text-align: center;
    display: block;
}
.contact-us{
  background-image: url(../images/contact-bg.png);
    background-size: cover;
    padding-top: 0;
}
.contact-icon {
    width: 57px;
}
.contact-outer .row .row .col-md-3{
    width: auto;
}
.contact-outer .row .row {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}
.contact-outer .row .row.mt-4 {
    margin-top: 0 !important;
}
.row.contact-outer-row {
    margin-bottom: 0 !important;
}
.contact-outer {
    padding: 0 26px;
}
.contact-icons-footer ul {
    justify-content: center;
}
.contact-outer .row .row .col-md-9 {
    width: calc(100% - 85px);
}
footer h6 {
    text-align: center;
}
.footer-intro-box ul {
    padding-left: 0;
    justify-content: center;
}
.contact-img {
    text-align: center;
}
.contact-img img {
    width: 20% !important;
    margin-bottom: 10px;
}
.footer-contact-details .col-md-4 {
    margin-bottom: 20px;
}
.footer-contact-details {
    padding-top: 20px;
}
footer .contact-inner {
    text-align: center;
}
.spot ul {
    text-align: center;
}
footer .social-icons-footer ul {
    justify-content: center;
}
footer .social-icons-footer{
  margin-bottom: 0;
}
footer.pb-5 {
    padding-bottom: 20px !important;
}
.what-we-pay-outer {
    margin-bottom: 15px;
}
section#what-we-pay .row .col-md-4.mt-4 {
    margin-top: 0 !important;
}
.swiper-slide {
    padding: 15px;
}
table.price-table th, table.price-table td {
    padding: 15px 8px;
    white-space: nowrap;
}
table.price-table {
    width: 90% !important;
}
table.price-table thead tr th {
    padding: 15px 20px;
    margin-bottom: 10px;
}
.block-section {
    padding-left: 10px;
    padding-right: 10px;
}
section.parallax-section .img__block img {
    width: 100%;
}
section.parallax-section h2, section.parallax-section p {
    text-align: center;
}
section.parallax-section .btn {
    margin-left: 0;
    display: block;
    width: 100%;
}
.arrow-controls {
    position: absolute;
    bottom: auto;
    top: 50%;
    left: auto;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 9;
}
.custom-btn {
    padding: 10px 10px;
    font-size: 18px; 
}
img.bbb {
    left: -11px;
}
.about-middle {
    padding-right: 0;
}
.dot-circle {

    width: 84% !important;
}
.blog-title h4 {
    text-align: center;
}
.post_meta {
    text-align: center;
    margin-top: 10px;
}
.blog-full-desc h5,.blog-title h3 {
    text-align: center;
}
section#contact-block-main .contact-block {
    padding: 20px;
    height: auto;
    margin-bottom: 30px;
}
.contact-page-contact .container-fluid .row:first-child .col-md-6 {
    padding: 0;
}
.map-iframe iframe {
    height: 300px;
}
.cntact-form-sec {
    padding: 20px;
}
/* Only show hamburger on mobile */
@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }
}

/* Mobile header layout */
.mobile-header {
  background: #000;
  position: relative;
  z-index: 9999;
}

/* Hamburger */
.mobile-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* Hide mobile header on desktop */
@media (min-width: 992px) {
  .mobile-header {
    display: none !important;
  }
}

/* Mobile menu dropdown */
.mobile-menu {
  display: none;
  background: #000;
  width: 100%;
  padding-bottom: 10px;
}

.mobile-menu a {
  display: block;
  padding: 14px;
  color: #fff;
  border-bottom: 1px solid #222;
}
.desktop-menu-row {
    display: none;
}
.bbb-imge img {
    width: 25% !important;
}
.form-main .main-wrapper .form-wrapper .row {
    flex-direction: column;
}
.form-main .main-wrapper .form-wrapper .row .col-md-6 {
    width: 100%;
}
.contact-outer .col-md-6 {
    padding: 0;
}
section#world_gold_coin .slider-text h6 {
    height: auto;
}
}

/*-----------------------Responsive-css---Ends-here---------------------------*/