.footer {
    width: 100%;
    height: auto;
    padding: 100px 0 0 0;
    overflow: hidden;
}

.fContactInfo {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 30px;
    padding: 50px 0 150px 0;
}

.fContactInfo>div>p {
    width: 90%;
    font-size: 300%;
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 100;
}

.fContactData {
    background-color: #EFEFEF;
    padding: 30px 7%;
    border-radius: var(--br1);
    display: flex;
    flex-direction: column;
}

.fContactData>h1 {
    font-size: 250%;
    font-weight: 400;
    margin-bottom: 30px;
}

.fContactData>h2 {
    font-family: var(--font2);
    font-size: 130%;
    line-height: 1.7;
    font-weight: 600;
    margin-top: auto;
}

.footerEnd {
    width: 100%;
    height: auto;
    padding: 50px 0 10px 0;
    border-top-left-radius: var(--br1);
    border-top-right-radius: var(--br1);
    background-color: #D7E0FD;
    background: linear-gradient(transparent, #d7e0fd81, #D7E0FD);
}

.fEndContent {
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.fEndContent>h1 {
    font-size: 700%;
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 100;
    text-align: center;
    margin-bottom: 15px;
}

.fEndContent>p {
    font-size: 100%;
    font-family: var(--font2);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.fNavLinks {
    margin-bottom: 27px;
}

.fNavLinks>ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.fNavLinks>ul>li>a {
    text-decoration: none;
    font-family: var(--font2);
    text-transform: capitalize;
    font-size: 100%;
    font-weight: 600;
    color: black;
}

.fSoMedLinks {
    margin-bottom: 70px;
}

.fSoMedLinks>ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.fSoMedLinks>ul>li>a {
    width: 55px;
    height: 55px;
    background-color: white;
    color: black;
    border-radius: var(--br2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 150%;
    text-decoration: none;
    transition: 250ms ease-out;
}

.fSoMedLinks>ul>li>a:hover {
    color: white;
    background-color: black;
}

.fEndContent>hr {
    opacity: 0.35;
}

.cRightPlusDev {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.cRightPlusDev>p {
    font-size: 90%;
    font-family: var(--font2);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.cRightPlusDev>p>a {
    text-decoration: none;
    color: black;
    padding: 10px;
    position: relative;
    border-radius: var(--br3);
    transition: 250ms ease-out;
}

.cRightPlusDev>p>a:hover {
    background-image: linear-gradient(to right,
            rgba(106, 171, 217, 1),
            rgba(149, 109, 173, 1),
            rgba(191, 145, 73, 1),
            rgba(78, 182, 131, 1),
            rgba(68, 129, 172, 1),
            rgba(106, 171, 217, 1));
    color: white;
    animation: 2s linear colorSliding infinite;
    transform: scale(1.1) translateY(-1px);
}

@keyframes colorSliding {
    to {
        background-position: 150px;
    }
}

@media only screen and (max-width: 1400px) {
    .fContactInfo>div>p {
        font-size: 250%;
    }
    .fContactData>h1 {
        font-size: 200%;
    }
    
    .fContactData>h2 {
        font-size: 120%;
    }
    .fEndContent>h1 {
        font-size: 500%;
    }
    
    .fEndContent>p {
        font-size: 95%;
    }

    
    .fNavLinks>ul>li>a {
        font-size: 95%;
    }
    .cRightPlusDev>p {
        font-size: 85%;
    }
}

@media only screen and (max-width: 1080px) {
    .fContactInfo>div>p {
        font-size: 200%;
    }
    .fContactData>h1 {
        font-size: 180%;
    }
    
    .fContactData>h2 {
        font-size: 110%;
    }
    .fEndContent>h1 {
        font-size: 8.5vw;
    }
    
    .fEndContent>p {
        font-size: 90%;
    }

    
    .fNavLinks>ul>li>a {
        font-size: 90%;
    }
    .cRightPlusDev>p {
        font-size: 80%;
    }
}

@media only screen and (max-width: 992px) {
    .fContactInfo {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .fContactInfo>div>p {
        width: 90%;
        margin-bottom: 30px;
    }
    .fContactData>h1 {
        font-size: 200%;
    }
    
    .fContactData>h2 {
        font-size: 120%;
    }
    .fNavLinks>ul {
        margin: 0 auto;
        width: 90%;
        flex-wrap: wrap;
        gap: 20px;
    }
    .cRightPlusDev {
        flex-direction: column;
        gap: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .fContactData>h1 {
        font-size: 180%;
    }
    
    .fContactData>h2 {
        font-size: 110%;
    }
    .fSoMedLinks>ul {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .fSoMedLinks>ul>li>a {
        width: 40px;
        height: 40px;
        font-size: 130%;
        border-radius: var(--br3);
    }
    .cRightPlusDev>p {
        font-size: 65%;
    }
}