@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");


*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	margin: 0;
	font-family: "Source Serif 4", serif;
	padding: 0;
	background: #fff url(../img/body-bg.png) repeat;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	color: #000;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
	line-height: 0;
	font-size: 0;
}

img {
	max-width: 100%;
	object-fit: cover;
}

a {
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

footer,
section {
	position: relative;
	z-index: 11;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	color: #000000;
}

p {
	font-family: "Source Serif 4", serif;
	margin: 0;
	padding: 0 0 20px;
	font-size: 20px;
	line-height: 24px;
	color: #333333;
	font-weight: normal;
	letter-spacing: 0.6px;
}

p:last-child {
	padding-bottom: 0;
}


h1 {
	font-family: "Source Serif 4", serif;
	font-size: 13px;
	color: #FFEBDF;
	font-weight: 600;
	line-height: 18px;
}

h1 span {
	display: block;
	color: #8D5C34;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

h2 {
	font-family: "Source Serif 4", serif;
	font-size: 22px;
	color: #241B10;
	font-weight: 700;
}
.font-italic{
	font-style: italic;
}

@media (min-width:768px) {

	h1 {
		font-size: 24px;
		line-height: 0px;
		color: #fff;
		letter-spacing: 1.1px;
	}

	h1 span {
		line-height: 76px;
	}

	h2 {
		font-family: "Source Serif 4", serif;
		font-size: 35px;
		line-height: 47px;
		color: #241B10;
		font-weight: 600;
	}

	p {
		margin: 0;
		padding: 0 0 20px;
		font-size: 18px;
		line-height: 36px;
	}

}


@media (min-width:1200px) {

	h1 {
		font-size: 47px;
		line-height: 46px;
		color: #fff;
		letter-spacing: 1.1px;
	}

	h1 span {
		font-size: 47px;
		line-height: 76px;
	}

	h2 {
		font-size: 32px;
		line-height: 47px;
	}

	p {
		font-size: 18px;
		line-height: 28px;
		padding: 0 0 20px;
	}

}

@media (min-width:1440px) {
	p {
		font-size: 18px;
		line-height: 28px;
	}
}

.container {
	max-width: 1214px;
	padding: 0 22px;
	margin: 0 auto;
}

.container-fluid {
	padding: 0 36px;
}

select {
	width: 100%;
	padding: 10px;
	appearance: none;
	font-family: 'Montserrat';
	font-weight: 500;
	background: none;
	border: 1px solid rgb(0, 0, 0);
	position: relative;
	z-index: 1;
}


@media(min-width: 768px) {
	.container-fluid {
		padding: 0 52px;
	}
}

@media(min-width: 1200px) {
	.container-fluid {
		padding: 0 60px;
	}

}

@media(min-width: 1440px) {
	.container-fluid {
		padding: 0 140px;
	}
}

/* headre */

.header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0px 0;
	z-index: 100;
	transition: all 0.5s ease-in-out;
	background: url(../img/menu-bg.png) repeat;
}

.header.active {
	background-color: #FFFEF2;
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.10);
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: #262a69;
	z-index: -1;
}

.header__wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.header-logo {
	width: 80px;
	transition: all 0.3s ease-in-out;
	position: relative;
	margin-bottom: -11px;
}

.headre-right {
	margin-top: 17px;
}

.toggle-btn {
	width: 30px;
	cursor: pointer;
	z-index: 11111;
}

.toggle-btn div {
	width: 100%;
	height: 2px;
	background-color: #1b1a28;
	margin-top: 10px;
	transition: all 0.3s ease-in-out;
}

header.active .toggle-btn div {
	background-color: #8D5C34;
}

.toggle-btn.open .one {
	transform: rotate(45deg) translate(8px, 8px);
}

.toggle-btn.open .two {
	opacity: 0;
}

.toggle-btn.open .three {
	transform: rotate(-45deg) translate(9px, -9px)
}

.headre-nav>.nav-primary {
	position: fixed;
	bottom: 0;
	left: -100%;
	width: 300px;
	height: 100%;
	background: url(../img/menu-bg.png) repeat;
	padding: 50px 0 0 25px;
	overflow: auto;
	transition: all 0.3s ease-in-out;
}

.headre-nav>.nav-primary.active {
	left: 0;
}

.nav-primary li a {
	color: #070707;
	display: inline-block;
	font-weight: 600;
	font-size: 18px;
	position: relative;
}

.nav-primary li a:hover::before,
.nav-primary li.active a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #262a69;
}

.nav-primary>li>.sub-menu {
	background-color: #fff;
	border-top: 2px solid rgb(12, 12, 12);
	width: 100%;
	padding: 15px;
	display: none;
	transition: all 0.3s ease-in-out;
}

.nav-primary>li.active>.sub-menu.js-toggled {
	display: block;
}

.nav-primary>li>.sub-menu>li>a {
	color: #FFEBDF;
}

.menu-item-has-children {
	position: relative;
}

.sub-menu-toggle {
	position: absolute;
	top: 0;
	right: 0;
	width: 33px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #555;
	font-size: 12px;
	cursor: pointer;
	color: #fff;
}

.sub-menu-toggle::before {
	transform: rotate(90deg);
	color: #fff;
}

.sub-menu-two {
	display: none;
}

.children-has-before .sub-menu-toggle {
	color: #002A68;
}

.sub-menu-children {
	background: #D7B56D;
	padding: 10px 11px;
	display: none;
}

.nav-primary>li>.sub-menu>li>.sub-menu-children>li>a {
	color: #fff;
}

.nav-primary>li>.sub-menu li .sub-menu-children.js-toggled {
	display: block;
}

.nav-primary li {
	position: relative;
	margin-bottom: 5px;
}

@media (min-width:1200px) {


	.header::before {
		height: 40px;
	}

	.headre-left {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.header-logo {
		width: 160px;
		margin-bottom: -26px;
	}

	.inner-header .header-logo {
		width: 160px;
		margin-bottom: -26px;
	}

	.headre-right {
		display: none;
	}

	.headre-nav {
		margin-top: 32px;
	}

	.headre-nav>.nav-primary {
		position: unset;
		width: 100%;
		height: unset;
		padding: 0px 0px 0 0px;
		display: flex;
		background: transparent;
	}

	.nav-primary li {
		margin-left: 30px;
	}

	.nav-primary li a {
		line-height: 78px;
	}

	.nav-primary li a:hover::before,
	.nav-primary li.active a::before {
		height: 9px;
	}


}

/* headre end */


.home-banner {
	position: relative;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0 80px;
}

.home-banner.inner-banner {
	padding: 80px 0 50px;
}

.home-banner.inner-banner.no-banner-img {
	padding: 18px 0 33px;
}

.home-banner::before {
	content: "";
	position: absolute;
	bottom: -39px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(../img/footer-r-bg.png);
	background-size: contain;
}

.inner-header {
	box-shadow: 0 4px 44px rgba(0, 0, 0, 0.10);
}

.inner-banner.home-banner::before {
	content: "";
	position: absolute;
	bottom: unset;
	top: 10px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(../img/footer-r-bg.png);
	background-size: contain;
}

.home-banner img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.banner-overlaw-img {
	width: 200px;
	height: 200px;
}

.image-sectin {
	position: relative;
	padding: 100px 0 100px;
}

.image-sectin::after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(../img/footer-r-bg.png);
	background-size: contain;
}

.image-sectin::before {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(../img/footer-r-bg.png);
	background-size: contain;
}

@media (min-width:1200px) {

	.home-banner {
		padding: 80px 0 180px;
	}

	.home-banner.inner-banner {
		padding: 100px 0 50px;
	}

	.home-banner.inner-banner.no-banner-img {
		padding: 100px 0 0px;
	}

	.banner-overlaw-img {
		width: 380px;
		height: 380px;
	}
}



.icon-text-box {
	position: relative;
	background: #fff;
	padding: 20px;
	margin: -44px 22px 22px 22px;
}

.icon-text-box-section {
	position: relative;
}



.icon-text-box ul li {
	background: #262a69;
	border-radius: 14px;
	padding: 15px 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}

.icon-text-box ul li:last-child {
	margin-bottom: 0;
}

.icon-text-box ul li p {
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	color: #e1e2f9;
	margin-left: 20px;
}

@media (min-width:768px) {
	.icon-text-box ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.icon-text-box ul li {
		width: calc(50% - 15px);
	}

	.icon-text-box ul li span {
		display: block;
	}
}

@media (min-width:1200px) {
	.icon-text-box ul li {
		width: calc(25% - 15px);
		height: auto;
		margin-bottom: 0;
	}

	.icon-text-box {
		margin: -60px 22px 0;
	}
}

@media (min-width:1440px) {
	.icon-text-box {
		max-width: 1400px;
		margin: -60px auto 0 auto;
	}
}

.gallery-section {
	position: relative;
}

.gallery-section::before {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(../img/footer-r-bg.png);
	background-size: contain;
}

.gallery-section::after {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(../img/footer-r-bg.png);
	background-size: contain;
}

.gallery-section,
.content-section {
	padding-top: 40px;
	padding-bottom: 100px;
}

.gallery-section h2,
.content-section h2 {
	color: #262a69;
	padding-bottom: 20px;
}

.events-section {
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}

.events-section h2 {
	color: #fff;
	padding-bottom: 20px;
}

.bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.events-img img{
	width: 100%;
	height: 269px;
	object-fit: cover;
	border-radius: 10px;
	border: 4px solid #fff;
	box-shadow: 0 4px 44px rgba(0, 0, 0, 0.10);
}

.events-img{
	padding-bottom: 30px;
}

.events-content p,
.events-section h2 {
	color: #fff;
}

.btn-div {
	padding-top: 30px;
}

.btn-primary {
	background-color: #fff;
	border: 15px;
	color: #000;
	font-size: 18px;
	font-weight: 600;
	color: #262a69;
	padding: 10px 30px;
}

.gallery-section .btn-primary {
	background-color: #262a69;
	color: #fff;
}

.row.gallery .col-lg-3 {
	padding-bottom: 30px;
}

.row.gallery .col-lg-3 img {
	width: 100%;
}


.content-area {
	padding: 0px 0 100px;
	position: relative;
}

.content-area::after {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(../img/footer-r-bg.png);
	background-size: contain;
}

.events-card.event-details .events-content p,
.events-card.event-details .events-section h2 {
	color: #000;
}

.events-card.event-details .events-content p:first-child{
	font-weight: 700;
}

.section-title{
	padding-bottom: 20px;
}

.content-area h2{
	font-size: 22px;
	padding-bottom: 15px;	
	font-weight: 700;
}

.content-area h3{
	font-size: 18px;
	padding-bottom: 10px;	
	font-weight: 700;
}

.content-area h4{
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 10px;	
}

.content-area ul{
	padding: 0 0px 10px;
}

.content-area ul li{
	position: relative;
	padding-bottom: 8px;
	padding-left: 20px;
	font-size: 14px;
}

.content-area ul li::before{
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #000;
}

.content-area ul li ul{
	padding: 10px 0px 10px;
}

.divider {
    position: relative;
	padding: 50px 0 0;
}

.divider::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(../img/footer-r-bg.png);
    background-size: auto;
    background-size: contain;
}

.events-calendar ul {
	padding: 0 30px 15px;
}

.events-calendar ul li::before{
	content: "";
	background: url(../img/bu.png);
	width: 12px;
	height: 12px;
	border-radius: unset;
	top: 6px;
	left: 0;
}

@media (min-width:768px) {

	.gallery-section,
	.content-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.events-section {
		position: relative;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.events-section h2 {
		color: #fff;
		padding-bottom: 40px;
	}


}

@media (min-width:1200px) {
	.gallery-section {
		padding-top: 80px;
		padding-bottom: 100px;
	}

	.content-area {
		padding: 0px 0 100px;
		position: relative;
	}
	.event-details .events-img {
		width: 400px;
	}

	.event-details .events-content {
		width: calc(100% - 430px);
	}

	.events-card.event-details .events-content p:first-child{
		font-size: 20px;
	}

	.event-details .events-img img {
		border: 6px solid #fff;
	}

	.section-title{
		padding-bottom: 50px;
	}
	
	.content-area h2{
		font-size: 32px;
    	line-height: 47px;
		padding-bottom: 20px;	
	}
	
	.content-area h3{
		font-size: 28px;
		line-height: 38px;
	}
	
	.content-area h4{
		font-size: 24px;
		padding-bottom: 10px;	
	}
	
	.content-area ul{
		padding: 0 0px 15px;
	}

	.content-area ul li ul{
		padding: 10px 0px 0px;
	}
	
	.content-area ul li{
		padding-bottom: 10px;
		padding-left: 26px;
		font-size: 18px;
	}
	
	.content-area ul li::before{
		top: 10px;
	}

	.divider {
		position: relative;
		padding: 90px 0 0;
		margin-top: 30px;
	}

	.events-calendars{
		column-count: 2;
		column-gap: 40px;
	}

	.events-calendar{
		padding-bottom: 15px;
	}

	.events-calendar ul {
		padding: 0 0px 15px;
		padding: 0 30px 15px;
	}
}


footer {
	position: relative;
}

.footer-top {
	position: relative;
	background-color: #242427;
	padding: 50px 0 50px;
}

.footer-top.container {
	position: relative;
	z-index: 3;
}

.footer-top-flex {
	position: relative;
	z-index: 2;
}

.footer-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.footer-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-quick-link h3 {
	font-size: 26px;
	color: #fff;
	font-weight: 500;
	padding-bottom: 20px;
}

.footer-quick-link ul li {
	padding-bottom: 15px;
}

.footer-quick-link ul li a {
	color: #fff;
	font-size: 15px;
	color: #fff;
}

.footer-address h6 {
	font-family: 500;
	font-size: 18px;
	color: #fff;
}

.footer-address p {
	font-size: 18px;
	color: #b2b2b2;
	font-weight: 400;
}

.footer-address p a {
	color: #fff;
}

.social-icon {
	display: flex;
	justify-content: flex-start;
}

.social-icon li {
	margin-right: 15px;
}

.social-icon a {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #666666;
	border-radius: 100%;
	color: #fff;
}

.footer-copyright {
	background-color: #111114;
}

.footer-copyright p {
	color: #575757;
	text-align: center;
	padding: 15px 0;
}

.footer-top-content {
	text-align: center;
	padding: 15px 0 0;
	position: relative;
	z-index: 4;
	margin-top: 30px;
}

.footer-top-content p {
	font-size: 16px;
	color: #666666;
	padding: 0;
}

.footer-top-content p a {
	color: #000;
}


@media (min-width:768px) {
	.footer-top-flex {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
}

@media (min-width:1200px) {
	.footer-quick-link ul {
		column-count: 2;
	}

	.footer-copyright p {
		padding: 15px 0;
	}

	.footer-quick-link h3 {
		font-size: 28px;
		padding-bottom: 36px;
	}

	.footer-quick-link ul {
		column-gap: 90px;
	}

	.footer-quick-link ul li {
		padding-bottom: 0;
	}

	.footer-quick-link ul li a {
		font-size: 18px;
		line-height: 28px;
	}

	.footer-address p {
		line-height: 28px;
	}

	.footer-address h6 {
		font-size: 24px;
		line-height: 32px;
		color: #fff;
		padding-bottom: 15px;
	}

	.social-icon a {
		width: 40px;
		height: 40px;
		font-size: 22px;
	}

	.footer-top a:hover,
	.social-icon a:hover {
		color: #8c8c8c;
	}

}


.inner-body {
	background: #fff;
}


.new-login-box {
	border: #dbdbdb 2px solid;
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.11);
	padding: 20px;
}

.new-login-box h2 {
	padding-bottom: 20px;
}

.new-login-box .login-from {
	margin-bottom: 30px;
}

.border-none {
	border-bottom: none;
}

@media (min-width:1200px) {
	.new-login-box {
		display: flex;
		justify-content: space-between;
		padding: 50px 30px;
	}

	.registration-fees,
	.new-registration {
		width: calc(50% - 30px);
		position: relative;
	}

	.registration-fees::before {
		content: "";
		position: absolute;
		top: 0;
		left: -30px;
		width: 1px;
		height: 100%;
		background: #dbdbdb;
	}
}


.from-col-6,
.from-col-12 {
	padding-bottom: 20px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
}

.from-col-6 label,
.from-col-12 label {
	font-family: "Source Serif 4", serif;
	font-size: 16px;
}

.login-from a {
	font-weight: 600;
	color: #143c85;
}

.dont-account {
	padding-top: 15px;
}


#file-upload {
	/*opacity: 0;
  filter: alpha(opacity=0);*/
	position: absolute;
	left: -9999px;
}

label[for="file-upload"] {
	padding: 0.5em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	width: 100%;
	height: 50px;
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.11);
	padding: 15px;
	border-radius: 15px;
}

.from-row input[type="text"],
.from-row input[type="email"],
.from-row input[type="password"],
.from-row select {

	font-family: "Source Serif 4", serif;
	font-size: 16px;
	height: 40px;
	padding: 10px 15px;
	border-radius: 8px;
	border: #a9a9a9 1px solid;
}

.from-row textarea{
	font-family: "Source Serif 4", serif;
	font-size: 16px;
	height: 100px;
	padding: 10px 15px;
	border-radius: 8px;
	border: #a9a9a9 1px solid;
	resize: none;

}

.from-row input[type="text"]:focus,
.from-row input[type="email"]:focus,
.from-row input[type="password"]:focus {
	outline: none;
}

.select {
	position: relative;
}

.select::after {
	content: "\f107";
	font-family: "fontawesome";
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translate(0, -50%);
	background-size: contain;
	pointer-events: none;
  }

  .btn-submit {
	font-family: "Source Serif 4", serif;
	border: #000000 1px solid;
	border-radius: 15px;
	background: #000000;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	display: inline-block;
	width: 100%;
	padding: 10px 20px;
	text-transform: uppercase;
}

.address{
	padding-bottom: 30px;
}

.address ul li{
	position: relative;
	padding: 0 0 15px 30px;	
	font-family: "Source Serif 4", serif;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	display: inline-block;
	width: 100%;
}

.address ul li a{	
	font-family: "Source Serif 4", serif;
	font-size: 16px;
	font-weight: 600;
	color: #000;
}

.address ul li span{
	position: absolute;
	top: 0px;
	left: 0;
}

.address ul li i{
	color: #000;
	font-size: 16px;
}

@media (min-width:768px) {
	.contact-us-area{
		display: flex;
		justify-content: space-between;
	}

	.contact-us-area-left{
		width: calc(50% - 15px);
	}

	.contact-us-area-right{
		width: calc(50% - 15px);
	}
}



@media (min-width:1200px) {
	.contact-left{
		max-width: 600px;
		margin: 0 auto;
	}
	.from-row {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.login-box {
		border: #dbdbdb 2px solid;
		box-shadow: 0 0 24px rgba(0, 0, 0, 0.11);
		padding: 20px 0 40px;
		max-width: 760px;
		margin: 0 auto;
	}

	.single {
		width: 600px;
		margin: 0 auto;
	}

	.from-row input[type="text"],
	.from-row input[type="email"],
	.from-row input[type="password"] {
		height: 50px;
		padding: 10px 15px;
	}

	.from-row input[type="text"]::placeholder,
	.from-row input[type="email"]::placeholder,
	.from-row input[type="password"]::placeholder {
		font-size: 18px;
	}


	.select select {
		height: 50px;
		padding: 10px 30px;
		font-size: 18px;
	}


	.from-col-6 {
		padding-bottom: 20px;
		width: calc(50% - 15px);
	}

	.from-col-12 {
		padding-bottom: 20px;
		width: 100%;
	}

	.login-from a {
		font-size: 18px;
	}

	.dont-account {
		font-size: 18px;
		font-weight: 500;
		padding-top: 26px;
	}

	.login-title h2 {
		font-size: 38px;
	}

	.login-title {
		padding-bottom: 60px;
	}

	.btn-submit {
		font-size: 24px;
		height: 60px;
	}

	.login-section {
		padding: 50px 0;
	}

	label[for="file-upload"] {
		height: 50px;
		padding: 15px;
		font-size: 18px;
		font-weight: 600;
		color: #000;
	}

	label[for="file-upload"] span {
		background-color: #f2f2f2;
		border: 1px solid #cdcdcd;
		padding: 4px 10px;
		margin: 0 10px;
		font-size: 14px;
	}

	.contact-us-area-left{
		width: calc(40% - 15px);
	}

	.contact-us-area-right{
		width: calc(60% - 15px);
	}

	.address ul li{
		font-size: 18px;
	}
	
	.address ul li a{
		font-size: 18px;
	}

}


.form-group {
	display: block;
	margin-bottom: 15px;
}

.form-group input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.form-group label {
	position: relative;
	cursor: pointer;
}

.form-group label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #0079bf;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}

.form-group input:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 9px;
	width: 6px;
	height: 14px;
	border: solid #0079bf;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}