* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sen", sans-serif;
}
/*<!-- ==================== Fonts Section ===========================-->*/
.body-14-grey {
  font-size: 14px;
  color: grey;
}
.body-14-grey-italic {
  font-size: 14px;
  color: grey;
  font-style: italic;
}
.body-14-black {
  font-size: 14px;
  color: black;
}
.body-14-black-italic {
  font-size: 14px;
  color: black;
  font-style: italic;
}
.body-20-black {
  font-size: 20px;
  color: black;
}
.body-20-black-italic {
  font-size: 20px;
  color: black;
  font-style: italic;
}
.body-20-grey {
  font-size: 20px;
  color: grey;
}
.body-20-grey-normal{
  font-size: 20px;
  color: grey;
}
.body-20-grey-italic {
  font-size: 20px;
  color: grey;
  font-style: italic;
}
.body-22-black {
  font-size: 22px;
  color: black;
}
.body-22-black-italic {
  font-size: 22px;
  color: black;
  font-style: italic;
}
.body-22-grey {
  font-size: 22px;
  color: grey;
}
.body-22-grey-italic {
  font-size: 22px;
  color: grey;
  font-style: italic;
  text-align: center;
}
.body-22-grey-normal {
  font-size: 22px;
  color: grey;
  font-style: normal;
  text-align: center;
}
.h1-80-title-green {
  color: #7CBA42;
  font-size: 80px;
  text-decoration: underline;
}
/*<!-- ==================== Fonts Section end ===========================-->*/

.hero {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(12, 3, 51, 0.05), rgba(12, 3, 51, 0.05));
  position: relative;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo {
  width: 80px;
}

.custom-ml{
  margin-left: auto;
}

nav ul li {
  list-style: none;
  display: inline-block;
  margin-left: 40px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
}
.content {
  text-align: center;
  padding-top: 30%;
}
.content-about {
  text-align: center;
  padding-top: 70%;
}
.content-about h1{
  font-size: 80px;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px black;
  padding-bottom: 50px;
}
.about-hero-logo{
  background-image: url("../../img/about_hero_logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.content h1 {
  font-size: 80px;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px black;
  text-transform: uppercase;

}
h4 {
  text-transform: uppercase;
  font-weight: 600;
}
.content p {
  font-weight: 700;
  text-transform: uppercase;
}
h5 {
  font-family: "Sen", sans-serif;
  font-weight: 600;
}
.hero_logo {
  width: 300px;
}

.bg-video {
  position: absolute;
  width: 100%;

  /* right: 0; */
  bottom: 0;
  z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
  .bg-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .bg-video {
    width: auto;
    height: 100%;
  }
}

.scrolldown {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 40px;
  height: 40px;
  /* background: #fff; */
  transform: translateY(-80px) translateX(-50%) rotate(45deg);
}

.scrolldown span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  animation: animate 3s linear infinite;
  opacity: 0;
}

.scrolldown span:nth-child(1) {
  transform: translate(-15px, -15px);
  animation-delay: -0.4s;
}

.scrolldown span:nth-child(2) {
  transform: translate(0, 0);
  animation-delay: -0.2s;
}

.scrolldown span:nth-child(3) {
  transform: translate(15px, 15px);
  animation-delay: 0s;
}

@keyframes animate {
  0% {
    top: -5px;
    left: -5px;
    opacity: 0;
  }
  25% {
    top: 0px;
    left: 0px;
    opacity: 1;
  }
  50%,
  100% {
    top: -5px;
    left: -5px;
    opacity: 0;
  }
}
/*<!-- ==================== Carousel Section ===========================-->*/

.carousel-inner {
  box-shadow: 0 0.7rem 0.8rem rgba(0, 0, 0, 0.3);
}
/*<!-- ==================== Key Section ===========================-->*/

.container {
  max-width: 1400px !important;
}

.key-img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.key-h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  background-color: #fff;
  color: black;
  font-size: 40px;
  text-align: center;
}

.key-h2-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;

  font-weight: 600;
  color: #fff;
  font-size: 80px;
  text-align: center;
}

.key-title-text {
  font-size: 18px;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  background-color: rgba(47, 46, 50, 0.5);
}

.key-title-text-02 {
  font-size: 20px;
  font-style: normal;
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  color: rgb(138, 137, 137);
}

.key-section {
  background-color: black;
  color: #fff;
}

.key-section-02 {
  background-color: black;
  color: black;
  box-shadow: 0 0.7rem 0.8rem rgba(0, 0, 0, 0.3);
}

.key-title {
  padding: 10px;
  text-align: center;
  background-color: #fff;
  color: black;
}

.key-title-02 {
  padding: 10px;
  text-align: center;
  color: rgb(72, 71, 71);
}

.para-key {
  color: darkgrey;
}

.rectangle {
  display: block;
  width: 100%;
  height: 2rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 -0.7rem 0.8rem rgba(0, 0, 0, 0.3);
}

.Bottom-shadow-rectangle {
  display: block;
  width: 100%;
  height: 2rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0.7rem 0.8rem rgba(2, 1, 1, 0.3);
}

.Black-up-rectangle {
  display: block;
  width: 100%;
  height: 2rem;
  background-color: rgb(0, 0, 0);
  box-shadow: 0 -0.7rem 0.8rem rgba(0, 0, 0, 0.3);
}
/*<!-- ==================== Other Key Section ===========================-->*/
.container-ogs {
  max-width: 1400px !important;
}

.og_services {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  background-color: #fff;
  color: black;
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
}
.og_services-021 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  text-align: center;
}

.og_services-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  text-align: center;
}
.card {
  margin: auto;
  margin-top: 10px;
}

.og-title-text {
  color: #fff;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
  background-color: rgba(47, 46, 50, 0.318);
}

.og-title-text-02 {
  font-size: 20px;
  font-style: normal;
  color: #fff;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
  background-color: rgba(0, 0, 0, 0.318);
}
.og_services_vidbutton{
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.container-og-services {
  max-width: 80%;

  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5%;
  padding-bottom: 5%;
}

.og-black {
  background-color: black;
}

.c-black {
  background-color: black;
}

.card-text {
  color: grey;
}
.logo-brand-bn{
  width: 120px;
}
/*<!-- ==================== video Section ===========================-->*/
.video-padding{
  padding-top: 0;
}



/*<!-- ==================== Footer Section ===========================-->*/
.term-condition{
  font-size: smaller;
  padding-top: 20px;
  opacity: 0.9;
}
.footer-title{
  font-weight: 600;
  font-size: 25px;
}

/*<!-- ==================== Contact Section ===========================-->*/


/* The hero image */
.contact-hero {
/* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
background-image: /* linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), */ url("/img/Contact_Hero.jpg");

/* Set a specific height */
height: 100%;

/* Position and center the image to scale nicely on all screens */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}

/* Place text in the middle of the image */
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}


/*<!-- ==================== Media screen adaptation ===========================-->*/

@media (width <= 520px) {
  .content h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px black;
    text-transform: uppercase;
  }
  .key-h2-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    color: #fff;
    font-size: 50px;
    text-align: center;
  }
  .footer-title{
    font-weight: 600;
    font-size: 20px;
  }
  .content-about h1{
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px black;
    padding-bottom: 50px;
  }
  .og_services-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-transform: uppercase;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    padding-top: 100px;
  }
  .og_services-021 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-transform: uppercase;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    text-align: center;

  }
  .video-padding{
    padding-top: 150px;
  }
}