@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --theme-color: #2be1d3;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #000;
  overflow-x: hidden;
  height: 100%;
  font-family: "Roboto", sans-serif;
}

.df {
  display: flex;
}

.aic {
  align-items: center;
}
.ais {
  align-items: flex-start;
}
.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}
.jce {
  justify-content: flex-end;
}
.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap1 {
  gap: 1rem;
}

.gap2 {
  gap: 2rem;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1440px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

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

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  padding: 10px 0;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  padding: 0;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--white);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}

.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}

.main-slider h2 {
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
  font-size: 3.125rem;
  margin-bottom: 1.5rem;
}
.main-slider h2 span {
  font-weight: 500;
}
.main-slider p {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.32;
  margin-bottom: 1rem;
}
.main-slider .goDown {
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  left: 16rem;
  bottom: 5rem;
  z-index: 1;
  color: var(--white);
  transform: scale(-1);
  writing-mode: vertical-lr;
  text-transform: uppercase;
  line-height: 1;
}
.main-slider .goDown:hover {
  color: var(--theme-color);
}
.themeBtn {
  background: var(--theme-color);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  border-radius: 7px;
  padding: 1em 2em;
  display: inline-block;
  margin: 0.5rem 0;
}
.themeBtn:hover {
  background: var(--white);
  color: var(--theme-color);
}

.secHeading {
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

/* aboutSec */
.aboutSec {
  background: url(../images/about-bg.jpg) center/cover no-repeat;
  padding: 10rem 0;
  margin: 0 auto;
  width: 75%;
}
.aboutSec::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-image: -moz-linear-gradient(
    180deg,
    rgb(33, 30, 37) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: -webkit-linear-gradient(
    180deg,
    rgb(33, 30, 37) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background-image: -ms-linear-gradient(
    180deg,
    rgb(33, 30, 37) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.902;
}
.aboutSec .aboutImg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.aboutSec .secHeading {
  color: var(--white);
}

.aboutSec p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  line-height: 2;
}
.aboutSec .themeBtn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--theme-color);
}
.aboutSec .themeBtn:hover {
  background: var(--white);
  color: var(--theme-color);
}

/* reals-section */
.reals-section {
  background: var(--white);
}
.reals-section .topWrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.reals-section .topWrap .form-group {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  border: 2px solid #e1e1e1;
  background: #f6f6f6;
  height: 64px;
  width: 100%;
  /* max-width: 630px; */
  position: relative;
  flex: 1.75;
  border-radius: 50px;
}
.topWrap .form-group input {
  height: 100%;
  width: 100%;
  border: 0;
  padding-left: 1.5rem;
  color: #9d9d9d;
  font-size: 1.125rem;
  border-radius: 50px;
  outline-color: var(--theme-color);
  background: transparent;
}
.topWrap .form-group button {
  height: 100%;
  width: 64px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-size: 1.25rem;
  border-radius: 50%;
  outline: none;
  border: 1px solid var(--theme-color);
  background: var(--theme-color);
}
.topWrap .form-group button:hover {
  background: var(--white);
  color: var(--theme-color);
}
.topWrap .btn-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
}
.uploadBtn {
  padding: 0.25em 1em;
  display: table;
  font-size: 1.125rem;
  margin: 0;
  border: 1px solid rgb(215, 215, 215);
  border-radius: 5px;
  color: var(--black);
  cursor: pointer;
  background: var(--white);
  transition: 0.3s ease-in-out;
}
.uploadBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}
.uploadBtn input[type="file"] {
  display: none;
}

.topWrap .themeBtn {
  border: 1px solid var(--theme-color);
  padding: 0.3em 2em;
  font-size: 1.125rem;
  margin: 0;
  text-transform: capitalize;
}

.topWrap .menuBtn {
  color: var(--black);
  font-size: 1.75rem;
}
.topWrap .menuBtn:hover {
  color: var(--theme-color);
}
.reals-section h3 {
  color: var(--theme-color);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.followingBtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.followingBtn i {
  font-size: 1.75rem;
}

.right-side p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #aeaeae;
  line-height: 1.368;
}
.right-side .themeBtn {
  width: 100%;
  padding: 0.5em;
  text-align: center;
  border-radius: 50px;
  background: transparent;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
}
.right-side .themeBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}

.suggest-accounts {
  margin: 1rem 0 0;
  padding: 1rem 0;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}
.discover-tags > p,
.suggest-accounts > p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #50525d;
  margin-bottom: 1rem;
}

.suggest-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.suggest-user p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #50525d;
  line-height: 1.25;
  margin: 0;
}
.suggest-user p span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #949494;
}
.suggest-user p span i {
  color: #feb124;
}
.suggest-accounts .seeAll {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--theme-color);
}

.discover-tags {
  padding: 1rem 0;
  border-bottom: 1px solid #d7d7d7;
}

.discover-tags .tags {
  display: inline-block;
  font-size: 14px;
  color: #949494;
  line-height: 1;
  border-radius: 50px;
  padding: 5px;
  margin: 0px 3px 8px;
  border: 1px solid #cccccc;
}
.discover-tags .tags::first-letter {
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
}

.userInfo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.userInfo .content h3 {
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 5px;
}
.userInfo .content h3 span {
  color: #6f6f6f;
  font-size: 1.125rem;
  font-weight: 400;
}
.userInfo .content h4 {
  font-size: 1.125rem;
  font-weight: 400;
  color: #3f2e10;
  margin: 0;
}
.userInfo .content h4 span {
  font-size: 15px;
  display: inline-block;
  border-radius: 3px;
  background-color: #f1f1f1;
  color: var(--black);
  font-weight: 500;
  padding: 3px 5px;
}

.userInfo .content p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #3f2e10;
  line-height: 1;
  margin: 0;
}

.user-card .contentWrap {
  display: flex;
  gap: 1rem;
}
.videoWrap {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.videoWrap .playbtn {
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--white);
  font-size: 2rem;
  transform: translate(-50%, -50%);
}
.user-card .themeBtn {
  border: 1px solid var(--theme-color);
  padding: 0.3em 2em;
  font-size: 1.125rem;
  margin: 0;
  background: transparent;
  color: var(--theme-color);
  text-transform: capitalize;
}
.user-card .themeBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}

.videoSlider .slick-next::before,
.videoSlider .slick-prev::before {
  display: none;
}
.videoSlider .slick-next,
.videoSlider .slick-prev {
  color: #6f6f6f;
  font-size: 1.5rem;
  z-index: 1;
}

.sharingList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.sharingList li:nth-child(1) {
  margin-bottom: auto;
}
.sharingOpt i {
  border-radius: 50%;
  background-color: #f1f1f2;
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  color: #50525d;
  font-size: 1.5rem;
  margin: 0 auto 5px;
  transition: 0.3s ease-in-out;
}
.sharingOpt {
  font-size: 14px;
  color: #50525d;
  text-align: center;
  width: 4rem;
  font-weight: 500;
  display: inline-block;
}
.sharingOpt:hover {
  color: var(--theme-color);
}
.sharingOpt:hover i {
  background: var(--theme-color);
  color: var(--white);
}

/* makingIndSec */
.makingIndSec {
  padding: 0;
  overflow-x: hidden;
  background: url(../images/making-ind-bg.jpg) center/cover no-repeat;
}

.makingIndSec .individualTxt {
  font-size: 18.75rem;
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  text-align: left;
  position: absolute;
  left: -5rem;
  top: 12rem;
  transform: rotate(-14deg);
  white-space: nowrap;
  text-shadow: -10px -10px 0px #2be1d3;
}

/* serviceSection */
.serviceSection {
  background: url(../images/service-bg.jpg) top center/cover no-repeat;
}
.serviceSection .row + .row {
  margin-top: 5rem;
}
.serviceSection .secHeading {
  color: var(--white);
  font-size: 4rem;
  font-weight: 400;
  text-transform: capitalize;
}
.serviceSection h3.secHeading {
  font-size: 9.175rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.193;
  margin-bottom: 0;
  text-transform: unset;
}

.serviceSection p {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
}
.service-card {
  overflow: hidden;
}
.service-card figure {
  overflow: hidden;
}
.service-card figure img {
  transition: transform 0.35s ease-out;
}
.service-card:hover figure img {
  transform: rotate(-1deg) scale3d(1.05, 1.05, 1);
}
.service-content {
  background-color: #21222b;
  padding: 3rem 2rem;
  width: 450px;
  position: relative;
  z-index: 1;
  margin-top: -8rem;
  margin-left: auto;
}
.service-content p {
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  position: relative;
  margin-bottom: 0;
}

.service-content h3 {
  font-size: 1.625rem;
  font-weight: 400;
  color: #a6a6a6;
  line-height: 1;
  margin: 1rem 0;
  position: relative;
}
.service-content .text-reveal {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform-origin: right;
  /* transition: 0.5s ease-in-out; */
  background-color: var(--theme-color);
}
.service-content a {
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  color: var(--theme-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  line-height: 1;
}
.service-content a span {
  border-bottom: 3px solid var(--theme-color);
}
.service-content a i {
  color: var(--white);
  transition: 0.3s ease-in-out;
  font-size: 1.375rem;
}
.service-content a:hover i {
  transform: translateX(10px);
}

.viewAllBtn {
  display: inline-block;
  color: var(--white);
  font-size: 3.125rem;
}
.viewAllBtn:hover {
  color: var(--theme-color);
}
.serviceSection .absImg1 {
  position: absolute;
  top: 0;
  right: 0;
}
.serviceSection .absImg2 {
  position: absolute;
  right: 0;
  bottom: 15%;
}

/* Footer Css */
footer {
  padding-top: 10rem;
  background: url(../images/footerBg.jpg) top center/cover no-repeat;
}
footer h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.75rem;
}
footer .form-group {
  display: flex;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid var(--white);
  align-items: center;
}
footer .form-group input {
  border: 0;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  background: transparent;
}
footer .form-group button {
  border: 0;
  color: var(--white);
  height: 50px;
  width: 50px;
  font-size: 1.25rem;
  outline: none;
  background: transparent;
  display: inline-grid;
  place-items: center;
}
footer .form-group button:hover {
  color: var(--theme-color);
}
footer .links li a {
  font-size: 0.9325rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

footer .links li a:hover {
  color: var(--theme-color);
}

footer .cntctInfo li a {
  font-size: 0.9325rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: inline-block;
  margin-bottom: 1.5rem;
}
footer .appsBtn {
  border-radius: 20px;
  display: inline-block;
  padding: 1em 1.25rem;
  margin-bottom: 0.5rem;
  background-color: var(--white);
}
.copyRight {
  margin-top: 3rem;
  padding: 1.5rem 0;
  align-items: center;
  border-top: 1px solid #d7d7d7;
}
.copyRight p {
  color: var(--white);
  font-size: 1.125rem;
  margin: 0;
}

/* Begin: Social Media */

.socialIo {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 0 10px;
}

.socialIo li a {
  width: 3.75rem;
  height: 3.75rem;
  display: block;
  background: #f8f8f8;
  border-radius: 100px;
  font-size: 1.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -1rem;
}
.socialIo li .fb {
  background: #4b69b0;
}
.socialIo li .snap {
  background: #ffe100;
}

.socialIo li .insta {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.socialIo li .utube {
  background: #e83f3a;
}
.socialIo li .twitr {
  background: #37b1e1;
}
.socialIo li .wapp {
  background: #2ba63a;
}
.socialIo li .pinterest {
  background: #e83f3a;
}
.socialIo li .linkedin {
  background: #0678b6;
}
.socialIo li a:hover {
  transform: scale(1.5);
}

/* END: Social Media */
.split-parent {
  overflow: hidden;
}
.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}

/* Inner Pages Css Start */

.aboutInner {
  background: url(../images/abtBg.jpg) center/cover no-repeat;
  padding: 3rem 0 5rem 0;
}

.innerBanner h2 {
  font-weight: 500;
}

.aboutInner h6,
.aboutInner p,
.aboutInner h2 {
  color: var(--white);
}

.mainHead {
  font-size: 6.25rem;
  font-weight: 400;
  color: var(--white);
}

.subHeading {
  font-size: 2.5rem;
  margin: 1rem 0 1rem 0;
  font-weight: 400;
}

.aboutInner p {
  font-size: 1.25rem;
  padding-bottom: 10px;
}

.realsContent h2 {
  text-transform: none;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.btnStyle {
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  color: var(--theme-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  line-height: 1;
}

.btnStyle span {
  border-bottom: 3px solid var(--theme-color);
}

.btnStyle i {
  color: var(--white);
  transition: 0.3s ease-in-out;
  font-size: 1.375rem;
}

.btnStyle:hover i {
  transform: translateX(10px);
}

.realsBoxs {
  margin: 4rem 0 5rem 0;
}

.realsContent {
  padding-left: 2rem;
}

.serviceSection {
  background: url(../images/srvBg.jpg) top center/cover no-repeat;
}

.srvInner h6 {
  color: var(--white);
  margin: 3rem 0 1.2rem 0;
}

.srvInner p {
  padding-bottom: 1rem;
}

.srvInner h2 {
  font-size: 6.25rem !important;
  text-transform: none !important;
}

.srvInner .absImg1 {
  top: 18rem;
  z-index: -1;
  width: 28%;
}

.contactInner {
  background: url(../images/contactBg.jpg) center/cover no-repeat;
}

.contactForm .form-group label {
  font-size: 1.5625rem;
  color: var(--white);
  margin: 0;
}

.contactForm .form-group input {
  height: 55px;
  border-radius: unset;
  background-color: #5b5e5e;
  border: unset;
}

.contactForm .form-group textarea {
  border-radius: unset;
  background-color: #5b5e5e;
  border: unset;
}

.contactForm .themeBtn {
  font-size: 1.5rem;
  text-transform: uppercase;
  border-radius: unset;
  padding: 0.875rem 5em;
}

.contactInner .socialIo {
  justify-content: center;
}

.contactInner .socialIo li a {
  width: 11.25rem;
  height: 11.25rem;
  font-size: 6rem;
}

.contactInner h4 {
  font-size: 3.5625rem;
  color: var(--white);
  text-align: center;
  font-weight: 400;
  margin: 4rem 0 2rem 0;
}

.contactInfo a {
  display: grid;
  text-align: center;
  color: var(--white);
  gap: 1rem;
}

.contactInfo a i {
  font-size: 3rem;
}

.contactInfo a span {
  font-size: 1.5625rem;
  font-weight: 400;
}

.contctInformation {
  margin-top: 6rem;
}
/* Inner Pages Css End */
