
.section_padd{
	padding: 120px 0;
}

.mr_5{
	margin-right: 5px;
}

.mb_10{
	margin-bottom: 10px;
}
.mt_10{
	margin-top: 10px;
}
.mr_10{
	margin-right: 10px;
}
.mr_15{
	margin-right: 15px;
}
.mb_15{
	margin-bottom: 15px;
}
.mt_15{
	margin-top: 15px;
}
.mb_20{
	margin-bottom: 20px;
}
.mt_20{
	margin-top: 20px;
}
.mb_25{
	margin-bottom: 25px;
}
.mt_25{
	margin-top: 25px;
}
.mb_30{
	margin-bottom: 30px;
}
.mt_30{
	margin-top: 30px;
}
.mb_35{
	margin-bottom: 35px;
}
.mt_40{
	margin-top: 40px;
}
.mb_40{
	margin-bottom: 40px;
}
.mt_60{
	margin-top: 60px;
}
.mb_60{
	margin-bottom: 60px;
}

.mr_15{
	margin-right: 15px;
}
.ml_15{
	margin-left: 15px;
}

.theme_bg{
	background-color: #ff467e;
	border-color: transparent !important;
	color: #fff !important;
}

.home_2 .theme_bg{
	background-color: #24aff4;
}

.theme_text{
	color: #ff467e;
}
.button{
	border-radius: 10px;
	text-align: center;
	border: 2px solid #ff467e;
	line-height: 50px;
	display: inline-block;
	font-size: 17px;
	font-weight: 600;
	text-transform: capitalize;
	transition: 0.3s;
	width: 170px;
	height: 55px;
	color: #333b55;
}

.home_2 .button{
	border-color: #24aff4;
}

.home_2 .button img{
	min-height: 55px;
}

.button:hover{
	background-color: #ff467e;
	color: #fff;
	border-color: transparent;
	box-shadow: 0px 0px 5px 0px #ff467e;
}
.home_2 .button:hover{
	background-color: #007dbf;
	box-shadow: 0px 0px 5px 0px #0f9ce4;
}

.z_index_1{
	z-index: 1;
}
/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap');

/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 19px;
	font-family: 'Rubik', sans-serif;
	background-color: rgba(0,0,0,.03);
	color: #000000;
    font-weight: 400;
}

a:hover {
	text-decoration: none;
}

a:focus,
button:focus{
	outline: none;
}

.title{
	font-weight: 600;
	font-size: 48px;
	line-height: 72px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 0.9rem;
}

.sub_title{
	font-size: 16px;
	line-height: 21px;
	color: #000000;
}

.collapse_wrapper{ 
	padding: 0px 0;
    min-height: 100vh;

}

.collapse_wrapper button {
    width: 100%;
    border-radius: 4px;
    text-align: left;
    padding: 11px 27px 11px 27px;
    position: relative;
    border: none;
    background-color: #fff;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.05em;
    color: #000000;
    transition: 0.3s;
}

.collapse_wrapper button:hover {
    background-color: #EBF1F8;
}

.collapse_wrapper button::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    font-size: 30px;
    background-image: url(../img/arrow.png);
    background-size: contain;
    background-position: right center;
    height: 20px;
    width: 15px;
    background-repeat: no-repeat;
    transition: 0.3s;
}

.collapse_wrapper button[aria-expanded="true"]::before{
	transform: translateY(-50%) rotate(90deg);
}

.item_body{
    min-height: 331px;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    margin-bottom: 50px;
    padding: 10px 27px 20px;
    background-image: url(../img/question_mark_2.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.item_body p{
	font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.quetion_mark{
    position: absolute;
    top: 178px;
    z-index: -1;
    left: -10px;
}

@media (max-width:575px) {
    .collapse_wrapper button {
        padding: 11px 25px 11px 15px;
        font-size: 16px;
    }

    .collapse_wrapper button::before{
        right: 15px;
    }

    .item_body{
        padding: 10px 15px 20px;
    }
}