/*
Theme Name: rosemead_v2
Theme URI: 
Author: Agustin Herrera y César Santillán
Author URI: 
Description: 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rosemead-v2
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset and base styles */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-blue: #005aab;
  --secondary-blue: #eff5ff;
  --primary-green: #68953a;
  --secondary-green: #e1dfbf;
  --primary-orange: #ff8400;
  --secondary-orange: #fff3e1;
  --white: #ffffff;
  --cian: #00ffb7;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a {
  color: #0073aa;
  text-decoration: none;
}

a:hover {
  color: #005177;
}
h2 {
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--primary-blue);
}
h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  color: var(--primary-blue);
  margin: 2rem 0;
}

h4 {
  font-weight: 700;
  color: var(--primary-blue);
}

.color-blue {
  color: var(--primary-blue);
}
.bg-blue {
  background-color: var(--primary-blue);
}
.bg-blue-2 {
  background-color: var(--secondary-blue);
}
.color-orange {
  color: var(--primary-orange);
}
.bg-orange {
  background-color: var(--primary-orange);
}
.color-green {
  color: var(--primary-green);
}
.bg-green {
  background-color: var(--primary-green);
}
.color-cian {
  color: var(--cian);
}
.bg-cian {
  background-color: var(--cian);
}
.dark-grey,
.big-text.dark-grey {
  color: #3e3e3e;
}
.color-white {
  color: #ffffff;
}
.font-instrument {
  font-family: "Instrument Serif", serif;
}
.font-italic {
  font-style: italic;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 95%;
}

/* Header */
header#header {
  margin-top: 2rem;
  display: flex;
  flex-flow: row;
  justify-content: center;
}

header .logo {
  max-width: 270px;
}

header .logo img {
  width: 100%;
}

/* Navigation */
nav {
  display: none;
}
#header .inscribete.navMenu {
  display: block;
  margin-top: 1.5rem;
}
#header .inscribete {
  display: none;
}

a.animate-button {
  border: solid thin transparent;
  transition: 0.5s;
}
a.animate-button:hover {
  border: solid thin var(--primary-blue);
  background-color: var(--secondary-blue);
  transition: 0.5s;
}
@media screen and (min-width: 960px) {
  nav {
    display: flex;
    align-items: center;
  }
  #header #mobile_nav .inscribete {
    display: none;
    margin-top: 1.5rem;
  }
  #header .inscribete {
    display: flex;
  }
  header#header {
    justify-content: space-between;
  }
}

#nav #primary-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
::marker {
  display: none;
  color: transparent;
}
.nav_oferta,
.nav_admisiones,
.nav_contacto {
  color: #333333;
  font-weight: 500;
  list-style: none;

  & a {
    color: #333333;
  }
}

.nav_admisiones,
.nav_contacto {
  color: #333333;
  font-weight: 500;

  & a {
    color: #333333;
    border-bottom: solid 0 #1d2b5c;
    transition: border-bottom 0.1s;
  }

  & a:hover {
    color: #064d47;
    border-bottom: solid medium #1d2b5c;
    transition: border-bottom 0.1s;
  }
}

.nav_oferta > ul.sub-menu {
  position: absolute;
  z-index: 4;
  background: #ffffffe8;
  padding: 0.5rem;
  visibility: hidden;
  display: none;
  font-weight: 500;
}

.nav_oferta:hover > ul.sub-menu {
  visibility: visible;
  display: block;
}

ul.sub-menu {
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 0.5rem;

  & li {
    padding: 0 0 0 1rem;
  }
}

.nav_curso a {
  border-left: #094d47 solid 3px;
  padding-left: 0.5rem;
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

li.nav_curso a::before {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background-color: #084d47;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: width 0.2s ease-in-out;
}

li.nav_curso a:hover::before {
  width: 100%;
  transition: width 0.2s ease-in-out;
}

a[title="maestria"],
a[title="licenciatura"] {
  font-weight: 700;
  color: #084d47;
  text-transform: uppercase;
}

a[title="maestria"]:hover,
a[title="licenciatura"]:hover {
  color: #064d47;
}

.inscribete {
  display: flex;
  align-items: center;
  align-content: center;
}

.inscribete a {
  font-weight: 400;
  font-size: 1.1rem;
  padding: 0.5rem;
  letter-spacing: 0.7px;
  border: none;
  color: white;
  background-color: var(--primary-blue);
  border-radius: 2rem;
}
@media (min-width: 1000px) {
  .inscribete a {
    padding: 0.5rem 1rem;
  }
}
.menu_toggle {
  position: absolute;
  left: 1.5rem;
  top: 2.5rem;
  z-index: 1000;
  appearance: none;
  width: 25px;
  height: 20px;
  border-bottom: black solid 2px;
}

input[type="checkbox"]:not(:checked) ~ .mobile_nav {
  display: flex;
  visibility: visible;
  width: 85%;
  transform: translateX(0%);
  transition:
    width 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}
.mobile_nav {
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff9e;
  height: 100vh;
  z-index: 999;
  backdrop-filter: blur(16px);
  padding: 1.5rem 0 0 1.5rem;
  justify-content: flex-start;
  flex-flow: column;
  transform: translateX(-100%);
  overflow: hidden;
  transition:
    width 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}
div#mobile_nav .logo {
  margin: 0 auto;
}
nav#mobile_nav ul {
  list-style: none;
}
.mobile_nav .nav_oferta > ul.sub-menu {
  visibility: visible;
  position: relative;
  background: no-repeat;
  display: flex;
}
input.menu_toggle::before {
  content: "";
  display: block;
  background: black;
  height: 2px;
  width: 25px;
  position: absolute;
  top: 0px;
  left: 0;
  transition: transform 0.2s;
}

input.menu_toggle::after {
  content: "";
  display: block;
  background: black;
  height: 2px;
  width: 25px;
  position: absolute;
  top: 0.5rem;
  transition: transform 0.2s;
}

input[type="checkbox"]:not(:checked)::before {
  transform: rotate(133deg) translateX(6px) translateY(-2px);
  transition: transform 0.2s;
}
input[type="checkbox"]:not(:checked)::after {
  transform: rotate(45deg) translateX(-2px);
  transition: transform 0.2s;
}
input[type="checkbox"]:not(:checked) {
  border-bottom: white solid 2px;
  transition: border-bottom 0.2s;
}
@media (min-width: 960px) {
  .menu_toggle,
  .mobile_nav,
  input[type="checkbox"]:not(:checked) ~ .mobile_nav {
    display: none;
    visibility: hidden;
  }
}
/* Content */
.site-content {
  padding: 2rem 0;
  margin: 0 auto;
}

/* Hero */

/************************   .home  *******************************/
.hero {
  position: relative;
  display: flex;
  flex-flow: column;
  background-size: cover;
  background-position-x: 100%;
  background-repeat: no-repeat;
  height: fit-content;
  align-items: anchor-center;
}
.hero.wrapper {
  color: var(--primary-blue);
}
.page-template-cursos .hero.wrapper {
  padding: 2rem;
}
.home h1 span:nth-of-type(1) {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 100;
}
.mobile {
  display: block;
  visibility: visible;
}
.desktop {
  display: none;
  visibility: hidden;
}
.hero-btn {
  font-weight: 400;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  letter-spacing: 0.7px;
  border: none;
  color: white;
  background-color: var(--primary-blue);
  border-radius: 2rem;
  max-width: 260px;
  text-transform: uppercase;
  text-align: center;
  margin: 1rem 0 2rem;
}
@media screen and (max-width: 767px) {
  /*.home*/
  .hero {
    background: none !important;
  }
}

@media screen and (min-width: 768px) {
  /*.home*/
  .hero {
    align-items: baseline;
    height: 525px;
  }
  .page-template-cursos .hero {
    color: white;
  }

  .mobile {
    display: none;
    visibility: hidden;
  }

  .desktop {
    display: block;
    visibility: visible;
  }

  .hero {
    background-size: cover;
  }
}
.big-green .texto-requisitos p,
.hero h1 {
  font-size: clamp(3rem, 100vw, 5rem);
  line-height: normal;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1.2rem, 1vw + 0.2rem, 1.6rem);
  font-weight: 500;
  margin: 1rem 0;
}
@media screen and (min-width: 960px) {
}
@media (min-width: 1000px) {
  .big-green .texto-requisitos p {
    font-size: 3.6rem;
    line-height: 3.85rem;
  }
  .hero {
    & p {
      margin: 1rem 0;
    }
  }
}

@media (min-width: 1120px) {
  .big-green .texto-requisitos p {
    font-size: 4.6rem;
    line-height: 4.85rem;
  }
}

.hero-text {
  max-width: 500px;
}

.hero-img {
  width: 100%;
}

.hero-img img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .hero-btn {
    margin: 1rem 0;
  }
}
/*****************************        SEPARADOR        ******************************/
.separador {
  border-top: #03265e solid 2px;
  width: 97%;
  max-width: 1400px;
  margin: 0 auto;
}
/************************   .Accreditations   *******************************/

section.accreditations {
  margin: 2rem 0;
}

/************************  HOME .INFO  *******************************/
section.info,
section.about-us {
  background-color: var(--secondary-blue);
  padding: 4rem 0 3rem;
}
.info-holder {
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: space-around;
  & figure {
    width: 100%;
    max-width: 325px;
    & img {
      width: 100%;
      border-radius: 33px;
    }
  }
  & div {
    width: clamp(250px, 100vw, 649px);
    text-align: left;
  }
  & span {
    font-size: 2.6rem;
    font-family: "Instrument Serif", serif;
    font-style: italic;
    color: #025aab;
  }
  & .info p {
    font-size: clamp(1.25rem, 90vw, 1.4rem);
    text-align: left;
    color: #3e3e3e;
  }
}

.info p {
  font-size: clamp(1.25rem, 90vw, 1.4rem);
  text-align: left;
  color: #3e3e3e;
}

/********************************************  HOME ABOUT  ********************************/
.home-about {
  position: relative;
  display: flex;
  flex-flow: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: fit-content;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: flex-start;
}
.wrapper.half {
  width: 90%;
  margin: 2rem 1rem;
  z-index: 2;
}

.home-about.wrapper {
  color: var(--primary-blue);
}

.home-about p {
  color: var(--primary-blue);
  font-size: clamp(1.1rem, 100vw, 1.2rem);
  font-weight: 300;
  margin: 1rem 0;
  & span {
    color: var(--cian);
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: clamp(2rem, 100vw, 3rem);
    font-weight: 400;
  }
}
.home-about p:first-of-type {
  margin-top: 0;
  font-size: clamp(1.2rem, 100vw, 1.4rem);
  font-weight: 400;
}

.home-about-text {
  max-width: 500px;
}

.home-about-img {
  width: 100%;
}

.home-about-img img {
  max-width: 100%;
}
.home-about-img.mobile {
  display: block;
  visibility: visible;
}
.sl-card,
.sl-card img {
  border-radius: 15px;
}
.sl-card h3 {
  margin: 0;
}
@media screen and (max-width: 959px) {
  /*.home*/
  .home-about {
    background: none !important;
  }
}

@media screen and (min-width: 960px) {
  /*.home*/
  .home-about {
    align-items: baseline;
    height: 525px;
  }
  .home-about.sl-card {
    height: 380px;
    justify-content: flex-start;
    margin: 0 0 3rem 0;
  }
  .home-about.sl-card.right {
    justify-content: flex-end;
  }
  .sl-card p,
  .sl-card h3 {
    line-height: 1.25;
    text-shadow: 1px 1px 3px #4746465c;
  }
  .sl-card h3 {
    margin: 0 0 1rem;
  }

  .home-about p {
    color: white;
    text-shadow: 1px 1px 3px #4746465c;
  }
  section#home-about::before,
  #american-culture::before,
  .sl-card::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #0051dd00 15%, #0051dddd 85%);
    right: 0;
    display: block;
  }
  #american-culture::before,
  .sl-card::before {
    width: 100%;
  }
  .sl-card::before {
    background: linear-gradient(270deg, #0051dd00 15%, #0051dddd 85%);
    border-radius: 15px;
  }
  .sl-card:nth-of-type(even)::before {
    background: linear-gradient(90deg, #0051dd00 15%, #0051dddd 85%);
  }
  .page-template-cursos .hero {
    color: white;
  }

  .mobile {
    display: none;
    visibility: hidden;
  }

  .desktop {
    display: block;
    visibility: visible;
  }

  .home-about {
    background-size: cover;
  }
  .wrapper.half {
    width: 50%;
  }
  .home-about-img.mobile {
    display: none;
    visibility: hidden;
  }
}

/********************************************  HOME Programs  ********************************/
.prog-span {
  display: flex;
  margin: 3em auto;
  justify-content: center;
}
.prog-span h2::before,
.prog-span h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
}
.wrapper.visa-holder {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  column-gap: 1rem;
}
.visa {
  & h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  & p {
    font-size: clamp(1.25rem, 90vw, 1.4rem);
    color: #3e3e3e;
    text-align: center;
    margin-bottom: 3rem;
  }
}
.visa-item {
  width: 100%;
  position: relative;
  margin-top: 2rem;
  & figure {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 400px;
  }
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
  }
  & p {
    color: #3e3e3e;
    font-weight: 600;
    width: 100%;
    padding: 1rem;
  }
  & .btn-top {
    z-index: 2;
    margin-top: 1rem;
  }
  & .oferta-academica .bg-orange {
    background: red;
  }
  .btn-top a {
    margin: 0 auto;
  }
}
.visa-item figure {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .visa-item {
    width: 45%;
    display: block;
    margin-top: 0;

    & .btn-top {
      z-index: 3;
      margin-top: 0rem;
      position: absolute;
      bottom: -2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      text-align: center;
      & a {
        text-align: center;
        margin: 0 auto;
      }
    }
  }
  .visa-item p {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    padding: 1rem;
    color: white;
    text-shadow: 1px 1px 3px #555555;
    width: auto;
  }

  .visa-item::before {
    content: "";
    background: linear-gradient(
      180deg,
      #00ca9100 0%,
      #00ca9100 40%,
      #00ca91dd 80%
    );
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: absolute;
    z-index: 2;
  }
  .visa-item:last-of-type {
    margin-top: 3rem;
  }
  .visa-item figure {
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  .visa-item {
    width: 31%;
  }
  .visa-item::before {
    content: "";
    background: linear-gradient(180deg, #00ca9100 25%, #00ca91 100%);
  }
  .visa-item:last-of-type {
    margin-top: 0rem;
  }
}
@media screen and (min-width: 1000px) {
  .visa-item::before {
    content: "";
    background: linear-gradient(180deg, #00ca9100 38%, #00ca91 100%);
  }
}
.oferta-academica {
  padding: 2rem;
}
.big-text,
.info .big-text,
.oferta-academica .big-text {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0;
  color: var(--primary-orange);
}

/*************************************************** HOME oferta acedemica ***************************************************/

.oferta-academica .lic-card.right .text-holder {
  background-color: var(--secondary-green);
}
.oferta-academica .lic-card.right .big-text {
  color: var(--primary-green);
}
.lic-card.bg-blue-2.home-iep {
  background: linear-gradient(180deg, #eff5ff00 10%, #eff5ffff 10%);
}
.oferta-academica .big-text {
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
  width: 90%;
}
.oferta-academica .lic-card.right .big-text.blueback {
  color: var(--primary-blue);
}
.oferta-academica .lic-card.right .text-holder.blueback {
  background-color: var(--secondary-blue);
  border: solid thin #e2fbff;
}
.oferta-academica .bg-orange {
  background: var(--primary-orange);
}
.icon-holder {
  display: flex;
  width: 90%;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1.5rem 0 1rem;
}

.icon-item {
  width: 50%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.icon-item img {
  width: 85%;
  min-width: 85%;
}
.page-template-cursos .info h3 {
  text-transform: none;
  font-size: 2.5rem;
  text-align: left;
  border: none;
  margin-bottom: 0;
}
.page-template-cursos .info p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .oferta-academica {
    padding: 4rem;
  }
  .big-text,
  .info .big-text,
  .oferta-academica .big-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0;
    color: var(--primary-blue);
  }
  .icon-item {
    width: 25%;
  }
}
.icon-item p {
  font-size: 1rem;
  color: #064d47;
  font-weight: 500;
}

.big-blue {
  background-color: #03265e;
  background-image: url("../rosemead_landing/img/RCE-Header-01.jpg");
  background-size: cover;
  /*background-attachment: fixed;*/
  background-position: center;
  color: white;
  padding: 2.3rem 0;
  min-height: 217px;
}

.big-blue img {
  max-width: 100px;
  width: 100%;
}

.h3-holder {
  width: fit-content;
  text-align: center;
  margin: 4rem auto;
}

.lic-card {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  color: #03265e;
  margin-bottom: 4rem;
  justify-content: space-evenly;
}

.lic-card .hero-btn {
  margin: 1rem 1rem 2rem;
}
.lic-card figure {
  width: 100%;
  max-width: 455px;
  position: relative;
  z-index: 1;
}

.lic-card img {
  z-index: 2;
  width: 100%;
}

figure > img.adorno_left {
  width: 50%;
  position: absolute;
  z-index: -1;
  border-radius: 0;
  left: calc(-30%);
  box-shadow: none;
  top: 15%;
}

figure > img.adorno_right {
  width: 50%;
  position: absolute;
  z-index: -1;
  border-radius: 0;
  right: calc(-18%);
  box-shadow: none;
  bottom: 15%;
}

.lic-card.right {
  flex-flow: column;

  & img {
    /*border-radius: 100%;
    /*border-bottom-left-radius: 0;*/
  }

  & .text-holder {
    border-radius: 15px;
  }
}

.text-holder {
  margin-top: 0rem;
  border-radius: 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lic-card {
    flex-flow: row;
  }
  .lic-card img {
  }
  .lic-card.right {
    flex-flow: row-reverse;
    & img {
    }
  }
  .text-holder {
    margin-top: 4rem;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
  }
  .lic-card.right .text-holder {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (min-width: 960px) {
  .lic-card figure {
    width: 50%;
  }
  .lic-card.right .text-holder,
  .text-holder {
    width: 50%;
  }
}
.oferta-academica .big-text {
  max-width: 960px;
  margin: 1rem 0 0;
  width: 90%;
}

.lic-card :not(big-text) p {
  padding: 0.5rem 1rem 1rem;
  margin-bottom: 1.5rem;
}

#american-culture h3 {
  margin: 2rem 0 1rem 0;
  line-height: 1;
}

.lic-card.right.home-business {
  align-items: center;
  & img {
    border-radius: 15px;
  }
}
.lic-card.right.wrapper.home-business figure {
  margin-top: 3rem;
}

.maes-card {
  margin: 0 auto;
  color: #03265e;
}
.maes-card:last-of-type {
  margin-top: 4rem;
}
.maes-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

.maes-card .text-holder {
  width: 100%;
  margin: 0 auto;
  margin-top: -0.5rem;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 2rem 2rem 1rem;
  background-color: var(--secondary-blue);
  & p:first-of-type {
    color: var(--primary-blue);
  }
}
.maes-card:last-of-type .text-holder {
  background-color: var(--secondary-green);
  & p:first-of-type {
    color: var(--primary-green);
  }
}

.maes-card .big-text {
  margin-top: 0;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .maes-card .text-holder {
    width: 75%;
  }
}
@media screen and (min-width: 960px) {
  #american-culture {
    & p:last-of-type {
      font-size: 1rem;
    }
  }
}
@media screen and (min-width: 1100px) {
  #american-culture {
    & p:last-of-type {
      font-size: 1.2rem;
    }
  }
}
/**********************************   HOME student life    **********************************/
.student-life .big-green {
  position: relative;
}
#student-life .big-green::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, #0051dd00 52%, #0051dddd 94%);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.texto-requisitos h2.color-white {
  font-size: 1.6rem;
  margin-bottom: 0px;
}
/**********************************.  HOME Locations.  **********************************/

.contacto {
  background: #cbffd97a;
  padding: 2rem 0;
  & h2 {
    margin: 1rem 0 3rem;
  }
}
.mapa iframe {
  min-height: 100%;
  max-width: clamp(320px, 90vw, 600px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mapa > p {
  color: var(--dark-gray);
}
.contacto-text .map-switch-btn:hover {
  color: #ff8400;
  text-shadow: -3px 2px #dadada8c;
  transition:
    color 0.3s,
    text-shadow 0.3s;
}
.locations {
  margin: 2rem 0;
  display: flex;
  flex-flow: row wrap;
}
.locations .big-text {
  margin-top: 0;
}
.contacto_address {
  display: flex;
  flex-direction: row;
}
.contacto_address figure {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 1rem 0;
}
.contacto_address figure img {
  width: 100%;
}
.contacto_text .big-text {
  text-decoration: underline;
}
.contacto .color-blue {
  color: var(--primary-blue);
}
.cursor-pointer {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .locations {
    margin: 2rem 0;
    display: flex;
    flex-flow: row;
  }
}
@media screen and (min-width: 960px) {
  .locations {
    flex-flow: column;
  }
}
@media screen and (min-width: 1100px) {
  .locations {
    margin: 0 4rem;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
}

/**********************************   *footer           **********************************/

.site-info {
  background: #fff;
  display: flex;
  flex-flow: row wrap;
  border-top: 3px solid var(--primary-orange);
}
footer {
  & .h3-holder {
    margin: 0rem auto;
  }
}

.big-green {
  color: white;
  position: relative;
  height: 550px;
  & img {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  & .wrapper {
    position: absolute;
    top: 0;
    left: 0;
  }
  & h3 {
    border: none;
  }
  & span {
    background: var(--secondary-orange);
    border: var(--primary-orange) 2px solid;
  }

  & .texto-requisitos {
    z-index: 2;
    position: absolute;
    bottom: 0%;
    left: 50%;
    width: 960px;
    max-width: 90%;
    transform: translateX(-50%);
  }

  & .texto-requisitos p {
    /*font-size: 4.6rem;
    line-height: 4.85rem;*/
    font-weight: 400;
    margin: 1.5rem;
    font-size: 1.2rem;
    line-height: normal;
  }

  & .texto-requisitos span:last-of-type {
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border: white solid 2px;
    margin: 3.5rem auto;
    border-radius: 5px;
    font-weight: 500;
    display: block;
    margin-top: 1rem;
    width: fit-content;
    border: var(--primary-orange) 2px solid;
    padding: 1rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .big-green .texto-requisitos p {
    text-shadow: transparent;
  }
  .big-green {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .big-green .texto-requisitos p {
    text-shadow: transparent;
  }
}
.contacto {
  padding: 2rem 0;
}

.contacto .wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.contacto-left h3 {
  color: var(--primary-blue);
  text-transform: none;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: left;
  border: none;
}
.contacto-left {
  width: 95%;
}

.contacto-right {
  width: 95%;
  display: flex;
  justify-content: center;
}
.contacto-right iframe {
  width: 100%;
  min-height: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: #00000082 0 0px 13px;
}
@media (min-width: 960px) {
  .contacto .wrapper {
    flex-flow: row;
    align-items: self-start;
    justify-content: space-around;
  }

  .contacto-left,
  .contacto-right {
    width: 50%;
    justify-content: center;
  }
  .contacto-right iframe {
    width: 400px;
    height: 450px;
  }
}
/****************************************. contact form **************************/
div#wpforms-18,
div#wpforms-34 {
  max-width: 750px;
  width: 95%;
  border: thin solid #fdcb00;
  border-radius: 15px;
  padding: 1rem;
  background: #ffcd005e;
}
.page-template-contact .site-main {
  background: var(--secondary-blue);
}
.inner-hero h1 {
  color: white;
  position: relative;
  z-index: 99;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(2rem, 100vw, 5rem);
  font-weight: 400;
  margin: 0 auto;
}

.container {
  position: relative;
}
.inner-hero::before {
  content: "";
  background: linear-gradient(270deg, #00ca9100 35%, #00ca91 100%);
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: 2;
  left: 0;
}
section.inner-hero {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-bottom: 0;
}
.contact-page section.inner-hero {
  background-image: url(http://rosemeadcollege.edu/wp-content/themes/rosemead_v2/img/header-img.webp);
}
@media (min-width: 768px) {
  section.inner-hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
/****************************************. admisiones **************************/
/*Admisiones*/

.page-template-admisiones section.info {
  background: white;
}
.admisiones_holder {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  gap: 2rem;
}

.admisiones_card {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  background: #f1f1f1;
  border-radius: 15px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: #72727287 0 0 10px;
}

.admisiones_card:hover {
  transform: scale(1.05);
  box-shadow: #727272d9 -1px 7px 10px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.admisiones_card h3 {
  font-size: 2rem;
  font-weight: 500;
  background: #03265f;
  color: white;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  padding: 0.5rem 1rem;
  border: none;
}

.admisiones_card ul {
  list-style: none;
  padding: 0 1rem;
}

.admisiones_card ul li {
  margin-bottom: 1rem;
  list-style: inside;
}

/* Footer */

footer h3 {
  color: var(--primary-blue);
}
section.plataforma24 {
  text-align: center;
  margin-bottom: 4rem;
  & .big-text {
    font-size: 2.4rem;
  }
  & .inscribete {
    margin: 2rem auto;
    width: fit-content;
  }
}
.plataforma-text {
  font-size: 1.6rem;
  font-weight: 200;
  color: #03265e;
}
.site-footer {
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

.site-info .wrapper {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 95%;
  padding: 1rem 0;
  color: white;
  row-gap: 2rem;
  align-items: center;
}

.footer-nav-maes,
.footer-nav-admisiones,
.footer-nav-contacto {
  margin-top: 1rem;
}

#menu-footer {
  list-style: none;
}

ul#menu-footer a {
  color: white;
  font-weight: 500;
}

.footer-block-2 img {
  width: 100%;
  max-width: 270px;
}
a.tel {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}
.redes-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}
.redes {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  & img {
    width: 2rem;
    height: 2rem;
  }
}
@media (min-width: 960px) {
  .site-info .wrapper {
    flex-flow: row wrap;
    row-gap: 2rem;
    align-items: flex-start;
  }
}
/* Responsive */
@media (min-width: 768px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-navigation {
    padding: 0 1rem;
  }
}

@media (min-width: 1200px) {
  /* Add your styles for screens larger than 1200px here */
}

/************************************** PAGE ABOUT US ***************************************************/
.mission-statement {
  & article {
    max-width: 960px;
    margin: 0 auto;
    width: 95%;
  }
}
.mission-statement.wrapper {
  margin: 3rem auto;
  & span {
    font-weight: 700;
    font-family: "Instrument Serif", sans-serif;
    color: var(--primary-orange);
    font-size: 2.5rem;
    font-style: italic;
    margin-right: 5px;
  }
  & .hero-btn {
    text-align: center;
    margin: 2rem auto 0;
    position: relative;
    display: block;
  }
}
.about-us .info-holder {
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
  & figure {
    width: 100%;
    max-width: 490px;
  }
}
.testimonials-about {
  margin: 3rem auto;
  & article {
    max-width: clamp(300px, 60vw, 600px);
    margin: 0 auto;
    width: 95%;
  }
  & p {
    font-size: 2.5rem;
  }
  & img {
    width: clamp(50px, 10vw, 100px);
  }
}
.testimonials-about .quotation-caps {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 1rem;
}
.testimonials-about .quotation-author {
  font-weight: 300;
  font-size: 1.1rem;
}
section.testimonials-about article p::before {
  cssontent: '"';
  display: block;
  font-weight: 500;
  font-size: 10rem;
  position: absolute;
  top: -89px;
  left: 0;
  z-index: 44;
}
.m-1-0 {
  margin: 1rem 0;
}
.no-transform {
  text-transform: none;
}
.about-image-section figure {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0;
  & img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .about-us .info-holder {
    flex-flow: row;
  }
  /* Add your styles for screens larger than 1200px here */
}

/********************************************* POST PROGRAM ***************************************************/

.program-description h2 {
  text-transform: none;
  margin-top: 2rem;
}
#course-outcomes {
  padding-top: 1rem;
  margin-top: 3rem;
  background: linear-gradient(180deg, #eff5ff 60%, #eff5ff00 60%);
}
#course-outcomes .outcomes-container {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  justify-content: center;
}
#course-outcomes h3 {
  font-size: clamp(1.2rem, 50vw, 1.6rem);
  font-family: "Inter", sans-serif;
  font-style: normal;
  margin: 2rem auto;
  text-align: center;
}
.italic.small.fs1-4 {
  font-style: italic;
  font-size: 1.4rem;
  font-family: "Instrument Serif";
  text-align: center;
  margin: 0 0 2rem;
}
#course-outcomes .outcome-card {
  /* flex: 1 1 calc(50% - 1rem); */
  background: linear-gradient(0deg, #eff5fe 0%, #ffffff 100%);
  padding: 1rem;
  border-radius: 8px;
  width: 95%;
  border: solid thin var(--primary-orange);
  position: relative;
}

@media (min-width: 960px) {
  #course-outcomes .outcome-card {
    width: 32%;
    padding: 4rem 1rem 1rem;
  }
  #course-outcomes h3 {
    margin: 2rem auto 5rem;
  }
  .outcome-card::before {
    content: "";
    display: block;
    background-image: url("http://localhost:8080/wp-content/themes/rosemead_v2/img/program-face-4.webp");
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 90px;
    height: 90px;
    top: -48px;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
  }
  .outcome-card:nth-of-type(2)::before {
    background-image: url("http://localhost:8080/wp-content/themes/rosemead_v2/img/program-face-2.webp");
  }
  .outcome-card:nth-of-type(3)::before {
    background-image: url("http://localhost:8080/wp-content/themes/rosemead_v2/img/program-face-3.webp");
  }
}
.objectives_text {
  margin: 0 auto;
  text-align: center;
  & h3 {
    margin-bottom: 0;
  }
  & p {
    margin: 0rem auto 2rem;
    text-align: center;
  }
}
.performance-objectives-container {
  margin: 0 auto;
  & ul {
    display: flex;
    flex-flow: row wrap;
    gap: 1.3rem;
    list-style: circle;
    margin: 0 auto;
    justify-content: space-evenly;
  }
  & li {
    width: clamp(320px, 30vw, 430px);
    list-style: disc;
    flex: 1 1 auto;
  }
}
.performance-objectives-container ::marker {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  visibility: visible;
  color: var(--primary-orange);
}
#performance-objectives {
  margin: 3rem auto;
  & h3 {
    font-size: clamp(1.2rem, 50vw, 1.6rem);
    font-family: "Inter", sans-serif;
    font-style: normal;
    color: var(--primary-blue);
    margin: 2rem auto 0;
    text-align: center;
  }
}
.course-testimonials {
  & hr {
    width: 80%;
    margin: 0 auto;
    color: var(--primary-orange);
    background: var(--primary-orange);
    height: 1px;
    border: none;
  }
  & h4 {
    text-transform: uppercase;
    letter-spacing: 1.7px;
    margin: 2rem 0;
  }
  & p {
    color: var(--primary-blue);
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 1.6rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
  }
  & .quotation-caps {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 1rem;
    color: black;
    font-family: "Inter", sans-serif;
    font-style: normal;
  }
  & .quotation-author {
    font-weight: 300;
    font-size: 1.1rem;
    color: black;
    font-style: normal;
    font-family: "Inter", sans-serif;
  }
}
.testimonial-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1.5rem;
  & figure {
    margin: 0;
    padding: 0;
    width: 190px;
    & img {
      width: 100%;
      border-radius: 50%;
      border: #ff8400 solid 2px;
    }
  }
}
.program-bottom-image {
  margin: 3rem auto;
  & img {
    width: 100%;
    height: auto;
  }
}
