@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/*
========================
GOBAL CSS START
========================
*/

body {
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #222;
}

:root {
    --number-font: 'Amourette', sans-serif;
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #0078d7;
    --scroll-top-color: #fff;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}


.action-btn {
    border: none;
    padding: 11px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #C46A53;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.action-btn::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    background: #000;
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
}

.action-btn::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 51%;
    transform: translateX(100%);
    background: #000;
    z-index: -1;
    transition: 0.4s all ease;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
}

.action-btn:hover::before {
    width: 60%;
}

.action-btn:hover::after {
    width: 60%;
}

/*===============
 GOBAL CSS END
 ============== */

.header-area {
    padding-block: 40px;
    background: #F7EDE3;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.header-content h2 {
    font-size: 45px;
    color: #06265C;
    font-weight: 700;
}

.header-image img {
    max-width: 350px;
}

/*========== header area end hare ======= */

/*======= hero area style start hare ====== */

.hero-area {
    padding-block: 40px;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-wrapper h4 {
    color: #06265C;
    font-weight: 400;
    font-size: 35px;
}

.hero-wrapper p {
    color: #3c3c3c;
    font-size: 25px;
}

.hero-wrapper p span {
    color: #E85CA7;
}

/*=========== hero area style end hare ========= */

/*======== features area style start hare ======= */

.features-area {
    padding-block: 40px;
}

.features-wrappper {
    max-width: 1150px;
    margin-inline: auto;
}

.features-card {
    display: flex;
    flex-direction: column;
    padding-right: 50px;
    gap: 25px;
}

.features-card ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-card ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-card li i {
    font-size: 30px;
    color: #00BF63;
}

.features-card li span {
    flex: 1;
    font-size: 22px;
}

.features-card h4 {
    font-weight: 400;
    color: #06265C;
    font-size: 35px;
    padding-left: 50px;
}

.features-card li .serial {
    font-family: "Merienda", cursive;
    font-style: italic;
    font-size: 50px;
    font-weight: 500;
    color: #06265C;
}

.features-card-right {
    padding-right: 0;
    padding-left: 50px;
}

.features-card-right ul li {
    align-items: start;
}

/*============ features area styl end hare ========== */

/*======== loyalty form area style start hare ======= */

.loyalty-form-area {
    padding-block: 40px;
}

.loyalty-top-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loyalty-top-area h4 {
    color: #06265C;
    font-weight: 400;
    font-size: 30px;
}

.loyalty-form-wrapper {
    padding: 30px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: #FCFCFC;
    max-width: 100%;
}

.loyalty-form-wrapper form {
    width: 650px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 100%;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-input {
    width: 100%;
    flex: 1;
}

.single-input input {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #C46A53;
    transition: 0.3s;
}

.single-input input:focus {
    border-radius: 10px;
}

.terms-condition-box {
    padding-block: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-terms {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-terms input {
    accent-color: #C46A53;
}

.terms-one label {
    color: #06265C;
    font-size: 17px;
	margin-bottom: 0;
}

.terms-one label a {
    text-decoration: underline;
}

.terms-two label {
	color: #06265C;
	font-size: 17px;
	margin-bottom: 0;
}

.terms-two label a {
	text-decoration: underline;
}

.loyalty-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/*====== loyalty form area style end hare  ============*/

/*========== conditions area style start hare =========== */

.condition-area {
    padding-block: 40px;
}

.condition-list-card {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.condition-list-card ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: disc;
    padding-left: 15px;
}

.condition-list-card h4 {
    color: #06265C;
    font-weight: 400;
    font-size: 30px;
}

.condition-list-card ul li {
    font-size: 20px;
    font-weight: 400;
}

.condition-list-card p {
    font-size: 20px;
    font-weight: 400;
}

.condition-list-card p a {
    text-decoration: underline;
    color: #1503A8;
}

.condition-wrapper {
    position: relative;
}

.conditions-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
}

/*=========== shop location area style start hare ========= */

.shop-location-area {
    padding-block: 40px;
}

.shop-location-wrapper {
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shop-location-wrapper h4 {
    color: #06265C;
    font-weight: 400;
    font-size: 30px;
}

.shop-location-wrapper ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
}

.shop-location-wrapper ul li {
    width: 50%;
}

.shop-location-wrapper ul li a {
    display: block;
    font-size: 20px;
    color: #C46A53;
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.benefits-icons ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
