@charset "UTF-8";
/* CSS Document */

:root {
  --mcp-color-primary: #EDB601;
  --mcp-color-secondary: #00bbff;
  --mcp-color-black: #232640;
  --mcp-color-highlight: #fcf1cc;
  --mcp-color-light-gray: #dedede;
  --mcp-color-mid-gray: #a1a1a1;
  --mcp-awsome-font: "Font Awesome 5 Free";
  --mcp-transition: all 0.4s ease 0s;
}

/* GRID SYSTEM */


.maha-creative-posts-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 30px 30px;
  padding: 20px;
}

.maha-creative-posts-container.mcp-cols-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.maha-creative-posts-container.mcp-cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.maha-creative-posts-container.mcp-cols-2 {
  grid-template-columns: 1fr 1fr;
}

.mcp-post h2,
.mcp-post h2 p,
.mcp-post button {
  margin: 0;
  padding: 0;
}
.mcp-post {
  width: 100%;
  background-color: var(--mcp-color-light-gray);
}

.mcp-post__image {
  width: 100%;
  height: 0;
  padding-top: 75%;
  position: relative;
  background-color: #f0c3c3;
  overflow: hidden;
}
.mcp-post__image img {
  width: 100%;
  position: absolute;
  top: 0;
  transition: all 0.4s ease 0s;
}
.mcp-post__image img:hover {
  width: 110%;
}
.mcp-post__info {
  padding: 15px;
}
.mcp-post__info h2 {

}

/**
 MAHA-SQ SQUARE STRUCTURE
 */
  


.mcp-post-sq {
    position: relative;
    width: 100% !important; 
    overflow: hidden;
    background-color: rgba(236,101,179,1.00);
    margin-bottom: 20px;
}

.mcp-post-sq:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.mcp-post-sq__bg,
.mcp-post-sq__info {    
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mcp-post-sq__bg {
       
    background-repeat:no-repeat ;
    background-position: center;
    background-size:cover;
}

.mcp-post-sq__info { 
    transition: all 0.4s ease 0s; 
    background-color: rgba(236,101,179,0.00);    
}

.mcp-post-sq__infoinner {    
    position: absolute;
    top: -500px;
    transition: all 0.4s ease 0s;
    /* Enable hardware acceleration to fix laggy transitions */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0); 
    left: 20px;
    line-height: 110%;
    padding-right: 20px;
    font-size: 24px;
    font-weight: 400;  
}

.mcp-post-sq__brief p {  
    color: #fff; 
    line-height: 140%;
    font-size: 18px;
}
.mcp-post-sq__info h3 {    
    position: absolute; 
    bottom: 10px; 
    left: 10px; 
    background-color: rgba(236,101,179,1.00);
    padding: 7px 12px;
    display: inline-block; 
    font-size: 30px;
    font-weight: 700;  
    margin-right: 10px;
    line-height: 120%;
    color: #222;
    
}

p.mcp-post-sq__date {    
    font-size: 12px; 
    text-transform: uppercase; 
    color: #fff;  
}


a.mcp-post-sq__link:hover > .mcp-post-sq__info > .mcp-post-sq__infoinner {    
    left: 15px; 
    top: 30px; 
}

a.mcp-post-sq__link:hover > .mcp-post-sq__info h3 {        
/*  opacity: 0.0; */
    color: #222;
    background-color: #fff;
}

.mcp-post-sq__bg {    
    width: 100%;
    opacity: 1.0;
    transition: all 0.4s ease 0s;
	/*transform: scale(1.0);
	-ms-transform: scale(1.0);
    -webkit-transform: scale(1.0);*/
    /* Enable hardware acceleration to fix laggy transitions */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0); 
} 

a.mcp-post-sq__link:hover > .mcp-post-sq__info {   
    background-color: rgba(236,101,179,1.00);
} 








/***
  MAHA-CLASSIC
  (also used for MAHA-APPEAL)
***/

.mcp-post-classic__info h2,
.mcp-post-classic__info p {
  margin: 0;
  padding: 0;
}
.mcp-post-classic {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  height: 420px;
}


.mcp-post-classic__image {
  width: 100%;
  background-color:var(--mcp-color-primary);
  height: 250px;
  overflow: hidden;
}
.mcp-post-classic__image img {
  width: 100%;
  transition: all 0.4s ease 0s;
}
.mcp-post-classic__info {
  padding: 20px 15px;
  text-align: center;
  background-color: #ffffff;
  min-height: 200px;
  z-index:50;
  position:absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  transition: all 0.4s ease 0s;
  border-top: 1px solid var(--mcp-color-light-gray);
  border-right: 4px solid var(--mcp-color-light-gray);
  border-bottom: 4px solid var(--mcp-color-light-gray);
  border-left: 1px solid var(--mcp-color-light-gray);
  border-radius: 5px;
}
.mcp-post-classic__info h2 {
  color: var(--mcp-color-black);
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 110%;
}
.mcp-post-classic__info p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--mcp-color-black);
  line-height: 130%;
}
.maha-mcp-classic__brief {
  height: 80px;
  overflow: hidden;
}


.mcp-post-classic:hover > a .mcp-post-classic__image img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  /* stops flickr of image */
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;   
  /* stops flickr of image */ 
}
.mcp-post-classic:hover > a .mcp-post-classic__info {
  bottom: 10px;
}



/***/


/***
  MAHA-BLOG
***/

.mcp-post-blog__info h2,
.mcp-post-blog__info p {
  margin: 0;
  padding: 0;
}
.mcp-post-blog {
  width: 100%;
  margin-bottom: 0;
}


.mcp-post-blog__image {
  background-color:#f0c3c3;
  border-radius: 8px 8px 0 0;
  height: 236px;
  overflow: hidden;
  border: 1px solid var(--mcp-color-light-gray);
}

.mcp-post-blog__image img {
  width: 100%;
  transition: all 0.4s ease 0s;
}
.mcp-post-blog__info {
  position: relative;
  padding: 15px;
  background-color:#ffffff;
  color: var(--mcp-color-black);
}
.mcp-post-blog__info h2 {
  margin-bottom: 5px;
  font-size: 1.2em;
}

.mcp-post-blog__info p {
  font-size: 0.9em;
}
p.mcp-post-blog__date {
  font-size: 0.8em;
  color: var(--mcp-color-mid-gray);
}


.mcp-post-blog:hover > a .mcp-post-blog__image img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  /* stops flickr of image */
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;   
  /* stops flickr of image */ 
}

/***/





/***
  MAHA-SLIDER
***/

.maha-slider {
  padding: 20px;
}
.maha-slide__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 30px 30px;
}
.maha-slide__info h2 {
  font-size: 1.3em;
}
.maha-slide__info .mcp-post__btn-simple {
  font-size: 1em;
}


/***/

/***
  SLICK SLIDER 
  base css for the slider
***/


/***/

/***
  POST BUTTON/LINK STYLES
***/

a.mcp-post__btn-block {
  display: block;
  padding: 5px 15px;
  border: none;
  background-color:var(--mcp-color-black);
  font-size: 1.4em;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
a.mcp-post__btn-block:hover {
  margin-left: 10px;
  margin-right: 10px;
  background-color: var(--mcp-color-light-gray);
  color: var(--mcp-color-black);
  cursor: pointer;
}
a.mcp-post__btn-simple,
button.mcp-post__btn-simple,
a.mcp-post__btn-donate {
  display: inline-block;
  padding: 3px 15px 3px 15px; 
  background-color: var(--mcp-color-black);
  border: none;
  border: 1px solid var(--mcp-color-black);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
a.mcp-post__btn-simple::after,
button.mcp-post__btn-simple::after {
  content: ' ';
  font-size: 1rem;
  font-family: var(--mcp-awsome-font);
  
}
a.mcp-post__btn-donate::after {
  content: "";
  font-size: 1rem;
  font-family: var(--mcp-awsome-font);
  
}
button.mcp-post__btn-simple:hover {
  padding: 3px 20px 3px 20px; 
  Background-color: #ffffff;
  border: 1px solid var(--mcp-color-primary);
  color: var(--mcp-color-primary);
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
a.mcp-post__btn-simple:hover {
  Background-color: #ffffff;
  border: 1px solid var(--mcp-color-primary);
  color: var(--mcp-color-primary);
}

a.mcp-post__btn-donate {
  display: inline-block;
  padding: 3px 20px 3px 20px; 
  background-color: var(--mcp-color-black);
  border: none;
  border: 1px solid var(--mcp-color-black);
  font-size: 1.4em;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}

a.mcp-post__btn-donate::after {
  content: "";
  font-size: 0.8em;
  font-family: var(--mcp-awsome-font);
  margin-left: 5px;
}
a.mcp-post__btn-donate:hover {
  padding: 3px 20px 3px 20px; 
  Background-color: #ffffff;
  border: 1px solid var(--mcp-color-primary);
  color: var(--mcp-color-primary);
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
   

/***/
  
  
  /*** 
  MEDIA QUERIES
  ***/
  
  
  /* MEDIA QUERIES MINIMUM WIDTH */
  
  /* Small devices (landscape phones, 576px and up) */
  @media (min-width: 576px) { }
  
  /* Medium devices (tablets, 768px and up)  */
  @media (min-width: 768px) { }
    
  
  
  /* `md` applies to small devices (landscape phones, less than 768px)  */
  @media (max-width: 767.98px) {

      .maha-creative-posts-container.mcp-cols-4,
      .maha-creative-posts-container.mcp-cols-3,
      .maha-creative-posts-container.mcp-cols-2,
      .maha-creative-posts-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 10px;
      }
      .mcp-post-classic {
        min-height: 300px;
      }
      .mcp-post-classic__image {
        height: 350px;
        object-fit: cover;
      }
      .maha-mcp-classic__brief {
        height: auto;
        overflow: hidden;
      }

      .mcp-post-blog__image {
        height: auto;
        object-fit: cover;
      }
      
      
    
  }
  
  /* `lg` applies to medium devices (tablets, less than 992px)  */
  @media (min-width: 768px) and (max-width: 991.98px) {

    .maha-creative-posts-container.mcp-cols-4,
    .maha-creative-posts-container.mcp-cols-3,
    .maha-creative-posts-container.mcp-cols-2 {
      grid-template-columns: 1fr 1fr;
    }
    .maha-mcp-classic__brief {
      height: auto;
      overflow: hidden;
    }
  }
  
  /* `lg` applies to medium devices (tablets, less than 992px)  */
  @media (max-width: 992px) {

    .mcp-post-classic__image,
    .mcp-post-blog__image {
      object-fit: cover;
    }

    .maha-slide__info {
      padding-top: 20px;
    }
    .maha-slide__inner {
      display: block;
    }

   }
  

  /* Medium devices (tablets, 768px and up)  */
  @media (min-width: 993px) { 

    .mcp-cols-4 .mcp-post-blog__image {
      height: 150px;
    }
    .mcp-cols-4 .mcp-post-blog__info h2 {
      font-size: 1.1em;
    }

  }



  /***/





/******* ends *******/

/*
 ********************************************
 * MAHA PAGINATION STYLES
 ********************************************
 */

.maha-mcp-prev-next-posts,
.maha-mcp-pagination {
    border-top: 1px solid var(--mcp-color-black);     
    border-bottom: 1px solid var(--mcp-color-black);  
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 15px;
}

.maha-mcp-prev-posts-link,
.maha-mcp-next-posts-link {
    display: inline-block;   
}

.maha-mcp-prev-posts-link a,
.maha-mcp-next-posts-link a {
    display: inline-block;
    padding: 10px 15px; 
    background-color: #EDB601;
    color: #fff; 
    font-size: 18px;
    margin-right: 15px;
    transition: all 0.4s ease 0s;
    font-weight: 300; 
}
.maha-mcp-prev-posts-link a:hover,
.maha-mcp-next-posts-link a:hover {
    background-color: var(--mcp-color-black);   
}

.maha-mcp-pagination {
  padding: 20px;
  margin: 20px;
}
.maha-mcp-pagination a,
.maha-mcp-pagination span.current {
    font-size: 18px; 
    margin-right: 10px;
    transition: all 0.4s ease 0s; 
    color: var(--mcp-color-primary)     
}
.maha-mcp-pagination a {
    color: var(--mcp-color-black);      
}

.maha-mcp-pagination a:hover,
.maha-mcp-pagination span.current {
    color: var(--mcp-color-primary)      
}
/***/

