@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Playfair+Display:wght@400..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

p,
a,
li,
span,
button,
input,
textarea {
    font-family: "Inter", sans-serif;
}

.container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}


a{
    text-decoration: none;
}

ul,
ol{
    list-style: none;
}


/*******Topbar *****/

.topbar {
    background-image: linear-gradient(135deg, #dfb03a, #a17812);
        padding: 9.5px 0px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items:center;
}


.tobar_left p {
    font-size: 14px;
    color: #0D0d0d;
    letter-spacing: .025em;
    font-weight: 600;
}

.topbar-right a {
    color: #0D0D0D;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    gap: 7px;
    align-items: center;
}
.topbar-right a svg {
    font-size: 12px !important;
    width: 12px;
    height: 12px;
}

.topbar .container .topbar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}


.header_main {
    padding: 12px 0px;
}
.header_wrapper .logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header_wrapper .logo a img {
    width: 56px;
    height: 56px;
}

.header_wrapper .logo a .logo_content h4 {
    color: #171717;
    font-size: 20px;
    margin-bottom: 5px;
}

.header_wrapper .logo a .logo_content p {
    font-size: 10px;
    color: #171717;
    letter-spacing: 1px;
    text-transform: uppercase;
}

