:root {
  --body-line-height: 1.5;
  --body-text-align: left;
  --font-family-sans-serif: PIXITFont SSm A, PIXITFont SSm B, Arial, sans-serif;
  --font-family-bold-sans-serif: PIXITFont A, PIXITFont B, Arial, sans-serif;
  --header-height: 60px;
  --header-height-xl: 80px;
  --header-height-2xl: 90px;
  --brand-container-border-color: #333333;
  --main-horizontal-padding-md: 60px;
  --main-horizontal-padding-xl: 80px;
  --main-horizontal-padding-2xl: 90px;
  --filter-height: 55px;
  --filter-height-xl: 70px;
  --filter-height-2xl: 80px;
  --hero-section-pt: 120px;
  --hero-section-pt-md: 160px;
  --hero-section-pt-lg: 180px;
  --hero-section-pt-xl: 200px;
  --hero-section-pt-2xl: 240px;
  --dark-gray: #222222;
  --medium-dark-gray: #1c1c1c;
  --medium-gray: #b2b2b2;
  --light-medium-gray: #ececec;
  --light-gray: #f7f7f7;
  --black: #000000;
  --white: #ffffff;
  --gold: #c2b5a3;
  --primary-color: #0e48b6;
  --secondary-color: #c2b5a3;
  --success-color: #4caf50;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #ff6f61;
  --dark-gray-rgb: 34, 34, 34;
  --medium-gray-rgb: 178, 178, 178;
  --light-medium-gray-rgb: 236, 236, 236;
  --light-gray-rgb: 247, 247, 247;
  --black-rgb: 0, 0, 0;
  --white-rgb: 255, 255, 255;
  --gold-rgb: 194, 181, 163;
  --primary-rgb: 34, 34, 34;
  --secondary-rgb: 194, 181, 163;
  --success-rgb: 76, 175, 80;
  --info-rgb: 23, 162, 184;
  --warning-rgb: 255, 193, 7;
  --danger-rgb: 255, 111, 97;
  --font-size-base: 20px;
  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;
  --font-weight-ultra-bold: 900;
  --grid-gutter-x: 30px;
  --grid-gutter-y: 0;
  --cubic-bezier-primary: cubic-bezier(0.42, 0.22, 0.42, 1);
  --border-radius: 0.375rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  --border-radius-xxl: 2rem;
  --border-radius-2xl: 4rem;
  --border-radius-pill: 50rem;
  --border-radius-rounded: 25px;
  --box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  --box-shadow-sm: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 0 75px 0 rgba(0, 0, 0, 0.1);
  --box-shadow-xl: 0 0 100px 0 rgba(0, 0, 0, 0.1);
  --border-width: 1px;
  --border-style: solid;
  --border-color: #ececec;
  --notification-background-color: #37393b;
  --notification-border-color: #505052
}

html {
  font-size: var(--font-size-base);
  line-height: var(--body-line-height);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #fff0;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat', sans-serif;
}

body.dark {
    background:#222;
}

.intro-container{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    background: url(/images/intro-san-rafael-jalalpa.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.intro-content{
    max-width:900px;
    color:white;
    opacity:0;
    transform:translateY(50px);
}

.logo{
    width:200px;
    margin-bottom:25px;
    filter:drop-shadow(0 0 10px rgba(255,255,255,.3));
}

.title{
    font-family:'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.subtitle{
    font-size:1.2rem;
    font-weight:300;
    line-height:1.8;
    color:#e0e0e0;
    margin-bottom:40px;
}

.btn-enter{
    display:inline-block;
    padding:16px 40px;
    border:2px solid #d4af37;
    color:#fff;
    text-decoration:none;
    font-size:1rem;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.btn-enter:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(212,175,55,.35);
}

@media(max-width:768px){

    .subtitle{
        font-size:1rem;
    }

    .btn-enter{
        padding:14px 30px;
    }

}

.topbar {
    background: #ffffffc2;
    z-index: 99999;
    position: fixed;
    width: 100%;
    box-shadow: 3px 2px 15px #000;
}

.topbar_lf {
    width: 10%;
}

.topbar_logo {
    width: 120px;
    height: 120px;
    background: #c2b5a3;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 3px 2px 15px #000;
}

.topbar_logo img {
    width: 100%;
}

.topbar_ml {
    width: 74%;
}

.topbar_ml ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar_ml ul li {
    display: inline;
    margin: 0;
}

.topbar_ml ul li a {
    display: inline;
    margin: 0 1rem;
    color: #000;
}

.topbar_rt {
    width: 16%;
}

.topbar_rt a {
    background: #c18b3f;
    color: #FFF;
    padding: 2rem 3rem;
    margin: 0;
    display: flex;
    text-align: center;
}

.topbar_rt a span {
  font-size: .8rem;
  margin-right: .5rem;
}

.topbar_rt a svg {
  width: 1rem;
}

header {
  width: 100%;
  max-height: 1090px;
  padding: 0;
  margin: 0;
}

.header_info-image {
    translate: none;
    rotate: none;
    scale: none;
    position: relative;
    overflow: hidden;
}

.header_info-image img {
    width: 100%;
}

.header_info-image .header_info-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000a0;
}

.header_info {
    position: absolute;
    top: 10rem;
    left: 5rem;
    width: 50%;
}

.header_info h1 {
    font-size: 96px;
    line-height: 96px;
    color: #FFF;
    margin-bottom: 1rem;
}

.header_info h1 span {
    font-size: 36px;
    line-height: 40px;
    color: var(--secondary-color);
    display: block;
    margin-left: 2rem;
}

.header_info-content p {
    font-size: .9rem;
    color: #FFF;
}

.header_info-content a {
  color: var(--secondary-color);
}

.sr_oracion {
    padding: 7rem 10rem;
    text-align: center;
    color: #FFF;
    background-color: #222;
}

.sr_oracion h2 {
    color: #FFF;
    margin-bottom: 1rem;
}

.sr_oracion-text {
    background-color: #846e1721;
    padding: 3rem 2rem 1rem;
    border-radius: 1rem;
    width: 70%;
    margin-top: 2rem;
}

.sr_orden {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 7rem 0;
}

.sr_orden a {
  color: var(--secondary-color);
}

.sr_orden img {
    width: 10rem;
    margin: 3rem 0;
}

.sr_orden ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sr_comunidades {
    background-color: var(--light-gray) !important;
    padding: 7rem 0;
}

.sr_comunidades-section {
    width: 80%;
    margin: 0 auto;
}

.sr_comunidades-section h2 {
    font-size: 2rem;
    text-transform: uppercase;
    width: 50%;
    margin-bottom: 2rem;
    color: #87745a;
}

.sr_comunidades-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

.sr_comunidades-list h3 {
    font-size: 1.5rem;
}

.sr_comunidades-list a {
  color: #c18b3f;
}

.sr_comunidades-image {
    overflow: hidden;
    border-radius: 1rem;
    max-height: 594px;
    max-width: 397px;
}

.sr_comunidades-image img {
    width: 100%;
}

.sr_history_content img {
    width: 20rem;
    border: 15px var(--black) solid;
    margin: 0 2rem 2rem 0;
    float: left;
}

.sr_history_content h6 {
    font-size: 1rem;
    line-height: 1.625;
    color: var(--secondary-color) !important;
    margin-left: 1rem;
}

.sr_history_content h1 {
    font-size: 3.75rem;
    line-height: 1.17;
    margin-bottom: 1rem;
}

.sr_history_content .sr-link {
    margin-bottom: 1rem;
    display: block;
}

.sr_serv_office {
    width: 80%;
    background-color: var(--light-gray);
    border-radius: 1rem;
    margin: 5rem auto 0;
    padding: 3rem;
}

.sr_serv_office h2 {
    font-size: 2.5rem;
}

.sacr-title {
  padding: 1.5rem 2rem;
}

.sacr-title h2 {
  margin: 0;
}

.sacr-cols-v1 {
  width: 100%;
  padding: 10rem 0;
}

.sacr-baptism {
  width: 85%;
  margin: 0 auto;
  justify-content: space-evenly;
}

.sacr-baptism-img {
  width: 680px;
}

.sacr-baptism-img img {
  width: 100%;
}

.sacr-cols-v2 {
  width: 100%;
}

.sacr-confirmation {
  position: relative;
}

.sacr-confirm-text {
  background: #C2B5A3;
  width: 80%;
  padding: 9rem 3rem 9rem 9rem;
}

.sacr-confirm-text p {
  width: 25rem;
}

.sacr-confirm-img {
  position: absolute;
  z-index: 999;
  right: 2rem;
  top: 2rem;
  width: 800px;
}

.sacr-confirm-img img {
   width: 100%;
}

.sacr-cols-v3 {
  width: 100%;
}

.sacr-eucharist {
  display: flex;
  align-items: center;
}

.sacr-eucharist-img {
  width: 680px;
}

.sacr-eucharist-img img {
  width: 85%;
}

.sacr-healing {
  display: flex;
  align-items: center;
}

.sacr-healing-cont1 {
  padding: 10rem;
  background-color: #dcd9c8;
  text-align: center;
}

.sacr-healing-cont2 {
  padding: 10rem;
  background-color: #c2b5a3;
  text-align: center;
}

.sacr-healing-note {
  padding: 1.5rem 0;
  background-color: #f6eadc;
  text-align: center;
}

.sacr-healing-note p {
  margin: 0;
}

.sacr-priestly {
  width: 85%;
  margin: 0 auto;
  justify-content: space-evenly;
}

.sacr-priestly-img {
  width: 400px;
}

.sacr-priestly-img img {
  width: 100%;
}

.bgPriestlyCols {
  background: linear-gradient(
    to right,
      #000 0%,
      #000 30%,
      #FFF 30%,
      #FFF 100%
  );
}

.sacr-marriage {
  display: flex;
  align-items: center;
  padding: 10rem 0;
  justify-content: space-evenly;
  width: 80%;
  margin: 0 auto;
}

.sacr-marriage-img {
  width: 450px;
}

.sacr-marriage-img img {
  width: 85%;
}

.page-sacrament {
    width: 75%;
    margin: 0 auto 5rem;
}

.sr_pastoral_item {
    width: 70%;
    margin: 3rem auto;
    background-color: var(--light-gray);
    border-radius: 1rem;
    padding: 3rem;
}

/* GENERAL */
.cls-aw-1 {
  fill: none;
  stroke: #FFF;
  stroke-miterlimit: 10;
}

.bgGray {
  background-color: #F1F1F1;
}

.bgDark {
  background-color: #000;
  color: #FFF;
}

.bgCreamCols {
  background: linear-gradient(
    to right,
      #f4dcc2 0%,
      #f4dcc2 30%,
      #f6eadc 30%,
      #f6eadc 100%
  );
}

.bgCream {
  background: #f6eadc;
}

.sr-link {
    color: var(--secondary-color);
}

.main {
    width: 75%;
    margin: 0 auto 7rem;
}

.sr_main {
    width: 100%;
    margin: 0 auto;
}

.sr-pt {
    padding-top: 10rem;
}

.text-gold {
    color: var(--secondary-color);
}

.containter {
    padding: 0 !important;
    margin: 0 !important;
}

.section.section-md {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-light-gray {
    background-color: var(--light-gray) !important;
}

.text-secondary {
    --text-opacity: 1;
    color: rgba(var(--secondary-rgb), var(--text-opacity)) !important;    
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-bottom: 0;
    font-family:'Montserrat', sans-serif;
}

.sr-section-item {
    width: 80%;
    margin: 0 auto;
}

.sr-section-item h1 {
    text-transform: uppercase;
}
.reveal-item-inner img {
    border-radius: 1rem;
}

.info-vertical .text-secondary {
    text-transform: uppercase;
}

.sr_button_w {
    padding: 4rem;
    width: 100%;
    display: block;
    text-align: left;
    background-color: #222;
    transition: color 0.4s var(--cubic-bezier-primary), background 0.4s var(--cubic-bezier-primary);
}

.sr_button_w:hover {
    background-color: var(--secondary-color);
}

.sr_button_w:hover h4 {
    color: var(--black);
}

.sr_button_w h4 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: .5rem;
    color: var(--secondary-color);
}

.sr_button_w p {
    font-size: 1.1rem;
    letter-spacing: .15rem;
    color: #FFF;
}

.sr_btn-text {
    padding-right: 2rem;
}

.sr_ico-next {
    width: 2.5rem;
}

.sr_footer_location svg {
  width: auto;
  height: 28px;
  margin-right: 10px;
}

.footer_content {
    width: 80%;
    margin: 0 auto;
}

.footer.footer-dark {
  background-color: var(--dark-gray);
  color: var(--white)
}

.footer.footer-dark .brand-container {
  background-color: var(--gold)
}

.footer.footer-dark .brand-logo path {
  fill: var(--dark-gray)
}

.footer.footer-dark h5,
.footer.footer-dark h6 {
  color: var(--gold) !important
}

.footer.footer-dark p {
  color: var(--light-gray)
}

.footer.footer-dark a {
  color: var(--light-gray)
}

.footer.footer-dark a:hover {
  color: var(--white)
}

.footer.footer-dark .footer-logo path {
  fill: var(--white)
}

.footer.footer-dark hr {
  border-color: rgb(255 255 255 / .1)
}

.footer.footer-dark .copyright {
  color: rgb(255 255 255 / .2)
}

.footer.footer-light {
  background-color: var(--light-gray);
  color: var(--dark-gray)
}

.footer.footer-light .brand-container {
  background-color: var(--dark-gray)
}

.footer.footer-light .brand-logo path {
  fill: var(--white)
}

.footer.footer-light h5,
.footer.footer-light h6 {
  color: var(--dark-gray) !important
}

.footer.footer-light p {
  color: var(--dark-gray)
}

.footer.footer-light a {
  color: var(--dark-gray)
}

.footer.footer-light a:hover {
  color: var(--gold)
}

.footer.footer-light .footer-logo path {
  fill: var(--dark-gray)
}

.footer.footer-light hr {
  border-color: rgb(0 0 0 / .1)
}

.footer.footer-light .copyright {
  color: var(--medium-gray)
}

.footer.footer-light .content-separator.separate-left:after,
.footer.footer-light .content-separator.separate-right:before,
.footer.footer-light .content-separator.separate-center:after,
.footer.footer-light .content-separator.separate-center:before {
  background: rgb(0 0 0 / .1)
}

.footer.footer-large {
  padding: 90px 0 80px 0
}

.footer.footer-large .brand-container {
  position: relative;
  width: var(--header-height-xl);
  height: var(--header-height-xl)
}

.footer.footer-large .brand-logo {
  display: block;
  width: auto;
  height: 40px
}

.footer.footer-large .footer-brand {
  display: inline-block;
  padding: 0;
  margin: 0
}

.footer.footer-large .footer-brand:hover,
.footer.footer-large .footer-brand:focus {
  text-decoration: none
}

.footer.footer-large .content>div[class*="col-"] {
  margin: 0 0 30px 0
}

.footer h5 {
  font-family: var(--font-family-bold-sans-serif);
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
  line-height: normal;
  margin: 0 0 30px 0;
  letter-spacing: .08rem;
  text-transform: uppercase
}

.footer p {
  font-size: .9rem
}

.footer a {
  font-size: 1rem;
  text-decoration: none
}

.footer a:hover {
  text-decoration: none
}

.footer .link-icon-xl {
  width: auto;
  height: 28px;
  margin-right: 10px
}

.footer .link-icon-xl.float-left {
  margin-right: 14px
}

.footer .link-text {
  font-size: 1rem;
  margin-top: 2px;
  vertical-align: -1px;
  overflow: hidden
}

.footer ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none
}

.footer ul li {
  display: inline-block
}

.footer ul li a {
  font-size: 1rem;
  display: inline-block;
  text-transform: none;
  text-decoration: none
}

.footer ul.list-horizontal {
  line-height: normal
}

.footer ul.list-horizontal a {
  padding: 0 30px 0 0;
  margin-bottom: 16px
}

.footer ul.list-horizontal li:last-child a {
  padding: 0
}

.footer ul.list-horizontal.social-line a {
  margin-bottom: 16px
}

.footer ul.list-horizontal .link-icon {
  height: 25px;
  margin-right: 10px
}

.footer ul.list-vertical {
  line-height: 1.6
}

.footer ul.list-vertical li {
  display: block;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 0
}

.footer ul.list-vertical li a {
  padding: 0 8px 16px 8px;
  font-size: .9rem;
  display: block
}

.footer .footer-logo {
  width: auto;
  height: 30px
}

.footer .copyright {
  font-size: .8rem;
  font-weight: var(--font-weight-medium);
  line-height: 2.5
}

.service-icon,
.value-icon {
  width: auto;
  height: 80px;
  display: inline-block
}

.service-icon.outline-dark-gray g,
.value-icon.outline-dark-gray g {
  fill: none;
  stroke: var(--dark-gray);
  stroke-width: 8
}

.service-icon.outline-gold g,
.value-icon.outline-gold g {
  fill: none;
  stroke: var(--gold);
  stroke-width: 8
}

.brand-icon {
  width: auto;
  height: 55px;
  display: inline-block
}

.award-icon {
  width: auto;
  height: 40px;
  display: inline-block
}

.award-icon g,
.award-icon path {
  fill: var(--white)
}

.review-icon {
  width: auto;
  height: 40px;
  display: inline-block
}

.known-from-icon {
  width: auto;
  max-width: 80%;
  max-height: 30px;
  object-fit: contain;
  vertical-align: middle
}

.benefit-icon {
  font-size: 3.5rem
}

.link-icon {
  height: 22px;
  margin-right: 8px
}

.stroke-primary {
  stroke: var(--primary-color)
}

.stroke-secondary {
  stroke: var(--secondary-color)
}

.stroke-dark-gray {
  stroke: var(--dark-gray)
}

.stroke-gold {
  stroke: var(--gold)
}

.fill-primary {
  fill: var(--primary-color)
}

.fill-secondary {
  fill: var(--secondary-color)
}

.fill-dark-gray {
  fill: var(--dark-gray)
}

.fill-gold {
  fill: var(--gold)
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(198, 147, 19, 0.5)
}

.btn-check:checked+.btn-outline-primary,.btn-check:active+.btn-outline-primary,.btn-outline-primary:active,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus {
    box-shadow: 0 0 0 .25rem rgba(198, 147, 19, 0.5)
}


.btn-primary {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-check:focus+.btn-primary,.btn-primary:focus {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 .25rem rgba(198, 147, 19, 0.5)
}

.btn-check:checked+.btn-primary,.btn-check:active+.btn-primary,.btn-primary:active,.btn-primary.active,.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-check:checked+.btn-primary:focus,.btn-check:active+.btn-primary:focus,.btn-primary:active:focus,.btn-primary.active:focus,.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(198, 147, 19, 0.5)
}

.topbar-mobile {
  display: none;
}

.tbmobile {
  width: 100%;
  justify-content: space-between;
  position: fixed;
  z-index: 99999;
  background: #ffffffc2;
}

.topbar_m_menu svg {
  height: 2.5rem;
}

.topbar_m_menu {
  padding: 1rem 2rem;
  background: var(--secondary-color);
  cursor: pointer;
}

.tbmobile-menu {
  position: fixed;
  z-index: 9999999;
  background: #FFF;
  width: 80%;
  height: 100vh;
  padding: 4rem;
  display: none;
}

.tbmobile-menu ul {
  list-style: none;
}

.tbmobile-menu ul li a {
  color: var(--secondary-color);
  padding: .5rem 0;
  display: block;
}

.mmClose {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  background: var(--secondary-color);
  margin: 0;
  cursor: pointer;
}

.mmClose p {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  color: #FFF;
}

.mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #00000091;
  z-index: 999999;
  display: none;
}

@media screen and (max-width: 1380px){
  .sacr-confirm-text {
    padding: 9rem 3rem;
  }

  .sacr-confirm-text p {
    width: 20rem;
  }

  .sacr-healing-cont1 {
    padding: 10rem 8rem;
  }

  .sacr-healing-cont2 {
    padding: 10rem 8rem;
  }
}

@media screen and (max-width: 1080px){
  .topbar {
    display: none !important;
  }
  
  .topbar-mobile {
    display: block;
  }

  .sr-section-item {
    display: block !important;
  }

  .sr_comunidades-info {
    display: block !important;
  }

  .header_info {
    width: 70%;
  }

  .header_info h1 {
    font-size: 86px;
    line-height: 86px;
  }

  .sr-section-item img {
    width: 60% !important;
    margin: 4rem auto 0;
  }

  .sr_comunidades-section h2 {
    width: 100%;
    text-align: center;
  }

  .sr_comunidades-list {
    width: 60%;
    margin: 0 auto;
  }

  .sr_comunidades-image {
    margin: 3rem auto 0;
  }

  .sr_oracion_title {
    text-align: center;
  }

  .sr_oracion-text {
    margin: 2rem auto;
  }

  .sacr-baptism {
    display: block !important;
  }

  .sacr-baptism-img {
    width: 80% !important;
    margin: 0 auto 2rem;
  }

  .sacr-baptism-txt {
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }

  .bgCreamCols {
    background: #f6eadc;
  }

  .sacr-confirmation {
    background: #c2b5a3;
    padding: 5rem 0;
  }

  .sacr-confirm-text {
    padding: 2rem 3rem;
    text-align: center;
    margin: 0 auto;
  }

  .sacr-confirm-text h2 {
    color: #FFF;
  }

  .sacr-confirm-text p {
    margin: 0 auto 2rem;
    color: #FFF;
  }

  .sacr-confirm-img {
    position: initial;
    width: 800px;
    margin: 0 auto;
  }

  .sacr-cols-v3 {
    padding: 0;
  }

  .sacr-eucharist {
    display: block;
    padding: 5rem 0;
  }

  .sacr-eucharist-img {
    margin: 0 auto;
    text-align: center;
  }

  .sacr-eucharist-text {
    width: 60%;
    text-align: center;
    margin: 2rem auto 0;
  }

  .sacr-healing {
    display: block;
  }

  .sacr-healing-cont1 {
    width: 100%;
    padding: 5rem 8rem;
  }

  .sacr-healing-cont2 {
    width: 100%;
    padding: 5rem 8rem;
  }

  .sacr-cols-v1 {
    padding: 7rem 0;
  }

  .bgPriestlyCols {
    background: #FFF;
  }

  .sacr-priestly {
    display: block !important;
    text-align: center;
  }

  .sacr-priestly-img {
    width: 500px;
    margin: 0 auto;
  }

  .sacr-priestly-txt {
    width: 80%;
    margin: 2rem auto;
  }

  .sacr-marriage {
    display: block;
    padding: 7rem 0;
  }

  .sacr-marriage-text {
    width: 80%;
    text-align: center;
    margin: 0 auto 2rem;
  }

  .sacr-marriage-img {
    margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-width: 820px) {
  .header_info h1 {
      font-size: 66px;
      line-height: 66px;
  }

  .header_info {
    left: 50%;
    width: 90%;
    margin-left: -45%;
  }

  .header_info-image img {
    width: auto;
    height: 800px;
  }

  .sr_history_content img {
    margin: 2rem 0;
    float: none;
  }

  .sr_oracion-text {
    width: 90%;
  }

  .sr_history_content h1 {
    font-size: 3rem;
  }

  .sr_serv_office {
    width: 100%;
  }

  .sr_pastoral_item {
    width: 100%;
  }

  .sacr-confirm-img {
    width: 80%;
  }

  .sacr-eucharist-img {
    width: 80%;
  }

  .sacr-priestly-img {
    width: 80%;
  }

  .sacr-marriage-img {
    width: 80%;
  }
}

@media screen and (max-width: 540px) {
  .main {
    width: 85%;
  }

  .header_info h1 {
      font-size: 56px;
      line-height: 56px;
  }

  .sr-section-item img {
    width: 80% !important;
    margin: 2rem auto 0;
  }

  .sr_comunidades-list {
    width: 100%;
  }

  .sr_oracion-text {
    width: 100%;
  }

  .sr_serv_office {
    padding: 3rem 1rem;
  }
  
  .sr_serv_office h2 {
    font-size: 1.8rem;
  }

  .sacr-confirm-text p {
    width: 100%;
  }

  .sacr-healing-cont1 {
    padding: 5rem 0;
  }

  .sacr-healing-cont2 {
    padding: 5rem 0;
  }

  .sacr-confirm-text {
    padding: 2rem 0rem;
  }
}

@media screen and (max-width: 420px) {
  .tbmobile-menu {
    padding: 4rem 1rem;
  }

  .header_info-image img {
    height: 950px;
  }

  .sr_comunidades-section h2 {
    font-size: 1.8rem;
  }

  .sr_history_content h1 {
    font-size: 2rem;
  }

  .sr_history_content img {
    width: 95%;
    margin: 0 0 2rem;
  }

  .sr_pastoral_item {
    padding: 3rem 2rem;
  }
}