* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

.top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.top_h1 {
    font-size: 4rem;
    font-weight: 800;
    flex-basis: 100%;
    text-align: center;
    letter-spacing: 10px;
    padding-bottom: 20px;
    color: #38B449;
}

.top_p-img {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-basis: 100%;
}

.top-p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.top_p {
    font-weight: 800;
    font-size: 3rem;
}

.top_img {
    flex-basis: 60%;
}

.mid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #38B449;
    padding: 50px 10px;
}

.mid_link-img {
    padding: 20px;
    display: flex;
    flex-basis: 200px;
}

.mid_img {
    transition: 0.5s;
}

.mid_img:hover {
    transform: scale(1.2);
}

.mid_link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 3rem;
}

.mid_call {
    padding: 15px 20px;
    
}

.bottom {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.bottom-img {
    display: flex;
    flex-basis: 320px;
}

.footer {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.footer-text {
    text-align: center;
    font-weight: 600;
}

.call {
    display: block;
    position: fixed;
    width: 70px;
    height: 70px;
    background-color: #29a039;
    border: 0;
    outline: none;
    border-radius: 50%;
    right: 20px;
    bottom: 15px;
    z-index: 13123;
    text-align: center;
}

.call_img {
    width: 30px;
    margin-top: 20px;
}

.call {
    transition: 0.5s;
}

.call:hover {
    transform: scale(1.2);
}

/* media================================= */
@media screen and (max-width: 1296px) {
    .top_img {
        flex-basis: 30%;
    }
}

@media screen and (max-width: 1060px) {
    .top_img {
        flex-basis: 30%;
    }

    .top_p {
        font-size: 2.3rem;
    }

    .mid_link {
        font-size: 2rem;
    }
}

@media screen and (max-width: 756px) {
    .top_h1 {
        font-size: 2rem;
    }

    .top_p {
        font-size: 1.5rem;
    }

    .top-img2 {
        display: none;
    }

    .mid_link-img2 {
        display: none;
    }

    .mid_link {
        font-size: 1.3rem;
    }

    .bottom-img {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 460px) {
    .top_p {
        font-size: 1.1rem;
    }

    .top_img {
        flex-basis: 40%;
    }

    .mid_link {
        font-size: 1.2rem;
    }

    .mid_link-img {
        flex-basis: 30%;
        padding: 0;
    }

}

@media screen and (max-width: 354px) {
    .mid_link-img {
        flex-basis: 20%;
    }
}