/*footer desktop */
footer {
    color: white;
    background-color: #137ddf;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 4rem 0rem;
}
footer .section1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
footer .section1 p {
    font-size: 1.75rem;
    font-weight: 500;
}
footer .section2 {
    display: flex;
    justify-content: space-evenly;
    
    flex-direction: row;
}
footer .section2 a {
    color: white;
    text-decoration: none;
    font-size: 0.813rem;
}
footer .section3 {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    border-right: 1px solid;
    border-left: 1px solid;
}
footer .section3 p,
footer .section4 p {
    margin-bottom: 5px;
    margin-top: 0px
}

footer .section3 a {
    color: white;
    font-weight: bold;
}
footer .section3 a i {
    font-size: 1rem;
}
footer .section3 a:hover {
    color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
footer .section4 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  
}
footer .section4 .search-box {
    margin-top: 0.3rem;
    background-color: white;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0rem 1rem;
    height: 2.5rem;
}
footer .section4 .search-box .form-group {
    padding-top: 1.25rem;
}
footer .section4 .search-box .search-btn {
    float: right;
    color: gray;
    box-shadow: none;
}
footer .section4 .search-box input::-webkit-input-placeholder {
    font-size: 0.9rem;
    line-height: 3;
}

footer .section4 .search-box .search-btn i {
    font-size: 1.1rem;
}
footer .section4 .search-box .search-text {
    outline: none;
    border: none;
    float: left;
    background-color: transparent;
}
footer .section2 a:hover {
    color: #ffffffba;
}
/*footer desktop end*/

/*footer tablet */

@media screen and (min-width: 481px) and (max-width: 893px) {
    footer .section3 {
        border: none !important;
    }
}
/*footer tablet end*/

/*footer mobile */
@media screen and (min-width: 320px) and (max-width: 480px) {
    footer .section1 {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    footer .section2 {
        padding: 0.5rem 0rem;
    }
    footer .section3 {
        border: none !important;
        margin-bottom: 0.5rem;
    }
}
/*footer mobile end*/
