:root {
  --blockBuilder-primary-color: #721ae4;
  --blockBuilder-primary-rgb: 114, 26, 228;
  --blockBuilder-title-color: #050a1e;
  --blockBuilder-font-color: #1b1b1a;
  --blockBuilder-boxBg-color: #f4f4f4;
  --blockBuilder-border-color: #e2e5f1;
  --blockBuilder-fontfamily: 'Inter';
  --blockBuilder-transition: all .3s;
  --blockBuilder-white: #fff;
}
/* Comman Style  */
body {
    margin: 0;
    font-family: var(--blockBuilder-fontfamily);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}
*,:after,:before {
  box-sizing: border-box
}
a {
  text-decoration: none !important;
}
img {
  max-width: 100%;
}
/* Grid  */
.block-col1, .block-col2, .block-col3, .block-col4, .block-col5, .block-col6 {
  display: grid;
  grid-gap: 30px;
}
.block-col1 {
  grid-template-columns: repeat(1, 1fr);
}
.block-col2 {
  grid-template-columns: repeat(2, 1fr);
}
.block-col3 {
  grid-template-columns: repeat(3, 1fr);
}
.block-col4 {
  grid-template-columns: repeat(4, 1fr);
}
.block-col5 {
  grid-template-columns: repeat(5, 1fr);
}
.block-col6 {
  grid-template-columns: repeat(6, 1fr);
}




/*-- Features Style --*/
.block-feature-box {
  border-radius: 15px;
  background-color: rgba(var(--blockBuilder-primary-rgb), .03);
  border: 1px solid rgba(var(--blockBuilder-primary-rgb), .1);
  text-align: center;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;
  transition: .5s;
  min-height: 200px;
  font-family: var(--blockBuilder-fontfamily);
}
.block-feature-box:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../images/featurebg.png);
  left: 0;
  top: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: 10% 240%;
  opacity: 0;
}
.block-feature-box:hover:before {
  opacity: 1;
}
.block-feature-box:hover:after {
  transform: perspective(500px) rotateX(0deg);
  opacity: 1
}
.block-feature-box:hover:before {
  opacity: .1;
  background-position: 0% 200%;
}
.block-feature-box:before,
.block-feature-box:hover:before {
  transition: var(--blockBuilder-transition);
}
.block-feature-icon {
  width: 75px;
  height: 75px;
  border-radius: 50px;
  background-color: var(--blockBuilder-white);
  border: 2px solid rgba(var(--blockBuilder-primary-rgb), .06);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-feature-icon img {
  height: 30px;
  transition: .5s;
  filter: brightness(1) invert(0)
}
.block-feature-title {
  font-size: 20px;
  color: var(--blockBuilder-title-color);
  font-weight: 700;
  margin: 0 0 10px;
  padding: 6px 0 0;
  transition: .5s;
}
.block-feature-text {
  font-size: 16px;
  line-height: 26px;
  color: var(--blockBuilder-font-color);
  font-weight: 400;
  margin: 0;
  transition: .5s
}
.block-feature-box:hover {
  border: 1px solid var(--blockBuilder-primary-color)
}
.block-feature-box:hover .block-feature-icon:before {
  transform: scale(1)
}
.block-feature-box:hover .block-feature-icon img {
  filter: brightness(0) invert(1)
}
.block-feature-box:hover .block-feature-title,.block-feature-box:hover .block-feature-text {
  color: var(--blockBuilder-white)
}
/* Feature Style 2  */
.block-feature-box.block-feature-style2::before {
  display: none;
}
.block-feature-box.block-feature-style2 {
  overflow: unset;
  min-height: 100px;
  padding: 0 40px 30px;
}
.block-feature-box.block-feature-style2 .block-feature-icon {
  margin: -50px auto 20px;
  width: 100px;
  height: 100px;
  border: 0;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}
.block-feature-box.block-feature-style2::after {
  transform: unset;
  height: 0%;
}
.block-feature-box.block-feature-style2:hover::after {
  height: 100%;
}
.block-feature-box.block-feature-style2 .block-feature-icon:before {
  display: none;
}
.block-feature-box.block-feature-style2:hover .block-feature-icon img {
  animation: 1s wobble-horizontal ease-in-out 1;
  filter: brightness(1) invert(0);
}
@keyframes wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* Feature Style 3  */
.block-feature-box.block-feature-style3::before {
  display: none;
}
.block-feature-box.block-feature-style3 {
  overflow: unset;
  min-height: 100px;
  border-radius: 0;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 7%);
  padding: 40px 30px;
  border: 0;
  background: var(--blockBuilder-white);
}
.block-feature-box.block-feature-style3 .block-feature-icon {
  margin: 0 auto 20px;
  max-height: 80px;
  border: 0;
  height: auto;
  width: auto;
}
.block-feature-box.block-feature-style3::after {
  transform: unset;
  height: 2px;
  width: 0%;
  margin: auto;
  right: 0;
  left: 0;
}
.block-feature-box.block-feature-style3:hover::after {
  width: 80%;
}
.block-feature-box.block-feature-style3 .block-feature-icon:before {
  display: none;
}
.block-feature-box.block-feature-style3:hover .block-feature-icon img {
  animation: 1s wobble-horizontal ease-in-out 1;
  filter: brightness(1) invert(0);
}
.block-feature-box.block-feature-style3 .block-feature-icon img {
  height: auto;
  max-height: 100px;
}
.block-feature-box.block-feature-style3:hover .block-feature-title {
  color: var(--blockBuilder-primary-color);
}
.block-feature-box.block-feature-style3 .block-feature-text {
    color: var(--blockBuilder-font-color);
}
/* Feature Style 4  */
.block-feature-box.block-feature-style4 {
  overflow: unset;
  min-height: 250px;
  border-radius: 0;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 7%);
  padding: 40px 30px;
  border: 0;
  background: var(--blockBuilder-white);
}
.block-feature-box.block-feature-style4 .block-feature-icon {
  margin: 0 auto 20px;
  max-height: 80px;
  border: 0;
  height: auto;
  width: auto;
}
.block-feature-box.block-feature-style4::after {
  transform: unset;
  height: 0px;
  width: 80%;
  margin: auto;
  opacity: 0;
  right: 0;
  left: 0;
  border-radius: 20px 20px 0 0;
}
.block-feature-box.block-feature-style4:hover::after, .block-feature-box.block-feature-style4:hover::before {
  height: 6px;
  opacity: 1;
}
.block-feature-box.block-feature-style4 .block-feature-icon:before {
  display: none;
}
.block-feature-box.block-feature-style4:hover .block-feature-icon img {
  animation: 1s wobble-horizontal ease-in-out 1;
  filter: brightness(1) invert(0);
}
.block-feature-box.block-feature-style4 .block-feature-icon img {
  height: auto;
  max-height: 100px;
}
.block-feature-box.block-feature-style4:hover .block-feature-title {
  color: var(--blockBuilder-primary-color);
}
.block-feature-box.block-feature-style4 .block-feature-text {
    color: var(--blockBuilder-font-color);
}




/*-- Partner Logos Style --*/
.block-partner-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blockBuilder-border-color);
  min-height: 100px;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
}
.block-partner-box a:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 .275rem .75rem -0.0625rem rgba(11, 15, 25, .06), 0 .125rem .4rem -0.0625rem rgba(11, 15, 25, .03);
}
.block-partner-box a:hover,
.block-partner-box a {
  transition: var(--blockBuilder-transition);
}
.block-partner-box img {
  max-height: 50px;
}


/*------------- Image Style  -------------*/
.block-img-box {
  position: relative;
}
/* Style 1  */
.block-img-style1 {
  transform: scale(.84) translateX(15%) rotateZ(calc(-1*(11* 1deg)));
  border: 5px solid var(--blockBuilder-primary-color);
  width: fit-content;
  width: -moz-fit-content;
  transform-origin: 0 100%;
  transition: transform .2s ease-out;
  overflow: hidden;
  border-radius: 30px;
}
.block-img-style1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transform: scale(1.2) rotateZ(calc(8* 1deg));
}
.block-img-style1:hover {
  transform: scale(.84) translateX(15%) rotateZ(calc(-.5 *(11* 1deg)));
}
/* Style 2  */
.block-img-style2 img {
    border-radius: 63% 37% 50% 50%/70% 68% 32% 30%;
}
.block-img-style2:hover img {
    border-radius: 70% 68% 32% 30%/63% 37% 50% 50%;
}
.block-img-style2:hover,.block-img-style2,.block-img-style2 img, .block-img-style2:hover img {
    transition: all .3s;
}
/* Style 3  */
.block-img-style3 {
  padding: 30px 20px;
}
.block-img-style3:before {
  content: "";
  position: absolute;
  background: transparent;
  width: 75%;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 10px solid var(--blockBuilder-primary-color);
  opacity: .6;
}
.block-img-style3 img {
  width: 100%;
  position: relative;
}
/* Style 4  */
.block-img-style4 img  {
  border-radius: 70% 20% 20% 30% / 60% 37% 70% 60%;
}
/* Style 5  */
.block-img-style5 img  {
  border-radius: 50px 50% 30% 5px / 50%;
}
/* Style 6  */
.block-img-style6 img  {
  border-radius: 50px/10px;
}

/*------ Social ------*/
.block-social-media ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.block-social-media ul li a svg {
  height: 22px;
}
.block-social-media ul li a:hover,
.block-social-media ul li a {
  transition: all .3s;
}
/* style1  */
.block-social-media.block-social-style1 ul li a {
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: var(--blockBuilder-white);
  background: var(--blockBuilder-title-color);
  border-radius: 60%;
  box-shadow: 0 5px 4px rgba(0, 0, 0, .5);
}
.block-social-media.block-social-style1 ul li a:hover {
  background: var(--blockBuilder-primary-color);
  transform: translateY(-3px);
}

/* style2 */
.block-social-media.block-social-style2 ul li a {
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: var(--blockBuilder-white);
  background: var(--blockBuilder-title-color);
  border-radius: 63% 37% 50% 50% / 70% 68% 32% 30%;
}
.block-social-media.block-social-style2 ul li a:hover svg {
  transform: rotate(360deg);
  transition: 0.5s;
}
.block-social-media.block-social-style2 ul li a:hover {
  background: var(--blockBuilder-primary-color);
}
/* style3 */
.block-social-media.block-social-style3 ul li a {
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: var(--blockBuilder-white);
  background: var(--blockBuilder-title-color);
  border-radius: 5px;
}
.block-social-media.block-social-style3 ul li a:hover {
  background: var(--blockBuilder-primary-color);
}
/* style4 */
.block-social-media.block-social-style4 ul li a {
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: var(--blockBuilder-white);
  background: var(--blockBuilder-title-color);
  border-radius: 0 15px;
}
.block-social-media.block-social-style4 ul li a:hover {
  background: var(--blockBuilder-primary-color);
}
/* style5 */
.block-social-media.block-social-style5 ul li a {
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: var(--blockBuilder-white);
  background: var(--blockBuilder-title-color);
  border-radius: 15px 0;
}
.block-social-media.block-social-style5 ul li a:hover {
  background: var(--blockBuilder-primary-color);
}
/* style6 */
.block-social-media.block-social-style6 ul li a {
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: var(--blockBuilder-white);
  background: var(--blockBuilder-title-color);
  border-radius: 0;
}
.block-social-media.block-social-style6 ul li a:hover {
  background: var(--blockBuilder-primary-color);
}


/* Blog  */

/* Default Style  */
.block-default-style:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: 50%;
  right: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  backface-visibility: hidden;
  z-index: 2;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transition: all 0.35s ease-in;
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
}
.block-default-style:hover:before{
  opacity: 1;
  backface-visibility: visible;
  left: 0;
  top: 0;
  right: 0;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  bottom: 0;
  background: transparent;
}
.block-default-style:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgb(0 0 0 / 0.9) 100%);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

.block-blog-box {
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e4e4e4;
  padding: 0;
  position: relative;
}
.block-blog-box:hover {
  border-color: var(--blockBuilder-primary-color);
}
.block-blog-thumb {
  position: relative;
  display: inline-flex;
  width: 100%;
}
.block-blog-thumb img {
  max-height: 240px;
  width: 100%;
  min-width: 240px;
  object-fit: cover;
  filter: brightness(.9);
}
.block-blog-thumb:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: #fff;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.block-blog-thumb:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: #fff;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 90%;
  -ms-transform-origin: 90%;
  transform-origin: 90%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.block-blog-box:hover .block-blog-thumb:before {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  opacity: .4;
}
.block-blog-box:hover .block-blog-thumb:after {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  opacity: .4;
}
.block-blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-block;
  width: auto;
  text-transform: capitalize;
  background: var(--blockBuilder-primary-color);
  color: #fff;
  padding: 4px 10px 5px;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
}
.block-blog-content {
  width: 100%;
  padding: 20px 20px;
}
.block-blog-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-decoration: none;
  color: #222;
  display: block;
}
.block-blog-title:hover {
  color: var(--blockBuilder-primary-color);
}
.block-blog-title:hover ,
.block-blog-title,
.block-blog-box:hover,
.block-blog-box {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.block-blog-content p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.5;
}
.block-blog-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.block-blog-info ul li:first-child {
  margin: 0;
  padding: 0;
}
.block-blog-info ul li {
  position: relative;
  padding: 0 0 0 20px;
  margin: 0;
}
.block-blog-info ul li:not(:first-child):before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background: var(--blockBuilder-primary-color);
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 8px;
}
.block-blog-info ul li a {
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 14px;
  color: #04191b;
}
/* Style 2  */
.block-blog-box.block-blog-style2 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.block-blog-box.block-blog-style2 .block-blog-thumb {
  width: 200px;
  height: 200px;
}
.block-blog-box.block-blog-style2 .block-blog-thumb img {
  width: 200px;
  height: 200px;
  min-width: 200px;
  max-height: 200px;
  object-fit: cover;
}
.block-blog-box.block-blog-style2 .block-blog-content {
  width: calc(100% - 220px);
}
/* Style 3  */
.block-blog-box.block-blog-style3 .block-blog-thumb:before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgb(92 94 96 / 86%) 100%);
  transform: none;
  opacity: 1;
}
.block-blog-box.block-blog-style3 .block-blog-thumb:after {
  content: unset;
}
.block-blog-box.block-blog-style3 {
  border: 0;
}
.block-blog-box.block-blog-style3 .block-blog-thumb {
  border-radius: 10px;
  overflow: hidden;
}
.block-blog-box.block-blog-style3:hover .block-blog-thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.block-blog-box.block-blog-style3 .block-blog-thumb img,
.block-blog-box.block-blog-style3:hover .block-blog-thumb img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.block-blog-box.block-blog-style3 .block-blog-content {
  padding: 20px 0;
}
.block-blog-box.block-blog-style3 .block-blog-thumb img {
  max-height: 500px;
}
/* Style 4  */
.block-blog-box.block-blog-style4 {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  background: #f1f5ff;
  padding: 10px 10px;
  border-color: #d2daed;
}
.block-blog-box.block-blog-style4 .block-blog-thumb {
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.block-blog-box.block-blog-style4 .block-blog-thumb:before {
  content: none;
}
.block-blog-box.block-blog-style4 .block-blog-thumb:after {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  top: auto;
  transform: unset;
  height: 0%;
  opacity: 1;
}
.block-blog-box.block-blog-style4:hover .block-blog-thumb:after {
  height: 100%;
  -webkit-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.block-blog-box.block-blog-style4 .block-blog-thumb img {
  width: 200px;
  height: 200px;
  min-width: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.block-blog-box.block-blog-style4 .block-blog-category {
  top: auto;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 9;
  text-align: center;
  margin: auto;
  width: fit-content;
}
.block-blog-box.block-blog-style4 .block-blog-info li:not(:first-child):before {
  border-radius: 1px;
  width: 8px;
  height: 2px;
}
.block-blog-box.block-blog-style4 .block-blog-content {
  width: calc(100% - 220px);
}

.block-link {
  text-decoration: none;
  margin: 20px 0 0px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--blockBuilder-primary-color);
}
.block-link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--blockBuilder-primary-color);
  width: 0%;
}
.block-link:before,
.block-link:hover:before {
  transition: all .3s;
}
.block-link:hover:before {
  width: 100%;
}

/* Style 5  */
.block-blog-box.block-blog-style5 .block-blog-thumb:before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgb(92 94 96 / 86%) 100%);
  transform: none;
  opacity: 1;
}
.block-blog-box.block-blog-style5 .block-blog-thumb:after {
  content: unset;
}
.block-blog-box.block-blog-style5 {
  border-radius: 0px;
  border: 0;
}
.block-blog-box.block-blog-style5 .block-blog-thumb {
  border-radius: 0px;
  overflow: hidden;
}
.block-blog-box.block-blog-style5:hover .block-blog-thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.block-blog-box.block-blog-style5 .block-blog-thumb img,
.block-blog-box.block-blog-style5:hover .block-blog-thumb img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.block-blog-box.block-blog-style5 .block-blog-content {
  padding: 20px 0;
}
.block-blog-box.block-blog-style5 .block-blog-thumb img {
  max-height: 500px;
}
.block-blog-box.block-blog-style5 .block-blog-category {
  bottom: 10px;
  top: auto;
  margin: auto;
  right: 10px;
  width: fit-content;
  left: auto;
  border-radius: 60px;
  padding: 6px 20px;
  font-weight: 700;
  text-transform: capitalize;
}

/* Style 6  */
.block-blog-box.block-blog-style6 .block-blog-thumb:before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgb(92 94 96 / 86%) 100%);
  transform: none;
  opacity: 1;
}
.block-blog-box.block-blog-style6 .block-blog-thumb:after {
  content: unset;
}
.block-blog-box.block-blog-style6 {
  border-radius: 0px;
  border: 0;
  padding: 0 0 30px;
}
.block-blog-box.block-blog-style6 .block-blog-thumb {
  border-radius: 10px;
  overflow: hidden;
}
.block-blog-box.block-blog-style6:hover .block-blog-thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.block-blog-box.block-blog-style6 .block-blog-thumb img,
.block-blog-box.block-blog-style6:hover .block-blog-thumb img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.block-blog-box.block-blog-style6 .block-blog-content {
  padding: 30px 30px;
  width: 90%;
  text-align: center;
  background: #ffffff;
  margin: -80px auto 0;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 24%);
}
.block-blog-box.block-blog-style6 .block-blog-thumb img {
  max-height: 500px;
}
.block-blog-box.block-blog-style6 .block-blog-content .block-blog-info ul {
  justify-content: center;
  background: #f5f5f5;
  padding: 8px 20px;
  display: inline-flex;
  border-radius: 6px;
}
.block-blog-box.block-blog-style6 .block-blog-category {
  bottom: 70px;
  top: auto;
  left: 0;
  right: 0;
  width: fit-content;
  z-index: 99;
  margin: auto;
  padding: 3px 15px;
}




/* Responsive */
@media screen and (max-width: 1199px) {
  .block-col4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .block-col6 {
      grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .block-col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .block-col2, .block-col3, .block-col4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .block-col6 {
    grid-template-columns: repeat(2, 1fr);
  }
}





/* Temp  */
h1 {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 30px;
  font-family: 'Archivo';
}

.block-container {
  max-width: 1400px;
  padding: 30px 0;
  margin: auto;
}
