@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); @import url('https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css'); :root {
    --primaryColor: #d05d3c;
    --secondaryColor: #fdf5f3;
    --hoverColor: #d05d3ccc;
    --primaryBackground: #ffe8e3;
    --textColor: #232323;
    --subDesc: #7a7878;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    background: #fff;
}

button, input, select, textarea, body {
    font-family: 'soleil';
    outline: none!important;
}

input[type="text"], input[type="email"], input[type="search"], input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
}

:focus {
    outline: none;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

article, aside, footer, header, nav, section {
    display: block;
}

.noList {
    margin: 0;
    padding: 0;
    list-style: none;
}

figcaption, figure, main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 15px;
}

p {
    margin: 15px 0;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 25px;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
    margin-bottom: 0;
}

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    width: auto;
    height: auto;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

a {
    text-decoration: none;
    transition: .3s;
    color: var(--textColor);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin: 15px 0;
    font-weight: 700;
    color: var(--textColor);
    line-height: 1.2;
    transition: .3s;
    font-family: 'acumin-pro';
}

h1, .h1 {
    font-size: 30px;
}

h2, .h2 {
    font-size: 26px;
}

h3, .h3 {
    font-size: 22px;
}

h4, .h4 {
    font-size: 20px;
}

h5, .h5 {
    font-size: 18px;
}

h6, .h6 {
    font-size: 16px;
}

label {
    color: var(--color-grey-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
}

input[type="text"], input[type="date"], input[type="email"], input[type="tel"], select, textarea {
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid #d7d6dc;
    color: #767676;
    line-height: 150%;
    font-weight: 400;
    font-family: "soleil";
    padding: .75rem 1rem;
    transition: all .2s ease-in-out;
}

input[type="text"]:focus, input[type="date"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus, textarea:focus {
    border: 1px solid #767676;
}

textarea {
    height: 170px;
    resize: none;
}

button {
    border: none;
    height: 50px;
    padding: 0 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: .2s;
    background: var(--primaryColor);
    color: #fff;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

button i {
    font-size: 20px;
    font-weight: 400;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    flex-direction: column;
    background: #f8f8f8;
    width: 100%;
    transition: .2s;
    opacity: 0;
    display: none;
    z-index: 3;
    left: 0;
    overflow: hidden;
    padding: 30px 0;
}

.dropdown-menu.small-dropdown {
    left: auto;
    width: 350px;
    border-radius: 12px;
    padding: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    opacity: 0;
    display: none;
}

#menu .modal-header {
    padding: 15px;
    border-bottom: 2px solid #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 999;
    display: none;
}

#menu.active {
    left: 0;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.menu-overlay.active {
    opacity: 1;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}

#menu .modal-header .close-button {
    height: auto;
    padding: 0;
    font-size: 28px;
    background: transparent;
    color: var(--primaryColor);
}

.modal-menu {
    padding: 20px;
    height: calc(100% - 4.5rem);
    overflow: auto;
}

.modal-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-menu li a {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
    cursor: pointer;
    text-transform: uppercase;
    justify-content: left;
    font-size: 15px;
    !i;!;
    !i;!;
}

.modal-menu li a.button {
    background: var(--primaryColor);
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50px;
    text-transform: uppercase;
}

.modal-menu li a.button:hover {
    color: #fff;
    background: var(--hoverColor);
}

.modal-menu li a:hover, .modal-menu li a.active {
    color: var(--primaryColor);
}

.modal-menu li a i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primaryColor);
}

.modal-menu .submenu a span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-menu .submenu a span i {
    font-weight: 400;
}

.modal-menu .menuHeading span {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-menu .menuHeading span h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.modal-menu .category-dropdown-menu {
    display: none;
    margin-top: 20px;
}

.modal-menu .category-dropdown-menu.active {
    display: block;
}

.modal-menu .category-dropdown-menu ul {
    flex-direction: column;
    align-items: start;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
}

.modal-menu .category-dropdown-menu li a {
    color: var(--subDesc);
}

.modal-menu .mainBottomMenu {
    margin-top: 20px;
    border-top: 1px solid #0000001c;
    padding-top: 20px;
}

.modal-menu .mainBottomMenu li a {
    color: var(--subDesc);
}

.modal-menu .mainBottomMenu .phoneNumber a {
    font-weight: 600;
    background: var(--primaryColor);
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 50px;
    font-size: 14px;
    gap: 10px;
    margin-top: 20px;
}

.modal-menu .mainBottomMenu .phoneNumber a i {
    font-size: 18px;
}

.formInput {
    display: flex;
    gap: 15px;
}

.formItem {
    flex: 1;
}
