/*======================
   01.fonts
========================*/
:root{
	--dark_main: #000000;
	--theme_main: #7C0E6F;
	--secondary_main: #036533;
	--orange_main: #FD5637;
	scroll-behavior: inherit;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--dark_main);
	color: #fff;
}
::selection{
	background-color: var(--dark_main);
	color: #fff;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
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: 1.5;
	font-family: "nure-variable", sans-serif;
	background-color: #fff;
	color: var(--dark_main);
	font-weight: 400;
	font-size: 2rem;
	overflow-x: hidden;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
a{
	color: inherit;
}
a:hover{
	color: var(--theme_main);
}
h1, h2, h3, h4, h5, h6{
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.1rem;
}
h1{
	font-size: 6rem;
}
h2{
	font-size: 5rem;
}
h3{
	font-size: 3.4rem;
}
h4{
	font-size: 3rem;
}
h5{
	font-size: 2.6rem;
}
h5{
	font-size: 2.2rem;
}


/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: var(--theme_main);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
.container{
	padding-left: 1.5rem;
	padding-left: 1.5rem;
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	width: 6rem;
	border-radius: 50%;
	aspect-ratio: 1/1;
	background-color: #fff;
	cursor: pointer;
	display: none;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.hamburger-menu span {
	background: var(--theme_main);
	width: 3.5rem;
	height: .2rem;
	display: block;
	margin: .4rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu.current{
	background-color: var(--theme_main);
}
.hamburger-menu.current .line-top {
   -webkit-transform: translateY(1rem) rotate(45deg);
       -ms-transform: translateY(1rem) rotate(45deg);
           transform: translateY(1rem) rotate(45deg);
           background-color: #fff;
}
.hamburger-menu.current .line-center {
   opacity: 0;
}
.hamburger-menu.current .line-bottom {
   -webkit-transform: translateY(-0.95rem) rotate(-45deg);
       -ms-transform: translateY(-0.95rem) rotate(-45deg);
           transform: translateY(-0.95rem) rotate(-45deg);
           background-color: #fff;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
}
header.sticky {
	background-color: var(--dark_main);
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}
header.sticky .menu_wrapper{
	padding: 1.5rem 0;
}
header.sticky .logo{
	max-width: 7rem;
}
.logo{
	display: block;
	width: 100%;
	max-width: 14.7rem;
	margin-bottom: -25rem;
}
.menu_wrapper{
	padding: 4rem 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.menu{
	background-color: #fff;
	border-radius: 10rem;
	position: relative;
	padding: 0 1.5rem 0 8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3.7rem;
	   -moz-column-gap: 3.7rem;
	        column-gap: 3.7rem;
}
.menu::before {
	content: '\EF3E';
	font-family: 'remixicon';
	position: absolute;
	left: 0;
	top: 0rem;
	height: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: var(--theme_main);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-weight: 400;
	font-size: 3rem;
	padding-left: 3rem;
}
.menu .button::after{
	display: none;
}
.menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
}
.menu>ul>li {
   padding: 2.4rem 3.7rem;
   -webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.menu>ul>li>a {
	text-decoration: none;
	font-weight: 500;
	color: var(--theme_main);
	line-height: 1;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu>ul>li.active>a,
.menu>ul>li>a:hover {
	color: var(--dark_main) !important;
}
.menu>ul>li.dropdown_wrap,
.language_toggle{
	position: relative;
}
.menu>ul>li.dropdown_wrap:hover{
	background-color: var(--dark_main);
	color: #fff;
}
.menu>ul>li.dropdown_wrap:hover>a{
	color: #fff !important;
}
.menu>ul>li.dropdown_wrap>a::after{
	content: '\EA4E';
	font-family: 'remixicon';
	margin-left: 0.3rem;
	font-size: 80%;
	position: relative;
	font-weight: 600;
	top: 0.1rem;
}
.menu>ul>li.dropdown_wrap>ul {
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--dark_main);
	padding: 1rem 0 2rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	list-style: none;
	min-width: 100%;
}
.menu>ul>li.dropdown_wrap:hover>ul{
	opacity: 1;
	pointer-events: all;
}
.menu>ul>li.dropdown_wrap>ul>li>a{
	color: #fff;
	white-space: nowrap;
	padding: 0.6rem 3.4rem;
	display: block;
	text-decoration: none;
}
.menu>ul>li.dropdown_wrap>ul>li>a:hover,
.menu>ul>li.dropdown_wrap>ul>li.active>a{
	color: var(--dark_main);
}

/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 1.175rem 2.5rem;
	color: #FFFFFF;
	font-size: 2rem;
	border: 0.1rem solid transparent;
	border-radius: 4rem;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.225;
	text-align: center;
	background-color: var(--theme_main);
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
}
.button::after{
	content: '\F5DC';
	font-family: 'remixicon';
	font-weight: 400;
	margin: 0 -0.2rem;
}
.button:hover{
	background-color: #fff;
	color: var(--theme_main);
	border-color: var(--theme_main);
	-webkit-box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.16);
}
.button.white_btn{
	background-color: #fff;
	color: var(--theme_main);
}
.button.white_btn:hover{
	color: #fff;
	background-color: var(--secondary_main);
	border-color: var(--secondary_main);
}
.black_btn{
	background-color: var(--dark_main);
	color: #fff;
}
.black_btn:hover{
	background-color: #fff;
	color: var(--dark_main);
	border-color: var(--dark_main);
}
.blue_btn{
	background-color: #1F70B7;
	color: #fff;
}
.blue_btn:hover{
	color: var(--secondary_main);
	border-color: var(--secondary_main);
}
.white_outline{
	border-color: #fff;
	background-color: transparent;
}
.button_wrapper{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2.5rem;
	   -moz-column-gap: 2.5rem;
	        column-gap: 2.5rem;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2rem;
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--theme_main);
	z-index: 1000;
	text-decoration: none;
}

.back-to-top i {
	color: #fff;
}
/*Home area*/
.home_area {
	position: relative;
	z-index: 1;
	background-size: cover;
	background-position: center center;
	color: #fff;
	text-align: right;
	height: 100vh;
	max-height: 108rem;
	min-height: 80rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.home_area::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 132rem;
	height: 33rem;
	background-image: url(../img/banner_shape.png);
	background-size: cover;
	background-position: right bottom;
	z-index: -1;
	background-repeat: no-repeat;
}
.home_slider{
    position: absolute;
    inset: 0;
    z-index: -2;
}
.home_slider .owl-stage{
    display: flex;
}
.home_slider .owl-stage,
.home_slider .owl-stage-outer,
.home_slider .owl-stage-outer .owl-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home_area h1 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	letter-spacing: 0.1rem;
}
.home_area h1 span{
	display: block;
	background-color: var(--dark_main);
	color: #fff;
	padding: 1.5rem 4rem;
	text-align: left;
}
.home_area h1 span:first-child{
	-webkit-transform: rotate(-2deg);
	    -ms-transform: rotate(-2deg);
	        transform: rotate(-2deg);
}
.home_area h1 span:last-child{
	-webkit-transform: rotate(4deg);
	    -ms-transform: rotate(4deg);
	        transform: rotate(4deg);
	margin-left: -4rem;
}

.owl-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
	        row-gap: 1rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    margin-top: 3rem;
}
.owl-carousel button.owl-dot{
	height: 1rem;
	width: 1rem;
	border-radius: 50%;
	background-color: #fff;
	padding: 0.1rem;
}
.owl-carousel button.owl-dot.active{
	background-color: #F5B5D3;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next{
	position: absolute;
	top: 45%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	padding: 0;
	background: #fff;
	color: var(--theme_main);
	width: 7rem;
	height: 7rem;
	font-size: 3rem;
	border: none;
	line-height: 1;
	border-radius: 50%;
}
.owl-carousel .owl-nav button:hover{
	background-color: var(--dark_main);
	color: #fff;
}
.owl-nav button.owl-prev{
	left: 0rem;
}
.owl-nav button.owl-next{
	right: 0rem;
}
.controls_inner{
	display: inline-block;
	position: relative;
	padding: 0 5rem;
}
.controls_inner .owl-dots{
	margin-top: 0;
}
.controls_inner .owl-nav button{
	height: auto;
	width: auto;
	background-color: transparent;
	border-radius: 0;
	color: var(--dark_main);
}


/*about area*/
.about_area{
	background-color: var(--theme_main);
	color: #fff;
	padding-top: 20rem;
	padding-bottom: 18rem;
	position: relative;
}
.about_area iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 17/9;
    max-width: 105rem;
    margin-left: auto;
    margin-right: auto;
}
lite-vimeo{
    width: 100%;
    height: auto;
    max-width: 105rem;
    margin: 4rem auto;
    aspect-ratio: 16/9;
    padding-bottom: 0;
}
.about_content{
	padding-bottom: 4rem;
	text-align: center;
}
.about_content p{
	margin-top: 3rem;
	max-width: 130rem;
	margin-left: auto;
	margin-right: auto;
}
.about_slider .owl-nav button.owl-prev{
	left: -3.5rem;
}
.about_slider .owl-nav button.owl-next{
	right: -3.5rem;
}
.about_slider{
	max-width: 66rem;
	margin-left: auto;
}
.about_shape {
	height: 19rem;
	position: absolute;
	bottom: -3rem;
	left: -10rem;
	z-index: 2;
	pointer-events: none;
}
.js-marquee-wrapper{
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.scroll_item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.scroll_item img{
	height: 2.1rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.marquee{
	background-color: #fff;
	font-size: 3rem;
	font-weight: 500;
	color: var(--theme_main);
	padding: 1.3rem 0;
	-webkit-box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	position: absolute;
}
.marquee1 {
	top: -3.7rem;
	-webkit-transform: translateX(-50%) rotate(-2deg);
	    -ms-transform: translateX(-50%) rotate(-2deg);
	        transform: translateX(-50%) rotate(-2deg);
	left: 50%;
	overflow: hidden;
	width: 105%;
	z-index: 3;
}
.marquee2 {
	top: -6rem;
	-webkit-transform: translateX(-50%) rotate(6deg);
	    -ms-transform: translateX(-50%) rotate(6deg);
	        transform: translateX(-50%) rotate(6deg);
	left: 50%;
	overflow: hidden;
	width: 105%;
	z-index: 2;
}
.marquee2 .scroll_item{
    opacity: 0.5;
}

/*news area*/
.slider1 .owl-stage{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.news_area {
	background-color: var(--secondary_main);
	position: relative;
	padding-top: 5.5rem;
	padding-bottom: 6rem;
}
.news_area .sec_title h2 span{
	color: var(--secondary_main);
}
.link_card{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	position: relative;
	z-index: 1;
	color: #fff !important;
	text-decoration: none;
	overflow: hidden;
	padding: 5rem;
	height: 44.7rem;
}
.link_card::before{
	position: absolute;
	content: '';
	inset: 0;
	z-index: -1;
	background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
	background: -o-linear-gradient(bottom, #000, transparent);
	background: linear-gradient(to top, #000, transparent);
	mix-blend-mode: multiply;
}
.link_card>img{
	position: absolute;
	inset: 0;
	-o-object-fit: cover;
	   object-fit: cover;
	z-index: -2;
	width: 100%;
	height: 100%;
}
.link_card:hover>img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.link_card_content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
}
.link_card_content h3{
	line-height: 1.29;
	text-wrap: balance;
}
.link_icon{
	width: 5rem;
	aspect-ratio: 1/1;
	background-color: #93C020;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border-radius: 50%;
	position: absolute;
	right: 3rem;
	top: 3rem;
	z-index: 2;
}
.link_icon:hover{
	background-color: var(--theme_main);
}
.curved-shape {
	width: 100%;
	height: 18rem;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 250" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 Q500,160 1000,50 L1000,120 Q500,230 0,80 Z" fill="%2390bd25"/><path d="M0,80 Q500,230 1000,120 L1000,190 Q500,300 0,150 Z" fill="%23008a33"/></svg>');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: -10rem;
	z-index: 0;
}

/*agenda area*/
.agenda_area{
	background-color: #83D0F6;
	position: relative;
	padding-top: 3.5rem;
	padding-bottom: 16rem;
}
.curved-shape2 {
	width: 100%;
	height: 18rem;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 250" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 Q500,160 1000,50 L1000,120 Q500,230 0,80 Z" fill="%231F70B7"/><path d="M0,80 Q500,230 1000,120 L1000,190 Q500,300 0,150 Z" fill="%2334A8E0"/></svg>');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: -10rem;
	z-index: 0;
}
.title_wrap{
	max-width: 94rem;
	padding-top: 10rem;
}
.title_wrap p{
	margin-top: 6rem;
	font-weight: 600;
	color: #1F70B7;
}
.title_wrap.sec_title h2{
	text-align: left;
}
.title_wrap.sec_title h2 span{
	background-color: #1F70B7;
	color: #fff;
	-webkit-transform: rotate(-2deg);
	    -ms-transform: rotate(-2deg);
	        transform: rotate(-2deg);
}
.agenda_item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	padding: 3rem 0;
	position: relative;
	z-index: 1;
}
.agenda_item:nth-child(odd)::before{
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: 100vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	background-color: #fff;
	opacity: 0.5;
	z-index: -1;
}
.agenda_item h4{
	font-size: 2.4rem;
	width: 45%;
}
.agenda_item ul{
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 5rem;
	   -moz-column-gap: 5rem;
	        column-gap: 5rem;
}
.agenda_item ul li:nth-child(1){
	min-width: 14.6rem;
}
.agenda_item ul li:nth-child(2){
	min-width: 19.3rem;
}
.agenda_item ul li:nth-child(3){
	min-width: 19.3rem;
}
.agenda_item ul li,
.agenda_item ul li a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
}
.agenda_item ul li a {
	text-decoration: none;
	font-weight: 600;
	color: #1F70B7;
}
.agenda_item ul li a i{
	font-weight: 400;
}
.agenda_item ul li a:hover{
	color: var(--theme_main);
}
.agenda_area .white_btn{
	color: #1F70B7;
}
.apply_card{
	background-color: #fff;
	padding: 5rem;
	max-width: 53rem;
	-webkit-transform: rotate(4deg);
	    -ms-transform: rotate(4deg);
	        transform: rotate(4deg);
	position: absolute;
	top: 0;
	right: 0;
}
.apply_card h3{
	font-size: 4rem;
}
.apply_card p{
	margin-top: 2rem;
}

/*stories area*/
.stories_area{
	background-color: #A21A5B;
	position: relative;
	z-index: 2;
	padding-top: 5.5rem;
}
.curved-shape3 {
	width: 100%;
	height: 18rem;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1000 250" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 Q500,160 1000,50 L1000,120 Q500,230 0,80 Z" fill="%23F5B5D3"/><path d="M0,80 Q500,230 1000,120 L1000,190 Q500,300 0,150 Z" fill="%23E5017E"/></svg>');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: -10rem;
	z-index: 0;
}
.shape{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: -1;
	top: calc(100% - 0.1rem);
	width: 100%;
	height: auto;
}
.stories_card{
	display: block;
	text-decoration: none;
	background-color: #fff;
	height: 100%;
	color: inherit !important;
	position: relative;
}
.stories_card:hover .stories_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.stories_img img{
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 13/10;
}
.stories_content{
	padding: 0 5rem 4rem;
}
.stories_content h3{
	color: #A21A5B;
	line-height: 1.29;
}
.name {
	background-color: var(--dark_main);
	font-size: 2.4rem;
	font-weight: 600;
	padding: 1.4rem 3rem;
	color: #fff;
	display: inline-block;
	line-height: 1.33;
	-webkit-transform: rotate(-2deg);
	    -ms-transform: rotate(-2deg);
	        transform: rotate(-2deg);
	margin-top: -2rem;
	top: -3rem;
	position: relative;
}
.stories_card .link_icon{
	background-color: #E5017E;
}
.stories_card .link_icon:hover{
	background-color: var(--dark_main);
}
.bottom_content{
	max-width: 140rem;
}
.sec_title h2{
	text-align: center;
}
.sec_title h2 span{
	background-color: #fff;
	color: #A21A5B;
	padding: 1.6rem 3.5rem;
	-webkit-transform: rotate(2deg);
	    -ms-transform: rotate(2deg);
	        transform: rotate(2deg);
	display: inline-block;
}

/*cta area*/
.cta_area{
	background-color: var(--theme_main);
	padding: 14vw 0 12rem;
	color: #fff;
	position: relative;
	z-index: 1;
	background-size: cover;
	background-position: center center;
}
.cta_area::before{
	content: '';
	inset: 0;
	position: absolute;
	z-index: -1;
	background-color: var(--theme_main);
	opacity: 0.95;
	mix-blend-mode: multiply;
}
.cta_content{
	max-width: 100rem;
}
.cta_content img{
	width: 15rem;
}
.cta_content h2{
	font-size: 7rem;
	margin-top: 2rem;
}
.cta_area p{
	margin-top: 3rem;
}
/*footer*/
footer{
	padding: 7rem 0 12rem;
	background-color: var(--dark_main);
	color: #fff;
	position: relative;
	z-index: 2;
}
footer ul{
	list-style: none;
	line-height: 2;
	margin-top: 2rem;
}
footer p{
	margin-top: 2.5rem;
	max-width: 42rem;
}
footer p a{
	text-decoration: underline;
	color: #F5B5D3;
}
footer p a:hover{
	color: #fff;
}
footer a{
	color: #fff;
	text-decoration: none;
}
footer a:hover{
	color: var(--theme_main);
}
footer h2{
	padding-bottom: 2rem;
}
.two_list ul{
	-webkit-column-count: 2;
	   -moz-column-count: 2;
	        column-count: 2;
}
.icon_box{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.icon_box a{
	width: 5rem;
	height: 5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #fff;
	border-radius: 50%;
	border: 0.2rem solid #fff;
	position: relative;
	text-decoration: none;
}
.icon_box a:hover {
	background-color: #fff;
	color: var(--dark_main);
}
.icon_box a:not(:last-child){
	margin-right: 1.5rem;
}
.footer_logo{
	display: block;
	max-width: 20rem;
	margin-left: auto;
}
.copyright {
   font-size: 1.8rem;
   margin-top: 12.7rem;
}
footer .button::after{
	display: none;
}

/*inner page*/
.z-2{
	z-index: 2;
}
.inner_home{
	min-height: 55rem;
	max-height: 55rem;
}
.intro_area{
	padding-bottom: 16rem;
	position: relative;
	z-index: 2;
}
.bread_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 1.6rem;
	padding-top: 2rem;
}
.breadcrumb{
	margin-bottom: 0;
}
.breadcrumb li,
.breadcrumb li a,
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active{
	color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
}
.breadcrumb li a:hover{
	color: var(--dark_main);
}
.back_link{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 0.6rem;
	   -moz-column-gap: 0.6rem;
	        column-gap: 0.6rem;
	font-weight: 600;
	text-decoration: none;
}
.back_link:hover{
	color: var(--dark_main) !important;
}
.intro_content p{
	max-width: 140rem;
}
.intro_content p:not(:first-child){
	margin-top: 3.5rem;
}
.intro_content h1{
	font-size: 5rem;
}
.intro_content .col-lg-8 p,
.intro_content .col-lg-8 ul,
.intro_content .col-lg-8 ol{
	max-width: 100rem;
}
.green h1,
.green h4,
.green .back_link{
	color: var(--secondary_main);
}
.theme_text h1,
.theme_text h4,
.theme_text .back_link{
	color: var(--theme_main);
}
.red h1,
.red h4,
.red .back_link{
	color: #A21A5B;
}
.blue h1,
.blue h4,
.blue .back_link{
	color: #1F70B7;
}
.gap_60{
	--bs-gutter-x: 6rem;
	--bs-gutter-y: 6rem;
}
.marquee1 + .container{
	margin-top: 5rem;
}
.pagination_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 15rem;
	   -moz-column-gap: 15rem;
	        column-gap: 15rem;
}
.pagination_wrap>a{
	color: #fff;
	font-size: 2.5rem;
	text-decoration: none;
}
.pagination_wrap>a:hover{
	color: var(--dark_main);
}
.pagination_wrap ul{
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 1rem;
}
.pagination_wrap ul li a{
	height: 4rem;
	width: 4rem;
	font-weight: 600;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border: 0.1rem solid #fff;
	color: #fff;
	text-decoration: none;
	border-radius: 50%;
}
.pagination_wrap ul li a:hover,
.pagination_wrap ul li a.active{
	background-color: #fff;
	color: var(--secondary_main);
}
.sidebar{
	margin-top: 15rem;
}
.share_wrap h4{
	font-size: 2.4rem;
}
.share_wrap .icon_box a{
	color: var(--dark_main);
	border-color: var(--dark_main);
}
.share_wrap .icon_box a:hover{
	background-color: var(--dark_main);
	color: #fff;
}
.intro_area.theme_text{
	padding-bottom: 10rem;
}
.stories_img iframe{
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	height: auto;
	aspect-ratio: 4.5/3;
	display: block;
}
.agenda_area.z-2 .title_wrap.sec_title h2{
	text-align: center;
}
.filter_wrap{
	position: relative;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 8rem;
	   -moz-column-gap: 8rem;
	        column-gap: 8rem;
	padding: 3rem 0;
}
.filter_wrap h4{
	color: #1F70B7;
	pointer-events: none;
	font-size: 2.6rem;
}
.filter_wrap::before{
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: 100vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: -1;
	background-color: #fff;
}
.filter_content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 10rem;
	   -moz-column-gap: 10rem;
	        column-gap: 10rem;
	width: 100%;
}
.filter_item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
}
.filter_content .button{
	border-radius: 0;
	margin-left: auto;
}
.filter_content .button::after{
	display: none;
}
.nice-select {
	background-color: rgba(0, 0, 0, 0.1);
	float: none;
	height: 5rem;
	border: none;
	border-radius: 0;
	font-size: 2rem;
	font-weight: 600;
	line-height: 5rem;
	padding: 0 5rem 0 2.7rem;
}
.nice-select:after {
	border-bottom: 0.2rem solid #000;
	border-right: 0.2rem solid #000;
	height: 0.7rem;
	margin-top: -0.4rem;
	right: 2rem;
	width: 0.7rem;
}
.nice-select.open .list{
	min-width: 100%;
	border-radius: 0;
	margin-top: 0;
}
.input {
	background-color: rgba(0, 0, 0, 0.1);
	height: 5rem;
	border: none;
	border-radius: 0;
	font-size: 2rem;
	font-weight: 600;
	line-height: 5rem;
	padding: 0 2.7rem;
}
.input span{
	margin-right: 2rem;
}
.input input{
	border: none;
	background-color: transparent;
	padding: 0;
	width: 14rem;
}