
  @font-face {
      font-family: "Adelia-Regular";
  src: url("../fonts/adelia-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  }

html {
    overflow-x: hidden;
  }
  
  .aboutpage-overflow {
    overflow-x: visible;
  }
  
  body {
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Montserrat", sans-serif;
  }
  
  a {
    text-decoration: none !important;
  }
  
  p {
    color: #383d41;
    font-size: 15px;
    font-weight: 300;
  }
  
  .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  .heading {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .main-title{
    font-family: "Adelia-Regular";
    font-size: 60px;
    line-height: 1.5;
  }
  .center-heading {
    text-align: center;
  }
  p b{
    color: #000;
  }
  
  /* .sub-heading {
    margin: 8px 0px 0px;
  } */
  
  /* .sub-title {
    background-image: linear-gradient(to right, #DBFF00 0%, #C4E500 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
  } */
  
  /* .header-gap {
    margin-top: 83px;
  } */
  
  /* .gradiant-color {
    background-image: linear-gradient(to right, #DBFF00 0%, #C4E500 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  } */
  
  /*----------- button -------------*/
  
.default-btn {
    background-color: #DBFF00;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #DBFF00;
    border-radius: 50px;
    text-transform: capitalize;
    font-size: 16px;
    color: #000;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}
.default-btn:hover{
    background-color: transparent;
    color: #000 !important;
}
.rightmenu-link a:hover{
  color: #fff !important;
}
.trans-btn {
    background-color: transparent;
    display: inline-block;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #000;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.trans-btn:hover{
    background-color: #DBFF00;
    color: #000;
}


  /*--------------- header ---------------*/

.header-area {
    padding: 15px 0px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }


  
  .logo a {
    display: inline-block;
  }
  
  .logo a img {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 150px;
  }
  
  .stick {
    padding: 10px 0px;
    background: #000;
  }
  .header-area.white-area.stick{
    position: fixed;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  }
  .header-area.white-area.stick .white-header{
    margin-top: 0;
    box-shadow: none;
  }

  
  .stick .logo a img {
    width: 140px;
  }
  
  .main-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    width: auto;
  }
  
  .main-menu ul {
    margin: 0;
  }
  
  .main-menu ul li {
    margin-left: 25px;
    display: inline-block;
    position: relative;
  }
  
  .main-menu ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    position: relative;
    transition: all 0.2s ease-In;
  }
  
  .main-menu ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
    transform-origin: 50% 50%;
    background: #DBFF00;
  }
  
  .main-menu ul li a:hover {
    color: #DBFF00;
  }
  
  .main-menu ul li a:hover::before {
    transform: scale3d(1, 1, 1);
  }

  .main-menu ul li .sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 190px;
    margin: 0;
    padding: 10px 0;
    background: #000;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease-in-out;
    z-index: 20;
  }

  .main-menu ul li .sub-menu li {
    display: block;
    margin: 0;
  }

  .main-menu ul li .sub-menu li a {
    display: block;
    padding: 8px 16px;
    white-space: nowrap;
    font-size: 14px;
  }

  .main-menu ul li .sub-menu li a:before {
    display: none;
  }

  .main-menu ul li:hover .sub-menu,
  .main-menu ul li:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .arrow-link img {
    width: 12px;
    opacity: 0.6;
    transform-origin: 0% 50%;
    transition: all 0.2s ease-In;
  }
  
  .arrow-link:hover img {
    opacity: 1;
    transform: rotate(-45deg);
  }
  
.rightmenu-link {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  
  .rightmenu-link .default-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .rightmenu-link .menu-login {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.2s ease-In;
    position: relative;
    background-image: linear-gradient(to right, #DBFF00 0%, #C4E500 90%);
  }
  
  .menu-login:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.5s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
    transform-origin: 50% 50%;
    background: #DBFF00;
  }
  
  .menu-login:hover::before {
    transform: scale3d(1, 1, 1);
  }
  
  .menu-login:hover {
    color: #DBFF00;
  }
  
  .menu-login,
  .rightmenu-link .default-btn,
  .toogle-line {
    margin-left: 22px;
  }
  .right-contact {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

  /*------- menu line butn ------*/
  
  .toogle-line {
    display: flex;
    align-items: center;
  }
  
  .btn1 {
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;
    width: 22px;
  }
  
  .btn1 .menu-line {
    transition: all 400ms cubic-bezier(0, 0, 0.58, 1);
    height: 1.3px;
    width: 100%;
    background: #fff;
    position: relative;
    float: right;
  }
  
  .btn1 .icon-center {
    margin-top: 6px;
    width: 80%;
  }
  
  .btn1 .icon-bottom {
    margin-top: 6px;
    width: 80%;
  }
  
  .btn1:hover .menu-line {
    background: #DBFF00;
    width: 100%;
  }
  
  .wrapper-menu {
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
  }
  
  .wrapper-menu.close-sign {
    transform: rotate(-45deg);
  }
  
  .line-menu {
    background-color: #fff;
    background-image: linear-gradient(to right, #DBFF00 0%, #C4E500 90%);
    border-radius: 5px;
    width: 100%;
    height: 3px;
  }
  
  .line-menu.half {
    width: 50%;
  }
  
  .line-menu.start {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
  }
  
  .wrapper-menu.close-sign .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
  }
  
  .line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
  }
  
  .wrapper-menu.close-sign .line-menu.end {
    transform: rotate(-90deg) translateX(-3px);
  }
  
  .wrapper-menu:hover .line-menu {
    background-image: linear-gradient(to right, #DBFF00 0%, #C4E500 90%);
  }
  
  .menu-button {
    position: relative;
    margin: 0;
  }
  
  .menu-button span {
    background: #fff;
    border-radius: 10px;
    height: 2px;
    margin: 3px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }
  
  .menu-button:hover span {
    background: #ffa011;
  }
  
  .menu-button span:nth-of-type(1) {
    width: 50%;
  }
  
  .menu-button span:nth-of-type(2) {
    width: 100%;
  }
  
  .menu-button span:nth-of-type(3) {
    width: 75%;
  }
  
  .menu-button input[type="checkbox"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    cursor: pointer;
  }
  
  .menu-button input[type="checkbox"]:checked ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(4px, 0px);
  }
  
  .menu-button input[type="checkbox"]:checked ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
  }
  
  .menu-button input[type="checkbox"]:checked ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(14px, -3px) rotatez(45deg);
  }

  /*-------------- big menu ------------*/

.nonoverflow {
    overflow-x: unset !important;
    overflow-y: hidden !important;
  }
  
  .menu-logobar {
    box-shadow: none !important;
    background: transparent !important;
  }
  
  .menu-logobar .main-menu ul,
  .menu-logobar .rightmenu-link .select-country,
  .menu-logobar .rightmenu-link .menu-login,
  .menu-logobar .rightmenu-link .default-btn {
    display: none;
  }
  
  .menu-close {
    color: #fff;
    text-align: right;
    margin-bottom: 5px;
    position: absolute;
    right: 10%;
    top: 0;
    cursor: pointer;
  }
  
  .menu.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  
  .menu {
    transition: all 1s cubic-bezier(0.17, 0.04, 0.03, 0.94);
    overflow: hidden;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8;
    background: #131313;
  }
  
  .menu::-webkit-scrollbar {
    width: 4px;
    background: #131313;
  }
  
  .menu::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
  }
  
  .menu::-webkit-scrollbar-thumb {
    background-color: rgb(255 255 255 / 80%);
    outline: none;
    border-radius: 50px;
  }
  
  .bigmenu-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
  }
  
  .bigmenu-content-center {
    width: 40%;
  }
  
  .bigmenu-content-left,
  .bigmenu-content-right {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  
  .bigmenu-content-left {
    margin-right: 30px;
    border-right: 1px solid rgb(255 255 255 / 20%);
  }
  
  .bigmenu-content-right {
    padding-left: 30px;
    border-left: 1px solid rgb(255 255 255 / 20%);
  }
  
  .bigmenu-main-link {
    margin: 0;
    padding: 0;
    list-style: none;
    transition: all 500ms cubic-bezier(0, 0, 0.58, 1);
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 40px;
  }
  
  .bigmenu-main-link::-webkit-scrollbar {
    width: 4px;
    background: #131313;
  }
  
  .bigmenu-main-link::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
  }
  
  .bigmenu-main-link::-webkit-scrollbar-thumb {
    background-color: rgb(255 255 255 / 80%);
    outline: none;
    border-radius: 50px;
  }
  
  .bigmenu-main-link li {
    margin-bottom: 12px;
    opacity: 0;
    line-height: 1.3;
    transform: translateX(30px);
    transition: all 500ms cubic-bezier(0, 0, 0.58, 1);
  }
  
  .bigmenu-main-link li:last-child {
    margin-bottom: 0px;
  }
  
  .menu.open .bigmenu-main-link li {
    opacity: 1;
    transform: translateX(0px);
  }
  
  .menu.open .bigmenu-main-link li:nth-child(1) {
    transition-delay: 0.3s;
  }
  .menu.open .bigmenu-main-link li:nth-child(2) {
    transition-delay: 0.6s;
  }
  .menu.open .bigmenu-main-link li:nth-child(3) {
    transition-delay: 0.9s;
  }
  .menu.open .bigmenu-main-link li:nth-child(4) {
    transition-delay: 1.2s;
  }
  .menu.open .bigmenu-main-link li:nth-child(5) {
    transition-delay: 1.5s;
  }
  .menu.open .bigmenu-main-link li:nth-child(6) {
    transition-delay: 1.8s;
  }
  .menu.open .bigmenu-main-link li:nth-child(7) {
    transition-delay: 2.1s;
  }
  .menu.open .bigmenu-main-link li:nth-child(8) {
    transition-delay: 2.4s;
  }
  .menu.open .bigmenu-main-link li:nth-child(9) {
    transition-delay: 2.7s;
  }
  .menu.open .bigmenu-main-link li:nth-child(10) {
    transition-delay: 3s;
  }
  
  .bigmenu-main-link li a {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
    transition: all 500ms cubic-bezier(0, 0, 0.58, 1);
        font-family: "PP Eiko Medium";
  }
  
  .bigmenu-main-link:hover li a {
    opacity: 0.3;
  }
  
  .bigmenu-main-link li a:hover {
    background-image: linear-gradient(to right, #DBFF00 0%, #C4E500 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 1;
    transform: translateX(10px);
  }
  
  .bigmenu-innerlinks {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s;
    margin-top: 6px;
    padding-right: 20px;
    position: relative;
    height: auto;
    color: rgb(255 255 255 / 30%);
    transition: all 1s ease-in-out;
  }
  
  .bigmenu-main-link li:hover .bigmenu-innerlinks {
    max-height: 20em;
    overflow: visible;
  }
  
  .bigmenu-innerlinks a {
    font-size: 15px !important;
    font-weight: 400 !important;
    margin: 4px;
    transition: all 0.3s ease-in-out;
  }
  
  .bigmenu-innerlinks a:hover {
    transform: translateX(0px) !important;
  }
  
  .menu-contactlink .fa-whatsapp,
  .menu-contactlink .fa-envelope,
  .menu-contactlink .fa-phone,
  .menu-contactlink .fa-location-dot {
    color: rgb(255 255 255 / 40%);
    font-size: 14px;
    margin-top: 6px;
    margin-right: 5px;
  }
  
  .menu-contactlink {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    padding-bottom: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0, 0, 0.58, 1);
  }
  
  .menu.open .menu-contactlink {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.5s;
  }
  
  .menu-contactlink:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  
  .menu-contactlink p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1;
  }
  
  .menu-contactlink span {
    color: rgb(255 255 255 / 40%);
    font-size: 14px;
    display: block;
  }
  
  .menu-contactlink ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu-contactlink ul li {
    display: flex;
    align-items: start;
    margin-bottom: 6px;
  }
  
  .menu-contactlink ul li:last-child {
    margin-bottom: 0px;
  }
  
  .menu-contactlink ul li a {
    color: rgb(255 255 255 / 40%);
    font-size: 15px;
    position: relative;
  }
  
  .menu-contactlink ul li a:hover {
    background-image: linear-gradient(to right, #DBFF00 0%, #C4E500 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  .menu-contactlink ul li a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 1.3px;
    width: 0;
    transition: width 0s ease, background 0.25s ease;
  }
  
  .menu-contactlink ul li a:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -2px;
    height: 1.3px;
    width: 0;
    background: linear-gradient(to right, #ff6b00 0%, #DBFF00 90%);
    transition: width 0.5s ease;
  }
  
  .menu-contactlink ul li a:hover:before {
    width: 100%;
    background: linear-gradient(to right, #ff6b00 0%, #DBFF00 90%);
    transition: width 0.5s ease;
  }
  
  .menu-contactlink ul li a:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
  }
  
  .menu-copyright {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s cubic-bezier(0, 0, 0.58, 1);
  }
  
  .menu.open .menu-copyright {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.5s;
  }
  
  .menu-copyright h4 {
    font-size: 40px;
    color: #fff;
    line-height: 1;
    margin-bottom: 2px;
  }
  
  .menu-copyright p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 0;
  }
  
  .menu-social {
    margin: 30px 0px;
    list-style: none;
    padding: 0;
  }
  
  .menu-social li {
    display: inline-block;
    transition: all 800ms cubic-bezier(0, 0, 0.58, 1);
  }
  
  .menu-social li a {
    transition: all 0.2s ease-In;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: #242424;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 2px;
    font-size: 14px;
    border: 1px solid rgb(255, 255, 255);
  }
  
  .menu-social li:nth-child(1) a:hover {
    background: #3b579d;
    border-color: #3b579d;
  }
  
  .menu-social li:nth-child(2) a:hover {
    background: #d62976;
    border-color: #d62976;
  }
  
  .menu-social li:nth-child(3) a:hover {
    background: #0f1419;
    border-color: #0f1419;
  }
  
  .menu-social li:nth-child(4) a:hover {
    background: #006699;
    border-color: #006699;
  }
  
  
  

/* Banner Section */
.banner-section {
    position: relative;
    padding: 210px 0px;
    background: url("../images/banner.webp") no-repeat center center/cover;
    overflow: hidden;
    height: 100%;
}
.banner-content .banner-content-box p {
    font-size: 42px;
    color: #fff;
    text-align: right;
    width: 50%;
}
.banner-content-box {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    justify-content: flex-end;
}
.banner-content-box h1 {
    font-size: 100px;
    margin-left: 10px;
    font-weight: 500;
    width: 50%;
}
.banner-content-box h2 {
    font-size: 100px;
    margin-left: 10px;
    font-weight: 600;
    width: 50%;
}
.banner-bottom-content p,
.banner-bottom-content span {
  color: #fff;
  text-align: right;
  display: block;
}
.banner-title {
    font-size: 18px;
    font-weight: 600;
}
.bottom-text {
    margin-top: 20px;
    font-size: 30px;
}
.banner-content-wrapper p{
  color: #fff;
  font-size: 18px;
  max-width: 550px;
}
.banner-content-wrapper .subtitle{
  color: #c6ff00;
}
.banner-content-wrapper .heading{
  color: #fff;
  text-transform: none;
}
.banner-content-wrapper .heading span{
  /* font-family: "Adelia-Regular"; */
      color: #c6ff00;
      font-style: italic;
}
.motivational-section{
  background: url("../images/motivation-banner.webp") no-repeat center center/cover;
  overflow: hidden;
  padding: 40px 0;
}
.motivational-content .title {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
}
.motivational-content .quote {
    font-size: 30px;
    color: #000;
    position: relative;
}
.motivational-content .quote:after {
      content: "";
    position: absolute;
    width: 20%;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #000;
    height: 1px;
    z-index: 1;
}
.motivational-content .ratings {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}
.logo-slider-section {
    background: #000E26;
    padding: 40px 0px;
    margin-bottom: 80px;
}
.logo-slider-section .title {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
.logo-slider .logo {
    padding: 10px;
}

.logo-slider img {
    width: 180px;
    display: block;
    margin: 0 auto;
}
.energy-mgmt-section {
  position: relative;
  padding-bottom: 80px;
}
.energy-mgmt-section a{
  margin-top: 20px;
}
.video-section {
    position: relative;
    padding: 0 0 80px 0;
}
.video-section img {
    position: relative;
    margin-bottom: 40px;
}
.video-section .play-btn {
    position: absolute;
    bottom: 100px;
    right: 50px;
    color: #fff;
}
.video-section .play-btn svg{
    font-size: 20px;
    border-radius: 50%;
    margin-right: 0;
    padding: 5px;
}
.video-section .play-btn a{
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
}
.testimonial-section {
    background: url("../images/testimonial-img.webp") no-repeat center center/cover;
    overflow: hidden;
    padding: 170px 0;
}


.testimonial-section .slide-item {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.testimonial-section .content {
  position: relative;
  max-width: 900px;
  color: #fff;
  z-index: 2;
}

.testimonial-section .profile-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-section .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section .quote {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.testimonial-section .name {
  color: #c6ff00;
  font-size: 22px;
  margin-bottom: 5px;
}

.testimonial-section .designation {
  font-size: 16px;
  color: #fff;
}
.arrow{
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 1s ease-in-out;
}
.arrow:hover{
    background-image: linear-gradient(to right, #DBFF00 0%, #C4E500 90%);
    border-color: #DBFF00;
    cursor: pointer;
}
.arrow-left{
    left: 10%;
}
.arrow-right{
    right: 10%;
}
.mentor-section{
  position: relative;
  padding: 80px 0;
 
}
.mentor-bg{
  position: relative;
  background: url("../images/mentor-bg.webp") no-repeat center center/cover;
  border-radius: 15px;
  padding: 40px;
}

.mentor-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}
.mentor-section .mentor-content .heading {
    font-size: 25px;
    font-weight: 400;
}
.mentor-section .mentor-content .heading span{
  font-weight: 600;
}
.mentor-section .mentor-content .media-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 40px;
}
.mentor-section .mentor-content .default-btn {
    margin: 40px 0px 0;
}
.energy-mgmt-section strong {
    font-size: 24px;
    font-weight: 400;
}
.form-wrapper {
    display: flex;
    justify-content: space-between;
}
.form-wrapper .form-group{
      width: 100%;
    padding: 0 10px;
    margin: 30px 0;
}
.form-wrapper .form-control {
    border-top: 0;
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    width: 100%;
}
.podcast-section {
    background-color: #000E26;
    text-align: center;
    position: relative;
    padding: 80px 0;
        margin-bottom: 250px;
}
.podcast-section .main-title {
    color: #C4E500;

}
.podcast-section .heading {
    color: #fff;
}
.podcast-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: -250px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    margin-top: 10px;
}
.podcast-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 530px;
    background: url(../images/podcast.webp) no-repeat center center / cover;
    top: 50px;
    left: 200px;
    z-index: 0;
}
.podcast-content p{
  color: #000;
}
.podcast-content .podcast-text {
    width: 48%;
    text-align: left;
}
.podcast-content .podcast-episodes {
    width: 48%;
    text-align: left;
}
.podcast-content .episode-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #b2afaf6e;
    padding: 10px 0;
    cursor: pointer;
}
.podcast-content .episode-wrapper .episode-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}
.podcast-content .podcast-episodes .title {
    font-size: 20px;
    text-transform: uppercase;
}
.podcast-episodes .episode-content {
    width: 70%;
}
.podcast-episodes .episode-title {
    margin: 6px 0;
}
.podcast-episodes .episode-duration {
    color: #999;
}
/* .podcast-episodes {
    height: 350px;
    overflow: scroll;
} */
.podcast-slider-section {
    padding-bottom: 80px;
    position: relative;
}
.podcast-slider-section .slide-item {
    overflow: hidden;
}
.podcast-slider-section .slide-item img {
    
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}
.podcast-slider-section .arrow-right {
    right: 50%;
    top: 95%;
    background-color: #c6ff00;
}
.bg-gray{
  background-color: #F3F3F3;
}
.padding-top{
  padding-top: 80px;
}
.result-section {
    position: relative;
    padding: 80px 0;
    background-color: #000;
    color: #fff;
}
.down-arrow{
  display: block;
  animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
  cursor: pointer;
}
.down-arrow svg {
    height: 30px;
    color: #fff;
  transform-origin: 0% 0%;
}
.down-arrow:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 100%;
  border-radius: 5px;
  transform: rotate(-90deg);
  transform-origin: 0% 100%;
}

@keyframes bounce {
50% {
    transform: translateY(-15px);
  }
}
.result-section .heading{
  color: #fff;
      margin-bottom: 50px;
}
.result-section .sub-title {
    margin: 10px 0;
    display: block;
}
.result-section .result-box-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.content-wrapper,
.image-wrapper {
    width: 50%;
}
.yellow-bg{
  background-color: #E5EF00;
}
.pink-bg{
  background-color: #FF2661;
}
.sky-bg{
  background-color: #00D4FF;
}
.green-bg{
  background-color: #00D7AF;
}
.brown-bg{
  background-color: #FF9811;
}
.result-section .content-wrapper {
    padding: 40px;
}
.result-section .content-wrapper .box-title {
    color: #000;
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.result-section .content-wrapper .box-content{
  color: #000;
}
.result-section .content-wrapper a{
  color: #000;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.result-section .content-wrapper a::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 1.3px;
  background: #000;
  left: 0;
  bottom: -2px;
}
.result-section .content-wrapper a svg {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  margin-left: 2px;
}
.result-section .content-wrapper a svg {
  display: inline-block; 
  transition: transform 0.3s ease-in-out;
}
.result-section .content-wrapper a:hover svg {
  transform: rotate(-45deg);
}
.yellow-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    background-image: url(../images/black-bg.webp);
    rotate: 180deg;
    top: 0;
}
.brown-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80px;
    background-image: url(../images/black-bg.webp);
    bottom: 0;
}
.enthusiasm-section{
  background-color: #000;
      position: relative;
    padding-bottom: 80px;
}
.enthusiasm-section .default-btn:hover,
.contact-section .default-btn:hover {
    color: #fff !important;
}
.enthusiasm-section .outcome-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
      margin-top: 30px;
}
.enthusiasm-section .outcome-top p{
  color: #fff;
  font-size: 18px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}
.enthusiasm-section .heading{
  color: #fff;
}
.enthusiasm-section .outcome-top .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 0;
}
.enthusiasm-section .enthusiasm-box {
    min-height: 330px;
    border-top-right-radius: 0;
}
.enthusiasm-section .enthusiasm-box .box-title {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
.enthusiasm-section .enthusiasm-box .box-main-title{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
.enthusiasm-section .enthusiasm-box .down-arrow {
    margin: 50px 0;
}
.sky-border{
    border: 1px solid #00D4FF;
    padding: 20px;
    border-radius: 10px;
}
.yellow-border{
    border: 1px solid #E5EF00;
    padding: 20px;
    border-radius: 10px;
}
.pink-border{
    border: 1px solid #FF2661;
    padding: 20px;
    border-radius: 10px;
}
.green-border{
    border: 1px solid #00D7AF;
    padding: 20px;
    border-radius: 10px;
}
span.icon-box.yellow-bg::after{
  display: none;
}
.enthusiasm-section .btn-wrapper {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}
.contact-section {
    position: relative;
    background: #000;
}
.contact-section .heading{
    color: #fff;
}
.contact-section .contact-form label {
    color: #fff;
    font-weight: 200;
}
.contact-section .contact-form h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}
.contact-section .contact-form .form-control {
    border-radius: 5px;
}
.contact-section .contact-form {
    margin-top: 40px;
}
.contact-section .form-group.checkbox-wrapper  {
    margin-bottom: 1rem;
    margin-left: 30px;
}
.contact-section .form-group {
    margin-bottom: 2rem;
}
.contact-section .btn-wrapper {
    width: 100%;
    text-align: center;
}
.footer-menu a {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}
.footer-menu a:hover {
    color: #DBFF00;
}

















.footer-section{
  background-color: #000;
  padding-top: 80px;
}
.footer-section h4 {
    color: #fff;
    font-size: 20px;
}
.footer-section p {
    color: #fff;
}
.contact-form a {
    color: #C4E500;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.contact-form a::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 1.3px;
  background: #C4E500;
  left: 0;
  bottom: -2px;
}
.contact-form a:hover svg{
    transform: rotate(-45deg);
}
.contact-form a svg {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.consultation-modal .modal-content {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}
.consultation-modal .modal-dialog {
    max-width: 1120px;
}
.consultation-close {
    position: absolute;
    top: 15px;
    right: 18px;
    z-index: 5;
    color: #000;
    opacity: 1;
    font-size: 34px;
    line-height: 1;
}
.consultation-image {
    height: 100%;
    min-height: 640px;
    background: #000;
}
.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.consultation-form-wrap {
    max-height: 86vh;
    overflow-y: auto;
    padding: 45px 45px 35px;
    background: #fff;
}
.consultation-form-wrap .heading {
    color: #000;
    font-size: 34px;
    margin-bottom: 25px;
}
.consultation-form-wrap .contact-form {
    margin-top: 20px;
}
.consultation-form-wrap .contact-form h4,
.consultation-form-wrap .contact-form label {
    color: #000;
}
.consultation-form-wrap .contact-form h4 {
    font-size: 20px;
    margin-bottom: 18px;
}
.consultation-form-wrap .contact-form .form-control {
    border-radius: 5px;
}
.consultation-form-wrap .form-group {
    margin-bottom: 1.2rem;
}
.consultation-form-wrap .form-group.checkbox-wrapper {
    margin-left: 25px;
}
.consultation-form-wrap .btn-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.copyright-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #999;
    margin-top: 30px;
}
.copyright-footer .footer-menu .list-inline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.copyright-footer .footer-menu .list-inline li{
  position: relative;
  margin-right: 10px;
}
.copyright-footer .footer-menu .list-inline li:last-child::after {
    content: "";
    position: absolute;
    top: 11px;
    left: -20px;
    width: 20px;
    height: 1.3px;
    background: #fff;
    rotate: 90deg;
}
.podcast-slider-section .slide-item{margin: 0px 15px;}
.media-section{
    padding:80px 0;
}

.media-section .media-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top: 20px;
}

.media-section .media-card{
    background:#f3f3f3;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 12px 25px rgba(0,0,0,0.25);
    transition:.3s ease;
}

.media-section .media-card:hover{
    transform:translateY(-5px);
}

.media-section .card-image{
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    margin:20px;
}

.media-section .card-image img{
    max-width:70%;
    max-height:80px;
    object-fit:contain;
}

.media-section .red{
    background:#d71818;
}

.media-section .blue{
    background:#12a8df;
}

.media-section .pink{
    background:#ff1b3c;
}

.media-section .dark{
    background:#2f3946;
}

.media-section .card-content{
    padding:0 30px 30px;
    min-height:180px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.media-section .card-content h3{
    font-size:16px;
    line-height:1.45;
    font-weight:500;
    color:#222;
    margin-bottom:40px;
}

.media-section a svg {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.media-section a {
    color: #000;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.media-section a:hover svg {
    transform: rotate(-45deg);
}
.media-section.program-page{
  background-color: #000E26;
  color: #fff;
}
.media-section.program-page .heading{
  color: #fff;
}
.media-section.program-page .media-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.media-section.program-page .card-content h3{
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}
.media-section.program-page .card-content{
  padding: 30px;
}
.media-section a i {
    transition: transform 0.3s ease-in-out;
}
.media-section a:hover i {
    transform: rotate(-45deg);
}
