/* Root theming */
:root {
  --ascent-clr-dark: #3282b8;
  --ascent-clr: #46b5d1;
  --bg-color: #14181a;
  --text-color: #eeeeee;
}

/* General */
::-webkit-scrollbar {
  width: 10px;
  background-color: var(--bg-color);
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar-track {
  box-shadow: inset 2px 2px 20px rgba(0, 0, 0, 0.2);
  background-color: var(--bg-color);
  background-clip: content-box;
}

::-webkit-scrollbar-thumb {
  background-color: var(--ascent-clr);
  border-radius: 4px;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}

a {
  color: var(--ascent-clr);
  text-decoration: none;
}

a:hover {
  color: var(--ascent-clr-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--ascent-clr);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: var(--bg-color);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--ascent-clr-dark);
  color: var(--bg-color);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Header */
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
#header.header-scrolled {
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.25);
  background: var(--bg-color);
  padding: 12px 0;
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}
#header .logo a {
  color: var(--text-color);
}
#header .logo img {
  max-height: 65px;
}
@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }
  #header .logo img {
    max-height: 60px;
  }
}

/* Navigation Menu  */
/* Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--ascent-clr);
}
.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 4px;
  line-height: 1;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #cdd1d9;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: var(--ascent-clr);
  color: #fff;
  border-color: var(--ascent-clr-dark);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--bg-color);
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--ascent-clr);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #5f687b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(73, 80, 94, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--text-color);
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--ascent-clr);
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  padding: 10px 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--bg-color);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--ascent-clr);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* Hero Section */
#hero {
  width: 100%;
  height: 80vh;
  background: var(--bg-color);
  padding-top: 82px;
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--text-color);
}
#hero h2 {
  color: #858ea1;
  margin: 10px 0 30px 0;
  font-size: 24px;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--ascent-clr);
  box-shadow: 0px 0px 10px #46b5d18a;
}
#hero .btn-get-started:hover {
  background: var(--ascent-clr-dark);
  box-shadow: 0px 0px 10px #3282b88a, 0px 0px 10px #3282b88a;
}
#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #5f687b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#hero .btn-watch-video i {
  color: #949cac;
  font-size: 32px;
  line-height: 0;
  margin-right: 8px;
}
#hero .btn-watch-video:hover i {
  color: var(--ascent-clr);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 75%;
  }
}
@media (max-width: 768px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 80%;
  }
}
@media (max-width: 575px) {
  #hero h1 {
    padding-left: 20px;
  }

  #hero h2 {
    padding-left: 20px;
  }

  #hero .hero-img img {
    width: 85%;
  }

  #hero .btn-get-started {
    margin-left: 20px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/* Sections General */
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--bg-color);
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--text-color);
  position: relative;
  z-index: 2;
}
.section-title span {
  position: absolute;
  top: 30px;
  color: #5f687b;
  text-shadow: 0px 0px 2px #5f687b;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}
.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title span {
    font-size: 38px;
  }
}

/* Featured Services */
.featured-services {
  padding: 0;
  padding-bottom: 60px;
  margin-top: 60px;
}
.featured-services .icon-box {
  padding: 20px;
  color: var(--text-color);
  background: var(--bg-color);
  border-radius: 4px;
  border: 1px solid var(--ascent-clr);
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2), 8px 8px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  height: 100%;
}
.featured-services .icon {
  margin: 0 0 15px 0;
}
.featured-services .icon i {
  color: var(--ascent-clr);
  font-size: 36px;
}
.featured-services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}
.featured-services .title a {
  color: var(--ascent-clr);
  transition: 0.3s;
}
.featured-services .icon-box:hover {
  border-color: #eaecef;
}
.featured-services .icon-box:hover .title a {
  color: var(--ascent-clr-dark);
}
.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/* About */
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #5f687b;
}

.about .content p {
  line-height: 2;
  font-size: 16px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*  Pranshu means me added few animation to img fluid in this about area */
.about .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
  /* .about {
    height: 100vh;
  } */
  .about .animated {
    -webkit-animation: none;
    animation: none;
  }
  .about .hero-img {
    text-align: center;
  }
  .about .hero-img img {
    width: 75%;
  }
}

/* Counts */
.counts {
  padding-top: 0;
  background-color: var(--ascent-clr);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
.counts .counters span {
  padding-top: 75px;
  font-size: 48px;
  display: block;
  color: var(--text-color);
  font-weight: 700;
  text-shadow: 2px 2px 1px var(--ascent-clr-dark);
}
.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-color);
}

/* Services */
.services .icon-box {
  text-align: center;
  border: 1px solid var(--ascent-clr);
  border-radius: 4px;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.2), 8px 8px 10px rgba(0, 0, 0, 0.2);
  background: var(--bg-color);
}
.services .icon-box .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {
  color: var(--ascent-clr);
  font-size: 36px;
  transition: 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: var(--text-color);
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #eaecef;
}
.services .icon-box:hover h4 a {
  color: var(--ascent-clr);
}

/* About Sam */
#about-sam .embed-responsive-item {
  height: 320px;
  width: 580px;
  display: inline-block;
}

#about-sam {
  width: 100%;
  height: 70vh;
  background: var(--bg-color);
  padding-top: 80px;
  padding-bottom: 60px;
}
#about-sam h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
  color: var(--text-color);
}
#about-sam h5 {
  color: #858ea1;
  margin: 10px 0 30px 0;
  font-size: 20px;
  line-height: 1.5;
}
#about-sam .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--ascent-clr);
  box-shadow: 0px 0px 10px #46b5d18a;
}
#about-sam .btn-get-started:hover {
  background: var(--ascent-clr-dark);
  box-shadow: 0px 0px 10px #3282b88a, 0px 0px 10px #3282b88a;
}

#about-sam .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 1280px) {
  #about-sam {
    height: 90vh;
    padding-bottom: 10px;
  }
  #about-sam .animated {
    -webkit-animation: none;
    animation: none;
  }
  #about-sam .leagues-intro {
    text-align: center;
  }
  #about-sam h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #about-sam h5 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  #about-sam .sam-intro iframe {
    width: 460px;
    height: 280px;
  }
  #about-sam .section-title span {
    font-size: 36px;
  }

  #about-sam .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  #about-sam {
    height: 90vh;
    padding-bottom: 10px;
  }
  #about-sam .animated {
    -webkit-animation: none;
    animation: none;
  }
  #about-sam .sam-intro {
    text-align: center;
  }
  #about-sam h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #about-sam h5 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  #about-sam .sam-intro iframe {
    width: 370px;
    height: 250px;
  }
  #about-sam .section-title span {
    font-size: 36px;
  }

  #about-sam .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  #about-sam {
    height: 85vh;
    padding-bottom: 10px;
  }
  #about-sam .animated {
    -webkit-animation: none;
    animation: none;
  }
  #about-sam .sam-intro {
    text-align: center;
  }
  #about-sam h1 {
    font-size: 36px;
    line-height: 36px;
  }
  #about-sam h5 {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  #about-sam .sam-intro iframe {
    width: 530px;
    height: 300px;
  }
  #about-sam .section-title span {
    font-size: 36px;
  }

  #about-sam .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #about-sam {
    height: auto;
    padding-top: 60px;
  }
  #about-sam h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #about-sam h5 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #about-sam .sam-intro iframe {
    width: 530px;
    height: 300px;
  }

  #about-sam .section-title span {
    font-size: 32px;
  }

  #about-sam .section-title h2 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  #about-sam {
    padding-top: 60px;
  }

  #about-sam h1 {
    padding-left: 20px;
  }

  #about-sam h5 {
    padding-left: 20px;
  }

  #about-sam .sam-intro iframe {
    width: 330px;
    height: 200px;
  }

  #about-sam .btn-get-started {
    margin-left: 20px;
  }

  #about-sam .section-title span {
    font-size: 24px;
  }

  #about-sam .section-title h2 {
    font-size: 20px;
  }
}

/* About Leagues */
#about-leagues .embed-responsive-item {
  margin-top: 20px;
  height: 320px;
  width: 580px;
  display: inline-block;
}

#about-leagues {
  width: 100%;
  height: 80vh;
  background: var(--bg-color);
  padding-top: 80px;
  padding-bottom: 60px;
}
#about-leagues h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
  color: var(--text-color);
}
#about-leagues h5 {
  color: #858ea1;
  margin: 10px 0 10px 0;
  font-size: 20px;
  line-height: 1.4;
}

#about-leagues .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--ascent-clr);
  box-shadow: 0px 0px 10px #46b5d18a;
}
#about-leagues .btn-get-started:hover {
  background: var(--ascent-clr-dark);
  box-shadow: 0px 0px 10px #3282b88a, 0px 0px 10px #3282b88a;
}
#about-leagues .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 1280px) {
  #about-leagues {
    height: 90vh;
    padding-bottom: 10px;
  }
  #about-leagues .animated {
    -webkit-animation: none;
    animation: none;
  }
  #about-leagues .leagues-intro {
    text-align: center;
  }
  #about-leagues h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #about-leagues h5 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  #about-leagues .leagues-intro iframe {
    width: 460px;
    height: 280px;
  }
  #about-leagues .section-title span {
    font-size: 36px;
  }

  #about-leagues .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  #about-leagues {
    height: 90vh;
    padding-bottom: 10px;
  }
  #about-leagues .animated {
    -webkit-animation: none;
    animation: none;
  }
  #about-leagues .leagues-intro {
    text-align: center;
  }
  #about-leagues h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #about-leagues h5 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 30px;
  }
  #about-leagues .leagues-intro iframe {
    width: 400px;
    height: 250px;
  }
  #about-leagues .section-title span {
    font-size: 36px;
  }

  #about-leagues .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  #about-leagues {
    height: 85vh;
    padding-bottom: 10px;
  }
  #about-leagues .animated {
    -webkit-animation: none;
    animation: none;
  }
  #about-leagues .leagues-intro {
    text-align: center;
  }
  #about-leagues h1 {
    font-size: 36px;
    line-height: 36px;
  }
  #about-leagues h5 {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  #about-leagues .leagues-intro iframe {
    width: 530px;
    height: 300px;
  }
  #about-leagues .section-title span {
    font-size: 36px;
  }

  #about-leagues .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #about-leagues {
    height: auto;
    padding-top: 60px;
  }
  #about-leagues h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #about-leagues h5 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #about-leagues .leagues-intro iframe {
    width: 530px;
    height: 300px;
  }

  #about-leagues .section-title span {
    font-size: 32px;
  }

  #about-leagues .section-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  #about-leagues {
    padding-top: 60px;
  }

  #about-leagues h1 {
    padding-left: 20px;
  }

  #about-leagues h5 {
    padding-left: 20px;
  }

  #about-leagues .leagues-intro iframe {
    width: 330px;
    height: 200px;
  }

  #about-leagues .btn-get-started {
    margin-left: 20px;
  }

  #about-leagues .section-title span {
    font-size: 24px;
  }

  #about-leagues .section-title h2 {
    font-size: 20px;
  }
}

/* Testimonials */
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: var(--ascent-clr);
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--text-color);
  margin: 0 0 0 45px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--ascent-clr-dark);
  font-size: 24px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: var(--ascent-clr);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2), 4px 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: var(--bg-color);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2), 4px 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  border: 2px solid var(--ascent-clr);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--ascent-clr);
}

/* Cta */
.cta {
  background: var(--ascent-clr);
  background-size: cover;
  padding: 60px 0;
}
.cta h3 {
  color: var(--text-color);
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: var(--text-color);
}
.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: var(--ascent-clr);
}

/* Team */
.team .member {
  text-align: center;
  margin-bottom: 20px;
  padding: 35px 20px;
  background: var(--bg-color);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2), 2px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.team .member img {
  max-width: 100%;
  margin: 0 0 30px 0;
  border-radius: 4px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2), 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.team .member img:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  color: #919191;
  transition: 0.3s;
}
.team .member .social a:hover {
  color: var(--ascent-clr);
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact */
.contact .info {
  border-top: 3px solid var(--ascent-clr);
  border-bottom: 3px solid var(--ascent-clr);
  padding: 30px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2), 4px 4px 10px rgba(0, 0, 0, 0.2);
  background-color: var(--bg-color);
}
.contact .info i {
  font-size: 20px;
  color: var(--text-color);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--ascent-clr);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #c8cdd6;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: var(--ascent-clr-dark);
  color: #fff;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--ascent-clr-dark);
  color: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  background: var(--bg-color);
  min-height: 40px;
  margin-top: 82px;
}
.breadcrumbs h2 {
  font-size: 36px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #778196;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Footer */
#footer {
  background-color: var(--bg-color);
  box-shadow: -8px -10px 30px -5px rgba(0, 0, 0, 0.2);
  color: var(--text-color);
  font-size: 14px;
  position: relative;
}
#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}
#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}
#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}
#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}
#footer .footer-top .footer-newsletter form {
  background: var(--text-color);
  padding: 2px;
  position: relative;
  border-radius: 4px;
  text-align: left;
  border: 1px solid #e4e6ea;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: none;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type="email"]:focus {
  outline: none;
}
#footer .footer-top .footer-newsletter form input[type="button"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--ascent-clr);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: var(--ascent-clr-dark);
}
#footer .footer-top .social-links {
  margin-top: 30px;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #eaecef;
  color: #5f687b;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: var(--ascent-clr);
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom {
  border-top: 1px solid #d9dce2;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
#footer .copyright {
  float: left;
}
#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  font-weight: 700;
}

@media (max-width: 992px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
  }
}

#hero {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

#hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.65;
  z-index: 1;
}
/* in_absence {
  width: parent;
  height: parent;
  background-color: var(--bg-color);
} */

/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

/* @media (pointer: coarse) and (hover: none) { */
/* #hero {
    background: var(--bg-color);
  } */
/* #header .logo h1 {
    display: none;
  }
} */
/* background: url("https://source.unsplash.com/XT5OInaElMw/1600x900") black
      no-repeat center center scroll; */
/* #hero video {
    display: none;
  }
  #hero .overlay {
    display: none;
  }
} */

.glow {
  /* font-size: 70px; */
  /* color: #ffffff; */
  -webkit-animation: glow 3s ease-in-out infinite alternate;
  -moz-animation: glow 3s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 1px #eeeeee, 0 0 1px #000000, 0 0 1px #000000,
      0 0 1px #000000, 0 0 1px var(--ascent-clr), 0 0 1px var(--ascent-clr),
      0 0 1px var(--ascent-clr);
  }
  to {
    text-shadow: 0 0 1px #eeeeee, 0 0 1px var(--ascent-clr-dark),
      0 0 1px var(--ascent-clr-dark), 0 0 1px var(--ascent-clr-dark),
      0 0 1px var(--ascent-clr-dark), 0 0 1px var(--ascent-clr-dark),
      0 0 1px var(--ascent-clr-dark);
  }
}

/* adding preloader lets see nikkkk */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--bg-color);
  width: 100%;
  height: 100%;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9370db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#welcom_text {
  display: inline-block;
  position: fixed;
  left: 50%;
  display: block;
  top: 50%;
  display: none;
  /* width: 150px; */
  /* height: 150px; */
  /* border-radius: 50%; */
  /* -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite; */
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ba55d3;
  -webkit-animation: spin 5s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ff00ff;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
