.logo_div{
    margin: auto;
    width: 80%;
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    background-color:rgb(140, 187, 128);
    cursor:default;
    border-radius: 20px;
    
    padding: 1%;
    margin-bottom: 40px;

    transition: all 0.3s ease;
}

.logo_div:hover{
    box-shadow: 10px 10px 5px rgb(68, 68, 68);
    transform: scale(1.01);
}

.logo_div img{
    grid-column: 2;
    grid-row: 1/3;
    margin-top: 50px;
}
.logo_div h1{
    grid-row: 1;
    grid-column: 1/3;
    text-align: center;
    font-size: calc(25px + 0.5vw);
    margin: 0;
    
    
}
.logo_div p{
    text-align: center;
    font-size: calc(10px + 0.5vw);
}


@media (max-width:986px){
    .logo_div h1{
        font-size: 23px;
    }

    .logo_div{
        grid-template-columns: 1fr 1fr;
    }

    .logo_div img{
        width: 100%;
        min-width: 200px;
    }
}

@media (max-width:615px){
    .logo_div{
        display: block;
    }

    .logo_div img{
        display: block;
        margin-top: 20px;
        margin: 0 auto;
        width: 50%;
    }
}



.content{
    padding: 1%;
}

.content h1{
    padding: 0;
    text-align: center;
}

.features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 30px;
    padding: 40px;
    border-radius: 15px;
}

.feature-item{
    padding: 30px;
    text-align: center;
    background: #d0e9be;
    border-radius:15px;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-item:hover{
    background-color:#a7d4a9;
    box-shadow:5px 5px 10px rgba(0, 0, 0, 0.473);
}

.features h3{
    color: #1b5e20; 
    margin: 10px 0;
}

.features p{
    color: #388e3c;
}


@media (max-width:400px) {
    .logo_div h1{
        font-size: 18px;
    }

    .features{
        display: block;
        margin: auto;
        
    }
    
    .feature-item{
        margin-top: 20px;
    }
}

.rectangle{
    cursor: default;
    
    list-style: none;
    counter-reset: li;
    padding: 0;
    
}
.rectangle li{
    margin-block: 2em;
    height: 50px;
}
.rectangle div{
    position: relative;
    font-size: 1.2em;
    color:rgb(72, 117, 68);
    padding: 0.6em 0.6em 0.6em 1em;
    margin: 0.5em 0 0.5em 2.5em;
    transition: all 0.3s ease;
    background: #d0e9be;
    border-radius: 10px;
    max-width: 810px;

}

.rectangle li:hover div{
    background-color: #515261;
     color:rgb(206, 206, 206);
    box-shadow:5px 5px 10px rgba(0, 0, 0, 0.473);
}

.rectangle div::before{
    position: absolute;
    content: counter(li);
    counter-increment: li;
    left: -2.5em;
    top: 1px;
    color:rgb(72, 117, 68);
    background: #d0e9be;
    border-radius:5px;
    height: 2.1em;
    width: 2.1em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.rectangle li:hover div::before{
    border-radius:50px;
    background: #6b9082;
    color:rgb(206, 206, 206);
    box-shadow:5px 5px 10px rgba(0, 0, 0, 0.473);
}


@media (max-width:500px) {
    .rectangle div{
        font-size: 1em;
    }
}

@media(max-width:350px){
    .rectangle div{
        margin-block: 50px;
    }
}



.stages{
    display: grid;
    cursor: default;
    width: 80%;
    grid-template-areas: "first  num_1 ."
                        ". line_1 ."
                        ". num_2 second"
                        ". line_2 ."
                        "third num_3 ."
                        ". line_3 ."
                        ". num_4 fourth"
                        ". line_4 ."
                        "fifth num_5 .";
    grid-template-columns: 4fr 1fr 4fr;
    text-align: center;
    align-content: center;
    margin: auto;
}

.stages div{
    
 
    line-height: 1em;
}
.first{
    grid-area: first;
}
.second{
    grid-area: second;
}
.third{
    grid-area: third;
}
.fourth{
    grid-area: fourth;
}
.fifth{
    grid-area: fifth;
}

.num_1{
    position: relative;
    grid-area: num_1;
}

/* .num_1::after{
    position: absolute;
    content:" ";
    border-right:3px solid black;
    left: 25px;
    top: 55px;
    height: 50px;
    
} */


.num_2{
    position: relative;
    grid-area: num_2;
}

/* .num_2::after{
    position: absolute;
    content:" ";
    border-right:3px solid black;
    left: 25px;
    top: 55px;
    height: 50px;
    
} */

.num_3{
    position: relative;
    grid-area: num_3;
}

/* .num_3::after{
    position: absolute;
    content:" ";
    border-right:3px solid black;
    left: 25px;
    top: 55px;
    height: 50px;
    
} */

.num_4{
    position: relative;
    grid-area: num_4;
}

/* .num_4::after{
    position: absolute;
    content:" ";
    border-right:3px solid black;
    left: 25px;
    top: 55px;
    height: 50px;
    
} */

.num_5{
    grid-area: num_5;
}

.num{
    margin: auto;
    margin-block: 30px;
       padding: 10px;
    font-size: 30px;
    font-weight: bold;
    color:rgb(185, 185, 185);
    background-color:#262626;
    border-radius:5px;
    width: 50px;
    height: 50px;
    align-self: center;
    transition: all 0.3s ease;
}
.stage{
    margin: auto;
    margin-block: 30px;
       padding: 10px;
    font-size: 1.2em;
    border-radius:5px;
    font-weight: 500;
    background-color:#427556;
    color:rgb(196, 195, 195);
    transition: all 0.3s ease;
}

.line_1{
    grid-area: line_1;
}
.line_2{
    grid-area: line_2;
}
.line_3{
    grid-area: line_3;
}
.line_4{
    grid-area: line_4;
}

.lines{
    display: block;
    width: 3px;
    height: 10vh;
    background-color:black;
    margin: auto;
    border-radius:5px;
}

@media(max-width:885px){
    .stages{
        width: 100%;
    }
    .stage{
        font-size: 1em;
    }
   
}

@media(max-width:680px){
    .lines{
        display: none;
    }

     .num{
        font-size: 20px;
        padding: 7px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width:580px){
    .stages{
        grid-template-columns: 1fr 5fr;
        grid-template-areas: "num_1 first"
                            "line_1 ."
                            "num_2 second"
                            "line_2 ."
                            "num_3 third"
                            "line_3 ."
                            "num_4 fourth"
                            "line_4 ."
                            "num_5 fifth";

         width: 100%;
    }

    .lines{
        display: block;
    }
   
}

.hovering{
    
    background-color:#4f566e;
    border-radius:20px;
}

p{
    text-align: center;
    font-size: larger;
}

.company_buttons{
    display: flex; 
    justify-content: center;
    gap: 5%;
    flex-wrap: wrap;
    
    margin-inline: 15px;
}

.company_buttons button {
    background-color: #FF8C00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;

    border: 0px;
    border-radius: 13px;

    width: 300px;
    height: 50px;

    margin-top: 10px;

    transition: all 0.3s ease;
}

.company_buttons button:hover{
    background-color: rgba(201, 142, 33, 1);
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.5);
}

