@-ms-viewport{
  width: device-width;
}
*{
   -webkit-overflow-scrolling: touch;
   margin: 0;
   padding: 0;
}
p{
	margin: 0;
	font-family: 'Open Sans';
}
h1, h2, h3, h4, h5, h6{
	margin: 0;
	font-family: 'Open Sans';
}
a{
	font-family: 'Open Sans';
	text-decoration: none;
}
s{
	opacity: 0.5;
}
.blue{
	color: #003c79;
}
.body{
	width: 100%;
	font-family: 'Open Sans';
}
.page-container{
	width: 1200px;
	margin: 0 auto;
}
.header{
	background: #001138;
	margin: 0 auto;
	padding: 5px 0px;
}
.header-con{
	max-width: 1250px;
	display: flex;
	justify-content: center;
	align-content: center;
	margin: 0 auto;
}
.head-right{
	width: 70%;
	display: flex;
  justify-content: end;
  align-items: center;
}
.head-right-con{
	width: 60%;
	text-align: right;
}
.logo{
	width: 30%;
}
.head-right-con a{
	text-decoration: none;
}
.sb{
	background: #ffcb08;
	color: #000;
	padding: 10px 25px;
	border-radius: 5px;
	text-decoration: none;
}
.join{
	background: #ff0000;
	color: #fff;
	padding: 10px 25px;
	border-radius: 5px;
	text-decoration: none;
}

.sb:hover{
	opacity: 0.8;
	text-decoration: none;
	color: #000;
}
.join:hover{
	opacity: 0.8;
	text-decoration: none;
	color: fff;
}

.mobile{
	display: none;
}
.content-section{
	background: url('img/background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 1em 0em 3em;
}
.content-container{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-promotions{
	padding: 0.5em 0em 3em;
}
.content-promotions button{
	width: 17rem;
	padding: 0.6em 1em;
	margin: 0em 1em;
	text-align: left;
	background: rgb(0,111,223);
	background: linear-gradient(90deg, rgba(0,111,223,1) 0%, rgba(0,60,121,1) 100%);
	border: none;
	border-radius: 5px;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
}
.content-promotions button:hover{
	transition: 1;
	background: #003c79;
	color: #ffcb08;
}
.content-promotions button i{
	background: #001138;
	color: #fff;
	font-size: 20px;
	padding: 0.5em;
	border-radius: 5px;
}

.content-text h1{
	font-size: 95px;
	line-height: 1;
	font-weight: 900;
	padding-bottom: 10px;
}
.content-text p{
	font-size: 23px;
	line-height: 1.5;
}
.content-sb-links{
	background: #003c79;
	padding: 1em;
}
.content-sb-links p{
	color: #fff;
}
.redirections{
	display: flex;
} 
.redirections a{
	background: #ffcb08;
	text-decoration: none;
	color: #000;
	border-radius: 5px;
	padding: 0.5em 0.7em;
	margin: 0em 0.3em;
}

.seo-content{
	padding: 1em 0.5em;
}
.seo-content p{
	line-height: 1.6;
	margin-bottom: 15px;
}
.seo-content h1, .seo-content h2, .seo-content h3{
	margin-bottom: 15px;
}
.seo-intro h1{
	color: #003c79;
	text-align: center;
}
.seo-box-sep{
	background: #f7f7f7;
	padding: .5em 1em;
	margin: .8em 0em;
	border-radius: 10px;
}
.seolink{
	color: #003c79;
	font-weight: 900;
}

.footer{
	background: #001138;
	color: #fff;
	padding: 0.5em;
	text-align: center;
}
.footer p{
	font-size: 14px;
	text-align: center;
	margin: 0 auto;
}


/*--------Accordion-------*/
.accordion {
  background-color: #033c79;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #001138;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 1px 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p{
	margin: 10px 0px;
}


@media  (max-width: 767px){
	.web{
		display: none;
	}
	.page-container{
		width: auto;
		margin: 0 auto;
	}
	.header-con {
	  max-width: 100%;
	  display: block;
	  justify-content: center;
	  align-content: center;
	  margin: 0 auto;
	  text-align: center;
	}
	.head-right-con {
		width: 100%;
		text-align: center;
		padding: 10px 0px;
		display: flex;
		justify-content: center;
	}
	.logo {
	    width: 100%;
	}
	.head-right {
	  width: 100%;
	  display: block;
	  justify-content: center;
	  align-items: center;
	}
	.sb {
	    width: 140px;
	    margin: 0px 2px;
	}
	.join{
			width: 140px;
			margin: 0px 2px;
	}
	.content-container{
		width: 100%;
		margin: 0 auto;
		display: block;
		align-items: center;
		justify-content: center;
	}

	.mobile{
		display: block;
/*		margin: 0px 5px;*/
	}
	.content-promotions {
	    padding: 0.5em 0em 1em;
	}
	.content-promotions button{
		width: 92%;
		padding: 0.6em 1em;
		margin: 0.5em 1em;
	}
	.content-promotions button:hover{
		transition: 1;
		background: #003c79;
		color: #ffcb08;
	}
	.content-promotions button i{
		background: #001138;
		color: #fff;
		font-size: 20px;
		padding: 0.5em;
		border-radius: 5px;
	}
	.content-img img{
		width: 100%;
	}
	.content-text h1{
		font-size: 45px;
		line-height: 1;
		font-weight: 900;
		padding-bottom: 10px;
		text-align: center;
	}
	.content-text p{
		font-size: 18px;
		line-height: 1.5;
		text-align: center;
		padding-bottom: 1em;
	}
	.content-sb-links p {
	    color: #fff;
	    padding: 0em 0em 0em;
	}
	.content-sb-links {
	    background: #003c79;
	    padding: 0.5em 1em 0.2em;
	}
	.redirections a {
    background: #ffcb08;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    padding: 0.3em;
    margin: 1em 0.3em;
    font-size: 13px;
    text-wrap: wrap;
	}
	.seo-intro h1 {
	  font-size: 22px;
	}
	.seo-content h2{
		font-size: 20px;
	}
	.seo-content h3{
		font-size: 18px;
	}
	.accordion {
	  padding: 10px;
	}
}

@media (min-width: 768px) and (max-width: 1280px){
	.page-container{
		width: auto;
		margin: 0 auto;
	}
	.seo-intro h1 {
	  font-size: 24px;
	}
	.seo-content h2{
		font-size: 22px;
	}
	.seo-content h3{
		font-size: 20px;
	}
	.head-right-con {
		width: 100%;
		text-align: center;
		padding: 10px 0px;
		display: flex;
		justify-content: end;
	}
	.header-con {
	  max-width: 100%;
	  display: flex;
	  justify-content: center;
	  align-content: center;
	  margin: 0 auto;
	  text-align: center;
	}
	.head-right-con {
		width: 100%;
		text-align: center;
		padding: 25px 0px 0px;
		display: flex;
		justify-content: center;
	}
	.logo {
	    width: 100%;
	}
	.head-right {
	  width: 69%;
	  display: block;
	  justify-content: center;
	  align-items: center;
	}
	.head-right-con{
		width: 100%;
		text-align: center;
		justify-content: end;
	}
	.logo{
		text-align: left;
		width: 30%;
	}
	.sb {
	    width: 140px;
	    margin: 0px 2px;
	}
	.join{
			width: 140px;
			margin: 0px 2px;
	}
	.content-container{
		width: 100%;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.web{
		display: none;
	}
	.mobile{
		display: block;
	}
	.content-section {
	    padding: 1em 0.5em 1em;
	}
		.content-promotions {
		    padding: 0.5em 0em 1em;
		}
		.content-promotions button{
				width: 90%;
				padding: 0.6em 1em;
				margin: 0.5em 1em;
				font-size: 14px;
		}
		.content-promotions .content-container{
			justify-content: space-evenly;
		}
		.content-main .content-container{
			display: block !important;
		}
		.content-promotions button:hover{
			transition: 1;
			background: #003c79;
			color: #ffcb08;
		}
		.content-promotions button i{
			background: #001138;
			color: #fff;
			font-size: 20px;
			padding: 0.5em;
			border-radius: 5px;
		}
		.content-img {
			text-align: center;
		}
		.content-img img{
			width: 80%;
			text-align: center;
		}
		.content-text h1{
			font-size: 45px;
			line-height: 1;
			font-weight: 900;
			padding-bottom: 10px;
			text-align: center;
		}
		.content-text p{
			font-size: 16px;
			line-height: 1.5;
			text-align: center;
			padding-bottom: 1em;
		}
		.content-sb-links p {
		    color: #fff;
		    padding: 0em 0em 0em;
		    font-size: 15px;
		}
		.content-sb-links {
		    background: #003c79;
		    padding: 0.5em 1em 0.2em;
		}
		.redirections a {
	    background: #ffcb08;
	    text-decoration: none;
	    color: #000;
	    border-radius: 5px;
	    padding: 0.3em;
	    margin: 1em 0.3em;
	    font-size: 13px;
	    text-wrap: wrap;
		}

}
/*
@media  (min-width: 1024px) and (max-width: 1280px){


}*/