/* Importing Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}


footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: #111;
}

.content {
    max-width: 1350px;
    /* background: gray; */
    margin: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content p, a {
    color: #fff;
}

.content .box {
    width: 30%;
    padding: 10px;
    transition: all 0.3s ease;
}

.content .topic {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.content p {
    text-align: justify;
}

.content .lower .topic {
    margin: 24px 0 5px 0;
}

.content .lower i {
    padding-right: 16px;
}

.content .middle {
    padding-left: 80px;
}

.content .middle a {
    line-height: 32px;
}

.content .right input[type="text"] {
    height: 45px;
    width: 100%;
    outline: none;
    color: #d9d9d9;
    background: #000;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 17px;
    border: 2px solid #222222;
}

.content .right input[type="submit"] {
    height: 42px;
    width: 100%;
    font-size: 18px;
    color: #d9d9d9;
    background: #eb2f06;
    border-radius: 5px;
    letter-spacing: 3px;
    cursor: pointer;
    margin-top: 12px;
    border: 2px solid #eb2f0f;
    transition: all 0.3s ease-in-out;
}

.content .right input[type="submit"]:hover {
    background: none;
    color: #eb2f0f;
}

.content .media-icons a {
    font-size: 20px;
    height: 45px;
    width: 45px;
    /* background: red; */
    display: inline-block;
    text-align: center;
    line-height: 43px;
    border-radius: 5px;
    border: 2px solid #222222;
    margin: 35px 5px 0 0;
    transition: all 0.3s ease;
}

/* .content .media-icons a:hover {
    /* border: #eb2f06; 
    background: none;
    color: #eb2f0f;
} */

.content .media-icons a:first-child:hover {
    background: #1877F2;
    color: #fff;
}

.content .media-icons a:nth-child(2):hover {
    background: #fff;
    color: #14171A;
}

.content .media-icons a:nth-child(3):hover {
    background: #1877F2;
    color: #fff;
}

.content .media-icons a:nth-child(4):hover {
    background: #fff;
    color: #cd486b;
}

.content .media-icons a:last-child:hover {
    background: #fff;
    color: #ff0000;
}

.bottom {
    width: 100%;
    text-align: right;
    color: #d9d9d9;
    padding: 0 40px 5px 0;
}

.bottom a {
    color: #eb2f06;
}

footer a{
    transition: all 0.3s ease;
}

footer a:hover {
    color: #eb2f06;
}

@media (max-width: 992px) {
    .content .box {
        width: 100%;
        padding: 20px 0;
    }
    .content .middle {
        padding-left: 0;
    }
    .bottom {
        text-align: center;
        padding: 10px;
    }
}
