@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Miama';
    src: url(../assets/miama-font/Miama.ttf) format('truetype');
}

.inter-font {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* shared style */

.display-flex {
    display: flex;
}

body {
    background-color: black;
}






































/* footer styles */

footer {
    /* max-width: 1440px; */
    /* max-height: 489px; */
    background-color: rgba(255, 255, 255, 0.1);
    padding-top: 66px;
    padding-bottom: 35px;
}

.footer-body {
    max-width: 1100px;
    margin: 0 auto;
    gap: 102px;
    padding-bottom: 79px;
}

.footer-part1 {
    width: 443px;
    height: 176px;
}

.part1-title {
    font-size: 4.40rem;
    font-weight: 900;
    color: rgba(230, 83, 60, 1);
    margin: 0;
}

.part1-description {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}


.footer-part2 {
    gap: 152px;
}

.footer-right {}

.part2-title {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

.part2-item {
    font-size: 1.45rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    margin-bottom: 20px;
}

#footer-hr {
    max-width: 1059.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-end {
    margin: 36px auto;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

/* media quary */
/* for phone */
@media screen and (max-width: 576px) {
   
   
   
   
   
   
   
   

















   
   /* footer */
   
    footer {
        width: 100%;
    }

    .footer-body,
    .footer-part2 {
        flex-direction: column;
        gap: 20px;
    }

    .footer-part1 {
        width: 100%;
    }
}



/* for tablet */
@media screen and (min-width: 576px) and (max-width: 992px) {   














    /* footer */
    .footer-body{
        flex-direction: column;
        gap: 20px;
        margin: 0 32px;
    }
}