@charset "utf-8";

/*** Fonts Face CSS ***/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/**** CSS Variables ****/

/** use variables in css property like, background-color: var(--primary-color); */
:root {
  /* --- color variables --- */
  /* --primary-color: #101010; */
  --primary-color: #000;
  --secondary-color: #d9a257;
  --white-color: #fff;
  --border-color: #e8dede;
  --text-primary-color: #292323;
  --text-secondary-color: #ccc;
  --text-selection-color: #b3d4fc;
}

/* -=- Common Element CSS Start -=- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  background: var(--text-selection-color);
  text-shadow: none;
}

::selection {
  background: var(--text-selection-color);
  text-shadow: none;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

html,
body {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--primary-color);
  font-family: 'Lato', sans-serif;
}
body {
  overflow-x: hidden;
}

img {
  border: 0px !important;
  outline: none;
  width: 100%;
  max-width: 100%;
  display: block;
}


.custom-size{
    margin: 5px 0px 0px 0px;
    height: 50%;
    width: 50%;
}


.white-bullets li {
    list-style-type: disc; 
      list-style-position: outside;
  color: white; 
}

ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}


/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list']
ol[role='list'] {
  list-style: none;
}

a:hover,
a:focus,
a:active,
a:visited {
  outline: none;
  text-decoration: none;
}

.btn:focus,
.btn.focus,
.form-control:hover,
.form-control:focus,
.form-control:focus:active {
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

p {
  margin: 0px;
  font-size: 20px;
  line-height: 32px;
  color: var(--text-primary-color);
  font-weight: normal;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  border: 0;
  border-top: 1px solid var(--border-color);
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--text-secondary-color);
  opacity: 1;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--text-secondary-color);
}

input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--text-secondary-color);
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

textarea {
  resize: none;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

textarea::placeholder {
  color: var(--text-secondary-color);
  opacity: 1;
}

textarea:-ms-input-placeholder {
  color: var(--text-secondary-color);
}

textarea::-ms-input-placeholder {
  color: var(--text-secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
a {
  font-family: 'Roboto', sans-serif;
}

/*** Heading CSS ***/
h1,
.h1 {
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 1.2px;
  /* color: var(--white-color); */
  color: var(--white-color);
}

h2,
.h2 {
  margin-bottom: 0px;
  font-size: 36px;
  line-height: 50px;
  /* letter-spacing: 1.6px; */
  /* color: var(--white-color); */
  color: var(--primary-color);
}

h3,
.h3 {
  margin-bottom: 0px;
  font-size: 28px;
  line-height: 38px;
  /* letter-spacing: 1.6px; */
  /* color: var(--white-color); */
  color: var(--primary-color);
}

h4,
.h4 {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 24px;
  /* color: var(--white-color); */
  color: var(--primary-color);
}

h5,
.h5 {
}

h6,
.h6 {
}
.bg-white {
  /* background-color: var(--white-color); */
  color: var(--primary-color);
  /* background-color: #f8f8f8 !important; */
}
/* Common Class CSS related to text alignment*/
.t-secondary {
  color: var(--secondary-color);
}
.bg-grey {
  background-color: #f6f6f6;
}
.t-white {
  color: var(--white-color);
}
.t-dark {
  color: var(--primary-color);
}
.t-lightDark {
  color: #a6a6a6;
}
.t-small {
  font-size: 14px;
  line-height: 16px;
}
.themeBtn {
  padding: 12px 20px;
  background: var(--secondary-color);
  color: var(--white-color);
  border: 2px solid var(--secondary-color);
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  transition: background 0.4s ease-in-out, color 0.4s ease-in-out;
}
.themeBtn:hover {
  background: transparent;
  color: var(--secondary-color);
}
.fs-56 {
  font-size: 56px;
  line-height: 64px;
  line-height: 70px;
}
.common-spacing {
  padding-top: 80px;
}
.pb-40 {
  padding-bottom: 40px;
}
/* -=- Header CSS -=- */
header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.9);
}
.navbar {
  padding: 12px 0px;
}
.siteLogo {
  padding-top: 0px;
  padding-bottom: 0px;
  width: 180px;
  max-height: 50px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  background: var(--secondary-color);
  color: var(--white-color);
}
.navbar-light .navbar-nav .nav-link {
  /* margin-left: 25px; */
  padding: 12px 20px;
  color: var(--white-color);
  text-transform: capitalize;
  letter-spacing: 1px;
}

/* -=- Footer CSS -=- */
footer .container {
  padding: 50px 0px 0px;
}
.footerLogo {
  display: inline-block;
}
.footerLogo img {
  width: 260px;
}
header .socialLinks {
  margin: 0px;
}
header .socialLinks li a {
  font-size: 18px;
  line-height: 20px;
}
header .socialLinks li a:hover i {
  color: var(--primary-color);
}
.HeaderSocialLink {
  background-color: var(--secondary-color);
  padding: 10px 0px;
}
.socialLinks {
  margin: 20px 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socialLinks li {
  margin: 0px 10px;
}
.socialLinks li a {
  display: inline-block;
  color: var(--white-color);
  font-size: 26px;
  line-height: 28px;
}
.socialLinks li a i {
  transition: color 0.3s ease-in-out;
}
.socialLinks li a:hover i {
  color: var(--secondary-color);
}
.copyRights {
  padding: 20px 0px;
}
.copyRights p {
  font-size: 14px;
  line-height: 20px;
  color: var(--white-color);
}
.footerLink {
  transition: color 0.4s ease-in-out, text-decoration 0.4s ease-in-out;
  color: var(--white-color);
  text-decoration: underline;
}
.footerLink:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}
/* -=- Main Area CSS -=- */
.section {
  padding: 60px 0px;
}
main {
}
#bannerVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroSection {
  max-height: 100vh;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}
.heroInnerWrapper {
  max-width: 615px;
}
.heroSlide {
  min-height: 100vh;
  background: url('') no-repeat center center / cover;
  position: relative;
}
.heroSlide:before {
  content: '';
  background: rgba(16, 16, 16, 0.2);
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.heroSlide .container {
  min-height: inherit;
  position: relative;
  z-index: 1;
}
.heroInnerWrapper h1 {
  position: relative;
  margin-bottom: 30px;
}
.heroInnerWrapper a {
  position: relative;
}
.heroSection .slick-dotted.slick-slider .slick-dots {
  margin: 0px;
  position: absolute;
  bottom: 30px;
  left: 0px;
}
.heroSection .slick-slide.slick-current.slick-active a,
.heroSection .slick-slide.slick-current.slick-active h1 {
  animation: animateSlide cubic-bezier(0.7, 0, 0.3, 1) 1.8s forwards;
}
@keyframes animateSlide {
  from {
    left: 100%;
    opacity: 0;
  }
  to {
    left: 0px;
    opacity: 1;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: transparent !important;
  /* box-shadow: 0px 0px 0px rgba(0, 0, 0, 1) !important; */
}
/* Custom Select Box */
.custom-select {
  min-width: 100%;
}
.select2 {
  width: 100% !important;
  height: 100% !important;
}
.select2-container--default .select2-selection--single {
  border: 1px solid var(--text-secondary-color);
  background-color: transparent;
  border-radius: 0px;
  height: 100%;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 10px 14px;
  font-size: 16px;
  line-height: 20px;
  color: var(--primary-color);
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.select2-dropdown {
  z-index: 9999;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 128px;
}
.customModalSelectBox {
}
.customSelectBox select {
  appearance: none;
  /* safari */
  -webkit-appearance: none;
  /* other styles for aesthetics */
  width: 100%;
  cursor: pointer;
  padding: 10px 5px;
  border-radius: 0px;
  background: transparent;
  border: none;
  font-size: 16px;
  line-height: 20px;
  color: var(--white-color);
}
.custom-select select option {
  padding: 10px 8px;
  border-radius: 0px;
  background-color: var(--primary-color);
}
.custom-select select:focus {
  outline: none;
}
/* Fancy Modal Box CSS */
.fancy-modalBox {
  padding: 40px;
  max-width: 700px;
}
.fancy-modalBox.fancybox-content {
  background: var(--white-color);
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 7px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  height: 38px;
}
#contactUs {
  overflow-x: hidden;
  overflow-y: hidden;
}
/* Banner Video Section */
#heroBannerVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroSlider {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
/* Your Partner in real estate Section */
.realEstatePartnerInnerWrapper {
  max-width: 80%;
}
/* Why To Choose Section */
.whyToChooseList {
  padding: 25px;
  /* background-color: #1f1a1a; */
  background-color: #fff;
}
.whatWeOfferList h3,
.whyToChooseList h3 {
  margin-bottom: 15px;
}
.packageOption p,
.coachingProgramDesc p,
.whatWeOfferList p,
.whyToChooseList p {
  font-size: 16px;
  line-height: 26px;
  /* letter-spacing: 1px; */
  color: var(--white-color);
}
.whyToChooseWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.whyToChooseWrapper .whyToChooseList {
  width: calc(50% - 25px);
}
/* About Us Section */
.aboutUsProfile {
  margin-bottom: 20px;
}
.aboutUsWrapper {
  max-width: 92%;
}
.aboutUsWrapper p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  /* color: var(--white-color); */
  color: var(--primary-color);
}
.aboutUsDescInner p {
  color: var(--primary-color);
}
.aboutUsWrapper p:last-child {
  margin: 0px;
}
.aboutUsimg {
  background: url() no-repeat center left / cover;
}
/* CoachingProgram Section */
.coachingProgramDesc p {
}
/* What we offer Section */
.whatWeOfferList,
.packageOption {
  padding: 40px;
  height: 100%;
  /* background-color: #1f1a1a; */
  /* background-color: #120e0e; */
  background-color: #f6f6f6;
}
/* .topicsList > li:hover,
.whyToChooseWrapper .whyToChooseList:hover,
.whatWeOfferSection .whatWeOfferList:hover {
  box-shadow: 0 1px 1px rgba(217, 162, 87, 0.07),
    0 2px 2px rgba(217, 162, 87, 0.07), 0 4px 4px rgba(217, 162, 87, 0.07),
    0 8px 8px rgba(217, 162, 87, 0.07), 0 16px 16px rgba(217, 162, 87, 0.07),
    0 32px 32px rgba(217, 162, 87, 0.07);
} */
/* .topicsList > li,
.whatWeOfferSection .whyToChooseList,
.whatWeOfferSection .whatWeOfferList {
  transition: box-shadow 0.2s ease-in-out;
} */
.whyToChooseList p,
.whatWeOfferList p {
  color: #a6a6a6;
}
.whyToChooseList img,
.topicsIcons,
.whatWeOfferList img {
  margin-bottom: 30px;
  max-width: 70px;
  height: auto;
}
.vertical-tabs .tab-content .tab-pane img {
  max-width: 120px;
}
.vertical-tabs .tab-content .tab-pane p {
  color: var(--primary-color);
}
.testimonialsSlide-desc {
  margin-top: 20px;
}
.tabViewInner {
  width: 100%;
  max-width: 700px;
}
/* Coaching Program Section  */
.topicsList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.topicsList > li {
  padding: 25px;
  width: calc(33.33% - 20px);
  /* background-color: #1f1a1a; */
  background-color: #120e0e;
  position: relative;
  z-index: 1;
  /* border-bottom: 1px solid var(--secondary-color); */
}
.vertical-tabs .tab-content {
  height: 100%;
}
.vertical-tabs .tab-content .tab-pane {
  padding: 25px;
  height: 100%;
  background-color: var(--white-color);
}
.vertical-tabs .nav-tabs .nav-link {
  padding: 10px 20px 10px 27px;
  margin: 0px;
  border-radius: 0px;
  border: none;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  background-color: var(--white-color);
  position: relative;
}
.vertical-tabs .tab-content,
.vertical-tabs .nav-tabs .nav-link {
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
.vertical-tabs .tab-content,
.vertical-tabs .nav-tabs .nav-link {
  border-bottom: 1px solid #d9d9d9;
}
.vertical-tabs .nav-tabs .nav-link:before {
  content: '';
  height: 100%;
  max-height: 0%;
  width: 8px;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: var(--secondary-color);
  transition: max-height 0.3s linear;
}
.vertical-tabs .nav-tabs .nav-link.active:before {
  max-height: 100%;
  top: 0px;
  bottom: auto;
}
.vertical-tabs .nav-tabs .nav-link img {
  margin-right: 14px;
  max-width: 30px;
}
.vertical-tabs .nav-tabs .nav-item.show .nav-link,
.vertical-tabs .nav-tabs .nav-link.active {
  /* background: var(--secondary-color); */
}
/* Join Coaching4pro Section CSS */
.unleashPotentialWrapper {
  max-width: 700px;
}
.joinCoachingSection {
  background: url('') no-repeat center center / cover;
  position: relative;
}
.joinCoachingSection h1 {
  color: var(--white-color);
}
.joinCoachingSection .container {
  position: relative;
  z-index: 1;
}
.joinCoachingSection:before {
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(16, 16, 16, 0.7);
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
.packageOption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.packageListView li {
  margin: 0px 0px 10px;
  padding-left: 34px;
  position: relative;
  font-size: 18px;
  line-height: 24px;
}
.packageListView li:before {
  content: '';
  padding: 10px;
  display: block;
  background: url('./../assets/img/tick.svg') no-repeat center center / cover;
  position: absolute;
  top: 0px;
  left: 0px;
}
.plusSign {
  font-size: 20px;
  line-height: 30px;
}
/* Testimonials Section CSS */
.testimonialsSlider.slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.slick-dotted.slick-slider .slick-dots {
  margin-top: 30px;
  position: static;
  bottom: auto;
}
.slick-dotted.slick-slider .slick-dots li button {
  border: 1px solid var(--white-color);
}
.testimonialsSection .slick-dotted.slick-slider .slick-dots li button {
  border-color: var(--primary-color);
}
.slick-dots li.slick-active button:before {
  transition: background 0.4s ease-in-out;
}
.slick-dotted.slick-slider .slick-dots li.slick-active button:before {
  content: '';
  opacity: 1;
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonialsSection {
  position: relative;
}
.testimonialsSection::before {
  content: '';
  height: 198px;
  width: 263px;
  display: block;
  background: url('./../assets/img/quote.svg') no-repeat center center / cover;
  position: absolute;
  top: 0px;
  right: 0px;
}
.testimonialsThumbnail::after {
  content: '';
  display: block;
  height: 0px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  box-shadow: 0px 0px 22px 20px rgba(255, 255, 255, 0.9),
    0px 0px 45px 50px rgba(255, 255, 255, 0.9);
}
.testimonialsSlide {
  padding: 0px 10px;
}
.testimonialsSlide h3 {
  color: var(--secondary-color);
}
.testimonialsSlide-desc p {
  color: var(--white-color);
  font-size: 15px;
  line-height: 20px;
}
.testimonialsSlide-desc p:not(:last-child) {
  margin-bottom: 10px;
}
.testimonialsSlider.slick-initialized .slick-slide {
  padding: 0px 8px;
}
.slick-dots li button:before {
  color: transparent;
}
.testimonialsThumbnail:before {
  content: '';
  padding-top: 100%;
  width: 100%;
  display: block;
}
.testimonialsThumbnail {
  position: relative;
  overflow: hidden;
  background: url('') no-repeat center top / cover;
}
.wrapperPlayBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.playBtn {
  width: 80px;
  display: block;
  position: relative;
  background-color: var(--secondary-color);
  opacity: 0.9;
  border-radius: 50%;
  font-size: 30px;
  line-height: 40px;
  color: var(--primary-color);
}
.playBtn:before {
  content: '';
  padding-top: 100%;
  display: block;
}
.playBtn i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease-in-out;
}
.playBtn:hover i {
  color: var(--white-color);
}
/* Contact Us Section CSS */
.contactSection {
  position: relative;
  overflow: hidden;
}
.contactUsImg {
  background: url('') no-repeat center center / cover;
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0px;
  right: 0px;
  max-width: 50%;
}
.hiddenImg {
  visibility: hidden;
}
/* .contactSection:before {
  content: '';
  height: 100%;
  width: 50%;
  display: block;
  background-color: var(--secondary-color);
  position: absolute;
  top: 0px;
  left: 0px;
} */
.contactSection .container {
  position: relative;
  z-index: 1;
}
.form-control {
  padding: 10px 14px;
  border-radius: 0px;
  background: transparent;
  /* border: none; */
  font-size: 16px;
  line-height: 20px;
  border: 1px solid var(--text-secondary-color);
}
.form-control:focus {
  border-color: var(--secondary-color);
  
  background-color: transparent;
}
/* Privacy Page CSS */
.privacyServicesSection p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 30px;
  color: var(--white-color);
}
.privacyServicesSection li {
  margin-bottom: 15px;
}
.privacyServicesSection h4 {
  font-weight: bold;
  color: var(--white-color);
}
/* 404 Page Design */
.pageNotFoundImg {
  max-width: 150px;
  margin: 0px auto 30px;
}
/* -=- Keyframe CSS -=- */

/* https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion */
@media (prefers-reduced-motion) {
}

/****** Responsive CSS Start ******/
@media (min-width: 320px) {
  h1,
  .h1 {
    font-size: 26px;
    line-height: 32px;
  }
  h2,
  .h2 {
    font-size: 22px;
    line-height: 36px;
  }
  h3,
  .h3 {
    font-size: 18px;
    line-height: 26px;
  }
  h6,
  .h6 {
    font-size: 14px;
    line-height: 20px;
  }
  p {
    font-size: 16px;
    line-height: 26px;
  }
  .hiddenImg {
    max-width: 500px;
    margin: 0px auto 40px;
  }
  /* Header CSS */
  .joinCommunityTxt {
    font-size: 12px;
    line-height: 14px;
  }
  .navbar-light .navbar-toggler {
    border: none;
  }
  .navbar-light .navbar-toggler i {
    font-size: 30px;
    line-height: 34px;
    color: var(--secondary-color);
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-nav {
    margin-top: 10px;
    background: var(--primary-color);
  }
  .navbar-nav .nav-item {
    border-bottom: 1px solid var(--secondary-color);
  }
  .navbar-toggler[aria-expanded='true'] .menu {
    display: none;
  }
  .navbar-toggler[aria-expanded='false'] .close {
    display: none;
  }
  /* Contact Us Section */
  .contactUsImg {
    display: none;
  }
  .hiddenImg {
    visibility: visible;
  }
  /* .contactSection .row {
    flex-direction: column-reverse;
  } */
  .section {
    padding: 30px 0px;
    overflow: hidden;
  }
  .whyToChooseWrapper {
    display: block;
    gap: 40px;
  }
  .whyToChooseWrapper .whyToChooseList {
    margin-bottom: 20px;
    width: 100%;
  }
  /* About Section CSS */
  .aboutUsDesc {
    justify-content: flex-start !important;
  }
  .aboutUsimg {
    margin: 0px auto 30px;
  }
  .aboutUsimg {
    width: calc(100% - 30px);
  }
  .aboutUsWrapper {
    max-width: 100%;
  }
  .programOverviewWrapper {
    flex-direction: column-reverse;
  }
  .aboutUsimg:before {
    content: '';
    padding-top: 100%;
    width: 100%;
    display: block;
  }
  .topicsList {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .topicsList > li {
    width: 100%;
  }
  .whatWeOfferList,
  .packageOption {
    padding: 20px;
  }
  .testimonialsSection::before {
    top: 20px;
    height: 90px;
    width: 122px;
  }
  .testimonialsSection .container {
    position: relative;
    z-index: 1;
  }
  .footerLinkBox {
    margin-top: 4px;
    display: block;
    text-align: center;
  }
  .fs-56 {
    font-size: 30px;
    line-height: 44px;
  }
  .heroInnerWrapper h1 {
    margin-bottom: 18px;
  }
  .playBtn {
    width: 50px;
    font-size: 25px;
  }
  .packageListView li {
    font-size: 16px;
    line-height: 20px;
  }
  /* Footer CSS */
  footer .container {
    padding: 25px 0px 0px;
  }
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 34px;
    line-height: 50px;
  }
  h2,
  .h2 {
    font-size: 30px;
    line-height: 46px;
  }
  h3,
  .h3 {
    font-size: 22px;
    line-height: 32px;
  }
  h6,
  .h6 {
    font-size: 1rem;
  }
  p {
    font-size: 20px;
    line-height: 32px;
  }
  /* Header */
  .joinCommunityTxt {
    font-size: 14px;
    line-height: 18px;
  }
  /* What We Offer Section CSS */
  .whatWeOfferList,
  .packageOption {
    padding: 25px;
  }
  .whyToChooseWrapper .whyToChooseList {
    margin-bottom: 0px;
    width: calc(50% - 15px);
  }
  .whyToChooseWrapper .whyToChooseList:last-child {
    margin-bottom: 0px;
  }
  /* Testimonials Section CSS */
  .testimonialsSection::before {
    top: 0px;
    height: 150px;
    width: 200px;
  }
  .aboutUsimg {
    max-width: 600px;
    width: 100%;
  }
  .whyToChooseWrapper {
    display: flex;
    gap: 30px;
  }
  .aboutUsWrapper {
    max-width: 92%;
  }
  .aboutUsDesc {
    justify-content: flex-end !important;
  }
  .aboutUsDesc.programOverview {
    justify-content: flex-start !important;
  }
  .topicsList {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .topicsList > li {
    width: calc(33.33% - 20px);
  }
  .footerLinkBox {
    margin-top: 0px;
    display: inline-block;
    text-align: left;
  }
  .fs-56 {
    font-size: 44px;
    line-height: 54px;
  }
  .packageListView li {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 40px;
    line-height: 60px;
  }
  h2,
  .h2 {
    font-size: 36px;
    line-height: 50px;
  }
  /* Navigation Menu CSS */
  .navbar-nav {
    margin: 0px;
    background: transparent;
    border: none;
  }
  .navbar-nav .nav-item {
    border: none;
  }
  /* Banner CSS */
  .heroInnerWrapper h1 {
    margin-bottom: 30px;
  }
  .fs-56 {
    font-size: 56px;
    line-height: 70px;
  }
  .testimonialsSection::before {
    height: 198px;
    width: 263px;
  }
  /* Contact Us Section */
  .contactUsImg {
    display: block;
  }
  .hiddenImg {
    visibility: hidden;
  }
  .contactSection .row {
    flex-direction: row;
  }
  .playBtn {
    width: 80px;
    font-size: 40px;
  }
  .programOverviewWrapper {
    flex-direction: row;
  }
  .section {
    padding: 60px 0px;
  }
  .aboutUsimg:before {
    display: none;
  }
  .aboutUsimg {
    width: 41.66666667%;
    margin: 0px;
  }
  footer .container {
    padding: 50px 0px 0px;
  }
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 28px;
    line-height: 38px;
  }
  /* What we offer Section */
  .whatWeOfferList,
  .packageOption {
    padding: 40px;
  }
}
@media (min-width: 1359px) {
  .whyToChooseWrapper .whyToChooseList {
    width: calc(25% - 23px);
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

/****** Responsive CSS End ******/
