@import url("https://fonts.googleapis.com/css2?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");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif !important;
}

.green-bg {
  background-color: #00b355;
}

.green-text {
  color: #00b355;
}

.green-btn {
  background-color: #00b355;
  color: #ffffff;
  text-decoration: none;
  border: none;
  outline: none;
  border-radius: 5px;
  transition: 0.4s all;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid;
}
.green-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff;
  transition: 0.4s all;
  z-index: -1;
}
.green-btn::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff;
  transition: 0.4s all;
  z-index: -1;
}
.green-btn:hover {
  color: #00b355;
}
.green-btn:hover::before {
  width: 52%;
}
.green-btn:hover::after {
  width: 53%;
}

.light-btn {
  background-color: #ffffff;
  color: #00b355;
  text-decoration: none;
  border: none;
  outline: none;
  border-radius: 5px;
  transition: 0.4s all;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid;
}
.light-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #00b355;
  transition: 0.4s all;
  z-index: -1;
}
.light-btn::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: #00b355;
  transition: 0.4s all;
  z-index: -1;
}
.light-btn:hover {
  color: #ffffff;
}
.light-btn:hover::before {
  width: 52%;
}
.light-btn:hover::after {
  width: 52%;
}

header {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  width: 90%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 999;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: 0.4s all;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(155, 155, 155, 0.18);
  border: 2px solid #00b355;
}
header .logo {
  width: 100px;
}
header nav li {
  margin: 0 5px;
}
header nav li a {
  color: #000000 !important;
  transition: 0.4s all;
  font-size: 0.9rem;
}
header nav li a:hover {
  background-color: #00b355;
  border-radius: 5px;
  color: #ffffff !important;
}

.border-radius {
  border-radius: 10px;
}

.sticky {
  position: fixed; /* Fix the header at the top */
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 1000;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0;
}

.loginbtn {
  color: #ffffff !important;
}
.loginbtn:hover {
  color: #00b355 !important;
}

.hero-sec {
  height: 100vh;
  background: linear-gradient(90deg, #fdfffa 0%, rgba(255, 255, 255, 0) 100%), url("../images/hero-bg.webp") no-repeat center center/cover;
}
.hero-sec .hero-text {
  margin-top: 15rem;
}
.hero-sec .hero-text h1 {
  font-size: 3rem;
}

.heading p {
  font-family: "Dancing Script", cursive;
}
.heading h2 {
  color: #00b355;
}
.heading a i {
  transform: rotate(45deg);
}

.services .service-box {
  border-radius: 10px;
  overflow: hidden;
}
.services .service-box:hover img {
  filter: none;
}
.services .service-box:hover .srv-txt {
  bottom: 7%;
}
.services .service-box figure img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
  transition: 0.6s all;
}
.services .service-box .srv-txt {
  z-index: 99;
  bottom: 5%;
  left: 50%;
  background: linear-gradient(to bottom, #00b354, rgba(0, 182, 94, 0.83));
  width: 90%;
  transform: translate(-50%, 0%);
  border-radius: 15px;
  transition: 0.5s all;
}

.myBrochure {
  border-radius: 10px;
}

.program-sec {
  position: relative;
}
.program-sec::after {
  position: absolute;
  content: "";
  background: url(../images/hatman.png) no-repeat center/100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
}
.program-sec .program-box {
  border: 1px solid rgb(203, 203, 203);
  border-radius: 10px;
  transition: 0.4s all;
}
.program-sec .program-box p {
  color: gray;
}
.program-sec .program-box:hover {
  background-color: #00b355 !important;
}
.program-sec .program-box:hover .icon {
  background-color: #ffffff;
  color: #00b355;
}
.program-sec .program-box:hover h4 {
  color: #ffffff;
}
.program-sec .program-box:hover p {
  color: #ffffff;
}
.program-sec .program-box .icon {
  background-color: #00b355;
  border: 1px solid rgba(203, 203, 203, 0.685);
  width: 80px;
  border-radius: 10px;
  color: #ffffff;
  transition: 0.4s all;
}
.program-sec .golf-ball img {
  width: 100%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.watermark-right {
  position: relative;
}
.watermark-right::before {
  position: absolute;
  content: "";
  width: 15%;
  height: 55%;
  right: 0%;
  bottom: 0%;
  transform: translate(0%, 0%);
  background: url(../images/golfzone-logo.png) no-repeat center center/100%;
  background-attachment: fixed;
  opacity: 0.2;
}

.watermark-left {
  position: relative;
}
.watermark-left::before {
  position: absolute;
  content: "";
  width: 15%;
  height: 55%;
  left: 0%;
  bottom: 0;
  transform: translate(0%, 0%);
  background: url(../images/golfzone-logo.png) no-repeat center center/100%;
  background-attachment: fixed;
  opacity: 0.2;
}

.online-coaching {
  background: url(../images/bg.png) no-repeat center center/cover;
  border-radius: 10px;
}

.page-title {
  background: url(../images/title.jpg) no-repeat center/cover;
  padding: 14rem 0rem 4rem 0rem;
}

.newletter form input {
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.5254901961);
  border: 1px solid #ffffff;
}
.newletter form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.631372549);
  font-size: 0.9rem;
}
.newletter form input::placeholder {
  color: rgba(255, 255, 255, 0.631372549);
  font-size: 0.9rem;
}
.newletter form button {
  border-radius: 100px;
  top: 50%;
  right: 0%;
  transform: translate(-9%, -50%);
}

footer .middle-footer ul {
  list-style-type: none;
}
footer .middle-footer .footer-box img {
  width: 150px;
}
footer .middle-footer .links a:hover {
  color: #00b355 !important;
}
footer .middle-footer .links a:hover i {
  margin-right: 10px;
}
footer .middle-footer .links i {
  font-size: 0.7rem;
  color: rgb(0, 0, 0);
  margin-right: 5px;
  transition: 0.3s all;
}

.testmonial .swiper {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(128, 128, 128, 0.2588235294);
  border-radius: 10px;
}

.contact-detail .contact-box {
  border: 1px solid rgb(203, 203, 203);
  border-radius: 10px;
  transition: 0.4s all;
}
.contact-detail .contact-box p {
  color: gray;
}
.contact-detail .contact-box:hover {
  background-color: #00b355;
}
.contact-detail .contact-box:hover .icon {
  background-color: #ffffff;
  color: #00b355;
}
.contact-detail .contact-box:hover h4 {
  color: #ffffff;
}
.contact-detail .contact-box:hover p {
  color: #ffffff;
}
.contact-detail .contact-box .icon {
  background-color: #00b355;
  border: 1px solid rgba(203, 203, 203, 0.685);
  width: 80px;
  border-radius: 10px;
  color: #ffffff;
  transition: 0.4s all;
}

.form-sec {
  box-shadow: 0px 5px 15px rgba(128, 128, 128, 0.423);
  border-radius: 20px;
  margin-top: -100px !important;
  width: 80% !important;
  margin: 0 auto;
}
.form-sec input {
  transition: 0.4s all;
}
.form-sec input:focus {
  box-shadow: 0px 4px 10px rgba(0, 179, 84, 0.3098039216);
  border-color: #00b355;
}

.pricing {
  background: url(../images/pricing-bg.jpg) no-repeat top/cover;
}
.pricing #pills-tab {
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #00b355;
  border-radius: 5px;
}
.pricing #pills-tab button {
  color: #000000;
  transition: 0.4s all;
}
.pricing #pills-tab .active {
  background-color: #00b355;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 2px;
}
.pricing .pricing__card .package-body {
  position: relative;
  border-radius: 30px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8274509804), rgba(194, 225, 255, 0.8078431373));
}
.pricing .pricing__card .package-body h3 {
  border-radius: 20px;
}
.pricing .pricing__card .package-body .package-bottom {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.ser-img {
  border-radius: 10px;
  overflow: hidden;
}

.junior-camp {
  background: url(../images/junior-camp.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.junior-camp .ser-text {
  background-color: rgba(0, 0, 0, 0.5294117647);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
}

.summer-camp {
  background: url(../images/summer-camp.jpg) no-repeat;
  background-position: center top;
  background-size: cover;
}
.summer-camp .ser-text {
  background-color: rgba(0, 0, 0, 0.5294117647);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
}

.fetr-box {
  background-color: rgba(238, 238, 238, 0.3294117647);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.4s all;
}
.fetr-box:hover {
  background-color: #ffffff;
  border: 1px solid #00b355;
  box-shadow: 0px 5px 12px rgb(228, 228, 228);
}
.fetr-box .icon {
  width: 70px;
  margin: 0 auto;
}
.fetr-box .icon img {
  width: 100%;
}

.ceo .ceo-img {
  border-radius: 10px;
  overflow: hidden;
}

.story .story-box:hover img {
  transform: scale(1.2);
}
.story .story-box .story-img {
  border-radius: 10px;
  overflow: hidden;
}
.story .story-box .story-img img {
  transition: 0.4s all;
}

.certificate .certificate-box:nth-child(2) {
  background-color: rgb(234, 234, 234);
}
.certificate .form-sec {
  margin-top: 0 !important;
  background: url(../images/services-2.jpg) no-repeat center/cover;
  border-radius: 0;
}
.certificate .form-sec form {
  background: rgba(0, 0, 0, 0.3294117647);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
}

.golf-designing .service-box figure img {
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: none;
  transition: 0.6s all;
}

.city-club .swiper-slide {
  overflow: hidden;
  border-radius: 10px;
}
.city-club .swiper-slide:hover img {
  transform: scale(1.2);
}
.city-club .swiper-slide img {
  transition: 0.4s all;
}

.core .core-box {
  background-color: #00b355;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.4s all;
}
.core .core-box p {
  color: #ffffff;
  transition: 0.4s all;
}
.core .core-box:hover {
  background-color: #ffffff;
  border: 1px solid #00b355;
  box-shadow: 0px 3px 8px rgb(231, 231, 231);
}
.core .core-box:hover p {
  color: #00b355;
}

.all-program {
  background: url(../images/all-program.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.all-program::before {
  background-color: #000000;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
}

@media (min-width: 320px) and (max-width: 989px) {
  .program-sec .golf-ball {
    text-align: center;
  }
  .program-sec .golf-ball img {
    width: 50%;
    margin: 0 auto;
  }
  .package-bottom {
    position: relative !important;
  }
}
@media (min-width: 990px) and (max-width: 1366px) {
  header {
    width: 100%;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 0.8rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */