@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --color-primary: #18181a;
  --color-secondary: #75757c;
  --color-dark: #364c62;
  --color-light: #f5f5f5;
}

body {
  font-family: "Raleway", sans-serif;
  position: relative;
  color: #000000;
  background-position: center;
  background-image: url(../img/bg-img.jpg);
  background-repeat: no-repeat;
  /* height: 100vh; */
  width: 100%;
  overflow: hidden;
  overflow-x: hidden;
}

main {
  display: flex;
  overflow: hidden;
  height: calc(100vh - 225px);
  align-items: center;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: #eca62e;
}

.f_700 {
  font-weight: 700;
}

.f_600 {
  font-weight: 600;
}

.f_500 {
  font-weight: 500;
}

p {
  text-align: justify;
}

/* Icon 1 

#nav-icon1 {
  width: 60px;
  height: 45px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  text-align: right;
  float: right;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #000000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 18px;
}

#nav-icon1 span:nth-child(3) {
  top: 36px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
*/

header nav {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 9;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  /* top: 170px; */
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}
header nav ul li {
  transform: translateY(50px);
  opacity: 0;
}
header nav ul li a {
  display: block;
  font-size: 2em;
  text-decoration: none;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
header nav ul li a:hover {
  color: #eca62e;
}

.toggle-btn {
  display: block;
  position: fixed;
  z-index: 10;
  right: 50px;
  top: 20px;
  cursor: pointer;
}
.toggle-btn .bar {
  width: 30px;
  height: 2px;
  margin: 7px auto;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3); */
}
/* .toggle-btn .bar:nth-child(2) {
  width: 20px;
} */

#toggle:checked ~ nav {
  opacity: 1;
  visibility: visible;
}
/* #toggle:checked ~ nav ul {
  top: 70px;
} */
#toggle:checked ~ nav ul li {
  transform: translateY(0px);
  opacity: 1;
}
#toggle:checked ~ nav ul li:nth-child(1) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
}
#toggle:checked ~ nav ul li:nth-child(2) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
}
#toggle:checked ~ nav ul li:nth-child(3) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
}
#toggle:checked ~ nav ul li:nth-child(4) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
}
#toggle:checked ~ nav ul li:nth-child(5) {
  transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.5s;
}
#toggle:checked + label.toggle-btn .bar {
  background-color: #eca62e;
}
#toggle:checked + label.toggle-btn .bar:nth-child(2) {
  transform: translateX(50px);
  opacity: 0;
}
#toggle:checked + label.toggle-btn .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#toggle:checked + label.toggle-btn .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  padding: 0 50px;
}

.person-img {
  position: absolute;
  right: 25%;
  top: 5%;
  width: 15%;
  z-index: 0;
}

.vector-img {
  position: absolute;
  right: 32%;
  bottom: 0;
  width: 14%;
  z-index: 0;
}

.logo img {
  width: 160px;
  /* margin-top: 20px;
  margin-left: 20px; */
}

.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(71, 255, 171, 1) 0%,
    rgba(71, 249, 255, 1) 100%
  );
  clip-path: circle(25px at calc(100% - 45px) 45px);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
#active:checked ~ .wrapper {
  clip-path: circle(75%);
}
.menu-btn {
  position: absolute;
  z-index: 2;
  right: 15px;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}
#active:checked ~ .menu-btn {
  background: #fff;
  color: #eca62e;
}
#active:checked ~ .menu-btn i:before {
  content: "\f00d";
}
.wrapper ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.wrapper ul li {
  margin: 15px 0;
}
.wrapper ul li a {
  color: none;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
  padding: 5px 30px;
  color: #fff;
  position: relative;
  line-height: 50px;
  transition: all 0.3s ease;
}
.wrapper ul li a:after {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 50px;
  left: 0;
  border-radius: 50px;
  transform: scaleY(0);
  z-index: -1;
  transition: transform 0.3s ease;
}
.wrapper ul li a:hover:after {
  transform: scaleY(1);
}
.wrapper ul li a:hover {
  color: #eca62e;
}
input[type="checkbox"] {
  display: none;
}

#videoWrapper {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#videoWrapper video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -100;

  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#videoWrapper .caption {
  display: block;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: rgb(71 250 255 / 31%);
}

#videoWrapper .caption .contents {
  width: 50%;
  color: #fff;
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.8);
}

.home-main {
  height: calc(100vh - 95px);
  /* margin-top: 30px; */
}

.inner-page {
  overflow: auto;
  /* height: auto; */
  overflow-x: hidden;
  height: 100vh;
}

.inner-page .logo {
  position: relative;
  left: 50px;
  top: 15px;
}

.inner-page main {
  height: auto;
}

.fire-sec {
  height: auto;
}

.fire-sec section {
  height: 100vh;
}

.fire-sec .container-fluid {
  height: 100%;
  padding: 0;
  padding-left: 50px;
}

.fire-sec .row {
  height: 100%;
}

.fire-img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.logo {
  position: absolute;
  left: 50px;
  top: 15px;
}

header {
  position: absolute;
  right: 15px;
  top: 15px;
}

/* .bg-color::after {
  content: "";
  position: absolute;
  top: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(71, 247, 253, 1) 100%
  );
} */

.img-gradient {
  position: relative;
}

.img-gradient::before {
  content: "";
  position: absolute;
  right: 1px;
  top: 0;
  width: 87%;
  height: 13%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    9deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(71, 249, 255, 1) 100%
  );
  /* opacity: 0.5; */
  z-index: 0;
}

.img-gradient::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 0;
  width: 97%;
  height: 13%;
  background: rgb(71, 249, 255);
  background: linear-gradient(
    9deg,
    rgba(71, 249, 255, 1) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  /* opacity: 0.5; */
  z-index: 0;
}

.home-body .logo {
  position: relative;
}

.media-body {
  margin-left: 20px;
}

/* .contact-div {
  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
  padding: 50px;
  border-radius: 10px;
  background-color: #ffffff;
} */

.contact-div svg {
  color: #eca62e;
}

@media (max-width: 1440px) {
  .vector-img {
    width: 12%;
  }
  .h2,
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .person-img {
    width: 20%;
  }
  .vector-img {
    width: 15%;
  }
}

@media (max-width: 768px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding: 0 15px;
  }
  .vector-img {
    position: absolute;
    right: 19%;
    width: 25%;
  }
  .person-img {
    right: 17%;
    top: 14%;
    width: 30%;
  }
  .fire-sec .container-fluid {
    padding-left: 25px;
  }
  .logo {
    left: 15px;
  }
}

@media (max-width: 567px) {
  body,
  .inner-page {
    overflow: auto;
    height: auto;
    overflow-x: hidden;
  }
  .wrapper ul {
    padding: 0;
    margin: 0;
  }
  .person-img {
    right: 20px;
    top: auto;
    width: 125px;
    bottom: -133px;
  }
  .home-main,
  main {
    height: auto;
    margin-top: 30px;
    display: block;
  }
  .logo img {
    width: 120px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 18px;
  }
  p {
    text-align: justify;
    font-size: 14px;
  }
  .vector-img {
    display: none;
  }
  .fire-sec .container-fluid {
    padding: 0 15px;
  }
  .fire-img {
    display: none;
  }
  .h2,
  h2 {
    font-size: 20px;
  }
  .toggle-btn .bar {
    width: 25px;
  }
  .logo {
    position: relative;
    left: 15px;
  }
  .fire-sec {
    margin-top: 0;
  }
  .fire-sec .container-fluid {
    height: auto;
  }
  .fire-sec .row {
    height: auto;
  }
  .firebird {
    width: 220px;
  }
  .toggle-btn {
    right: 15px;
  }
  .contact-div {
    /* padding: 20px; */
    margin-top: 50px;
  }
  .inner-page .logo {
    left: 15px;
  }
}
