* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

body {
  font-family: "Roboto", sans-serif;
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: relative;
  overflow-x: hidden; }

.temp {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; }

.div-arrow-up {
  position: absolute;
  bottom: 70px;
  right: 10px;
  background-color: rgba(20, 20, 20, 0.9);
  padding: 5px; }
  .div-arrow-up a {
    color: #fff;
    font-size: 18px; }

.navbar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  color: #f2fa16;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10; }

.brand-title .img-logo {
  width: 150px;
  height: 150px;
  margin-left: 50px; }

.navbar-links {
  height: 100%;
  transition: all 0.3s ease-in; }

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0; }

.navbar-links li {
  list-style: none; }

.navbar-links li a {
  display: block;
  text-decoration: none;
  color: #fff;
  margin: 0 10px;
  transition: color 0.2s ease-in; }

.navbar-links li a:hover {
  color: #C45945; }

.toggle-button {
  position: absolute;
  top: 50px;
  right: 10px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px; }

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px; }

.home {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column; }
  .home div {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px; }
    .home div h1 {
      color: #fff;
      font-size: 50px; }
    .home div h2 {
      color: #fff;
      font-size: 40px; }
    .home div h3 {
      color: #fff;
      font-size: 35px; }
    .home div .btn-call {
      font-size: 24px;
      padding: 10px;
      border: 1px solid rgba(196, 89, 69, 0.9);
      color: #fff;
      border-radius: 5px;
      transition: 0.3s ease-in; }

.about {
  margin-top: 20px;
  margin-bottom: 50px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem; }
  .about h1 {
    text-align: center;
    color: #fff; }
  .about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center; }
    .about-grid .nazif-img img {
      width: 450px;
      height: 450px;
      object-fit: cover;
      border-radius: 5px;
      border: 1px solid rgba(196, 89, 69, 0.9);
      cursor: pointer;
      transition: all 0.2s ease-in; }
      .about-grid .nazif-img img:hover {
        transform: scale(1.1); }
    .about-grid .nazif-info {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 16px;
      font-size: 18px;
      color: #fff;
      background-color: rgba(20, 20, 20, 0.9); }

.services {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 50px; }
  .services h1 {
    text-align: center;
    color: #fff; }
  .services .box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: rgba(20, 20, 20, 0.9);
    min-width: 40%;
    padding: 16px;
    transition: 0.3s ease-in-out;
    cursor: pointer; }
    .services .box h4 {
      color: #fff; }
      .services .box h4 .icon {
        margin: 0 5px;
        color: #C45945; }

.prices {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 1rem;
  margin-top: 20px;
  margin-bottom: 50px; }
  .prices h1 {
    text-align: center;
    color: #fff; }
  .prices .info-div {
    margin: 20px 0;
    color: #fff; }
    .prices .info-div .icon {
      margin-right: 5px;
      color: #C45945; }
  .prices .container-prices {
    text-align: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: auto;
    text-align: center; }
    .prices .container-prices-left {
      width: 100%;
      color: #fff; }
      .prices .container-prices-left .overlay {
        background-color: rgba(20, 20, 20, 0.9); }
      .prices .container-prices-left div {
        border: 1px solid rgba(255, 255, 255, 0.4);
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center; }
    .prices .container-prices-right {
      border-left: 0;
      width: 100%;
      color: #fff; }
      .prices .container-prices-right .overlay {
        background-color: rgba(20, 20, 20, 0.9); }
      .prices .container-prices-right div {
        border: 1px solid rgba(255, 255, 255, 0.4);
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center; }

.gallery {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 50px; }
  .gallery h1 {
    text-align: center;
    color: #fff; }
  .gallery h5 {
    text-align: center;
    color: #000000; }
  .gallery-pics {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    margin-top: 20px; }
    .gallery-pics img {
      width: 300px;
      object-fit: cover;
      transition: transform 0.3s ease-in;
      cursor: pointer; }
      .gallery-pics img:hover {
        transform: scale(1.1); }

.contact {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 100px;
  margin-bottom: 100px; }
  .contact h1 {
    color: #fff; }
  .contact h5 {
    color: #fff; }
  .contact .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgba(20, 20, 20, 0.9);
    width: 250px;
    height: 150px;
    padding: 10px;
    transition: height 0.3s ease-in;
    cursor: pointer; }
    .contact .box .fab,
    .contact .box .fas {
      color: #C45945; }
    .contact .box p {
      font-size: 15px; }
  .contact-method {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    grid-gap: 10px; }

.main-footer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 100%;
  height: auto;
  font-size: 18px;
  background-color: #000000; }
  .main-footer p {
    margin: 0; }
  .main-footer a {
    color: #C45945;
    margin: 0 3px; }

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    z-index: 10; }
  .toggle-button {
    display: flex; }
  .navbar-links {
    display: none;
    width: 100%; }
  .navbar-links ul {
    width: 100%;
    flex-direction: column; }
  .navbar-links ul li {
    text-align: center; }
  .navbar-links ul li a {
    padding: 0.5rem 1rem; }
  .navbar-links.active {
    display: flex; }
  .prices .container-prices {
    width: 90%; }
    .prices .container-prices-left div {
      min-height: 50px; }
    .prices .container-prices-right div {
      min-height: 50px; }
  .about-grid .nazif-img img {
    width: 280px;
    height: 280px; } }

@media (max-width: 768px) {
  .about {
    padding: 0.5rem; }
    .about-grid {
      grid-template-columns: 1fr;
      row-gap: 10px; }
  .prices .container-prices {
    width: 90%; }
    .prices .container-prices-left div {
      min-height: 50px; }
    .prices .container-prices-right div {
      min-height: 50px; }
  .gallery-pics {
    grid-template-columns: 1fr;
    grid-gap: 20px; }
    .gallery-pics img {
      border: 1px solid rgba(196, 89, 69, 0.7); }
  .contact-method {
    grid-template-columns: 1fr; } }

@media (min-width: 769px) and (max-width: 992px) {
  .gallery-pics {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px; }
    .gallery-pics img {
      border: 1px solid rgba(242, 250, 22, 0.7); }
  .contact-method {
    grid-template-columns: repeat(2, 1fr); } }
