/* Grid style start */
.row{
  max-width: 1022px;
  margin: 0 auto;
  position: relative;
}
.column{
  padding: 0 0px;
}

.large-1 {
  width: 8.33333%;
}
.large-2 {
  width: 16.66667%;
}
.large-3 {
  width: 25%;
}
.large-4 {
  width: 33.33333%;
}
.large-5 {
  width: 41.66667%;
}
.large-6 {
  width: 50%;
}
.large-7 {
  width: 58.33333%;
}
.large-8 {
  width: 66.66667%;
}
.large-9 {
  width: 75%;
}
.large-10 {
  width: 83.33333%;
}
.large-11 {
  width: 91.66667%;
}
.large-12 {
  width: 100%;
} 
.bottom-space-0 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.bottom-space-0 {
  padding-top: 0;
  margin-top: 0;
}
/* Grid style end*/
.column-section .column{
  padding: 0 20px;
}

img{
  max-width: 100%;
  display: block;
}

a{
  text-decoration: none;
  color: #2e4688;
  position: relative;
}
a:before{
  content: '';
  position: absolute;
  background-color: #2e4688;
  height: 2px;
  width: 0;
  left:0;
  bottom: 0;
  -webkit-transition: all .2s linear; /* Safari */
  transition: all .2s linear;
}
section a:hover:before{
  width: 100%;
}
.sub-menu>li>a:before{
	bottom:15px;
}
.sub-menu a:hover:before{
  width: 0;
}
.sub-menu a:hover{
  opacity: 0.7;
}

.displayflex{
  display: flex;
}

.center-img {
  margin: 0 auto;
}

section{
  padding-top: 15px;
  padding-bottom: 15px;
}

.padding-top{
  padding-top: 85px;
}

.padding-bottom{
  padding-bottom: 85px;
}

.right {
  justify-content: flex-end;
}
.left {
  justify-content: flex-start;
}
.center {
  justify-content: center;
	display:flex;
	align-items:center;
}
.v-center {
  align-items: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}