* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}



body {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
}

li {
    list-style-type: none;
    text-transform: capitalize;
}

a {
    color: #000;
    text-decoration: none;
}

img {
    width: 100%;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
}

.btn {
    font-size: 15px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    text-transform: uppercase;
    background: #000;
    padding: 14px 30px 12px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn-fade {
    background-color: #fff;
    color: #f45d96;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
textarea {
    font-family: 'Libre Baskerville', serif;
    text-transform: capitalize;
}

h1 {
    font-size: 42px;
    line-height: 1.7;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    line-height: 1.6;
    font-weight: 500;
}

h3 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 500;
}

h4 {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
}

h5 {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    line-height: 1.375;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #3e3d3d;
    font-weight: 400;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}


.common-banner {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}


.relative {
    position: relative;
}

.grid-1,
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
    display: grid;
    gap: 20px;
}

.grid-1 {
    grid-template-columns: auto;
}

.grid-2 {
    grid-template-columns: auto auto;
}

.grid-3 {
    grid-template-columns: auto auto auto;
}

.grid-4 {
    grid-template-columns: auto auto auto auto;
}

.grid-5 {
    grid-template-columns: auto auto auto auto auto;
}

.grid-6 {
    grid-template-columns: auto auto auto auto auto auto;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}


.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}



/* form css */

label {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    font-size: 16px;
    padding: 12px 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

input[type="date"] {
    width: 100%;
    display: block;
}

select option {
    width: 100%;
    display: block;
    color: #000;
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 88%;
}

.w-70 {
    width: 68%;
}

.w-50 {
    width: 48%;
}

.w-32 {
    width: 32%;
}

.w-30 {
    width: 30%;
}

.w-25 {
    width: 24%;
}

.w-20 {
    width: 19%;
}

.w-15 {
    width: 15%;
}

button {
    outline: none;
    border: none;
}

.common-heading h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

.common-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #1c1c1c;
    font-size: 18px;
    margin-bottom: 20px;
}

.common-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #c2db34, #ccc12e);
    border-radius: 2px;
}