@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&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');


html {
  scroll-behavior: smooth;
}


:root {
  --primary: linear-gradient(180deg, #25ADFF, #022674);
  --secondary: #80C5EF;
  --black: #000;
  --text-color: #282828;
  --white: #fff;
  --text-accent: #6d6e71;
  --Kumbh: "Kumbh Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}


body {
  position: relative;
  font-weight: 400;
  overflow-x: hidden;
  font-family: var(--Kumbh);
}

a, button {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover, button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul {
  list-style: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p {
  margin: 0;
  font-size: 1.025rem;
  line-height: 1.83em;
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--Kumbh);
}

::placeholder {
  text-transform: capitalize;
  color: #d6d5d5;
  font-size: 1rem;
}

section {
  position: relative;
  padding: 5rem 0;
}
figure {
  margin: 0;
  position: relative;
  z-index: 111;
}
.logo-image{
  width: 100px;
}
.themeBtn {
  background: var(--primary);
  height: 70px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: white;
  font-size: 1.125rem;
  font-family: var(--Kumbh);
  letter-spacing: 1px;
  border: 2px solid var(--primary);
  font-weight: 900;
  position: relative;
  z-index: 11;
}
.themeBtn:before {
  content: '';
  height: 0;
  width: 100%;
  background-color: white;
  position: absolute;
  bottom: 0;
  transition: .3s all ease-in-out;
  z-index: -1;
}

.themeBtn:hover:before {
  height: 100%;
}
.themeBtn:hover {
  background: transparent;
  color: var(--primary);
  animation: pulse-animation 1s infinite;
  border-radius: 0;
}

.sectionHeading span {
  color: var(--secondary);
}

.sectionHeading {
  font-size: 2.875rem;
  color: var(--black);
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 800;
  font-family: var(--Kumbh);
}

/* main-header */
.sticky {
  position: fixed !important;
  background-color: black;
  top: 0;
  height: 120px !important;
  padding: 8px 5rem;
  width: 100%;
  left: 0;
  right: 0;
}
.mainList {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header .navbar-nav .nav-link {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  float: left;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  width: 120px;
  position: relative;
  border: 1px solid transparent;
  transition: .3s all ease-in-out;
}

.main-header .navbar-nav {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header {
  padding: 30px 0;
  z-index: 255555;
  position: absolute;
  width: 100%;
}

body.offcanvas-active {
  overflow: hidden;
}

.main-header .navbar-brand {
  float: left;
  width: 7%;
  padding-left: 0;
  padding-top: 0;
  margin-right: 0;
  padding-bottom: 0;
}

.offcanvas-header {
  display: none;
}

.screen-overlay {
  width: 0%;
  height: 100%;
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity 0.2s linear, visibility 0.1s, width 1s ease-in;
}

.screen-overlay.show {
  transition: opacity 0.5s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

span.navbar-toggler-icon img {
  filter: brightness(0) invert(1);
  width: 100%;
}
.main-header .navbar-nav .nav-link:before {
  content: '';
  height: 0%;
  width: 100%;
  position: absolute;
  background: var(--primary);
  z-index: 0;
  top: 0;
  transition: .3s all ease-in-out;
}

.main-header .navbar-nav .nav-link span {
  position: relative;
}

.main-header .navbar-nav .nav-link:hover:before {
  height: 100%;
}

.main-header .navbar-nav .nav-link:hover {
  border-color: var(--primary);
  color: white;
}
.headBtn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.headBtn a {
  height: 50px;
  width: 180px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--Kumbh);
  font-size: 1.125rem;
  color: var(--secondary);
  border-radius: 0;
  letter-spacing: 1px;
  font-weight: 700;
}
.headBtn a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  border-radius: 0;
  animation: pulse-yellow 1s infinite;
}
.headBtn a:last-child {
  background: var(--primary);
  border: none;
  color: white;
}

.headBtn a:last-child:hover {
  color: var(--secondary);
  background: white;
  border-color: white;
}
/* end-main-header */


.header-landing{
  background-color: rgba(0,0,0,0.7);
}
.land-b{
  background-image: url(../images/banBg.jpg);
}
.layerB{
  margin-top: 30px;
}

/* banner */
.mainBanner {
  background-image: url(../images/banBg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-bottom: -3rem;
}
.spnBig {
  font-size: 6.625rem;
  color: var(--secondary);
}
.banImg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 65%;
  z-index: 1111;
  animation: float 4s infinite;
}
.banCont h2 {
  font-size: 4.75rem;
  letter-spacing: 5px;
  font-weight: 800;
  line-height: 1.125;
}

.banCont p {
  color: white;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-weight: 400;
}
/* banner end */

/* nfl section */
.nflSlider img {
  border-radius: 23px;
  position: relative;
}
.nflsect:before {
  content: '';
  height: 83%;
  width: 100%;
  background-image: url(../images/singleBg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  position: absolute;
  top: 0
}
.nflSlider:before {
  content: '';
  height: 100%;
  width: 100%;
  background: var(--primary);
  position: absolute;
  top: 15px;
  right: -15px;
  border-radius: 23px
}
.nflCont h2 {
  font-size: 4.125rem;
  color: white;
  font-weight: 800;
  text-transform: none;
  margin-top: 9rem;
}

.nflCont h2 span {
  color: var(--secondary);
}

.nflsect h3 {
  text-align: center;
  margin-top: 3rem;
  font-size: 2.25rem;
}
.nflSlider {
  position: relative
}
.nflSlider .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
  bottom: 0;
}
.nflSlider .slick-dots li {
  margin: 0 0.25rem;
}
.nflSlider .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: white;
  text-indent: -9999px;
}
.nflSlider .slick-dots li.slick-active button {
  background-color: #FFCC12;
}
.nflsect {
  padding: 10rem 0 0;
}

.nflCont {
  position: relative;
}

.nflCont img {
  margin-top: 4rem;
}

.nflsect {
  z-index: 1;
}
/* nfl section end */


/* logo section */
.logoSlider img {
  width: 90%;
}
.logosect {
  background: #110303;
  margin-bottom: -6rem;
  padding: 0;
  margin-top: -18rem;
}

.logosect .sectionHeading {
  color: white;
  font-size: 4.125rem;
}
.logosect .sectionHeading {
  margin-bottom: 3rem;
}
.logoSlider figure {
  text-align: center !important;
  margin: 15px 0;
}
.newRow {
  display:none;
}
.logoBtn {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 11;
}
/* logo section end */


/* catch section */
.catchCont p {
  color: white;
  font-size: 1.5rem;
  padding: 16px 20px;
}
.catch-sect {
  z-index: 1111;
  padding-top: 13rem;
}
.catchElmTwo {
  position: absolute;
  width: 100%;
  top: 65%;
  transform: translateY(-50%);
}
.hand {
  margin: 2rem 0 5rem;
}
.overlay {
  background: white;
  height: 30%;
  bottom: 0;
  top: unset;
  z-index: 1;
}
.catch-sect .sectionHeading {
  color: white;
}
.catch-sect:before {
  content: '';
  height: 61%;
  width: 100%;
  background: url(../images/ctchBg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
}
.catch-sect .sectionHeading {
  font-size: 4.125rem;
  position: relative;
  z-index: 11;
}
.benifCont {
  border-radius: 44px;
  position: relative;
  z-index: 111;
  margin-top: -10.2rem;
}
.benifCont:after {
  content: '';
  height: 98%;
  width: 100%;
  position: absolute;
  background: yellow;
  top: 30px;
  left: 8px;
  border-radius: 44px;
  z-index: -1;
}
.benifContTwo {
  background: var(--primary);
  padding: 5rem;
  border-radius: 44px;
  overflow: hidden;
}
.benifContTwo:before {
  content: '';
  height: 100%;
  width: 100%;
  background-image: url(../images/benBef.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 44px;
  opacity: 0.26;
}
.benifCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: 111;
}

.benifCard figure {
  height: 114px;
  width: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 0;
  margin: 10px 0 25px;
}

.benifCard h3 {
  color: black;
  text-transform: none;
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.bordRight {
  position: relative;
}

.bordRight:before {
  content: '';
  height: 90%;
  width: 1px;
  background: white;
  position: absolute;
  right: 0;
  bottom: 5px;
}
.bordRightbot {
  position: relative;
}
.bordRightbot:before {
  content: '';
  height: 90%;
  width: 1px;
  background: white;
  position: absolute;
  right: 0;
  top: 5px;
}
.benifCard p {
  color: #505050;
  font-size: 1.125rem;
  font-family: var(--Kumbh);
  font-weight: 400;
  line-height: 1.5;
  margin-top: 5px;
}
.bordBottom {
  position: relative;
}

.bordBottom:after {
  content: '';
  height: 1px;
  width: 90%;
  background: white;
  position: absolute;
  bottom: 0;
  left: 5px;
}

.bordBotlef {
  position: relative;
}
.bordBotlef:after {
  content: '';
  height: 1px;
  width: 90%;
  background: white;
  position: absolute;
  bottom: 0;
  right: 5px;
}
.benBtn {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.benBtn .themeBtn {
  background: #ffcc12;
  color: black;
}
.flexCont p {
  color: #505050;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0;
  letter-spacing: 1px;
  font-family: var(--Kumbh);
  font-weight: 400;
  margin-top: 1rem;
}
/* catch section end */

/* package section */
.flex-sect {
  background-image: url(../images/pricBg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.pkgCont {
  background: white;
  padding: 3rem 2rem;
  border-radius: 0;
  width: 100%;
  margin: 0 auto;
}
.pkgCont.pkgCenter .themeBtn:before {
  background: var(--primary);
}
.pkgCont.pkgCenter h4, .pkgCont.pkgCenter h2, .pkgCont.pkgCenter h4, .pkgCont.pkgCenter ul li {
  color: white;
}
.catchElmOne {
  position: absolute;
  top: -33rem;
  width: 100%;
}
.pkgCont.pkgCenter ul li:before {
  background: white;
}
.pkgCont h4 {
  color: black;
  font-size: 1rem;
}

.pkgCont .pkg-1 {
  font-size: 2.7rem;
  color: var(--primary);
  font-weight: 900;
  font-family: var(--Kumbh);
}
.pkgCont .pkg-2 {
  font-size: 5.375rem;
  color: var(--primary);
  letter-spacing: 3px;
  font-weight: 900;
  font-family: var(--Kumbh);
}

.pkgCont h2 sub {
  font-size: 1.5rem;
  font-weight: 900;
}

.pkgCont ul li {
  color: black;
  padding: 14px 0;
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
}
.pkgCont .themeBtn {
  background: var(--primary);
  color: white;
  height: 65px;
  width: 220px;
  margin: 2rem auto 0;
  border: 2px solid var(--primary);
  border-radius: 0;
  font-weight: 900;
}
.pkgCont {
  margin: 4rem 0;
  position: relative;
}

.pkgCont .new {
  position: relative;
}
.pkgCenter {
  background: var(--primary);
  z-index: 999;
}
.pkgCont.pkgCenter .themeBtn {
  background-color: white;
  color: white;
  border: 2px solid var(--primary) !important;
  font-size: 1.25rem;
}
.flex-sect {
  border-bottom: 1px solid rgba(255,255,255,0.5);
  /* background: var(--black); */
  padding: 22rem 0 12rem;
}
.flex-sect .sectionHeading {
  color: white;
  font-size: 4.125rem;
}
.flex-sect .flexCont p {
  color: white;
}

.pkgCont .themeBtn:hover {
  background: transparent;
  color: var(--primary);
  animation: pulse-yellow 1s infinite;
}
.pkgCont ul li:before {
  content: '';
  height: 5px;
  width: 5px;
  position: absolute;
  background: black;
  border-radius: 50px;
}
.pkgCont ul li span {
  padding-left: 20px;
}
.pkgCont.pkgCenter .themeBtn:hover {
  color: white;
  border: 2px solid #fff !important;
  animation: pulse-animation 1s infinite;
}
.pricElm {
  position: absolute;
  bottom: -50px;
  width: 100%;
}


/* package section end */


/* testimonials section */
.test-sect .flexCont p {
  padding: 0;
}
.test-sect {
  padding-top: 10rem;
}
.testBtn {
  display: flex;
  justify-content: space-between;
}

.testBtn button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  font-weight: 100;
  background: transparent;
  border: none;
  color: #BCBCBC;
}

.testBtn button:focus {
  outline: none;
  box-shadow: none;
}

.testBtn button.tsprev {
  left: -50px;
}

.testBtn button.tsnext {
  right: -50px;
}

.testBtn button:hover {
  color: var(--primary);
}
.testCont {
  background: white;
  margin: 40px 20px;
  border-radius: 0;
  padding: 4rem 4.5rem;
  text-align: center;
  position: relative;
  transition: .3s all ease-in-out;
  box-shadow: 0px 4px 4px rgba(0,0,0,.25);
}

.testCont h3 {
  color: var(--primary);
  font-size: 15.375rem;
  line-height: 0.7;
  margin: 0;
  transition: .3s all ease-in-out;
  font-weight: 900;
}
.testCont h2 {
  font-size: 1.625rem;
  color: var(--primary);
  text-transform: none;
  margin: 30px 0 0;
  transition: .3s all ease-in-out;
  font-weight: 800;
}

.testCont p {
  font-size: 1.625rem;
  font-weight: 400;
  font-family: var(--Kumbh);
  line-height: 1.4;
  color: black;
  margin-top: -65px;
  transition: .3s all ease-in-out;
}
.testSlider .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
  bottom: -40px;
}
.testSlider .slick-dots li {
  margin: 0 0.25rem;
}
.testSlider .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: white;
  text-indent: -9999px;
}
.testSlider .slick-dots li.slick-active button {
  background-color: #FFCC12;
}
.watchCont h2 {
  font-size: 4.75rem;
  margin-bottom: 4rem;
  font-weight: 900;
}
.watch-sect {
  padding-bottom: 0;
}
.brandSlider figure {
  text-align: center !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 130px;
}
.testCont:hover {
}
.watch-sect::before {
  content: '';
  background-image: url(../images/watchBg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 65%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.brandSlider {
  margin-top: 3rem;
}
.storeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.screen-sect .flexCont {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.screen-sect .flexCont .themeBtn {
  color: black;
  margin-top: 3rem;
  background: #FFCC12;
  margin-bottom: 4rem;
}
.storeBtn a {
  border: 5px solid white;
  border-radius: 25px;
}
.screen-sect {
  z-index: 11;
  background: white;
  padding-bottom: 0;
}
/* testimonials section end */


/* faq section */
.accordion .card {
  border: none;
  border-radius: 24px !important;
  margin: 14px 0;
}
.faqElm {
  position: absolute;
  top: -43rem;
  left: 0;
  right: 0;
  width: 100%;
}
.faq-sect .sectionHeading {
  color: white;
}
.accordion .card-header {
  background: linear-gradient(0deg, #00affa, #002b72);
  color: white;
  border: none;
  padding: 0;
  border-radius: 24px 24px 0 0 !important;
}
.accordion .btn-link {
  color: white;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-family: var(--Kumbh);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion .btn-link:hover, .accordion .btn-link:focus {
  text-decoration: none;
  color: #FFCC12;
}
.accordion .btn-link.collapsed {
  background-color: white;
  color: black;
  border: 1px solid #d3d3d3;
  border-radius: 24px;
}
.accordion .btn-link.collapsed:after {
  content: '⬇️';
  float: right;
  font-family: var(--Kumbh);
  font-size: 1.75rem;
}
.accordion .btn-link:after {
  content: '⬆️';
  float: right;
  font-family: var(--Kumbh);
  font-size: 1.75rem;
}
.collapse.show .card-body {
  background: var(--primary);
  color: white;
}
.accordion .card-body {
  padding: 0rem 2rem 3rem;
  background-color: white;
}
.accordion {
  overflow-anchor: none;
  margin-top: 3rem;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.faq-sect {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--black);
  padding-top: 24rem;
}
/* faq sectione end */


/* footer */
footer {
  padding: 5rem 0 1rem;
}

.footCont ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 40px 0;
}

.footCont ul li a {
  color: var(--black);
  font-size: 1rem;
  font-family: var(--Kumbh);
  font-weight: 400;
}
.footCont p {
  color: #CACACA;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: var(--Kumbh);
  letter-spacing: 2px;
  padding-top: 4rem;
}
.subscribe-container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0px;
  background-color: #ECECEC;
  width: 70%;
  margin: 0 auto 20px;
}
.email-input {
  flex-grow: 1;
  border: none;
  border-radius: 25px 0 0 25px;
  padding: 10px 15px;
  outline: none;
  font-size: 14px;
  color: #d1d1d1;
  background: transparent;
}
.subscribe-button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 20px 50px;
  cursor: pointer;
  font-size: 1.125rem;
}
.subscribe-button:focus {
  outline: none;
  box-shadow: none;
}
.footLogo img {
  width: 150px;
}
/* footer end */


@keyframes pulse-yellow {
  0% {
      box-shadow: 0 0 0 0px rgba(28, 163, 225, 0.2);
  }

  100% {
      box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
  }
}


a.menuLink:hover {
  color: var(--primary);
}

.image-wrapper {
  border-radius: 0;
  line-height: 1.6;
}

.image-wrapper img {
  height: auto;
  max-width: 100%;
  transition: 1s all ease-in-out;
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 196, 0, 0.226) 100% );
  content: "";
  display: block;
  height: 100%;
  left: -83%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}

.shine:hover::before, .shine:focus::before {
  -webkit-animation: shine 0.85s;
  animation: shine 0.85s;
}

@-webkit-keyframes shine {
  100% {
      left: 125%;
  }
}

@keyframes shine {
  100% {
      left: 125%;
  }
}

.shine:hover img {
  transform: scale(1.1);
}

@keyframes pulse-animation {
  0% {
      box-shadow: 0 0 0 0px rgba(38, 137, 195, 0.2);
  }

  100% {
      box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
  }
}




@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

/* Clappr CSS */
.hero-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.hero-area.btn-main{
  margin-right: 8px;
}


.bannerwrapper .banner {
  position: relative;
  margin: 0 auto;
}

#countdown {
  position: absolute;
  top: 0;
  z-index: 1;
}


@media screen and (max-width: 991px) {
  #countdown{
    top: 0 !important;
  }
  .hero-area{
    margin-top: -220px !important;
  }
}
@media screen and (max-width: 390px){
  .land-b{
    min-height: 400px !important;
  }
}


.video-player iframe {
  width: 100%;
  height: 100%;
}

.video-player .play-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.video-player .play-icon i {
  margin-left: 3px;
  height: 80px;
  width: 80px;
  border-radius: 50px;
  transition: transform 300ms ease;
  background: #fff;
  color: #f0326b;
  line-height: 80px;
  font-size: 30px;
  margin-left: 5px;
}

.video-player .play-icon:hover i {
  transform: scale(1.1);
}

.hero-area-video {
  height: 100vh;
  position: inherit !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-area-video .block {
  color: #fff;
  text-align: center;
}

.hero-area-video .block h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-area-video .block p {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.btn-main {
    background-color: #21d6bf;
    background-image: linear-gradient(100deg, #3631b3, #152abd);
    color: #fff !important;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 40px;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
}
.logo-land{
  color: white;
  font-size: 25px;
  font-weight: bold;
}

.logo-image-landing{
  width: 75px;
}
.header-landing{
  padding: 10px 0;
}