html {
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans', sans-serif;
	font-style: normal;
	font-size: 17px;
	font-weight: 400;
	line-height: 26px;
	color: #1a1a1a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::before, *::after {
    box-sizing: border-box;
}
a {
    text-decoration: none;
	font-weight: 600;
	color: #000000;
}
a:active, a:focus {
  outline: 0;
  border: none;
  -moz-outline-style: none;
}
a:hover {
	color: #D62952;
}
header ul, footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
img, svg {
    display: block;
    height: auto;
}
img {
    max-width: 100%;
}
button {
	display: block;
    width: fit-content;
    height: fit-content;
	padding: 14px 28px;
	background: #D62952;
	border: 1px solid #D62952;
	border-radius: 6px;
	font-family: 'Mukta Malar';
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #FFFFFF;
	cursor: pointer;
}
button:hover,button:active,button:focus   {
	background: #FFFFFF;
	color: #D62952;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: 0;
}
h1, h2, h3 {
	font-family: 'Mukta Malar';
	font-style: normal;
	font-weight: 700;
	color: #0d0d0d;
	letter-spacing: -0.01em;
}
h1 {
	font-size: 56px;
	line-height: 66px;
	text-align: center;
}
h2, .ag_h2 {
	font-size: 44px;
	line-height: 52px;
}
h3 {
	font-size: 28px;
	line-height: 34px;
	font-weight: 600;
}
h4 {
	font-weight: 700;
	font-size: 17px;
	line-height: 24px;
}
* {
    scroll-behavior: smooth;
}
p, .entry-content p {
    margin-bottom: 0;
}
p {
	font-family: 'Noto Sans', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 27px;
	color: #333333;
}
ol,ul {
    margin: 0 0 1.5em 3em
}
ul {
    list-style: disc
}
ol {
    list-style: decimal
}
li>ol,li>ul {
    margin-bottom: 0;
    margin-left: 1.5em
}
input[type=text], input[type=number], input[type=password], input[type=email], input[type=tel] {
	height: 55px;
	color: #000000;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 10px;
	font-size: 18px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #C1C1C1;
	border-radius: 4px;
}
textarea {
	height: 162px;
	color: #000000;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 10px 10px;
	font-size: 18px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #C1C1C1;
	border-radius: 4px;
}
/*input[type=text]:hover,input[type=text]:active,input[type=text]:focus,textarea:hover,textarea:active,textarea:focus {
	border: 1px solid #E65757;
}*/
input[type=number] {
	width: 80px;
}
input[type="checkbox"]{
  width: 15px; /*Desired width*/
  height: 15px; /*Desired height*/
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1 1 auto;
}
.container, .xr-container {
    margin: 0 auto;
    width: 88%;
    max-width: 1100px;
}
.ag_btn {
	font-family: "Mukta Malar", serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #000000;
}
.button1 {
	display: block;
    width: fit-content;
	padding: 13px 28px;
	background: #FFFFFF;
	border: 1.5px solid #D62952;
	border-radius: 8px;
	font-family: 'Mukta Malar';
	font-weight: 600;
	font-size: 17px;
	line-height: 28px;
	color: #D62952;
	transition: background 0.15s, color 0.15s;
}
.button1:hover,.button1:active,.button1:focus   {
	background: #D62952;
	color: #FFFFFF;
}
.button2 {
	display: block;
    width: fit-content;
	padding: 13px 32px;
	background: #D62952;
	border: 1.5px solid #D62952;
	border-radius: 8px;
	font-family: 'Mukta Malar';
	font-weight: 600;
	font-size: 17px;
	line-height: 28px;
	color: #FFFFFF;
	transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.button2:hover,.button2:active,.button2:focus   {
	background: #b8213e;
	border-color: #b8213e;
	box-shadow: 0 4px 16px rgba(214, 41, 82, 0.3);
	color: #FFFFFF;
}
.full_width_button {
	width: 100%; 
	text-align: center; 
	margin: 0 auto;
}
.semibold_text {
	font-weight: 600;
}
.bold_text {
	font-weight: 700;
}
.underline_link {
	text-decoration: underline;
}
.card_block {
	padding: 25px;
	margin: 0 auto;
	background: #FFFFFF;
	box-shadow: 0px 3px 18px rgba(0, 0, 0, 0.22);
	border-radius: 10px;
}
.gray50_text {
	color: #797979;
}
abbr.required, span.required {
	color: #EE2222;
}
header {
    background: #fff;
    z-index: 111;
    border-bottom: 1px solid #f0f0f0;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	height: 72px;
}
.header__logo {
	#flex-grow: 1;
	flex-basis: 0;
	display: flex;
}
.header__logo img {
	min-width: 186px;
	width: 186px; 
}
.header__right {
	display: flex;
	height: 60px;
	align-items: center;
	justify-content: end;
	gap: 32px;
}
.header__main {
	height: 60px;
	display: flex;
    align-items: center;
}

/* Nav Header start*/
.header__nav .menu {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 16px;
	gap: 40px;
	border-radius: 12px;
}
.header__nav a {
	font-family: "Mukta Malar", serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #000000;
}
.header__nav a:hover {
	color: #D62952;
}
.header__nav .menu-link {
	cursor: pointer;
}
.header__nav .sub-menu {
    min-width: 232px;
    padding: 15px;
    position: absolute;
    z-index: 11;
    list-style: none;
    display: none;
    text-align: left;
	box-sizing: border-box;
	background: #FBFBFB;
	border: 1px solid #E0E0E0;
	border-radius: 20px;
}
.header__nav .sub-menu li {
	gap: 10px;
	border-radius: 12px;
}
.header__nav .sub-menu a:hover {
    background-color: #ffffff;
	color: #FB4056;
}
.header__nav .sub-menu li a {
	justify-content: left;
}

.header__nav .menu li:hover > .sub-menu {
    display: block;
}
.header__nav .menu .menu-item-has-children > a:after {
    content: '\2335';
	padding: 0 0 5px 8px;
}
.header__mobile_menu {
    display: none;
}
.new_menu_link > a:after {
	content: "New 🔥";
	margin: 0 0 7px 5px;
	display: block;
	float: right;
	background: #FEF1E9;
	border-radius: 2px;
	padding: 4px 2px 4px 5px;
	font-family: 'Mukta Malar';
	font-size: 12px;
	line-height: 12px;
	color: #D62952;
}​
/* Nav Header end*/

.content_wrapper {
	margin: 30px 0 100px 0;
}

.content_wrapper p {
	padding: 10px 0;
}

/* Nav Footer start*/
.footer_nav .menu {
	display: flex;
	gap: 24px;
	justify-content: space-between;
	white-space: nowrap;
}
.footer_nav a {
	font-family: 'Mukta Malar';
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #FFFFFF;
}
.footer_nav a:hover {
	color: #D62952;
}
/* Nav Footer end*/

footer {
	background: #000000;
	padding: 40px 0 40px 0;
}
.footer_wrapper {
    display: flex;
	gap: 6%;
	row-gap: 30px;
	justify-content: space-between;
}
.footer_info {
    display: flex;
	flex-direction: column;
	justify-content: start;
	min-width: 142px;
}
.footer_logo img {
	width: 186px;
}
.footer_main {
	display: flex;
	align-items: center;
}
.footer_legacy-item {
	font-size: 12px;
	line-height: 150%;
	color: #F5F5F5;
	text-align: left;
}
.faq_block_body_que {
	font-weight: 700;
}

.recent__wrapper {
    display: flex;
    flex-direction: column;
}

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

.recent__heading-title {
    text-align: left;
	font-weight: 700;
	font-size: 64px;
	color: #2D2C2D;
	flex-basis: 70%;
	line-height: 66px;
}

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

.recent__postlist {
    margin-top: 50px;
}

.recent__postlist-wrapper {
    display: flex;
    #gap: 20px;
}

/*post preview*/
.post-preview {
    width: calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
	box-sizing: border-box;
	background: #FFFFFF;
	border: 1px solid #F3F3F3;
	border-radius: 20px;
	padding: 3%;
}

.post-preview__thumbnail {
    border-radius: 6px;
    border: 1px solid rgba(17, 17, 17, 0.10);
    overflow: hidden;
	margin: 0 5%;
}

.post-preview__thumbnail-img {
    background: #c4c4c4;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-preview__details {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

.post-preview__details-meta {
    display: flex;
    gap: 16px;
    align-items: center;
	margin: 5px 0;
}

.post-preview__details__tag {
    padding: 8px 12px;
	background: rgba(243, 113, 33, 0.1);
	border-radius: 4px;
	font-weight: 600;
	color: #D62952;
	font-size: 16px;
}

.post-preview__details-title {
    margin: 8px 0 8px;
	font-weight: 600;
	font-size: 24px;
	color: #2D2C2D;
	font-family: 'Mukta Malar';
}

.post-preview__details-excerpt {
    color: #1F1E2F;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    height: 100%;
}

.post-preview__details-excerpt p {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-preview__details-excerpt p a {
	font-size: 16px;
	font-weight: 400;
}

.post-preview__details-date {
	margin-left: auto;
	font-style: normal;
	font-size: 14px;
	color: #828282;
}

.xr-read-more {
    display: flex;
    color: #1F1E2F;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 1;
    margin-top: 24px;
    padding: 8px 16px;
    width: fit-content;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid #111;
    align-items: center;
}

.xr-read-more:after {
    height: 1.2em;
}

.xr-read-more:hover {
    gap: 8px;
}

.xr-to-blog {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    background: #FB4056;
    padding: 12px 32px 13px;
    margin: 48px auto 0;
    display: block;
    width: fit-content;
	
	box-shadow: 0px 13.1919px 19.7878px rgba(255, 99, 33, 0.1);
	border-radius: 12px;
}

.xr-to-blog:hover,.xr-to-blog:focus,.xr-to-blog:active {
	background: #2D2C2D;
	color: #FFF;
}

.page__title{
    margin: 20px 0;
}
.page__content p, .page__content ul{
    margin-bottom: 12px;
}
.page__content ul{
    list-style: disc;
}
.post-preview__link{
    display: contents;
    color: #1F1E2F;
}
p .post-preview__link{
    color: rgba(31, 30, 47, 0.6);
}
.splide__pagination__page.is-active {
	background: #2D2C2D !important;
	width: 20px;
	border-radius: 15px;
	margin: 0 5px !important;
}


@media (max-width: 1200px) {
	.container {
        width: 90%;
    }
}

@media (max-width: 992px) {
	.footer_wrapper {
		flex-wrap: wrap;
	}
	.mobile-full-container {
        width: 95%;
    }
    .menu-opened {
        overflow-y: hidden;
    }
	.header__right {
		 display: none;
	}
    .header__main {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        left: 0;
        width: 0px;
        top: 84px;
        display: flex;
        gap: 22px;
        flex-direction: column;
        background: #fff;
        height: calc(100vh - 84px);
        padding: 20px;
        border-top: 1px solid #c4c4c4;
		overflow: scroll;
    }
    .header__main.mobile {
        opacity: 1;
        visibility: visible;
        top: 156px;
        width: 100%;
        z-index: 999999;
        transition: all 0.3s linear;
    }
    .header__nav ul, .footer__nav ul {
        flex-direction: column;
        gap: 22px;
    }
	.sub-menu {
		position: relative;
		display: none;
	}
    .header__mobile_menu {
        display: flex;
        gap: 20px;
        align-items: center;
    }
    .header__mobile_menu__name {
        font-size: 16px;
        line-height: 1.5;
        color: #452857;
    }
    .header__mobile_menu__burger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
        width: 25px;
        /*height: 15px;*/
    }
    .header__mobile_menu__burger span {
        height: 3px;
        width: 25px;
        background: #452857;
        border-radius: 15px;
        transition: all 0.3s linear;
    }
    .menu-opened .header__mobile_menu__burger span {
        position: absolute;
        width: 20px;
        transition: all 0.3s linear;
    }
    .menu-opened .header__mobile_menu__burger span:nth-child(2) {
        display: none;
    }
    .menu-opened .header__mobile_menu__burger span:first-child {
        transform: rotate(45deg);

    }
    .menu-opened .header__mobile_menu__burger span:last-child {
        transform: rotate(-45deg);
    }
}

@media (max-width: 768px) {
	h1 {
		font-size: 36px;
		line-height: 42px;
		font-weight: 700;
	}
	h2, .ag_h2 {
		font-size: 32px;
		line-height: 39px;
		font-weight: 700;
	}
	h3 {
		font-size: 27px;
		line-height: 32px;
		font-weight: 500;
	}
	.card_block {
		padding: 10px;
	}

}

@media (max-width: 576px) {
	.footer_nav .menu {
		flex-direction: column;
		gap: 30px;
	}
	.footer_wrapper {
		justify-content: center;
	}
}