/* Start Variables */
:root{
    --primary-color: #3A1078;
    --secondary-color: #F7F7F8;
    --text-color: #1230AE;
    --paraghaph-color: #40679E;
    --pink-color: #FF407D;
    --background-color: #FFCAD4;
    --span-color: #3795BD;
    --black-color: #000;
    --main-transition: 0.3s ease-in-out;
}
/* End Variables */

/* Start Box */
.d-flex{
    display: flex;
}

.align-center{
	align-items: center;
}

.space-between{
	justify-content: space-between;
}

.flex-wrap{
    flex-wrap: wrap;
}

.d-grid{
    display: grid;
}

.gap-40{
    gap: 40px;
}
/* End Box */

/* Start Padding + Margin */
.p-0{
    padding: 0;
}

.p-10{
    padding: 10px;
}

.p-15{
    padding: 15px;
}

.p-20{
    padding: 20px;
}

.pt-10{
    padding-top: 10px;
}

.pt-15{
    padding-top: 15px;
}

.pt-20{
    padding-top: 20px;
}

.pt-80{
    padding-top: 80px;
}

.pr-15{
    padding-right: 15px;
}

.pr-20{
    padding-right: 20px;
}

.pb-10{
    padding-bottom: 10px;
}

.pb-15{
    padding-bottom: 15px;
}

.pb-20{
    padding-bottom: 20px;
}

.pb-50{
    padding-bottom: 50px;
}

.pb-80{
    padding-bottom: 80px;
}

.pb-100{
    padding-bottom: 100px;
}

.pl-15{
    padding-left: 15px;
}

.pl-20{
    padding-left: 20px;
}

.m-0{
    margin: 0;
}

.mt--30{
    margin-top: -30px;
}

.mt-0{
    margin-top: 0;
}

.mt-10{
    margin-top: 10px;
}

.mt-20{
    margin-top: 20px;
}

.mt-25{
    margin-top: 25px;
}

.mt-30{
    margin-top: 30px;
}

.mt-35{
    margin-top: 35px;
}

.mt-40{
    margin-top: 40px;
}

.mt-48{
    margin-top: 48px;
}

.mt-65{
    margin-top: 65px;
}

.mt-88{
    margin-top: 88px;
}

.mt-90{
    margin-top: 90px;
}

.mt-92{
    margin-top: 92px;
}

.mr-10{
    margin-right: 10px;
}

.mr-20{
    margin-right: 20px;
}

.mr-50{
    margin-right: 50px;
}

.mb-15{
    margin-bottom: 15px;
}

.mb-20{
    margin-bottom: 20px;
}

.mb-25{
    margin-bottom: 25px;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-40{
    margin-bottom: 40px;
}

.mb-42{
    margin-bottom: 42px;
}

.mb-43{
    margin-bottom: 43px;
}

.mb-47{
    margin-bottom: 47px;
}

.mb-50{
    margin-bottom: 50px;
}

.mb-65{
    margin-bottom: 65px;
}

.mb-80{
    margin-bottom: 80px;
}

.mb-83{
    margin-bottom: 83px;
}

.mb-90{
    margin-bottom: 90px;
}

.mb-100{
    margin-bottom: 100px;
}

.ml-10{
    margin-left: 10px;
}

.ml-20{
    margin-left: 20px;
}

.ml-50{
    margin-left: 50px;
}

.ml-100{
    margin-left: 100px;
}

.ml-110{
    margin-left: 110px;
}

.ml-225{
    margin-left: 225px;
}
/* End Padding + Margin */

/* Start Fonts*/
.txt-c{
    text-align: center;
}

.txt-left{
    text-align: left;
}

.txt-justify{
    text-align: justify;
}

.fs-16{
    font-size: 16px;
}

.fs-17{
    font-size: 17px;
}

.fs-18{
    font-size: 18px;
}

.fs-20{
    font-size: 20px;
}

.fs-20{
    font-size: 20px;
}

.fs-23{
    font-size: 23px;
}

.fs-25{
    font-size: 25px;
}

.fs-30{
    font-size: 30px;
}

.fs-37{
    font-size: 37px;
}

.fs-45{
    font-size: 45px;
}

.fs-48{
    font-size: 48px;
}

.fs-50{
    font-size: 50px;
}

.f-merriweather{
    font-family: "Merriweather";
}

.f-roboto{
    font-family: "Roboto";
}

.font-w-500{
    font-weight: 500;
}
/* End Fonts */

/* Start Colors */
.c-main{
    color: var(--primary-color);
}

.c-second{
    color: var(--secondary-color);
}

.c-text{
    color: var(--text-color);
}

.c-para{
    color: var(--paraghaph-color);
}

.c-span{
    color: var(--span-color);
}

.c-black{
    color: var(--black-color);
}

.bg-second{
    background-color: var(--secondary-color);
}

.bg-para{
    background-color: var(--paraghaph-color);
}

.bg-pink{
    background-color: var(--pink-color);
}
/* End Colors */

/* Start Postion */
.p-relative{
    position: relative;
}

.p-absolute{
    position: absolute;
}

.d-block{
    display: block;
}
/* End Postion */

/* Start Height + Width + Borders */
.h-50{
    height: 50px;
}

.h-80{
    height: 80px;
}

.w-full{
    width: 100%;
}

.h-full{
    height: 100%;
}

.border-10{
    border-radius: 10px;
}
/* End Height + Width */




/* Start Component */
.special-heading{
    margin: 30px 0 0 0;
    font-size: 100px;
    text-align: center;     
    color: #F2F9FF;
}

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

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

.btn-shape{
	padding: 10px 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background-color: var(--background-color);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
    border: 3px solid var(--pink-color);
	border-radius: 6px;
    cursor: pointer;
    transition: var(--main-transition);
}
/* End Component */