@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&family=Red+Hat+Display:wght@700;900&display=swap");
.hero {
  height: 100vh;
  background-position: center bottom;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero img {
  width: 30%;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.hero h1 {
  z-index: 1;
  color: #f9f9f9;
  font-size: 5rem;
  font-weight: bold;
  margin-top: 70px;
  margin-bottom: 0;
  overflow: hidden;
}

.hero h1 span {
  color: #0348a1;
}

.hero h4 {
  z-index: 1;
  color: #f1f1f1;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 80px;
}

.hero button {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
  border: none;
  background-color: #0348a1;
  color: white;
  padding: 20px 35px;
  font-size: 1.2rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none;
  cursor: pointer;
}

.hero button i {
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 5px;
  margin-left: 15px;
}

.hero button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: solid 2px #0348a1;
}

.hero_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: url(../img/fondo.jpg);
  background-position: 0 40%;
  background-size: cover;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.break {
  display: none;
}

@media screen and (max-width: 950px) {
  .break {
    display: contents;
  }
  .hero img {
    width: 70%;
    max-width: 480px;
  }
  .hero h1 {
    font-size: 3rem;
    text-align: center;
  }
  .hero h4 {
    font-size: 1.1rem;
  }
  .hero button {
    padding: 18px 26px;
  }
}

.about {
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -10px;
  padding: 80px 8vw;
  width: 100%;
}

.about_text p {
  max-width: 50ch;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.about_photo {
  width: 350px;
  background-size: 105%;
  background-position-x: -20px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .about_photo {
    display: none;
  }
}

.catalogue {
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 180px 0;
}

.catalogue_container {
  -webkit-box-shadow: 1px 1px 8px 2px #f1f1f1;
          box-shadow: 1px 1px 8px 2px #f1f1f1;
  color: black;
  width: 100%;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.catalogue_container .catalogue_inner {
  overflow: hidden;
  background-color: #D6F2FD;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 14vw;
}

.catalogue_container img {
  position: absolute;
  left: 36%;
  width: 28%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.catalogue_container img:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-filter: drop-shadow(0px 12px 6px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 12px 6px rgba(0, 0, 0, 0.5));
}

.catalogue_container h3 {
  color: #1258b4 !important;
  height: 60px;
  margin: 0;
}

.catalogue_container h3::before {
  bottom: 10px;
}

.catalogue_container p {
  color: black;
  font-style: italic;
  font-size: 1.2rem;
  max-width: 40ch;
  margin-top: 20px;
}

.catalogue_btn_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.catalogue_btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #0348a1;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 800;
  background-color: white;
  padding: 10px 18px;
  -webkit-box-shadow: 1px 4px 14px -4px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 4px 14px -4px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.catalogue_btn:first-of-type {
  margin-right: 30px;
}

.catalogue_btn:hover {
  background-color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 1px 6px 16px -4px rgba(0, 0, 0, 0.55);
          box-shadow: 1px 6px 16px -4px rgba(0, 0, 0, 0.55);
}

.catalogue_btn:disabled {
  cursor: not-allowed;
  background-color: #d7d7d7;
  color: #686868;
}

@media screen and (max-width: 1300px) {
  .catalogue_container .catalogue_inner {
    padding: 4vw;
  }
}

@media screen and (max-width: 1000px) {
  .catalogue {
    margin: 40px 0;
  }
  .catalogue_container {
    height: unset;
  }
  .catalogue_container img {
    position: relative;
    width: 60%;
    max-width: 500px;
    margin: 48px 14px 48px 0;
    left: unset;
  }
  .catalogue_container .catalogue_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 90px 0;
  }
  .catalogue_container .catalogue_inner div {
    margin-right: 10px;
  }
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #D6F2FD;
  padding: 60px 10% 40px 10% !important;
}

.contact h3 {
  margin-bottom: 60px;
}

.contact_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.form_wrapper {
  width: 60%;
}

.contact_info {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact_info_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
}

.contact_info_item img {
  height: 40px;
  width: 40px;
}

.contact_info_item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.contact_info_item p {
  margin: 0;
  vertical-align: middle;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .contact {
    padding: 60px 6% 40px 6% !important;
  }
}

@media screen and (max-width: 768px) {
  .contact h3 {
    margin-bottom: 30px;
  }
  .contact_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .form_wrapper {
    width: 100%;
  }
  .contact_info {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 60px;
  }
  .contact_info .contact_info_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: 100%;
    padding-left: 20px;
    margin-bottom: 14px;
  }
  .contact_info .contact_info_item img {
    height: 40px;
    width: 40px;
  }
}

footer {
  background-color: #D6F2FD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 140px;
}

footer img {
  width: 34px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer a:not(:first-child) {
  margin-left: 20px;
}

footer a {
  cursor: pointer;
}

footer a:hover img {
  opacity: 70%;
}

.admin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.admin_nav {
  left: 0;
  top: 0;
  width: 300px;
  height: 100vh;
  max-height: 100vh;
  background-color: #2C3E4E;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.admin_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 120px;
}

.admin_logo img {
  height: 60px;
}

.admin_panel {
  width: 100%;
}

.admin_panel ul {
  padding: 0;
}

.admin_panel ul li {
  width: 100%;
  list-style: none;
}

.admin_panel ul li:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.admin_panel ul li .admin_panel_link {
  display: block;
  padding: 16px 20px;
  width: 100%;
  height: 100%;
  color: white;
}

.admin_panel ul .active_page {
  background-color: rgba(0, 0, 0, 0.1);
}

.admin_content {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.admin_content header {
  width: 100%;
  height: 10vh;
  background-color: #367FA8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4vh;
  border-bottom: 1px solid #c8c8c8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.admin_content header h1 {
  color: #e2e2e2;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0;
}

.admin_products {
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.admin_products .admin_products_all {
  height: 90vh;
  width: 40%;
  background-color: #c4c4c4;
  padding: 40px 50px;
  position: relative;
}

.admin_products .admin_products_all h2 {
  font-size: 1.8rem;
  margin-bottom: 0;
  margin-right: 20px;
}

.admin_products .admin_products_all .admin_products_all_list {
  height: 70vh;
}

.admin_products .admin_products_single {
  height: 90vh;
  width: 60%;
  background-color: #e2e2e2;
  padding: 70px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.admin_products .admin_products_all_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.admin_products .admin_products_all_title .nuevo_producto {
  background-color: #367FA8;
  padding: 8px 14px;
  color: #e2e2e2;
  border-radius: 6px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.admin_products .admin_products_all_title .nuevo_producto:hover {
  background-color: #215e81;
}

.admin_product_item_link {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 98%;
}

.admin_product_item_link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.admin_product_item_link p {
  margin: 0;
  font-weight: 600;
}

.admin_product_item_link:not(:first-of-type) {
  margin-top: 14px;
}

.admin_product_item_link .admin_product_item_inner {
  width: 100%;
  height: 100%;
  padding: 12px 16px;
}

/*SINGLE PRODUCT COMPONENT*/
.single_product {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single_product .single_product_img {
  width: 250px;
  height: 250px;
  background-color: black;
}

.single_product .single_product_info {
  width: 100%;
}

.single_product .single_product_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single_product .single_product_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

* {
  font-family: 'Assistant', sans-serif;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  overflow: hidden !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

body {
  background-color: white;
  scroll-behavior: smooth;
  margin: 0;
}

p {
  font-weight: 400;
  color: #333;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  overflow: hidden;
}

.section_title {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  text-transform: lowercase;
}

.subtitle {
  font-family: "Red Hat Display";
  font-size: 2rem;
  line-height: 2.4rem;
  color: #1258b4;
  font-weight: 800;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .subtitle {
    max-width: 16ch;
  }
}

.texto {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-size: 0.95rem;
}

.mobile {
  display: none;
}

button {
  border: none;
  background-color: #367FA8;
  padding: 10px 18px;
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  cursor: pointer;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  outline: none;
  border-radius: 6px;
}

button:hover {
  background-color: #215e81;
}

button:focus {
  outline: none;
}

button:first-of-type {
  margin-right: 14px;
}

@media screen and (max-width: 768px) {
  .mobile {
    display: unset !important;
  }
  .title {
    font-size: 2rem;
  }
  .desktop {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .section {
    padding: 50px 6%;
  }
}
/*# sourceMappingURL=style.css.map */