/* other company page styling */

.blog_hero_sect{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 450px;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_blog-content{
    width: 85%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    font-family: var(---font);
}

.hero_blog-content h2{
    font-size: 3rem;
    box-sizing: border-box;
    overflow: hidden;
}

.hero_blog-content p{
    font-size: 1.2rem;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 2rem;
}

.hero_blog-content .blog_search_bar{
    width: 80%;
    height: 70px;
    box-sizing: border-box;
    overflow: hidden;
    margin: auto auto;
    border-radius: 7px;
}

.blog_search_bar form{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
     display: flex;
    align-items: center;
    justify-content: flex-start;
}

.blog_search_bar input{
    width: calc(100% - 170px);
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    font-family: var(---font);
    background-color: var(---background);
    border: none;
    outline: none;
    padding: 15px 20px;
    letter-spacing: .5px;
    font-size: 1.1rem;
    font-weight: 500;
}

.blog_search_bar form button{
    width: 170px;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    padding: 0px;
    color: var(---background);
    background-color: var(---button_background);
    cursor: pointer;
    border: 2px solid var(---primary_color);
}

.blog_search_bar input ::placeholder{
    color: var(---text_light);
    font-weight: 500;
    font-size: 1.1rem;
    opacity: .5;
}

.post_sect{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px 40px;
    font-family: var(---font);
    background: var(---background_sect);
    min-height: 200px;
}

.latest_post_sect{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
}

.faq_sect{
    display: none !important;
}

.latest_post_sect h1{
    font-size: 2rem;
    box-sizing: border-box;
}

.latest_posts{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px 0px;
}

.post{
    width: calc(100% / 4 - 30px);
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(---background);
    border-radius: 20px;
    min-height: 400px;
    box-shadow: 1px 3px 10px #0000007b;
    transition: all .3s ease-in-out;
    text-decoration: none;
    color: var(---text_color);
}

.post:nth-child(3){
    width: calc(100% / 4 * 2 - 30px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.post .post_img{
    width: 100%;
    height: calc(400px / 2 - 10px);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s linear;
}

.post:nth-child(3) .post_img{
    width: calc(100% / 2) !important;
    height: 400px !important;

}

.post .post_img div{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.post .post_img img{
    width: auto;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    object-fit: cover;
    min-width: 100%;
    transition: .4s linear;
}

.post .post_img video{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    object-fit: cover;
}

.video-js .vjs-big-play-button{
    background: var(---button_gradent) !important;
    color: var(---background) !important;
    left: calc(50% - 3rem) !important;
    top: calc(50% - 1.63332rem) !important;
}


.post_img:hover img{
    transform: scale(1.1);
}

.post_img:hover video{
    transform: scale(1.1);
    transition: .3s linear;
}

.post_img:hover iframe{
    transform: scale(1.1);
    transition: .3s linear;
}

.post_content{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
}

.post:nth-child(3) .post_content{
    width: calc(100% / 2) !important;
    height: 400px !important;
}

.tags{
    width: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
    height: fit-content;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    font-size: 13px;
    box-sizing: border-box;
    opacity: .8;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 2rem;
}

.title{
    font-size: 1.3rem;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0px;
    padding: 5px 10px;
    min-height: 120px;
    letter-spacing: .5px;
    line-height: 2.2rem;
    cursor: pointer;
    opacity: .9;
    font-family: Cambria, Cochin, Georgia,
     Times, 'Times New Roman', serif;
     height: fit-content;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 3;
}

.title:hover{
    text-decoration: underline;
}
.decription{
    padding: 10px;
    font-size: 14px;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 2rem;
    color: var(---text_color);
    letter-spacing: .5px;
    margin: 0px;
    padding-top: 0px !important;
    font-weight: 500;
     height: fit-content;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 3;
     display: none;
}

.post:nth-child(3) .decription{
    display: block !important;
    padding-bottom: 0px 10px !important;
    display: -webkit-box !important;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 3;
}

.post_timesince{
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 14px;
    width: 100%;
    height: fit-content;
    font-weight: 500;
    color: var(---text_light);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.author{
    display: none !important;
}

.post:nth-child(3) .author{
    display: block !important;
}

.most_read_post-sect{
    margin-top: 20px;
}

.most_post{
    width: calc(100% / 3 - 30px);
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(---background);
    border-radius: 20px;
    min-height: 400px;
    box-shadow: 1px 3px 10px #0000007b;
    transition: all .3s ease-in-out;
    text-decoration: none;
    color: var(---text_color);
}

.most_post:nth-child(1){
    width: calc(100% / 3 * 2 - 30px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.most_post .post_img{
    width: 100%;
    height: calc(400px / 2.25);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s linear;
}

.most_post:nth-child(1) .post_img{
    width: calc(100% / 2) !important;
    height: 400px !important;
}

.most_post .post_img img{
    width: auto;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    object-fit: cover;
    min-width: 100%;
    transition: .4s linear;
}

.post_img iframe{
    width: auto !important;
    height: 100% !important;
    box-sizing: border-box;
    min-width: 100% !important;
    object-fit: cover !important;
}

.most_post:nth-child(1) .post_content{
    width: calc(100% / 2) !important;
    height: 400px !important;
}

.most_post .title{
    min-height: 100px !important;
    padding: 0px 10px !important;
}

.most_post:nth-child(1) .decription{
    display: block !important;
    padding-bottom: 0px 10px !important;
    display: -webkit-box !important;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 3;
}
.most_post .post_img video{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    object-fit: cover;
}

.most_post .post_img div{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.most_post .author{
    display: block !important;
}

.ads{
    width: calc(100% / 3 * 2 - 30px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.ads .post_img{
    width: calc(100% / 3) !important;
    height: 400px !important;
}

.ads .post_content{
    width: calc(100% / 3 * 2) !important;
    height: 400px !important;
}

.ads .title{
    min-height: 10px !important;
}

.ads .decription{
    display: block !important;
    padding: 0px 10px !important;
    display: -webkit-box !important;
    margin-bottom: 30px !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.all_button{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    margin-top: 20px;
}

.all_button a{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(---button_background);
    color: var(---background);
    width: 220px;
    height: 50px;	
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid var(---primary_color);
}

.other_post{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.other_post_sect{
    width: calc(100% / 2 - 20px);
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px 10px;
    background-color: var(---background);
}

.other_post_sect h1{
    text-align: center;
    font-size: 1.7rem;
}

.main_post_sect{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
}

.pop_post{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100% !important;
    min-height: 150px !important;
    border: 1px solid #0000003e;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.pop_post .post_img{
    width: calc(100% / 3 + 10px) !important;
    height: 150px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pop_post .post_img img{
    width: auto;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
    min-width: 100%;
}

.pop_image video{
   width: auto;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
    min-width: 100%; 
}

.pop_post_content{
    width: calc(100% / 3 * 2 - 10px);
    height: 150px;
    overflow: hidden;
    padding: 10px 15px;
    box-sizing: border-box;
}

.pop_post_content .tags{
    padding: 0px !important;
}

.pop_post_content h3{
    font-size: 1.3rem;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    letter-spacing: .5px;
    line-height: 2.2rem;
    cursor: pointer;
    opacity: .9;
    font-family: Cambria, Cochin, Georgia,
     Times, 'Times New Roman', serif;
     height: fit-content;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
}

.pop_post_content h3:hover{
    text-decoration: underline;
}

.tint{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    box-sizing: border-box;
    padding: 0px !important;
    color: var(---text_light);
}

.tint .post_timesince{
    width: fit-content !important;
    box-sizing: border-box;
    padding: 0px !important;
    margin: 0px !important;
}

/* single post styling */

.single_post_wrap{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 50px !important;
}

.main_post_content{
    width: 65%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    background: #f5f5f5aa;
    padding: 15px 20px;
}

.main_post_content h1{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 2.5rem;
    box-sizing: border-box;
    margin:0px;
    line-height: 3.5rem;
    font-size: 600;
    letter-spacing: .5px;
}

.content_image{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.content_image video{
    width: auto;
    height: 100%;
    object-fit: cover;
}

.content_image div{
    width: 100%;
    height: 400px;
    box-sizing: border-box;
}

.content_image img{
    width: 100%;
    height: auto;
    object-position: center;
}

.content_image iframe{
    width: 100% !important;
    height: 400px !important;
}

.contents{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    font-family: var(---font);
}

.single_author{
    font-size: 14px;
}

.date_type{
    width: 100%;
    box-sizing: border-box;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    opacity: 0.8;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
}

.mian_content{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
}

.mian_content h1, .mian_content h2,.mian_content h3{
    font-family: var(---font) !important;
    font-size: 1.2rem !important;
    font-weight: 500;
    line-height: 1.7rem !important;
    color: var(---text_color);
}

.mian_content p, ul, ol{
    font-size: 15px;
    box-sizing: border-box;
    font-weight: 500;
    line-height: 1.7rem;
    letter-spacing: .5px;
    opacity: 0.8;
}

.author_image{
    width: fit-content;
    box-sizing: border-box;
    height: fit-content;
    text-align: center;
    overflow: hidden;
    margin-top: 20px;
}

.author_image span{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(---text_color);
}

.author_image span img{
    width: auto;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
    max-width: 100%;
}

.by_author_p{
    font-size: 14px;
    color: var(---text_color);
}

.by_author_p a{
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    letter-spacing: .5px;
}

.other_post_content{
    width: 30%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    position: sticky;
    padding: 10px 0px;
    font-family: var(---font);
}

.other_post_content h2{
    font-size: 2rem !important;
    box-sizing: border-box;
    text-align: center;
    font-weight: 600;
}

.ads_box{
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    height: fit-content;
    background-color: var(---background);
    border-radius: 5px;
    border: 2px solid #6e6e6e88;
    margin-bottom: 40px;
}

.ads_image_holder{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(---text_light);
}

.ads_image_holder div{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.ads_image_holder video{
    width: 100%;
    height: auto;
}

.ads_image_holder img{
    width: 100%;
    height: auto;
}

.ads_header{
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px;
}

.ads_header h3{
    margin: 0px;
    font-weight: 500;
}

.week_trend_box{
    width: 100%;
    height: 120px;
    box-sizing: border-box;
   border: 2px solid #6e6e6e88;
   padding: 10px; 
   margin-bottom: 40px;
   border-radius: 7px;
}

.week_trend_box h3{
    font-weight: 500;
    box-sizing: border-box;
    margin: 0px;
    display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2;
     line-height: 2rem;
     overflow: hidden;
     height: fit-content;
}

.week_trend_box h3:hover{
    text-decoration: underline;
}

.week_trend_box span{
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top: 10px;
    opacity: 0.8;
    font-size: 1rem;
}

.in_single{
    background: var(---background_sect);
    padding: 20px 40px;
    align-items: flex-start !important;
    font-family: var(---font);
}

.in_single .other_post_sect:nth-child(3) > .pop_post:nth-child(3){
    display: none !important;
}

.explore{
    width: 300px;
    height: fit-content;
    box-sizing: border-box;
    border: 2px solid #6e6e6e88;
    float: right;
    padding: 10px 15px;
}

.explore address{
    line-height: 1.5rem;
    font-weight:  400;
    font-style: italic;
    letter-spacing: .5px;
    opacity: 0.7;
    font-size: 15px;
}

.explore span{
    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.explore span > a{
    text-decoration: none;
    color: var(---text_color);
    font-size: 30px;
    display: flex;
    align-items: start;
    justify-content: center;
    width: 50px;
    height: 30px;
    border-radius: 10px;
}

.explore span > a:hover{
    background: var(---background_gradient);
}

.blog_nav_button{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.blog_nav_button a{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    background-color: var(---button_background);
    color: var(---background);
    width: fit-content;
    height: fit-content;	
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid var(---primary_color);
}

.search_icon{
    display: none;
}

.social_icons{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.icon{
    width: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 12px;
    background: var(---background_gradient);
    border-radius: 7px;
    cursor: pointer;
}


/* contect ticket styling */

.contact_hero{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position-x: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_hero-content{
    width: 80%;
    height: fit-content;
    text-align: center;
    color: var(---background);
    font-family: var(---font);
}

.contact_hero-content h2{
    font-size: 3rem;
}

.contact_hero-content p{
    font-size: 1.2rem;
    letter-spacing: .5px;
    font-weight: 500;
    line-height: 1.5rem;
}

.contact_form_sect{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px 40px;
    background: linear-gradient(
        50deg,
        #fff,
        #fff,
        #acc6f646,
        #acd1f646
    );
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    font-family: Cambria, Cochin,
     Georgia, Times, 'Times New Roman', serif;
}

.contact_form{
    width: 500px;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
}

.contact_form h3{
    font-size: 1.3rem;
    text-align: center;
}

.contact_row{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 10px;
}

.contact_row input, .contact_row select{
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 15px 20px;
    border: 1px solid #0000003e;
    border-radius: 5px;
    background-color: transparent;
    outline: none;
    letter-spacing: .5px;
}

.contact_row input, .contact_row select ::placeholder{
    font-size: 14px !important;
    font-weight: 500;
    letter-spacing: .5px;
}

.contact_row textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    height: 250px;
    border-radius: 5px;
    border: 1px solid #0000003e;
    outline: none;
    background-color: transparent;
}

.contact_row button{
    width: 150px;
    height: 45px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 7px;
    background-color: var(---button_background);
    color: var(---background);
    border: none;
    cursor: pointer;
    transition: .4s linear;
}

.contact_row button:focus, .contact_row button:active{
    background: var(---background_sect);
    border: 1px solid var(---primary_color);
    color: var(---button_background);
}

.button_contact_sect{
    width: 450px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #d1d1d1;
    padding: 4rem 15px;
    height: fit-content;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.link_row{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link_row a{
    width: 190px;
    height: fit-content;
    box-sizing: border-box;
    padding: 12px 10px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(---background);
    border: 1px solid #d1d1d1;
    text-decoration: none;
    color: var(---text_color);
    font-family: var(---font);
    font-weight: 600;
}

.link_row a > small{
    font-size: 17px;
}

.icon_image{
    width: 23px;
    height: 22px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_image img{
    width: auto;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
}

.our_socials{
    margin-top: 30px !important;
    width: 80%;
    margin: auto auto;
}

.join_icon{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.join_icon a{
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join_icon a > img{
    width: auto;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
}
.reach_us {
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 30px;
}

.reach_us h3{
    text-align: center;
}

.other_contact{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 5px;
    margin-bottom: 10px;
}

.other_contact a{
    text-decoration: none;
    color: var(---text_color);
    box-sizing: border-box;
}

@media screen and (max-width:1200px) {
    .latest_posts .post{
        width: calc(100% / 3 - 30px) !important;
    }
    .post:nth-child(3){
        position: relative;
    }
    .post:nth-child(3) .post_img{
        position: absolute;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden;
        
    }
    .post:nth-child(3) .post_content{
        position: absolute;
        width: 100% !important;
        height: 100% !important;
        top: 0px;
        left: 0px;
        background-color: #00000054;
        z-index: 2;
        color: var(---background) !important;
    }
    .post:nth-child(3) .decription{
        color: var(---background) !important;
    }
    .post:nth-child(3) .post_timesince{
        color: var(---background) !important;
    }
    .single_post_wrap{
        padding: 20px !important;
    }
}
@media screen and (max-width:1000px) {
    .post_sect{
        padding: 20px !important;
    }
    .latest_posts .post{
        width: calc(100% / 2 - 20px) !important;
    }
    .most_post{
     width: calc(100% / 2 - 20px) !important;
    }
    .most_post:nth-child(1){
        width: 100% !important;
    }
    .ads{
        width: 100% !important;
    }
    .other_post{
        flex-wrap: wrap;
    }
    .other_post_sect{
        width: 100%  !important;
    }
    .main_post_content{
        width: 100% !important;
    }
    .other_post_content{
        width: 90% !important;
        position: relative;
        padding: 20px 10px !important;
        margin: auto auto;
    }
}

@media screen and (max-width:750px) {
    .blog_hero_sect{
        padding: 10px;
        min-height: 350px;
    }
    .hero_blog-content{
        width: 100%;
    }
    .hero_blog-content h2{
        font-size: 2rem;
    }
    .hero_blog-content p{
        font-size: 0.90rem;
    }
    .hero_blog-content .blog_search_bar{
        width: 95% !important;
        background-color: var(---background);
    }
    .search_icon{
        display: block !important;
    }
    .search_text{
        display: none !important;
    }
    .blog_search_bar form button{
        width: 50px !important;
        height: 50px;
        border-radius: 50%;
    }
    .blog_search_bar form input{
        width: calc(100% - 70px);
    }
    .latest_posts .post, .most_post{
        width: 90% !important;
        border-radius: 0px;
        min-height: 360px;
        background-color: transparent !important;
        box-shadow: none;
        border-bottom: 1px solid #0000003e;
    }
    .latest_posts .post .post_timesince, .most_post .post_timesince{
        display: none;
    }
    .latest_posts .post .post_img, .most_post .post_img{
        min-height: 238px !important;
        border-radius: 10px;
    }
    .title{
        min-height: fit-content !important;
    }
    .post.post:nth-child(3){
        min-height: 360px !important;
        background-color: transparent !important;
        border-radius: 10px !important;
    }
    .most_post .title{
        min-height: fit-content !important;
    }
    .most_post:nth-child(1) .title{
        -webkit-line-clamp: 2 !important;
        display: -webkit-box !important;	
    }
    .most_post:nth-child(1), .ads{
        min-height: fit-content !important;
        padding-bottom: 10px;
    }
    .most_post:nth-child(1) .decription, .ads .decription{
        display: none !important;
    }
    .most_post:nth-child(1) .post_img, .ads .post_img{
        width: 150px !important;
        height: 150px !important;
        min-height:  fit-content !important;
    }
    .most_post:nth-child(1) .post_content, .ads .post_content{
        min-height: fit-content !important;
        height: fit-content !important;
        width: calc(100% - 150px) !important; 
    }
    .ads .post_timesince{
        display: block !important;
    }
    .main_post_content{
        padding: 10px !important;
    }
    .main_post_content h1{
        font-size: 1.5rem;
        line-height: 2.2rem;
    }
    .content_image div{
        height: 300px;
    }
    .content_image iframe{
        height: 300px !important;
    }
    .in_single{
        padding: 20px !important;
    }
    .contact_hero-content h2{
        font-size: 2.5rem;
    }
    .contact_hero-content p{
        line-height: 1.7rem;
        font-size: 1rem;
    }
    .contact_hero{
        min-height: 300px;
    }
    .contact_form{
        width: 100%;
    }
    .button_contact_sect{
        width: 100%;
    }
}

@media screen and (max-width:500px) {
    .hero_blog-content p{
        line-height: 1.5rem;
    }
    .latest_post_sect h1{
        font-size: 1.3rem !important;
    }
    .latest_posts .post, .most_post{
        width: 100% !important;
    }
    .post_sect{
        padding: 20px 10px !important;
    }
    .other_post_sect h1{
        font-size: 1.3rem;
    }
    .pop_post_content{
        padding: 7px;
    }
    .hero_blog-content .blog_search_bar{
        width: 100% !important;
        height: 60px !important;
    }
    .blog_search_bar form input{
        padding: 10px;
        font-size: 0.90rem;
        width: calc(100% - 60px);
    }
    ::placeholder{
        font-size: 0.90rem;
    }
    .blog_search_bar form button{
        width: 40px !important;
        height: 40px !important;
    }

    .blog_search_bar form button svg{
        width: 18px;
        height: 18px;
    }
    .blog_hero_sect{
        min-height: 300px;
    }
    .single_post_wrap{
        padding: 20px 10px !important;
    }
    .other_post_content{
        width: 100% !important;
    }
    .in_single{
        padding: 20px 10px !important;
    }
    .contact_hero-content{
        width: 90%;
    }
    .contact_form_sect{
        padding: 20px 10px;
    }
    .link_row a{
        width: calc(100% / 2 - 10px);
    }
}

@media screen and (max-width:350px) {
    .link_row{
        flex-wrap: wrap;
        gap: 10px;
    }
    .link_row a{
        width: 100%;
    }
    .our_socials{
        width: 100%;
    }
}

/* THE ABOUT SECTION */
 .hero-section {
            background: var(---background_sect);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--background-sect-gradient);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: bold;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(---text_light);
            font-weight: 500;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(---text_light);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: var(---button_gradent);
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            border: 1px solid var(---button_border);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            background: var(---button_background_hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }

        .values-section {
            padding: 4rem 2rem;
            background: var(---background_sect_gradent);
            position: relative;
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .value-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(---primary_color);
        }

        .value-title {
            font-size: 1.8rem;
            color: var(---primary_color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1rem;
        }

        .value-content {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(---text_light);
        }

        .mission-statement {
            font-style: italic;
            font-size: 1.2rem;
            margin: 1.5rem 0;
            padding-left: 1rem;
            border-left: 3px solid var(---button_border);
        }

        .core-values {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .core-value {
            background: var(---primary_color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .utility-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px solid var(---light_color);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .search-box {
            padding: 0.5rem 1rem;
            border: 1px solid var(---light_color);
            border-radius: 4px;
            width: 200px;
        }

        @media (max-width: 768px) {
            .values-container {
                grid-template-columns: 1fr;
            }
            
            .utility-bar {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
        }

        .founder-section {
        padding: 4rem 2rem;
        font-family: Arial, sans-serif;
        background: linear-gradient(90deg, #ffffff66 0%, #0259b744 100%), #e0e0e0;
    }

    .founder-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .founder-title {
        font-size: 2.5rem;
        color: #002143;
        margin-bottom: 1.5rem;
    }

    .founder-bio {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #3f3f3fdc;
        margin-bottom: 2rem;
    }

    .founder-quote {
        font-style: italic;
        font-size: 1.3rem;
        color: #002143;
        padding-left: 1.5rem;
        border-left: 3px solid #dd8800;
        margin: 2rem 0;
    }

    .founder-info {
        margin-top: 1.5rem;
    }

    .founder-name {
        font-weight: bold;
        font-size: 1.3rem;
        color: #002143;
    }

    .founder-position {
        color: #3f3f3fdc;
        font-size: 1rem;
    }

    .founder-image-container {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 33, 67, 0.1);
    }

    .founder-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .founder-image:hover {
        transform: scale(1.02);
    }

    @media (max-width: 768px) {
        .founder-container {
            grid-template-columns: 1fr;
        }
        
        .founder-image-container {
            order: -1;
            max-width: 400px;
            margin: 0 auto 2rem;
        }
        
        .founder-title {
            font-size: 2rem;
        }
    }

        .section-title {
            font-size: 2.2rem;
            color: var(---primary_color);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(---button_border);
        }

        .founder-bio {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(---text_light);
            margin-bottom: 1.5rem;
        }

        .founder-quote {
            font-style: italic;
            font-size: 1.2rem;
            line-height: 1.6;
            color: var(---primary_color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 3px solid var(---button_border);
            background: var(---background_sect);
        }

        .founder-signature {
            font-weight: bold;
            font-size: 1.2rem;
            color: var(---primary_color);
            margin-top: 0.5rem;
        }

        .founder-position {
            color: var(---text_light);
            font-size: 0.9rem;
            margin-top: 0.2rem;
        }

        @media (max-width: 768px) {
            .founder-container {
                grid-template-columns: 1fr;
            }
            
            .founder-image-placeholder {
                height: 250px;
                max-width: 300px;
                margin: 0 auto;
            }
        }

       .team-section {
            padding: 5rem 2rem;
            background: var(--background-sect);
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--button-border);
        }

        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .member-image {
            height: 300px;
            width: 100%;
            object-fit: cover;
            display: block;
        }

        .member-content {
            padding: 1.5rem;
        }

        .member-name {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .member-position {
            font-size: 1.1rem;
            color: var(--button-background);
            font-weight: bold;
            margin-bottom: 1rem;
            display: inline-block;
            padding-bottom: 3px;
            border-bottom: 2px solid var(--button-border);
        }

        .member-bio {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-light);
        }

        .member-divider {
            border: none;
            height: 1px;
            background: var(--light-color);
            margin: 1.5rem 0;
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            .team-members {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        .grow-section {
            padding: 5rem 2rem;
            background: var(---primary_color);
            color: white;
        }

        .grow-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .grow-content {
            position: relative;
            z-index: 1;
        }

        .grow-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .grow-text {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .search-box {
            display: flex;
            max-width: 500px;
        }

        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }

        .search-button {
            background: var(---button_border);
            color: white;
            border: none;
            padding: 0 1.5rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .search-button:hover {
            background: #cc7700;
        }

        .image-box {
            background: var(---background_sect);
            height: 350px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .image-box::after {
            content: "";
            color: var(---text_light);
            position: absolute;
        }

        @media (max-width: 768px) {
            .grow-container {
                grid-template-columns: 1fr;
            }
            
            .image-box {
                height: 250px;
                order: -1;
            }
            
            .grow-title {
                font-size: 2rem;
            }
        }

.hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--background-sect-gradient);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: bold;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(---text_light);
            font-weight: 500;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(---text_light);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: var(---button_gradent);
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            border: 1px solid var(---button_border);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            background: var(---button_background_hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }

       .mv-section {
    padding: 5rem 2rem;
    background: var(--background-sect);
    font-family: 'Arial', sans-serif;
  }

  .mv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .mv-block {
    margin-bottom: 2.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .mv-block:hover {
    transform: translateY(-5px);
  }

  .mv-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .mv-icon {
    width: 40px;
    height: 40px;
    background: var(---primary_color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
  }

  .mv-title {
    font-size: 1.5rem;
    color: var(---primary_color);
    margin: 0;
  }

  .mv-statement {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    padding-left: 0.5rem;
    border-left: 3px solid var(---button_border);
    margin: 1rem 0 0 0;
  }

  .values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .value-pill {
    background: var(---primary_color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .mv-image-container {
    position: relative;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .mv-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
  }

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,33,67,0.7), rgba(0,33,67,0.2));
  }

  @media (max-width: 768px) {
    .mv-container {
      grid-template-columns: 1fr;
    }
    
    .mv-image-container {
      order: -1;
      height: 350px;
    }
    
    .mv-block {
      margin-bottom: 2rem;
    }
  }

        .founder-section {
        padding: 4rem 2rem;
        font-family: Arial, sans-serif;
        background: linear-gradient(90deg, #ffffff66 0%, #0259b744 100%), #e0e0e0;
    }

    .founder-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .founder-title {
        font-size: 2.5rem;
        color: #002143;
        margin-bottom: 1.5rem;
    }

    .founder-bio {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #3f3f3fdc;
        margin-bottom: 2rem;
    }

    .founder-quote {
        font-style: italic;
        font-size: 1.3rem;
        color: #002143;
        padding-left: 1.5rem;
        border-left: 3px solid #dd8800;
        margin: 2rem 0;
    }

    .founder-info {
        margin-top: 1.5rem;
    }

    .founder-name {
        font-weight: bold;
        font-size: 1.3rem;
        color: #002143;
    }

    .founder-position {
        color: #3f3f3fdc;
        font-size: 1rem;
    }

    .founder-image-container {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 33, 67, 0.1);
    }

    .founder-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .founder-image:hover {
        transform: scale(1.02);
    }

    @media (max-width: 768px) {
        .founder-container {
            grid-template-columns: 1fr;
        }
        
        .founder-image-container {
            order: -1;
            max-width: 400px;
            margin: 0 auto 2rem;
        }
        
        .founder-title {
            font-size: 2rem;
        }
    }

        .section-title {
            font-size: 2.2rem;
            color: var(---primary_color);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(---button_border);
        }

        .founder-bio {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(---text_light);
            margin-bottom: 1.5rem;
        }

        .founder-quote {
            font-style: italic;
            font-size: 1.2rem;
            line-height: 1.6;
            color: var(---primary_color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 3px solid var(---button_border);
            background: var(---background_sect);
        }

        .founder-signature {
            font-weight: bold;
            font-size: 1.2rem;
            color: var(---primary_color);
            margin-top: 0.5rem;
        }

        .founder-position {
            color: var(---text_light);
            font-size: 0.9rem;
            margin-top: 0.2rem;
        }

        @media (max-width: 768px) {
            .founder-container {
                grid-template-columns: 1fr;
            }
            
            .founder-image-placeholder {
                height: 250px;
                max-width: 300px;
                margin: 0 auto;
            }
        }

       .team-section {
            padding: 5rem 2rem;
            background: var(--background-sect);
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--button-border);
        }

        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .member-image {
            height: 300px;
            width: 100%;
            object-fit: cover;
            display: block;
        }

        .member-content {
            padding: 1.5rem;
        }

        .member-name {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .member-position {
            font-size: 1.1rem;
            color: var(--button-background);
            font-weight: bold;
            margin-bottom: 1rem;
            display: inline-block;
            padding-bottom: 3px;
            border-bottom: 2px solid var(--button-border);
        }

        .member-bio {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-light);
        }

        .member-divider {
            border: none;
            height: 1px;
            background: var(--light-color);
            margin: 1.5rem 0;
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            .team-members {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        .grow-section {
            padding: 5rem 2rem;
            background: var(---primary_color);
            color: white;
        }

        .grow-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .grow-content {
            position: relative;
            z-index: 1;
        }

        .grow-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .grow-text {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .search-box {
            display: flex;
            max-width: 500px;
        }

        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }

        .search-button {
            background: var(---button_border);
            color: white;
            border: none;
            padding: 0 1.5rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .search-button:hover {
            background: #cc7700;
        }

        .image-box {
            background: var(---background_sect);
            height: 350px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .image-box::after {
            content: "";
            color: var(---text_light);
            position: absolute;
        }

        @media (max-width: 768px) {
            .grow-container {
                grid-template-columns: 1fr;
            }
            
            .image-box {
                height: 250px;
                order: -1;
            }
            
            .grow-title {
                font-size: 2rem;
            }
        }

