* {
  font-family: poppins;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #0f0f0f !important;
}

.rnContainer {
  z-index: 5;
  position: fixed;
  bottom: 100px;
}

.fbContainer,
.igContainer,
.ttContainer {

  color: #fff;
  cursor: pointer;
  width: 60px;
  height: 60px
}

.fbContainer,
.ttContainer {
  background-color: rgb(24, 24, 24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.igContainer {
  background-color: rgb(180, 180, 180);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.fbContainer:hover {
  background-color: rgb(48, 108, 185);
  transition: all ease-in-out .5s;
}

.igContainer:hover {
  background-color: rgb(221, 74, 111);
  transition: all ease-in-out .5s;
}

.ttContainer:hover {
  background-color: rgb(0, 0, 0);
  transition: all ease-in-out .5s;
}

.navigationContainer {
  width: 100%;
  height: 80px;
}

.navigationSubContainer {
  width: 60%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.companyLogo {
  width: 80px;
}

.linkContainer {
  display: flex;
  align-items: center;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0 !important;
}

li {
  display: inline;
  margin: 0 30px 0 0;
}

li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: 0.3s all ease;
}

li a:hover {
  text-decoration: none;
  color: #c9c9c9;
  font-size: 15px;
}

.aboutBanner {
  margin: 80px 0px;
  height: 40vh;

  background-image: url(../img/custom1.png);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.aboutBannerContainer {
  width: 50%;
  margin: auto;

  display: flex;
  align-items: center;
}

.aboutBannerContainer .left {
  width: 35%;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
}

.line {
  content: "";
  height: 5px;
  background-color: rgb(172, 20, 20);
  width: 50px;
  margin: 50px 0 0 0;
}

.aboutBannerContainer .right {
  width: 65%;
  font-size: 15px;
  color: #adadad;
}

.ownerContainer {
  background-color: #0f0f0f;
  background-image: url(../img/custom3.png);
  background-position: bottom left;
  background-size: 45vw auto;
  background-repeat: no-repeat;
}

.ownerDiv {
  width: 70%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ownerDiv .left {
  width: 50%;
  z-index: 1;
}

.ownerDiv .right {
  width: 50%;
}

.bossImage {
  width: 550px;
}

.right .p1 {
  color: #790f0f;
  line-height: 5px;
}

.right h1 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  font-size: 35px;
}

.right .p2 {
  color: #dbdbdb;
  line-height: 30px;
  font-size: 15px;

  margin-bottom: 80px;
}

.titleBox {
  background-color: #0f0f0f;
  height: 40vh;
  text-align: center;
  line-height: 10px;
  padding-top: 100px;
}

.titleBox .p1 {
  color: #790f0f;
}

.titleBox h1 {
  font-weight: 600;
  color: #fff;
}

.titleBox .p2 {
  color: #777777;
  font-size: 15px;
  width: 30%;
  margin: auto;
  line-height: 20px;
}

.ourStoryContainer {
  width: 100%;
  margin: 50px 0px;

  background-image: url(../img/custom1.png);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

.ourStorySubcontainer {
  width: 60%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ourStorySubcontainer .left {
  width: 30%;
}

.ourStorySubcontainer .left h1 {
  font-weight: 600;
  color: #fff;
}

.ourStorySubcontainer .right {
  width: 70%;
}

.ourStorySubcontainer .right p {
  width: 90%;
  color: #adadad;
  font-size: 15px;
  line-height: 30px;
}

.experts {
  width: 60%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 130px;
}

.perExpert {
  padding: 1px;
  text-align: center;
}

.perExpert h1 {
  color: #fff;
  font-size: 18px;
}

.expertImg {
  width: 280px;
  margin-bottom: 20px;
  filter: brightness(70%);
  transition: .3s all ease;
}

.expertImg:hover {
  filter: brightness(100%);
}

.videoBannerContainer {
  width: 100%;
  height: 50vh;
  /* Adjust as needed */
  overflow: hidden;
  position: relative;
}

.videoBannerContainer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers the container */
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(50%);
}

.textOverlay {
  padding: 50px;
  position: absolute;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50vh;
}

.textOverlay h1 {
  color: #fff;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 30px;
}

.textOverlay p {
  color: #adadad;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 30px;
}

.textOverlay a {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 20px;
  font-size: 15px;
  transition: .3s all ease;
  width: 30%;
  text-align: center;
  text-decoration: none;
}

.textOverlay a:hover {
  color: #790f0f;
  border: 1px solid #790f0f;
  padding: 10px 20px;
  font-size: 15px;
  text-decoration: none;
}

.footerMainDiv {
  padding: 100px 0 100px 0;
}

.footerContainer {
  width: 80%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.f1 {
  width: 300px;
  color: #adadad;
  font-size: 15px;
  margin: 5px;

  height: 200px;
}

.f1 img {
  width: 80px;
}

.f2 {
  width: 300px;
  margin: 5px;

  display: flex;
  flex-direction: column;
  height: 200px;
}

.f2 h1 {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
}

.f2 p {
  font-size: 15px;
  color: #adadad;
}

.f2 a {
  text-decoration: none;
  margin-bottom: 10px;
  color: #adadad;
}

.f2 a:hover {
  text-decoration: none;
  margin-bottom: 10px;
  color: #790f0f;
}

.socmedContainer {
  display: flex;
  align-items: center;
}

.socmedFb,
.socmedInsta,
.socmedTiktok,
.socmedYt {
  margin: 2px;
  border: 1px solid #adadad;
  padding: 8px 12px;


  transition: .3s all ease;
}

.socmedContainer i {
  color: #fff;
}

.socmedFb:hover {
  background-color: #307ae9;
}

.socmedInsta:hover {
  background-color: #bd1756;
}

.socmedTiktok:hover {
  background-color: #000000;
}

.socmedYt:hover {
  background-color: #850d0d;
}

.footerSub {
  padding: 10px;
  text-align: right;
  border-top: 1px solid #1a1a1a;
  font-size: 13px;
  color: #777777;
}

.mvContainer {
  background-image: url(../img/comment.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 20px;
}

.mvContainer .centerContainer {
  width: 80%;
  background-color: #1a1a1a;
  margin: auto;
}

.taglineContainer{
  text-align: center;
}

@media only screen and (max-width: 600px) {

  body {
    overflow-x: hidden;
  }

  .navigationSubContainer {
    display: none;
  }

  .aboutBanner {

    background-image: url(../img/custom1.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
  }

  .aboutBannerContainer {
    width: 90%;
    margin: auto;

    display: flex;
    flex-direction: column;
  }

  .aboutBannerContainer .left {
    width: 90%;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
  }

  .line {
    content: "";
    height: 5px;
    background-color: rgb(172, 20, 20);
    width: 50px;
    margin: 20px 0 20px 0;
  }

  .aboutBannerContainer .right {
    width: 90%;
    font-size: 15px;
    color: #adadad;
  }

  .titleBox {
    background-color: #0f0f0f;
    text-align: center;
    line-height: 10px;
  }

  .titleBox .p1 {
    color: #790f0f;
    font-size: 13px;
  }

  .titleBox h1 {
    font-weight: 600;
    font-size: 25px;
    color: #fff;
  }

  .titleBox .p2 {
    color: #777777;
    font-size: 13px;
    width: 90%;
    margin: auto;
    line-height: 20px;
  }

  .rnContainer {
    display: none;
  }

  .ownerContainer {
    background-color: #0f0f0f;
    background-image: url(../img/custom3.png);
    background-position: bottom left;
    background-size: 45vw auto;
    background-repeat: no-repeat;
  }

  .ownerDiv {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .ownerDiv .left {
    width: 100%;
    z-index: 1;
  }

  .ownerDiv .right {
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .bossImage {
    width: 350px;
  }

  .right .p1 {
    color: #790f0f;
    line-height: 5px;
    font-size: 13px;
  }

  .right h1 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    font-size: 25px;
  }

  .right .p2 {
    color: #dbdbdb;
    line-height: 30px;
    font-size: 13px;

    margin-bottom: 80px;
  }

  .ourStoryContainer {
    width: 100%;
    margin: 0px;

    background-image: url(../img/custom1.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .ourStorySubcontainer {
    flex-direction: column;
  }

  .ourStorySubcontainer .left {
    width: 100%;
  }

  .ourStorySubcontainer .right {
    width: 100%;
    text-align: center;
  }

  .ourStorySubcontainer {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .ourStorySubcontainer .right p {
    width: 100%;
    color: #adadad;
    font-size: 13px;
    line-height: 30px;
  }















  .videoBannerContainer {
    width: 100%;
    height: 50vh;
    /* Adjust as needed */
    overflow: hidden;
    position: relative;
    text-align: center;
  }

  .textOverlay {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    padding: 20px 10px;
  }

  .textOverlay h1 {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 30px;
  }

  .textOverlay p {
    color: #adadad;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .textOverlay a {
    color: #fff;
    border: 1px solid #fff;
    font-size: 15px;
    transition: .3s all ease;
    width: 100%;
    text-align: center;
  }

  .footerContainer {
    width: 80%;
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .f1 {
    width: 300px;
    color: #adadad;
    font-size: 15px;
    margin: 5px;

    height: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .f2 {
    width: 300px;
    margin: 5px;

    display: flex;
    flex-direction: column;
    height: 200px;
    text-align: center;
    justify-content: center;
  }

  .socmedContainer {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footerSub {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    font-size: 13px;
    color: #777777;
  }
}