﻿/* LAYOUT CSS */
html, body {
    margin: 0;
    padding: 0;
}

html {
    font-family: 'poppins', sans-serif;
    font-size: 15px;
}

body {
    font-family: 'poppins', sans-serif;
    font-size: 15px;
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
}

body, button, input, textarea {
    font-family: 'poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
    font-family: 'poppins', sans-serif;
}

/* HEADER CSS */
.header-parent {
    background-color: #EFEFEF;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.header-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-left {
    justify-content: flex-start;
    height: auto;
    width: auto;
}

.header-parent .header-left img {
    height: auto;
    max-height: 139px;
    width: 200px;
    margin: 28px 0;
}

.header-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    line-height: normal;
    text-decoration: none;
    position: relative;
    padding: 10px;
}

.phone-icon {
    width: 30px;
    height: auto;
    flex-shrink: 0;
}

.header-section.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
}

.header-section.header-right .button-icon img {
    width: 40px;
}

.header-section.header-right .header-button-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.header-section.header-right .text-call {
    color: black;
    font-size: 25px;
    line-height: 100%;
    text-decoration: none;
    font-weight: bold;
}

.header-section.header-right .text-detail {
    color: black;
    font-size: 18px;
    line-height: 20px;
}

@media only screen and (max-width: 1700px) {
    .header-parent .header-left img {
        margin: 10px 0;
    }

    .header-container {
        padding: 0 80px;
    }
}

@media only screen and (max-width: 786px) {
    .header-container {
        flex-direction: column;
        padding: 0 40px;
    }

    .header-parent .header-left img {
        width: 199px;
        height: auto;
        margin: 16px 0 23px 0;
    }

    .header-left {
        justify-content: center;
        align-items: center;
        align-self: normal;
    }

    .header-button {
        padding: 0 0 10px 0;
    }
}

/* FOOTER CSS */
.footer-container {
    background-color: #FFFFFF;
    color: #000000;
    padding: 40px 0;
    text-align: left;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1600px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.footer-content a {
    color:  #000000;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin: 20px 0;
    align-self: flex-start;
    flex-shrink: 0;
}

.footer-logos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.trust-badges {
    display: contents;
}

.trust-badges img {
    height: auto;
    width: 150px;
}

.footer-content p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    max-width: none;
    text-align: left;
}

.footer-content p.copyright {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: left;
    line-height: 18px;
}

a {
    text-decoration: none;
}

@media only screen and (max-width: 1700px) {
    .footer-container {
        padding: 40px 80px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-container {
        padding: 40px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        font-size: 14px;
        line-height: 18px;
    }

    .footer-content p.copyright,
    .footer-content p {
        font-size: 14px;
        line-height: 18px;
    }

    .footer-logos-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .trust-badges {
        gap: 20px;
    }

    .trust-badges img {
        height: 35px;
    }
}