@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --theme-color: #60abae;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Nunito", sans-serif;
  /* font-family: "Montserrat", sans-serif; */
  /* font-family: "Poppins", sans-serif; */
}

@media (min-width: 1700px) {
  .container {
    max-width: 1440px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #828282;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Nunito", sans-serif;
  /* font-family: "Montserrat", sans-serif; */
  /* font-family: "Poppins", sans-serif; */
}

img {
  max-width: 100%;
  height: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

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

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1;
  padding: 0;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--theme-color);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}

/* Begin: Main Slider CSS */
.main-slider {
  background: url(../images/banner.jpg) top center/cover fixed no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.main-slider h2 {
  font-size: 8.25rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
  margin: 0;
}
.main-slider h2 span {
  display: block;
  font-weight: 900;
  font-size: 2.375rem;
}
.main-slider p {
  margin: 0.5rem 0 1.5rem;
  font-size: 1.25rem;
  color: var(--white);
  width: 50%;
}
.main-slider .goDown {
  position: absolute;
  left: 15rem;
  bottom: 10rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1;
}
.main-slider .goDown:hover {
  color: var(--theme-color);
}
/* END: Main Slider CSS */

/* Begin: Button Style */
.themeBtn {
  display: inline-block;
  color: var(--white);
  border: 0;
  text-transform: capitalize;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding: 0;
  background: transparent;
}
.themeBtn i {
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #fff;
  border-radius: 100px;
  margin-left: 1rem;
  transition: ease all 0.5s;
}
.themeBtn:before {
  content: "";
  width: calc(100% - 3.8rem);
  height: 2px;
  background: rgb(255 255 255 / 70%);
  position: absolute;
  bottom: 0;
}
.themeBtn:hover,
.themeBtn:focus {
  color: var(--theme-color);
}
.themeBtn:hover i,
.themeBtn:focus i {
  transform: rotate(360deg);
  border-color: var(--theme-color);
}

/* About Section */
.sec_heading {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
}
.sec_heading span {
  display: block;
  font-size: 1.5rem;
  color: var(--theme-color);
  font-weight: 400;
  text-transform: capitalize;
}
.about_section .themeBtn {
  color: var(--theme-color);
}
.about_section .themeBtn i {
  border-color: var(--theme-color);
}
.about_section .themeBtn:before {
  background: var(--theme-color);
  bottom: 0.5rem;
}
.about_section figure {
  position: relative;
}
.about_section figure::before {
  content: "";
  border: 5px solid var(--theme-color);
  border-right: 0;
  position: absolute;
  left: 2rem;
  top: -2rem;
  right: 2rem;
  z-index: 1;
  bottom: -2rem;
}
.about_section figure::after {
  content: "";
  border-right: 5px solid var(--theme-color);
  position: absolute;
  top: -2rem;
  right: 2rem;
  z-index: -1;
  bottom: -2rem;
}

/* Begin: Video Gallery CSS */
/* .advantureSeeker .swiper-wrapper {
  gap: 0 4rem;
} */
.videoThumb {
  position: relative;
  overflow: hidden;
}
.videoThumb > img {
  transition: opacity, ease all 1s;
}
.videoThumb .playVid {
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  display: flex;
  gap: 1rem;
  padding: 5rem;
  outline: none;
  align-items: center;
}
.videoThumb .playVid span {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.videoThumb .playVid i {
  width: 6.25rem;
  height: 6.25rem;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  border: 5px solid var(--white);
}
.navigationControls {
  width: 70%;
  height: 40px;
  margin: 2rem auto 0;
  position: relative;
}
.navigationControls .swiper-button-prev:after,
.navigationControls .swiper-button-next:after {
  content: "\f177";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.5rem;
  font-weight: 400;
  color: #6f6f6f;
}
.navigationControls .swiper-button-next:after {
  content: "\f178";
}
.navigationControls .swiper-button-prev,
.navigationControls .swiper-button-next {
  display: flex;
  gap: 0 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #6f6f6f;
}
.navigationControls .swiper-button-prev {
  flex-flow: row-reverse;
}
.navigationControls .swiper-scrollbar {
  width: 80%;
  height: 2px;
  margin: 0 auto;
  top: 1rem;
}
.navigationControls .swiper-scrollbar .swiper-scrollbar-drag {
  width: 15px !important;
  height: 15px;
  background: var(--theme-color);
  top: -6px;
}
/* END: Video Gallery CSS */

.storeSection {
  background: #9fccce url(../images/storeBg.png) center/cover no-repeat;
}
.storeSection .sec_heading {
  color: var(--white);
}
.proCard {
  background-color: #f2f2f2;
  text-align: center;
  margin-bottom: 1.5rem;
}
.proCard .imgWrap {
  display: grid;
  place-items: center;
  min-height: 450px;
}
.proCard .content {
  padding: 2rem;
}
.proCard h3 {
  font-size: 1.375rem;
  color: var(--black);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.proCard p {
  font-size: 0.925rem;
  color: #828282;
  font-weight: 300;
  line-height: 1;
  margin: 0;
}

.proCard span i {
  color: #e2cc00;
  font-size: 0.725rem;
}

.proCard .themeBtn {
  color: var(--theme-color);
}
.proCard .themeBtn i {
  border-color: var(--theme-color);
}
.proCard .themeBtn:before {
  background: var(--theme-color);
  bottom: 0.5rem;
}

/* testimonialSec */
.testimonialSec {
  background: url(../images/testbg.jpg) center/cover no-repeat;
}
.testimonialSec .sec_heading span {
  color: #6b7f5d;
}
.testimonialCard {
  transition: 0.3s ease-in-out;
  transform: scale(0.85);
  border-radius: 10px;
  padding: 1.5rem 2rem 3rem;
  text-align: center;
  border: 1px solid var(--white);
  background-color: var(--white);
  position: relative;
  box-shadow: 0px 4px 40.95px 4.05px rgba(0, 0, 0, 0.06);
}
.testimonialCard h3 {
  font-size: 1.75rem;
  color: var(--black);
  line-height: 1;
  font-weight: 500;
}
.testimonialCard h3 span {
  display: block;
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: #828282;
}
.testimonialCard p {
  font-size: 1rem;
  color: #828282;
  font-weight: 400;
  font-style: italic;
  line-height: 1.833;
  text-align: center;
}
.testimonialCard .rating {
  color: #ffc107;
  font-size: 1.375rem;
}
.testimonialSec .slick-arrow::before {
  display: none;
}
.testimonialSec .slick-arrow {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background-color: #6d6e70;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
}
.testimonialSec .slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonialCard.testimonialCenter,
.slick-current.slick-active .testimonialCard {
  transform: scale(1.125);
}
/* Blog Section */
.blogSection .sec_heading span {
  color: #6b7f5d;
}
.blogSection .line {
  height: 100%;
  width: 1px;
  margin: 0 auto;
  background-color: #cfcfcf;
}
.blogThumb {
  padding: 0;
  border-radius: 0;
  gap: 1rem;
  align-items: center;
}
.blogThumb.d-flex {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 63px 0px rgba(215, 215, 215, 0.41);
}
.blogThumb.d-flex .content {
  box-shadow: none;
  width: 40%;
}
.blogThumb.d-flex .imgWrap {
  width: 60%;
}
.blogThumb img {
  border-radius: 0;
}
.blogThumb .content {
  padding: 2rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 63px 0px rgba(215, 215, 215, 0.41);
  width: 90%;
  margin-left: auto;
}
.blogThumb .content ul {
  display: flex;
  margin: 0 0 1rem;
}
.blogThumb .content ul li + li {
  border-left: 1px solid #828282;
}
.blogThumb .content ul a {
  color: #828282;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  padding: 0 1rem;
}
.blogThumb .content ul li:first-child a {
  padding-left: 0;
}
.blogThumb .content p {
  color: #828282;
  font-weight: 500;
  font-size: 1.125rem;
}
.blogThumb.d-flex .content h4 a {
  font-size: 2.125rem;
}
.blogThumb .content h4 a {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--black);
}

.blogThumb.d-flex .content p {
  margin: 0;
}
.blogThumb .content > a {
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
}
.blogThumb.d-flex .themeBtn {
  color: var(--theme-color);
}
.blogThumb.d-flex .themeBtn i {
  border-color: var(--theme-color);
}
.blogThumb.d-flex .themeBtn:before {
  background: var(--theme-color);
  bottom: 0.5rem;
}

/* Begin: Follow Us CSS */
.followUs {
  position: relative;
  padding: 7rem 0;
  background: #9fccce top right/35% 100% no-repeat;
}
.followUs h2 {
  color: var(--white);
  text-transform: capitalize;
}
.followUs:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: url(../images/bg3.jpg) top left/cover no-repeat;
}
.followUs p {
  color: var(--white);
  line-height: 1.8;
  margin: 0 0 3rem;
}
.instaThumb {
  position: relative;
  display: block;
}
.instaThumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #fff;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  transition: opacity, ease all 0.5s;
  transform: scale(0.5);
  opacity: 0;
}
.instaThumb:hover .overlay {
  opacity: 0.8;
  transform: scale(1);
}
.followUs .themeBtn:hover {
  color: var(--black);
}
.followUs .themeBtn:hover i {
  border-color: var(--black);
}
.followUs .themeBtn:hover:before {
  background: var(--black);
  bottom: 0.5rem;
}

/* END: Follow Us CSS */

.contactSec span {
  display: block;
  margin: 0.5rem 0;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #34384b;
  text-transform: uppercase;
  line-height: 1;
}
.contactSec a {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.389;
  color: #4f5969;
}
.contactSec a:hover,
.contactSec a:focus {
  color: var(--theme-color);
}

/* Begin: footer */

footer {
  background: var(--black);
  padding-top: 6em;
  position: relative;
}

footer h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

footer p {
  color: var(--white);
  font-size: 1.125rem;
  margin: 1.5rem 0 0;
}

footer .links,
footer .contInfo {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 0.5rem 0;
}

footer .contInfo {
  gap: 2rem 0;
}

footer .links li a,
footer .contInfo li a {
  font-weight: 400;
  color: var(--white);
  font-size: 1.125rem;
}

footer .contInfo li a {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

footer .contInfo li a span {
  display: block;
  text-transform: none;
}

footer .contInfo li a strong {
  text-transform: uppercase;
  font-weight: 500;
}

footer .links li a:hover,
footer .links li a:focus {
  color: var(--theme-color);
}

.copyRight {
  border-top: 1px solid var(--white);
  padding: 2em 0;
  margin-top: 5em;
  align-items: center;
}

.copyRight p {
  margin: 0;
}

.footerSocial {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: flex-start;
  gap: 0 6px;
}

.footerSocial a {
  font-size: 1rem;
  color: #757c85;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--white);
  width: 50px;
  height: 50px;
}

.footerSocial a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
footer form .form-group input {
  border: 0;
  height: 50px;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  background-color: transparent;
  border-bottom: 2px solid var(--white);
}
/* END: footer */

.main-slider.inner-slider {
  background: url(../images/innerBnnr.jpg) top/100% no-repeat fixed;
  min-height: 750px;
  height: auto;
}
.main-slider.inner-slider h2 {
  font-size: 6.25rem;
}
.blogSection.blogInner .blogThumb {
  background-color: rgb(255, 255, 255);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0px 3px 63px 0px rgba(215, 215, 215, 0.41);
}
.blogSection.blogInner .blogThumb .content {
  box-shadow: none;
  background: none;
  padding-bottom: 0;
}

.storeSection.storeInner {
  background: none;
}
.testimonialInner .testimonialCard {
  margin-bottom: 2rem;
  transform: none;
}

/* videoInner */

.videoImg {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 0;
}
.videoImg img {
  transition: 0.3s ease-in-out;
}
.videoImg span {
  display: inline-block;
  height: 100px;
  width: 100px;
  background-color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--theme-color);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 0px 10px rgb(255 255 255/50%);
}
.videoImg:hover img {
  transform: scale(1.125);
}

/* contactForm */
.contactSec {
  padding: 10rem 0;
}
.contactSec .sec_heading {
  font-size: 3.75rem;
  font-weight: 700;
}
.contactSec figure {
  position: relative;
}
.contactSec figure::before {
  content: "";
  height: 100%;
  width: 100%;
  border: 5px solid var(--theme-color);
  max-width: 643px;
  max-height: 754px;
  position: absolute;
  animation: pulse 3s ease-out infinite;
  left: -2rem;
  top: -2rem;
  z-index: -1;
}
.contactForm {
  margin-left: -12rem;
  background-color: var(--white);
  padding: 4rem;
  box-shadow: 0px 3px 38px 0px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contactForm label {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2a29;
  text-transform: uppercase;
  line-height: 1.75;
}
.contactForm .form-group {
  margin-bottom: 2.5rem;
}
.contactForm .form-group .form-control {
  font-size: 1.0625rem;
  font-weight: 400;
  height: 50px;
  line-height: 1;
  color: var(--black);
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #eeeeef;
  background-color: unset;
}
.contactForm .form-group .form-control::placeholder {
  color: #a6a6a6;
}
.contactForm button {
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 83px;
  height: 84px;
  border: 0;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 2rem;
}
.contactForm button:hover {
  background-color: var(--black);
  color: var(--theme-color);
}
