
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
    scroll-behavior: smooth;
    letter-spacing: 0.35px;
}

html{
    --primary: #B76AFF;
    --white: white;
    --dark-grey: #a199a8;
    --grey: #eee;
    --border: #eae4d6;

    --txt-black: #1f112b;
    --txt-light-black: #60546c;

    --fs-extra-large: 28px;
    --fs-large: 20px;
    --fs-semi-large: 16px;
    --fs-medium: 14px;
    --fs-small: 12px;
    --fs-extra-small: 11px;


    --fw-light: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-extra-bold: 800;


    --width: 95%;
    --max-width: 2000px;

    --br-small: 6px;
    --br-medium: 15px;
    --br-large: 20px;
    --br-extra-large: 50px;
}


* a{
    text-decoration: none;
}


* button,
* select{
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

* input,
* select,
* textarea{
    outline: none;
    border: none;
    color: var(--heading);
    background-color: transparent;
}

::placeholder{
    font-size: var(--fs-small);
    color: var(--light-black);
    font-weight: var(--fw-semi-bold);
}

* img{
    width: 100%;
    height: 100%;
}

* button{
    font-size: var(--fs-medium);
    font-weight: var(--fw-medium);
    transition: 0.2s;
    border-radius: var(--br-small);
}



.inner-container{
    width: var(--width);
    margin: 0px auto;
}

.section-title{
    width: 100%;
    text-align: center;
}

.section-title h1{
    font-size: var(--fs-extra-large);
    color: var(--txt-black);
    text-transform: capitalize;
    font-weight: var(--fw-semi-bold);
    margin-bottom: 15px;
}

.section-title h1 span{
    color: var(--primary);
}

.section-title p{
    font-size: var(--fs-medium);
    font-weight: var(--fw-medium);
    color: var(--txt-light-black);
    line-height: 23px;
    max-width: 800px;
    margin: 0px auto;
}


.primary-btn{
    background: linear-gradient(180deg,#00c3ff 0%, #B76AFF 100%);
    color: var(--white);
}

button:hover{
    scale: 0.95;
}


div img{
    object-fit: cover;
    object-position: center;
}

.bg-image{
    background-size: cover;
    background-position: center;
    background-color: var(--grey);
}

ion-icon {
    --ionicon-stroke-width: 36px;
}


.flex-left{
    display: flex;
    align-items: center;
    justify-content: left;
}

.flex-right{
    display: flex;
    align-items: center;
    justify-content: right;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-around{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.round{
    border-radius: 50%;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}

.hidden{
    display: none!important;
}


