/* Footer section */
footer {
    background-color: #232233;
    color: white;
    text-align: center;
    margin-top: 100px;
    padding-bottom: 20px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.mailphone {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    border-radius: 20px;
    width: 50%;
    height: auto;
    padding: 20px;
    background-color: white;
    color: black !important;
    position: relative;
    bottom: 45px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.mail,
.phoneno {
    display: flex;
    align-items: center;
    gap: 10px;

    a {
        text-decoration: none !important;
        color: black;
        font-size: 18px;

    }
}

.mail .phoneno a {
    font-size: 18px;
}

.mail img,
.phoneno img {
    width: 50px;
    height: 50px;
}

.lineone {
    border: 2px solid black;
}

.contact-box-one {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20vw;
    justify-content: center;
    margin-bottom: 40px;
}

.socialmedia {
    display: flex;
    flex-direction: column;
    width: 42vw;
    text-align: left;
    gap: 10px;
    cursor: pointer;
}

.socialmedia p {
    font-size: 16px;
}

.f-logo {
    width: 140px;
    height: 60px;
}

.quicklink,
.newletter {
    width: 350px;
    height: auto;
    text-align: left;
}

.quicklink {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    height: auto;
}

.quicklink h1 {
    font-size: 34px;
    font-weight: 500;
}

.quicklink a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.newletter h1 {
    font-size: 34px;
    font-weight: 500;
}

.email-box {
    border: 1px solid white;
    width: 350px;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 5px;
    margin-top: 40px;
    padding: 2px;
}

.email-box input {
    width: 300px;
    height: 35px;
    padding: 5px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    padding-left: 10px;
}

.email-box input:focus {
    outline: none;
}

.email-box a {
    padding: 10px;
    background-color: #3197A8;
    display: flex;
    border-radius: 5px;
    align-items: center;
    cursor: pointer;
}

.f-send {
    width: 25px;
}

.S-line {
    margin: 20px 0;
    border-top: 2px solid white;
    width: 85%;
}

.medialink {
    display: flex;
    flex-direction: row;
    gap: 30px;

}

.medialink a {
    text-decoration: none !important;
}

.medialink img {
    width: 25px;
    height: 25px;
}

.line-two {
    border: 1px solid white;
}

.copy-right {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .contact-box-one {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }

    .mailphone {
        width: 90%;
        justify-content: flex-start;
        gap: 1vh;
        padding: 4vw;
    }

    .lineone {
        display: none;
    }

    .medialink {
        justify-content: center;
    }

    .socialmedia {
        width: 70vw;
        align-items: flex-start !important;
    }
}