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

body {
    font-family: "Ramabhadra", sans-serif;
    font-style: normal;
    background-color: #faa627;
    color: #4d2a08;
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 20px auto;
    text-align: center;
  	margin-top: 160px;
}

.header {
    /* background-color: #e76300; */
    color: #fff;
    padding: 0px 110px;
    /* border-radius: 5px; */
}

.header h1 {
    font-size: 82px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Ramabhadra", sans-serif;
    text-align: center;
  	line-height: 74px;
}

.address-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.address-table th,
.address-table td {
    border: 1px solid #ffffff;
    padding: 10px;
    text-align: left;
}

.address-table th {
    background-color: #841618;
    color: #faa627;
    font-size: 42px;
    font-weight: 400;
    font-family: "Ramabhadra", sans-serif;
    text-align: center;
    padding: 10px 50px;
}

.address-table td {
    font-size: 33px;
    color: #841618;
    font-weight: 400;
    font-family: "Ramabhadra";
    vertical-align: middle;
}

.marquee_wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    font-size: 42px;
    color: #2c2e35;
    font-weight: 400;
    font-family: "Ramabhadra";
}

.footer {
    background-color: #841618;
    color: #fff;
    padding: 20px 10px;
    margin-top: 20px;
    border-radius: 5px;
}

.footer .brands {
    display: flex;
    justify-content: space-evenly;
    margin-top: 10px;
}

.footer .brands div {
    font-weight: bold;
}

.footer_contact {
    font-size: 28px;
}

.footer_phone {
    font-size: 40px;
}

@media (max-width: 991px) {

    .container {
        width: 100%;
      overflow: hidden;
    }

    .header {
        padding: 0px;

    }

    .header h1 {
        font-size: 42px;
    }

    .address-table th {
        padding: 10px;
    }

    .footer {
        width: 100%;
    }

    .footer img {
        width: 100%;
    }

    .footer_phone {
        font-size: 20px;
    }

    .address-table td {
        font-size: 28px;
    }

    .marquee_wrap {
        font-size: 35px;
    }
}

@media (max-width: 432px) {
	.address-table th{
		font-size: 32px;
	}
    .address-table th {
        padding: 8px;
    }
    .address-table td {
        font-size: 21px;
    }
    .marquee_wrap {
        font-size: 30px;
    }
    .header h1 {
        font-size: 34px;
        line-height: normal;
      	padding: 0px 10px;
    }
    .footer_contact {
        font-size: 17px;
    }
}