* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Import Google Fonts */
/* @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=Space+Grotesk:wght@400;500;600;700&display=swap'); */



:root {
  --primary-color: rgba(255, 255, 255, 1);
  --secondary-color: rgb(0, 0, 0);
  --warning: rgba(253, 191, 32, 1);
  --warning-secondary: rgba(255, 193, 7);
  --info: rgba(22, 96, 194, 1);
  --muted: rgba(245, 245, 245, 1);
  --disabled: rgba(140, 144, 144, 1);
  --muted-black: rgba(30, 34, 34, 1);
  --muted-secondary: rgba(87, 87, 87, 1);
  --danger: rgb(255, 0, 0);
}

.body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  letter-spacing: -0.4px;
}

.main {
  overflow-x: hidden;
}

/* common styles start */

.common-padding-class {
  padding-inline: 105px;
  padding-block: 66px;
}

.common-para {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: var(--secondary-color);
  text-transform: capitalize;
  letter-spacing: -0.4px;
}

.muted-text {
  color: var(--muted-secondary);
}

.danger-text {
  color: var(--danger);
}

.card-heading {
  font-size: 26px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0.4px;
  color: var(--secondary-color);
  text-transform: capitalize;
}

.image-overlay-primary {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    125.14deg,
    rgba(0, 0, 0, 0) 47.98%,
    #000000 93.08%
  );
}

.line {
  margin-block: 0.4rem;
  border-top: 1px solid;
  border-top-color: var(--secondary-color);
  width: 100%;
  opacity: 1;
}

.section-divider {
  opacity: 0.5;
}

.white-line {
  border-top-color: var(--primary-color) !important;
}

@media screen and (min-width:1300px) {
  .common-padding-class {
    padding-inline: 115px;
    padding-block: 66px;
  }
}

@media screen and (max-width: 768px) {
  .common-padding-class {
    padding-inline: 50px;
    padding-block: 35px;
  }
}

@media screen and (max-width: 540px) {
  .common-padding-class {
    padding-inline: 20px;
  }
  .section-heading {
    font-size: 31px;
    line-height: 34px;
    font-weight: 900;
  }
}

/* cta start */
.cta-button {
  padding: 8px 32px;
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
  width: max-content;
  text-transform: capitalize;
  letter-spacing: -0.4px;
}

.hero-content-main .cta-button {
  font-size: 20px;
}

.bold-cta {
  font-weight: 600;
  border: 1.5px solid var(--primary-color);
}

.ct-black-color {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--primary-color);
}

.muted-cta {
  background-color: var(--muted);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.light-blue-cta-button {
  border: 1px solid var(--info);
  background-color: var(--info);
}

.cta-button:hover,
.light-blue-cta-button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transition: 0.4s ease-in-out;
  border: 1px solid var(--secondary-color);
}

.ct-black-color:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  transition: 0.4s ease-in-out;
}

.cta-hover-to-blue:hover {
  color: var(--primary-color);
  transition: 0.4s ease-in-out;
  background-color: var(--info);
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.cta-animate {
  position: relative;
}

.cta-animate::before,
.cta-animate::after {
  content: "";
  position: absolute;
  inset: -0.14rem;
  z-index: -1;
  background: linear-gradient(var(--angle), var(--info), var(--primary-color));
  animation: rotateCta 3s linear infinite reverse;
  -webkit-animation: rotateCta 3s linear infinite reverse;
  border-radius: 25px;
}

.cta-animate::after {
  filter: blur(1px);
  -webkit-filter: blur(1px);
}

@keyframes rotateCta {
  0% {
    --angle: 0deg;
  }
  100% {
    --angle: 360deg;
  }
}

@media screen and (max-width:540px) {
  .hero-content-main .cta-button {
    font-size: 16px;
  }
}

/* cta end */

/* common styles end */

/* navbar start */

.navbar {
  background-color: transparent !important;
  /* padding: 37px; */
  padding: 0 37px;
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  color: var(--primary-color);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icons {
  flex-grow: initial !important;
}

.navbar-nav {
  gap: 40px;
}

.cta-nav {
  padding: 8px 32px !important;
  height: fit-content;
}

.cta-nav:hover {
  color: var(--primary-color);
  background-color: var(--info);
}

/* .cta-nav:hover {
      background-color: var(--secondary-color);
      border: 1px solid var(--primary-color);
      color: var(--primary-color)
  } */

.navbar-toggler{
border: unset;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}

.toggler-icon {
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  display: block;
  transition: all 0.2s;
}

.middle-bar {
  margin: 5px auto;
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform-origin: 10% 10%;
  -webkit-transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform-origin: 10% 90%;
  -webkit-transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
  -webkit-transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
  -webkit-transform: rotate(0);
}

.navbar-backdrop {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-height: 100vh;
  align-items: flex-start;
  position: fixed;
  animation-name: navCollapse;
  animation-duration: 0.4s;
}

.overflow-hidden {
  overflow: hidden;
}

@keyframes navCollapse {
  from {
    min-height: 0;
  }

  to {
    min-height: 100vh;
  }
}

@media screen and (min-width: 992px) {
  .navbar-brand,
  .nav-item {
    min-height: 99px;
    display: flex;
    align-items: center;
  }

  .text-link:hover {
    background-color: var(--warning);
    color: var(--secondary-color) !important;
    transition: all 0.5s;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-inline: 1rem;
  }
}

@media screen and (max-width: 992px) {
  .navbar {
    padding-inline: 2px;
    padding-block: 37px;
  }

  .navbar-nav {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .nav-link:hover {
    color: var(--primary-color);
  }
}

/* navbar end */

/* hero start */

.network-hero {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-top: 170px;
  padding-bottom: 50px;
}

.hero-image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-image-container > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  position: relative;
  width: 100%;
}

.hero-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 52.5px;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: capitalize;
  max-width: 881px;
}

.hero-sub-heading {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

.hero-address-and-countdown {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 25px;
  width: 100%;
}

.location-date {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.location-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.title-part {
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}

.location-title {
  color: var(--primary-color);
  min-width: max-content;
}

.counter-container {
  position: relative;
  background-color: transparent;
  padding-top: 1.5rem;
}

.counter-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  width: 100%;
  color: var(--primary-color);
}

.counter-para {
  color: var(--primary-color);
  font-weight: 300;
  letter-spacing: 1.6px;
}

.clock {
  display: flex;
  flex-direction: column;
}

.timer {
  display: flex;
  gap: 15px;
  align-items: center;
}

.timer h1 {
  font-size: 90px;
  font-weight: 400;
  line-height: 90px;
  letter-spacing: 0.02em;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.colon {
  margin: auto;
  height: fit-content;
}

.counter-timer-end {
  color: var(--primary-color);
  width: max-content;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 980px) {
  .hero-heading {
    font-size: 39px;
    line-height: 47px;
  }
  .hero-sub-heading {
    font-size: 22px;
    line-height: 32px;
  }

  .hero-address-and-countdown {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero-content-main {
    gap: 1px;
  }
  .hero-heading {
    /* font-size: 26px;
    line-height: 37px; */
    font-size: 30px;
    line-height: 37px;
  }
  .location-container {
    gap: 4px;
  }
  .location-date {
    gap: 20px;
  }
  .location-title {
    font-size: 12px;
  }

  .timer h1 {
    font-size: 50px;
    line-height: 74.84px;
    letter-spacing: 0.02em;
  }
}

@media screen and (max-width: 540px) {
  .hero-heading {
    /* font-size: 18px;
    line-height: 31px; */
    font-size: 20px;
    line-height: 27px;
    max-width: 457px;
  }
  .hero-sub-heading {
    font-size: 15px;
    line-height: 25px;
  }
}

@media screen and (max-width: 480px) {
  .hero-heading {
    font-size: 18px;
    line-height: 23px;
  }
}

/* hero end */

/* about start */

@media screen and (min-width: 991px) {
  .about-section {
    padding-right: 155px;
  }
}

.about-contet-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-image-section {
  position: relative;
  padding: 0;
  padding-top: 60px;
}

.about-image-section > img {
 
 box-shadow: 25px -25px 0px #1660c2;
 /*  object-fit: cover; */
}

.image-background {
      position: absolute;
    top: 40px;
    left: 25px;
    width: 100%;
    height: 100%;
    max-height: 245px;
	max-width: 480px;
    background-color: var(--info);
    z-index: -1;
}

@media screen and (max-width: 991px) {
  .about-contet-section {
    gap: 30px;
  }

  .about-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 35px;
  }

  .about-image-section {
   /* margin-top: 30px; */
  }

  .about-image-section > img {
    width: 90%;
  }

  .image-background {
    width: 90%;
	max-height: 185px;
  }
}

/* about end */

/* clients slider start */

.companies-section {
  padding-bottom: 55px;
  padding-top: 0px;
}

.companies-container {
  display: grid;
  grid-auto-flow: column;
  gap: 2rem;
  justify-content: space-around;
  align-items: center;
}

.slider-container {
  overflow-x: hidden;
}

.custom-logo-slider {
  margin: auto;
  width: 100%;
}

.custom-logo-slider > img {
  width: 140px;
  max-height: 50px;
  object-fit: contain;
}

.custom-logo-slider > .small-image {
  max-height: 90px;
}

@media screen and (max-width: 768px) {
  .companies-container {
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
  }

  .custom-logo-slider > img {
    max-width: 100%;
  }
}

/* clients slider end */

/* Top Tier start */

.top-tier-section {
  background-color: var(--muted);
  border-top-left-radius: 39px;
  border-top-right-radius: 39px;
}

.top-tier-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 50px;
}

.top-tier-middle {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
  padding-top: 0px;
}

.middle-image {
  height: 88%;
  width: 102%;
  object-fit: cover;
  margin-top: 20px;
}

.top-tier-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding-block: 60px;
}

.top-tier-list-container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
}

.top-tier-video-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -10vh;
  gap: 50px;
  width: 55%;
  margin-inline: auto;
}

.top-tier-video {
  width: 100%;
  height: 360px;
}

.video-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media screen and (min-width: 1100px) {
  .middle-image {
    overflow: visible;
  }
}

@media screen and (max-width: 768px) {
  .top-tier-middle {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .top-tier-list {
    padding-top: 0;
    padding-bottom: 85px;
  }
  .top-tier-video-container {
    width: 90%;
  }
  .video-actions > a {
    font-size: 12px;
  }
}
/* Top Tier end */

/* Future proof start */
.future-proof-section {
  background-color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 55px;
  justify-content: center;
  align-items: center;
}

.future-proof-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 29px;
}

.future-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.future-left-content {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.future-left-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 19px;
}

.future-point {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 265px;
}

.future-point:nth-child(2), .future-point:nth-child(4) {
  place-self: end;
}

.future-icon {
  height: 40px;
  width: fit-content;
  object-fit: contain;
}

.future-right {
  width: 100%;
  height: 100%;
}

.future-right-image {
  width: 100%;
  height: 100%;
  max-height: 570px;
  object-fit: cover;
  border-radius: 7px;
}

@media screen and (max-width: 980px) {
  .future-proof-container {
    grid-template-columns: 1fr;
  }
  .future-right-image {
    max-height: none;
  }
}
/* Future proof end */

/* Core services start */
.core-services-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 60px;
  column-gap: 43px;
}

.core-title-card {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media screen and (min-width: 1300px) {
  .core-title-card {
    max-width: 323px;
    margin-inline: auto;
  }
  .core-services-container > .why-should-card {
    max-width: 350px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 980px) {
  .core-services-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 580px) {
  .core-services-container {
    grid-template-columns: 1fr;
  }
  
  
 .future-left-grid{
	 grid-template-rows: 170px 170px;
 }
  
}

@media screen and (max-width: 480px) {

  
 .future-left-grid{
	 grid-template-rows: 170px 170px;
   align-items: flex-end;
 }
  
}

/* Core services end */

/* our experts start */

.our-experts-section {
  background-color: var(--muted);
}

.our-experts-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.experts-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.expert-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 278px;
  margin-inline: auto;
}

.expert-image {
  width: 100%;
  height: 278px;
  object-fit: cover;
  border-radius: 7px;
}

.expert-details {
  display: flex;
  flex-direction: column;
}

h4.card-heading{
  margin-bottom: 0px;
}

.experts-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 49px;
  justify-content: space-between;
}

.expert-list {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.asterisk {
  width: 19px;
  height: 19px;
}

@media screen and (max-width: 980px) {
  .experts-bottom {
    column-gap: 40px;
    row-gap: 40px;
  }
}

@media screen and (max-width: 540px) {
  .experts-bottom {
    grid-template-columns: 1fr;
  }
}

/* our experts end */

/* why should start */

.why-should-section {
  padding-bottom: 42px;
}

.why-should-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.why-should-desc {
  max-width: 90%;
}

.why-should-cards-container {
  margin-top: 15px;
}

.why-should-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.card-image {
  width: 100%;
  height: auto;
}

.card-image > img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
  border-radius: 7px;
}

.why-should-card-title-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .why-should-desc {
    max-width: 95%;
  }
}

/* why should end */

/* case studies start */

.case-studies-container {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.case-cards-container {
  display: flex;
  gap: 60px;
  flex-direction: column;
}

.case-card {
  gap: 65px;
  display: grid;
  grid-template-columns: 6fr 6fr;
}


.case-img-container {
  height: 100%;
  width: 100%;
}

.case-card-reverse > .case-img-container {
  order: 9999;
}

.case-img-container > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.case-card-content {
  display: flex;
  gap: 35px;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.case-card-details {
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.case-card-reverse h2,
.case-card-reverse p {
  text-align: left;
  width: 100%;
}

#case-swiper {
  position: relative;
  height: 100%;
}

#case-swiper .navigators {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 30px;
}

#case-swiper .swiper-button-prev,
#case-swiper .swiper-button-next {
  border: 1.5px solid var(--info);
  border-radius: 50%;
  /* width: 25.5px; */
  height: 27.5px;
  position: relative;
}

#case-swiper .swiper-button-next:after,
#case-swiper .swiper-button-prev:after {
  font-size: 12px;
  font-weight: 700;
  color: var(--info);
}

#case-swiper .swiper-button-disabled {
  border-color: var(--disabled);
  opacity: 1;
}

#case-swiper .swiper-button-disabled:after {
  color: var(--disabled);
}

.case-swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.case-swiper-pagination > .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}

@media screen and (max-width: 768px) {
  .case-studies-container {
    gap: 40px;
  }

  #case-swiper .swiper-slide {
    height: auto;
  }

  .case-card {
    display: flex;
    flex-direction: column;
    gap: 35px;
    height: 100%;
  }

  .case-img-container {
    height: 210px;
  }

  .case-card-content {
    gap: 14px;
    position: relative;
    background-color: var(--muted);
    width: 90%;
    height: 100%;
    top: -52px;
    margin-inline: auto;
    padding: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    justify-content: space-between;
  }

  .case-card-details {
    gap: 14px;
  }

  .case-card-heading {
    font-size: 20px;
    line-height: 27px;
  }

  #case-swiper .navigators {
    display: flex;
    margin-top: 5px;
  }
  
.card-heading-desktop{
	display:none;
}  
 .card-heading-mobile{
	display:block !important;
}   
  
}





/* case studies end */

/* connection start */
.connection-container {
  background-color: var(--warning-secondary);
}

.connection-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.connection-left {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: var(--warning-secondary);
}

.connection-right {
  background-color: var(--secondary-color);
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.connection-image {
  height: 321px;
  max-width: 100%;
  position: absolute;
  left: -24%;
}

@media screen and (min-width: 768px) {
  .connection-left {
    padding-right: 0;
  }
  .connection-para {
    padding-right: 32%;
  }
}


@media screen and (max-width: 990px) {
  .connection-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .connection-image {
    width: 100%;
    height: auto;
    position: initial;
  }
  .connection-right {
    padding-inline: 105px;
    background-color: transparent;
  }
}

@media screen and (max-width: 768px) {
  .connection-right {
    padding-inline: 50px;
  }
}

@media screen and (max-width: 647px) {
  .future-left-content{
    gap: 15px;
  }
  .future-left-grid{
    align-items: flex-end;
  }
  .future-point{
    height: 100%;
  }
  /* .future-icon {
    height: 40px;
    width: max-content;
  } */

}

@media screen and (max-width: 540px) {
  .connection-right {
    padding-inline: 20px;
  }
}
/* connection end */

/* calender start */
#calendly-section {
  padding-top: 0;
  padding-bottom: 20px;
}
#calendlyContainer {
  height: 657px;
}

@media screen and (max-width: 1200px) {
  #calendlyContainer {
    height: 950px;
  }
}
@media screen and (max-width: 746px) {
  #calendlyContainer {
    height: 900px;
  }
}

@media screen and (max-width: 540px) {
  #calendlyContainer {
    height: 920px;
  }
  #calendly-section {
    padding-bottom: 0px;
  }
}
/* calender end */

/* footer start */
.footer-section {
  width: 100%;
  background-color: var(--muted-black);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 19px;
}

.footer-left {
  display: flex;
  gap: 50px;
  align-items: center;
}

.footer-brand {
  width: 56px;
  height: 59px;
}

.footer-brand > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icons {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: var(--primary-color);
  margin-bottom: 0;
}

.footer-text > a {
  text-decoration: none;
  color: var(--primary-color);
}

.icon {
  color: var(--primary-color);
}

@media screen and (max-width: 980px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-left {
    flex-direction: column;
    gap: 20px;
  }
}

/* footer end */

/* youtube modal and youtube video on top-tier start */

.top-tier-youtube {
  width: 100%;
  height: 100%;
  display: none;
}

.youtube-thumbnail {
  position: absolute;
  height: 360px;
  width: 100%;
  top: 0;
  left: 0;
}

.youtube-thumbnail-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  background-color: transparent;
}

/* youtube modal and youtube video on top-tier end */

.core-services-section .section-heading {
  text-transform: unset !important;
}