/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");

/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(205, 86%, 17%);
  --clr-primary-2: hsl(205, 77%, 27%);
  --clr-primary-3: hsl(205, 72%, 37%);
  --clr-primary-4: hsl(205, 63%, 48%);
  /* primary/main color */
  --clr-primary-5: #49a6e9;
  /* lighter shades of primary color */
  --clr-primary-6: hsl(205, 89%, 70%);
  --clr-primary-7: hsl(205, 90%, 76%);
  --clr-primary-8: hsl(205, 86%, 81%);
  --clr-primary-9: hsl(205, 90%, 88%);
  --clr-primary-10: hsl(205, 100%, 96%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --clr-red-dark: hsl(360, 67%, 44%);
  --clr-red-light: hsl(360, 71%, 66%);
  --clr-green-dark: hsl(125, 67%, 44%);
  --clr-green-light: hsl(125, 71%, 66%);
  --clr-black: #222;
  --ff-primary: "Roboto", sans-serif;
  --ff-secondary: "Open Sans", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
  --fixed-width: 620px;
}
 

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
body {
  font-family: var(--ff-secondary);
/*   background: var(--clr-grey-10); */
background: #3634ec;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #1364c0, #86A8E7, #2baa64);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #1364c0, #86A8E7, #24a75f); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
margin-bottom: 28px;
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
  margin-top: 20px;
  letter-spacing: 0px;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img:not(.logo) {
  width: 100%;
}
img {
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0px;
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-primary);
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-black);
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
    background-color: #B3E5FC;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}
/*  global classes */

.btn {
  text-transform: uppercase;
  background: transparent;
  color: var(--clr-black);
  padding: 0.375rem 0.75rem;
  letter-spacing: 0px;
  display: inline-block;
  transition: var(--transition);
  font-size: 0.875rem;
  border: 2px solid var(--clr-black);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  
  border-radius: 1px;
}
.btn:hover {
  color: var(--clr-white);
  background: var(--clr-black);
}
/* section */
.section {
  padding: 5rem 0;
  
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}
@media screen and (min-width: 992px) {
  .section-center {
    width: 95vw;
  }
}
main {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
/*
=============== 
About
===============
*/
.title {
  text-align: center;
  margin-bottom: 4rem;
   
     
  }


  .title  h2 {
    font-size: 34px;
      
    border-bottom:   2px solid   rgb(52, 238, 52) 0%, rgb(38, 75, 238) 100%, rgba(0,212,255,1) 100%  ;
 
    }

.title p {
  width: 91%;
  margin: 0 auto;
  font-weight: bold;
  margin-bottom: -21px;
  margin-top: 21px;
  font-size: 18px;
}

.about-img {
  margin-bottom: 2rem;
}
.about-img img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 19rem;
}
@media screen and (min-width: 992px) {
  .about-img {
    margin-bottom: 0;
  }

  .about-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
}
.about {
  background: var(--clr-white);
  border-radius: 3px;
  display: grid;
  grid-template-rows: auto 1fr;
  letter-spacing: 0px; font-family: 'Times New Roman', Times, serif;
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); display: inline-block;
  width: auto;
  border: 1px solid #20638f;
  padding: 0.4em 0.6em;
   
  text-decoration: none;
  font-weight: 800;
   
  text-transform: uppercase;
  border-radius: 5px;
  color: #ffffff;
  margin-top: 0px;
  border-left: 1px solid #2E4476;
  box-shadow: 0px 5px 0px 0px #2E4476;
   
  
}
.btn-container {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  letter-spacing: 0px; font-family: 'Times New Roman', Times, serif;
  box-shadow: 2px 5px 5px 5px rgba(0,0,0,0.75); 
  width: auto;
  border: 1px solid #20638f;
  padding: 0.4em 0.6em;
  background-color: #3eb95d;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 5px;
  color: #ffffff;
  margin-top: 0px;
  border-left: 1px solid #2E4476;
  box-shadow: 0px 5px 0px 0px #2E4476;
}
.tab-btn:nth-child(1) {
  border-top-left-radius: var(--radius);border-radius: 10px; margin: 2px;box-shadow: 0px 5px 0px 0px #043ebb;
}
.tab-btn:nth-child(3) {
  border-top-right-radius: var(--radius);border-radius: 10px;margin: 2px;box-shadow: 0px 5px 0px 0px #043ebb;
}
.tab-btn:nth-child(5) {
  border-top-right-radius: var(--radius);border-radius: 10px;margin: 2px;box-shadow: 0px 5px 0px 0px #043ebb;
}
.tab-btn {
  padding: 0rem 0;
  border: none;
  text-transform: capitalize;
  font-size: 15px;
  display: block;
  background: var(--clr-grey-9);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0px; font-family: 'Times New Roman', Times, serif;
  border-left: rgb(0, 87, 128) 2px solid;
  background: linear-gradient(90deg, #cfc7eb 0%, #5583d6 100%);
   height: 50pt; border-radius: 10px;margin: 2px;box-shadow: 0px 5px 0px 0px #043ebb;
  
    
     

}
.tab-btn:hover:not(.active) {
  background: var(--clr-primary-10);
  color: var(--clr-primary-5);border-radius: 10px; box-shadow: 0px 5px 0px 0px #84bb04;margin: 2px;
}
.about-content {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: 0px;
  padding: 2rem 1.5rem;
   
} 
/* hide content */
.content {
  display: none;
}
.tab-btn.active {
  background: var(--clr-white);  
     box-shadow: 0px 5px 0px 0px #9801dd;  border-radius: 10px; margin: 2px; border: 1px solid; 
     
}
.content.active {
  display: block;
}



 

.cont_modal_detalles_calendario {
      
      
-webkit-box-shadow: 6px 6px 30px -3px  rgba(0,0,0,0.2);
box-shadow: 6px 6px 30px -3px  rgba(0,0,0,0.2);
     
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
display: none;border-left: 1px solid #2E4476;
  box-shadow: 0px 5px 0px 0px #2E4476;
      }

.cont_back_modal_detalles_calendario {
z-index: 100;
 
background: rgb(85,220,244);
background: -moz-linear-gradient(-45deg,  rgba(85,220,244,1) 0%, rgba(0,158,195,1) 100%);
background: -webkit-linear-gradient(-45deg,  rgba(85,220,244,1) 0%,rgba(0,158,195,1) 100%);
background: linear-gradient(135deg,  rgba(85,220,244,1) 0%,rgba(0,158,195,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#55dcf4', endColorstr='#009ec3',GradientType=1 ); 
opacity: 0;
display: none;
 -webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}

.cont_cover_detalles_calendario {
  position: relative;
  float: left;
  width: 100%;
height: 300px;
overflow: hidden;
}
.cont_cover_detalles_calendario > img  {
width: 100%;
position: absolute;
   
  
transition: all 0.5s;
opacity: 0;
  border-radius:3px;
}



.cont_detalles_calendario_modal {
position: relative;

width: 100%; 
    
     
 background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.49) 67%,rgba(255,255,255,1) 78%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); 
 padding-bottom: 10px; 
    border-radius: 3px;
}
.cont_detalles_calendario_modal > h3 {
font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-align: center;
color: #444;

 ;
}
.cont_detalles_calendario_modal   p {
color: #424242;
font-size: 16px; 
  font-weight: 500;
  text-align: center;
margin-left: 20px;
font-family: Arial, Helvetica, sans-serif; 
}

.cont_max_80 {
  position: relative;
  width: 90%;
}


.btn_cerrar_modal_detalles_calendario {
  position: relative;
  padding: 10px;
background: #9E9E9E;
 font-weight: 300;
  
display: block;
text-align: center;
border-radius: 2px;
margin: 15px auto;
color: #fff;
    box-shadow: 0px 6px 20px -5px rgba(0,0,0,0.4);
text-decoration: none;
font-size: 14px;
  -webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.btn_cerrar_modal_detalles_calendario:hover {
color: #fff;
text-decoration: none;
}

.cont_list_redes {
  position: relative;
  width: 70px;
}

.cont_list_redes > ul > li  {
position: relative;
float: left;
margin:5px; 
}

@media screen and (max-width: 492px) {
  .cont_cover_detalles_calendario {
    position: relative;
    float: left;
    width: 100%;
  height: 228px;
  overflow: hidden;
  
  }
  .tab-btn {
    padding: 0rem 0;
    border: none;
    text-transform: capitalize;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    display: block;
    background: var(--clr-grey-9);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0px;  
    border-left: rgb(0, 87, 128) 2px solid;
    background: linear-gradient(90deg, #cfc7eb 0%, #5583d6 100%);
     height: 50pt; border-radius: 10px;
    
}
.title p {
  width: 91%;
  margin: 0 auto;
  font-weight: bold;
  margin-top: 21px;
  font-size: 16px;
  margin-bottom: -41px;
}
.title  h2 {
  font-size: 28px;
   
  border-bottom:   2px solid   rgb(52, 238, 52) 0%, rgb(38, 75, 238) 100%, rgba(0,212,255,1) 100%  ;

  }

  .about-img img {
    border-radius: var(--radius);
    object-fit: cover;
    height: 14rem;
  }
  .cont_detalles_calendario_modal   p {
    color: #424242;
    font-size: 16px; 
      font-weight: 500;
      text-align: center;
    margin-left: 20px;
    font-family: Arial, Helvetica, sans-serif; margin-bottom: -2px;
    }
    
    .about {
       
      height: 541px;
    }
    .about-content h4{
line-height: 10px;
font-family: Arial, Helvetica, sans-serif;

    } 
     
    .about-content p{
      line-height: 21px;
      font-family: Arial, Helvetica, sans-serif;
      
          }    
    } 



