@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
/*  font-family: "DM Serif Display", serif; */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
/*  font-family: "Poppins", sans-serif; */


:root {
	--white: #fff;
	--green: #749218;
	--yellow: #FF9F00;
	--black: #000000;
	--grey: #d9d9dd;
	--grey1: #757575;
}

body {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	background-color: var(--white);
	color: var(--black);
}

figure {
	margin: 0;
	display: flex;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	text-decoration: none;
	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;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

p {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	font-weight: inherit;
	margin: 0;
}

p a {
	text-decoration: none;
	color: inherit;
}

p a:hover {
	color: var(--green);
}

ul li,
ol li {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ul li a,
ol li a {
	text-decoration: none;
	color: inherit;
}

ul li a:hover,
ol li a:hover {
	color: var(--green);
}

/* For most modern browsers */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


/* Common Style Start */
.banner-title {
	font-family: "DM Serif Display", serif;
	font-size: 110px;
	line-height: 120px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--white);
}

.banner-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.inner-banner-title {
	font-family: "DM Serif Display", serif;
	font-size: 80px;
	line-height: 90px;
	font-weight: 400;
	text-transform: uppercase;
}

.inner-banner-title * {
	text-shadow: 0px 10px 10px rgba(0, 0, 0, 0.60);
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.section-title {
	font-family: "DM Serif Display", serif;
	font-size: 36px;
	line-height: 46px;
	font-weight: 400;
}

.section-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

.block-title {
	color: #FFF;
	font-size: 30px;
	font-weight: 700;
	line-height: 133%;
	text-transform: uppercase;
}

.block-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

.sub-title {
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	color: var(--green);
	text-transform: uppercase;
}

.sub-title * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

.common-detail {
	font-size: 16px;
	line-height: 24px;
}

.common-detail strong {
	font-weight: 600;
}

.common-detail * {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	margin: 0;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	padding: 16px 23px;
	border: none;
	text-transform: uppercase;
	letter-spacing: 1.6px;
	-moz-box-shadow: 0px 10px 20px 0px rgba(58, 55, 64, 0.30);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(58, 55, 64, 0.30);
	box-shadow: 0px 10px 20px 0px rgba(58, 55, 64, 0.30);
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.btn-white {
	background-color: var(--white);
	color: var(--green);
}

.btn-white span {
	background: linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.btn-white:hover span {
	color: var(--white);
	background: none;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: var(--white);
}

.btn-white:hover,
.btn-white:active {
	background-color: var(--green) !important;
	color: var(--white) !important;
}

.btn-white-border {
	padding: 12px 20px;
	border: 4px solid var(--white);
	color: var(--white);
	background-color: transparent;
}

.btn-white-border:hover,
.btn-white-border:active {
	background-color: var(--green) !important;
	color: var(--white) !important;
}

.btn-gradient {
	background-size: 200% auto;
	background-image: -moz-linear-gradient(270deg, #FF9F00 0%, #749218 50%, #FF9F00 100%);
	background-image: -webkit-linear-gradient(270deg, #FF9F00 0%, #749218 50%, #FF9F00 100%);
	background-image: linear-gradient(270deg, #FF9F00 0%, #749218 50%, #FF9F00 100%);
	color: var(--white);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.btn-gradient:hover {
	background-position: right center;
	color: var(--white);
}

.btn-gradient-border {
	border: none;
	position: relative;
	padding: 15px 24px;
	font-weight: bold;
	font-size: 16px;
	color: transparent;
	background: -moz-linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	background: -webkit-linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	background: linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	-webkit-background-clip: text;
	background-clip: text;
	text-align: center;
	text-decoration: none;
}

.btn-gradient-border::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 4px;
	background: -moz-linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	background: -webkit-linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	background: linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.btn-gradient-border:hover {
	background: -moz-linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	background: -webkit-linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	background: linear-gradient(270deg, #749218 0%, #FF9F00 100%);
	color: var(--white);
}

.slick-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	box-shadow: 0px 10px 20px rgba(44, 43, 47, 0.50);
	background: var(--white);
	position: absolute;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	cursor: pointer;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.slick-arrow:hover svg path {
	fill: var(--yellow);
}

/* Common Style End */

/* wordpress form error */
.invalid .wpcf7-response-output {
	margin: 5px 0 0 !important;
	padding: 0 !important;
	border: none !important;
	color: red;
}

.sent .wpcf7-response-output {
	margin: 5px 0 0 !important;
	padding: 0 !important;
	border: none !important;
	color: green;
}

.wpcf7-not-valid-tip {
	color: red;
}

.wpcf7-spinner {
	position: absolute;
}

/* wordpress form error */


/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: 50px 0 0;
	z-index: 99;
}

.header .navbar {
	padding: 0;
}

.header .navbar-brand {
	padding: 0;
	margin: 0;
	max-width: 310px;
	width: 100%;
}

.header-btn {
	margin-left: auto;
	display: flex;
}

.header-btn .btn-white {
	margin: 0 22px 0 0;
}

.header .navbar-toggler {
	padding: 0;
	border: none;
	box-shadow: none;
	margin: 0 0 0 20px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.header .navbar-toggler span {
	width: 24px;
	height: 2px;
	margin-bottom: 5px;
	display: block;
	background-color: var(--white);
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.header .navbar-toggler span:last-child {
	margin-bottom: 0;
}

.header .navbar-collapse {
	display: block;
	max-width: 615px;
	width: 100%;
	background-color: var(--white);
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	height: 100vh;
	padding: 60px 0;
	overflow: auto;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

/* .collapse:not(.show) {
	display: flex !important;
} */

.header .navbar-collapse.show {
	right: 0;
	height: auto;
}

.navbar-nav {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}

.menu-shape-right {
	position: absolute;
	right: 0;
	z-index: 99;
	top: 50%;
	transform: translateY(-30%);
	-webkit-transform: translateY(-30%);
	-moz-transform: translateY(-30%);
	-ms-transform: translateY(-30%);
	-o-transform: translateY(-30%);
}

.menu-shape-left {
	position: absolute;
	left: 0;
	z-index: 99;
	bottom: 0;
}

.navbar-nav .dropdown .dropdown-toggle.show {
	background: rgba(116, 146, 24, 0.1);
	color: var(--green) !important;
}

.navbar-nav .dropdown .dropdown-toggle.nav-link.show::before {
	height: 100%;
}

.navbar-nav .dropdown .dropdown-toggle {
	position: relative;
}

.navbar-nav .dropdown-menu {
	border: none;
	padding-left: 0;
}

.navbar-nav .dropdown-menu .dropdown-item {
	position: relative;
	color: var(--black);
	font-size: 18px;
	font-weight: 500;
	line-height: 18px;
	text-transform: capitalize;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	padding-left: 60px;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
	background: rgba(116, 146, 24, 0.1) !important;
	color: #749218;
}

.navbar-nav .dropdown-menu .dropdown-item::before {
	position: absolute;
	content: "";
	background: #749218;
	width: 3px;
	height: 0;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.navbar-nav .dropdown-menu .dropdown-item:hover::before {
	height: 100%;
}

.navbar-nav .dropdown-menu .nav-item.current-menu-item .dropdown-item {
	background: rgba(116, 146, 24, 0.1) !important;
	color: #749218;
}

.navbar-nav .dropdown-menu .nav-item.current-menu-item .dropdown-item::before {
	height: 100%;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
	background: none;
}

.navbar-nav .dropdown-menu li:not(:last-child) {
	margin-bottom: 10px;
}

.header .navbar-nav .nav-item {
	margin: 0 0 10px;
}

.header .navbar-nav .nav-item:last-child {
	padding-bottom: 0;
}

.header .navbar-nav .nav-item .nav-link {
	position: relative;
	font-size: 22px;
	line-height: 22px;
	padding: 0;
	color: var(--grey1);
	display: block;
	padding: 12px 20px 12px 45px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	z-index: 999;
}

.header .navbar-nav .nav-item .nav-link::before {
	position: absolute;
	content: "";
	background: #749218;
	width: 3px;
	height: 0;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.header .navbar-nav .nav-item .nav-link:hover::before {
	height: 100%;
}

.header .navbar-nav .nav-item .nav-link:hover {
	background: rgba(116, 146, 24, 0.1);
	color: #749218;
}

.header .navbar-nav .nav-item.current-menu-item .nav-link {
	background: rgba(116, 146, 24, 0.1);
	color: #749218;
}

.header .navbar-nav .nav-item.current-menu-item .nav-link::before {
	height: 100%;
}

.close-menu-block {
	padding: 1px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: linear-gradient(87deg, #FF9F00 0%, #749218 100%);
	position: absolute;
	z-index: 99999;
	top: 30px;
	right: 20px;
	cursor: pointer;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.close-menu {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFF;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

html {
	position: relative;
}

html.overlay {
	padding-right: 17px;
}

html.overlay::before {
	position: fixed;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 99;
}

.dropdown-toggle::after {
	border: none;
	background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%229%22%20viewBox%3D%220%200%2017%209%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M16.281%201.28104L8.78104%208.78104C8.71139%208.85077%208.62867%208.90609%208.53762%208.94384C8.44657%208.98158%208.34898%209.00101%208.25042%209.00101C8.15186%209.00101%208.05426%208.98158%207.96321%208.94384C7.87216%208.90609%207.78945%208.85077%207.71979%208.78104L0.219792%201.28104C0.0790615%201.14031%200%200.94944%200%200.750417C0%200.551394%200.0790615%200.360522%200.219792%200.219792C0.360523%200.0790612%200.551394%200%200.750417%200C0.94944%200%201.14031%200.0790612%201.28104%200.219792L8.25042%207.1901L15.2198%200.219792C15.2895%200.150109%2015.3722%200.0948337%2015.4632%200.0571218C15.5543%200.0194098%2015.6519%200%2015.7504%200C15.849%200%2015.9465%200.0194098%2016.0376%200.0571218C16.1286%200.0948337%2016.2114%200.150109%2016.281%200.219792C16.3507%200.289474%2016.406%200.3722%2016.4437%200.463245C16.4814%200.554289%2016.5008%200.651871%2016.5008%200.750417C16.5008%200.848963%2016.4814%200.946545%2016.4437%201.03759C16.406%201.12863%2016.3507%201.21136%2016.281%201.28104Z%22%20fill%3D%22%23749218%22%2F%3E%3C%2Fsvg%3E');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 16px;
	height: 9px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.dropdown-toggle.show::after {
	top: 50%;
	transform: rotate(180deg) translateY(25%);
	-webkit-transform: rotate(180deg) translateY(25%);
	-moz-transform: rotate(180deg) translateY(25%);
	-ms-transform: rotate(180deg) translateY(25%);
	-o-transform: rotate(180deg) translateY(25%);
}

/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/



/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

/*========== Home Page Start ==========*/
.banner-wrp {
	position: relative;
	z-index: 9;
	padding: 229px 0 196px;
}

.banner-wrap-overlay {
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.inner-banner-wrp {
	padding: 150px 0 100px;
}

.banner-wrp::after {
	content: "";
	background-color: var(--black);
	opacity: 0.3;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.banner-right-img {
	max-width: 326px;
	height: 498px;
	width: 100%;
	margin: 0 0 0 auto;
	position: relative;
	z-index: 9;
	border-radius: 170px;
	-webkit-border-radius: 170px;
	-moz-border-radius: 170px;
	-ms-border-radius: 170px;
	-o-border-radius: 170px;
}

.banner-right-img figure,
.banner-right-img img {
	height: 100%;
	object-fit: cover;
}

.play-icon {
	cursor: pointer;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.banner-right-img::before {
	content: "";
	border: 2px solid var(--grey);
	position: absolute;
	left: -80px;
	right: 80px;
	top: -80px;
	bottom: 80px;
	z-index: -1;
	border-radius: 170px;
	-webkit-border-radius: 170px;
	-moz-border-radius: 170px;
	-ms-border-radius: 170px;
	-o-border-radius: 170px;
}

.banner-right-img img {
	border-radius: 170px;
	-webkit-border-radius: 170px;
	-moz-border-radius: 170px;
	-ms-border-radius: 170px;
	-o-border-radius: 170px;
}

.banner-main .row {
	align-items: flex-end;
}

.inner-banner-wrp .banner-main .row {
	align-items: center;
}

.banner-content {
	color: var(--white);
	margin: 0 0 30px;
}

.banner-content>h4 {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
	margin: 0 0 20px;
	text-transform: uppercase;
	text-shadow: 0px 20px 20px rgba(0, 0, 0, 0.50), 0px 10px 10px rgba(0, 0, 0, 0.60);
}

.banner-content .banner-title {
	margin: 0 0 30px;
	text-shadow: 0px 10px 10px rgba(0, 0, 0, 0.60);
}

.banner-content .common-detail {
	max-width: 710px;
	width: 100%;
	margin: 0 0 30px;
}

.banner-btn {
	display: flex;
}

.banner-btn .btn-gradient {
	margin: 0 22px 0 0;
}

.banner-right {
	max-width: 406px;
	width: 100%;
	margin-left: auto;
	position: relative;
}

.inner-banner-wrp .banner-right {
	margin-right: -30px;
	top: 50px;
}

.inner-banner-wrp .banner-right {
	transform: scale(0.8);
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
}

.banner-right::before {
	content: "";
	background: -moz-linear-gradient(180deg, rgba(116, 146, 24, 0.00) 3.37%, #749218 100%);
	background: -webkit-linear-gradient(180deg, rgba(116, 146, 24, 0.00) 3.37%, #749218 100%);
	background: linear-gradient(180deg, rgba(116, 146, 24, 0.00) 3.37%, #749218 100%);
	width: 116px;
	height: 178px;
	position: absolute;
	left: -36px;
	top: -144px;
	border-radius: 170px;
	-webkit-border-radius: 170px;
	-moz-border-radius: 170px;
	-ms-border-radius: 170px;
	-o-border-radius: 170px;
}

.banner-right::after {
	content: "";
	background: -moz-linear-gradient(180deg, rgba(255, 153, 0, 0.00) 3.37%, #F90 100%);
	background: -webkit-linear-gradient(180deg, rgba(255, 153, 0, 0.00) 3.37%, #F90 100%);
	background: linear-gradient(180deg, rgba(255, 153, 0, 0.00) 3.37%, #F90 100%);
	width: 116px;
	height: 178px;
	position: absolute;
	left: 22px;
	bottom: 39px;
	border-radius: 170px;
	-webkit-border-radius: 170px;
	-moz-border-radius: 170px;
	-ms-border-radius: 170px;
	-o-border-radius: 170px;
}

.banner-shape {
	position: absolute;
	top: 141px;
	right: -17px;
}

/* sign-up-section */
.sign-up-section {
	position: relative;
	padding: 70px 0;
	background: var(--yellow);
}

.left-top-gradient-shape {
	position: absolute;
	top: 0;
	left: 0;
}

.bottom-right-gradient-shape {
	position: absolute;
	content: "";
	bottom: 0;
	right: 0;
}

.sign-up-left-part .common-detail {
	margin: 30px 0 0;
	width: 100%;
	max-width: 583px;
}

.sign-up-content .row {
	align-items: center;
}

.sign-up-right-part {
	width: 100%;
	max-width: 563px;
	margin-left: auto;
}

.common-form .form-group {
	margin-bottom: 20px;
}

.common-form .form-group .form-control {
	padding: 12px 20px;
	border-radius: 3px;
	border: 1px solid #F7F8F9;
	background: var(--white);
	box-shadow: 0px 1px 4px 0px rgba(18, 25, 97, 0.08);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.common-form .form-group .form-control::placeholder {
	color: rgba(0, 0, 0, 0.4);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.common-form .submit-btn .btn {
	background: linear-gradient(87deg, #000 0%, #749218 102.89%);
	box-shadow: 0px 10px 20px 0px rgba(58, 55, 64, 0.30);
	padding: 13px 38px;
	color: var(--white);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.common-form .submit-btn .btn:hover {
	background: linear-gradient(270deg, #000 0%, #749218 102.89%);
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

/* sign-up-section */

/* gcg common section */
.gcg-common-section {
	padding: 120px 0;
}

.gcg-common-part .row {
	align-items: center;
}

.gcg-common-speaker-detail-section .gcg-common-part .row {
	align-items: flex-start;
}

.gcg-common-diffrent-section .gcg-common-part .row {
	flex-direction: row-reverse;
}

.gcg-common-speaker-detail-section .gcg-common-detail .common-detail a {
	color: var(--green);
}

.gcg-common-speaker-detail-section .gcg-common-detail .common-detail a:hover {
	color: var(--yellow);
}

.gcg-common-image {
	height: 390px;
	margin: 0 -20px 0 0;
}

.gcg-common-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gcg-common-image img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.gcg-common-detail {
	width: 100%;
	max-width: 607px;
	margin-left: auto;
}

.gcg-common-speaker-detail-section .gcg-common-detail {
	max-width: 90%;
	text-align: justify;
}

.gcg-common-speaker-detail-section .gcg-common-image {
	position: relative;
	margin: 0;
}

.gcg-common-speaker-detail-section .gcg-common-image::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.9;
	background: linear-gradient(203deg, rgba(255, 159, 0, 0.00) 59.09%, #FF9F00 84.35%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.gcg-common-detail .sub-title {
	margin-bottom: 10px;
	display: block;
}

.gcg-common-speaker-detail-section .gcg-common-detail ol li:not(:last-child) {
	margin-bottom: 10px;
}

.gcg-common-speaker-detail-section .gcg-common-detail .sub-title {
	margin: 10px 0 0;
}

.gcg-common-detail .common-detail {
	margin: 15px 0 0;
}

.gcg-common-detail .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.gcg-common-detail .common-detail strong {
	font-weight: 600;
}

.gcg-common-btn {
	margin: 20px 0 0;
}

.gcg-common-btn .btn {
	padding: 13px 15px;
}

.gcg-common-content>*:not(:last-child) {
	margin-bottom: 80px;
}

.gcg-common-content>*:nth-child(even) .row {
	flex-direction: row-reverse;
}

.gcg-common-diffrent-section .gcg-common-content>*:nth-child(even) .row {
	flex-direction: row;
}

.gcg-common-content>*:nth-child(even) .gcg-common-detail {
	margin-left: 0;
}

.gcg-common-diffrent-section .gcg-common-content>*:nth-child(odd) .gcg-common-detail {
	margin-left: 0;
}

.gcg-common-diffrent-section .gcg-common-content>*:nth-child(even) .gcg-common-detail {
	margin-left: auto;
}

.gcg-common-content>*:nth-child(even) .gcg-common-image {
	margin: 0 0 0 -20px;
}

.gcg-common-diffrent-section .gcg-common-content>*:nth-child(odd) .gcg-common-image {
	margin: 0 0 0 -20px;
}

.gcg-common-diffrent-section .gcg-common-content>*:nth-child(even) .gcg-common-image {
	margin: 0 -20px 0 0;
}

.gcg-common-block {
	position: relative;
}

.common-gcg-vector-shape {
	position: absolute;
	left: -47px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.common-gcg-vector-shape.hide-shape {
	display: none;
}

.gcg-common-content>*:nth-child(even) .common-gcg-vector-shape {
	left: auto;
	right: -47px;
}

.gcg-common-diffrent-section .gcg-common-content>*:nth-child(odd) .common-gcg-vector-shape {
	left: auto;
	right: -47px;
}

.gcg-common-diffrent-section .gcg-common-content>*:nth-child(even) .common-gcg-vector-shape {
	left: -47px;
}

/* gcg common section */

/* content theme section */
.content-theme-section {
	padding: 70px 0;
	background: rgba(0, 0, 0, 0.05);
}

.content-theme-content {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}

.content-theme-new-section .content-theme-content {
	max-width: 1321px;
}

.content-theme-detail {
	position: relative;
	margin-top: 7px;
}

.common-light-vector-img {
	position: absolute;
	top: -25px;
	left: -223px;
	opacity: 0.1;
	z-index: -1;
}

.content-theme-new-section .common-light-vector-img {
	left: -133px;
}

.common-light-vector-img.hide-shape {
	display: none;
}

.content-theme-detail .sub-title {
	display: block;
	margin-bottom: 10px;
}

.content-theme-detail .section-title {
	width: 100%;
	max-width: 352px;
}

.content-theme-new-section .section-title {
	max-width: 556px;
}

.content-theme-detail .common-detail {
	margin: 28px 0 0;
}

.content-theme-btn {
	margin: 30px 0 0;
}

.content-theme-right-part {
	width: 100%;
	max-width: 330px;
	margin-left: auto;
}

.content-theme-new-section .content-theme-right-part {
	max-width: 685px;
	margin-left: auto;
}

.content-theme-sub-title {
	display: block;
	color: var(--black);
	font-size: 24px;
	font-weight: 500;
	line-height: 36px;
}

.content-theme-list {
	margin: 20px 0 0;
}

.content-theme-new-section .content-theme-list {
	margin: 0;
}

.content-theme-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.content-theme-list ul li {
	position: relative;
	color: var(--black);
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	padding-left: 20px;
}

.content-theme-list ul li:not(:last-child) {
	margin-bottom: 15px;
}

.content-theme-list ul li::before {
	position: absolute;
	content: "";
	background-image: url('../images/plus.svg');
	background-size: cover;
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.content-theme-new-section .content-theme-right-part {
	position: relative;
}

.content-theme-new-section .content-theme-right-part::after {
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0.1);
	width: 1px;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
}

/* content theme section */

/* featured-new-section */
.featured-new-section {
	overflow: hidden;
}

.featured-new-section .featured-right-part .common-detail ul {
	padding-left: 50px;
}

.featured-new-section .featured-right-part .common-detail ul li {
	margin-bottom: 20px;
}

/* .featured-new-section .featured-right-part .common-detail p {
	display: flex;
} */

.featured-new-section .featured-right-part .common-detail p span {
	padding-left: 20px;
	margin-top: -3px;
	margin-right: 5px;
	display: inline-block;
}

.featured-new-section .featured-right-part .common-detail p:not(:last-child) {
	margin-bottom: 20px;
}

.featured-new-section .featured-part-block {
	padding: 50px 0;
}

.featured-new-section .featured-triangle-vector {
	top: -33px;
}

.featured-new-part-wrp {
	background: rgba(0, 0, 0, 0.05);
}

.featured-new-section>*:nth-child(even) .featured-part-block .row {
	flex-direction: row-reverse;
}

.featured-new-section>*:nth-child(even) {
	background: #FFF;
}

.featured-new-section .featured-right-part {
	margin-left: auto;
	max-width: 600px;
}

.featured-new-section .featured-right-part .common-detail>* {
	padding-left: 0;
}

.featured-new-section>*:nth-child(even) .featured-left-part {
	width: 100%;
	max-width: 550px;
	margin-left: auto;
	text-align: right;
	padding-right: 15px;
}

.featured-new-section>*:nth-child(even) .featured-triangle-vector {
	right: -120px;
	left: auto;
}

.featured-new-section>*:nth-child(even) .featured-left-part .section-title {
	max-width: 100%;
}

.featured-new-section .featured-left-part .section-title {
	max-width: 100%;
}

/* featured-new-section */

/* common-info-new-section */
.common-info-new-section .common-info-part-title-block {
	width: 100%;
	max-width: 597px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 50px;
}

.common-info-new-section .common-info-content .row>*:last-child .common-info-detail-wrp .common-detail {
	text-align: left;
}

.common-info-new-section .featured-right-part .common-detail p span {
	margin-top: 0;
}

/* common-info-new-section */

/* free-register-section */
.free-register-section {
	padding: 70px 0 50px;
	background: rgba(0, 0, 0, 0.05);
}

.free-register-content .featured-left-part {
	width: 100%;
	max-width: 498px;
}

.free-register-content .featured-left-part .common-detail {
	margin: 30px 0 0;
	font-size: 18px;
	line-height: 28px;
}

.free-register-content .featured-left-part .common-detail > *:not(:last-child){
	margin-bottom: 20px;
}

.free-register-content .featured-left-part .featured-triangle-vector {
	left: -135px;
	top: -23px;
}

.free-register-form-part {
	padding: 20px 0;
	width: 100%;
	max-width: 760px;
	margin-left: auto;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: #FFF;
}

.free-register-form-part .section-title{
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.free-register-form-part .common-form .form-group .form-control {
    padding: 12px 20px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: var(--white);
	box-shadow: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.free-register-form-part .common-form{
	padding: 0 20px;
}

.free-register-form-part .common-form .form-group label{
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 10px;
}

.free-register-form-part .form-submit-btn .btn{
	width: 100%;
}

.free-register-form-part .form-submit-btn{
	position: relative;
}

.free-register-form-part .wpcf7-spinner{
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
/* free-register-section */

/* speakers section */
.speakers-section {
	padding: 120px 0;
}

.speakers-content .row {
	margin: 0;
	align-items: center;
}

.speakers-content .row>* {
	padding: 0;
}

.speakers-slider-part {
	width: 100%;
	max-width: 1085px;
}

.speakers-slider-image {
	position: relative;
	height: 552px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.speakers-slider-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.speakers-slider-image img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.speakers-slider-image::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.9;
	background: linear-gradient(203deg, rgba(255, 159, 0, 0.00) 59.09%, #FF9F00 84.35%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.speakers-slider-detail {
	width: 100%;
	display: block;
	position: relative;
}

.speakers-slider-detail .speakers-slider-info {
	position: absolute;
	width: 100%;
	padding: 0 30px;
	left: 0;
	right: 0;
	top: auto;
	bottom: 35px;
	color: var(--white);
}

.speakers-slider-info .common-detail {
	color: var(--white);
	padding-right: 30px;
}

.speakers-slider-info img {
	position: absolute;
	top: 0;
	right: 30px;
}

.speakers-slider-info .common-detail span {
	font-weight: 700;
	display: block;
	margin-bottom: 10px;
}

.speakers-slider .slick-list {
	padding-left: 230px;
	margin-left: -15px;
}

.speakers-slider .slick-slide {
	padding-left: 15px;
}

.speakers-slider {
	opacity: 0;
}

.speakers-slider.slick-initialized {
	opacity: 1;
}

.speakers-slider .slick-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin-right: -15px;
	box-shadow: 0px 10px 20px rgba(44, 43, 47, 0.50);
	background: var(--white);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	cursor: pointer;
}

.speakers-slider .slick-arrow.slick-next {
	right: -10px;
}

.speakers-slider .slick-prev {
	display: none !important;
}

.speakers-detail-info {
	width: 100%;
	max-width: 445px;
	margin-left: 65px;
}

.speakers-detail-info .section-title {
	margin: 10px 0 20px;
}

.speakers-detail-info .speakers-btn {
	margin: 30px 0 0;
}

.speakers-slider .slick-dots {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 61.198vw;
	right: 0;
	bottom: 70px;
}

.speakers-slider .slick-dots li {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	position: relative;
	width: 8px;
	height: 8px;
	background: rgba(0, 0, 0, 0.2);
	margin-bottom: 20px;
	transition: 0.4s;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.speakers-slider .slick-dots li:hover {
	background: #EA216A;
}

.speakers-slider .slick-dots li.slick-active {
	background: #EA216A;
}

.speakers-slider .slick-dots li:not(:last-child) {
	margin-right: 8px;
}

.speakers-slider .slick-dots li button {
	opacity: 0;
	background: none;
	border: none;
	color: #000;
	font-size: 0;
	width: 8px;
	height: 8px;
}

.speakers-detail-info .custom-dots-block {
	margin-top: 30px;
}

.speakers-detail-info .custom-dots-block .slick-dots {
	display: flex;
	margin: 0;
	padding: 0;
}

.speakers-detail-info .custom-dots-block li {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	position: relative;
	width: 8px;
	height: 8px;
	background: rgba(0, 0, 0, 0.2);
	margin-bottom: 20px;
	transition: 0.4s;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	cursor: pointer;
}

.speakers-detail-info .custom-dots-block li:hover {
	background: #EA216A;
}

.speakers-detail-info .custom-dots-block li.slick-active {
	background: #EA216A;
}

.speakers-detail-info .custom-dots-block .slick-dots li:not(:last-child) {
	margin-right: 8px;
}

/* speakers section */

/* Highlights section */
.highlights-section {
	padding: 70px 0 55px;
	background: var(--black);
}

.highlights-section .container-fluid {
	margin-right: 0;
	padding: 0;
	width: calc(647px + 50vw);
}

.highlights-detail {
	width: 100%;
	max-width: 556px;
}

.highlights-detail .sub-title {
	display: block;
	margin-bottom: 10px;
}

.highlights-detail .section-title {
	width: 100%;
	max-width: 430px;
	color: var(--white);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.highlights-detail .common-detail {
	color: var(--white);
	margin-bottom: 30px;
}

.highlights-detail .common-detail strong {
	font-weight: 700;
}

.highlights-content .row {
	margin: 0;
}

.highlights-content .row>* {
	padding: 0;
}

.highlights-btn .btn span {
	text-transform: lowercase;
}

.highlights-slider-video {
	height: 210px;
	display: block;
	position: relative;
}

.highlights-slider-video * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.highlights-slider-video img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.youtube-icon {
	position: absolute;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.highlights-slider-part {
	position: relative;
	margin: 95px 0 0 60px;
}

.highlights-vector-shape {
	position: absolute;
	left: -37px;
	top: -80px;
}

.highlights-slider {
	opacity: 0;
}

.highlights-slider.slick-initialized {
	opacity: 1;
}

.highlights-slider .slick-list {
	padding-right: 220px;
}

.highlights-slider .slick-slide {
	padding-right: 20px;
}

.highlights-slider .slick-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin-right: -15px;
	box-shadow: 0px 10px 20px rgba(44, 43, 47, 0.50);
	background: var(--white);
	position: absolute;
	top: 50%;
	transform: translateY(-145%);
	-webkit-transform: translateY(-145%);
	-moz-transform: translateY(-145%);
	-ms-transform: translateY(-145%);
	-o-transform: translateY(-145%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	cursor: pointer;
}

.highlights-slider .slick-arrow.slick-next {
	left: -25px;
	z-index: 99;
}

.highlights-slider .slick-prev {
	display: none !important;
}

.highlights-slider .slick-dots {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.highlights-slider .slick-dots li {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	position: relative;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.2);
	margin-bottom: 20px;
	transition: 0.4s;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.highlights-slider .slick-dots li:hover {
	background: var(--yellow);
}

.highlights-slider .slick-dots li.slick-active {
	background: var(--yellow);
}

.highlights-slider .slick-dots li:not(:last-child) {
	margin-right: 8px;
}

.highlights-slider .slick-dots li button {
	opacity: 0;
	background: none;
	border: none;
	color: #000;
	font-size: 0;
	width: 8px;
	height: 8px;
}

.custom-dots-container {
	margin-top: 30px;
}

.custom-dots-container .slick-dots {
	display: flex;
	margin: 0;
	padding: 0;
}

.custom-dots-container li {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	position: relative;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.2);
	margin-bottom: 20px;
	transition: 0.4s;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	cursor: pointer;
}

.custom-dots-container li:hover {
	background: var(--yellow);
}

.custom-dots-container li.slick-active {
	background: var(--yellow);
}

.custom-dots-container .slick-dots li:not(:last-child) {
	margin-right: 8px;
}

.highlights-slider-detail .common-detail {
	color: var(--white);
	display: block;
	margin-top: 20px;
	font-weight: 500;
	line-height: 26px;
}

/* Highlights section */

/* counter increment section */
.counter-increment-section {
	padding: 70px 0;
	background: linear-gradient(90deg, rgba(255, 159, 0, 0.30) 0%, rgba(255, 207, 128, 0.00) 50%, rgba(255, 159, 0, 0.30) 100%);
}

.counter-increment-list ul {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.counter-increment-list ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--black);
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;
}

.counter-increment-list ul li>span {
	display: block;
	margin-bottom: 9px;
}

.counter-increment-list ul li span {
	color: var(--yellow);
	font-size: 48px;
	font-weight: 600;
	line-height: 58px;
	text-transform: uppercase;
}

.counter-increment-list ul li:not(:last-child) {
	margin-right: 150px;
}

/* counter increment section */

/*========== Home Page End ==========*/

/* technology section */
.technology-section {
	padding: 120px 0;
}

.technology-news-report {
	padding: 120px 0 60px;
}

.technology-news-report .technology-detail .common-triangle-vector {
	width: 170px;
}

.technology-detail {
	position: relative;
	width: 100%;
	max-width: 1096px;
	margin: 0 auto;
	text-align: center;
}

.technology-news-report .technology-detail {
	max-width: 930px;
}

.technology-news-report .technology-detail .common-detail {
	font-size: 22px;
	line-height: 32px;
}

.technology-detail .common-btn-group {
	margin: 30px 0 0;
}

.technology-detail .common-triangle-vector {
	position: absolute;
	opacity: 0.1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	z-index: -1;
}

.technology-detail .banner-btn {
	margin: 30px 0 0;
	display: flex;
	justify-content: center;
}

.technology-block {
	margin: 120px 0 0;
}

.technology-block .row {
	margin: 0 -10px;
}

.technology-block .row>* {
	padding: 0 10px;
}

.technology-info {
	padding: 30px;
	background: var(--green);
	height: 100%;
}

.technology-info .block-title {
	display: inline-block;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--white);
}

.technology-list {
	padding-left: 15px;
}

.technology-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.technology-list ul li {
	position: relative;
	color: var(--white);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding-left: 15px;
}

.technology-list ul li::before {
	position: absolute;
	content: "";
	background: var(--white);
	width: 5px;
	height: 5px;
	left: 0;
	top: 9px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.technology-list ul li:not(:last-child) {
	margin-bottom: 5px;
}

/* technology section */


/* attendees section */
.attendees-section {
	padding: 70px 0;
	background: rgba(0, 0, 0, 0.05);
}

.attendess-content .section-title {
	text-align: center;
	margin-bottom: 50px;
}

.attendess-image {
	display: flex;
	justify-content: center;
}

/* attendees section */

/* common info section  */
.common-info-section {
	padding: 120px 0 60px;
}

.common-info-sponsor-section {
	padding: 100px 0 60px;
}

.common-info-about-section {
	padding: 120px 0;
}

.common-info-lodging-section {
	padding: 120px 0 45px;
}

.common-info-content .row {
	align-items: center;
}

.common-info-about-section .common-info-content .row {
	align-items: stretch;
}

.common-info-lodging-section .common-info-content .row {
	align-items: stretch;
}

.common-info-about-section .common-info-part-block .row>*:first-child .common-info-detail-wrp {
	display: flex;
	align-items: center;
}

.common-info-content {
	position: relative;
}

.common-info-content .common-triangle-vector {
	position: absolute;
	opacity: 0.1;
	left: -110px;
	top: 50%;
	transform: translateY(-55%);
	-webkit-transform: translateY(-55%);
	-moz-transform: translateY(-55%);
	-ms-transform: translateY(-55%);
	-o-transform: translateY(-55%);
}

.common-info-content .common-triangle-vector.hide-shape {
	display: none;
}

.common-info-detail-wrp .common-detail {
	font-size: 18px;
	line-height: 28px;
}

.common-info-partner-section .common-info-detail-wrp .common-detail {
	font-size: 16px;
	line-height: 26px;
}

.common-info-sponsor-section .common-info-detail-wrp .common-detail {
	font-size: 16px;
	line-height: 26px;
}

.common-info-sponsor-section .common-info-content .common-triangle-vector {
	transform: translateY(-35%);
	-webkit-transform: translateY(-35%);
	-moz-transform: translateY(-35%);
	-ms-transform: translateY(-35%);
	-o-transform: translateY(-35%);
}

.common-info-lodging-section .common-info-detail-wrp .common-detail {
	font-size: 16px;
	line-height: 26px;
}

.common-info-partner-section .common-info-detail-wrp {
	width: 100%;
	max-width: 643px;
}

.common-info-detail-wrp .common-detail strong {
	font-weight: 600;
}

.common-info-detail-wrp {
	position: relative;
	width: 100%;
	max-width: 605px;
	height: 100%;
}

.common-info-program-section .common-info-detail-wrp {
	max-width: 651px;
}

.common-info-detail-wrp::after {
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0.15);
	width: 1px;
	height: 100%;
	top: 0;
	right: -55px;
	bottom: 0;
}

.common-info-lodging-section .common-info-detail-wrp::after {
	right: 15px;
	height: calc(100% - 90px);
}

.common-info-partner-section .common-info-detail-wrp::after {
	right: -28px;
}

.common-info-about-section .common-info-detail-wrp::after {
	right: -15px;
}

.common-info-program-section .common-info-detail-wrp::after {
	right: -20px;
}

.common-info-content .row>*:last-child .common-info-detail-wrp .common-detail {
	text-align: right;
}

.common-info-program-section .common-info-content .row>*:last-child .common-info-detail-wrp .common-detail {
	text-align: left;
}

.common-info-about-section .common-info-content .row>*:last-child .common-info-detail-wrp .common-detail {
	text-align: left;
}

.common-info-sponsor-section .common-info-content .row>*:last-child .common-info-detail-wrp .common-detail {
	text-align: left;
}

.common-info-lodging-section .common-info-content .row>*:last-child .common-info-detail-wrp .common-detail {
	text-align: left;
}

.common-info-about-section .common-info-content .row>*:last-child .common-info-detail-wrp {
	width: 100%;
	max-width: 739px;
}

.common-info-partner-section .common-info-content .row>*:last-child .common-info-detail-wrp {
	width: 100%;
	max-width: 615px;
}

.common-info-lodging-section .common-info-content .row>*:last-child .common-info-detail-wrp {
	width: 100%;
	max-width: 1085px;
	text-align: left;
}

.common-info-content .row>*:last-child .common-info-detail-wrp {
	margin-left: auto;
}

.common-info-program-section .common-info-content .row>*:last-child .common-info-detail-wrp {
	width: 100%;
	max-width: 630px;
}

.common-info-content .row>*:last-child .common-info-detail-wrp::after {
	display: none;
}

.common-info-content .common-btn-group {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

.common-info-program-section .common-info-content .common-btn-group {
	margin: 30px 0 0;
	justify-content: flex-start;
}

.common-info-lodging-section .common-info-content .common-btn-group {
	margin: 30px 0 0;
	justify-content: flex-start;
}

.common-info-content .common-btn-group>*:not(:last-child) {
	margin-right: 22px;
}

.common-info-about-title {
	width: 100%;
	max-width: 499px;
}

.common-info-about-title * {
	color: var(--black);
	font-size: 36px;
	font-weight: 500;
	line-height: 127%;
}

.common-info-detail-wrp .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.common-triangle-vector.hide-shape {
	display: none;
}

/* common info section  */

/* featured section */
.featured-section {
	padding: 60px 0;
}

.featured-left-part {
	position: relative;
}

.featured-triangle-vector {
	position: absolute;
	left: -130px;
	top: -93px;
	opacity: 0.1;
}

.featured-left-part .sub-title {
	display: block;
	margin-bottom: 10px;
}

.featured-left-part .section-title {
	width: 100%;
	max-width: 395px;
}

.featured-right-part {
	width: 100%;
	max-width: 740px;
	margin-left: auto;
}

.featured-right-part .common-detail span {
	position: relative;
	font-size: 18px;
	line-height: 27px;
	font-weight: 700;
	display: block;
	margin-bottom: 5px;
}

.featured-right-part .common-detail:not(:last-child) {
	margin-bottom: 20px;
}

.featured-right-part .common-detail>* {
	padding-left: 20px;
}

.featured-right-part .common-detail span::before {
	position: absolute;
	content: "";
	background-image: url('../images/plus.svg');
	background-size: cover;
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	left: 0;
	top: 8px;
}

/* featured section */

/* team section  */
.team-section {
	padding: 100px 0 40px;
}

.team-new-section{
	padding: 30px 0;
}

.team-new-section .team-part{
	padding-bottom: 70px;
}

.team-content .section-title {
	text-align: center;
	margin-bottom: 40px;
}

.team-part .load-more-btn {
	margin: 20px 0 0;
	display: flex;
	justify-content: center;
}

.team-detail {
	position: relative;
	display: block;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.team-image {
	position: relative;
	height: 552px;
}

.team-image::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	opacity: 0.9;
	background: linear-gradient(203deg, rgba(255, 159, 0, 0.00) 59.09%, #FF9F00 84.35%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.team-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-image img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.team-info {
	position: absolute;
	width: 100%;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px 30px 38px;
}

.team-info .common-detail {
	color: var(--white);
}

.team-info .common-detail p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.team-info .common-detail span {
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.team-slider {
	opacity: 0;
}

.team-slider.slick-initialized {
	opacity: 1;
}

/* team section  */

/* content theme featured  */
.content-theme-featured-section {
	padding: 60px 0;
}

.content-theme-featured-content {
	width: 100%;
	max-width: 1296px;
	margin: 0 auto;
}

.content-theme-featured-content .section-title {
	text-align: center;
}

.content-theme-featured-block {
	margin: 40px 0 0;
}

.content-theme-featured-detail {
	padding: 43px 25px;
	position: relative;
	width: 100%;
	max-width: 279px;
	margin: 0 auto;
	height: 100%;
	border-radius: 10px;
	background: var(--white);
	box-shadow: 0px 5px 14px 0px rgba(44, 43, 47, 0.25);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.content-theme-featured-detail::before {
	position: absolute;
	content: "";
	top: -15px;
	left: -15px;
	right: 9px;
	bottom: 5px;
	border-radius: 10px;
	border: 1px solid var(--green);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	z-index: -9;
}

.content-theme-featured-detail::after {
	position: absolute;
	content: "";
	top: 5px;
	left: 9px;
	right: -15px;
	bottom: -15px;
	border-radius: 10px;
	border: 1px solid var(--green);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	z-index: -9;
}

.content-theme-featured-image {
	display: flex;
	justify-content: center;
}

.content-theme-featured-info {
	margin: 10px 0 0;
	text-align: center;
	word-wrap: break-word;
}

.content-theme-featured-info * {
	color: var(--black);
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	text-transform: uppercase;
}

.content-theme-new-featured-section .content-theme-featured-info {
	margin: 5px 0 0;
}

.content-theme-new-featured-section .content-theme-featured-info * {
	color: var(--black);
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	text-transform: uppercase;
}

.content-theme-new-featured-section .content-theme-featured-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.content-theme-new-featured-section {
	padding: 70px 0 110px;
}

.content-theme-featured-slider {
	opacity: 0;
}

.content-theme-featured-slider .slick-track {
	display: flex;
}

.content-theme-featured-slider .slick-list {
	padding: 20px 0;
	margin: 0 -8px;
}

.content-theme-featured-slider .slick-slide {
	height: inherit;
	padding: 0 8px;
}

.content-theme-featured-slider.slick-initialized {
	opacity: 1;
}

.content-theme-featured-slider .slick-arrow {
	left: 50%;
	transform: translateX(-50%);
	bottom: -75px;
}

.content-theme-featured-slider .slick-arrow.slick-next {
	transform: translateX(20%);
}

.content-theme-featured-slider .slick-arrow.slick-prev {
	transform: translateX(-120%);
}

.content-theme-featured-title {
	text-align: center;
	margin-top: 17px;
}

.content-theme-featured-title * {
	margin: 0;
	color: var(--green);
	font-size: 18px;
	font-weight: 600;
	line-height: 155%;
	text-transform: uppercase;
}

/* content theme featured  */

/* featured content section */
.featured-content-section {
	padding: 50px 0 120px;
}

.featured-content-block-title .section-title {
	text-align: center;
	text-transform: capitalize;
}

.featured-content-part {
	margin: 50px 0 0;
}

.featured-content-part>*:not(:last-child) {
	margin-bottom: 120px;
}

.featured-content-wrp-detail {
	width: 100%;
	max-width: 652px;
	margin-left: auto;
}

.featured-content-wrp-detail .section-title {
	margin-bottom: 20px;
	text-transform: capitalize;
}

.featured-content-wrp-detail .common-detail {
	width: 100%;
	max-width: 604px;
}

.featured-content-wrp-detail .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.featured-content-wrp-detail .common-detail ul li:not(:last-child) {
	margin-bottom: 10px;
}

.featured-content-wrp-detail .common-detail ul {
	padding-left: 1.7rem;
}

.featured-content-part>*:nth-child(even) .row {
	flex-direction: row-reverse;
}

.featured-content-part>*:nth-child(even) .featured-content-wrp-image {
	margin-left: auto;
}

.featured-content-part>*:nth-child(even) .featured-content-wrp-detail {
	max-width: 655px;
}

.featured-content-wrp-detail .learn-more-btn {
	margin: 30px 0 0 25px;
}

.featured-content-wrp-detail .learn-more-btn .btn {
	padding: 13px 15px;
}

/* featured content section */

/* conference section */
.conference-section {
	padding: 70px 0 60px;
	background: rgba(0, 0, 0, 0.05);
}

.conference-image {
	height: 390px;
}

.conference-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.conference-image img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.conference-slider-part {
	background: var(--green);
	margin: 50px 35px 0 -128px;
}

.conference-slider-detail {
	padding: 120px 50px 72px;
	height: 100%;
}

.conference-slider-title * {
	color: #FFF;
	text-align: center;
	font-size: 36px;
	font-weight: 500;
	line-height: 120%;
}

.conference-slider-detail .common-detail {
	margin: 30px 0 0;
	text-align: center;
	color: var(--white);
}

.conference-slider-detail .common-detail span {
	display: block;
	text-align: center;
	margin-bottom: 10px;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	line-height: 150%;
}

.conference-slider .slick-track {
	display: flex;
}

.conference-slider .slick-slide {
	height: inherit;
}

.conference-slider {
	opacity: 0;
}

.conference-slider.slick-initialized {
	opacity: 1;
}

.conference-slider .slick-arrow {
	z-index: 99;
	top: 50%;
	transform: translateY(0%);
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
}

.conference-slider .slick-arrow.slick-next {
	right: -25px;
}

.conference-slider .slick-arrow.slick-prev {
	left: -25px;
}

.conference-slider-part .custom-dots-container {
	margin-bottom: 10px;
}

.conference-slider-part .custom-dots-container .slick-dots {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.conference-slider-part .custom-dots-container li {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	position: relative;
	width: 8px;
	height: 8px;
	background: var(--white);
	margin-bottom: 20px;
	transition: 0.4s;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	cursor: pointer;
}

.conference-slider-part .custom-dots-container li:hover {
	background: var(--black);
}

.conference-slider-part .custom-dots-container li.slick-active {
	background: var(--black);
}

.conference-slider-part .custom-dots-container .slick-dots li:not(:last-child) {
	margin-right: 8px;
}

/* conference section */

/* who we are section  */
.who-we-are-section {
	padding: 70px 0;
	background: rgba(0, 0, 0, 0.05);
}

.who-we-are-content {
	text-align: center;
}

.who-we-are-content .sub-title {
	display: block;
	margin-bottom: 10px;
	text-align: center;
}

.who-we-are-content .section-title {
	text-align: center;
	margin-bottom: 20px;
}

.who-we-are-content .common-detail {
	width: 100%;
	max-width: 1096px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 30px;
}

/* who we are section  */

/* gcg common center section */
.gcg-common-center-section {
	padding: 10px 0 120px;
}

.gcg-common-center-content {
	text-align: center;
}

.gcg-common-center-content .sub-title {
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.gcg-common-center-content .section-title {
	text-align: center;
	margin-bottom: 20px;
}

.gcg-common-center-content .common-detail {
	width: 100%;
	max-width: 1041px;
	margin: 0 auto 30px;
	text-align: center;
}

/* gcg common center section */

/* our partners section */
.our-partners-section {
	padding: 60px 0 95px;
}

.our-partners-content {
	width: 100%;
	max-width: 1222px;
	margin: 0 auto;
}

.our-partners-content .sub-title {
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.our-partners-content .section-title {
	text-align: center;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.our-partners-block .row {
	margin: 0 -10px;
}

.our-partners-block .row>* {
	padding: 0 10px;
}

.our-partners-image {
	margin-bottom: 28px;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	height: 169px;
	background: #FFF;
	box-shadow: 0px 5px 14px 0px rgba(44, 43, 47, 0.25);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.our-partners-image figure {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.our-partners-image img {
	max-height: 100%;
}

/* our partners section */

/* common border image section */
.common-border-image-content {
	width: 100%;
	max-width: 1313px;
	margin: 0 auto;
}

.common-border-image {
	position: relative;
	border-radius: 10px;
	box-shadow: 0px 5.155px 14.435px 0px rgba(44, 43, 47, 0.25);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	height: 342px;
}

.common-border-image::before {
	position: absolute;
	content: "";
	top: -15px;
	left: -15px;
	right: 9px;
	bottom: 5px;
	border-radius: 10px;
	border: 1px solid var(--green);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	z-index: -9;
}

.common-border-image::after {
	position: absolute;
	content: "";
	top: 5px;
	left: 9px;
	right: -15px;
	bottom: -15px;
	border-radius: 10px;
	border: 1px solid var(--green);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	z-index: -9;
}

.common-border-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.common-border-image img {
	border-radius: 10px;
}

.common-border-image-block {
	padding: 0 16px;
}

.common-border-image-block .row {
	margin: 0 -27px;
}

.common-border-image-block .row>* {
	padding: 0 27px;
}

/* common border image section */

/* why stay section */
.why-stay-section {
	padding: 140px 0 60px;
}

.why-stay-content {
	width: 100%;
	max-width: 1289px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.why-stay-left-part {
	width: 100%;
	max-width: 455px;
}


.why-stay-left-part ul {
	margin: 0;
	padding-left: 1.2rem;
}

.why-stay-left-part ul li {
	color: var(--black);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.why-stay-left-part ul li strong {
	font-weight: 600;
}

.why-stay-left-part ul li:not(:last-child) {
	margin-bottom: 20px;
}

.why-stay-center-part {
	position: relative;
	width: 100%;
	max-width: 245px;
}

.why-stay-center-part .common-triangle-vector {
	position: absolute;
	width: 257px;
	height: 404px;
	opacity: 0.1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.why-stay-center-part .common-triangle-vector * {
	width: 100%;
	height: 100%;
}

.why-stay-center-part .section-title {
	text-align: center;
	text-transform: capitalize;
}

.why-stay-right-part {
	width: 100%;
	max-width: 455px;
}

.why-stay-right-part ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-stay-right-part ul li {
	color: var(--black);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.why-stay-right-part ul li a {
	color: var(--green);
	font-weight: 600;
}

.why-stay-right-part ul li a:hover {
	color: var(--yellow);
}

.why-stay-right-part ul li:not(:last-child) {
	margin-bottom: 20px;
}

.why-stay-right-part .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.why-stay-right-part .common-detail a {
	color: var(--green);
	font-weight: 600;
}

.why-stay-right-part .common-detail a:hover {
	color: var(--yellow);
}

/* why stay section */

/* 404 page */
.page-404 .banner-title {
	text-align: center;
	margin-bottom: 30px;
}

.page-404 {
	padding: 100px 0 74px;
}

.page-404 .banner-content {
	text-align: center;
}

.page-404 .banner-content .common-detail {
	text-align: center;
	max-width: 100%;
	font-size: 26px;
	margin-bottom: 40px;
}

/* 404 page */

/* privacy-policy */
.privacy-policy .inner-banner-title {
	text-align: center;
}

.privacy-policy-section {
	padding: 120px 0;
}

.alignnone {
	float: none;
	margin: 20px 0;
}

.alignleft {
	float: left;
	margin: 20px 20px 20px 0;
}

.aligncenter {
	float: none;
	display: block;
	margin: 20px auto;
}

.alignright {
	float: right;
	margin: 20px 0 20px 20px;
}

.privacy-policy-detail h1 {
	font-size: 60px;
	line-height: 80px;
	color: var(--black);
}

.privacy-policy-detail h2 {
	font-size: 50px;
	line-height: 70px;
	color: var(--black);
}

.privacy-policy-detail h3 {
	font-size: 40px;
	line-height: 50px;
	color: var(--black);
}

.privacy-policy-detail h4 {
	font-size: 30px;
	line-height: 40px;
	color: var(--black);
}

.privacy-policy-detail h5 {
	font-size: 28px;
	line-height: 36px;
	color: var(--black);
}

.privacy-policy-detail h6 {
	font-size: 24px;
	line-height: 32px;
	color: var(--black);
}

.privacy-policy-detail a {
	color: var(--green);
}

.privacy-policy-detail a:hover {
	color: var(--yellow);
}

.privacy-policy-detail blockquote {
	padding-left: 20px;
	border-left: 5px solid var(--black);
	margin: 20px 0;
}

/* privacy-policy */

/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/


/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer {
	background: var(--black);
}

.footer-content {
	padding: 70px 0 50px;
	display: flex;
	justify-content: space-between;
}

.footer-logo-link {
	display: inline-block;
}

.footer-social-media-list {
	margin: 40px 0 0;
}

.footer-social-media-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
}

.footer-social-media-list ul li {
	display: inline-flex;
	list-style: none;
}

.footer-social-media-list ul li:not(:last-child) {
	margin-right: 40px;
}

.footer-social-media-list ul li a {
	color: var(--yellow);
	font-size: 28px;
}

.footer-social-media-list ul li a:hover {
	color: var(--green);
}

.footer-common-detail {
	width: 100%;
	max-width: 382px;
	margin: 40px 0 0;
	color: var(--white);
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
}

.footer-common-detail a {
	color: var(--green);
}

.footer-common-detail a:hover {
	color: var(--yellow);
}

.footer-link-title {
	display: block;
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	line-height: 23px;
	text-transform: uppercase;
}

.footer-link-list {
	margin: 20px 0 0;
}

.footer-link-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-link-list ul li {
	color: var(--white);
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
}

.footer-link-list ul li:not(:last-child) {
	margin-bottom: 15px;
}

.footer-link-list ul li a {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
}

.footer-link-list ul li a:hover {
	color: var(--yellow);
}

.footer-link-list ul li span {
	color: var(--green);
	font-weight: 600;
	margin-right: 15px;
}

.footer-content>*:last-child {
	width: 100%;
	max-width: 260px;
}

.footer-content>*:last-child .footer-link-list ul li a {
	color: var(--green);
}

.footer-content>*:last-child .footer-link-list ul li a:hover {
	color: var(--yellow);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom {
	padding: 23px 0;
	background: rgba(255, 255, 255, 0.1);
}

.footer-bottom-left-part ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-bottom-left-part ul li {
	position: relative;
	color: var(--white);
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
}

.footer-bottom-left-part ul li:first-child::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 15px;
	background: var(--green);
	top: 50%;
	transform: translateY(-50%);
	bottom: 0;
	right: -10px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.footer-bottom-left-part ul li:first-child::before {
	position: absolute;
	content: "";
	width: 2px;
	height: 15px;
	background: var(--green);
	top: 50%;
	transform: translateY(-50%);
	bottom: 0;
	right: -15px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.footer-bottom-left-part ul li a {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	font-weight: inherit;
}

.footer-bottom-left-part ul li a:hover {
	color: var(--yellow);
}

.footer-bottom-left-part ul li:not(:last-child) {
	margin-right: 23px;
}

.footer-copyright {
	color: var(--white);
	font-size: 15px;
	font-weight: 400;
	line-height: 15px;
}

/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/