*{
    padding: 0;
    margin: 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;
}

/* navbar */

.navbar{
    
    width: 100%;
    height: 10rem;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: -10rem;
    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: "MADE Soulmaze", sans-serif;
    font-size: 3.5rem;
    color: #eee;
    letter-spacing: 0.1rem;
    text-decoration: underline;
    text-decoration-color: #9e0e09;
    text-shadow: 0.6rem 0.3rem 0.2rem rgba(0, 0, 0, 0.4);
  }
  
  .navbar-logo span {
    font-size: 3.6rem;
    font-weight: bold;
    color: #9e0e09;
    font-family: "MADE Soulmaze";
    text-decoration: underline;
    text-decoration-color: #fff;
    text-shadow: 0.6rem 0.3rem 0.2rem rgba(0, 0, 0, 0.4);
  }
  


  .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: 4rem;
    letter-spacing: 0.3rem;
    color: #fff;
    margin: 2rem 0;
    transition: color 0.4s;
  }
  
  .nav-link:hover {
    color: #9e0e09;
    letter-spacing: 1rem;
    font-weight: 400;

  }

/* /navbar */

/* section 1 */
.section-1{
    width: 100%;
    height: 100vh;
    background-image: url(./images/bk1.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.banner{
    width: 100%;
    position:absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.banner-heading{
    margin-bottom: 4rem;
    height: 20rem;
    perspective: 50rem;
    overflow: hidden;
}
.banner-heading span{
    font-family: 'Oswald', sans-serif;
    font-size: 12rem;
    font-weight: 400;
    color: white;
    text-shadow: 0.3rem 0.3rem 0.6rem rgba(0,0,0,0.5 );
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
}
.heading-1 {
    animation: animate-heading 8s 2s infinite;
  }
  
  .heading-2 {
    animation: animate-heading 8s 4s infinite;
  }
  
  .heading-3 {
    animation: animate-heading 8s 6s infinite;
  }
  .heading-4 {
    animation: animate-heading 8s 8s infinite;
  }

@keyframes animate-heading {
    0%{
        transform: translateZ(8rem);
        opacity: 0;
        letter-spacing: 3rem;
    }
    3%{
        transform: translateZ(0rem);
        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: 3.5rem;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    background-color: rgb(0, 0, 0,0.6);
    width: 40%;
    margin:  0 auto 4rem auto;
    padding: 1rem 0;
    box-shadow: 1rem 1rem 5rem rgb(0, 0, 0,0.5);;
    opacity: 0;
    visibility: hidden;
    animation: fadeAnimation 1s 1.5s forwards;
}
@keyframes fadeAnimation {
    0% {
      opacity: 0;
      visibility: hidden;
    }
    100% {
      opacity: 1;
      visibility: visible;
    }
  }
.banner-btn{
    width: 30rem;
    height: 6rem;
    background: linear-gradient(to right, #9b0e0e, #7a1010);
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    border-radius: 3rem;
    border:.1rem solid #800505;
    box-shadow: 1rem 2rem 3rem rgba(0, 0, 0, 0.5);
    text-shadow: 0.6rem 0.3rem 0.2rem rgba(0, 0, 0, 0.4);
    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%;
  }
  /* section2 */

  .section-2 {
    width: 100%;
    height: 100vh;
    background-color: #222020;
    display: flex;
    align-items: center;
    padding: 0 10rem;
    position: relative;
  }
  .section-heading {
    font-size: 10rem;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    color: #ddd;
    margin-right: 4rem;
  }
  
.section-heading-line {
    width: 15rem;
    height: 0.2rem;
    background-color: #ddd;
  }
  .picture-wrapper{
    width: 55rem;
    height: 35rem;
    position: absolute;
    top: 2rem;
    right: 15rem;
    box-shadow: 3rem 3rem 6rem rgba(0, 0, 0, 0.7);
    overflow: hidden;
    
  }
  
  img{
      width: auto;
      height: 100%;
      object-fit: cover;
      left: 50%;
      transform: translate(-50%);
      position: absolute;
  }

.section-2-paragraph {
  width: 90rem;
  position: absolute;
  bottom: 2rem;
  right: 15rem;
  font-size: 2rem;
  line-height: 1.5;
  color: #ddd;
  border-top: 0.3rem double #aaa;
  border-bottom: 0.3rem double #aaa;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  text-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.7);
}

.fa-quote-left {
  align-self: flex-start;
  font-size: 5rem;
  color: #bbb;
  margin-bottom: 2rem;
}

.fa-quote-right {
  align-self: flex-end;
  font-size: 5rem;
  color: #bbb;
}

/* section 3 */
.section-3 {
    width: 100%;
    height: 100vh;
    background-color: #03070e;
    display: flex;
    align-items: center;
    padding-left: 10rem;
  }
  
  .pricing-cards-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 5rem;
  }
  
  .pricing-card {
    width: 28rem !important;
    height: 45rem !important;
    background-color: #181b1d;
    border-radius: 1rem;
    box-shadow: 2rem 2rem 6rem rgba(0, 0, 0, 0.7);
  }
  
  .pricing-card-front {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  
  .pricing-card-heading {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    border-radius: 1rem 1rem 0 0;
  }
  

  
  .heading-standard {
    background: linear-gradient(to right, #a10c14, #e23b3b);
  }
  

  
  .pricing-card-price {
    font-family: "MADE Soulmaze", sans-serif;
    font-size: 7rem;
    font-weight: 300;
    color: #fff;
  }
  
  .pricing-card-list li {
    margin-bottom: 0.5rem;
  }
  
  .pricing-card-list i {
    font-size: 1.8rem;
    width: 3rem;
  }
  
  .pricing-card-list span {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
  }
  

  
  .list-standard {
    color: #e23b3b;
  }
  

  
  .pricing-card-btn {
    width: 18rem;
    height: 5rem;
    margin-bottom: 3rem;
    border-radius: 3rem;
    border: none;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
  }
  

  
  .btn-standard {
    background-color: #e23b3b;
  }
  
  .swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
    overflow: hidden;
}
  .pricing-card-back {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
    border-radius: 1rem;
  }
  
  .pricing-card-back a {
    font-size: 2.5rem;
    color: #fff;
  }
  

  
  .back-standard {
    background: linear-gradient(to right, #a10c14, #e23b3b);
  }
  

/* /section3 */

/* Section 4 */
.section-4 {
  width: 100%;
  height: 100vh;
  background-color: #171718;
  display: flex;
  align-items: center;
  padding: 0 10rem;
}

.contact-wrapper {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-details {
  display: flex;
  margin-bottom: 8rem;
}

.contact-details div {
  width: 25rem;
  text-align: center;
  margin: 4rem;
}

.contact-details i {
  font-size: 5rem;
  color: #7a1010;
}

.contact-details h3 {
  font-family: "MADE Soulmaze", serif;
  font-size: 2.5rem;
  margin: 2rem 0;
  color: #ccc;
}

.contact-details p {
  font-size: 1.6rem;
  color: #aaa;
}

.contact-wrapper h1 {
  font-size: 4rem;
  color: #ccc;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

/* /section 4 */
/* Footer */
.footer {
  width: 100%;
  height: 12rem;
  background-color: #202122;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
}

.footer-nav a {
  font-family: "MADE Soulmaze", serif;
  font-size: 2rem;
  color: #ccc;
  margin-right: 3rem;
  letter-spacing: 0.1rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #862323;
  letter-spacing: 0.8rem;
  font-weight: 400;
}

.copyright {
  font-size: 2rem;
  color: #ddd;
}
/*/ Footer */

/* Responsive */
@media (max-width: 1800px) {
  .picture-wrapper {
    width: 90rem;
    height: 45rem;
    right: 10rem;
  }

  .section-2-paragraph {
    width: 90rem;
    right: 10rem;
  }

  .section-3 .section-heading-line {
    margin-right: 3rem;
  }
}

@media (max-width: 1650px) {
  html {
    font-size: 57%;
  }

  .picture-wrapper {
    width: 85rem;
    height: 40rem;
    right: 5rem;
  }

  .section-2-paragraph {
    width: 85rem;
    right: 5rem;
    bottom: 10rem;
  }
}

@media (max-width: 1500px) {
  .section-heading-line {
    display: none;
  }
}

@media (max-width: 1400px) {
  html {
    font-size: 45%;
  }

  .banner-heading span {
    font-size: 10rem;
  }

  .banner-paragraph {
    width: 45rem;
    font-size: 3rem;
  }

  .section-2,
  .section-3,
  .section-4 {
    flex-direction: column;
  }

  .section-2 {
    height: 120vh;
  }

  .picture-wrapper {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80rem;
  }

  .section-2-paragraph {
    left: 50%;
    transform: translateX(-50%);
    width: 80rem;
  }

  .section-3 {
    height: auto;
    padding: 5rem 0 10rem 0;
  }

  .section-3 .section-heading {
    margin-bottom: 7rem;
  }

  .swiper-container {
    width: 100%;
  }

  .section-4 {
    height: auto;
    padding: 5rem 0;
  }
}

@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: 1.8rem;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 35%;
  }

  .section-2 {
    height: 100vh;
  }

  .contact-details div {
    margin: 3rem 2rem;
  }
  iframe{
    width: 90vw;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
  }

  .footer-nav {
    margin-bottom: 2rem;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 30%;
  }
  .section-1{
    max-height: 80vh;
  }

  .banner-heading span {
    font-size: 4.5rem;
    letter-spacing: 2rem;
  }
  .section-heading{
    font-size: 7rem;
  }
  .picture-wrapper{
    max-width: 90vw;
  }

  iframe{
    width: 90vw;
  }

  @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;
    }
  }

  .picture-wrapper {
    width: 60rem;
  }

  .section-2-paragraph {
    width: 60rem;
  }

  .contact-details div {
    width: 18rem;
    margin: 3rem 1rem;
  }

  .contact-form {
    width: 60rem;
  }
}
/* End of Responsive */
