.footer-container {
    width: 100%;
    height: auto;
    padding-top: 50px;
    background: rgb(23, 44, 23);
}


.footer-cont .box-1 .footer-logo {
    width: 200px;
    height: auto;
}

.footer-cont .box-1 p {
    color: var(--primary-white-color);
    font-size: 1.6rem;
    font-weight: var(--regular-font-weight);
    margin-top: 2rem;
    width: 80%;
}

.footer-cont .box-2 h5, .footer-cont .box-3 h5, .footer-cont .box-4 h5 {
    color: var(--primary-white-color);
    font-size: 3rem;
    font-weight: var(--bold-font-weight);
    margin-bottom: 1rem;
}

.footer-cont .box-2 ul  {
    list-style: none;
    padding: 0;
}

.footer-cont .box-2 ul li {
    margin: 0.5rem 0;
}

.footer-cont .box-2 ul li a {
    color: var(--primary-white-color);
    font-size: 2rem;
    font-weight: var(--regular-font-weight);
    text-decoration: none;
}

.footer-cont .box-2 ul li a:hover {
    color: #f70;
}

.footer-cont .box-3 p {
    color: var(--primary-white-color);
    font-size: 2rem;
    font-weight: var(--regular-font-weight);
    margin-top: 1rem;
}

.footer-cont .box-3 p a {
    color: var(--primary-white-color);
    text-decoration: none;
}

.footer-cont .box-3 p a:hover {
    color: #f70;
}

.footer-cont .box-4 p {
    color: var(--primary-white-color);
    font-size: 2rem;
    font-weight: var(--regular-font-weight);
    margin-top: 1rem;
}

.footer-cont .box-4 form {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: var(--primary-white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-cont .box-4 form input {
    padding: 0 10px;
    font-size: 2rem;
    font-weight: var(--normal-font-weight);
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    background: transparent;
    flex: 2;
    height: 100%;
}

.footer-cont .box-4 form input:focus {
    outline: none;
}

.footer-cont .box-4 .sub-btn {
    width: 50px;
    height: 100%;
    border: none;
    background: var(--primary-color);
    border-radius: 0 25px 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cont .box-4 .sub-btn:hover {
    background-color: #f70;
}

.footer-cont .box-4 .sub-btn i {
    font-size: 3rem;
    color: var(--primary-white-color);
}

.footer-bottom {
    /* background: #fff; */
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-color);
}

.footer-bottom h5 {
    font-size: 2.3rem;
    font-weight: var(--normal-font-weight);
    color: var(--primary-white-color);
}