/*
Theme Name: Bruma Studio
Template: hello-elementor
Description: Bruma Studio is a WordPress theme designed for creative professionals and agencies. It features a clean and modern design, with a focus on showcasing your work and services. The theme is built with Elementor, making it easy to customize and create unique layouts without any coding knowledge.
Author: Luis Saravia
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.0.0
*/

:root {
  --bemakers-primary-color: rgb(238, 178, 0);
  --bemakers-secondary-color: rgb(0, 0, 0);
  --bemakers-third-color: rgb(255, 255, 255);
  --bemakers-four-color: rgb(255, 255, 255, 0.80);
  --bemakers-five-color: rgba(255, 255, 255, 0.2);
}

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

#content {
  max-width: none;
}

/*
*
* Menu
*
*/
header,
nav {
  display: grid;
}

header {
  height: 50px;
  background-color: var(--bemakers-secondary-color);
  display: grid;
}

/*
*
* Menu Desktop
*
*/
@media (max-width: 768px) {
  .menu-desktop {
    display: none;
  }
}

header .menu-desktop .menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 40px;
  max-width: 400px;
  margin-left: auto;
}

/*
*
* Menu Mobile
*
*/
header .menu-mobile {
  display: none;
}

@media (max-width: 768px) {
  header .menu-mobile {
    display: block;
    justify-self: end;
  }
}

/* header .menu-mobile .menu-mobile-content {
  position: fixed;
  top: 0px;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  display: none;
  visibility: hidden;
  justify-content: end;
  background-color: var(--bemakers-five-color);
  transition: left 1s ease, visibility 1s ease, display 1s ease;
}

header .menu-mobile .menu-mobile-content.active {
  display: flex;
  visibility: visible;
  left: 0px;
} */

header .menu-mobile .menu-mobile-content {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: end;

  background-color: var(--bemakers-five-color);

  opacity: 0;
  pointer-events: none;

  transform: translateX(100%);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

header .menu-mobile .menu-mobile-content.active {
  opacity: 1;
  pointer-events: all;

  transform: translateX(0);
}

header .menu-mobile .menu-mobile-content .menu {
  padding-left: 30px;
  background-color: var(--bemakers-secondary-color);
  width: 140px;
  z-index: 1;
}

header .menu-mobile .menu-mobile-content .menu>li {
  margin: 20px 0px;
}

/*
*
* List Menu
*
*/
header .menu>li {
  list-style: none;
}

header .menu>li>a {
  color: var(--bemakers-four-color);
  transition: color 0.3s ease;
  font-weight: 500;
}

header .menu>li>a.active {
  color: var(--bemakers-third-color);
}

header .menu>li>a:hover {
  color: var(--bemakers-third-color);
}



/*
*
* Footer
*
*/
footer {
  height: 230px;
  background-color: var(--bemakers-primary-color);
  display: grid;
}

footer .content-footer {
  display: flex;
  justify-content: space-between;
  padding: 0px 80px;
  margin-top: auto;
  margin-bottom: 5px;
}

footer .content-footer :is(.bemakers-logo, .bemakers-icon)>img {
  width: 100%;
}

footer .content-footer .bemakers-logo {
  width: 180px;
}

footer .content-footer .bemakers-icon {
  width: 80px;
}

@media (max-width: 768px) {
  footer .content-footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0px 0px;
  }

  footer .content-footer .bemakers-logo {
    width: 150px;
  }

  footer .content-footer .bemakers-icon {
    width: 50px;
  }
}

/*
 *
 *
 * HOME
 *
 */

.description-bussiness p {
  margin: 0px
}

.description-bussiness .note {
  color: var(--bemakers-primary-color);
  font-size: 28px;
  font-weight: 600;
}

.description-bussiness h2 {
  font-size: 80px;
  font-weight: 700;
}

.description-bussiness .description {
  font-size: 20px;
  font-weight: 500;
}