@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B2CF08;
    --secondary  : #152229;
    --primary-font: "Poppins", serif;
    --secondary-font:"Inter",sans-serif;
}

html,
body {
    font-family: var(--primary-font);
    color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


/* ====== header css start ====== */
header {
    width: 100%;
    z-index: 99999;
    background: var(--primary-color);
    position: absolute;
}
.frontpage header{
    background: transparent;
}

nav {
    display: flex;
    z-index: 10;
    justify-content: space-between;
    padding: 8px 20px;
    border-bottom: 1px solid #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
    margin-bottom: 0;
}
.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 6px;
}

.nav-links .active {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

.nav-links li a:hover {
    color: var(--yellow);
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
    bottom: 0;
}

.nav-links li a:hover::before {
    width: 80%;
}

.toggle,
[id^=drop] {
    display: none;
}

nav a:hover {
    color: rgb(240 84 84)
}

nav ul ul {
    display: none;
    position: absolute;
    top: 60px;
    background: #fff;
    width: 300px;
    list-style: none;
    border-radius: 2px;
    padding-bottom: 15px;
}

nav ul li:hover>ul {
    display: inherit;
}

nav ul ul li {
    width: 100%;
    float: none;
    display: list-item;
    position: relative;
    padding: 7px 0px !important;
}

li>a:only-child:after {
    content: '';
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* =========== banner css start =========== */
.banner{
   position: relative;
   background-size: cover;
   background-repeat: no-repeat;
   background-image: url(../images/hero-banner.png);
   padding: 18rem 20px;
   display: flex;
   align-items: center;
   z-index: 1;
}

.banner::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: rgb(0 0 0 / 60%);
}

.banner p {
    font-size: 24px;
    font-weight: 500;
}
.theme-color{
    color: var(--primary-color);
}
.btn-group {
    gap: 40px;
    margin-top: 3rem;
}
.cta-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 14px 40px;
    display: block;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    transition: .3s all ease-in-out;
    display: inline-block;
}

.cta-btn:hover{
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
/* =========== what we offer css start =========== */
.what-we-offer {
    padding: 6rem 20px;
    color: #000;
}

.small-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 12px;
}

.title {
    font-size: 28px;
    font-weight: 700;
    color: #2F2F2F;
    margin: 1.5rem 0;
    line-height: 44px;
    font-family: var(--secondary-font);
}
.subheading{
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
}

span.check-icon {
    background: var(--primary-color);
    border-radius: 50%;
    padding: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.what-we-offer ul li{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5rem 0;
}
.cta-btn.cta-btn-v2 {
    background:transparent;
    color: var(--primary-color);
    border: 1px solid ;
    margin-top: 1rem;
}

.cta-btn.cta-btn-v2:hover{
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.we-offer-right img{
    border-radius: 12px;
}
.we-offer-right .we-offer-image{
    position: relative;
}
.we-offer-right .we-offer-image::after {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 12px;
    left: 70px;
}
/* =========== what we offer css end =========== */

/* =========== our mission  css start =========== */
.our-mission{
    background: var(--secondary);
    padding: 5rem 20px;
}

.mission-right p {
    font-size: 18px;
    font-weight: 500;
    line-height: 38px;
}
/* =========== our mission  css end =========== */


/* =========== better golf css start =========== */
.better-golf{
    padding: 5rem 20px;
}

.better-golf p{
    line-height: 32px;
    font-size: 18px;
}
/* =========== better golf css end =========== */

/* =========== order accessories css start =========== */
.order-accessories {
    padding: 3rem 20px;
    background: var(--primary-color);
}

.order-accessories p {
    line-height: 32px;
    font-size: 18px;
}

.cta-btn-v3 {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

a.cta-btn.cta-btn-v3:hover {
    background: #fff;
    color: var(--primary-color);
}

/* =========== order accessories css end =========== */

/* =========== download css start =========== */
.download-app {
    padding: 5rem 20px;
}

.download-left h5 {
    font-weight: 500;
    font-size: 18px;
}

.download-store {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

/* =========== download css end =========== */


/* =========== testimonidal  css start =========== */

.testimonial{
    padding: 6rem 20px;
    background: url(../images/testimonial-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.review-rating i {
    color: #e9c14b;
}
.testimonnial-left {
    background: #fff;
    padding: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-header img {
    width: 70px;
    object-fit: cover;
}
.review-footer .designation{
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.reviewer-info {
    text-align: right;
}

.reviewer-info .name{
    margin-bottom: 10px;
}

.review-slider {
    border: 1px solid var(--primary-color);
    padding: 24px;
}
.testimonnial-left .arrow::after{
    content: '';
}
.testimonnial-left .arrow{
    background: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    position: relative;
}
.testimonnial-left .nav {
    gap: 50px;
    margin-top: -24px;
}
/* =========== testimonidal  css end =========== */

/* =========== bottom cta  css start =========== */
.bottom-cta{
    background: url(../images/bottom-cta.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4rem 20px;
    position: relative;
    z-index: 1;
}
.bottom-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffffe3;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.fw-500{
    font-weight: 500;
}

form.contact-form {
    background: #fff;
    color: #fff;
    border-radius: 8px;
    padding: 20px 20px;
    box-shadow: 0px 0px 3px 0px #00000069;
}
.input-group{
    justify-content: space-between;
}

.input-group .input-field {
    width: 48%;
}

.input-field {
    margin: 1rem 0;
}

form.contact-form input,
form.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-color: #0000003b;
    border-radius: 5px;
}

form.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form h5{
    font-weight: 500;
}
/* 
.bottom-cta i {
 color: var(--primary-color);
} */

.bottom-cta .row{
    background: var(--primary-color);
    padding:40px 20px;
    border-radius: 12px;
}
/* =========== bottom cta  css end =========== */

/* =========== How To use  css start =========== */
.how-to-use {
    padding: 5rem 20px;
    color: #000;
    background: #f8f9fa;
}

.how-to-use h4{
    font-size: 20px;
    font-weight: 600;
}

.how-to-use h6{
    font-weight: 500;
}
.how-to-use-insturction{
    margin-top: 2rem;
}

.how-to-use-insturction ul li {
    list-style: auto;
    color: #242222;
    margin: 1rem 0;
    font-weight: 500;
}

.how-to-use-insturction ul.inside-ul li {
    list-style: disc;
    color: #5e5757;
    margin: 10px 0;
}
.row {
    align-items: center;
}
/* =========== How To use  css end =========== */

/* =========== footer  css start =========== */
footer{
    padding: 5rem 20px 1rem 20px;
    background: var(--secondary);
}
.widget span {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 2rem;
}

.widget ul li a {
    color: #fff;
    margin: 24px 0;
    font-weight: 500;
    display: flex;
    gap: 13px;
    align-items: center;
}

footer li{
    list-style: none;
}
/* =========== footer  css end =========== */

/* ====== privacy policy page start ====== */
.page {
    padding: 3rem 16px;
    color: #152229;
    margin-top: 6rem;
}
.page ul {
    padding-left: 40px;
}
/* ====== privacy policy page end ====== */

/* ORDER ACCESSORIES PRODUCT SECTION START */

.product-holder {
    background: #fff;
    border-radius: 12px;
}
.product-description {
    padding: 20px;
    background: #b2cf0861;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-image {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    /* padding: 10px; */
}

.product-image img {
    height: 250px;
    width: 100%;
    object-fit: contain;
}
.product-left{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.product-slider ul li{
    margin: 1.5rem 0;
}

.product{
    background: transparent;
    color: #000;
    padding: 0;
}

.product.testimonnial-left .arrow {
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    position: relative;
}

.product.testimonnial-left .nav {
    margin-top: 0;
    justify-content: center;
}

.product-image-slider img{
    object-fit: cover !important;
    padding-top: 0 !important;
    object-position: top;
}

.swiper-pagination-bullet-active{
    background: var(--primary-color);
}
/* ORDER ACCESSORIES PRODUCT SECTION END */