* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  --white: #fff;
  --white-1: #eeeeee;
  --white-2: #dddddd;
  --black: #000;
  --black-1: #121212;
  --black-2: #121212;
  --black-3: #161616;
  --black-4: #212121;
  --brand-color: rgba(252,176,69,1);
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*Navigation Bar Start*/
#navBar {
  height: 100px;
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}
#navBar #stickedLine {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 66px;
  z-index: 0;
  transform: translateY(-100%);
  transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}
#navBar #stickedLine::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--white);
  z-index: 1;
}
#navBar #stickedLine::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  box-shadow: 6px 6px 24px rgba(79, 87, 121, 0.1);
  box-shadow: 6px 6px 24px rgba(77, 44, 22, 0.2);
  opacity: 0;
  transition: opacity 0.5s linear;
}
#navBar #navLeft, #navBar #navRight {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}
#navBar #navLeft {
  left: 30px;
  top: 30px;
  top: -100px;
}
@media screen and (max-width: 880px) {
  #navBar #navLeft {
    left: 10px;
  }
}
#navBar #navLeft h1 {
  font-size: 24px;
  margin-left: 20px;
  color: var(--black);
}
@media screen and (max-width: 440px) {
  #navBar #navLeft h1 {
    display: none;
  }
}
#navBar #navLeft img {
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 40px;
}
#navBar #navRight {
  top: -100px;
  right: 50px;
}
@media screen and (max-width: 880px) {
  #navBar #navRight {
    display: none;
  }
}
#navBar .navItem {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  color: var(--black-1);
  margin-right: 10px;
  overflow: hidden;
  font-size: 15px;
  padding-bottom: 8px;
  padding: 0px 5px 8px 5px;
  word-spacing: 3px;
  letter-spacing: 0.5px;
}
#navBar .navItem::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: -100%;
  height: 3px;
  width: 100%;
  background-color: var(--brand-color);
  transition: 0.3s;
}
#navBar .navItem:hover::after {
  left: 0;
}
#navBar #navSmallDevice {
  position: absolute;
  top: 5px;
  right: 10px;
}
#navBar #navSmallDevice #navBtnIcon {
  position: relative;
  background-color: transparent;
  border: 0px;
  overflow: hidden;
  height: 50px;
  width: 50px;
  display: none;
  z-index: 100;
}
@media screen and (max-width: 880px) {
  #navBar #navSmallDevice #navBtnIcon {
    display: block;
  }
}
#navBar #navSmallDevice #navBtnIcon span {
  position: absolute;
  background-color: var(--black);
  left: 10px;
  height: 5px;
  width: 30px;
  border-radius: 3px;
  transition: 0.5s;
}
#navBar #navSmallDevice #navBtnIcon span:nth-child(1) {
  transform: translateY(-10px);
}
#navBar #navSmallDevice #navBtnIcon span:nth-child(2) {
  transform: translateY(0px);
}
#navBar #navSmallDevice #navBtnIcon span:nth-child(3) {
  transform: translateY(10px);
}
#navBar #navSmallDevice #toggleNavList {
  position: fixed;
  top: 0%;
  right: -100%;
  height: 100%;
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#navBar #navSmallDevice #toggleNavList a {
  margin: 10px;
  font-size: 30px;
}
#navBar #navSmallDevice #navBtnIcon.active span:nth-child(1) {
  transform: translateY(0px);
  transform: rotateZ(45deg);
}
#navBar #navSmallDevice #navBtnIcon.active span:nth-child(2) {
  transform: translateX(100px);
}
#navBar #navSmallDevice #navBtnIcon.active span:nth-child(3) {
  transform: translateY(0px);
  transform: rotateZ(135deg);
}
#navBar #navSmallDevice #navBtnIcon.active ~ #toggleNavList {
  right: 0%;
}

#navBar.sticked {
  z-index: 100;
}
#navBar.sticked #navLeft {
  top: 12px;
}
#navBar.sticked #navRight {
  top: 21px;
}
#navBar.sticked #stickedLine {
  transform: translateY(0%);
}
#navBar.sticked #stickedLine::after {
  opacity: 1;
}

/*Navigation Bar End*/
/*Cover Page / Hero Section Start*/
#cover {
  position: relative;
  min-width: 100vw;
  width: 100vw;
  min-height: 500px;
  height: 100vh;
  border-bottom: dashed 4px var(--white);
  box-shadow: 0 0 5px 15px var(--black), 0 15px 15px 0 var(--black-1);
  background-color: var(--black);
}
#cover video {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#cover .textContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  position: absolute;
  top: 200px;
  left: 150px;
  top: 20vh;
  left: 5vw;
  width: 550px;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 50px;
}
#cover .textContainer h2 {
  color: var(--white);
  font-size: 77px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: justify;
  background: linear-gradient(225deg, rgb(131, 58, 180) 0%, rgb(253, 29, 29) 50%, var(--brand-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#cover .textContainer h2 span {
  font-size: 88px;
  -webkit-text-fill-color: white;
}
#cover .textContainer p {
  color: var(--white);
  margin-bottom: 20px;
  text-align: left;
}
#cover .textContainer a {
  color: var(--white);
  text-decoration: none;
  padding: 21px 36px;
  font-size: 17px;
  letter-spacing: 0.11em;
}
#cover .textContainer .listItemContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: auto;
}
#cover .textContainer .listItemContainer .listItem {
  border: solid 2px var(--white);
  border-radius: 50%;
  width: 12%;
  -webkit-animation: 1.5s ease scaleTranslateY infinite;
          animation: 1.5s ease scaleTranslateY infinite;
  -webkit-animation-delay: var(--delay-s);
          animation-delay: var(--delay-s);
}
#cover .socialMediaContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 30px;
  padding-bottom: 5px;
  border: solid 1px var(--white);
  border-radius: 10px;
  overflow: hidden;
}
#cover .socialMediaContainer::after {
  content: " ";
  height: 100%;
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--white);
  transition: 0.5s ease-in-out;
}
#cover .socialMediaContainer a {
  text-decoration: none;
  color: var(--white);
  font-size: 20px;
  margin: 10px;
  z-index: 1;
  transition: 0.5s ease-in-out;
}
#cover .socialMediaContainer a:hover {
  transition: 0.2s;
  color: var(--color-code) !important;
}
#cover .socialMediaContainer:hover::after {
  top: 0;
}
#cover .socialMediaContainer:hover a {
  color: var(--black);
}
@media screen and (max-width: 860px) {
  #cover .textContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    padding: 5%;
  }
  #cover .textContainer h2 {
    font-size: 77px;
    margin-bottom: 30px;
  }
  #cover .textContainer h2 span {
    font-size: 88px;
  }
  #cover .socialMediaContainer {
    flex-direction: row;
    padding: 0px 5px;
  }
}
@media screen and (max-width: 720px) {
  #cover .textContainer {
    border-radius: 17px;
  }
  #cover .textContainer h2 {
    font-size: 11.5vw;
    margin-bottom: 10px;
  }
  #cover .textContainer h2 span {
    font-size: 13vw;
  }
}

@-webkit-keyframes scaleTranslateY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes scaleTranslateY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*Cover Page / Hero Section End*/
.flexTextImgSec {
  margin: 200px 0;
  width: auto;
}
.flexTextImgSec .content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 50px;
}
.flexTextImgSec .content .textContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 55%;
  min-width: 430px;
  max-width: 650px;
  height: 100%;
}
.flexTextImgSec .content .textContainer .tag {
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 25px;
  padding: 5px;
  background-color: rgb(160, 88, 41);
  color: #fff;
  text-transform: capitalize;
}
.flexTextImgSec .content .textContainer h4 {
  text-align: left;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.45;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  color: var(--black);
}
.flexTextImgSec .content .textContainer p {
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  word-spacing: 3px;
  margin-bottom: 50px;
  overflow-wrap: break-word;
  color: var(--black);
}
.flexTextImgSec .content .textContainer ul {
  padding-left: 25px;
  margin-bottom: 10px;
}
.flexTextImgSec .content .textContainer li {
  text-align: justify;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  overflow-wrap: breablackk-word;
  color: var(--black);
}
.flexTextImgSec .content .animationContainer {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  height: 300px;
  width: 45%;
  max-width: 722px;
  opacity: 0;
  scale: 0.8;
  background-color: var(--white-1);
  border: solid 4px var(--black-1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 0 100px;
  opacity: 0;
}
.flexTextImgSec .content .animationContainer::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--white-2);
  border: solid 4px var(--black-1);
  transform: rotate(-3deg);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  opacity: 0;
}
.flexTextImgSec .content .animationContainer::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--white);
  border: solid 4px var(--black-1);
  transform: rotate(4deg);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  opacity: 0;
}
.flexTextImgSec .content .animationContainer img {
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
  opacity: 0;
  box-shadow: none;
  transform: rotate(4deg);
}
.flexTextImgSec .content .animationContainer p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
}
@media screen and (max-width: 960px) {
  .flexTextImgSec {
    margin: 100px 0;
  }
  .flexTextImgSec .content {
    padding: 0;
    flex-direction: column-reverse;
  }
  .flexTextImgSec .content .textContainer {
    width: 80%;
    min-width: unset;
  }
  .flexTextImgSec .content .textContainer p {
    text-align: justify;
    margin-top: 20px;
  }
  .flexTextImgSec .content .animationContainer {
    width: 80%;
    margin: 50px 0;
  }
}

#about.animated .animationContainer {
  -webkit-animation: jumpOutAnimation 0.5s forwards;
          animation: jumpOutAnimation 0.5s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#about.animated .animationContainer::before {
  -webkit-animation: jumpOutAnimation 0.5s forwards;
          animation: jumpOutAnimation 0.5s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#about.animated .animationContainer::after {
  -webkit-animation: jumpOutAnimation 0.5s forwards;
          animation: jumpOutAnimation 0.5s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#about.animated .animationContainer img {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  -webkit-animation: jumpOutAnimation 0.5s forwards;
          animation: jumpOutAnimation 0.5s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes jumpOutAnimation {
  0% {
    scale: 0.8;
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}

@keyframes jumpOutAnimation {
  0% {
    scale: 0.8;
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
.centerTextSec {
  padding: 67px 0 42px 0;
  margin-bottom: 0px;
}
.centerTextSec .textContainer {
  margin: 0 auto;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.centerTextSec .textContainer h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 20px;
}
.centerTextSec .textContainer h4 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.35;
  margin-bottom: 20px;
  max-width: 90vw;
}
.centerTextSec .textContainer p {
  overflow-wrap: break-word;
  font-size: 18px;
  margin-bottom: 27px;
  max-width: 90vw;
  text-align: center;
  word-spacing: 3px;
  line-height: 2.5rem;
}
.centerTextSec .textContainer .btnWrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: auto;
  width: auto;
  margin: 30px 0;
  border: solid 5px var(--black-2);
  border-radius: 10px;
  text-decoration: none;
}
.centerTextSec .textContainer .btnWrapper .ctaBtn {
  padding: 15px 70px;
  height: 100%;
  width: 100%;
  color: transparent;
  background: linear-gradient(90deg, rgb(255, 47, 142) 0%, rgb(255, 158, 76) 10%, rgb(255, 214, 0) 20%, rgb(102, 223, 72) 30%, rgb(106, 119, 221) 40%, rgb(152, 3, 206) 50%, rgb(106, 119, 221) 60%, rgb(102, 223, 72) 70%, rgb(255, 214, 0) 80%, rgb(255, 158, 76) 90%, rgb(255, 47, 142) 100%);
  background-size: 1000% auto;
  margin: 0px;
  font-weight: 900;
  font-size: 40px;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-animation: 30s rainbowBg infinite linear;
          animation: 30s rainbowBg infinite linear;
}
.centerTextSec .textContainer .btnWrapper::before {
  content: "NOW!";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
  font-size: 40px;
  background-color: var(--black);
  color: var(--white);
  opacity: 0;
  transition: 0.5s;
}
.centerTextSec .textContainer .btnWrapper::after {
  content: " ";
  width: 99%;
  height: 99%;
  border: inherit;
  position: absolute;
  z-index: -1;
  background: var(--black-4);
  border-radius: inherit;
  opacity: 0;
}
.centerTextSec .textContainer .btnWrapper:hover::before {
  opacity: 1;
}
.centerTextSec .textContainer .btnWrapper:hover::after {
  -webkit-animation: pulsing 0.8s linear 0.5s infinite;
          animation: pulsing 0.8s linear 0.5s infinite;
}
@media screen and (max-width: 860px) {
  .centerTextSec .textContainer p {
    text-align: justify;
  }
}
@media screen and (max-width: 340px) {
  .centerTextSec .textContainer .btnWrapper .ctaBtn {
    padding: 5vw;
    font-size: 15vw;
  }
}
@media screen and (max-width: 480px) {
  .centerTextSec .textContainer h4 {
    font-size: 8.5vw;
  }
}

@-webkit-keyframes rainbowBg {
  to {
    background-position: 1000% center;
  }
}

@keyframes rainbowBg {
  to {
    background-position: 1000% center;
  }
}
@-webkit-keyframes pulsing {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.3) scaleX(1.1);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.3) scaleX(1.1);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}
@keyframes pulsing {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.3) scaleX(1.1);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.3) scaleX(1.1);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}
.imgBgTextSection {
  position: relative;
  height: 700px;
  width: 100%;
  border-top: 5px solid var(--black-1);
  border-bottom: 5px solid var(--black-1);
  border: none;
  background-color: var(--white-2);
}
.imgBgTextSection .imgContainer {
  height: 100%;
  width: 80%;
}
.imgBgTextSection .imgContainer img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.imgBgTextSection .textContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 5;
  position: absolute;
  height: auto;
  top: 50%;
  max-width: 700px;
}
.imgBgTextSection .textContainer h4 {
  font-family: "Josefin Sans", sans-serif;
  color: var(--white-2);
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
  font-size: 90px;
  opacity: 1;
  text-align: center;
}
.imgBgTextSection.rightText .imgContainer {
  position: absolute;
  left: 0;
}
.imgBgTextSection.rightText .imgContainer::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.imgBgTextSection.rightText .textContainer {
  right: 0;
}
.imgBgTextSection.rightText .textContainer h4 {
  right: 0;
  transform: translateY(-50%) rotate(90deg);
}
.imgBgTextSection.leftText .imgContainer {
  position: absolute;
  right: 0;
}
.imgBgTextSection.leftText .imgContainer::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.imgBgTextSection.leftText .textContainer {
  left: 0;
}
.imgBgTextSection.leftText .textContainer h4 {
  left: 0;
  transform: translateY(-50%) rotate(270deg);
}

.teamSec {
  height: 560px;
  max-width: 100vw;
  padding: 50px 0;
}
.teamSec .textContainer {
  margin: 0 auto;
  max-width: 940px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.teamSec .textContainer h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
}
.teamSec .teamContainer {
  width: 100%;
  height: auto;
}
.teamSec .teamContainer .teamItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  max-height: 800px;
  margin-top: 30px;
}
.teamSec .teamContainer .teamItem .teamImage {
  width: 325px;
  height: 325px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  border: #000 solid 8px;
  box-shadow: 0 0 10px #121212;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.teamSec .teamContainer .teamItem .teamName {
  font-size: 40px;
}
.teamSec .teamContainer .teamItem .jobTitle {
  color: rgba(0, 0, 0, 0.5);
}

.listItemSec {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.listItemSec h3 {
  font-size: 35px;
}
.listItemSec .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.listItemSec .content .listItemContainer {
  width: 100%;
  margin: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.listItemSec .content .listItemContainer .listItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  width: 25%;
  height: 250px;
  border: solid 0px var(--black-4);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}
.listItemSec .content .listItemContainer .listItem:hover {
  border: 2px solid var(--color-code);
}
.listItemSec .content .listItemContainer .listItem .imgContainer {
  overflow: hidden;
  margin: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.listItemSec .content .listItemContainer .listItem .imgContainer ion-icon {
  font-size: 100px;
  color: var(--color-code);
  z-index: 10;
}
.listItemSec .content .listItemContainer .listItem h4 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-code);
}
.listItemSec .content .listItemContainer .listItem span {
  opacity: 0.5;
}
.listItemSec .content .listItemContainer .listItem .desc {
  position: fixed;
  bottom: -150%;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  background: #fff;
  box-shadow: 0px 0px 20px #232323;
  transition: 0.5s ease-in-out;
}
.listItemSec .content .listItemContainer .listItem .desc p {
  width: 90%;
  max-width: 800px;
  font-size: 25px;
  text-align: justify;
  line-height: 1.8;
}
.listItemSec .content .listItemContainer .listItem .desc ion-icon {
  z-index: 202;
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 55px;
  color: #000;
  cursor: pointer;
}
.listItemSec .content .listItemContainer .listItem.active .desc {
  bottom: 0%;
}
@media screen and (max-width: 860px) {
  .listItemSec .content {
    flex-direction: column;
  }
  .listItemSec .content .listItemContainer {
    flex-direction: column;
    margin: 0;
  }
  .listItemSec .content .listItemContainer .listItem {
    width: 80%;
    min-width: unset;
    padding: 5%;
    margin-top: 50px;
  }
  .listItemSec .content .listItemContainer .listItem .desc p {
    font-size: 18px;
  }
  .listItemSec .content .listItemContainer .listItem .desc ion-icon {
    font-size: 30px;
  }
}
@media screen and (max-width: 360px) {
  .listItemSec .content .listItemContainer .listItem .desc p {
    font-size: 14px;
  }
}

/*Footer Start*/
.footer {
  position: relative;
  padding: 50px 5%;
  margin-top: 150px;
  box-shadow: 6px 6px 24px rgba(79, 87, 121, 0.1);
  box-shadow: 6px 6px 24px rgba(77, 44, 22, 0.2);
}
.footer .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer .content h1 {
  line-height: 2;
  font-size: 40px;
  margin-bottom: 40px;
}
.footer .content .column_1 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 30%;
  height: 400px;
}
.footer .content .column_1 .logoContainer {
  height: auto;
  width: 90%;
}
.footer .content .column_1 .logoContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.footer .content .column_1 #emailLink {
  position: relative;
  width: 80%;
  text-align: center;
  text-decoration: none;
  color: var(--black-1);
  border: 3px solid var(--black-1);
  padding: 5px 10px;
  border-radius: 5px;
  overflow: hidden;
}
.footer .content .column_1 #emailLink::after {
  content: "Send Email";
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--black);
  color: var(--white);
  transition: 0.2s ease-in-out;
}
.footer .content .column_1 #emailLink:hover::after {
  top: 0;
}
.footer .content .column_1 #clubName {
  position: relative;
  width: 80%;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: var(--black-1);
  border: 3px solid var(--black-1);
  padding: 5px 10px;
  border-radius: 5px;
  overflow: hidden;
}
.footer .content .column_1 .socialMediaContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0px;
  width: calc(80% + 20px);
}
.footer .content .column_1 .socialMediaContainer a {
  position: relative;
  width: auto;
  text-align: center;
  text-decoration: none;
  color: var(--black-1);
  border: 3px solid var(--black-1);
  padding: 5px 10px;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.5s;
}
.footer .content .column_1 .socialMediaContainer a:hover {
  color: var(--color-code);
  box-shadow: 0 0 8px 0px var(--color-code);
}
.footer .content .navContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60%;
}
.footer .content .navContainer .column_2, .footer .content .navContainer .column_3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  width: 50%;
  height: 400px;
}
.footer .content .navContainer .column_2 .content, .footer .content .navContainer .column_3 .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
}
.footer .content .navContainer .column_2 .content h6, .footer .content .navContainer .column_3 .content h6 {
  font-size: 30px;
  width: 50%;
  margin-top: 50px;
}
.footer .content .navContainer .column_2 .content .listItemContainer, .footer .content .navContainer .column_3 .content .listItemContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}
.footer .content .navContainer .column_2 .content .listItemContainer .navItem, .footer .content .navContainer .column_3 .content .listItemContainer .navItem {
  text-decoration: none;
  color: var(--black-4);
  margin-top: 20px;
}
.footer .content .navContainer .column_2 .content .listItemContainer .navItem:hover, .footer .content .navContainer .column_3 .content .listItemContainer .navItem:hover {
  color: var(--black);
}
.footer .copyRight {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 10px;
  color: var(--black);
  opacity: 0.9;
}
@media screen and (max-width: 990px) {
  .footer .content .navContainer .column_2 .content, .footer .content .navContainer .column_3 .content {
    width: 80%;
  }
}
@media screen and (max-width: 890px) {
  .footer .content {
    flex-direction: column;
  }
  .footer .content .column_1 {
    width: 80%;
    height: auto;
  }
  .footer .content .navContainer {
    width: 80%;
  }
  .footer .content .navContainer .column_2, .footer .content .navContainer .column_3 {
    width: 50%;
  }
}
@media screen and (max-width: 660px) {
  .footer .content .navContainer {
    flex-direction: column;
  }
  .footer .content .navContainer .column_2, .footer .content .navContainer .column_3 {
    width: 100%;
    height: auto;
  }
}

/*Footer End*//*# sourceMappingURL=aceCryptoClubIndex.css.map */