
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
:root {
  --primary-color: #f7cd29;
  --primary-hover-color: #f7cd29db;
  --search-section-primary: #f5efcf;
  --search-section-secondary: #f9f6e5;
  --black: #000;
  --box-shadow: rgb(247 205 41 / 25%);
  --secondary-font: "Righteous", cursive;
  --primary-font: "Lato", sans-serif;
  --standard-border-radius: 3px;
  --standard-font-size: 18px;
}
body {
  font-family: var(--primary-font);
  color: var(--black);
  font-size: var(--standard-font-size);
}
.blog-section {
  margin: 20px 0;
}
.blog-main {
  margin-top: 35px;
}
.btn,
.form-control {
  border-radius: var(--standard-border-radius);
  font-size: var(--standard-font-size);
}

.blog-button {
  border-radius:0;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 3px;
  min-width: 146px;
}
.blog-button:not(:first-of-type){
   margin-left: 10px;
}

.btn:focus,
.form-control:focus {
  box-shadow: 0 0 0 0.1rem var(--box-shadow);
}
.btn-custom {
  background-color: var(--primary-color);
  color: var(--black);
  transition: all 0.3s;
  border: 2px solid var(--primary-hover-color);
  border-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.btn-custom-reverse {
  background-color: var(--bs-white);
  border: 2px solid var(--primary-hover-color);
  color: var(--black);
  transition: all 0.3s;
}

/* .btn-custom:hover {
  background-color: var(--bs-white);
} */
.btn-custom-reverse:hover {
  background-color: var(--primary-hover-color);
}

.btn-custom.active::after {
  content: "\A";
    border-style: solid;
    border-width: 0px 21px 23px 104px;
    border-color: transparent var(--primary-color) transparent transparent;
    position: absolute;
    top: 73px;
    left: 83px;
}
/**
* Search
*/
.search {
  position: relative;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}
.search .fa-search {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--bs-gray);
}
.search-box {
  background-color: var(--search-section-primary);
  border: 0;
  text-indent: 25px;
}
/**
* Blog Block
*/
.blog-block-container {
  border-bottom: 7px dotted var(--primary-color);
  padding-bottom: 25px;
}
.blog-block-container:not(:first-of-type){
  margin-top:30px;
}
.blog-block {
  border: 2px solid #898989;
  padding: 40px 40px;
/*   background: linear-gradient(275deg, var(--primary-color), transparent); */
}
.blog-block-row {
/*   align-items: center; */
}
.blog-block-image {
  width: 100%;
  filter: grayscale(1);
  transition: filter .3s;
}
.blog-block-image:hover{
  filter: grayscale(0);
}
.blog-title {
  font-size: 28px;
  font-family: var(--secondary-font);
  margin-bottom: 0;
}
.blog-sub-title {
  font-size: 30px;
  font-family: var(--secondary-font);
  color: var(--bs-red);
}

.blog-content {
  text-align: justify;
  padding-top: 8px;
}
.blog-read-more-link {
  color: var(--bs-red);
}
.blog-block-container .text-secondary a {
  color: var(--bs-gray);
  text-decoration: none;
}
.footer-social-info {
  text-align: right;
}
.footer-social-info a {
  color: var(--black);
  width: 40px;
  border: 1px solid var(--primary-color);
  justify-content: center;
  display: inline-flex;
  height: 40px;
  align-items: center;
  text-decoration: none;
}
.footer-social-info a:hover {
  color: black;
  background-color: var(--primary-color);
}

.popular-blog-section {
  background-color: #f9f6e5;
  padding: 10px 10px 10px 10px;
}
.popular-blog-section-title {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--primary-color);
  margin-bottom: 0px;
  background-color: #f5efcf;
}
.blog-preview:not(:first-of-type) {
  padding-top: 15px;
}
.blog-preview {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #b6b6b6;
  padding-bottom: 15px;
  padding-top: 5px;
}
.blog-preview:last-of-type {
  border-bottom: none;
}

.blog-preview .blog-preview-content {
  padding: 5px 5px;
}

@media all and (max-width: 768px){
  .blog-section {
    display:none
  }
}
