* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

#btnGoTop {
  display: none;
  position: fixed;
  bottom: 20px;
  width: 50px;
  height: 50px;
  right: 10px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  color: white;
  border-radius: 4px;
}

.header {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.header_social {
  display: none;
  height: 60px;
  background-color: #47a329;
}

.header_logo {
  width: 275px;
  height: 100px;
  margin-top: 20px;
  margin: auto;
}

.header_logo_img {
  width: 275px;
  height: 100px;
}

/* Menu style */
.nav_menu {
  padding: 0 10px;
}

/* ------ body ------ */
.page_section {
  background: #ecf0f5;
}

.body {
  position: absolute;
  top: 33%;
  z-index: -1;
}

/* Slide images */
.body_slider {
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

/*.body_slider ul {
  display: flex;
  padding: 0;
  width: 400%;
  animation: slide 20s infinite alternate ease-in-out;
  -webkit-animation: slide 20s infinite alternate ease-in-out;
}*/

.body_slider li {
  width: 100%;
  list-style: none;
  position: relative;
}

.body_slider img {
  width: 100%;
}

/* Active this when the slider needs more than 1 image */
/*@keyframes slide {
  0% { margin-left: 0;}
  20% { margin-left: 0;}

  25% { margin-left: -100%;}
  45% { margin-left: -100%;}

  50% { margin-left: -200%;}
  70% { margin-left: -200%;}

  75% { margin-left: -300%;}
  100% { margin-left: -300%;}
}*/

/*css for manual slide navigation*/

.navigation_manual{
  position: absolute;
  width: 100%;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.manual_btn{
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}

.manual_btn:not(:last-child){
  margin-right: 40px;
}

.manual_btn:hover{
  background: #40D3DC;
}

#radio1:checked ~ .first{
  margin-left: 0;
}

#radio2:checked ~ .first{
  margin-left: -20%;
}

#radio3:checked ~ .first{
  margin-left: -40%;
}

#radio4:checked ~ .first{
  margin-left: -60%;
}

/*css for automatic navigation*/
.navigation_auto{
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 210px;
}

.navigation_auto div{
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation_auto div:not(:last-child){
  margin-right: 40px;
}

#radio1:checked ~ .navigation_auto .auto_btn1{
  background: #40D3DC;
}

#radio2:checked ~ .navigation_auto .auto-btn2{
  background: #40D3DC;
}

#radio3:checked ~ .navigation_auto .auto-btn3{
  background: #40D3DC;
}

#radio4:checked ~ .navigation_auto .auto-btn4{
  background: #40D3DC;
}

/* Content body */
.body_main {
  display: grid;
  margin-left: 0;
  margin-right: 0;
  grid-template-columns: 1fr;
}

.post_contents {
  max-width: 800px;
}

.post_container {
  width: 100%;
}

.post_card {
  width: 100%;
  max-height: 900px;
  margin: auto;
  margin: 50px 0 80px 0;
  border: none;
  padding: 0;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #d3d3d3;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}

.post_card_bottom {
  padding: 30px;
}

.post_card_image {
  width: 100%;
  height: auto;
}

.post_card_title {
  max-height: 105px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 30px 20px 0px 20px;
}

.post_card_title_h2 {
  font-size: 32px;
  color: #47a329;
  font-weight: bold;
}

.post_card_text {
  font-size: 22px;
  max-height: 300px;
  margin-top: 30px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 50px;
}

.post_card_button_link {
  font-size: 25px;
  margin-top: 20px;
  padding: 15px 30px 15px 30px;
  background-color: #0376D3;
  border-radius: 6px;
  text-decoration: none;
  color: #ffffff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.post_button_ver_mas {
  background-image: linear-gradient(-180deg, #37AEE2 0%, #1E96C8 100%);
  border-radius: .5rem;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-size: 24px;
  justify-content: center;
  padding: 1rem 1.75rem;
  text-decoration: none;
  width: 300px;
  border: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin: auto;
}

.post_button_ver_mas:hover {
  background-image: linear-gradient(-180deg, #1D95C9 0%, #17759C 100%);
}

/* Loader for getting more content */
.loader_container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.spinner {
  display: none;
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s ease infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rc_card_link {
  text-decoration: none;
  color: #000000;
}

.rc_container {
  max-width: 350px;
  justify-self: center;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.rc_title {
  font-size: 20px;
  text-align: center;
}

.rc_card:first-child {
  margin-top: 0;
}

.rc_card {
  margin-top: 50px;
  border: none;
  background: #fff;
}

.rc_card_title {
  font-size: 17px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid #cfcfcf;
  padding: 20px 20px;
}

.rc_card_img {
  width: 100%;
  max-height: 270px;
  margin-bottom: -5px;
}

/* Footer content */
.footer {
  height: 650px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0c1633;
}

.footer_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.footer_contact {
  max-width: 300px;
  margin-bottom: 10px;
}

.footer_social {
  max-width: 300px;
  margin-top: 30px;
}

.footer_tag_list {
  column-count: 1;
}

.footer_tag_item {
  display: inline-block;
  list-style-type: none;
  width: 100%;
}

.footer_tag_icon {
  align-items: center;
  background-color: #24385b;
  border-radius: 8px;
  color: #eff3f8;
  display: flex;
  flex-wrap: nowrap;
  font-size: 14px;
  margin-bottom: 1rem;
  padding: .5rem 1rem;
  text-decoration: none;
}

.footer_tag_icon:hover {
  background-color: #47679e;
}

.svg-inline--fa {
  overflow: visible;
  display: inline-block;
  height: 1em;
}

.fa-w-18 {
  width: 1.125em;
}

.fa-lg {
  font-size: 1.33333rem;
  line-height: 0.75em;
}

.footer_tag_label {
  margin-left: .5rem;
}

.contact_title {
  color: #fff;
  margin-bottom: 30px;
}

.footer_logo_img {
  width: 235px;
  height: 86px;
  margin-top: 40px;
}

.privacidad_link {
  text-decoration: none;
  font-size: 20px;
  color: #ffffff;
}