@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --theme-color: #18043d;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  height: 100%;
  /* background: linear-gradient(
      180deg,
      #18043d 0%,
      #0f1648 41%,
      #0c041a 51%,
      #180a33 74%,
      #080114 100%
    );
     */
  background: linear-gradient(180deg, #18043d -1%, #0c041a 51%, #080114 100%);
  font-family: "Roboto", sans-serif;
}

.df {
  display: flex;
}

.aic {
  align-items: center;
}

.ais {
  align-items: flex-start;
}

.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}

.jce {
  justify-content: flex-end;
}

.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Roboto", 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: 11;
  top: 0;
  width: 100%;
  padding: 10px 0;
  /* transition: 0.3s ease-in-out; */
}

.navbar-nav {
  gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  padding: 0;
  text-transform: uppercase;
  line-height: 1;
  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(--white);
  transform-origin: center;
  transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}

.form-inline {
  margin-left: 1.5rem;
}

.themeBtn {
  background: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 7px;
  padding: 0.5em 1.5em;
  display: inline-block;
  margin: 0.5rem 0;
  text-transform: uppercase;
  border: 1px solid var(--white);
}

.themeBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}

.secHeading {
  font-size: 6.25rem;
  font-weight: bold;
  color: var(--black);
  line-height: 1;
  position: relative;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 3px 6px rgb(0 0 0/16%);
}

.btn-group {
  gap: 2rem;
}

/* aboutSec */
.aboutSec {
  background: url(../images/about-bg.jpg) center/cover no-repeat;
  padding: 10rem 0;
  margin: 0 auto;
  /* width: 75%; */
}

.aboutSec figure {
  margin-left: -3rem;
}

.aboutSec .secHeading {
  color: var(--white);
}

.aboutSec p {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #bebebe;
  line-height: 2;
}

.btn-group .callBtn {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  justify-content: center;
  color: var(--white);
  font-family: "Oswald";
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: -1rem;
}

.btn-group .callBtn i {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--black);
  display: inline-grid;
  place-items: center;
  background: var(--white);
  transition: 0.3s ease-in-out;
  border: 1px solid var(--white);
}

.btn-group .callBtn:hover i {
  color: var(--white);
  background: var(--theme-color);
}

/* Podcast Section */
.podcastCard .imgWrap {
  position: relative;
}

.podcastCard .playBtn {
  height: 7.5rem;
  width: 7.5rem;
  display: grid;
  z-index: 1;
  place-items: center;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--black);
  background: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.podcastCard .playBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}

.podcastCard .content {
  padding-top: 1rem;
}

.podcastCard .content h3 {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}

.podcastCard .content p {
  color: #828282;
  font-size: 1.125rem;
  line-height: 1.5;
}

.podcastCard .optionsList {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.podcastCard .optionsList li a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.podcastCard.podcastRow {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.podcastCard.podcastRow .imgWrap {
  width: 60%;
}

.podcastCard.podcastRow .imgWrap img {
  opacity: 0.5;
}

.podcastCard.podcastRow .playBtn {
  height: 2rem;
  width: 2rem;
  font-size: 12px;
  color: var(--white);
  background: rgb(255 255 255/50%);
}

.podcastCard.podcastRow .content h3 {
  font-size: 1.375rem;
  line-height: 1.2;
}

.podcastCard.podcastRow .content p {
  font-size: 1rem;
}

/* whySection */
.whySection {
}

.why-card {
  padding: 0 1rem;
  text-align: center;
}

.why-card h3 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* Work Section */
.workCard {
  text-align: center;
}

.workCard .imgWrap {
  overflow: hidden;
  margin: 1rem 0;
}

.workCard h3 {
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* Client Section */
.clientSlider .swiper-pagination {
  bottom: 0;
  left: 50%;
}

.testimonialCard {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
}

.testimonialCard .quoteImg {
  position: absolute;
  left: 50%;
  top: 0rem;
  transform: translateX(-50%);
}

.testimonialCard p {
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-style: italic;
}

.testimonialCard .userInfo {
  display: flex;
  gap: 1rem;
  justify-content: center;
  text-align: left;
  align-items: center;
}

.testimonialCard .userInfo img {
  border: 3px solid var(--white);
}

.testimonialCard .userInfo h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

.testimonialCard .userInfo h3 span {
  display: block;
  font-weight: 300;
}

/* Blog Section */
.blogCard {
  background: #281546;
  margin-top: 2rem;
}

.blogCard .dateWrap {
  background: var(--black);
  padding: 5px;
  width: 65px;
  text-align: center;
  position: absolute;
  left: 1.5rem;
  top: -3.75rem;
}

.blogCard .dateWrap h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}

.blogCard .dateWrap h2 span {
  font-size: 1rem;
  display: block;
}

.blogCard .content {
  padding: 1.5rem;
  position: relative;
}

.blogCard .content h3 {
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--white);
}

.blogCard .content p {
  color: var(--white);
}

.blogCard .content a {
  color: var(--white);
  display: block;
  font-size: 1rem;
  font-weight: 400;
}

/* Footer Css */
footer {
  padding-top: 6rem;
}

footer .footerLogo {
  margin-bottom: 1.75rem;
}

footer p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
  font-style: italic;
  font-family: "Raleway", sans-serif;
}

footer .links {
  display: flex;
  flex-direction: column;
  height: 160px;
  gap: 1rem;
  flex-wrap: wrap;
}

footer .links li a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: inline-block;
}

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

footer .cntctInfo li a {
  font-size: 0.9325rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.cntctInfo li a {
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.cntctInfo li a span {
  font-size: 1.875rem;
  font-weight: 600;
  display: block;
  font-family: "Oswald";
}

.copyRight {
  margin-top: 3rem;
  padding: 1.5rem 0;
  align-items: center;
  border-top: 1px solid rgba(112, 112, 112, 0.38);
}

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

/* Begin: Social Media */

.socialIo {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 0 10px;
}

.socialIo li a {
  width: 3.125rem;
  height: 3.125rem;
  display: block;
  /* background: var(--white); */
  border-radius: 100px;
  font-size: 1.125rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.socialIo li a:hover {
  color: var(--theme-color);
  background: var(--white);
}

/* END: Social Media */
.split-parent {
  overflow: hidden;
}

.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}

/* loder */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
}

.preLoader.black {
  background-color: #18043d;
  z-index: 30;
}

.preLoader.white {
  z-index: 20;
  background-color: #fff;
}

/*Inner Pages CSS Start*/
.innerBanner {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay h2 {
  font-size: 7rem;
  line-height: 1;
  font-weight: bold;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
}
/*Work Section Css start*/

.workPara {
  color: #bebebe;
  padding-top: 2rem;
}

/*Work Section Css End*/
/*Podcast Section Css Start*/
.podcastBtn {
  position: absolute;
  top: 40%;
  left: 44%;
  font-size: 1.4rem;
}

.podcastBtn a i {
  background: #ffffffab;
  width: 66px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #fff;
}

.podContent h4 {
  font-size: 1.375rem;
  color: #fff;
  font-weight: 500;
  padding: 1rem 0 0.2rem;
}

.podContent {
  margin-top: 2rem;
}

/*Podcast Section Css End*/

.contactInfo figure {
  background: #fff;
  padding: 2rem;
  border-radius: 50%;
  border: 5px solid #000;
}

.contactInfo {
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  padding: 1.3rem;
}

.contact-Content a,
p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.contact-Content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contactForm input {
  width: 100%;
  height: 4.5rem;
  padding-left: 1.3rem;
  margin: 1rem 0;
}

.contactForm textarea {
  width: 100%;
  padding: 1.3rem;
  margin: 1rem 0;
}
.contactForm {
  padding-top: 0;
}
.contactForm button {
  border: 1px solid #f2f2f2;
  background: none;
  color: #fff;
  border-radius: 0;
  padding: 1rem 2rem;
}
/*Inner Pages CSS End*/
.privacySec h4 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  padding: 1rem 0;
}

.privacySec a {
  font-weight: 700;
  color: #fff;
  padding: 0 10px;
}

.privacySec  ul {
  list-style-type: disc;
  list-style-position: inside;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
}