footer{
    width: 100%;
    padding: 30px 0;
    background-color: #262a2e;
}
.footWrapper{
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}
.footColumn{
    max-width: 32%;
    width: 100%;
}
.footColumn p{
    padding-bottom: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
}
.footColumn span{
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    max-width: 90%;
    width: 100%;
    color: #fff;
}
.footColumn a{
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-bottom: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
.memoriesWrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.memoriesWrapper img{
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 10px;
}
.pl-30{
    padding-left: 30px;
}
.whatsAppDiv {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
    background: #1bd741;
    animation: pulse-animation 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsAppDiv img {
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
    width: 50px;
    padding: 5px;
    display: block;
}
.socialMediaWrapper{

}
.socialMediaWrapper a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    padding-bottom: 0;
    width: 35px;
    height: 35px;
    border: 1px solid #4a4e52;
    cursor: pointer;
}
.socialMediaWrapper a:hover{
    background-color: #ff891e;
}
.socialMediaWrapper a img{
    display: block;

}

.copyRight{
    background-color: #232629;
    padding: 20px 0;
    border-top:1px solid rgba(255, 255, 255, .2);
}
.copyRightText p{
    color: #929497;
    font-size: 14px;
    line-height: 150%;
    text-align: left;
}
.termPages{
    column-gap: 10px;
}
.termPages a {
    display: block;
    color: #929497;
    font-size: 14px;
    line-height: 150%;
}

.termPages a:hover{
    color: #ff891e;
}
@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
  }
@media(max-width:767px){
    .whatsAppDiv {
        right: 6px;
        bottom: 42px;
    }
    .copyrightWrapper{
        row-gap: 10px;
        justify-content: center;
    }
}
@media(max-width:575px){
    .footWrapper{
        row-gap: 30px;
    }
    .footColumn {
        max-width: 100%;
    }
    .pl-30 {
        padding-left: 0px;
    }
    .memoriesWrapper {
        justify-content: space-between;
    }
    .memoriesWrapper img {
        width: 150px;
        height: 150px;
    }


}