@import url("https://fonts.googleapis.com/css2?family=Karla&family=Montserrat:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  cursor: url("/assets/custom-cursor.png"), auto;
} */

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

p,
a,
button {
  font-family: "Karla", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

::selection {
  background: black;
  color: white;
}

.btn,
.btn:hover,
.btn:focus {
  border: none;
  outline: none;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

.hero #myVideoHero {
  width: 100% !important;
  height: 100% !important;
}
/* header starts  */

header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  /*position: sticky;*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

header .logo {
  width: 180px;
  position: absolute;
  top: 20px;
  /*top: 30% !important;*/
  left: 5%;
}

header .logo img {
  width: 100%;
}

.hamburger {
  position: fixed;
  top: 5%;
  right: 5%;
  z-index: 1000;
}

.hamburger i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-container {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100vh;
  background: radial-gradient(#393116, #35211c);
  opacity: 0.9;
  display: none;
  transition: all 2s ease-in-out;
  z-index: 1000;
}

.active {
  display: block;
}

.menu-container .menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.times {
  content: "X";
}

.menu-container .menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.menu-container .menu ul li {
  padding: 1rem;
}

.menu-container a {
  font-size: 3rem;
  text-decoration: none;
  font-weight: bolder;
}

/* header end  */

/* hero starts */

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
}

.hero video {
  /*position: absolute;*/
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /*top: -13%;*/
}

.hero .desc {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero .desc h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero .desc button {
  border: none;
  background: none;
  width: 100px;
  height: 100px;
  font-size: 60px;
  position: relative;
  margin: auto;
  text-align: center;
}

.hero .desc button i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  color: white;
}

.hero #myVideo {
  width: 100%;
  height: 117%;
  object-fit: cover;
}

/* hero ends */

/* about starts */
.about {
  position: relative;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: white;
  padding: 5rem 0rem;
  z-index: 0;
  text-align: center;
}

.about .row {
  z-index: 20;
}

.about .big-heading {
  font-size: 120px;
  font-weight: 800;
  color: #ffffff99;
  position: absolute;
  top: -5%;
  right: 2%;
  z-index: -1;
}

.about h2 {
  font-weight: 600;
}

.about p {
  font-weight: 700;
  font-size: 20px;
}

.about .col-8 {
  margin: auto;
  text-align: center;
}

.orangered {
  color: orangered;
}

.about .col-8 h2 {
  font-size: 2.5rem;
}

.about p {
  font-size: 1.25rem;
}

.img-section {
  position: relative;
  padding: 1rem;
  z-index: 10;
}

.img-section .background-1 {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 219px;
  height: 142px;
  background: #ff4500;
  border-radius: 0 10%;
  z-index: -1;
  box-shadow: 0px 4px 25px 0px rgb(0 0 0/ 25%);
}

.img-section img {
  box-shadow: 0px 4px 25px 0px rgb(0 0 0/ 25%);
}

.storytellers .boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5rem auto;
}

.storytellers .box {
  position: relative;
  width: 20rem;
  height: 20rem;
  margin: 0rem auto;
}

.storytellers .box:hover .imgBox {
  transform: translate(-3.5rem, -3.5rem);
}

.storytellers .box:hover .content {
  transform: translate(3.5rem, 3.5rem);
}

.storytellers .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.storytellers .imgBox img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  resize: both;
}

.storytellers .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
  align-items: flex-end;
  text-align: center;
  transition: 0.5s ease-in-out;
}

.storytellers .content h2 {
  display: block;
  font-size: 1.2rem;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #111;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 1px;
}

.storytellers .content a {
  font-size: 1rem;
  letter-spacing: normal;
  text-decoration: none;
}

.storytellers .content span {
  color: #555;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.srcDesktop {
  display: block;
}

.srcMobile {
  display: none;
}

@media (max-width: 600px) {
  .storytellers .boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 5rem auto;
  }

  .storytellers .box:first-child {
    margin-bottom: 3rem;
  }

  .storytellers .box:nth-child(2) {
    margin: 2rem auto;
  }

  .storytellers .box:hover .content {
    transform: translate(0, 3.5rem);
  }
  .storytellers .box:hover .imgBox {
    transform: translate(0, -3.5rem);
  }
}

/* about ends */

.verticals .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px 20vw 20px;
}

.verticals .heading img {
  width: 200px;
  padding: 4px;
  margin: 3em auto;
}

.verticals .heading p {
  font-size: 1.1rem;
}

.verticals .row,
.verticals .col-4 {
  padding: 0rem;
}

.verticals .menu-item {
  position: relative;
  overflow: hidden;
}

.verticals .menu-img video {
  width: 100%;
}

.verticals .menu-item .desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 0rem;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  background: #fff;
}

/* .verticals .menu-item.menu-item-1 .desc {
  background: linear-gradient(175.55deg, #f9d243 3.61%, #ff4e53 92.05%);
}

.verticals .menu-item.menu-item-2 .desc {
  background: linear-gradient(175.55deg, #fdfc47 3.61%, #24fe41 92.05%);
}

.verticals .menu-item.menu-item-3 .desc {
  background: linear-gradient(
    180deg,
    #b3ffab 0.01%,
    #fd1d1d 0.02%,
    #833ab4 100%
  );
} */

.verticals .menu-item .desc img {
  width: 200px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.verticals .menu-item .desc h2 {
  position: absolute;
  bottom: 5%;
}

.verticals .menu-item .desc .text {
  color: black;
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.verticals .menu-item:hover .desc {
  top: 146%;
}

.verticals .menu-item-3:hover .desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.verticals .menu-item-3 .desc h3 {
  color: black;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
}

.verticals .menu-item-3 .text {
  top: 65%;
}

.verticals .menu-item-1 .desc .text {
  color: #ff6600 !important;
}

.verticals .menu-item-2 .desc .text {
  color: #10bd9d !important;
  font-family: 400;
}

.verticals .menu-item-3 .desc .text {
  color: #e94c71 !important;
  font-family: 400;
}

.verticals .menu-item-3 .desc h3 {
  color: #ff003c !important;
  font-family: 400;
}

/* .verticals .menu-item:hover .desc img {
  top: -45%;
} */

.verticals .menu-item:hover .desc h2 {
  bottom: 105%;
}

.features {
  background: #000;
  color: #fff;
}

.featured .col-xl-3 {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured .col-xl-3 img {
  max-width: 200px;
  margin: auto;
  text-align: center;
}

.feature-item {
  padding: 20px 2rem;
  margin: auto;
  text-align: center;
  background: #000;
  color: #fff;
}

.feature-item h2,
.clients h2 {
  font-size: 3rem;
  text-align: center;
}

.feature-item img {
  width: 20%;
  margin: 2rem auto;
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: 4rem;
  margin: 1rem 0;
  color: orangered;
}

.feature-item img:hover {
  transform: scale(1.1);
}

.feature-item p {
  font-weight: bold;
  width: 60%;
  margin: auto;
  font-size: 20px;
}

.features {
  position: relative;
}

.features .arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0rem 10%;
}

.features .arrows ul {
  list-style: none;
  display: flex;
  width: 100%;
  padding: 0rem;
  align-items: center;
  justify-content: space-between;
}

.prev,
.next,
.up,
.down {
  border: 1px solid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev:hover,
.next:hover,
.up:hover,
.down:hover {
  background: orangered;
  color: white;
}

.prev i,
.next i,
.up i,
.down i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features {
  padding: 4rem 0;
}

.clients {
  padding: 4rem 0px;
  padding-bottom: 3rem;
  color: #fff;
  text-align: left;
  background: linear-gradient(rgba(255, 69, 0, 0.3), rgba(0, 0, 0, 0.8) 100%),
    url("tikdum/1-beardo.jpg") no-repeat;
  background-size: cover;
  background-position: top;
}

.clients h2 {
  margin-bottom: 2rem;
}

.client-header {
  text-align: center;
  color: white;
}

.client-header h2 {
  font-size: 3rem;
}

.client-slider .row {
  display: flex;
  align-items: center;
  justify-content: center !important;
}

.client-slider .col-2 {
  margin: 0.6rem;
  background: #121212;
  padding: 0rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.client-slider .col-2:hover {
  background: orangered;
}

.client-slider h2 {
  text-align: left;
}

.client-slider img,
.client-gallery img {
  padding: 1rem;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.client-slider img:hover {
  filter: grayscale(0);
}

.client-gallery {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  height: auto;
}

.client-cursor {
  width: 40px;
  height: 40px;
  position: absolute;
  background: #053f5c;
  border-radius: 50%;
  top: 5%;
  left: 5%;
  transform: translate(-5%, -5%);
  display: none;
}

.client-gallery img {
  width: 150px;
  border-radius: 5px;
  margin: 4px;
  transform: scale(1);
  transition: all 0.3s ease;
}

.client-gallery img:hover {
  transform: scale(1.25);
}

.works {
  background: linear-gradient(-45deg, #0c0b0b, #0c0b0b);
  /*background: linear-gradient(-45deg, #0c0b0b, yellow, lime);*/
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.works h1 {
  text-align: center;
  color: white;
  padding: 2rem 0;
}

.works .work-header .strip-lined-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-header .strip-lined-1 .black-strips {
  width: 30px;
  height: 100px;
  background: #000;
  margin: 0rem 2rem;
  margin-top: -2.5rem;
  transform: rotate(35deg);
}

.works .work-header h2 {
  font-size: 4rem;
  width: 100%;
  padding: 2rem 0;
}

/* .outline {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #292929;
  color: rgba(225, 255, 241, 0);
} */

.works .work-section {
  overflow: hidden;
  padding: 1rem;
}

.works .work-section .img {
  width: 80%;
  height: 20%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.works .work-section .img img {
  width: 100%;
  transition: all 0.3s ease;
}

.works .work-section .img img:hover {
  transform: scale(1.1);
}

.works h2 {
  padding: 0 1rem;
}

.works .work-section p {
  margin: 0;
}

.works .work-section small {
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.works .arrows {
  width: 20%;
}

.works .arrows li {
  margin: 2px 0;
}

.work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrows {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 60%;
}

.arrows li {
  margin-left: 1rem;
}

.work-header {
  margin-bottom: 1rem;
}

.work-header h2 {
  font-size: 3rem;
}

.work-header .arrows .prev,
.work-header .arrows .next {
  font-size: 1rem;
  background: #fff;
  color: black;
}

.featured-in {
  padding: 5rem 0;
  background: linear-gradient(122.88deg, #7708ab 5.55%, #6c48ff 96.77%);
  text-align: center;
  color: #daf7f3;
}

.featured-in .col-10 {
  margin: auto;
}

.featured-in h2 {
  font-size: 3rem;
}

.featured-in hr {
  margin: 3rem auto;
}

.featured-in .arrows {
  width: 100%;
  box-shadow: none;
}

.featured-in .featured-item {
  margin: 1rem 0;
}

.featured-in .featured-card {
  box-shadow: 0px 1px 25px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 1rem;
  height: 500px;
}

.featured-in .featured-card a {
  display: flex;
  align-items: center;
  color: orangered;
  text-decoration: none;
}

.featured-in .featured-card a i {
  font-size: 1rem;
  margin: 0 10px;
}

.featured-in .featured-card .featured-desc {
  margin: 1rem 0;
}

.featured-one {
  height: auto;
  margin: 3rem auto;
}

.featured-one .container {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(50%);
}

.featured-one .feature-card {
  padding: 1rem;
  min-width: 360px;
  height: 450px;
  box-shadow: -7px 2px 10px 0px #00000040;
  border-radius: 10px;
  background: #f7a8e2;
  color: #000;
  font-weight: normal;
  transition: all 1s ease;
  transform-style: preserve-3d;
  transform: translate3d(0vw, 0px, 0px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.featured-one .feature-card a {
  font-size: 20px;
  text-decoration: none;
}

.featured-one .feature-card.one {
  background: #9fe7f5;
  color: #003d49;
  transform: translate3d(0vw, 0px, 0px);
}

.featured-one .feature-card.one a {
  color: #00d5ff;
}

.featured-one .feature-card.two {
  background: #f8da4e;
  color: #694600;
  transform: translate3d(-17vw, 0px, 0px);
}

.featured-one .feature-card.two a i {
  color: #feb321;
}

.featured-one .feature-card.three {
  background: #ae90e9;
  color: #24006d;
  transform: translate3d(-34vw, 0px, 0px);
}

.featured-one .feature-card.four {
  background: #ffa347;
  color: #6a3500;
  transform: translate3d(-51vw, 0px, 0px);
}

.featured-one .feature-card.five {
  background: #c8df16;
  color: #475000;
  transform: translate3d(-68vw, 0px, 0px);
}

.featured-one .feature-card.six {
  background: #f7a8e2;
  color: #570040;
  transform: translate3d(-85vw, 0px, 0px);
  z-index: 95;
}

.featured-one .feature-card.six a i {
  color: #ff31ca;
}

.featured-one .feature-card img {
  margin: 1rem auto;
  margin-bottom: 2rem;
  box-shadow: 0px 4px 17px 0px #00000040;
  width: 80%;
  border-radius: 5px;
}

.contact {
  height: auto;
  background: url("assets/bandstand/9-mandarin-oak.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  background-attachment: fixed;
}

.contact .container {
  background: white;
  box-shadow: 0px 3px 55px rgba(0, 0, 0, 0.5);
}

.contact h6 {
  text-transform: uppercase;
}

.contact .col-6,
.contact .col-12 {
  border: 1px solid;
  padding: 2rem;
}

.contact button,
.contact input,
.contact button:hover,
input:focus,
input:hover {
  text-transform: uppercase;
  font-family: "Karla", sans-serif;
  border-radius: 0px;
  padding: 1rem;
  font-size: 1rem;
  padding: 0.5rem 3rem;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(101deg, orangered, red, purple);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
}

.contact .form-group {
  display: flex;
  align-items: center;
}

.contact input {
  padding: 0.5rem 1rem;
}

.contact .form-group input[type="email"] {
  width: 90% !important;
  border-right-color: transparent !important;
}

.contact input[type="button"] {
  border-left-color: transparent !important;
}

footer {
  position: relative;
  background: #d5d4f4;
  max-height: 300px;
}

footer #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #d68557;
  background-image: url("");
  background-position: center;
  background-size: cover;
  padding: 1rem;
}

.footer-logos .col-3 {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 1rem auto;
}

.footer-logos .col-3:first-child {
  align-items: flex-start;
}

.footer-logos img {
  max-width: 150px;
}

footer a:hover {
  color: white;
}

footer .row {
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  padding: 2rem;
  padding-bottom: 0rem;
}

footer .col {
  padding: 1rem 0rem;
  min-width: 150px;
  height: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: start;
  flex-direction: column;
  text-align: left;
  position: relative;
}

footer .col img {
  padding: 5px;
  width: 140px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

footer h5 {
  margin-bottom: 1.5rem;
}

footer ul {
  padding: 0rem;
  list-style: none;
}

footer ul li a {
  font-weight: 400;
  font-size: 14px;
}

footer .media ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

footer .media {
  margin: 1rem auto;
}

footer .media li {
  width: 25px;
  height: 25px;
}

footer .last-col hr {
  margin-top: 1.5rem !important;
  border: 1px solid;
  width: 100%;
}

footer a,
footer i {
  text-decoration: none;
  font-size: 1rem;
  color: #111;
}

footer i {
  text-align: center;
}

.footer-logos {
  margin: 0;
  padding-top: 0rem;
  padding-bottom: 2rem !important;
}

.latest {
  background: linear-gradient(45deg, yellow, cyan, lime);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: white;
  padding: 5rem 0rem;
}

.latest h2 {
  font-size: 3em;
  text-decoration: wavy;
}

.col-10 #myVideo {
  width: 100%;
  margin: 1rem auto;
  margin-bottom: 3rem;
}

.gallery .row,
.gallery .col-4 {
  padding: 0rem;
}

.gallery .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.gallery .col-4 {
  position: relative;
  /* height: 364px; */
}

.gallery .col-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .col-4 .gallery-hover {
  position: absolute;
  width: 100%;
  background-color: rgba(255, 69, 0, 0.5);
  height: 100%;
  top: 0%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.gallery .col-4:hover .gallery-hover {
  opacity: 1;
}

.works .work-header {
  width: 100%;
  text-align: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #eee;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 1000ms, height 1000ms;
  z-index: 1000;
}

.cursor.large {
  height: 70px;
  width: 70px;
  border: 2px solid #eee;
}

@keyframes fade-down {
  30% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* a:hover {
  cursor: url('/assets/custom-cursor.png'), auto;
} */

.animation-wrapper {
  width: 100%;
  padding: 5rem 0;
  /*  height: 205vh;*/
  overflow: hidden;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.stagger-visualizer {
  /*position: relative;
  width: 1100px;
  height: 550px;
  transform-origin: left top;*/
}

.stagger-visualizer .dots-wrapper {
  transform: translateZ(0);
  /*  position: absolute;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.stagger-visualizer img {
  /*  position: relative;*/
  z-index: 1;
  width: 150px;
  margin: 5px;
}

@media (min-width: 740px) {
  .stagger-visualizer .image {
    background-color: transparent;
    background-image: linear-gradient(180deg, #ffffff 8%, #d3cdc6 100%);
  }
}

/* animations */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* .stagger-visualizer .cursor {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 6rem;
  height: 6rem;
  margin: 9px;
  background-color: red;
  border-radius: 50%;
} */

.wrapper {
  position: fixed;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background: linear-gradient(-45deg, rgb(0, 0, 0), rgb(247, 5, 255));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  clip-path: circle(25px at calc(100% - 45px) 45px);
  -webkit-clip-path: circle(25px at calc(100% - 45px) 45px);
  -moz-clip-path: circle(25px at calc(100% - 45px) 45px);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

#active:checked ~ .wrapper {
  clip-path: circle(75%);
  -webkit-clip-path: circle(75%);
  -moz-clip-path: circle(75%);
}

.menu-btn {
  position: fixed;
  z-index: 1002;
  right: 1.6%;
  top: 3.6%;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  background: yellowgreen;
  transition: all 0.3s ease-in-out;
}
#active:checked ~ .menu-btn {
  color: #fff;
}
#active:checked ~ .menu-btn i:before {
  content: "\f00d";
}
.wrapper ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.wrapper ul li {
  margin: 15px 0;
}
.wrapper ul li a {
  color: none;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
  padding: 5px 30px;
  color: #fff;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  line-height: 50px;
  transition: all 0.3s ease;
}
.wrapper ul li a:after {
  position: absolute;
  content: "";
  background: #fff;
  background: linear-gradient(#ffeb3b, #ff00e0);
  /*background: linear-gradient(375deg, #1cc7d0, #2ede98);*/
  width: 104%;
  height: 110%;
  left: -2%;
  top: -5%; /* if the font is 'Oswald'*/
  border-radius: 50px;
  transform: scaleY(0);
  z-index: -1;
  animation: rotate 1.5s linear infinite;
  transition: transform 0.3s ease;
}
.wrapper ul li a:hover:after {
  transform: scaleY(1);
}
.wrapper ul li a:hover {
  color: #fff;
}
input[type="checkbox"] {
  display: none;
}

/* text-animations  */
.ml1 {
  font-weight: 900;
  font-size: 38px;
  margin-bottom: 1rem;
}

.ml1 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml1 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
}

.ml1 .line {
  opacity: 0;
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transform-origin: 0 0;
}

.ml1 .line1 {
  top: 0;
}
.ml1 .line2 {
  bottom: 0;
}

.ml2 {
  font-weight: 900;
  font-size: 3.5em;
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml3 {
  font-weight: 900;
  font-size: 3.5em;
  text-align: center;
}

.ml14 {
  font-weight: 200;
  font-size: 3.2em;
}

.ml14 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
}

.ml14 .line {
  opacity: 0;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform-origin: 100% 100%;
  bottom: 0;
}

.ml14 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml6 {
  position: relative;
  font-weight: 900;
  font-size: 3.3em;
}

.ml6 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

.ml6 .letter {
  display: inline-block;
  line-height: 1em;
}

/* Our Storytellers */

.storytellers {
  padding: 60px 0rem;
  text-align: center;
  background: linear-gradient(90deg, #a600f4 30.02%, #e73c7e 100%);
  color: #fff;
}

.storytellers h1 {
  margin-bottom: 2rem !important;
}

.storytellers p {
  text-align: center;
  margin: 0.5rem 0rem 1rem 0rem;
  font-size: 24px !important;
}

.storytellers .col-xl-5 {
  margin: auto;
}

.storytellers .image-section {
  width: 320px;
  height: 320px;
  background: linear-gradient(-45deg, yellow, lime);
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.3s ease;
}

@keyframes round {
  50% {
    transform: rotate(0deg);
  }
}

.storytellers .image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  padding: 1rem;
  transform: scale(1);
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 1rem;
}

.storytellers .image-section img:hover {
  transform: scale(1.05);
}

.storytellers .icon {
  font-size: 1rem;
}

.storytellers .card-story {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.storytellers .card-story .image-section {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.storytellers .card-story:hover .image-section {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.storytellers .btn {
  border: 0px solid;
  width: auto !important;
  margin: auto;
  background: rgba(20, 20, 200, 0.5);
  color: white !important;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: normal;
}

/* Responsiveness */

/* Big-Screens */

@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .hero {
    height: 90vh;
  }

  .srcDesktop {
    display: block;
  }

  .srcMobile {
    display: none;
  }

  /*.animation-wrapper {
    height: 205vh;
  }*/

  .footer-logos {
    padding-bottom: 0rem !important;
  }
}

.fictional img {
  align-self: flex-end;
}

.reach {
  text-align: right;
}

.col-3.reach {
  text-align: right;
}

@media screen and (min-width: 1401px) {
  /*.hero {*/
  /*  height: 90vh;*/
  /*}*/

  body {
    overflow-x: hidden;
  }
  .srcDesktop {
    display: block;
  }

  .srcMobile {
    display: none;
  }

  .menu-btn {
    right: 1.05%;
    top: 2.15%;
  }

  /*  .animation-wrapper {
    height: 190vh;
  }*/

  .featured-one .container {
    /*transform: translateX(40%);*/
    transform: translateX(33%);
  }
  .featured-one .feature-card {
    padding: 0.5rem;
    min-width: 340px;
  }
  .featured-one .feature-card h3 {
    font-size: 20px;
  }
  .featured-one .feature-card p {
    font-size: 16px;
  }

  .featured-one .feature-card.two {
    transform: translate3d(-11vw, 0px, 0px);
  }

  .featured-one .feature-card.three {
    transform: translate3d(-22vw, 0px, 0px);
  }

  .featured-one .feature-card.four {
    transform: translate3d(-33vw, 0px, 0px);
  }

  .featured-one .feature-card.five {
    transform: translate3d(-44vw, 0px, 0px);
  }

  .featured-one .feature-card.six {
    transform: translate3d(-55vw, 0px, 0px);
  }

  .footer-logos {
    padding: 2rem 5rem !important;
    padding-bottom: 0rem !important;
  }
}

/*@media screen and (max-width: 1200px){*/
/*    .featured-one .container {*/
/*    transform: none !important;*/
/*    justify-content: start;*/
/*    flex-wrap: wrap;*/
/*  }*/
/*  .featured-one .feature-card{*/
/*      transform: none !important;*/
/*    margin: 10px auto;*/
/*    width:45%;*/
/*  }*/
/*}*/

@media screen and (max-width: 1000px) {
  .srcDesktop {
    display: none;
  }

  h1,
  .featured-in h2 {
    font-size: 21px !important;
    padding-top: 30px;
  }

  .hero {
    display: none;
  }

  .hero video {
    position: absolute;
    width: 100%;
    top: 0%;
    height: 110%;
    object-fit: cover;
  }

  .menu-btn {
    right: 5%;
    top: 2.4%;
  }

  #navbar {
    width: 100%;
  }

  .verticals {
    overflow: hidden;
  }
  .verticals .menu-item .menu-img video {
    opacity: 0;
  }
  .verticals .menu-item:hover .desc {
    top: 50%;
  }

  .verticals .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .verticals .row .col-sm-12 {
    border-bottom: 1px solid #000;
  }

  .verticals .row .col-sm-12.vertical-3 {
    border-bottom: 0px;
  }

  .verticals .menu-item-3 .desc h3 {
    top: 45%;
  }

  .verticals .menu-item-3 .desc .text {
    top: 60%;
  }

  .featured-one .container {
    flex-wrap: wrap;
    transform: none;
  }

  .featured-in {
    padding: 3rem 0rem 2rem 0rem;
  }

  .featured-in .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .featured-in .row .col-sm-4 {
    max-width: 33.33%;
    margin: auto;
  }

  .featured-in .row .col-sm-4 img {
    width: 100%;
  }

  p {
    font-size: 1rem !important;
    font-weight: normal !important;
  }

  .featured-one .feature-card.two,
  .featured-one .feature-card.three,
  .featured-one .feature-card.four,
  .featured-one .feature-card.five,
  .featured-one .feature-card.six {
    transform: none;
    margin: 10px auto;
  }

  /*.animation-wrapper {
    height: 60vh;
  }*/

  footer {
    overflow-x: clip;
  }

  footer .content .row:nth-child(2) {
    flex-wrap: wrap;
  }

  footer .content .row:nth-child(2) .col-sm-6 {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  footer .content .row:nth-child(2) .col-sm-6 a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ipad */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .ml1 {
    opacity: 1 !important;
  }

  .hero {
    height: 36vh;
  }

  .featured-in {
    overflow: hidden;
  }

  .hero video {
    top: 0%;
    height: 116%;
  }

  /* .animation-wrapper {
    height: 72vh;
  }*/

  /*.featured-one .container {*/
  /*  transform: none !important;*/
  /*  justify-content: start;*/
  /*  flex-wrap: wrap;*/
  /*}*/

  /*.featured-one .feature-card.one,*/
  /*.featured-one .feature-card.two,*/
  /*.featured-one .feature-card.three,*/
  /*.featured-one .feature-card.four,*/
  /*.featured-one .feature-card.five,*/
  /*.featured-one .feature-card.six {*/
  /*  transform: none !important;*/
  /*  max-width: min-content;*/
  /*  margin: 10px auto;*/
  /*  min-width: 320px;*/
  /*}*/

  .menu-btn {
    right: 2.5%;
    top: 2%;
  }

  .verticals {
    overflow: hidden;
  }

  footer {
    overflow-x: clip;
  }
}

/* Landscape*/

@media only screen and (min-device-width: 1366px) and (max-device-height: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .hero {
    height: 66vh;
  }

  .featured-in {
    overflow: hidden;
  }

  /* .animation-wrapper {
    height: 115vh;
  }*/

  .featured-one .container {
    transform: none !important;
    justify-content: start;
    flex-wrap: wrap;
  }

  .featured-one .feature-card.one,
  .featured-one .feature-card.two,
  .featured-one .feature-card.three,
  .featured-one .feature-card.four,
  .featured-one .feature-card.five,
  .featured-one .feature-card.six {
    transform: none !important;
    max-width: min-content;
    min-width: 340px;
    margin: 10px;
  }

  .verticals {
    overflow: hidden;
  }

  footer {
    overflow-x: clip;
  }
}

/* Portrait*/
@media only screen and (min-device-width: 1024px) and (max-device-height: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .hero video {
    height: 120%;
  }

  .featured-one .container {
    transform: none !important;
    justify-content: start;
    flex-wrap: wrap;
  }

  .featured-one .feature-card.one,
  .featured-one .feature-card.two,
  .featured-one .feature-card.three,
  .featured-one .feature-card.four,
  .featured-one .feature-card.five,
  .featured-one .feature-card.six {
    transform: none !important;
    max-width: min-content;
    min-width: 430px;
    margin: 15px auto;
  }

  .verticals {
    overflow: hidden;
  }

  footer {
    overflow-x: clip;
  }
}

@media only screen and (min-device-width: 1080px) and (max-device-height: 810px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .hero {
    height: 66vh;
  }

  /*  .animation-wrapper {
    height: 120vh;
  }
*/
  .featured-one .container {
    transform: none !important;
    justify-content: start;
    flex-wrap: wrap;
  }

  .featured-one .feature-card.one,
  .featured-one .feature-card.two,
  .featured-one .feature-card.three,
  .featured-one .feature-card.four,
  .featured-one .feature-card.five,
  .featured-one .feature-card.six {
    transform: none !important;
    max-width: min-content;
    margin: 10px;
    min-width: 430px;
  }

  .verticals {
    overflow: hidden;
  }

  footer {
    overflow-x: clip;
  }
}

/* Mediaquery */
@media only screen and (max-width: 1366px) {
  .featured-one .container {
    transform: none !important;
    justify-content: start !important;
    flex-wrap: wrap !important;
  }
  .featured-one .feature-card.one,
  .featured-one .feature-card.two,
  .featured-one .feature-card.three,
  .featured-one .feature-card.four,
  .featured-one .feature-card.five,
  .featured-one .feature-card.six {
    transform: none !important;
    max-width: min-content;
    min-width: 310px;
    margin: 10px auto !important;
  }
  .featured-one .feature-card h3 {
    font-size: 20px !important;
  }
  .featured-one .feature-card p {
    font-size: 16px !important;
  }
  .verticals {
    overflow: hidden;
  }

  footer {
    overflow-x: clip;
  }
}

@media only screen and (max-width: 999px) {
  .featured-one .feature-card {
    min-width: 300px !important;
  }
}

@media only screen and (max-width: 767px) {
  .stagger-visualizer {
    transform: scale(1) !important;
  }
  .animation-wrapper h1 {
    padding-top: 0 !important;
  }
}

/* Custom Media Card */
.bst-media-card {
  position: relative;
  width: 100%;
  height: 350px;
}
.bst-media-card.card-g {
  background: linear-gradient(to bottom, #407a80, #a5cc82);
}
.bst-media-card.card-g-alt {
  background: linear-gradient(to bottom, #ae87ad, #5fc3e4);
}
.bst-media-card .logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: 0.5s ease all;
  z-index:2;
  position:relative;
}
.bst-media-card .logo img {
  width: 250px;
  transition: 0.5s ease all;
}
.bst-media-card:hover .logo img {
  transform: scale(1.2);
}
.bst-media-card video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity:0;
    transition:0.5s ease all;
}
.bst-media-card:hover video{
    opacity:1;
}

/* Custom Media Card */
