:root {
  --blue: #044f96;
}

* {
  font-family: poppins, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  border: none;
  text-decoration: none;
  transition: all 0.5s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  padding: 1rem 9%;
}
header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: #fff;
  text-transform: uppercase;
}
header .logo span {
  color: var(--blue);
}
header .navbar a {
  color: #fff;
  font-size: 2rem;
  margin: 0 0.8rem;
}

header .navbar a:hover {
  color: var(--blue);
}
header .icon i {
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  margin-right: 2rem;
}
header .icon i:hover {
  color: var(--blue);
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue);
  padding: 0.8rem 3rem;
  border: 0.2rem solid var(--blue);
  cursor: pointer;
  font-size: 1.7rem;
  background: rgba(255, 165, 0, 0.2);
}
.btn:hover {
  color: #fff;
  background: var(--blue);
}
#menu-bar {
  color: #fff;
  border: 0.1rem solid #fff;
  border-radius: 0.5rem;
  font-size: 3rem;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  display: none;
}

section {
  padding: 2rem 9%;
}
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: relative;
  z-index: 0;
}
.home .content {
  text-align: center;
}
.home .content h3 {
  font-size: 3.5rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}
.home .content p {
  font-size: 2.5rem;
  color: #fff;
  padding: 0.5rem 0;
}
.home .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.home .controls {
  padding: 1rem;
  border-radius: 5rem;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  top: 10rem;
}

.home .controls .video-btn {
  height: 2rem;
  width: 2rem;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin: 0 0.5rem;
}
.home .controls .video-btn.blue {
  background: var(--blue);
}
.heading {
  text-align: center;
  padding: 2.5rem 0;
}
.heading span {
  font-size: 3.5rem;
  background: var(--blue);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.2rem 1rem;
}
.packages .container {
  display: flex;
  flex-wrap: wrap;
}
.packages .container .box {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 5px 5px 10px #9494943e;
  transition: 0.5s;
}
.packages .container .box:hover {
  scale: 1.05;
}
.packages .container .box img {
  height: 20rem;
  width: 100%;
  object-fit: cover;
}
.packages .container .box .content {
  padding: 2rem;
}
.packages .container .box .content h3 {
  font-size: 2rem;
  color: #333;
}
.packages .container .box .content h3 i {
  color: var(--blue);
}
.packages .container .box .content p {
  font-size: 1.7rem;
  color: #666;
  padding: 1rem 0;
}
.packages .container .box .content .stars i {
  font-size: 1.7rem;
  color: var(--blue);
}
.packages .container .box .content .price {
  font-size: 2rem;
  color: #333;
  padding-top: 1rem;
}
.packages .container .box .content .price span {
  font-size: 1.5rem;
  color: #666;
  text-decoration: line-through;
}

.services .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.services .container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}
.services .container .box i {
  padding: 1rem;
  font-size: 5rem;
  color: var(--blue);
}
.services .container .box h3 {
  font-size: 2.5rem;
  color: #333;
}
.services .container .box p {
  font-size: 1.5rem;
  color: #666;
  padding: 1rem 0;
}
.services .container .box:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.gallary .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.review .review-slid {
  display: flex;
  justify-content: center;
  align-items: center;
}
.review .box {
  padding: 2rem;
  text-align: center;
  box-shadow: 5px 5px 10px #9494943e;
  border-radius: 0.5rem;
  border-radius: 10px;
  margin: 0 30px;
  transition: 1s;
}
.review .box:hover {
  scale: 1.05;
}
.review .box img {
  height: 13rem;
  width: 13rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.review .box h3 {
  color: #333;
  font-size: 2.5rem;
}
.review .box p {
  color: #666;
  font-size: 1.5rem;
  padding: 1rem 0;
}
.review .box .stars i {
  color: var(--blue);
  font-size: 1.7rem;
}
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 60vw;
}
.contact .row form {
  text-align: center;
  flex: 1 1 50rem;
  padding: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.contact .row form .inputbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .row form .inputbox input,
.contact .row form textarea {
  width: 49%;
  margin: 1rem 0;
  padding: 1rem;
  font-size: 1.7rem;
  color: #333;
  background: #f7f7f7;
}
.contact .row form textarea {
  height: 15rem;
  width: 100%;
}
.footer {
  background: #000000;
}
.footer .box-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.footer .box-container .box {
  padding: 1rem 0;
  flex: 1 1 25rem;
}
.footer .box-container .box h3 {
  font-size: 2.5rem;
  padding: 0.7rem 0;
  color: #fff;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  padding: 0.7rem 0;
  color: #eee;
}
.footer .box-container .box a {
  font-size: 1.5rem;
  padding: 0.7rem 0;
  color: #eee;
  display: block;
}
.footer .box-container .box a:hover {
  color: var(--blue);
  text-decoration: underline;
}
.footer .created {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: normal;
  color: #fff;
}
.footer .created span {
  color: var(--blue);
}
@media (max-width: 1025px) {
  .contact .row .image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 990px) {
  .contact .row {
    width: 80vw;
  }
  #menu-bar {
    display: block;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  header .navbar a {
    display: block;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: #222;
  }
  html {
    font-size: 50%;
  }
  .contact .row .image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 550px) {
  .home .video-container video {
    width: 101.5%;
  }
  .contact .row .image img {
    width: 400px;
  }
  .review .review-slid {
    flex-direction: column;
  }

  .footer .box-container {
    flex-direction: column;
    width: 70%;
  }
  .footer .box-container .box {
    flex: 1 1;
  }
}
@media (max-width: 450px) {
  .contact .row .image img {
    width: 300px;
  }
  .heading span {
    font-size: 2.5rem;
  }
}
