#footeR{
    /* min-height: 200px; */
    padding: 100px 15vw;
    padding-top: 100px;
    /* border: 1px solid black; */
    background-color: black;
    /* background-image: linear-gradient(to right, #434343 0%, black 100%);
    background: linear-gradient(90deg, rgb(63, 68, 77), rgb(22, 6, 46));
    background-image: linear-gradient(to top, #09203f 0%, #537895 100%); */
    background-color: rgb(25, 27, 27);
    display: flex;
    justify-content: space-around;
    /* align-items: baseline; */
    color: white;
    flex-wrap: wrap;
    gap: 2vw;
}



#footeR > section{
    /* border: 1px solid black; */
    width: 30%;
    height: max-content;
    flex: 1 1 200px;
    font-size: clamp(0.4em, 1em, 2em);
}

#footeR > section > div{
    margin-bottom: 3vh;
    /* border: 1px solid black; */
}

#footeR > section:nth-child(1) > div:nth-child(1){
    display: flex;
    align-items: center;
    font-weight: 500;
}
#footeR > section:nth-child(1) > div:nth-child(1) span{
    content: url("./../Resources/PWImages/Physics_wallah_logo.svg.png");
    width: 10%;
    aspect-ratio: 1;
    margin-right: 10px;
    filter: invert(1);
}

#footeR > section:nth-child(1) > button{
    text-decoration: none;
    padding: 15px 30px;
    background: none;
    border: 2px solid white;
    /* border-image: linear-gradient(45deg, rgb(172, 171, 216), rgb(36, 31, 10)) 1; */
    color: white;
    transition: all 0.2s, color 0.1s;
    border-radius: 10px;
}

#footeR > section:nth-child(1) > button:hover{
    transform: scale(1.05);
    background-color: white;
    color: black;
    border-radius: 20px;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 01,
  'opsz' 24;
  font-size: 1.5rem;
}

#footeR > section:nth-child(2),
#footeR > section:nth-child(3){
    margin-top: 1.5%;   
}


#footeR > section:nth-child(2) > span{
    /* border: 1px solid white; */
    display: flex;
    align-items: center;
    column-gap: 5%;
    width: max-content;
    transition: all 0.1s;
}

#mailLogo:hover{
    transform: scale(1.05);
    cursor: pointer;
}



#footeR > section:nth-child(3) > section{
    display: flex;
    align-items: center;
    flex-direction: column;
    /* border: 1px solid black; */
    width: max-content;
    row-gap: 10px;
}

#footeR > section:nth-child(2) > div,
#footeR > section:nth-child(3) > section > div{
    font-weight: 600;
}

#footeR > section:nth-child(3) > section :nth-child(1n){
    /* flex: 1 1 200px; */
}

#footeR > section:nth-child(3) > section > div:nth-child(2) {
    /* border: 1px solid black; */
    display: flex;
}

#footeR > section:nth-child(3) > section > div:nth-child(2) img {
    width: 2rem;
    aspect-ratio: 1;
    margin: 0 5px;
    object-fit: contain;
    background-color: rgb(236, 225, 225);
    border-radius: 45%; 
    padding: 7px;
    /* filter: invert(1); */
    object-fit: contain;
    transition: transform 0.1s;
}

#footeR > section:nth-child(3) > section > div:nth-child(2) img:hover {
    transform: scale(1.1);
}





