*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* ----------------------------------------footer------------------------------------- */
/* Style the footer */
.site-footer {
    background-color: #000b18;
    margin-top: 20px;
    color: #fff;
    height: 50vh;
}

.footer_title {
    width: 80%;
    margin-left: 10%;
    height: 5vh;
    display: flex;
}

.footer_title p {
    width: 100%;
    color: white;
    font-size: 30px;
    border-bottom: 2px solid orange;
}

.footer_title p span {
    color: orange;
}

.footer_container {
    width: 80%;
    margin-left: 10%;
    height: 45vh;
    display: flex;
    flex-direction: column-reverse;
    /* justify-content: space-between; */
}

.footer-top {
    margin-top: 3vh;
    height: 32vh;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    width: 25%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Style the links in the footer */
.footer-col h3,
.footer-col ul {
    color: orange;
    margin-bottom: 15px;
}

.footer-col ul li {
    color: grey;
    font-size: 14px;
    margin-top: 5px;
    height: 20px;
    display: flex;
    align-items: center;
}

.footer-col ul li a {
    color: grey;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

/* .footer-col ul li a::before{
    content: '*';
    margin-right: 10px;
    font-size: 20px;
} */
.footer-col p {
    color: grey;
    font-size: 12px;
}

.footer-col a {
    color: grey;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.footer-col a.read_more_about_us {
    padding: 10px 10px;
    background-color: black;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 12px;
    border: 1px solid orange;
}

.footer-col a:hover {
    color: #f39c12;
    letter-spacing: .1rem;
    border-bottom: 1px solid orange;
}

/* -----------------footer-bottom ----------------*/
.footer-bottom {
    width: 100%;
    height: 10vh;
    display: flex;
    border-bottom: 1px solid orange;
    justify-content: space-around;
    /* border: 1px solid red; */
}

/* Style the social links */
.social-links {
    width: 30%;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    font-size: 30px;
}

.social-links p {
    color: white;
    margin-right: 20px;
    font-size: 14px;
}

.social-links i {
    color: white;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: 1px solid white;
    transition: .2s ease-in-out;
}

.social-links i:hover {
    font-size: 22px;
    color: orange;
    border: 1px solid orange;
    transform: translateY(-5px);
}

.social-links a {
    margin-right: 15px;
}

/* Style the newsletter subscription form */
.subscribe {
    width: 40%;
    height: 10vh;
    /* border: 1px solid orange; */
    display: flex;
    align-items: center;
}

.subscribe h3 {
    color: white;
}

.subscribe form {
    display: flex;
}

.subscribe input {
    flex: 2;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.subscribe button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #f39c12;
    color: #fff;
    cursor: pointer;
}

/* ----------------------Style the bottom bar with copyright notice -----------------------*/
.footer-bottom-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
}

.footer-bottom-bar p {
    text-align: center;
    color: white;
    font-size: 12px;
}
@media only screen and (max-width: 600px) {
    * {
        margin: 0;
        padding: 0;
        font-family: Arial, Helvetica, sans-serif;
    }

    /* ----------------------------------------footer------------------------------------- */
    /* Style the footer */
    .site-footer {
        background-color: #000b18;
        margin-top: 20px;
        color: #fff;
        height: auto;
    }

    .footer_title {
        width: 92%;
        margin-left: 4%;
        height: auto;
        display: flex;
        align-items: center;
    }

    .footer_title p {
        width: 100%;
        color: white;
        font-size: 25px;
        border-bottom: 2px solid orange;
    }

    .footer_title p span {
        color: orange;
    }

    .footer_container {
        width: 98%;
        margin-left: 1%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        /* justify-content: space-between; */
    }

    .footer-top {
        margin-top: 3vh;
        height: auto;
        /* border: 1px solid red; */
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer-col {
        width: 50%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    /* Style the links in the footer */
    .footer-col h3,
    .footer-col ul {
        color: orange;
        margin-bottom: 15px;
    }

    .footer-col ul li {
        color: grey;
        font-size: 14px;
        margin-top: 5px;
        height: 20px;
        display: flex;
        align-items: center;
    }

    .footer-col ul li a {
        color: grey;
        height: 100%;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: 0.3s ease-in-out;
    }

    /* .footer-col ul li a::before{
    content: '*';
    margin-right: 10px;
    font-size: 20px;
} */
    .footer-col p {
        font-size: 12px;
        color: grey;
    }

    .footer-col a {
        color: grey;
        text-decoration: none;
        transition: 0.3s ease-in-out;
    }

    .footer-col a.read_more_about_us {
        padding: 10px 10px;
        background-color: black;
        border-radius: 10px;
        margin-top: 10px;
        font-size: 12px;
        border: 1px solid orange;
    }

    .footer-col a:hover {
        color: #f39c12;
        letter-spacing: .1rem;
        border-bottom: 1px solid orange;
    }

    /* -----------------footer-bottom ----------------*/
    .footer-bottom {
        width: 100%;
        height: 30dvh;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid orange;
        justify-content: space-around;
        /* border: 1px solid red; */
    }

    /* Style the social links */
    .social-links {
        width: 100%;
        /* border: 1px solid red; */
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        font-size: 18px;
    }

    .social-links p {
        color: white;
        margin-right: 20px;
        font-size: 12px;
    }

    .social-links i {
        color: white;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        border: 1px solid white;
        transition: .2s ease-in-out;
    }

    .social-links i:hover {
        font-size: 22px;
        color: orange;
        border: 1px solid orange;
        transform: translateY(-5px);
    }

    .social-links a {
        margin-right: 15px;
    }

    /* Style the newsletter subscription form */
    .subscribe {
        width: 100%;
        height: 10vh;
        /* border: 1px solid orange; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .subscribe h3 {
        width: 100%;
        font-size: 14px;
        color: white;
    }

    .subscribe form {
        display: flex;
        width: 100%;
        margin-top: 10px;
        /* border: 1px solid red; */
    }

    .subscribe input {
        flex: 2;
        padding: 10px;
        border: none;
        border-radius: 5px 0 0 5px;
    }

    .subscribe button {
        flex: 1;
        padding: 10px;
        border: none;
        border-radius: 0 5px 5px 0;
        background-color: #ff0000;
        color: #fff;
        cursor: pointer;
    }

    /* ----------------------Style the bottom bar with copyright notice -----------------------*/
    .footer-bottom-bar {
        background-color: #000;
        color: #fff;
        padding: 10px 0;
    }

    .footer-bottom-bar p {
        text-align: center;
        color: white;
        font-size: 12px;
    }
}