*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  body {
    color: #000 !important;
    background-color: #f3fbfd !important;
  }
  
  a {
    text-decoration: none !important;
    transition: 0.3s;
    color: #000 !important;
  }
  
  a:hover {
    color: #52e4f0 !important;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
  }
  
 
  
  
  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  .header {
    background-color: #f3fbfd !important;
    color: #000;
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .logo img {
    max-height: 50px;
    margin-right: 8px;
  }
  
  .header .logo {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: #7fc4ca !important;
  }
  
  
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: #fff !important;
    background: #7fc4ca;
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
  }
  
  .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    background: #000 !important;
  }
  
  @media (max-width: 1200px) {
    .header .logo {
      order: 1;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 20px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  
  
  
  
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: #000;
      padding: 18px 15px;
      font-size: 20px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu a.active,
    .navmenu .active:focus {
      color: #7fc4ca !important;
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: #52e4f0;
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  
    .navmenu .megamenu {
      position: static;
    }
  
    .navmenu .megamenu ul {
      margin: 0;
      padding: 10px;
      background: var(--nav-dropdown-background-color);
      box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
      display: block;
      position: absolute;
      top: 130%;
      left: 0;
      right: 0;
      visibility: hidden;
      opacity: 0;
      display: flex;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
    }
  
    .navmenu .megamenu ul li {
      flex: 1;
    }
  
    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
      padding: 10px 20px;
      font-size: 15px;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .megamenu:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dd-box-shadow {
      box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: rgba(var(--primary-color-rgb), 0.1);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--primary-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--primary-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul,
    .navmenu .megamenu ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul,
    .navmenu .megamenu ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active,
    .navmenu .megamenu>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }
  


.HeroSec{
  padding: 40px 0px 0px 0px;
}
.herodiv {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}
.toptext h2 {
  color: #000;
  font-weight: 800;
  font-size: 43px;
  line-height: 1.4;
}
.toptext h2 span {
  color: #7fc4ca;
}
.toptext p {
  color: #747a7a8c;
  font-size: 16px;
  padding-right: 200px;
  font-weight: 500;
}
.missiondiv h4 {
  font-size: 28px;
  text-transform: capitalize;
  color: #000000e0;
  font-weight: 700;
}
.missiondiv p {
  color: #747a7ac2;
  font-size: 16px;
  padding-right: 200px;
  font-weight: 500;
  line-height: 1.4;
}



.omnipicture img {
  width: 100%;
  border-radius: 15px;
}

.contlinks {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 22px;
  padding-bottom: 55px;
}
.contlinks a {
  font-size: 16px;
  font-weight: 500;
}
.contlinks a i{
  color: #7fc4ca;
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.video-box {
    background: rgba(0,0,0, 0.7) url("./Logo.png") center center no-repeat;
    background-size: 100% 100%;
    background-blend-mode: darken;
  }
  
 .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#7fc4ca 50%, rgba(25, 119, 204, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
  }
  
.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(25, 119, 204, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }
  
  .play-btn:hover::after {
    border-left: 15px solid #7fc4ca;
    transform: scale(20);
  }
  
 .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
  
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  
.ryttopdiv {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.Drvideos{
  text-align: end;
}
.Drvideos .video-box {
  width: 100%;
  max-width: 330px;
  min-height: 200px;
  border: 1px solid #000;
  border-radius: 15px;
}

.Drvideos {
  display: flex;
  justify-content: end;
}
.HustleSec{
  background-color: #fff;
  padding: 100px 0px;
}
.hustlediv {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.hustlediv h2 {
  color: #000;
  font-weight: 800;
  font-size: 45px;
  line-height: 1.4;
}
.hustlediv h2 span {
  color: #7fc4ca;
}
.hustlecheck{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hustlecheck h6{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}
.hustlecheck h6 i{
  color: #7fc4ca;
}
.contbtn a{
  background-color: #7fc4ca;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 10px;
}
.contbtn a:hover{
  background-color: #000;
}
.husslefreeimg {
  text-align: center;
}
.husslefreeimg img {
  width: 100%;
  max-width: 400px;
}


.Footer{
  padding: 50px 0px 10px 0px ;
}
.ft-logo{
  text-align: center;
}
.ft-logo img{
  width: 100%;
  max-width: 250px;
}
.social-link{
  display: flex;
  flex-direction: column;
  padding-left: 85px;
  height: 100%;
  justify-content: space-evenly;
  padding-left: 85px;
}
.social-link a{
  font-weight: 700 !important;
}
.address {
  display: flex;
  align-items: center;
  gap: 10px;
}
.address h6 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.address i {
  font-size: 22px;
  color: #7fc4ca;
}

.copyrght{
  text-align: center;
}
.copyrght h6{
  color: #747a7a8c;
  font-size: 16px;
  font-weight: 500;
}