/**
 * Theme Name: Cerato Child
 * Description: This is a child theme of Cerato
 * Author: ZooTemplate
 * Author URI: http://zootemplate.com
 * Template: cerato
 * Version: 2.2.18
 */


.custom-page-layout1 {
    font-family: 'eina-03-regular', sans-serif;
}

.custom-page-layout1 h1, 
.custom-page-layout1 h2 {
    font-size: 42px;
	font-family: 'eina-03-bold', sans-serif;
	margin-bottom: 15px;
}

@media (max-width: 767px) {
    .custom-page-layout1 h1, 
	.custom-page-layout1 h2 {
       font-size: 30px;
	}
}

.custom-page-layout1 a {
    text-decoration: none;
    color: #000;
}

/* helper classes */
.custom-page-layout1 .text-center {
    text-align: center;
}

.custom-page-layout1 .figure1 {
    margin: 0;
    display: flex;
}

.custom-page-layout1 .figure1 img {
    width: 100%;
    object-fit: cover;
}

.custom-page-layout1 .bg-color1 {
    background-color: #9f1b23;
}

.custom-page-layout1 .bg-color2 {
   background-color: #EDB63F;
}

.custom-page-layout1 .bg-color3 {
	background-color: #4c0c10;
}

.custom-page-layout1 .text-white {
    color: #fff;
}

.custom-page-layout1 .mb-30 {
	margin-bottom: 30px;
}

.custom-page-layout1 .rounded-10 {
	border-radius: 10px;
}


/* container */
.custom-page-layout1 .container {
    width: 100%;
    padding: 0 10px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .custom-page-layout1 .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .custom-page-layout1 .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .custom-page-layout1 .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .custom-page-layout1 .container {
        max-width: 1140px;
    }
}

@media (min-width: 1500px) {
    .custom-page-layout1 .container {
        max-width: 1400px;
    }
}

/* main */
.custom-page-layout1 .section {
    padding: 60px 0;
}

@media (max-width: 767px) {
    .custom-page-layout1 .section {
        padding: 45px 0;
    }
}

/* gird-layout1 */
.custom-page-layout1 .gird-layout1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-page-layout1 .gird-layout1.alt {
    gap: 30px;
}

@media (max-width: 991px) {
    .custom-page-layout1 .gird-layout1 {
        grid-template-columns: repeat(2, 1fr);
    }
	.custom-page-layout1 .gird-layout1.alt {
        gap: 20px;
	}
}

@media (max-width: 767px) {
    .custom-page-layout1 .gird-layout1 {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* post1 */
.custom-page-layout1 .post1 {
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
}

.custom-page-layout1 .post1 > a {
    display: flex;
    flex-direction: column;
	height: 100%;
	width: 100%;
}

.custom-page-layout1 .post1 .figure1 {
    overflow: hidden;
}

.custom-page-layout1 .post1 .figure1 img {
    height: 250px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.custom-page-layout1 .post1:hover .figure1 img {
    transform: scale(1.1);
}

.custom-page-layout1 .post1 .content {
    padding: 15px 15px 25px;
	flex: 1;
	display: flex;
    flex-direction: column;
}

.custom-page-layout1 .post1 .content .blog-title {
    color: #000;
    font-size: 20px;
    margin-bottom: 10px;
}

.custom-page-layout1 .post1 .content p {
    color: #575757;
    font-size: 15px;
    margin-bottom: 10px;
}

.custom-page-layout1 .post1 .content p:last-child {
    margin-bottom: 0;
}

.custom-page-layout1 .post1 .content .blog-category,
.custom-page-layout1 .post1 .content .blog-date {
    color: #999999;
}

.custom-page-layout1 .post1 .content .blog-category {
    text-transform: uppercase;
}

.custom-page-layout1 .post1 .content .button1 {
    margin-top: auto;
	width: fit-content;
}

/* card1 */
.custom-page-layout1 .card1 {
    display: flex;
	flex-direction: column;
	align-items: center;
    padding: 25px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #FFF6E3;
    border-radius: 10px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.custom-page-layout1 .card1:hover {
    transform: scale(1.05);
}

.custom-page-layout1 .card1 .icon {
    margin-bottom: 20px;
}

.custom-page-layout1 .card1 .icon img {
    width: 42px;
}

.custom-page-layout1 .card1 h2 {
    color: #313236;
    font-size: 21px;
    margin-bottom: 15px;
}

.custom-page-layout1 .card1 p {
    color: #313236;
    font-size: 15px;
    margin-bottom: 15px;
}

.custom-page-layout1 .card1 p:last-child {
    margin-bottom: 0;
}

.custom-page-layout1 .card1 .button1 {
    margin-top: auto;
}

.custom-page-layout1 .list1 {
   margin: 0;
   padding: 0;
   list-style: none;
   display: flex;
   justify-content: center;
   gap: 0 30px;
}

.custom-page-layout1 .list1 li {
   color: #fff;
   display: flex;
   gap: 0 10px;
   padding: 0;
}

.custom-page-layout1 .list1 li .icon img {
   width: 42px;
}

.custom-page-layout1 .list1 li .content p {
   margin-bottom: 0;
}

.custom-page-layout1 .list1 li .content p span{
   display: block;
   font-family: 'eina-03-bold', sans-serif;
}

@media (max-width: 767px) {
 .custom-page-layout1 .list1 {
      flex-direction: column;
      align-items: center;
      gap: 20px 0;
  }
}

.custom-page-layout1 .two-col-layout1 {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   margin-left: -10px;
   margin-right: -10px;
}

.custom-page-layout1 .two-col-layout1 .col1 {
   width: 50%;
   padding: 0 10px;
}

@media (max-width: 1399px) {
   .custom-page-layout1 .two-col-layout1 {
      align-items: start;
   }
}

@media (max-width: 991px) {
   .custom-page-layout1 .two-col-layout1 .col1 {
      width: 100%;
	  margin-bottom: 10px;
   }
}

.custom-page-layout1 .list2 li {
	color: #313236;
	padding: 0;
	margin-bottom: 10px;
}

.custom-page-layout1 .list2 li span {
	font-family: 'eina-03-bold', sans-serif;
}

.custom-page-layout1 .button1 {
	display: inline-block;
	background: #9f1b23 !important;
	background-color: #9f1b23 !important;
	color: #fff !important;
	font-size: 16px;
	line-height: 1;
	text-transform: none !important;
    padding: 10px 20px;
	min-height: 44px;
	border: 1px solid #9f1b23;
	border-radius: 5px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.custom-page-layout1 .button1:hover {
	color: #9f1b23 !important;
	background: transparent !important;
	background-color: transparent !important;
}

.custom-page-layout1 .list3 {
   margin: 0;
   padding: 0;
   list-style: none !important;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px 30px;
}

.custom-page-layout1 .list3 li {
   list-style: none !important;
   background-color: #EDB63F;
   color: #fff;
   font-size: 20px;
   font-family: 'eina-03-bold', sans-serif;
   text-align: center;
   padding: 20px 15px;
   border-bottom-left-radius: 10px;
   border-top-right-radius: 10px;
}

@media (max-width: 767px) {
   .custom-page-layout1 .list3 {
      grid-template-columns: repeat(1, 1fr);
	  gap: 10px;
   }
	
  .custom-page-layout1 .list3 li {
     font-size: 16px;
	 padding: 15px 10px;
  }
}