@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;900&display=swap');


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

h1 {
  text-align: center;
  font-family: lato;
  margin: .5 em;
  font-size: clamp(2em, 5vw, 5em);
}


h3 {
  text-align: center;
  font-family: lato;
  margin: .5 em;
  font-size: clamp(2em, 5vw, 5em);
}
.container {
  width: 100%;
  max-width: 100%;
  min-width: 30%;
  margin:auto;
}

img {
  width: 100%;
  max-width: 100%;
  min-width: 30%;
  
}

:root {
  --primary-color: #232323;
  --alt-color: #0c8599;
  --bg-color: #fbfbfb;
}

body {
  font-family: 'Roboto', sans-serif;
}

.wrapper {
  width: 100vw;
  overflow: hidden;
  background-color: var(--bg-color);
}

.vector {
  width: 100%;
  height: 100%;
}

/* ======= NAVBAR ======= */

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 2em;
}

.brand {
  font-size: 1em;
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
}

.brand span {
  color: var(--alt-color);
}

.mobile-brand {
  background-color: var(--bg-color);
  padding: 5px 20px;
}

.fa-bars {
  font-size: 2.3em;
  cursor: pointer;
}


/* ======= MENU ======= */

.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  background-color: var(--primary-color);
  height: 50vh;
  z-index: 1;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
}

.show-menu {
  transform: translateX(0%);
}

.menu__links {
  list-style: none;
  margin-bottom: 3em;
}

.menu__item {
  font-size: 1em;
  color: var(--bg-color);
  padding: 1em;
  cursor: pointer;
  text-decoration: none;
}

.menu__item--active {
  color: var(--alt-color);
}

/* ======= MAIN ======= */

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 2em;
  margin-top: -5em;
}

.main-img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  z-index: 0;
  animation-name: img-animation;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes img-animation {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

.content-info__subtitle {
  font-size: clamp(1em, 3vw, 1.5em);
  color: var(--primary-color);
  font-weight: bold;
}

.content-info__title {
  font-family: 'Montserrat', sans-serif;
  color: var(--alt-color);
  font-size: 2em;
}

.content-info__text {
  color: rgba(35, 35, 35, .7);
  font-size: 1.1em;
  margin: .3em 0em .7em;
}

.content-info__button {
  background-color: var(--primary-color);
  color: var(--bg-color);
  padding: 10px 20px;
  font-size: 1.2em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.content-info__button:hover {
  background-color: var(--alt-color);
  color: var(--primary-color);
}


/* ======= SOTIAL NETWORK ======= */

.sotial-network {
  width: 100vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: -2em;
}

.fa-brands {
  font-size: 2em;
  color: var(--primary-color);
  margin: 0 .2em;
  margin-top: -2em;
}

.fa-brands:hover {
  color: var(--alt-color);
}

@media screen and (min-width: 720px) {
  .container {
    flex-direction: row;
    align-items: center;
  }

  .brand {
    margin-left: 2em;
  }

  .main-img {
    width: 50%;
  }

  .conten-info {
    padding: 2em;
    width: 40%;
  }

  .conten-info__title {
    font-size: 2.5em;
  }

  .conten-info__text {
    font-size: 1em;
  }

}

@media screen and (min-width: 700px ) {
  .vector {
    background-image:   url(img/bible-notepad.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }

  .menu-bar,
  .mobile-brand {
    display: none;
  }

  .menu {
    transform: translateX(0%);
    background: none;
    width: 100%;
    height: 12vh;
    padding-right: 3.5em;
  }

  .menu__content {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
  }

  .menu__item {
    color: var(--primary-color);
    font-size: 1.2em;
    padding: 1em;
  }

  .menu__item--active {
    color: var(--alt-color);
  }

  .content-info {
    padding: 2em;
  }

  .conten-info__subtitle {
    font-size: clamp(1em, 3vw, 1.5em);
    
  }

  .content-info__title {
    font-size: 3em;
  }

  .sotial-network {
    justify-content: flex-start;
    margin-left: 4.4em;
  }

  .fa-brands {
    color: var(--bg-color);
  }

}

footer {
	font-family: Helvetica, Arial;
	color:white;
	height: 70%;
	background: rgba(0, 28, 0, 0.50);
	margin:0px auto;
	width: 65%;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 30px;
	line-height: 47px;
	font-size: 12px;
}


.responsiveLogo {
  width: 30%;
  height: auto;
}

.responsiveIpuc {
  width: 50%;
  height: auto;
}

.responsiveRadio {
  width: 30%;
  height: auto;
}

.responsivePastor1 {
  width: 45%;
  height: auto;
}

.responsivePastor2 {
  width: 45%;
  height: auto;
}

.responsiveFincaEntrada {
  width: 55%;
  height: auto;
}


/* ======= scroll back to top Button - Inicio ======= */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #0c8599; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

/* ======= scroll back to top Button - Fin ======= */

