/*
font-family: 'Poppins', sans-serif;
font-family: 'Source Sans Pro', sans-serif;
*/

body {
    background-color: #f4f4f4bf !important;
}


/* First-Section */

.container-fluid section {
    margin-bottom: 100px;
}

.help-container section {
    flex-flow: column;
}

.help-container .first-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    margin-top: 50px;
}

.help-container .first-section .header {
    font-size: 35px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    margin: 18px 0px;
}

.help-container .first-section .header span {
    color: #12be12;
}

.help-container .first-section .note {
    color: #514f4f;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 30px;
}

.help-container .first-section .search-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    padding: 0px 10px;
    width: 50%;
    height: 50px;
    border: 2px solid #dedede;
    border-radius: 14px;
    background-color: white;
}

.help-container .first-section .search-box .search-btn {
    border: none;
    outline: none;
    background: transparent;
}

.help-container .first-section .search-box .search-txt {
    border: none;
    font-size: 16px;
    width: 100%;
    height: 100%;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.help-container .first-section .search-box:hover,
.help-container .first-section .search-box:active,
.help-container .first-section .search-box:focus {
    border: 2px solid black;
}


/* Second-Section */

.help-container .second-section {
    position: relative;
    margin-top: 50px;
    padding: 50px 100px;
    background: rgb(145, 242, 150);
    background: linear-gradient(90deg, rgba(145, 242, 150, 1) 0%, rgba(152, 245, 143, 1) 39%, rgba(152, 252, 198, 1) 100%);
    border-radius: 20px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.help-container .second-section .topic-header {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.help-container .second-section .topic {
    position: relative;
    margin: 20px 0px;
    display: flex;
    column-gap: 50px;
    row-gap: 30px;
    flex-flow: wrap;
    justify-content: center;
    align-content: center;
    max-width: 1250px;
}

.help-container .second-section .topic .item {
    position: relative;
    width: 370px;
    border-radius: 8px;
    background: white;
    padding: 25px 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.help-container .second-section .topic .item img {
    width: 75px;
}

.help-container .second-section .topic .item h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    margin-top: 18px;
}

.help-container .second-section .topic .item p {
    color: #514f4f;
}

.help-container .second-section .topic .item a {
    text-decoration: none;
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    border-bottom: 2px solid;
}


/* Third Section Css */

.help-container .third-section {
    position: relative;
    margin-top: 60px;
    top: 50px;
    padding: 50px 0px;
    background: white;
}

.help-container .third-section h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 20px 0px;
}

.help-container .third-section p {
    text-align: center;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
}

.help-container .third-section .questions {
    list-style: none;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 30px;
}

.help-container .third-section .questions li {
    width: 45%;
    border: 2px solid #dedede;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.help-container .third-section .questions li i {
    font-size: 25px;
}

.help-container .third-section .questions li a {
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #514f4f;
}

@media only screen and (max-width: 1250px) {
    .help-container .second-section {
        padding: 50px 0px;
    }
    .help-container .second-section .topic {
        width: 100%;
        max-width: 100%;
        padding: 0px;
    }
}

@media only screen and (max-width: 860px) {
    .help-container .first-section .search-box {
        width: 80%;
    }
    .help-container .third-section .questions {
        width: 100%;
        max-width: 100%;
    }
}