@charset "utf-8";
/*------------| body frame start |-----------*/

/* font start */
/* font end */

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html{ margin:0px!important;}
html, body {
  width:100%;
  height:100%;
  padding:0px;
  margin:0;
}

body {
  padding:0px;
  margin:0px;
  min-width:320px;
  font-family: 'Merriweather', serif;
  font-weight:300;
  font-style:normal;
  font-size:19px;
	line-height:34px;
  color:var(--blackColor);
  display:flex;
  flex-direction:column;
}

#page-wrap{
  width:100%;
  max-width:100%;
  margin:0 auto;
  position:relative;
  flex:1 0 auto;
  /* padding-top:80px; */
  padding-top:180px;
  z-index:2;
}
footer{flex-shrink:0;}

/* colors start here */
:root{
  --whiteColor:#FFFFFF;
  --blackColor:#1E1E1E;
  --greyColor:#F1F1F1;
  --yellowColor:#EFCB65;
  --yellowLightColor:#FCF6E6;
  --orangeColor:#E0684B;
  --purpleColor:#4060AF;
  --purpleLightColor:#DCC7DF;
  --greenColor:#00BE90;
  --greenDarkColor:#00A57D;
  --greenLightColor:#00AD83;
  --redColor:#ff0000;
}

.yellowLightBG{ background-color:var(--yellowLightColor);}
/* colors end here */

/*=============== tags start ===================**/
section, footer{
position:relative;
overflow:hidden;
clear:both;
width:100%;
}
*:focus, a:hover, a:active, a:focus {
/* outline:0; outline:none!important; */
}

button:focus,
a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  /* outline:none !important;
  border:0; */
}

input:not([type]):focus:not([readonly]), input[type=text]:not(.browser-default):focus:not([readonly]), input[type=password]:not(.browser-default):focus:not([readonly]), input[type=email]:not(.browser-default):focus:not([readonly]), input[type=url]:not(.browser-default):focus:not([readonly]),
 input[type=time]:not(.browser-default):focus:not([readonly]), input[type=date]:not(.browser-default):focus:not([readonly]), input[type=datetime]:not(.browser-default):focus:not([readonly]), input[type=datetime-local]:not(.browser-default):focus:not([readonly]), input[type=tel]:not(.browser-default):focus:not([readonly]),
 input[type=number]:not(.browser-default):focus:not([readonly]), input[type=search]:not(.browser-default):focus:not([readonly]), textarea:focus:not([readonly]),  input[type=tel]:not(.browser-default):focus:not([readonly]){outline: #DCC7DF solid 1px;}

figure{
padding:0px;
margin:0px;
}

a{color:#000;
-webkit-transition:all 0.3s ease-in-out;
-moz-transition:all 0.3s ease-in-out;
-o-transition:all 0.3s ease-in-out;
transition:all 0.3s ease-in-out;
}
a:hover {
color:var(--orangeColor);
}

img {
border:0px;
outline:none;
display:block;
max-width:100%;
height:auto
}
input {margin:0px;}

h1, h2, h3, h4, h5{
  font-family: "elza-condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
  color:var(--blackColor);
}
h6{
  font-family: "elza-condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  color:var(--blackColor);
}
h1, h2, h3, h4, h5, h6 {
  padding:0px;
  margin:0px;
  display:block;
  clear:both;
  width:100%;
  padding-bottom:24px;
  padding-top:14px;
}
h1{font-size:42px; line-height:50px;}
h2{font-size:32px; line-height:40px;}
h3{font-size:24px; line-height:32px;}
h4{font-size:22px; line-height:30px;}
h5{font-size:20px; line-height:28px;}
h6{font-size:20px; line-height:26px;}

ul{
padding:0 0 0 0;
margin:0px;
list-style-type: none;
}

ol{
padding:0 0 0 25px;
margin:0px;
}

ul li{padding:0 0 30px 26px; position: relative;}
ul li::before{
  position: absolute;
  content:'';
  left: 0;
  top:12px;
  width: 9px;
  height: 9px;
  background-color:var(--purpleColor);
  border-radius: 50%;
}
ul li > ul, ol li > ol{ padding-top: 30px;}
ul li > ul li:last-child, ol li > ol li:last-child{ padding-bottom: 0px;}
ul li > ul li::before{
  background-color:var(--purpleLightColor);
  width:14px;
  height:4px;
  border-radius:4px;
  top:14px;
}
ol li{padding:0 0 30px 0;}

ol {
   list-style: none;
   counter-reset: item;
 }
 ol > li {
   counter-increment: item;
    position: relative;
 }
 ol > li:before {
   margin-right: 10px;
   content: counter(item);
   border-radius: 100%;
   color: var(--purpleColor);
   position: absolute;
   left: -25px;
   top:2px;
   font-family:"elza-condensed", sans-serif;
   font-weight:700;
   font-style:normal;
 }

 ol > li > ol {
  /* counter-reset: list; */
  counter-reset: custom-subcounter;
  list-style-type: lower-alpha;
}
ol > li > ol > li {
  list-style: none;
  counter-increment: custom-subcounter;
}
ol > li > ol > li:before {
  /* content: counter(list, lower-alpha) " "; */
  counter-increment: list;
  content:counter(custom-subcounter, lower-alpha) ". ";
}

p{margin:0px; padding:0px 0px 38px 0px;}
p:empty{display:none;}

hr{
padding:0px;
border:0px;
height:1px;
margin:30px auto;
background-color: #000000;
}
strong, b{ font-weight: 700;}
img{height:auto}


input[type='text'],
input[type='email'],
input[type='tel'],
input[type='date'],
input[type='number'],
input[type="password"],
input[type="search"],
textarea{
width:100%;
font-family: 'Merriweather', serif;
font-weight:300;
border:var(--purpleLightColor) solid 1px;
background-color:#ffffff;
font-size:22px;
line-height:30px;
padding:8px 14px;
margin:0px;
color:var(--blackColor);
border-radius:0px;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
}

input[type='submit'], input[type=button], input[type=reset], button, .btn{
font-family: "elza-condensed", sans-serif;
font-weight: 900;
font-style: normal;
font-size:18px;
line-height:26px;
color:var(--whiteColor);
min-width: 120px;
text-decoration: none!important;
margin: 0px;
text-transform: uppercase;
padding: 10px 22px;
padding-top: 15px;
border-radius: 0px!important;
display: inline-block;
background-color:var(--blackColor);
border:0;
cursor: pointer;
text-align: center;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
-webkit-transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
}

input[type='submit']{ text-transform: uppercase;}
input[type='submit']:hover, input[type=button]:hover, input[type=reset]:hover, button:hover, .btn:hover{
	text-decoration:none;
	color:var(--blackColor);
	background-color:var(--whiteColor);
	}

select {
border-radius: 0;
padding: 10px 8px;
width:100%;
border:var(--purpleLightColor) solid 1px;
background-color:var(--whiteColor);
-webkit-appearance: none;
-moz-appearance:none;
appearance:none;
background-image: url('../images/droparrow.svg');
background-size: 20px;
background-position: right 10px center;
background-repeat: no-repeat;
padding-right: 45px;
color:var(--blackColor);
font-family: 'Merriweather', serif;
font-weight: 300;
font-size:22px;
line-height:30px;
	}

select::-ms-expand {
display:none;
}

textarea {
  width:100%;
  height:170px;
  padding:10px 15px;
  box-sizing: border-box;
  border:0px;
  color:#000;
  border:1px solid var(--purpleLightColor);
  background-color:#fff;
  border-radius:0px;
  resize:none;
  font-family:'Merriweather', serif;
  font-weight:300;
  font-style:normal;
  font-size:22px;
  line-height:30px;
  min-height:160px;
  max-height:160px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder {
	color:#8D8D8D;
	opacity:1;
	font-weight:400;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder {
	color:#8D8D8D;
	opacity:1;
	font-weight:400;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder {
	color:#8D8D8D;
	opacity:1;
	font-weight:400;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
input[type="text"]:-moz-placeholder {
	color:#8D8D8D;
	opacity:1;
	font-weight:400;
}

.resWrap{
  width: 100%;
  overflow: auto;
}

table{
  width:100%;
  border:0px;
  text-align:left;
  border-collapse:collapse;
  font-size:16px;
  line-height:22px;
}
tr:nth-of-type(odd){background:#eee;}
td,th{padding:6px;border:1px solid #ccc; border-collapse: collapse;}
th{background:#333;color:white;font-weight:bold;}
table h1, table h2, table h3, table h4, table h5 {margin:0px;}
table td{word-wrap:break-word;}

.wp-caption img{ width: 100%;}
.wp-caption.alignleft, .alignleft, .leftImage{ margin-left: -80px!important; position: relative;}
.wp-caption.alignright, .alignright, .rightImage{ margin-right: -80px!important; position: relative;}
.leftImage{ float: left; display: inline-block;}
.rightImage{ float: right; display: inline-block;}
.leftImage .wp-caption.alignleft, .leftImage .alignleft{ margin-left: 0px!important;}
.rightImage .wp-caption.alignright, .rightImage .alignright{ margin-right: 0px!important;}
.leftImage:before, .rightImage::before{ top:10px!important;}
.wp-caption.alignleft::before, .leftImage:before{
  position: absolute; left: -20px; top:0;
  content:'';
  width: 20px;
  height:70%;
  background-color:var(--greenLightColor);
  z-index: -1;
}
.wp-caption.alignright::before, .rightImage::before{
  position: absolute; right: -20px; top:0;
  content:'';
  width: 20px;
  height:70%;
  background-color:var(--greenLightColor);
  z-index: -1;
}

.alignleft  {
float:left;
margin:10px 20px 10px 0px!important;
}
.alignright  {
float: right;
margin: 10px 0px 10px 20px!important;
}
.aligncenter{
	float: none;
	margin: 30px auto 30px auto;
}
.wp-caption{ max-width:100%;}
.wp-caption-text{ position:relative; color:#a7a8aa; padding: 10px 0 0 0;
font-size:14px; line-height:20px; color: var(--blackColor);}
.postContent img{ margin:30px 0;}

blockquote{
  margin: 0 auto;
  width:100%;
  max-width:100%;
  margin-bottom:40px;
  padding: 20px 20px 20px 20px;
  position: relative;
  font-family: "elza-condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 22px;
  line-height: 30px;
  text-align:center;
}
blockquote p{
  padding: 0px;
}
blockquote em{
  margin-top: 20px;
  display: block;
}
.bannerImageVideo, .grayBg{background-color:var(--greyColor);}
.box{
  position:relative;

}
.box:before{
	content:"";
	display:block;
	padding-top:50%; 	/* initial ratio of 1:1*/
}
.imageHolder{
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
}

.OF-cover {
	/* font-family: 'object-fit: cover'; */
  object-fit: cover;
	font-family: 'object-fit: cover';
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center';
	width: 100%;
	height: 100%;
}

/* clear class css start here */
header:after, section:after{
	visibility: hidden;
	display: block;
	font-size: 0px;
	content: " ";
	clear: both;
	height: 0%;
}
/* clear class css end here */

/* flex css start here */
.grid, .footerHolder,
.subpageListBlock .prioritiesList ul,
.highlightBlock .slideBox,
.partnerPromoBlock .prioritiesList ul,
.infoBoxes,
.alm-paging-content,
.footerLinks,
.prioritiesList ul,.alm-listing{
	clear: both;
	overflow: hidden;
	position: relative;
	margin: 0px;
	list-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flexVerticalCenter, .newsDetailBanner .bannerText, .partnerBanInfo{
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flexHorizontalCenter, .socialLinksHolder{
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flexRowReverse{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.footerBottom{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack:space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footerTop{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack:space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
/* flex css end here */

.hovereffect{ overflow: hidden;}
.hovereffect img, .homeSlider .slideBox img, .discoverSlider .slideBox img, .prioritiesList ul li img, .pageProHolder .box img,
.sectionalSec .pageImage img,
.postListBlock a img,
.listBannerImage a img{
display:block;
position:relative;
-ms-transform:scale(1);
-webkit-transform:scale(1);
transform:scale(1);
}
body.no-device .hovereffect:hover img,
body.no-device .homeSlider .slideBox a:hover img,
body.no-device .discoverSlider .slideBox a:hover img,
body.no-device .pageProHolder a:hover .box img,
body.no-device .pageImage a:hover img,
body.no-device .postListBlock a:hover img,
body.no-device .listBannerImage a:hover img{
  -ms-transform:scale(1.1);
  -webkit-transform:scale(1.1);
  transform:scale(1.1);
}
  .prioritiesList ul li a:hover img{
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
  }
.hovereffect img,
.hovereffect:hover img,
.homeSlider .slideBox img,
.discoverSlider .slideBox img,
.prioritiesList ul li img,
.pageProHolder .box img,
.sectionalSec .pageImage img,
.postListBlock a img,
.listBannerImage a img{
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;}
/* common page animations */

img[data-lazy-src]{
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
img.lazyloaded {
  -webkit-transition: opacity .5s linear 0.2s;
  -o-transition: opacity .5s linear 0.2s;
  transition: opacity .5s linear 0.2s;
  opacity: 1;
}
.lazyloader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 5px solid var(--blackColor);
  border-bottom-color: var(--greenColor);
  -webkit-border-radius:50%;
  -moz-border-radius:50%;
  -khtml-border-radius:50%;
  border-radius:50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin-top: -20px;
  margin-left: -24px;
}

.bannerImageVideo .lazyloader{
  border: 5px solid var(--blackColor);
  border-bottom-color: var(--greenColor);
  z-index: 2;
}
.homeSlider .lazyloader{
  border: 5px solid var(--blackColor);
  border-bottom-color: var(--greenColor);
}

@keyframes rotation {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}

img.lazyloaded ~ .lazyloader, body.logged-in .lazyloader {opacity: 0;}


.entry .videoContainer {
  margin:30px 0;
  position: relative;
  background-color:rgba(000,000,000,0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.entry .videoContainer::before {
  padding-top: 0;
}
.entry .videoContainer iframe{position: absolute;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
width: 100%;
height: 100%;
}


/* link hover effect start */
.footerTop ul.nav-list li a{  background-image: linear-gradient(var(--whiteColor), var(--whiteColor));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 1px;
  transition: background-size 0.2s ease-in-out;
  padding-bottom:2px;
}
.footerTop ul.nav-list li a:hover{background-size: 100% 1px; color:#fff}

.footerBottom a{
  background-image: linear-gradient(#A3A1A1, #A3A1A1);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 1px;
  transition: background-size 0.2s ease-in-out;
  padding-bottom:2px;
}
.footerBottom a:hover{background-size: 100% 1px; color:#A3A1A1}

.entry a{
  background-image: linear-gradient(var(--orangeColor), var(--orangeColor));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 1px;
  transition: background-size 0.2s ease-in-out;
  padding-bottom:2px;
  text-decoration: none;
  color: var(--orangeColor);
}
.entry a:hover{background-size: 100% 1px; color:var(--orangeColor)}


.whatsNewBlock .col.postRecord a h3, .highlightContainer a h3, .pageProHolder a h2,
.cky-notice-des a{
  background-image: linear-gradient(var(--whiteColor), var(--whiteColor))!important;
}
.prioritiesList ul li a h3,
.postListBlock a .postInfo h3,
.discoverSlider .slideBox a h3,
.listBannerImage a h2{
  background-image: linear-gradient(var(--blackColor), var(--blackColor));
}
.whatsNewBlock .col.postRecord a h3,
.prioritiesList ul li a h3,
.highlightContainer a h3,
.pageProHolder a h2,
.postListBlock a .postInfo h3,
.discoverSlider .slideBox a h3,
.listBannerImage a h2,
.cky-notice-des a{
  background-repeat: no-repeat;
  background-position: bottom 2px left;
  background-size: 0% 1px;
  transition: background-size 0.2s ease-in-out;
  padding-bottom:2px;
  text-decoration: none;
  display: initial;
}
.whatsNewBlock .col.postRecord a:hover h3,
.prioritiesList ul li a:hover h3,
.highlightContainer a:hover h3,
.pageProHolder a:hover h2,
.postListBlock a:hover .postInfo h3,
.discoverSlider .slideBox a:hover h3,
.listBannerImage a:hover h2,
body.no-device .cky-notice-des a:hover{background-size: 100% 1px!important;}

body.device .whatsNewBlock .col.postRecord a:hover h3,
body.device .prioritiesList ul li a:hover h3,
body.device .highlightContainer a:hover h3,
body.device .pageProHolder a:hover h2,
body.device .postListBlock a:hover .postInfo h3,
body.device .discoverSlider .slideBox a:hover h3,
body.device .listBannerImage a:hover h2{background-size:0 1px!important;}
/* link hover effect end */
