* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

@font-face {
  src: url(../../font/deadstock.ttf);
  font-family: deadstock;
}
::placeholder {
  color: var(--lt-grey);
}

html {
  scroll-behavior: smooth;
}

:root {
  --mons: "Montserrat", sans-serif;
  --oswold: "Oswald", sans-serif;
  --deadstock: deadstock;
  --lt-blue: rgba(196, 238, 236, 1);
  --lt-grey: #737576;
  --deep-grey: rgba(25, 29, 32, 1);
  --white: #fff;
  --black: #000;
}

.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0px auto;
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0px auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.flex {
  display: flex;
}

.image-fluid {
  width: 100%;
}

/* header portion *************************************************/

header {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 50;
  padding: 24px 0 26px 0;
  overflow: visible !important;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.navbar > div:first-child {
  display: flex;
  align-items: center;
  z-index: 100;
}
.mobile-menu {
  color: var(--white);
  font-size: 40px;
  margin-right: 20px;
}

.nav-container {
  display: flex;
  align-items: center;
}

.navbar .nav > li {
  padding: 0px 25px;
  display: inline-block;
  position: relative;
}

.navbar .nav > li > a > p {
  color: var(--white);
  text-decoration: none;
  font-family: var(--oswold);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative;
  transition: 300ms ease-in-out;
  display: inline-block;
}

.navbar .nav > li > a > i {
  color: var(--white);
  margin-left: 10px;
}

.navbar .nav > li > a > p::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--lt-blue);
  position: absolute;
  top: -2px;
  transition: all 300ms ease-in-out;
}

.navbar .nav > li > a:hover p::before {
  width: 100%;
}

.navbar .nav > li > a:hover i {
  transform: rotate(180deg);
}

.drop-nav {
  list-style: none;
  background-color: var(--deep-grey);
  position: absolute;
  left: 24px;
  top: 58px;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms ease-in;
  transform: translateY(24px);
  padding: 10px 20px;
  width: 150px;
  z-index: 12;
}

.drop-nav > li {
  border-bottom: 2px solid var(--white);
}
.drop-nav > li > a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 0px;
  display: block;
  transition: all 300ms ease-in-out;
}
.drop-nav > li > a:hover {
  color: var(--lt-blue);
  border-bottom-color: var(--lt-blue);
  transform: translateX(10px);
}

.drop-nav > li:last-child {
  border-bottom: none;
}

.navbar .nav > li:nth-child(3):hover .drop-nav,
.navbar .nav > li:nth-child(4):hover .drop-nav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

/* mobile menu  ***********************/
.button_container {
  position: relative;
  right: 0;
  top: 0;
  height: 27px;
  width: 25px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .top {
  transform: translateY(9px) translateX(0) rotate(45deg);
  background: #fff;
}
.button_container.active .middle {
  opacity: 0;
  background: #fff;
}
.button_container.active .bottom {
  transform: translateY(-9px) translateX(0) rotate(-45deg);
  background: #fff;
}
.button_container span {
  background: var(--white);
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 9px;
}
.button_container span:nth-of-type(3) {
  top: 18px;
}

.overlay {
  position: fixed;
  background: #1abc9c;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
}
.overlay.open {
  opacity: 0.9;
  visibility: visible;
  height: 100vh;
}
.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-family: var(--mons);
  font-weight: 400;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 6);
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
#header {
  transition: 0.5s all;
}
.nav-change {
  padding-top: 17px;
  padding-bottom: 17px;
  background-color: #ffffff !important;
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.nav-change .button_container span {
  background: #000;
}
.nav-change img {
  filter: invert(1);
  z-index: 100;
}
.nav-change ul li a p {
  color: #000 !important;
}

.nav-change ul li a i {
  color: #000 !important;
}

/* search button  ************************/

/* header end here ********************************************************/

/* banner start here **************************************/

.banner {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bnr-text {
  position: relative;
  text-align: center;
}
.bnr-text > p {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0px auto;
  font-family: var(--deadstock);
  font-size: 200px;
  font-weight: 700;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 16px;
}
.bnr-txt-area {
  padding-top: 130px;
}
.bnr-txt-area > p:nth-child(1),
.bnr-txt-area > p:nth-child(2) {
  color: var(--white);
  font-family: var(--oswold);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 114px;
}

.bnr-txt-area > p:nth-child(2) {
  padding-left: 40px;
  margin-bottom: 30px;
}

.bnr-txt-area > a:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bnr-txt-area > a:nth-child(3) > i,
.bnr-txt-area > a:nth-child(3) > p {
  margin-right: 10px;
  color: var(--white);

  font-size: 20px;
}

/* banner end here ******************************************/

/* explore start ********************************************/

.explore {
  background-image: url(../../img/bg-home-1.png);
  background-position: center right;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 70px;
}

.explore-text {
  flex-basis: 40%;
}
.explore-text > p:nth-child(1) > span {
  display: block;
  font-family: var(--oswold);
  font-size: 36px;
  color: var(--deep-grey);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.11111;
}

.explore-text > p:nth-child(2),
.explore-text > p:nth-child(3) {
  margin-top: 50px;
  font-size: 16px;
  color: var(--lt-grey);
  line-height: 1.625;
  font-weight: 200;
}
.explore-img {
  flex-basis: 60%;
}

.explore-text > a {
  margin-top: 50px;
  font-size: 16px;
  color: var(--lt-grey);
  line-height: 1.625;
  font-weight: 200;
  padding: 10px 25px;
  border: 2px solid var(--lt-blue);
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  z-index: 10;
  overflow: hidden;
  background-color: transparent;
}
.explore-text > a:hover {
  background-color: var(--lt-blue);
  color: #000;
}

.explore-img {
  position: relative;
  padding-left: 60px;
}

.explore-img:hover div:nth-child(1) > img {
  transform: translateY(50px);
}

.explore-img:hover div:nth-child(2) > img {
  top: 0;
  right: 0;
}

.explore-img > div:nth-child(1) > img {
  transition: 300ms ease-in-out;
}

.explore-img > div:nth-child(2) > img {
  position: absolute;
  right: 89px;
  top: 57px;
  transition: 300ms ease-in-out;
}

/* explore end **********************************/

/* story start **********************************/

.story {
  background-image: url(../../img/bg-home-2.png);
  background-position: center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.story-left {
  flex-basis: 30%;
  position: relative;
}

.story-left > a {
  position: relative;
  bottom: -343px;
  z-index: 1;
  display: inline-block;
}

.story-left > a > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--white);
  font-size: 50px;
}

.story-right {
  flex-basis: 70%;
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
}

.story-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -95px;
  height: 100%;
  width: 3000px;
  background-color: var(--lt-blue);
}

.story-right-txtarea {
  margin-left: 30px;
  position: relative;
  padding-left: 85px;
  border-left: 4px solid var(--deep-grey);
}

.story-right-txtarea > p:first-child {
  font-family: var(--oswold);
  line-height: 1.54;
  font-weight: 400;
  font-size: 26px;
  color: var(--deep-grey);
  margin-bottom: 20px;
  position: relative;
}

.story-right-txtarea > p:first-child::before {
  content: '"';
  font-family: var(--oswold);
  font-size: 36px;
  font-weight: 700;
  position: absolute;
  top: -5px;
  left: -30px;
}

.story-right-txtarea > p:last-child {
  font-family: var(--mons);
  color: var(--lt-grey);
  font-style: italic;
  font-weight: 600;
}

/* story end ***************************************/

/* feature start ***********************************/

.feature {
  padding-top: 100px;
  padding-bottom: 100px;
}

.feature-card > p:first-child {
  font-family: var(--oswold);
  color: var(--deep-grey);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 50px;
}

.feature-card > p:last-child {
  line-height: 1.625;
  font-weight: 400;
  color: var(--lt-grey);
}

/* feature end ************************************* */

/* gallery start ************************************* */

.gallery {
  background-image: url(../../img/bg-home-3.png);
  background-position: center;
  background-size: cover;
}
.explode {
  overflow: hidden;
  position: relative;
}
.gallery-row {
  justify-content: space-between;
  row-gap: 10px;
}

.gallery-middle-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
}
.gallery-left,
.gallery-right,
.gallery-middle {
  flex-basis: 32%;
}

/* image effect **************************/
.explode .img-overlay {
  color: var(--white);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.927608543417367) 0%,
    rgba(0, 0, 0, 0.6334908963585435) 23%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
}

.explode .img-overlay span:nth-child(2) {
  position: absolute;
  top: 80%;
  left: 10%;
  font-size: 17px;
  opacity: 0;
}

.explode:hover .img-overlay {
  opacity: 0.9;
}

.explode:hover .img-overlay span:nth-child(2) {
  animation: focus 0.4s forwards;
  animation-delay: 0.4s;
}

@keyframes focus {
  0% {
    transform: scale(1.4) translateX(-30%);
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(0%);
    filter: blur(0px);
    opacity: 1;
  }
}

/* gallery end *************************************/

/* journey start ********************************** */

.journey {
  padding-top: 100px;
  padding-bottom: 100px;
}
.journey-container > p {
  font-size: 36px;
  line-height: 1.11111;
  font-weight: 500;
  font-family: var(--oswold);
  color: var(--deep-grey);
  text-transform: uppercase;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 50px;
}
.journey-txt-area {
  row-gap: 20px;
}

.journey-txt-area-left {
  flex-basis: 50%;
  padding-right: 15px;
  padding-left: 15px;
}
.journey-txt-area-left > p {
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
  color: var(--lt-grey);
}
.journey-txt-area-right {
  flex-basis: 25%;
  padding-right: 15px;
  padding-left: 15px;
}

.journey-txt-area-right > ul > li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 15px;
  list-style: none;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
  color: var(--lt-grey);
}

.journey-txt-area-right > ul > li::before {
  content: "\f178";
  font-family: "fontAwesome";
  position: absolute;
  left: 0px;
}

/* journey end ************************* */

/* story2 start ************************ */
.story2 {
  background-image: url(../../img/bg-home-4.png);
  background-position: center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

/* story2 end ************************** */

/* blog start *************************** */

.blog {
  padding-top: 100px;
  padding-bottom: 100px;
}
.blog-container > p {
  font-size: 36px;
  line-height: 1.11111;
  font-weight: 500;
  font-family: var(--oswold);
  color: var(--deep-grey);
  text-transform: uppercase;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 50px;
}

.blog-card > div {
  margin-bottom: 20px;
}

.blog-card > p:nth-child(2) {
  margin-bottom: 5px;
  font-size: 12px;
  color: var(--lt-grey);
}

.blog-card > p:nth-child(3) {
  font-size: 18px;
  line-height: 1.44444;
  font-weight: 500;
  color: var(--deep-grey);
  font-family: var(--oswold);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.blog-card > p:nth-child(4) {
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
  color: var(--lt-grey);
}

/* blog card image shine************* */
.blog-card > div {
  position: relative;
  overflow: hidden;
}
.blog-card > div::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.blog-card:hover > div::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* blog end  *****************************/

/* news start *************************** */

.news {
  background-color: var(--deep-grey);
  margin-top: 100px;
  overflow: visible;
}

.news-img,
.news-txt-area {
  flex-basis: 50%;
}
.news-img {
  padding: 0px 10px;
}
.news-img > video {
  position: relative;
  top: -80px;
}

.news-txt-area {
  padding: 50px 20px;
  overflow: hidden;
}

.news-txt-area p:nth-child(1) {
  font-size: 36px;
  line-height: 1.1111;
  color: var(--white);
  font-weight: 500;
  font-family: var(--oswold);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.news-txt-area p:nth-child(2) {
  font-size: 18px;
  line-height: 1.44444;
  font-weight: 500;
  font-family: var(--oswold);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--lt-blue);
}
.news-txt-area form {
  border-bottom: 1px solid var(--white);
  display: flex;
  justify-content: space-between;
}
.news-txt-area form > input[type="email"] {
  background-color: transparent;
  padding: 20px 5px;
  color: var(--white);

  outline: none;
  border: none;
  /* width: 89%; */
}

.news-txt-area form > button {
  width: 10%;
  border: none;
  outline: none;
  background-color: transparent;
}

.news-txt-area form > button > i {
  color: var(--lt-blue);
  font-size: 20px;
}

/* news end ******************************* */

/* footer start ************************** */

footer {
  background-color: #141618;
  padding: 17px;
  position: relative;
}

.footer-container {
  justify-content: space-between;
  align-items: center;
  row-gap: 30px;
}

.footer-container > ul > li {
  display: inline-block;
  margin-left: 20px;
}

.footer-container > ul > li > a > i {
  color: var(--lt-grey);
  font-size: 30px;
}

/* back to top  *************************/

.footer-container > a {
  position: fixed;
  right: 10px;
  bottom: 10px;
  text-decoration: none;
  color: var(--lt-blue);
  font-size: 50px;
  z-index: 10;
  display: none;
}
.footer-container > a > i {
  background-color: var(--deep-grey);
  border-radius: 50%;
}
#back-to-top:hover {
  animation: icon 1s ease-in-out;
}
@keyframes icon {
  0% {
    bottom: 8px;
  }
  25% {
    bottom: 15px;
  }
  50% {
    bottom: 8px;
  }
  75% {
    bottom: 15px;
  }
  100% {
    bottom: 8px;
  }
}
