@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a:hover,
a {
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #121314;
}

p {
    font-family: 'DM Sans', sans-serif;
    color: rgba(212, 216, 219, 0.6);
}

ul {
    margin-bottom: 0;
}

.wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}


.footer_inner {
    width: 100%;
    display: inline-block;
    padding: 125px 60px 25px;
    margin-top: 100px;
    position: relative;
    border-width: 2px 2px 2px 2px;
    border-style: solid;
    border-color: #D9D9D9;
}

.footer_logo {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz--webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.footer_inner h3 {
    font-weight: 800;
    text-align: center;
    font-size: 66px;
    line-height: 100px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.footer_social {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.footer_social li {
    display: inline-block;
}

.footer_social li:not(:last-child) {
    margin-right: 15px;
}

.footer_social li a {
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
    background: #D0D0D0;
    border-radius: 10.6316px
}

.footer_social li a img {
    height: 17px;
    width: auto;
}

.footer_social li a:hover img {
    animation: flip .5s ease-in-out;
}

.footer_social ul {
    position: relative;
}

.footer_social ul:after {
    position: absolute;
    width: 48px;
    height: 50px;
    content: '';
    background: url(../images/icons/arrow_point.svg);
    top: 0;
    left: calc(100% + 50px);
    -webki-transform: rotate(-12.53deg);
    -moz-transform: rotate(-12.53deg);
    transform: rotate(-12.53deg);
    background-size: 100%;
    background-repeat: no-repeat;
}

.footer_menu {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #E7E7E7;
    margin-top: 10px;
}

.footer_copy {
    font-weight: 400;
    padding: 25px 0 0;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
@keyframes flip {
    0% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(-1);
    }

    100% {
        transform: scaleX(0);
    }
}


@keyframes fadein {
    100% {
        top: 100%;

    }
}

@media only screen and (max-width:1200px) {
    /*.location_prime_btm img{margin-left: calc(-1*(100vw/4));}*/
}

@media only screen and (max-width:991px) {

    .footer_inner h3 {
        font-size: 50px;
        line-height: 50px;
    }

    .footer_menu {
        margin-top: 50px;
    }

}

@media only screen and (max-width:767px) {

    .footer_inner {
        padding: 125px 20px 20px;
    }

    .footer_inner h3 {
        font-size: 35px;
        line-height: 35px;
    }

    .footer_social li a {
        width: 40px;
        height: 40px;
    }

    .footer_social ul:after {
        display: none;
    }

}

@media only screen and (max-width:576px) {

    .footer_social li a img {
        height: 20px;
        width: auto;
    }

    .footer_menu {
        margin-top: 0;
    }
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
        width: 40px;
        height: 40px;
    }

    50% {
        width: 60px;
        height: 60px;
    }

    100% {
        transform: rotate(360deg);
        width: 40px;
        height: 40px;
    }
}

.custom-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    color: #D9D9D9;
    background-color: black;
    border: 2px solid #D9D9D9;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 20px;
}

/* Styling for button hover effect */
.custom-button:hover {
    background-color: #D9D9D9;
    color: black;
}

.footer_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 125px 60px 25px;
    margin-top: 100px;
    position: relative;
    border-width: 2px 2px 2px 2px;
    border-style: solid;
    border-color: #D9D9D9;
}