* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	width: 100%;
	font-size: 16px;
}

body {
	margin: 0;
	padding: 0;
	color: #FFF;
	line-height: 1.4;
	height: 100%;
	font-size: 16px;
	background: #111827;
	overflow-x: hidden;
	font-family: "PingFang", "serif"
}

@font-face {
	font-family: "PingFang";
	src: url("fonts/PingFang.ttf")
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: inherit;
	line-height: inherit;
	font-size: inherit
}

ul li {
	list-style: none;
}

ul {
	padding: 0;
	margin: 0;
}

input {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
	resize: none;
}

input::-webkit-input-safebox-button {
	display: none;
}

select {
	-webkit-appearance: none;
}

img {
	max-width: 100%;
	border: none;
	vertical-align: middle;
	text-decoration: none;
}

a {
	cursor: pointer;
	color: #000
}

a:hover {
	transition: 0.3s ease-out;
	color: #6366F1;
}

a,
a img {
	border: none;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	background: none;
}

span:focus,
img:focus,
button:focus {
	outline: none !important;
	border: none;
	box-shadow: none !important;
}

a:focus,
a:hover {
	text-decoration: none;
	outline: none;
}

select,
select:focus,
select:active {
	outline: none;
}

input:focus,
textarea:focus,
select:focus {
	outline: none !important;
	box-shadow: none !important;
}

select {
	-webkit-appearance: none;
	appearance: none;
}

.form-control:focus {
	border-color: #6366F1 !important;
}

.form-control:placeholder {
	color: #bcbcbc !important
}

.form-control {
	background: #FFF !important;
	border-radius: 5px;
	border: 1px solid #1F2937;
	padding: 13px 16px;
	min-height: 47px;
	width: 100%
}

.container {
	max-width: 1280px;
	width: 100%;
	padding: 0 20px;
}

header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 900;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.photo {
    background-color: #fff;
    margin: 10px;
    padding: 10px;
    width: calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	font-size: medium; color: #000;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.index .content {
	background: none;
	padding: 0;
}

.content {
	background: url("../images/Gradient5x.png") top center no-repeat;
	background-size: 100% 164px;
	padding: 100px 0 50px;
	position: relative;
	z-index: 1;
}

.article {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #ffffff; /* White background for articles */
}
.article h2, .article h3, .article p, .article a {
	color: #000; /* Black text color */
}
.article:last-child {
	border-bottom: none;
}
.article a {
	text-decoration: none;
}
.article a:hover {
	text-decoration: underline;
}

.banner {
	position: relative;
}

.banner:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.banner_content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	z-index: 90;
}

.banner_content h1 {
	font-size: 60px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 15px;
}

.banner_content p {
	font-size: 25px;
	margin-bottom: 60px;
}

.banner_content .buttons a {
	display: inline-block;
	background: #6366F1;
	border-radius: 5px;
	border: 1px solid #6366F1;
	font-size: 26px;
	font-weight: bold;
	color: #FFF;
	font-weight: 700;
	padding: 11px 30px;
	margin-right: 30px;
}

.header {
	display: flex;
	justify-content: space-between;
	color: #FFF;
	align-items: center;
}

.logo {
	padding: 20px 0;
	max-width: 177px;
}

.index .logo {
	padding: 10px 0;
}

.menu ul {
	margin: 0;
	padding: 0;
}

.menu ul li {
	display: inline-block;
	margin-left: 30px;
}

.menu ul li a {
	color: #FFF;
	padding: 10px 0;
}

.menu ul li.active a {
	color: #6366F1;
}

.menu ul li.dropdown>a {
	display: flex;
	align-items: center;
	position: relative;
}

.menu ul li.dropdown>a:after {
	content: "\f282";
	font-family: "bootstrap-icons";
	margin-left: 5px;
	font-size: 14px;
}

.menu ul li.dropdown .dropdown-menu {
	top: 140%;
	border-radius: 3px;
	visibility: hidden;
	display: table;
	min-width: 100%;
	width: auto;
	margin-left: 0;
	left: 0;
	background: #fff;
	border: none;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	padding: 10;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.menu .dropdown-menu li {
	margin: 20px 10px;
	display: block;
	text-align: center;
}

.menu ul li .dropdown-menu li a {
	white-space: nowrap;
	color: #212121;
}

.visible_xs {
	display: none !important
}

.visible_ipad {
	display: none !important
}

.top_nav_icon {
	display: block;
	color: #FFF;
	z-index: 90;
	position: relative;
	font-size: 32px;
}

.Competition_details {
	margin-top: -100px;
	position: relative;
	z-index: 80;
	margin-bottom: 50px;
}

.Competition_details>.container {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 25px;
	justify-content: center;
	margin-bottom: 50px;
}

.Competition_details_li {
	display: block;
	height: 100%;
	width: 33.33%;
	background: linear-gradient(135deg, #192230 7%, #192230 75%, #111827 100%);
	text-align: center;
	color: #FFF;
	padding: 30px;
	border-radius: 15px;
	transition: all 0.2s ease-out;
}

.Competition_details_li .img {
	background: #6366F1;
	width: 70px;
	margin: 0 auto 20px;
	height: 70px;
	border-radius: 100%;
	padding-top: 18px;
}

.Competition_details_li .img .active {
	display: none
}

.Competition_details_li .txt {
	font-size: 25px;
	margin-bottom: 20px;
}

.Competition_details_li .btn_a a {
	display: inline-block;
	width: 125px;
	text-align: center;
	padding: 8px 0;
	color: #FFF;
	background: #6366F1;
	border-radius: 5px;
}

.Competition_txt {
	font-size: 26px;
	line-height: 2;
	font-weight: 700;
	margin-bottom: 50px;
	text-align: justify;
}

.Competition_txt i {
	color: #9CA3AF;
}

.Supporting_organization_title {
	text-align: center;
	font-size: 70px;
	font-weight: 400;
	margin-bottom: 30px;
}

.Supporting_sorting {
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 30px;
}

.Supporting_organization_c {
	background: url("../images/Background1.png") no-repeat center center;
	background-size: cover;
	height: 400px;
}

.newsletter {
	background: radial-gradient(58% 141% at 0% 0%, #6366F1 0%, #2962EB 100%);
	padding: 42px;
	border-radius: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
	gap: 40px;
}

.newsletter .txt {
	font-size: 30px;
	font-weight: 700
}

.newsletter .newsletter-right {
	width: 30%;
}

.newsletter .newsletter-right input {
	display: block;
	width: 100%;
	background: #FFF !important;
	padding: 12px 15px;
	color: #000 !important;
	border-radius: 5px;
	margin-bottom: 10px;
}

.newsletter .newsletter-right button {
	text-align: center;
	border-radius: 5px;
	border: 1px solid #6366F1;
	background: #111827;
	color: #FFF;
	display: block;
	padding: 13px 15px;
	width: 100%;
}

.newsletter .newsletter-right button i {
	margin-right: 10px;
}

.newsletter .newsletter-right button:hover {
	background: #000
}

.share a {
	color: #FFF;
	display: inline-block;
	width: 32px;
	height: 32px;
	text-align: center;
	border-radius: 3.2px;
	background: rgba(255, 255, 255, 0.17);
	line-height: 32px;
	font-size: 14px;
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
}

.footer_left {
	width: 40%;
	margin-bottom: 20px;
}

.footer_center {
	width: 20%;
	margin-bottom: 20px;
}

.footer_center ul li a {
	color: #9CA3AF;
	font-size: 14px;
	margin-bottom: 7px;
	display: block;
}

.footer_right {
	width: 40%;
	display: flex;
	gap: 50px;
	margin-bottom: 20px;
}

.footer_h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

.footer_logo {
	max-width: 178px;
	margin-bottom: 20px;
}

.footer_left .txt {
	font-size: 13px;
	color: #9CA3AF;
	margin-bottom: 15px;
	text-align: justify;
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.17);
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #9CA3AF;
	font-size: 13px;
}

.copyright_links a {
	color: #9CA3AF;
	position: relative;
}

.copyright_links a:before {
	content: "";
	width: 2.4px;
	height: 3px;
	background: #6366F1;
	display: inline-block;
	vertical-align: middle;
	margin: 0 14px;
}

.copyright_links a:first-child:before {
	display: none
}

.copyright_links a:hover {
	color: #FFF;
}

.contact_us {
	padding: 60px 0;
	z-index: 9999;
	position: relative;
}

.contact_us h1 {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 17px;
	margin-bottom: 20px;
}

.contact-p {
	text-align: center;
	margin-bottom: 80px;
}

.contact_us_c {
	display: flex;
	justify-content: space-between;
	gap: 80px;
}

.contact_us_left_title {
	font-size: 38px;
	margin-bottom: 40px;
	font-weight: bold;
	letter-spacing: -0.5px;
}

.contact_us_left {
	width: 58%
}

.contact_us_right {
	width: 42%;
}

.form-group {
	margin-bottom: 15px;
}

.label_title {
	font-weight: bold;
	margin-bottom: 5px;
}

.get_in_touch {
	color: #6366F1;
	font-size: 14px;
	margin-bottom: 18px;
}

.get_in_touch_title {
	font-weight: 700;
	font-size: 38px;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
}

.get_in_touch_txt {
	margin-bottom: 30px;
}

.get_in_address {
	background: linear-gradient(135deg, #1F2937 2%, #1F2937 64%, #111827 99%);
	padding: 18px 20px;
	border-radius: 15px;
	position: relative;
	padding-left: 90px;
	margin-bottom: 20px;
}

.get_in_address img {
	position: absolute;
	left: 20px;
	top: 50%;
	margin-top: -28px;
}

.get_in_address_title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.get_in_address_txt {
	color: #9CA3AF;
	min-height: 44px;
	display: flex;
	align-items: center
}

.form_submit {
	display: block;
	max-width: 600px;
	margin: 30px auto;
	background: #6366F1;
	border: none;
	font-size: 18px;
	color: #FFF;
	padding: 15px;
	display: block;
	border-radius: 5px;
	width: 100%;
	letter-spacing: 5px;
}

.form_submit.bg_gray {
	background: #6F6F6F !important;
	cursor: no-drop
}

.form_submit i {
	margin-right: 10px;
}

.form_submit:hover {
	background: #5457f0;
	border-color: #5457f0;
	transition: 0.3s ease-out;
}

.bg_404 {
	background: url("../images/404_bg.png") no-repeat center center;
	background-size: cover;
	padding: 120px 0;
}

.bg_404_c {
	background: #000;
	max-width: 500px;
	margin: 0 auto;
	padding: 60px 30px;
	text-align: center;
}

.bg_404_c h1 {
	font-size: 60px;
	font-weight: 900;
	margin-bottom: 20px;
	letter-spacing: -1px;
	line-height: 1.2
}

.bg_404_c .bg_404_title {
	font-size: 38px;
	margin-bottom: 20px;
	font-weight: 900;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
	line-height: 1.2
}

.bg_404_c p {
	color: #9CA3AF;
	margin-bottom: 20px;
}

.back_home {
	border: 1px solid #6366F1;
	background: #6366F1;
	color: #FFF;
	padding: 12px 30px;
	display: inline-block;
	font-size: 13px;
	letter-spacing: 2px;
	border-radius: 5px;
}

.back_home:hover {
	color: #FFF;
	background: #5457f0
}

.competiton_rules {
	font-size: 25px;
	line-height: 1.5;
	padding: 50px 0;
	text-align: justify;
}

.competiton_rules h1 {
	font-size: 48px;
	margin-bottom: 50px;
	letter-spacing: 17px;
	line-height: 1.2;
	text-align: center;
	font-weight: bold
}

.competition_title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 50px;
	line-height: 1.5;
}

.competition_title_top {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 10px;
	justify-content: center
}

.competiton_rules ul li {
	list-style: disc;
	margin-left: 20px;
}

.competiton_rules ul {
	margin-bottom: 30px;
}

.Register_competition {
	padding: 60px 0;
}

.Register_competition h1 {
	font-size: 48px;
	font-weight: bold;
	letter-spacing: 17px;
	margin-bottom: 20px;
	text-align: center;
}

.Register_competition_p {
	text-align: center;
	font-size: 24px;
	margin-bottom: 20px;
}

.Competition_details.Competition_details_form {
	margin-top: 0;
}

.Competition_details_form .Competition_details_c {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 25px;
	justify-content: center;
	margin-bottom: 50px;
}

.Register_competition_form {
	max-width: 850px;
	margin: 0 auto;
}

.checkbox_c {
	margin: 30px 0;
}

.checkbox {
	margin-bottom: 10px;
}

.checkbox input {
	display: none
}

.checkbox input+label {
	background: url("../images/checkbox1x.png") no-repeat left top -1px;
	font-weight: 600;
	min-height: 26px;
	padding-left: 32px;
	cursor: pointer
}

.checkbox input:checked+label {
	background: url("../images/checkbox1x-2.png") no-repeat left top -1px;
}

.row {
	margin-bottom: .5rem;
}

@media (min-width:1280px) {
	.banner_content .buttons a:hover {
		background: #FFF;
		color: #6366F1
	}

	.menu ul li.dropdown:hover .dropdown-menu {
		top: 100%;
		opacity: 1;
		visibility: visible;
	}

	.menu ul li:hover a {
		color: #6366F1;
	}

	.menu ul li .dropdown-menu li a:hover {
		color: #6366F1;
	}

	.Competition_details_li:hover {
		background: #6366F1;
	}

	.Competition_details_li:hover .img {
		background: #FFF;
	}

	.Competition_details_li:hover .img .active {
		display: block;
		margin: 0 auto;
	}

	.Competition_details_li:hover .img .img_defult {
		display: none;
	}

	.Competition_details_li:hover .btn_a a {
		background: #FFF;
		color: #6366F1
	}

	.footer_center ul li a:hover {
		color: #FFF;
	}

	.share a:hover {
		transform: translateY(-2px)
	}
}

@media (max-width:1280px) {
	.Competition_details {
		margin-top: -50px;
	}

	.Competition_details_li .txt {
		font-size: 20px;
	}

	.Competition_details_li {
		padding: 30px 20px;
	}

	.Competition_txt {
		font-size: 22px;
	}

	.Supporting_organization_title {
		font-size: 50px;
	}

	.Supporting_sorting {
		font-size: 20px;
	}

	.newsletter {
		padding: 30px;
	}

	.newsletter .txt {
		font-size: 24px;
	}

	.banner_content h1 {
		font-size: 40px;
	}

	.banner_content p {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.banner_content .buttons a {
		font-size: 20px;
		margin-right: 15px;
	}

	.visible_ipad {
		display: block !important
	}

	.menu {
		position: fixed;
		top: 0px;
		left: -100%;
		height: 100%;
		width: 100%;
		padding: 0px;
		z-index: 99;
		background: #000;
		overflow-y: auto;
		transition: all 0.4s ease-out;
		display: none;
	}

	.top_nav_mobile.menu {
		left: 0px;
		display: block;
	}

	.menu ul li {
		display: block;
		margin: 15px 20px;
	}

	.menu ul li .dropdown-menu li {
		margin: 0 20px;
	}

	.menu>ul {
		clear: both;
	}

	.close_menu {
		color: #FFF;
		font-size: 24px;
		float: right;
		margin: 20px;
	}

	.menu ul li.dropdown>a::after {
		position: absolute;
		right: 0;
		top: 12px;
	}

	.menu ul li a {
		display: block;
	}

	.menu ul li.dropdown .dropdown-menu {
		position: relative;
		top: 0;
		visibility: visible;
		background: #000;
		text-align: left;
		display: none;
		transition: none;
	}

	.menu .dropdown-menu li {
		text-align: left;
	}

	.menu ul li .dropdown-menu li a {
		color: #FFF;
	}

	.menu ul li.dropdown>a {
		display: block;
	}

	.menu ul li.dropdown.active>a:after {
		content: "\f286";
	}

	.menu {
		font-size: 18px;
	}

	.contact_us_c {
		display: block;
	}

	.contact_us_left {
		margin-bottom: 50px;
	}

	.contact_us_left,
	.contact_us_right {
		width: 100%;
	}
}

@media (max-width:767px) {
	.Register_competition h1 {
		font-size: 32px;
	}

	.Register_competition_p {
		font-size: 18px;
	}

	.Competition_details_form .Competition_details_c {
		display: block;
	}

	.bg_404_c h1 {
		font-size: 50px;
	}

	.bg_404_c .bg_404_title {
		font-size: 28px;
	}

	.contact_us h1 {
		font-size: 32px;
	}

	.contact-p {
		font-size: 14px;
		margin-bottom: 50px;
	}

	.contact_us_left_title {
		font-size: 28px;
	}

	.form-group .col-6 {
		width: 100%;
	}

	.form-group .col-6+.col-6 {
		margin-top: 20px;
	}

	.get_in_touch_title {
		font-size: 26px;
	}

	.newsletter {
		display: block;
		padding: 20px;
	}

	.footer {
		display: block;
	}

	.footer_left,
	.footer_center,
	.footer_right {
		width: 100%;
	}

	.copyright {
		display: block;
		text-align: center;
		font-size: 12px;
	}

	.copyright_p {
		margin-bottom: 15px;
	}

	.copyright_p span {
		display: block;
	}

	.newsletter .txt {
		width: 100%;
		font-size: 22px;
	}

	.newsletter .newsletter-right {
		width: 100%;
	}

	.hidden_xs {
		display: none !important
	}

	.visible_xs {
		display: block !important
	}

	.banner>img {
		object-fit: cover;
		aspect-ratio: 1/1;
		width: 100%;
	}

	.banner_content {
		padding-top: 60px;
	}

	.banner_content h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.banner_content p {
		font-size: 13px;
		margin-bottom: 20px;
	}

	.banner_content .buttons a {
		font-size: 14px;
	}

	.Competition_details>.container {
		display: block;
	}

	.Competition_details_li {
		width: 100%;
		margin-bottom: 20px;
	}

	.banner_content .buttons a {
		padding: 8px 10px;
		margin-bottom: 5px;
	}

	.Competition_details {
		margin-top: 30px;
	}

	.Competition_txt {
		font-size: 18px;
		line-height: 1.6;
	}

	.Supporting_organization_title {
		font-size: 40px;
	}

	.Supporting_sorting {
		font-size: 20px;
	}

	.competiton_rules h1 {
		font-size: 36px;
	}

	.competition_title {
		font-size: 22px;
	}

	.competition_title_top img {
		width: 22px;
	}

	.competiton_rules {
		font-size: 16px;
	}

	.competiton_rules ul li {
		margin-left: 16px;
	}
}