@charset "utf-8";
/* CSS Document */

:root{
	--black : #000000;
	--primary: #8FA4F7;
	--orange: #F09941;
	--white: #FFFFFF;
	--mute: #E9E9E9;
}

/*---------- Google Fonts ----------*/
body{
	font-family: 'Prelo Slab';
	font-weight: 400;
	font-size: 17px;
	color: var(--white);
	background-color: var(--black);
}

figure {
	margin: 0;
}

strong,
b {
	font-weight: 700 !important;
}

a,
input,
button,
textarea { outline: none !important; }

a {
	text-decoration: none;
	color: #16a1cc;
	word-break: break-word;
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

a:hover {
	color: #0a4557;
}

p {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin-bottom: 20px;
}

ol,
ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
	margin-top: 10px;
	margin-bottom: 10px;
}

ol li,
ul li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ol li::marker,
ul li::marker {
	color: #16a1cc;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row > * {
	padding-left: 15px;
	padding-right: 15px;
}

.alignnone {
	float: none;
	margin: 20px;
}

.alignleft {
	float: left;
	margin: 20px 20px 20px 0;
}

.alignright {
	float: right;
	margin: 20px 0 20px 20px;
}

.aligncenter {
	float: none;
	display: block;
	margin: 20px auto;
}

blockquote {
	padding-left: 30px;
	border-left: 5px solid #16a1cc;
	margin-bottom: 20px;
}

blockquote * {
	font-size: 18px;
	line-height: 133%;
}


h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

.weight-400 {
	font-weight: 400 !important;
}

.weight-500 {
	font-weight: 500 !important;
}

.weight-600 {
	font-weight: 600 !important;
}

.weight-700 {
	font-weight: 700 !important;
}

/* page-main-title */

.page-title {
	
}

.page-title * {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-decoration: none;
	margin-bottom: 0;
}

.page-title a:hover {
	color: #16a1cc;
}
/* page-main-title */

/* main-title */

.main-title * {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-decoration: none;
	margin-bottom: 0;
}

.main-title a:hover {}
/* main-title */

/* section-title */
.section-title {}

.section-title * {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-decoration: none;
	margin-bottom: 0;
}

.section-title a:hover {
	color: #16a1cc;
}
/* section-title */

/* block-title */
.block-title * {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-decoration: none;
	margin-bottom: 0;
}

.block-title a:hover {}
/* block-title */

/* buttons */
.btn {}


.btn-simple-sky:active,
.btn-simple-sky:focus {}

.btn-simple-sky:active:focus,
.btn-simple-sky:hover {}

/* buttons */

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header {
	position: relative;
	background: var(--black);
	z-index: 9;
}

.header .h-content{
	padding: 58px 0;
}

.navbar {
	padding: 0;
}


.navbar .navbar-brand {
	height: 76px;
	padding: 0;
	margin: 0;
}

.navbar .navbar-brand *{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.navbar-toggler {
	width: 30px;
	height: 22px;
	padding: 0;
	box-shadow: none !important;
	border: none;
}

.navbar-toggler .hamburger {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

.navbar-toggler .hamburger-toggle {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.navbar-toggler .hamburger span {
	width: 100%;
	height: 2px;
	background-color: var(--white);
	position: relative;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.navbar-toggler .hamburger span:first-child {
	top: 10px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.navbar-toggler .hamburger span:nth-child(2) {
	opacity: 0;
}

.navbar-toggler .hamburger span:last-child {
	margin: 0;
	top: -10px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.navbar-toggler.collapsed .hamburger span {
	opacity: 1 !important;
	top: auto !important;
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
}

.navbar .navbar-collapse {
	justify-content: flex-end;
}

.navbar-nav {
	margin: 0;
}

.navbar-nav .nav-item {
	margin: 0 41px;
}

.navbar-nav .nav-item:first-child {
	margin-left: 0;
}

.navbar-nav .nav-item:last-child {
	margin-right: 0;
}

.navbar-nav .nav-item .nav-link {
	font-family: 'Afacad Flux';
	display: flex;
	align-items: center;
	position: relative;
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: var(--mute);
	padding: 0;
	word-wrap: break-word;
}


.navbar-nav .dropdown > .dropdown-toggle:hover,
.navbar-nav .dropdown:hover > .dropdown-toggle,
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item.current-menu-item .nav-link,
.navbar-nav .nav-item.current-menu-parent .nav-link,
.navbar-nav .nav-item.current_page_parent .nav-link,
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.current-menu-item,
.navbar-nav .nav-item .nav-link.current-menu-parent,
.navbar-nav .nav-item .nav-link.current_page_parent,
.navbar-nav .nav-item .nav-link:hover {
	color: var(--orange);
}


.navbar-nav .dropdown .dropdown-toggle:after {
	content: "\f107";
	font-family: 'FontAwesome6FreeSolid900';
	border: none;
	transition: transform 0.4s;
	-webkit-transition: transform 0.4s;
	-moz-transition: transform 0.4s;
	-ms-transition: transform 0.4s;
	-o-transition: transform 0.4s;
}

.navbar-nav .dropstart .dropdown-toggle:before,
.navbar-nav .dropend .dropdown-toggle:after {
	content: "\f107";
	font-family: 'FontAwesome6FreeSolid900';
	border: none;
}

.navbar-nav .dropdown .dropdown-menu {
	border: none;
	padding: 0;
	margin: 0;
	background: #16a1cc;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.navbar-nav .dropdown .dropdown-menu li .dropdown-item {
	font-size: 16px;
	line-height: 133%;
	padding: 10px 25px;
	color: #ffffff;
	word-wrap: break-word;
}


.navbar-nav .dropdown .dropdown-menu li.active > .dropdown-item,
.navbar-nav .dropdown .dropdown-menu li.current-menu-item > .dropdown-item,
.navbar-nav .dropdown .dropdown-menu li.current-menu-parent > .dropdown-item,
.navbar-nav .dropdown .dropdown-menu li.current_page_parent > .dropdown-item,
.navbar-nav .dropdown .dropdown-menu li .dropdown-item.active,
.navbar-nav .dropdown .dropdown-menu li .dropdown-item.current-menu-item,
.navbar-nav .dropdown .dropdown-menu li .dropdown-item.current-menu-parent,
.navbar-nav .dropdown .dropdown-menu li .dropdown-item.current_page_parent,
.navbar-nav .dropdown .dropdown-menu li .dropdown-item:hover {
	color: #0a4557;
	background: #ffffff;
}
/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/

.content{
	overflow-x: hidden;
}


/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/
/* hero-section */
.hero-section{
	position: relative;
	padding: 200px 0 110px;
}

.hero-section::after{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -84px;
	right: 0;
	left: 0;
	height: 484px;
	background: linear-gradient(180.00deg, #d9d9d900 0%, #000000 83.65%);
	z-index: 1;
}

.hero-section .hero-bg{
	position: absolute;
	top: -80px;
	right: 0;
	left: -90px;
	bottom: 0;
	z-index: 0;
}

.hero-section .hero-bg *{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-section .main-title *{
	font-size: 65px;
	font-weight: 600;
	line-height: 160%;
	letter-spacing: 2.60px;
	color: var(--white);
}

.hero-section .hero-banner-detils{
	position: relative;
	z-index: 2;
}

.hero-section .date *{
	font-size: 140px;
	font-weight: 900;
	line-height: 80%;
	color: var(--primary);
	letter-spacing: 5.60px;
	display: inline-block;
}

.hero-section .block-title *{
	font-size: 50px;
	font-weight: 500;
	font-style: italic;
	line-height: 70%;
}

.hero-section .hero-logo{
	max-width: 534px;
	margin-top: 62px;
}
.hero-section .hero-logo *{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
/* hero-section */

/* conference-about-section */
.conference-about-section{
	padding: 90px 0 410px;
	position: relative;
	z-index: 1;
}

.conference-about-section .bg{
	position: absolute;
	top: 0;
	bottom: 0;
	left: -153px;
	right: -112px;
	z-index: 0;
}

.conference-about-section .bg *{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.conference-about-section::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 400px;
	background: linear-gradient(180.00deg, #d9d9d900 0%, #000000 83.65%);
	transform: rotate(180deg);
	z-index: 2;
}

.conference-about-section .shape-1{
	position: absolute;
    top: 50px;
    left: -10px;
    max-width: 522px;
	z-index: 1;
}

.conference-about-section .shape-1 *{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.conference-about-section .conference-about-content{
	position: relative;
	z-index: 3;
}

.conference-about-section .conference-about-content *{
	font-weight: 500;
	font-size: 30px;
	font-style: italic;
	color: var(--white);
}

.conference-about-section .conference-about-content p{
	margin-bottom: 36px;
}

.conference-about-section .conference-about-content p:last-child{
	margin-bottom: 0;
}

.conference-about-section .conference-about-content strong{
	font-weight: 900 !important;
}

.conference-about-section .conference-about-content span{
	color: var(--orange) !important;
}

.conference-about-section .conference-about-content span *{
	color: inherit;
}
/* conference-about-section */

/* video-section */
.video-section{
	position: relative;
	padding: 50px 0 135px;
	z-index: 1;
}

.video-and-detils-section .bg{
	position: absolute;
	top: 260px;
	bottom: 0;
	left: -112px;
	right: -190px;
}

.video-and-detils-section{
	position: relative;
}

.video-and-detils-section .bg *{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-section .video-player{
	height: 572px;
}

.video-section .video-player *{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.video-section .video-section-main{
	position: relative;
}

.video-section .large-detils >*{
	font-family: 'Prelo Slab';
	font-weight: bold;
    font-style: italic;
	margin-bottom: 32px;
}

.video-section .floting-icon-1{
	position: absolute;
	top: -580px;
	left: 0;
	max-width: 939px;
}

.video-section .floting-icon-1 *{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.video-section .floting-icon-2{
	position: absolute;
	max-width: 739px;
	top: -450px;
	right: 0px;
}

.video-section .floting-icon-2 *{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-section .video-player-wrapper{
	position: relative;
	overflow: hidden;
}

.video-section .video-player-wrapper .player-control{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.video-section .video-player-wrapper::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(217, 217, 217, .5);
	user-select: none;
}

.video-section .video-player-wrapper.active::after{
	opacity: 0;
}

.play-icon,
.pause-icon {
    cursor: pointer;
    pointer-events: auto;
}

.pause-icon {
    display: none;
}
/* video-section */
/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/

/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer{
	/* overflow: hidden; */
	padding: 135px 0 138px;
	position: relative;
}

.footer .floting-icon-1{
	position: absolute;
	bottom: 0px;
	right: 0px;
	max-width: 792px;
}

.footer .floting-icon-2{
	position: absolute;
	top: -270px;
	left: 0px;
	max-width: 383px;
}

.footer .floting-icon-2 *{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.footer .floting-icon-1 *{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer .f-wraper{
	max-width: 1050px;
	margin: 0 auto;
	display: flex;
	position: relative;
	z-index: 2;
	justify-content: space-between;
}

.footer .f-wraper .f-logo-block{
	max-width: 315px;
}

.footer .f-wraper .f-logo-block *{
	width: 100%;
	object-fit: cover;
	display: inline-block;
}

.footer .f-wraper .f-navigation ul li{
	color: var(--white);
	font-size: 17px;
	font-weight: 900;
	margin-bottom: 13px;
}

.footer .f-wraper .f-navigation ul li:last-child{
	margin-bottom: 0;
}

.footer .f-wraper .f-navigation ul li *{
	color: inherit;
	font-size: inherit;
}

.footer .f-wraper ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.footer .f-wraper .contact a{
	color: var(--white);
}

.footer .f-wraper .contact a:hover{
	color: var(--orange);
}

.footer .f-wraper .contact p:last-child{
	margin-bottom: 0;
}

.footer .f-wraper .contact{
	max-width: 268px;
}

.footer .f-wraper .f-navigation ul li a:hover{
	color: var(--orange);
}

.footer .f-wraper .social-icons ul{
	display: flex;
	gap: 16px;
}

.footer .f-wraper .social-icons ul li a{
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-block;
	display:flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	background: var(--orange);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.footer .f-wraper .social-icons ul li a:hover{
	background: var(--primary);
}
/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/
