/* Light */
@font-face {
    font-family: 'Poppins';
    src: url('asset/fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Regular */
@font-face {
    font-family: 'Poppins';
    src: url('asset/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: 'Poppins';
    src: url('asset/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* SemiBold */
@font-face {
    font-family: 'Poppins';
    src: url('asset/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Poppins';
    src: url('asset/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Exter Bold */
@font-face {
    font-family: 'Poppins';
    src: url('asset/fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


/* Light - 300 */
@font-face {
    font-family: 'Open Sans';
    src: url('asset/fonts/openSans/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Regular - 400 */
@font-face {
    font-family: 'Open Sans';
    src: url('asset/fonts/openSans/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium - 500 */
@font-face {
    font-family: 'Open Sans';
    src: url('asset/fonts/openSans/OpenSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'StoryScript';
    src: url('asset/fonts/StoryScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MsMadi';
    src: url('asset/fonts/MsMadi-Regular.ttf') format('truetype');
}




* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --black: black;
    --white: #F5F5F5;
    --gray: gray;

    --prim-color: #00BFA6;
    --sec-color: #FF9734;
    --action-color: #E91E63;
    --action-color: #9530DA;

    --primary-dark: #009E88;
    --primary-light: #33CFC0;
    --sec-dark: #E0A800;
    --sec-light: #FFD54F;
    --action-dark: #C2185B;
    --action-light: #F06292;

    --gradient: linear-gradient(135deg, #00BFA6, #F4B400);
    --heading: 'Poppins', sans-serif;
    --content: 'Open Sans', sans-serif;
}

body {
    /* background: linear-gradient(white, #d0f8e6, white, #dbfcedea, white, #d6f8e9ee); */
    background: var(--white);
}

.bg-prim {
    background: var(--prim-color);
}

.bg-prim-d {
    background: var(--primary-dark);
}

.bg-prim-l {
    background: var(--prim-color);
}

.bg-sec {
    background: var(--sec-color);
}

.bg-sec-d {
    background: var(--sec-dark);
}

.bg-sec-l {
    background: var(--sec-light);
}

.bg-action {
    background: var(--action-color);
}

.bg-action-d {
    background: var(--action-dark);
}

.bg-action-l {
    background: var(--action-light);
}

.text-prim {
    color: var(--prim-color);
}

.text-sec {
    color: var(--sec-color);
}

.text-action {
    color: var(--action-color);
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--content);
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    margin-bottom: 10px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}



.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.ml10 {
    margin-left: 10px;
}

.ml20 {
    margin-left: 20px;
}

.ml30 {
    margin-left: 30px;
}

.ml40 {
    margin-left: 40px;
}

.ml50 {
    margin-left: 50px;
}

.ml60 {
    margin-left: 60px;
}

.ml70 {
    margin-left: 70px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.mr30 {
    margin-right: 30px;
}

.mr40 {
    margin-right: 40px;
}

.mr50 {
    margin-right: 50px;
}

.mr60 {
    margin-right: 60px;
}

.mr70 {
    margin-right: 70px;
}

/* Padding  */

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pt60 {
    padding-top: 60px;
}

.pt70 {
    padding-top: 70px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb70 {
    padding-bottom: 70px;
}

.pl10 {
    padding-left: 10px;
}

.pl20 {
    padding-left: 20px;
}

.pl30 {
    padding-left: 30px;
}

.pl40 {
    padding-left: 40px;
}

.pl50 {
    padding-left: 50px;
}

.pl60 {
    padding-left: 60px;
}

.pl70 {
    padding-left: 70px;
}


.pr10 {
    padding-right: 10px;
}

.pr20 {
    padding-right: 20px;
}

.pr30 {
    padding-right: 30px;
}

.pr40 {
    padding-right: 40px;
}

.pr50 {
    padding-right: 50px;
}

.pr60 {
    padding-right: 60px;
}

.pr70 {
    padding-right: 70px;
}

/* ================== class ================= */


section {
    padding: 0;
    margin: 0;
}

.container-fluid {
    position: relative;
    padding: 0;
    margin: 0;
}

.section-item {
    position: relative;
    padding: 40px clamp(15px, 4vw, 50px);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.align-item {
    display: flex;
    align-items: center;
}

.col-sm-12,
.col-md-6,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1 {
    margin-bottom: 30px;
}

.des {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    font-family: var(--content);
}








/* -------------- button ------------- */

.button {
    position: relative;
    overflow: hidden;
    width: fit-content;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: var(--action-color);
    background-size: 400%;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.button:hover::before {
    transform: scaleX(1);
}

.button-content {
    position: relative;
    z-index: 1;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(82.3deg,
            #E0A800, #FF9734);
    transition: all 0.475s;
}

.button:hover::before {
    background: var(--sec-color);
}


/* ------ button 2nd -------- */
.button2 {
    background: var(--prim-color);
    transition: all ease-in 0.3s;
}

.button2::before {
    background: var(--sec-color);
}

.button2:hover {
    color: black;
    background-color: var(--sec-color);
}

/* ------ button 3nd ------- */

.button3 {
    background: var(--sec-color);
    color: black;
    transition: all ease-in 0.3s;

}

.button3:hover {
    color: var(--white);
}

.button4 {
    background: black;
    color: white;
    transition: all ease-in 0.3s;
}

.button4:hover {
    color: white;
    /* background: var(--action-color); */
}

.button4::before {
    background: var(--action-color) !important;

}

.box-body {
    display: flex;
    align-items: start;
    margin: 20px;
    width: 610px;
    padding: 15px;
    gap: 15px;
    border: 1px solid black;
    flex-wrap: wrap;
    background-color: var(--white);

}

.box {
    width: 180px;
    height: 180px;
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    padding-top: 60px;
    color: black;
    background-color: black;

}

.box1 {
    background-color: var(--prim-color);
    color: var(--sec-color);
}

.box2 {
    background-color: var(--prim-color);
    color: var(--action-color);
}

.box3 {
    background-color: var(--prim-color);

}

.box4 {
    background-color: var(--sec-color);
    color: var(--prim-color);
}

.box5 {
    background-color: var(--sec-color);
    color: var(--action-color);
}

.box6 {
    background-color: var(--sec-color);

}

.box7 {
    background-color: var(--action-color);
    color: var(--prim-color);
}

.box8 {
    background-color: var(--action-color);
    color: var(--sec-color);
}

.box9 {
    background-color: var(--action-color);

}


/* ============================================== */
/* HEADING */
/* ============================================== */

.heading-body {
    display: flex;
    flex-direction: column;
}

.heading-body .small-heading {

    font-family: var(--sub-heading);
    font-size: clamp(10px, 1vw, 13px);
    position: relative;
    width: fit-content;
    text-transform: capitalize;
    background-color: #d197f7;
    padding: 7px 20px;
    border-radius: 30px;
    color: black;
}



.heading-body .big-heading {
    font-size: clamp(25px, 3vw, 60px);
    font-weight: 700;
    font-family: var(--heading);
    color: var(--black);
    /* margin: 5px auto; */
    margin-top: 10px;
    line-height: 1.2;

}

.heading-body .big-heading span {
    color: var(--prim-color);
    font-weight: bold;
    font-family: var(--heading);
}

.heading-body .content-heading {
    width: 80%;
}

.center {
    align-items: center;
    
}

.start {
    align-items: start;
}

.end {
    align-items: end;
}