/*
==============================================================
 Flash
==============================================================
*/
.flash-success {
    color: green;
}

.flash-error {
    
    color: red;
}


/*
==============================================================
 Variables
==============================================================
*/

:root {

    /* Colors */
    --clr-black: black;
    --clr-white: white;
    --clr-grey-light: #FAFAFA;
    --clr-blue-light: #F3FBFF;
    --clr-blue: #003754;
    --clr-blue-dark: #00263A;
    --clr-orange-light: #FFF9F5;
    --clr-orange: #FF6900;

    --radius-btn: 0.2rem;
  }

/*
==============================================================
 General
==============================================================
*/

* {
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: var(--clr-black);
    text-align: justify;
    text-justify: inter-word;
}

h1, h2, h3, h4 {
    font-family: 'Verdana', 'Arial', sans-serif;
    font-weight: 700;
    color: var(--clr-blue-dark);
}

h1 {
    text-align: right;
    color: var(--clr-orange);
}

h3 {
    text-transform: uppercase;
    font-size: 1.1rem;
}

/*
==============================================================
 Top Navbar
==============================================================
*/

.navbar-brand {
    padding: 0.6rem 0rem 0.7rem 1.2rem;
}

.sub-title {
    text-align: right;
    margin: -1rem 2rem -0.3rem 0rem;
    font-size: 0.95rem;
    font-weight: 550;
}

/*
==============================================================
 Bot Navbar (Mio)
==============================================================
*/

.navbar {
    border: 0 solid var(--clr-orange);
    border-bottom-width: 0.4rem;
    background-color: var(--clr-blue-dark);
}

/* Customizes the container of the menu */
.navbar-nav {
    background-color: transparent;
    margin: -0.4rem 0 -0.4rem 1.4rem;
}

/* Hide the negative logo on big screens */
.logo-negative {
    display: none;
}

/* Changes the toggle icon (burger) */
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.custom-toggler .navbar-toggler {
    border-color: var(--clr-blue-dark);
    color: var(--clr-blue);
}

/*#navbarNavDropdown {*/
/*    background-color: red;*/
/*} */

/* Customizes each link (text) of the menu */
.nav-link {
    color: var(--clr-white);
    font-weight: 700;
    margin: 0.2rem 0 0 0.8rem;
}
.nav-link:hover {
    color: var(--clr-orange);
}
.nav-link:focus { /* When the link is "active" */
    color: var(--clr-orange);
}

/*
==============================================================
 Content
==============================================================
*/

/* Customizes the cover image */
.cover {
    width: 100%;
    max-width: 1920px;
    height: auto;
}

/* Creates an spacer */
.spacer {
    height: 0.2rem;
    width: 58%;
    margin: auto;
    background-color: var(--clr-orange);
    margin-top: 4rem;
    margin-bottom: 2.7rem;
}

/* Custumizes the content containers */
.content {
    padding: 0rem 5% 3.7rem 5%;
}
.content-2 {
    padding: 1rem 5% 3.7rem 5%;
    background-color: var(--clr-orange-light);
}

/* Text below headings */
.sub-text {
    margin-left: 1%;
    font-size: 1.1rem;
}

/* Creates 3 columns with images */
.column {
    float: left;
    width: 33.33%;
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.images {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery */
    .carousel-item > .row {
      display: flex;
    }
    .carousel-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }


/*
==============================================================
botones
==============================================================
*/


.btn-descarga {
  text-decoration: none;
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.btn-descarga:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Parte izquierda: ícono */
.btn-descarga-izq {
  background-color: var(--clr-orange);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-descarga:hover .btn-descarga-izq {
  background-color: #d17800; /* tono ligeramente más oscuro del naranja institucional */
}

/* Parte derecha: texto */
.btn-descarga-der {
  background-color: #f8f9fa;
  color: #212529;
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  font-weight: 500;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-descarga:hover .btn-descarga-der {
  background-color: #e9ecef; /* cambio sutil al fondo del texto */
}







/* Custimizes links to pdf files */
.pdf {
    padding-left: 0.5rem
}
.a-links {
    color: var(--clr-black);
    line-height: 2.5rem;

}
.a-links:hover {
    color: var(--clr-orange);
}

/* Custimizes google calendar's frame */
iframe {
    height: 40rem;
    width: 100%;
    max-width: 70rem;
}

/* Customizes the buttons */
.aso-btn {
    border: none;
    color: var(--clr-white);
    background-color: var(--clr-orange);
    padding: 0.7rem 1.4rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: var(--radius-btn)0.2rem;
  }

.column2 {
  float: left;
  padding: 10px;
}

.left {
  width: 75%;
}

.right {
  width: 25%;
}

    
/*
==============================================================
 Footer
==============================================================
*/

/* Customizes the footer container */
footer {
    background-color: var(--clr-blue-dark);
     color: white;
    padding: 1rem 0;
}
.footer-div {
    border: 0rem solid var(--clr-orange);
    border-top-width: 2rem;
    background-color: var(--clr-blue-dark);
    font-color: var(--clr-white);
    padding: 3rem 5% 0.15rem 5%;
}

/* Contenedor de redes sociales */
.social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 0 1rem 0;
}

/* Estilo de los enlaces de redes */
.social a {
  text-decoration: none;
  color: white;
}

/* Íconos Remix grandes */
.footer-icon,
.footer-icon::before {
  font-size: 2rem !important;
  color: white !important;
  line-height: 1;
  transition: transform 0.2s ease, color 0.3s ease;
}

/* Efecto al pasar el mouse */
.footer-icon:hover::before {
  color: #dddddd;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .footer-icon,
  .footer-icon::before {
    font-size: 1.25rem !important;
  }
}

/* Customizes the content of the footer */
.inicio-link {
    text-decoration: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    padding: 0rem 0% 3rem 0%;
}
.inicio-link:hover {
    color: var(--clr-orange);
}

/* Customizes social network links */



/* Customizes copyright text */
.copyright {
    text-align: center;
    color: var(--clr-white);
    font-size: 0.88rem;
    padding: 0rem 0% 0rem 0%;
}

/*
==============================================================
 Mobile
==============================================================
*/

@media (max-width: 991.98px) {
    /* Hide the top navbar and headings */
    .navbar-brand {
        display: none;
    }
    h1 {
        display: none;
    }

    /* Adapts the bottom navbar */
    .navbar {
        padding: 0.3rem 0 0.45rem 0.45rem;
    }
    .logo-negative {
        display: inline;
    }

    /* Custumize the dropdown menu */
    .navbar-nav {
        padding: 1rem 0rem 1rem 0rem;
    }

    /* Changes the content background */
    .content-2 {
        background-color: #ffffff;
    }

    /* Changes the behaviour of the columns */
    .column {
        padding-top: 1rem;
        width: 100%;
    }
    .images {
        max-width: 95%;
    }
}

/*
==============================================================
 ARSHA - Navigation Menu
==============================================================
*/

/*--------------------------------------------------
 ARSHA - Desktop Navigation 
---------------------------------------------------*/

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  /*display: flex;*/
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------
 ARSHA - Mobile Navigation 
---------------------------------------------------*/

.mobile-nav-toggle {
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin: 0.2rem 1.5rem 0 0;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991.98px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}