@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700;900&display=swap');
html{
    scroll-behavior: smooth;
    font-size: 3vw;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-family: 'Bebas Neue', cursive;
    color: #fff;
}
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0;
    padding: 0;
}
h3{
    margin: 0;
    padding: 0;
}
h4{
    margin: 0;
    padding: 0;
}
h5{
    margin: 0;
    padding: 0;
}
h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
.container{
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 10px;
}
.row{
    display: flex;
}
.justify-content{
    justify-content: center;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}
.navigation{
    width: 100%;
    padding: 0 3%;
    box-sizing: border-box;
    margin-top: 30px;
    position: fixed;
    z-index: 100;
}

.navigation .logo{
    width: 100%;
}
.navigation .logo a{
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -2px;
    font-weight: 600;
}
.navigation .menu{
    width: 100%;
}
.navigation ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: right;
    width: 100%;
}
.navigation ul li{
    display: inline-block;
}
.navigation ul li a{
    font-size: 20px;
    color: #fff;
    padding: 10px 10px;
    letter-spacing: 1px;
    transition: .3s;
}
.navigation ul li a:hover{
    color: #464646;
}




.slide-section{
    height: 100%;
    width: 100%;
    background: radial-gradient(circle, #cecece, #858386);
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.slide-section .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.2);
    padding-bottom: 220px;
}

#slider{
    position: relative;
    height: 180vh;
}
.slide{
    list-style:none;
}
#slider>li{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 180vh;
}
.slide-section .image{
    width: 100%;
    text-align: center;
}
.slide-section .image img{
    width: 60vw;
    margin-top: 5rem;
}

.slide-section h1{
    font-size: 7.5em; 
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    padding-top: 50px;
    text-transform: uppercase;
  }

  .slide-section .title {
  transform: translateX(-50%) rotate(0deg);
  display: block;
  float: left;
  left: 50%;
  position: relative;
}
.slide-section .title span {
  transform: skew(0deg);
  display: block;
  float: left;
  min-width: 10px;
  min-height: 10px;
  position: relative;
}
.slide-section .title:nth-child(1) {
  color: #fff;
}
.slide-section .details{
    max-width: 70vw;
    margin: 0 auto;
    height: 100%;
}

.slide-section .details h2{
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1em;
    margin-top: 250px;
}




/* Hero Section with backgorund video css */
#hero-bg-video .video-container {
	 position: relative;
	 height: 100vh;
}
#hero-bg-video .video-container .dark-overlay {
	 height: 100vh;
	 width: 100%;
	 position: absolute;
	 top: 0px;
	 left: 0px;
	 z-index: 1;
	 background-image: linear-gradient(180deg, black, #015da8);
	 opacity: 0.5;
}
#hero-bg-video .video-container video {
	 height: 100vh;
	 vertical-align: middle;
	 width: 100%;
     object-fit: cover;
}
#hero-bg-video .video-container .overlay-desc {
	 position: relative;
	 z-index: 999;
	 margin: 0 auto;
	 background: rgba(0, 0, 0, 0);
	 position: absolute;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 padding: 1rem;
	 display: flex;
	 align-items: center;
	 justify-content: center;
     text-align: center;
}
#hero-bg-video .video-container .overlay-desc h2 {
	 color: white;
	 font-size: 4.5rem;
     text-align: center;
     margin: 0;
     padding: 0;
}
#hero-bg-video .video-container .overlay-desc p:not(.p-smaller) {
	 color: white;
	 font-size: 1rem;
}
#hero-bg-video .video-container .overlay-desc p.p-smaller {
	 color: white;
	 font-size: 13px;
	 line-height: 1;
	 font-weight: 400;
	 max-width: 375px;
}
#hero-bg-video .video-container .overlay-desc .action_button {
	 color: white;
	 border-color: white;
	 margin: 10px 0;
}
/* Hero section mobile responsive css */
 @media only screen and (max-width: 467px) {
    #hero-bg-video .video-container .overlay-desc h1 {
		 font-size: 1.5rem !important;
		 line-height: 1.2;
	}
    #hero-bg-video .video-container .overlay-desc h1 br {
		 display: none;
	}
	 .video-container .overlay-desc p:not(.p-smaller) {
		 font-size: 0.9rem;
		 line-height: 1;
	}
    #hero-bg-video 
    .video-container .overlay-desc .action_button {
		 font-size: 14px;
	}
}
 
.stock-section{
    width: 100%;
    background-color: #000;
}
.stock-section .image{
    background: url('../images/golf-23794_1920.png');
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center !important;
}
.stock-section .details{
    max-width: 300px;
    padding: 150px 30px;
    padding-left: 100px;
}
.stock-section .details h2{
    color: #fff;
    font-size: 2rem;
    line-height: 1em;
    margin-bottom: 40px;
}
.stock-section .details p{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: hsla(0,0%,100%,.7);
    max-width: 20rem;
    margin-bottom: 40px;
}
.stock-section .details a{
    display: inline-block;
    color: #000;
    font-size: 25px;
    background: #fff;
    padding: 12px 30px;
    border-radius: 30px;
}
.model-section{
    width: 100%;
    height: 100%;
    background: url('../images/world-bg.png');
    background-size: cover;
    background-position: top;
}
.model-section .overlay{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.model-section .collect-section h2{
    font-size: 6rem;
    color: #fff;
    text-align: center;
    line-height: 0.8em;
    letter-spacing: 1px;
    padding: 150px 10px;
}

/* Image animate one css */
.image-animate-one .block {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}
.image-animate-one .animation {
    width: auto;
    height: 100% !important;
    font-size: 0px;
}
.image-animate-one .animation div {
    display: inline-block;
    width: auto;
    float: none;
    padding: 0 10px;
}
.image-animate-one .animation img{
    width: 40vw;
    height: 100vh;
}
.image-animate-one .caption h2{
    font-size: 4rem;
    color: #fff;
    text-align: center;
    position: absolute;
    margin-top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about-section{
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background: #000;
}
.about-section .heading h2{
    font-size: 4rem;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.about-section .left-side{
    padding: 0 50px;
}
.about-section .left-side h3{
     font-size: 1.5rem;
}
.about-section .left-side ul{
    list-style-type: none;
    margin: 0;
    
}
.about-section .left-side ul li a{
    display: block;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    margin-top: 10px;
    transition: .4s;
}
.about-section .left-side ul li a:hover{
    color: #c4c4c4;
}
.about-section .right-side p{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5em;
}

.model-section-two{
    background: #000;
    overflow: hidden;
}
.image-animate-rotate {
    padding: 100px 0;
}
.image-animate-rotate .block{
    transform: rotate(7deg);
    
}
.image-animate-rotate .caption h3{
    font-size: 1rem;
    font-style: italic;
    text-align: center;
    position: absolute;
    margin-top: 0vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.image-animate-rotate .caption h2{
    font-size: 3rem;
    color: #fff;
    text-align: center;
    font-style: italic;
    position: absolute;
    margin-top: 13vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.team-section{
    background: #000;
    padding: 100px 0;
    padding-top: 120px;
}
.team-section .heading h2{
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
    
}
.team-section .card{
    border: 1px solid #979797;
    margin: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.team-section .card .image{
    height: auto;
    overflow: hidden;
}
.team-section .card .image img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.team-section .card .details h2{
    margin: 20px 0;
    font-size: 1rem;
}
.team-section .card .details p{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}
.team-section .card .details{
    padding: 20px 15px;
    text-align: center;
}
.faq-section{
    width: 100%;
    background: #1C89A6;
}
.faq-section .image{
    width: 100%;
    height: 100vh;
    background: url('../images/baseball-1296946_1920.png');
    background-size: cover;
}
.faq-section .right-side{
    padding: 100px 0;
    max-width: 90%;
}

/* FAQ styles */
.faq-section .faq-container {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .faq-section  .faq {
    margin-bottom: 0px;
  }
  
  .faq-section .question-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.5);
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    border-bottom: 1px solid #7d7d7d;
    transition: background-color 0.7s ease;
  }

  .faq-section .question-container:hover {
    background: rgba(0,0,0,0.5);
  }
  .faq-section .question-container:hover .toggle-btn {
    background: rgba(0,0,0,0.5);
  }
  .faq-section .answer {
    padding: 0px 20px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    overflow: hidden;
    transition: 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    
  }
  
  
  .faq-section .toggle-btn {
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.6s ease;
  }
  
  .faq-section .toggle-btn p {
    margin: 0;
    font-size: 25px;
    color: #fff;
    transition: transform 0.3s ease, opacity 0.3s 300ms;
  }
  
  .faq-section .toggle-btn p.rotate {
    transform: rotate(45deg);
  }
  
  .faq-section .answer.visible {
    max-height: 200px;
    opacity: 1;
    margin: 0;
    padding: 20px 20px;
  }
  .faq-section .question-container h2{
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
  }
  .faq-section .answer p{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.5em;
  }

/* Footer desktop version css*/
footer{
    width: 100%;
    background: #1C89A6;
}
footer .top-footer{
    padding: 150px 50px 0 50px;
    box-sizing: border-box;
}
footer h2{
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    margin-bottom: 20px;
}
footer p{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 300;
}
footer .left-side{
    max-width: 600px;
}
footer .right-side{
    padding-left: 100px;
    box-sizing: border-box;
}
footer ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
footer ul li a{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}
footer .copyright{
    padding: 20px;
    border-top: 1px solid #289fbe;
    margin-top: 80px;
}
footer .copyright p{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}


/* Mobile responsive Design 767px css */
@media screen and (max-width: 767px) {
.col-lg-6{
    width: 100%;
}
.col-lg-4{
    width: 100%;
}
.navigation{
    display: none;
}
.slide-section .overlay{
    padding-bottom: 50px;
}
.slide-section h1{
    font-size: 6em;
}
#slider{
    height: 60vh;
}
#slider>li{
    top: 60%;
    height: auto;
}
.slide-section .image img{
    width: 70vw;
    margin-top: 5rem;
}
.slide-section .details h2{
    margin-top: 100px;
    font-size: 2.5rem;
    line-height: 1.2em;
}
#hero-bg-video .video-container{
    height: 60vh;
}
#hero-bg-video .video-container .dark-overlay{
    height: 100%;
}
#hero-bg-video .video-container video{
    height: 60vh;
}
#hero-bg-video .video-container .overlay-desc h2{
    font-size: 5rem;
}
#hero-bg-video .video-container .overlay-desc p:not(.p-smaller){
    font-size: 2rem;
}
.stock-section .row{
    display: block;
}
.stock-section .details {
    max-width: 100%;
    padding: 50px 20px;
    padding-left: 20px;
}
.stock-section .details a{
    padding: 10px 25px;
}
.stock-section .details h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}
.model-section .collect-section h2{
    font-size: 6rem;
    line-height: 1em;
    padding: 100px 10px;
}
.image-animate-one .animation img {
    width: 90vw;
    height: 70vh;
}
.about-section{
    padding: 50px 0;
}
.about-section .row{
    display: block;
}
.about-section .left-side{
    padding: 10px;
    padding-bottom: 30px;
}
.about-section .left-side h3 {
    font-size: 2rem;
    text-align: center;
}
.about-section .left-side ul li a{
    font-size: 25px;
    margin-top: 12px;
    text-align: center;
}
.about-section .left-side ul{
    padding: 0;
}
.about-section .right-side p{
    font-size: 15px;
    text-align: center;
}
.image-animate-rotate .caption h2{
    margin-top: 6vh;
    font-size: 5rem;

}
.image-animate-one .caption h2{
    font-size: 5rem;
    margin-top: 35vh;
}
.image-animate-rotate .caption h3{
    font-size: 2rem;
}
.team-section .row{
    display: block;
}
.team-section .heading h2{
    font-size: 4rem;
}
.team-section .card .image{
    height: auto;
}
.team-section .card .details h2{
    font-size: 3rem;
}
.team-section .card .details p{
    font-size: 16px;
}
.team-section .card .details h2{
    margin: 15px 0;
}
.team-section .card{
    margin-bottom: 20px;
}
.faq-section .row{
    display: block;
}
.faq-section .left-side{
    display: none;
}
.faq-section .right-side{
    max-width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
}
.faq-section .question-container h2{
    font-size: 18px;
}
.faq-section .answer p{
    font-size: 14px;
}
footer .row{
    display: block;
}
footer .top-footer{
    padding: 20px;
}

footer .right-side{
    padding: 0;
    margin-top: 30px;
}
footer .copyright{
    margin-top: 30px;
}
footer p{
    font-size: 16px;
}
footer ul li a{
    font-size: 16px;
}
footer h2{
    font-size: 22px;
}




}



  