@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');

:root {
    --full-size: 1920px;
    --full-minisize: 1200px;
    --fit-height: 1080px;
    --bg_santa_main: #2C8276;
    --santa_main: #FFFFFF;
    --santa_2main: #b20000;
}

footer {
    width: var(--full-size);
    height: auto;
    background: #EDEDED;
    display: flex;
    justify-content: center;
}

.footer {
    width: var(--full-minisize);
    height: 460px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

}

.col1_footer {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
}

.concol1 {
    width: 90%;
}

.header_name {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: var(--bg_santa_main);
}

.address {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.logo_name {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.logofoot {
    width: 100px;
    margin-right: 10px;
}

.header_contact {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.tel {
    text-decoration: none;
    font-weight: 600;
    color: var(--bg_santa_main);
    margin: 0;
}

.telbig {
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.row_contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact_big {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}

.col2_footer {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.row_social {
    width: 80%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.row_imgsocial {
    width: 80%;
}

.row_imgsocial img {
    width: 100%;
    height: 330px;
}

.header_social {
    font-size: 20px;
    font-weight: 600;
    color: var(--bg_santa_main);
}

.footer_end {
    width: var(--full-size);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--bg_santa_main);
    color: #fff;
    font-size: 16px;
}

@media (min-width:1101px) and (max-width: 1919px) {
    footer {
        width: 100%;
    }

    .footer_end {
        width: 100%;
    }
}

@media (max-width:1100px) {
    footer {
        width: 100%;
    }

    .footer {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .footer_end {
        width: 100%;
    }

    .col1_footer,
    .concol1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .logo_name {
        width: 90%;
    }

    .tel {
        font-size: 14px;
    }

    .telbig {
        font-size: 14px;
    }

    .contact {
        width: 90%;
        margin-bottom: 10px;
    }

    .row_contact {
        gap: 5px;
        width: 100%;
    }

    .header_name {
        font-size: 16px;
    }

    .address {
        font-size: 12px;
    }

    .contact_big img {
        width: 30px;
        height: 30px;
    }

    .col2_footer {
        width: 100%;
    }

    .row_social {
        width: 100%;
    }

    .row_social img {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        object-fit: cover;
    }

    .row_imgsocial {
        width: 100%;
    }

    .contact_big {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }

    .footer_end {
        font-size: 14px;
    }
}