
:root {
    /* colors */
    --black-color: #000;
    --white-color: #fff;
    --grey-color: #bebebe;
    --yellow-color: #fcbd11;
    --blue-color: #00338c;
    --border-black: #262626;
    /* font-sizes */
    --big-title-font-size: 4rem;
    --banner-title-font-size: 3.438rem;
    --title-font-size: 2.188rem;
    --second-title-font-size: 1.875rem;
    --paragraph-font-size: 1.563rem;
    --section-content-size: 1rem;
    --link-font-size: 1.375rem;
    --small-font-size: 1rem;
    --footer-font-size: 1.25rem;


    /* font-families */
    --regular-font-family: 'Lato Regular';
    --medium-font-family: 'Lato Medium';
    --bold-font-family: 'Lato Bold';
    --semi-font-family: 'Lato Semibold';
    --italic-font-family: 'Montserrat-Italic';
    --light-font-family: 'Lato Light';
    --black-font-family: 'Lato Black';

    /* other */
    --tiny-gap-size: 0.5rem;
    --small-gap-size: 1.5rem;
    --medium-gap-size: 2.5rem;
    --big-gap-size: 6rem;
    --common-gap-size: 1rem;
    --common-transition: all 0.6s ease;
}

.paragrapah p{
    font-size: 24px;
}
.explore-txt p{
    font-size: 24px;
}
.row-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}



    /* list page css */

.grid-container{
    width: 85%;
    margin: 0 auto;
    font-family: var(--regular-font-family);
}
.grid-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.heading_txt h3{
    font-size: 24px;
    font-weight: 700;
}
.first-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid var(--yellow-color);
    border-radius: 25px;
    padding: 30px;
}
/* .first-list>div:nth-child(1){
   height: 90%;
 
} */

.read-more-txt{
    margin-top: 25px;
}

.blog-list-image{
    width: 60%;
    margin: 0 auto;
    margin-top: auto;
}

.submenu-companies-box {
    position: absolute;
    background: #FFF;
    padding: 1rem;
    width: calc(100% + 2rem);
    border: 1px solid #00338c21;
    border-top: 0px;
    top: 102%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    gap: 1rem;
}

.load_txt{
    margin-top: 35px;
}
.display_br{
    display: block;
}
.list-page-image {
    right: 0%;
}


  /* details page css */

.detailspage-txt{
    top:30%;
}
.detailspage-first-txt{
    font-size: 20px;
    color: #333333;
}

.detailspage-first-txt li::before {
    position: absolute;
    content: '';
    border-radius: 0.375rem;
    height: 8px;
    width: 8px;
    margin-right: 1rem;
    background-color: #000;
    top: 11px;
    left: 0;
}
.detailspage-first-txt ol li::before { 
    position: absolute;
    top: 7px;
    left: 0;
}
.list-postion {
    position: relative;
    padding-left: 1.5rem;
}
.detailspage-headingtxt h2{
    font-size: 24px;
    font-weight: 700;
}

.span-txt{
    font-size: 24px;
    font-weight: 700;
}
.orderlist{
    list-style-type: number;
    padding-left: 24px;
}
.orderlist_txt{
    font-size: 20px;
}
.list-postion-li p {
    padding-left: 10px;
}
.list-postion-li p::before{
    position: absolute;
    content: '';
    border-radius: 50%;
    height: 8px;
    width: 8px;
    margin-right: 1rem;
    background-color: #000;
    top: 7px;
    left: 0;
}











/* @media only screen and (max-width: 1440px) {

    .heading_txt h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1366px) {

    .explore-txt p {
        font-size: 20px;
    }
   
    
}

@media only screen and (max-width: 1280px) {

    .display_br{
        display: none;
    }
    .grid-list {
        gap: 25px;
    }
    .detailspage-first-txt {
        font-size: 18px; 
    }
    .span-txt {
        font-size: 22px;
    }
    .detailspage-headingtxt h2 {
        font-size: 22px;
    }
    .detailspage-first-txt li::before {
        height: 6px;
        width: 6px;
    }
}

@media only screen and (max-width: 1024px) {
    .explore-txt p {
        font-size: 16px;
    }
    .first-list {
        padding: 20px;
    }
}

@media only screen and (max-width: 991px) {
    
    .banner-content {
        top:7%;
    }
    .row-flex {
        display: flex;
        align-items: unset;
        flex-direction: column;
        gap: 25px;
    }
    .grid-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    
    .paragrapah p {
        font-size: 18px;
    }
    .grid-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid-container {
        width: 89%;
    }
    .detailspage-first-txt {
        font-size: 16px; 
    }
    .span-txt {
        font-size: 19px;
    }
    .detailspage-headingtxt h2 {
        font-size: 19px;
    }
} */


.heading_txt{
    border-bottom: 1px solid var(--yellow-color);
    min-height: 115px;
    padding-bottom: 1rem;
}