.logoCont {
    width: 200px;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    padding: 15px;
    transition: all 0.2s ease-in-out;
}

.logoCont:hover {
    background: rgba(238, 236, 231, 0.42);
}

.logoCont img {
    max-width: 100%;
    width: auto;
    max-height: 90px;
    height: auto;
    margin: auto;
}

.knowMore {
    text-transform: uppercase;
    color: var(--black);
    display: table;
    margin: 0 auto;
    position: relative;
}

.knowMore::after {
    content: '';
    display: block;
    width: 50px;
    margin: 0 auto;
    height: 1px;
    background: var(--black);
    transition: all 0.2s ease-in-out;
}

.knowMore:hover::after {
    width: 100%;
}

#ifNGO {
    display: none;
}

.form-floating .form-check-input {
    border: 0.5px solid #9b9b9b;
}

.form-floating .form-check-input:focus {
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--pink);
    border-color: var(--pink);
}

.how-works-box {
    position: relative;
}



@media(min-width:1366px) {
    .how-works-box::after {
        content: '';
        display: block;
        width: 20px;
        height: 30px;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translate(10px, -50%);
        background: url(../images/right_arrow.svg) no-repeat;
    }

    .how-works-box:last-child::after {
        display: none;
    }
}

@media(max-width:768px) {
    .logoCont {
        width: 120px;
    }
}