/*
Theme Name:twentytwentythree Child
Theme URI: https://wpastra.com/
Author: KodeKult
Author URI:  https://kodekult.com/
Description: This is a child theme of Astara
Version: 3.9.2
Template: twentytwentythree
Text Domain:  twentytwentythree-child
*/


/*@font-face {*/
/*  font-family: "Gotham";*/
/*  src: local("Gotham"),*/
/*   url("./assets/Gotham-Bold.otf") format("truetype");*/
/*  font-weight: 700;*/
/* }*/



.blog-section {
    width: 100%;
    max-width: 1440px;
    padding: 50px 20px;
    text-align: center;
    margin: auto;
}

.blog-list {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
    flex-wrap: wrap;
}

.single-blog {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 40%;
    flex-wrap: wrap;
    padding: 35px 15px 30px 35px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}


.d-flex {
    display: flex;
}

.gap-x-20 {
    column-gap: 20px;
}

.overlay-box {
    position: relative;
    transform: translate(-10px ,-10px);
}

.green-bg {
    position: absolute;
    left: 0;
    top: 3px;
    z-index: -1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.blog-content {
    z-index: 1;
}

.blog-content h2 {
    font-family: 'Gotham';
    font-style: normal;
    text-align: left;
    font-weight: 700;
    font-size: 21px;
    line-height: 114.2%;
    color: #122051;
}

.blog-content p {
    font-family: 'Gotham';
    font-style: normal;
    font-weight: 700;
    text-align: left;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.single-blog:hover .overlay-box .green-bg {
    transform: scale(50);
}