/* Common Styles */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cabin+Sketch:wght@700&family=Caprasimo&family=Libre+Baskerville&family=Luckiest+Guy&family=Open+Sans:wght@800&family=Oswald:wght@200;300;400;500;600;700&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cabin+Sketch:wght@700&family=Caprasimo&family=Libre+Baskerville&family=Luckiest+Guy&family=Open+Sans:wght@800&family=Oswald:wght@200;300;400;500;600;700&family=Roboto&family=Ubuntu:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  list-style-type: none;
  font-family: "Baloo Da 2", cursive;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  
}

/* End of Common Styles */

/* Navbar */
.navbar {
  width: 100%;
  height: 10rem;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: -8rem;
  padding: 3rem;
  z-index: 10;
  animation: animateNavbar 1s 0.5s forwards;
  transition: height 0.5s;
}

.navbar.change {
  height: 100vh;
}

@keyframes animateNavbar {
  0% {
    top: -8rem;
  }
  100% {
    top: 0;
  }
}

.navbar-logo {
  position: absolute;
  top: 1.5rem;
  left: 4rem;
}

.navbar-logo a {
  font-family: "Cabin Sketch", sans-serif;
  font-size: 4rem;
  color: #eee;
  letter-spacing: 0.1rem;
}

.navbar-logo span {
  font-size: 6rem;
  font-weight: bold;
  color: #35A29F;
  font-family: "Cabin Sketch";
}

.menu {
  width: 4rem;
  height: 4rem;
  position: fixed;
  z-index: 500;
  top: 2rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;

}
.line {
  width: 100%;
  height: 0.2rem;
  background-color: #eee;
  transition: transform 0.3s;
}

.line-1 {
  width: 50%;
}

.line-3 {
  width: 50%;
  margin-left: auto;
}

.change .line-1 {
  transform: translate(100%, 1rem) rotate(-35deg);
  transform-origin: right;
}

.change .line-3 {
  transform: translateY(-1rem) rotate(35deg);
  transform-origin: right;
}

.nav-list {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.change .nav-list {
  opacity: 1;
  visibility: visible;
  transition: all 0.7s 0.5s;
}

.nav-link {
  font-family: "MADE Soulmaze", sans-serif;
  font-size: 8rem;
  letter-spacing: 0.3rem;
  color: #fff;
  margin: 2rem 0;
  transition: color 0.4s;
}

.nav-link:hover {
  color: #35A29F;
}
/*  End of Navbar */

/* Section 1 */
.section-1 {
  width: 100%;
  height: 100vh;
  background: url(images/dark-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.banner {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.banner-heading {
  height: 30rem;
  margin-bottom: 4rem;
  perspective: 50rem;
  overflow: hidden;
}

.banner-heading span {
  font-family: "Oswald", sans-serif;
  font-size: 10rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 92%;
  display: flex;
  justify-content: center;
  transform: translateZ(8rem);
  opacity: 0;
  letter-spacing: 3rem;
}

.heading-1 {
  animation: animateHeading 12s 3s infinite;
}

.heading-2 {
  animation: animateHeading 12s 6s infinite;
}

.heading-3 {
  animation: animateHeading 12s 9s infinite;
}

.heading-4 {
  animation: animateHeading 12s 12s infinite;
}

@keyframes animateHeading {
  0% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }

  3% {
    transform: translateZ(0);
    opacity: 1;
    letter-spacing: 1.5rem;
  }

  25% {
    transform: translateZ(0);
    opacity: 1;
    letter-spacing: 1.5rem;
  }

  28% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }

  100% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }
}

.banner-paragraph {
  font-size: 5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.35);
  margin: 0 auto 4rem auto;
  padding: 2rem 0;
  box-shadow: 1rem 1rem 5rem rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  animation: fadeAnimation 1s 1.5s forwards;
  display: block;
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.banner-btn {
  width: 30rem;
  height: 6rem;
  background: linear-gradient(to right,  #91C8E4, #35A29F);
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
  border-radius: 1.5rem;
  border: 0.1rem solid #35A29F;
  box-shadow: 1rem 2rem 3rem rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  position: relative;
  overflow: hidden;
  animation: fadeAnimation 1s 2s forwards;
}

.banner-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.5s;
}

.banner-btn:hover::before {
  left: 100%;
}
/* End of Section 1 */

/* Section 2 */
.section-2 {
  width: 100%;
  height: 100vh;
  background-color: #a8d7ce;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}
.section2-part{
display: flex;
justify-content: center;
align-items: center;
}
.section-heading {
  font-size: 10rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  color: #30706e;
  margin-bottom: 25rem;
  padding-left: 5rem;
  /* margin-right: 20rem */
  /* position: absolute; */
}
.video-wrapper {
  width: 100rem;
  height: 50rem;
  position: absolute;
  top: 5rem;
  right: 15rem;
  box-shadow: 3rem 3rem 6rem rgba(0, 0, 0, 0.7);
  overflow: hidden;
  /* position: absolute; */
}

.video-wrapper:hover .controls {
  transform: translateY(0);
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.controls {
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(calc(100% - 0.4rem));
  transition: transform 0.4s;
}

.video-bar-wrapper {
  width: 100%;
  height: 0.7rem;
  background-color: #000;
  /* position: absolute; */
  top: 0;
  left: 0;
}

.video-bar {
  height: 100%;
  width: 0;
  background-color: #d30819;
  transition: width 0.2s linear;
}

.buttons {
  padding: 2rem 1rem 1rem 1rem;
}

.buttons button {
  background: none;
  border: none;
  cursor: pointer;
}

.buttons i {
  width: 3rem;
  height: 3rem;
  font-size: 2.8rem;
  color: #fff;
}

.section-2-paragraph {
  width: 90vw;
  position: absolute;
  font-size: 50px;
  line-height: 1.5;
  color: #394867;
  border-top: 0.9rem double #30706e;
  border-bottom: 0.9rem double #30706e;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: justify;
  top:60vh;
  
}

.section-2-paragraph span {
  color: #0b405a;
  font-size: 10px;
}

/* End of Section 2 */

/* Section 3 */
.section-3 {
  height: 100vh;
  background-color: #c2d8d3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  font-family: "Oswald", sans-serif;
}

.panels {
  display: flex;
  width: 90vw;
}

.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 95vh;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  -webkit-transition: all 700ms ease-in;
}

.panel h3 {
  font-size: 4rem;
  left: 20px;
  margin-left:10px;
  opacity: 0;
}
.p{
  opacity: 0;
  font-size: 3rem;
  margin: 10px;
}
.panel.active {
  flex: 5;
}

.panel.active h3, .panel.active p {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}
.art{

  display: flex;
  align-items: flex-end;
  justify-content: left;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0px;
  }


@media (max-width: 480px) {
  .container {
    width: 100vw;
  }

  .panel:nth-of-type(4),
  .panel:nth-of-type(5) {
    display: none;
  }
  
}
/* End of Section 3 */

/* Section 4 */
.section-4 {
  width: 100%;
  height: 100vh;
  background-color: #a8d7ce;
  display: flex;
  align-items: center;
  padding: 0 10rem;
}
.section-4 >.getin{
  margin-bottom: 4rem;
  }
.contact-wrapper {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-details {
  display: flex;
  margin-bottom: 3rem;
}

.contact-details div {
  width: 25rem;
  margin: 4rem;
  text-align: center;
}

.contact-details i {
  font-size: 5rem;
  color: #7a1010;
}

.contact-details h3 {
  font-family: "MADE Soulmaze", serif;
  font-size: 5rem;
  margin: 2rem 0;
  color: #1D5B79;
}

.contact-details p {
  font-size: 3rem;
  color: #1D5B79;
}

.contact-wrapper h1 {
  font-size: 4rem;
  color: #1D5B79;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.contact-form {
  width: 100rem;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 2rem;
  background-color: #eee;
  color: #1D5B79;
  border: none;
  margin-bottom: 2rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}

.contact-form textarea {
  max-width: 100%;
  max-height: 15rem;
  min-height: 5.5rem;
}

.contact-form input[type="submit"] {
  background-color: #7a1010;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #35A29F;
}

.contact-form input[type="submit"]:hover {
  background-color: #5f0303;
}
/* End of Section 4 */

/* Footer */
.footer {
  width: 100%;
  height: 12rem;
  background-color:rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
}

.footer-nav a {
  font-family: "MADE Soulmaze", serif;
  font-size: 6rem;
  color: #ccc;
  margin-right: 3rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #862323;
}

/* End of Footer */

/* Responsive */
@media (max-width: 3000px) {
  .video-wrapper {
    width: 80rem;
    right: 10rem;
  }
  .section2-part{
    padding: 0rem;
  }
  .section-2-paragraph, .section-2-paragraph span {
    width: 95vw;
    font-size: 20px;
  }
  .section-heading{
    margin-bottom: 90rem;
  }
@media (max-width: 1800px) {
  .video-wrapper {
    width: 90rem;
    height: 45rem;
    right: 10rem;
  }
  .section2-part{
    padding: 6rem;
  }
  .section-2-paragraph, .section-2-paragraph span {
    width: 95vw;
    font-size: 18px;
  }
  .section-heading{
    margin-bottom: 60rem;
  }
  .video-wrapper{
    margin-bottom: 0px;
    flex-direction: column;
    align-items: center;
  }

@media (max-width: 1650px) {
  html {
    font-size: 57%;
    height: auto;
  }

  .video-wrapper {
    width: 85rem;
    height: 40rem;
    right: 5rem;
  }
  .section-heading {
    margin-bottom: 2rem;
  }

  .section-2-paragraph {
    width: 90vw;
    margin-top: 1rem;
    font-size: 15px;
  }
  .video-wrapper{
    margin-bottom: 0px;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1420px) {
  html {
    font-size: 45%;
  }
  .banner-heading span {
    font-size: 10rem;
  }

  .banner-paragraph {
    width: 45rem;
    font-size: 3rem;
  }

  .section-3,
  .section-4 {
    flex-direction: column;
  }
  .section-2 {
    height: 100vh;
  }
  .video-wrapper {
    top: 10%;
    right: 10%;
    width: 80rem;
  }
  .section-2-paragraph {
    width: 90vw;
    font-size: 18px;
  }
  .footer-nav a {
    font-size: 4rem;
  }
  .section-3 {
    height: auto;
    padding: 5rem 0 10rem 0;
  }
  .section-heading {
    margin-bottom: 1rem;
  }
  .video-wrapper{
    margin-bottom: 0px;
    flex-direction: column;
    align-items: center;
  }
  .swiper-container {
    width: 100%;
  }

  .section-4 {
    height: auto;
    padding: 5rem 0;
  }
}
@media (max-width: 1000px) {
.section-2{
  flex-direction: column;
  padding: 0 5px;
}
.section2-part>.section-heading{
  margin-bottom: 5rem;
}
.section2-part>.video-wrapper{
  top: 22%;
  margin-bottom: 0px;
  flex-direction: column;
  align-items: center;
  width: 90rem;
}

.section-2-paragraph {
  top: 64%;
  width: 90vw;
  font-size: 16px;
}
}
@media (max-width: 900px) {
  html {
    font-size: 40%;
  }

  .banner {
    top: 25%;
  }

  .banner-heading {
    height: 15rem;
  }

  .banner-heading span {
    font-size: 8rem;
  }

  .footer {
    padding: 0 5rem;
  }

  .footer-nav a {
    font-size: 4rem;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 35%;
  }
  .section-1 {
    height: 60vh;
  }
  .section-2 {
    height: 90vh;
  }

  .contact-details div {
    margin: 3rem 2rem;
  }
  .section2-part>.video-wrapper{
    top: 22%;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .section-2-paragraph {
    top: 61%;
    width: 90vw;
    font-size: 15px;
  }
  .footer {
    flex-direction: column;
    justify-content: center;
  }

  .footer-nav {
    margin-bottom: 2rem;
  }
  .footer-nav a {
    font-size: 4.5rem;
  }
}

@media (max-width: 573px) {
  html {
    font-size: 30%;
  }

  .banner-heading span {

    font-size: 4.5rem;
    letter-spacing: 2rem;
  }
  .footer-nav a {
    font-size: 4.5rem;
  }
  .section-1 {
    height: 60vh;
  }
  .section-2 {
    height: 75vh;
  }
  .section2-part{
    width: 90%;
  }
  .section2-part>.video-wrapper{
    top: 20%;
    flex-direction: column;
    align-items: center;
  }
  .section-2-paragraph {
    top: 62%;
    width: 90vw;
    font-size: 12px;
  }

  @keyframes animateHeading {
    0% {
      transform: translateZ(8rem);
      opacity: 0;
      letter-spacing: 2rem;
    }

    3% {
      transform: translateZ(0);
      opacity: 1;
      letter-spacing: 1rem;
    }

    25% {
      transform: translateZ(0);
      opacity: 1;
      letter-spacing: 1rem;
    }

    28% {
      transform: translateZ(8rem);
      opacity: 0;
      letter-spacing: 2rem;
    }

    100% {
      transform: translateZ(8rem);
      opacity: 0;
      letter-spacing: 2rem;
    }
  }

  .video-wrapper {
    width: 80rem;
    margin-right: 0;
    padding: 0;
  }

  .contact-details div {
    width: 18rem;
    margin: 3rem 1rem;
  }

  .contact-form {
    width: 60rem;
  }
}
@media (max-width: 460px) {
  .contact-details i {
    font-size: 4rem;
  }
  
  .contact-details h3 {
    font-size: 4rem;
  }
  .contact-details p {
    font-size: 2rem;
  }

  .section2-part>.video-wrapper{
    top: 20%;
    width: 65rem;
  }
  .section-2-paragraph {
    top: 63%;
    font-size: 10px;
  }
}
@media (max-width: 360px) {

  .section2-part>.video-wrapper{
    top: 20%;
    width: 55rem;
  }
  .section-2-paragraph {
    top: 63%;
    font-size: 8px;
  }
}
/* End of Responsive */
