.footer {
    min-height: 50vh;
    padding: 30px 0;
    width: 100%;
    position: sticky;
    top: 100%;
    background-image: url('/assets/img/Footer/Footer.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 10%;
    background-size: cover;
    direction: rtl;
}

@supports (-webkit-touch-callout: none) {
    .footer {
        background-attachment: initial !important;
    }
}

.containerFooter {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #2c81a3;
    border-radius: 15px;
    padding: 30px;
    margin-top: 200px;
    opacity: 0.95;
    box-shadow: 0 10px 30px rgba(44, 129, 163, 0.3);
}

.containerFooter .row {
    display: flex;
    flex-wrap: wrap;
}

.footerUl ul {
    list-style: none;
}

.footerUl {
    width: 25%;
    padding: 0 15px;
}

.footerUl h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footerUl h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
    opacity: 0.7;
}

.footerUl ul li:not(:last-child) {
    margin-bottom: 8px;
}

.footerUl ul li a {
    color: #e0f4f8;
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 300ms ease;
    padding: 5px 0;
    width: fit-content;
}

.footerUl ul li a:hover {
    color: #ffffff;
    padding-right: 10px;
}

.footerUl .social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footerUl .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footerUl .social-links a:hover {
    color: #2c81a3;
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.footerUl .social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.copy {
    margin: 30px 0 0 0;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copy p {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

@media(max-width: 1200px) {
    .containerFooter {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media(max-width: 768px) {
    .footerUl {
        width: 50%;
        margin-bottom: 30px;
    }

    .footerUl ul li a {
        font-size: 15px;
        padding: 8px 0;
    }
}

@media(max-width: 550px) {
    .footerUl {
        width: 100%;
        margin-bottom: 25px;
    }

    .copy {
        text-align: center;
    }
    
    .containerFooter {
        padding: 25px 20px;
        margin-top: 100px;
    }
}

@media only screen and (max-height: 815px) {
    .footer {
        min-height: 10vh;
    }
}

@media only screen and (max-height: 640px) {
    .footer {
        min-height: 15vh;
    }
}

@media only screen and (max-height: 420px) {
    .footer {
        min-height: 20vh;
    }
}

@media only screen and (max-height: 320px) {
    .footer {
        min-height: 25vh;
    }
}







.Feedback {
    width: 80%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
}

.Feedback p {
    margin: 0 10px;
}

.msgSend {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.548);
    z-index: 100;
    box-sizing: border-box;
    display: none;
}

.SendMsg {
    width: 400px;
    background-color: #2c81a3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 20px;
}

.SendMsg button {
    width: 150px;
    padding: 10px;
    margin: auto;
    margin-top: 10px;
    outline: 0;
    border: 0;
    background-color: #c5412b;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.SendMsg button:hover {
    background-color: #a33927;
}

@media only screen and (max-width: 1200px) {
    .feed {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 50%;
        background-color: #2c81a3;
        padding: 30px;
        color: white;
    }
}

@media only screen and (max-width: 800px) {
    .feed {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 80%;
        background-color: #2c81a3;
        padding: 30px;
        color: white;
    }
}

@media only screen and (max-width: 450px) {
    .feed {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 95%;
        background-color: #2c81a3;
        padding: 30px;
        color: white;
    }

    .emoji p {
        font-size: 60px;
        cursor: pointer;
        transition: all 300ms;
    }
}


.Share {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #2c81a3;
    z-index: 10;
    border-radius: 50%;
    padding: 10px;
    user-select: none;
    cursor: pointer;
    transition: all 500ms ease-in-out;
}

.Share svg {
    font-size: 40px;
    color: white;
}

.ShareLink {
    width: 400px;
    max-width: 100%;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 11;
    background-color: #005374;
    padding: 10px;
    border-radius: 10px;
    transition: all 500ms ease-in-out;
    display: none;
    opacity: 0;
}

@media only screen and (max-width: 700px) {
    .ShareLink {
        right: 0;
        bottom: 0;
        left: 0;
        width: 90%;
        margin: auto;
        max-width: 100%;
    }

    .Share i {
        font-size: 50px;
    }
}

.shareExit {
    position: absolute;
    left: 10px;
    top: 0;
    font-size: 20px;
    color: white;
    user-select: none;
    cursor: pointer;
}

.ShareLink h2 {
    color: white;
    padding: 10px 20px;
    border-bottom: 1px solid #b6b5b5;
}

.ShareLink p {
    color: white;
    padding: 20px;
}

.ShareLink .Social {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 30px;
}

.Social .F {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%;
    transition: all 300ms;
    cursor: pointer;
}

.Social .F svg {
    color: #1212c5;
}

.Social .F:hover {
    background-color: #1212c5;
}

.Social .F:hover svg {
    color: white;
}

.Social .T {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%;
    transition: all 300ms;
    cursor: pointer;
}

.Social .T svg {
    color: #127dc5;
}

.Social .T:hover {
    background-color: #127dc5;
}

.Social .T:hover svg {
    color: white;
}

.Social .W {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%;
    transition: all 300ms;
    cursor: pointer;
}

.Social .W svg {
    color: #12c51b;
}

.Social .W:hover {
    background-color: #12c51b;
}

.Social .W:hover svg {
    color: white;
}

.Social .L {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%;
    transition: all 300ms;
    cursor: pointer;
}

.Social .L svg {
    color: #1683d1;
}

.Social .L:hover {
    background-color: #1683d1;
}

.Social .L:hover svg {
    color: white;
}

.Social .Q {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%;
    transition: all 300ms;
    cursor: pointer;
}

.Social .Q svg {
    color: black;
}

.Social .Q:hover {
    background-color: black;
}

.Social .Q:hover svg {
    color: white;
}

.shareURL {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px;
}

.shareURL i {
    width: 50px;
    text-align: center;
    font-size: 15px;
}

.shareURL input {
    width: 100%;
    font-size: 15px;
    outline: 0;
    border: 0;
}

.shareURL button {
    width: 40%;
    background: #2c81a3;
    color: white;
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 5px;
    outline: 0;
    border: 0;
    user-select: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.QR {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.548);
    z-index: 100;
    box-sizing: border-box;
    display: none;
}

.QRCode {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    background-color: #176a8d;
    padding: 20px 20px;
    border-radius: 2px;
    pointer-events: none;
}