.information-section{
    padding-top: 150px;
    padding-bottom: 57px;
}
.information-title{
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}
.information-text{
    font-size: 20px;
    text-align: right;
    width: 50%;
    margin-left: 50%;
}
.search-section{
    height: 75px;
    position: relative;
    width: 50%;
    margin-left: 50%;
    background: white;
}
.search-input, .search-input:focus, .search-input:active{
    height: 50px;
}
.btn-show-search{
    top: 16px;
}
@media (max-width: 1199px){
    .information-section{
        padding-top: 135px;
    }
}
@media (max-width: 991px){
    .information-section{
        padding-top: 130px;
    }
}
@media (max-width: 767px){
    .information-section{
        padding-top: 100px;
    }
    header{
        display: none;
    }
}
@media (max-width: 575px){
    .information-section{
        padding-top: 70px;
    }
    .information-title{
        font-size: 24px;
    }
    .information-text{
        font-size: 16px;
        width: 100%;
        margin-left: 0;
    }
    .search-section{
        height: 60px;
        position: sticky;
        top: 60px;
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    .search-block{
        width: calc(100% - 30px);
        left: 15px;
    }
    .search-input, .search-input:focus, .search-input:active{
        height: 35px;
    }
    .btn-show-search{
        top: 8.5px;
    }
}