.hero{
    background-color: #fff;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 50px;
    .header{
        .header_wrapper{
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            padding-top: 40px;
            .header_top_left{
                width: 250px;
                height: 60px;
                .logo h1{
                    font-size: 36px;
                    color: $primaryColor;
                    line-height: 45px;
                    margin-top: 3px;
                }
            }
            .header_nav{
                ul{
                    li{
                        display: inline-block;
                        margin-left: 20px;
                        position: relative;
                        &:hover a{
                            color: $primaryColor;
                        }
                        &:hover::after{
                          opacity: 1;
                        //   transition: all linear.3s;
                        }
                        &::after{
                            position: absolute;
                            content: '';
                            bottom: -12px;
                            left: 0;
                            width: 100%;
                            height: 2px;
                            background-color: $primaryColor;
                            opacity: 0;
                        }
                        
                        a:active{
                            color: $primaryColor;
                            font-size: 16px;
                            font-weight: 500;
                            color: #333;
                            text-transform: uppercase;
                        }
                    }
                }
            }
        }
    }

    .home{
        padding-top: 60px;
        .home_wrapper{
            .home_left{
                position: relative;
                .style_one{
                    height: 60px;
                    width: auto;
                    position: absolute;
                    right: 0;
                    top: -100px;
                   img{
                    height: 100%;
                    width: 100%;
                    object-fit: contain;
                   }
                }
                .style_two{
                    height: 60px;
                    width: auto;
                    position: absolute;
                    right: 125px ;
                    bottom: 220px;
                   img{
                    height: 100%;
                    width: 100%;
                    object-fit: contain;
                   }
                }
               h1{
                 font-size: 46px;
                 font-weight: 600;
                 color: #000;
                 line-height: 55px;
               }
               h2{
                font-size: 28px;
                font-weight: 500;
                color: #141414;
                line-height: 48px;
                padding-bottom: 30px;
               }
               p{
                font-size: 14px;
                font-weight: 400;
                color: $text;
                line-height: 20px;
                text-align: justify;
                padding-right: 140px;
               }
               .home_button{
                display: flex;
                align-items: center;
                padding-top: 20px;
                .shedule_btn{
                   font-size: 16px;
                   font-weight: 400;
                   color: $white;
                   padding: 10px 30px;
                   border-radius: 4px;
                   background-color: $primaryColor;
                }
                .call{
                    display: flex;
                    align-items: center;
                    padding-left: 25px;
                    .call_icon{
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        i{
                            font-size: 28px;
                            color: #333;
                        }
                    }
                    .call_text{
                        padding-left: 5px;
                        h5{
                            font-size: 10px;
                            font-weight: 400;
                            color: #181818;
                            line-height: 12px;
                            padding-top: 5px;
                        }
                        h6{
                            font-size: 13px;
                            font-weight: 500;
                            color: #000;
                            line-height: 10px;
                        }
                    }
                }
               }
               h4{
                font-size: 50px;
                font-weight: 300;
                color: #141414;
                line-height: 58px;
                padding-top: 60px;
               }
               h5{
                font-size: 18px;
                font-weight: 400;
                color: #141414;
                line-height: 30px;
                padding-top: 20px;
               }
            }
            .home_right{
                .home_img{
                    height: 700px;
                    width: 100%;
                    img{
                        height: 100%;
                        width: 100%;
                        object-fit: contain;
                    }
                }
            }
        }
    }
    .hero_card{
        margin-top: 50px;
        .card_wrapper{
            border-radius: 10px;
            border: 1px solid #c3c3c3;
            height: 300px;
            padding: 20px 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            .card_wrap{
                .card_img{
                    img{
                        height: 80px;
                        width: 80px;
                        object-fit: contain;
                    }
                }
                h4{
                    font-size: 20px;
                    font-weight: 600;
                    color: #333;
                    line-height: 28px;
                }
                p{
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 20px;
                    text-align: justify;
                }
            }
        }
    }
}