/* Footer */
footer{
    background: #093628;
}

footer p, footer a{
    color: #CEF17B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 92%;

    height: fit-content;
    margin: 0;
    padding: 0;
}

.upper-footer{
    padding-top: 32px;

    display: flex;
    justify-content: space-between;
}

.logo-group{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-group img{
    align-self: start
;
}

.socials-group{
    display: flex;
    align-self: end;

    margin: 0;
    padding: 0;
}

.socials-group img{
    align-self: center;
}

.socials-group ul{
    margin: 0;
    padding: 0;
}

.socials-group li a{
    align-self: center;
}

.mail-group a{
    display: flex;
    align-items: center;
}

.mail-group p{
    font-weight: 700;
    margin-left: 8px;
}

.socials-group-divider{
    margin: 0 16px;
}

.channels-group ul{
    display: flex;
    align-items: center;
    gap: 24px;
}

.lower-footer{
    display: flex;
    flex-direction: column;
}

.lower-footer-title{
    display: flex;
    justify-content: center;

    margin-top: 53px;
}

.lower-footer-title h2{
    color: #CEF17B;
    text-align: right;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    margin-right: 10px;
}

.lower-footer ul{
    display: flex;
    justify-content: center;
    gap: 24px;

    padding: 0;
    margin: 27px 0 46px 0;
}

.lower-footer li p, .lower-footer li a{
    color: #CEF17B;
    text-align: right;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 92%;
}

.lower-footer li a:hover{
    color: #F0F6E6;
    text-decoration: underline;
}

.socials-icon{
    height: 24px;
    width: 24px;

    border: none;
    cursor: pointer;

    display: block;
    position: relative;
}

.socials-icon::before,
.socials-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease-in-out;
}

.socials-icon::before {
  opacity: 1;
}

.socials-icon::after {
  opacity: 0;
}

.socials-icon:hover::before {
  opacity: 0;
}

.socials-icon:hover::after {
  opacity: 1;
}

#linkedin-icon{
    background-image: url("../static/images/linkedin.svg");
}

#linkedin-icon::before {
    background-image: url('../static/images/linkedin.svg');
}

#linkedin-icon::after {
    background-image: url('../static/images/linkedin_white.svg');
}

#instagram-icon{
    background-image: url("../static/images/instagram.svg");
}

#instagram-icon::before {
    background-image: url('../static/images/instagram.svg');
}

#instagram-icon::after {
    background-image: url('../static/images/instagram_white.svg');
}

#facebook-icon{
    background-image: url("../static/images/facebook.svg");
}

#facebook-icon::before {
  background-image: url('../static/images/facebook.svg');
}

#facebook-icon::after {
  background-image: url('../static/images/facebook_white.svg');
}

#tiktok-icon{
    background-image: url("../static/images/tiktok.svg");
    background-repeat: no-repeat;
}

#tiktok-icon::before {
    background-image: url('../static/images/tiktok.svg');
    background-position: 0;
}

#tiktok-icon::after {
    background-image: url('../static/images/tiktok_white.svg');
    background-position: 0;
}

#mail-icon{
    background-image: url("../static/images/mail.svg");
    background-repeat: no-repeat;
    background-position: 0;

    padding-left: 24px;
    width: fit-content;


}

#mail-icon:hover p{
    color: #F0F6E6;
}

#mail-icon::before {
    background-image: url('../static/images/mail.svg');
    background-repeat: no-repeat;
    background-position: 0;
}

#mail-icon::after {
    background-image: url('../static/images/mail_white.svg');
    background-repeat: no-repeat;
    background-position: 0;
}

@media (max-width: 1280px) {
    .upper-footer{
        flex-direction: column;
        gap: 49px;
    }

    .lower-footer ul{
        flex-wrap: wrap;
    }
}