
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');
/* @import"https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap"; */

:root {
	--color-black: hsl(0, 0%, 10%);
	--color-white: hsl(0, 0%, 100%);
	--color-darken: hsl(0, 0%, 20%);
	--color-pink-100: hsl(336, 95%, 94%);
	--color-pink-200: hsl(338, 91%, 87%);
	--color-pink-300: hsl(339, 90%, 81%);
	--color-pink-400: hsl(339, 88%, 74%);
	--color-pink-500: hsl(339, 82%, 67%);
	--color-pink-600: hsl(339, 76%, 59%);
	--color-pink-700: hsl(339, 67%, 52%);
	--color-pink-800: hsl(339, 68%, 45%);
	--color-pink-900: hsl(339, 69%, 38%);
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)
}

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

html {
	font-size: 100%;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	scroll-behavior: smooth;
}


body {
	font-family: 'Lato', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
	color: var(--color-black);
	background: #f7f8f9;
}

a,
button {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
	border: none;
	outline: none;
	background: none;
}

img,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

img {
	image-rendering: -webkit-optimize-contrast;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: ##981b7f;
  font-weight:600;
  font-size:0.9rem;
}

.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #981b7f;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@-webkit-keyframes slideLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}
}

@keyframes slideLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}
}

@-webkit-keyframes slideRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

@keyframes slideRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0%);
		transform: translateX(0%)
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}

.container {
	max-width: 79rem;
	height: 46px;
	margin: 0 auto;
	padding: 0 1.25rem
}

.brand img{
	max-width: 260px;
	height: auto;
	z-index: 500;
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	-webkit-box-shadow: 0 2px 40px 0 rgba(0,0,0,.08);
	background-color: #fff;
	padding: 20px;
}


.brand2 img{
	display: none;
	}

.header {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: .75rem 0;
	z-index: 100;
	background: var(--color-white);
	-webkit-box-shadow: var(--shadow-medium);
	box-shadow: var(--shadow-medium)
}

.header .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.header-item-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 13%;
	flex: 0 0 13%
}

.header-item-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.header-item-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 12%;
	flex: 0 0 12%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.header-item-right .menu-icon {
	font-size: 1.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 1rem;
	margin-left: 1rem;
	color: #981b7f;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.header .menu>ul>li {
	display: inline-block;
	line-height: 3.125rem;
	margin-left: 0.8rem
}

.header .menu>ul>li>a {
	position: relative;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	border: none;
	outline: none;
	color: var(--color-black);
	text-transform: capitalize;
	-webkit-transition: color .3s ease;
	transition: color .3s ease
}

.header .menu>ul>li .menu-subs {
	position: absolute;
	width: 100%;
	height: auto;
	margin-top: 1.75rem;
	padding: 1rem 2rem;
	z-index: 109;
	opacity: 0;
	visibility: hidden;
	border-radius: .25rem;
	border-top: 3px solid #981b7f;
	background: var(--color-white);
	-webkit-box-shadow: var(--shadow-medium);
	box-shadow: var(--shadow-medium);
	-webkit-transition: all .5s ease;
	transition: all .5s ease
}

.header .menu>ul>li .menu-subs>ul>li {
	line-height: 1
}

.header .menu>ul>li .menu-subs>ul>li>a {
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: .75rem 0;
	border: none;
	outline: none;
	color: var(--color-black);
	text-transform: capitalize;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.header .menu>ul>li .menu-column-1 {
	min-width: 16rem;
	max-width: 20rem
}

.header .menu>ul>li .menu-subs.menu-mega {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li {
	display: block;
	line-height: 1
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a {
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: .5rem 0;
	border: none;
	outline: none;
	color: var(--color-black);
	text-transform: capitalize;
	-webkit-transition: color .3s ease;
	transition: color .3s ease
}

.header .menu>ul>li .menu-subs.menu-column-4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 68rem;
	width: 100%;
	padding: 1.25rem 1rem
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	padding: 0 1rem
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item .title {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	padding: .75rem 0;
	color: var(--color-pink-700);
	text-transform: uppercase;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item.text-center .title {
	text-align: center
}

.header .menu>ul>li .menu-subs.menu-column-4>.list-item img {
	display: block;
	width: 100%;
	height: auto;
	margin-top: .75rem;
	-o-object-fit: cover;
	object-fit: cover
}

.header .menu>ul>li .menu-subs.menu-mega>.list-item>ul>li>a:hover,
.header .menu>ul>li .menu-subs>ul>li>a:hover {
	color: #981b7f;
}

.header-item-right a:hover,
.header .menu>ul>li:hover>a {
	color: #981b7f;
}

.header .menu-mobile-header,
.header .menu-mobile-toggle {
	display: none
}

/* Body part open  */
.header-banner-row {
	max-width: 75rem;
	height: auto;
	overflow:hidden;
	margin: 75px auto 0 auto;
	/* padding: 0.4rem; */
}

.header-banner-row .header-col1 {
	width:100%;
	
}

.newspick-wrapper {
	max-width: 75rem;
	height: auto;
	overflow: hidden;
	margin: 20px auto 0 auto;
}

.newspick-wrapper .col1 {
	width:70.5%;
	height:auto;
	float:left;
	position: relative;
    display: inline-block; /* Make the width of box same as image */
}

.col1 .slick-dots {
	position: absolute;
	top: 295px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.newspick-wrapper .col1 img {
	width:100%; max-width:832px; height:330px; object-fit: cover;
}

.col1 p{
	margin-bottom:18px;
}
	
.col1 a:link {
	text-decoration:none;
	color:#fff;
}

/* (B) RESPONSIVE IMAGE */
.textover img { width: 100%; }


/* (C) POSITION CAPTION */
.textover { position: relative; } /* REQUIRED */
.textover figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
}

.textover figcaption h2{
  color:#FFF;
  font-weight:600;
  text-align:left;
  text-shadow: 1px 1px 1px #000;
}

.textover figcaption p {
  color:#FFF;
  font-weight:normal;
  text-align:left;
  text-shadow: 1px 1px 1px #000;
}


/* (D) CAPTION COSMETICS */
.textover figcaption {
  box-sizing: border-box;
  width: 832px;
  padding: 10px;
  color: white;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* (B2) RESPONSIVE IMAGE */
.textover2 img { width: 100%; }


/* (C2) POSITION CAPTION */
.textover2 { position: relative; } /* REQUIRED */
.textover2 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
}

.textover2 figcaption h2{
  color:#FFF;
  font-weight:600;
  text-align:left;
  text-shadow: 1px 1px 1px #000;
  line-height: 1.8rem;
  font-size:1.1rem;
}


.textover2 figcaption p {
  	color:#FFF;
  	font-weight:normal;
  	text-align:left;
	margin: 5px 0 10px 0;
	border-left: 4px solid #981b7f;
	font-size: 0.8rem;
	line-height: 0.8rem;
}


/* (D2) CAPTION COSMETICS */
.textover2 figcaption {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  color: white;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* (B3) RESPONSIVE IMAGE */
.textover3 img { width: 100%; }


/* (C3) POSITION CAPTION */
.textover3 { position: relative; } /* REQUIRED */
.textover3 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
}

.textover3 figcaption h2{
  color:#981b7f;
  font-weight:600;
  text-align:center;
  text-shadow: 1px 0px 1px #ccc;
  line-height: 1.8rem;
  margin-bottom: 10%;
  background-color: rgba(255,255,255,.6);
  font-size:1.1rem;
}


/* (D3) CAPTION COSMETICS */
.textover3 figcaption {
  box-sizing: border-box;
  width: 100%;
  color: white;
  text-align: center;
}

.post {
	display: flex;
	text-decoration: none;
	color: inherit;
	max-width: 400px;
	position: relative;
	padding: 2rem;
	box-shadow: inset 0 0 0 6px #000, inset -4px -4px 0 6px #CCC;
	background-color: #FFF;
	cursor: pointer; 
	&:before {
		position: absolute; 
		left: 0;
		bottom: 0;
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-color: #000;
		transform-origin: 0 bottom 0;
		transform: scaleY(0);
		transition: .4s ease-out;
	}
	
	&:hover {
		.post-title {
			color: #FFF;
		}
		&:before {
			transform: scaleY(1);
		}
	}
}

.post-title {
	position: relative;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.333;
	transition: .4s ease-out;
}

/* (B4) RESPONSIVE IMAGE */
.textover4 img { width: 100%; height:225px; object-fit: cover;}


/* (C4) POSITION CAPTION */
.textover4 { position: relative; } /* REQUIRED */
.textover4 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
}

.textover4 figcaption h2{
  color:#FFF;
  font-weight:600;
  text-align:left;
  text-shadow: 1px 1px 1px #000;
  line-height: 1.5rem;
  font-size: 1.1rem;
  margin-bottom:20px;
}


.textover4 figcaption p {
  	color:#FFF;
  	font-weight:normal;
  	text-align:left;
	margin: 5px 0 10px 0;
	border-left: 4px solid #981b7f;
	font-size: 0.8rem;
	line-height: 0.8rem;
}


/* (D4) CAPTION COSMETICS */
.textover4 figcaption {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  color: white;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.newspick-wrapper .col2 {
	width:27.5%;
	height:auto;
	float:left;
}

.newspick-wrapper .col1 .col1-content {
	padding: 0.4rem;
	background-color: #fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width: 100%;
	height: auto;
	overflow:auto;
	float: left;
	margin: 0 2% 5px 0;	
}

.newspick-wrapper .col2 .col2-content {
	padding: 0.4rem 1.2rem 0.4rem 1.2rem;
	background-color: #fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width: 100%;
	height: auto;
	overflow:auto;
	float: left;
	margin: 0 0 0 6%;	
}

.newspick-wrapper .col2 img{
	width: 100%;
    max-width: 288px;
    height: auto;
    text-align: center;
    padding: 0;
	max-height:318px;
	object-fit: fill;
}

.title_cat_even {
  border-bottom: 1px solid #981b7f;
  margin-bottom: 10px;
}

.box_even {
  background-color: #981b7f;
  width: 200px;
  padding: 3px;
}

.box_even_cat {
  background-color: #981b7f;
  width: 40%;
  padding: 3px;
}

.title_cat_even1 {
  border-bottom: 1px solid #981b7f;
  margin-bottom: 10px;
}

.box_even1 {
  background-color: #981b7f;
  width: 250px;
  padding: 3px;
}

.title_cat_even_page {
  border-bottom: 1px solid #981b7f;
  margin-bottom: 10px;
}

.title_cat_even_page h1 {
	margin:0 0.3em 0 0.3em;
	padding-right: unset;
    line-height: normal;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    display: -ms-flexbox;
    word-break: keep-all;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
	font-weight:600;
	font-size:18px;
}

.box_even_page {
  background-color: #981b7f;
  width: 40%;
  padding: 3px;
}

.title_cat_odd {
  border-bottom: 1px solid #090909;
  margin-bottom: 10px;
}

.box_odd {
  background-color: #090909;
  width: 200px;
  padding: 3px;
}

.title_cat_odd1 {
  border-bottom: 1px solid #090909;
  margin-bottom: 10px;
}

.box_odd1 {
  background-color: #090909;
  width: 250px;
  padding: 3px;
}

.title_cat_even h2 {
	margin:0 0.3em 0 0.3em;
	padding-right: unset;
    line-height: normal;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    display: -ms-flexbox;
    word-break: keep-all;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
	font-weight:600;
	font-size:18px;
}

.title_cat_even1 h2 {
	margin:0 0.3em 0 0.3em;
	padding-right: unset;
    line-height: normal;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    display: -ms-flexbox;
    word-break: keep-all;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
	font-weight:600;
	font-size:18px;
	clear:left;
}


.box_even_cat h1 {
	margin:0 0.3em 0 0.3em;
	padding-right: unset;
    line-height: normal;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    display: -ms-flexbox;
    word-break: keep-all;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
	font-weight:600;
	font-size:18px;
	clear:left;
}

.title_cat_odd h2 {
	margin:0 0.3em 0 0.3em;
	padding-right: unset;
    line-height: normal;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    display: -ms-flexbox;
    word-break: keep-all;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
	font-weight:600;
	font-size:18px;
}


.title_cat_odd1 h2 {
	margin:0 0.3em 0 0.3em;
	padding-right: unset;
    line-height: normal;
    position: relative;
    text-transform: uppercase;
    color: #fff;
    display: -ms-flexbox;
    word-break: keep-all;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
	font-weight:600;
	font-size:18px;
	clear: left;
}
.box_download {
	background-color: #981b7f;
	border-bottom: 3px solid #000;
	margin: 5px 11.5% 5px 11.5%;
	width: 266px;
}

.box_download .text1 {
color: #fff;
position: relative;
font-size: 17px;
padding: 0.6rem 0.7rem;
text-transform: capitalize;
font-weight:600;
text-align:left;
}

.leaderboard-banner {
	max-width: 75rem;
	height: auto;
	overflow:hidden;
	margin: 0 auto 0 auto;
	padding: 0.5rem 0 0.5rem 0;
}

.maincontent-wrapper {
	max-width: 75rem;
	height: auto;
	overflow: hidden;
	margin: 0 auto 30px auto;
	/* padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); */	
}


/* Left Main body part */
.maincontent-wrapper .left-main-body {
	width:72%;
	height:auto;
	overflow:hidden;
	float:left;
	position: relative;
    display: inline-block; /* Make the width of box same as image */
}

.left-main-body .lefrow1{
	width:100%;
	height:300px;
}

.lefrow1 .leftcol1 {
	padding: 0.0rem;
	background-color:#fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
	width:48%;
	height:289px;
	float:left;
	margin: 0 2% 0 0;
}

.lefrow1 .leftcol1 .slick-dots{
	position: absolute;
	top: 218px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.lefrow1 .leftcol2 .slick-dots{
	position: absolute;
	top: 218px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.lefrow1 .leftcol2 {
	padding: 0.0rem;
	background-color:#fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
	width:48%;
	height:289px;
	float:left;
	margin: 0 2% 0 0;
}

.leftcol1 img {
	object-fit: cover;
	height:250px;
	width:100%;
}
.leftcol2 img {
	object-fit: cover;
	height:250px;
	width:100%;
}

.lefrow2{
	width:100%;
	height:205px;
	margin-top:1.0rem;
}

.lefrow2 .leftcol3 {
	padding: 0.2rem;
	background-color:#fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
	width:31.33%;
	height:194px;
	overflow:hidden;
	float:left;
	margin: 0 2% 0 0;
}

.leftcol3 img {
	object-fit: cover;
	height:188px;
	width:100%;
}

.lefrow3{
	width:100%;
	height:auto;
	overflow:hidden;
	margin-top:0.8rem;
}

.lefrow3 .leftcol4 {
	padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width:98%;
	height:auto;
	overflow:hidden;
	float:left;
	margin: 0 2% 10px 0;	
}

.lefrow3 .leftcol5 {
	width:48%;
	height:225px;
	float:left;
	margin: 0 2% 0 0;
}

.lefrow3 .leftcol5 .slick-dots{
	position: absolute;
	top: 195px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
.lefrow3 .leftcol6 {
	width:50%;
	height:225px;
	float:left;
	margin: 0;
	border-left: 1px solid #e6e6e6;
}

.leftcol6 .video-box {
	margin:0 20px 10px 5px;
	padding:0 0 0 0.4rem;
	border-bottom: 1px dotted #e6e6e6;
	width:100%;
	height:70px;
}

.video-box .vid-thumbnail {
	float: left;
	position: relative;
	margin-right: 15px;
	width:30%;
	max-width:80px;
	height:60px;
}

.video-box .vid-thumbnail img {
	width:80px;
	height:60px;
	object-fit: cover;
}

.video-box .vid-title {
	float: left;
	position: relative;
	width:70%;
}

.vid-title h3 {
	font-size: 0.9rem;
	line-height: 1.2rem;
}

.lefrow4 {
	width:100%;
	height:auto;
	margin-top:1.5%;
	overflow:hidden;
}

.lefrow5{
	width:100%;
	height:auto;
	overflow:hidden;
}

.lefrow5 .leftcol5 {
	padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width:98%;
	height:auto;
	overflow:hidden;
	float:left;
	margin: 1.0rem 2% 10px 0;	
}

.eventList {
	width:100%;
	float:left;
	height:auto;
}

.event-list-details {
	width:100%;
	padding: 0 10px 0 10px;
    margin:0;
	border-right: 2px solid #090909;
	list-style:none;
	float:left;
}

.lefrow4 .leftcol6 {
	padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width:48%;
	height:455px;
	float:left;
	margin: 0 2% 10px 0;
}

.lefrow4 .leftcol7 {
	padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width:58%;
	height:355px;
	float:left;
	margin: 0 2% 10px 0;
}

.lefrow4 .leftcol8 {
	padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width:38%;
	height:355px;
	float:left;
	margin: 0 2% 10px 0;
}

/* extra */
.lefrow6 {
	width:100%;
	height:auto;
	overflow:hidden;
	margin-top:0.9rem;
}

.lefrow6 .leftcol9 {
	padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width:98%;
	height:auto;
	overflow:hidden;
	float:left;
	margin: 0 2% 10px 0;	
}

.leftcol9 .col-ttw-1 {
    position: relative;
    width: 22%;
    max-width: 300px;
    overflow: hidden;
    float: left;
    margin: 0 1.5% 0 1.5%;
}

.leftcol9 .col-ttw-1 img{
	width: 100%;
	height: 130px;
	object-fit: cover;
}
.leftcol9 .col-ttw-1 h1 {
	line-height: 1.2rem;
	font-size: 0.9rem;
	margin-top: 15px;
	border-left: 3px solid #981b7f;
	height: 1.0rem;
}

.leftcol9 .col-ttw-1 h2 {
	line-height: 1.2rem;
	font-size: 1.0rem;
	margin: 11px 0 20px 5px;
}

.lefrow6 .leftcol10 {
	padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	width:98%;
	height:auto;
	overflow:hidden;
	float:left;
	margin: 0 2% 10px 0;	
}

.lefrow6 .leftcol10 img {
	width: 199px;
	height: auto;
	margin: 0 2px 0 2px;
}

.lefrow6 .leftcol10 element {
  width: 180px;
}

/* (C5) POSITION CAPTION */
.textover5 { position: relative; } /* REQUIRED */
.textover5 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
}

.textover5 figcaption h2{
  color:#FFF;
  font-weight:600;
  text-align:left;
  text-shadow: 1px 0px 1px #ccc;
  line-height: 1.8rem;
  font-size:1.1rem;
}


.textover5 figcaption p {
  	color:#FFF;
  	font-weight:normal;
  	text-align:left;
	margin: 5px 0 10px 0;
	border-left: 4px solid #981b7f;
	font-size: 0.8rem;
	line-height: 0.8rem;
}


/* (D5) CAPTION COSMETICS */
.textover5 figcaption {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  color: white;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}
/* extra */
.con_box {
	width: 100%;
	height: auto;
	background-color: #f1f1ef;
	margin: auto;
	padding: 8px;
}

.con_box img {
	position: relative;
	width: 105px;
	height: 105px;
	overflow: hidden;
	text-align: center;
	border: 1px solid #981b7f;
	object-fit: cover;
}

.con-content {
	box-sizing: border-box;
    width: 100%;
	height: auto;
	overflow: hidden;
    padding: 10px;
}

.con-content .con-title {
	float: left;
	position: relative;
}

.con-content .con-title h3 {
	color: #090909;
    font-weight: 600;
    text-align: left;
    text-shadow: 1px 0px 1px #ccc;
    line-height: 1.5rem;
    font-size: 1.1rem;
}

.con-content p {
	box-sizing: border-box;
    width: 100%;
	line-height: 1.5rem;
	font-weight:normal;
	padding-bottom:1px;
}

.leftcol6 .con-list-box { 
	margin:0 5px 10px 0;
	padding:0;
	border-bottom: 1px dotted #e6e6e6;
	width:auto;
	height:auto;
	overflow:hidden;
}
.industry_list-box {
	width:100%; 
	height:120px; 
	margin-bottom: 5px;
	float:left;
}

.industry_list-box .content-left{
	width:49%; float:left; margin-right:1%;
}

.industry_list-box .content-right{
	width:49%; float:left; margin-left:1%;
}

.industry_list-box .con-thumbnail {
	float: left;
	position: relative;
	margin-right: 10px;
	width:111px;
	max-width:101px;
	height:101px;
	margin-bottom: 5px;
}

.industry_list-box .con-title {
	float: left;
	position: relative;
	width:118px;
	
}

.industry_list-box .con-title h3{
	font-size: 1.0rem;
	line-height: 1.2rem;
	
}

.industry_list-box .con-title p{
	font-size: 0.9rem;
	line-height: 1.2rem;
	font-style:italic;
	padding: 5px 0 0 0;
	
}
.con-list-box .con-thumbnail {
	float: left;
	position: relative;
	margin-right: 10px;
	width:111;
	max-width:101px;
	height:101px;
	margin-bottom: 5px;
}

.con-list-box .con-title {
	float: left;
	position: relative;
	width:70%;
}

.con-list-box h3 {
	font-size: 1.0rem;
	line-height: 1.9rem;
}

.con-list-box p{margin-bottom: 5px; font-size: 0.9rem;}

.box_odd1_search {
	width:330px; padding: 0; float:right;
}

.box_odd1_search input[type="text"], select, textarea {
  width: 65%;
  padding: 6px;
  border: 1px solid #34421e;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  margin-bottom: 0;
}

.box_odd1_search input[type="submit"] {
  background-color: #981b7f;
color: white;
padding: 6px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: auto;
font-family: 'Lato', sans-serif;
font-weight: 500;
margin: 5px;
}

.searchbox-wrapper {
  max-width: 75rem;
  height: auto;
  overflow: hidden;
  margin: 5px auto 0 auto;
}

.bodycontent-wrapper {
	max-width: 75rem;
	height: auto;
	overflow: hidden;
	margin: 5px auto 30px auto;
	/* padding: 0.4rem;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15); */	
}

.bodycontent-wrapper .left-main-bodybox {
	width:70.5%;
	height:auto;
	overflow:hidden;
	float:left;
	position: relative;
    display: inline-block; /* Make the width of box same as image */
	background-color: #fff;
	padding: 0.4rem 1rem;
	margin: 0 1.5% 5px 0;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

.left-main-bodybox h1 {
	font-weight: 600;
	text-align: left;
	font-size:1.6rem;
	line-height:2.2rem;
}

.left-main-bodybox p a:link {
	color: #981b7f;
}

.left-main-bodybox p a:hover {
	color: #981b7f;
	text-decoration: underline;
	
}

.left-main-bodybox  .text-date {
  	color:#000;
  	font-weight:normal;
  	text-align:left;
	margin: 5px 10px 5px 0;
	font-size: 0.9rem;
	line-height: 0.8rem;
	float: inherit;
}

.left-main-bodybox .para-border {border-bottom: 1px solid #e7e7e7; text-align:center; padding: 0 0 20px 0; margin: 0 0 20px 0;}

.left-main-bodybox img {width:400px; height:250px; object-fit: cover;}

.left-main-bodybox .video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width:80%;
  margin: 0 10%;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container2 {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width:80%;
  margin: 0 10%;
}

.video-container2 iframe, .video-container2 object, .video-container2 embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.related_post li{
	font-weight:600;
	list-style-type: square;
	line-height: 1.5rem;
	font-size: 1.0rem;
}

.bodycontent-wrapper .left-main-bodypage {
	width:70.5%;
	height:auto;
	overflow:hidden;
	float:left;
	position: relative;
    display: inline-block; /* Make the width of box same as image */
	background-color: #fff;
	padding: 0.4rem 1rem;
	margin: 0 1.5% 5px 0;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}


.NewsList {
	width: 100%;
	height: auto;
	overflow:hidden;
	list-style-type: none;
}

.NewsList h1{
	font-weight: 600;
	text-align: left;
	font-size: 1.2rem;
	line-height: 2.2rem;
}
.NewsList .details {
	width: 100%;
	margin: 12px 0 0;
	overflow: hidden;
}

.NewsList .details img{
	width: 200px;
	float: left;
	height: 130px;
	border: none;
	outline: none;
	margin-right: 20px;
	object-fit: cover;
}

.NewsList .details p {
	margin:0;
}

.NewsList .Indprofdetails {
	width: 100%;
	margin: 12px 0 0;
	overflow: hidden;
}

.NewsList .Indprofdetails img{
	width: 166px;
	float: left;
	height: 181px;
	border: none;
	outline: none;
	margin-right: 20px;
	object-fit: cover;
}

.NewsList .Indprofdetails p {
	margin:0;
}

.NewsList ul{
	list-style: none;
	margin: 0 0 20px 0;
}
.NewsList li{
	padding: 10px;
	list-style: none;
	background: #f0f2f4;
	margin: 10px 5px 5px 5px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

.button-aligh {
	margin:5px;
	text-align:center;
	width:100%;
}

a.read_button{
 display:inline-block;
 padding:0.35em 1.2em;
 border:0.1em solid #FFFFFF;
 margin:0 0.3em 0.3em 30px;
 border-radius:0.12em;
 box-sizing: border-box;
 text-decoration:none;
 font-family: 'Lato', sans-serif;
 font-weight:500;
 color:#FFFFFF;
 text-align:center;
 transition: all 0.2s;
 background-color:#090909;
 float:right;
}
a.read_button:hover{
 color:#fff;
 background-color:#981b7f;
 box-shadow: 0 3px 8px rgb(0 0 0 / 64%);
}

.tag-text {line-height: 2rem;}

.tag-text p a{
	padding: 0.2em 0.3em;
	border: 1px solid #981b7f;
	margin: 0;
	border-radius: 0.12em;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	color: #981b7f;
	text-align: center;
	transition: all 0.2s;
	font-size: 0.9rem;
}

.archive_box_content {
  width: 100%;
  height:auto;
  float: left;
  padding: 10px;
  list-style: none;
  background: #f0f2f4;
  margin: 10px 5px 5px 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

.archive_box_content .archive-col1 {
  width: 25%;
  height: auto;
  float: left;
}

.archive-col1 img{
	cursor: pointer;
    box-shadow: rgb(51 51 51) 5px 5px 5px -4px;
    width: 200px;
    max-height: 225px;
    object-fit: cover;
    object-position: center top;
}

.archive-col2 ul {
	
	margin: 0;
}

.archive-col2 li {
	list-style: inside;
	list-style-type: square;
	color: #000;
	font-size: 1.1rem;
	line-height: 1.8rem;
	padding-left:20px;
}

.archive_box_content .archive-col2 {
  width: 74%;
  float: left;
  padding-left: 2%;
}

.cat-h1 {
	
	width: 100%;
	float: left;
}

.cat-h1 .box1{
	float:left;width: 85%;
}

.cat-h1 .box2{
	float:right;width: 15%;
}
.simplefavorite-button.preset{display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;background:transparent;background-color:#fff;border:1px solid #981b7f;-webkit-box-shadow:0px 0px 2px 0px rgba(0,0,0,0.1),1px 1px 1px 0px rgba(0,0,0,0.1);box-shadow:0px 0px 2px 0px rgba(0,0,0,0.1),1px 1px 1px 0px rgba(0,0,0,0.1);padding: 0.1em 0.3em 0.1em 1.9em;position:relative;-webkit-border-radius:2px;border-radius:2px;cursor:pointer;-webkit-transition:all 200ms ease;-o-transition:all 200ms ease;transition:all 200ms ease; font-size: 0.9rem;}

.simplefavorite-button.preset i {
  position: absolute;
  font-size: 1.1em;
  left: .2em;
	margin: 0.1rem;
}

.simplefavorites-clear{display:inline-block;
 padding: 0.10em 0.6em;
border: 0.1em solid #FFFFFF;
margin: 0 0.3em 0.3em 10px;
 border-radius:0.12em;
 box-sizing: border-box;
 text-decoration:none;
 font-family: 'Lato', sans-serif;
 font-weight:500;
 color:#FFFFFF;
 text-align:center;
 transition: all 0.2s;
 background-color:#981b7f;
 float:right;}

/* Right Main body part */
.maincontent-wrapper .right-main-body {
	width:27.5%;
	height:auto;
	position: relative;
    display: inline-block; /* Make the width of box same as image */
	float:right;
	margin: 0 5px 0 0;
}

.right-main-body .rightcol1 {
	padding: 0.4rem;
	width:100%;
	height:auto;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

.right-main-body .rightcol2 {
	padding: 0.4rem;
	width:100%;
	height:auto;
	overflow:hidden;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	margin:5% 0 0 0;
}

.right-main-body .rightcol2-subs {
	padding: 0.4rem;
	width:100%;
	height:auto;
	overflow:hidden;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	margin:5% 0 0 0;
	background: rgba(0,0,0,0) linear-gradient(to right,#bd289f,#6d145b) repeat scroll 0% 0%;
}
.rightcol2-subs img {padding: 15px}

.rightcol2-subs h2{
	color: 	white;
}

.rightcol2-subs input[type="submit"] {
    background-color: #c54ead;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin: 5px;
}

.signupframe input[type=text]{
	width: 100%;
  padding: 6px;
  border: 1px solid #981b7f;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  margin:5px;
}

.signupframe input[type=email]{
	width: 100%;
  padding: 6px;
  border: 1px solid #981b7f;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  margin:5px;
}

.signupframe select{
	width: 100%;
  padding: 6px;
  border: 1px solid #981b7f;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  margin:5px;
}

.signupframe input[type=submit] {
  background-color: #000000;
	border: 1px solid #fff;
  color: white;
  padding: 8px 20px;
  border-radius: 1px;
  cursor: pointer;
  width:auto;
  font-family: 'Lato', sans-serif;
	font-weight: 500;
	margin:5px;
}

.right-main-body .rightcol3 {
	padding: 0.4rem;
	width:100%;
	height:auto;
	overflow:hidden;
	background-color:#fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
	margin:5% 0 5px 0;
	font-family: 'Lato', sans-serif;
}

.rightcol3 h1{
        margin: 1px 15px 0 0;
        color: #090909;
        text-align: left;
        font-size: 1rem;
        position: relative;
		border-bottom: 1px solid #981b7f;
		
      }

.rightcol3 .regnews-box {
	margin: 0 20px 10px 0;
	padding: 5px 0 0 0;
	width: 100%;
	height: 70px;
}

.regnews-box .reg-thumbnail img{
	float: left;
	position: relative;
	margin-right: 10px;
	width:30%;
	max-width:65px;
	height:65px;
	border: 1px solid #981b7f;
	object-fit: cover;
}

.regnews-box .vid-title {
	float: left;
	position: relative;
	width:72%;
}

.regnews-box h3 {
	font-size: 0.9rem;
	line-height: 1.2rem;
}
 
 .regnews-box p {
	font-size: 0.8rem;
	line-height: 1.2rem;
}
 
 .bodycontent-wrapper .right-main-bodybox {
	width: 27.5%;
	height: auto;
	position: relative;
	display: inline-block;
	float: right;
	margin: 0 5px 0 0;
}

.right-main-bodybox .magcol1 {
  padding: 0.4rem 1.2rem 0.4rem 1.2rem;
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  margin-bottom:5%;
}

.box_download_sidebar {
	background-color: #981b7f;
	border-bottom: 3px solid #000;
	margin-top:5px;
}

.box_download_sidebar .text1 {
color: #fff;
position: relative;
font-size: 17px;
padding: 0.6rem 0.7rem;
text-transform: capitalize;
font-weight:600;
text-align:left;
text-shadow: 1px 1px 1px #000;
}
  
/* footer open */
footer{
	width:100%;
	height:auto;
	background-color:#981b7f;
	position:relative;
	float:left;
	clear:both;
	box-shadow: 0 -3px 5px -5px #000;
}

.footer-content {
	max-width: 75rem;
	overflow:hidden;
	margin: 0 auto 0 auto;
}

.footer-content ul {
  list-style: none;
  margin: 0;
  color:#FFF;
  font-size:0.9rem;
  line-height:1.3rem;
}

.footer-content h2 {
  list-style: none;
  margin: 0;
  color:#FFF;
  font-size:1rem;
  line-height:2.2rem;
  font-weight:bold;
}

.footer-content a{
  margin: 0;
  color:#FFF;
  font-size:0.9rem;
  line-height:1.8rem;
}

.footer-content a:active,
.footer-content a:hover {
	color: #fff;
	text-decoration:underline;
}

.footer-content .footer-col1{
	width: 25%;
	height: auto;
	overflow: hidden;
	float: left;
	padding: 20px;
}

.footer-content .footer-col2{
	width: 25%;
	height: auto;
	overflow: hidden;
	float: left;
	padding: 5px 20px 5px 20px;
}
.footer-content .footer-col3{
	width: 25%;
	height: auto;
	overflow: hidden;
	float: left;
	padding: 5px 20px 5px 20px;
}

.footer-content .footer-col4{
	width: 25%;
	height: auto;
	overflow: hidden;
	float: left;
	padding: 5px 20px 5px 20px;
}

.copyright {
  border-top: 1px solid #5f5f5f;
  font-size: 14px;
  color: #fff;
  padding: 6px;
  text-align: center;
  padding-bottom: 6px;
  background-color: #090909;
  line-height: 1.6rem;
  width:auto;
  overflow:hidden;
}

.fa.fa-envelope {
 font-size: 20px;
padding: 3px 5px 0 0;
}

.fa.fa-circle-phone {
 font-size: 20px;
padding: 3px 5px 0 0;
}
/* footer close */

.amazon-ai-flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  margin: 0px 10px 0px 0px;
  float: right;
}

.wp-block-image {
  margin: 30px 0 1em;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #090909;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width:50px;
  height:50px;
  box-shadow:0 3px 8px rgb(0 0 0 / 64%);
}

#myBtn:hover {
  background-color: #999999;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400);

.mySlides {display: none}


/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}


/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.dot2 {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active1, .dot2:hover {
  background-color: #981b7f;
  border-radius: 50%;
}

.homecover {width:100%;}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.title_cat_even1 .nextprev {float:right;}
.title_cat_odd1 .nextprev {float:right;}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  top: 1%;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 0;
  margin-top: -22px;
  color: #090909;
  font-weight: normal;
  font-size: 14px;
  transition: 0.6s ease;
  user-select: none;
  border: 1px solid #981b7f;
  margin-right:5px;
  display: inline-block;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 2px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #fff;
}

.breadcrumbs {
	font-size:0.8rem;
	color: #778;
	font-variant:normal;
}

.breadcrumbs p{
	margin:10px 0 10px 0;
}

.breadcrumbs a:hover {
  color:#981b7f;
  text-decoration:underline;
}

/* Interview css */

.bodycontent-wrapper .left-main-bodyinterview {
	width:71.5%;
	height:auto;
	overflow:hidden;
	float:left;
	position: relative;
    display: inline-block; /* Make the width of box same as image */
	padding: 0.4rem 1rem;
	

}

.left-main-bodyinterview h1 {
	font-weight: 600;
	text-align: left;
	font-size: 1.3rem;
	line-height: 2.2rem;
	background-color: #981b7f;
	width: 50%;
	margin: 0 0 20px 0;
	padding: 3px 3px 3px 10px;
	color:#fff;
}
.left-main-bodyinterview .left-intvcol1 {width:30%;height:auto;}
.left-intvcol1 img {width:160px; height:160px; float:left; margin-right:15px; object-fit: cover;}

.left-main-bodyinterview .left-intvcol2 {
	color: #898989;
	padding: 10px 0 10px 15px;
	border-left: 2px solid #981b7f;
	font-style:italic;
	width:70%;
	float:left;
	margin-top:2%;
}

.left-main-bodyinterview .interview_topworp {
	padding: 0.8rem;
    background-color: #fff;
    box-shadow: 0 2px 3px rgb(0 0 0 / 15%);
    height: auto;
    overflow: hidden;
    float: left;
    margin: 0 0 5px 0;
}

.left-main-bodyinterview .interview_bottomworp {
	padding: 1rem;
    background-color: #fff;
    box-shadow: 0 2px 3px rgb(0 0 0 / 15%);
    height: auto;
    overflow: hidden;
    float: left;
    margin: 1rem 0 10px 0;
	width: 100%;
}

.left-main-bodyinterview .interview_bottomworp ul li{
	font-weight:500;
	list-style-type: square;
	line-height: 1.5rem;
	font-size: 1.0rem;
}

/* Download page css */
.download-page {
	width:100%;
	height:auto;
	overflow:hidden;
	float:left;
	position: relative;
    display: inline-block; /* Make the width of box same as image */
	padding: 0;
}

.download-page h1 {font-size:1.3rem; font-weight:700; padding:5px; text-align:center; margin-bottom:15px; }
.download-page .col1 {
	width:45%;
	margin-right:4%;
	height:auto;
	float:left;
	background-color:#f0f2f4;
	padding:1.5rem;
}

.download-page .col1 img{
	cursor: pointer;
box-shadow: rgb(51, 51, 51) 5px 5px 5px -4px;
width: 420px;
max-height: 580px;
object-fit: cover;
object-position: center top;
	}
.download-page .col2 {
	width:50%;
	height:auto;
	float:left;
}

.othermag {
	position: relative;
	width: 23%;
	max-width: 300px;
	margin: auto;
	overflow: hidden;
	float: left;
	margin: 0 1% 0 1%;
}

.othermag .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 96%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.othermag:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 100%;
}

.othermag h2 {
	background-color: #981b7f;
	width: auto;
	padding: 4px;
	color:#fff;
	font-size:0.8rem;
	font-weight:600;
	text-align:center;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.othermag:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3{
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details p{
  color: #fff;
  font-size: 1.2rem;
  font-weight:600;
}

.othermag .fadeIn-bottom{
  top: 80%;
}

.archmag {
	position: relative;
	width: 199px;
	height:auto;
	margin: auto;
	overflow: hidden;
	float: left;
	margin: 0 2px 0 2px;
}

.archmag .content-overlay {
  background: rgba(0,0,0,0.4);
  position: absolute;
  height: auto;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.archmag:hover .content-overlay{
  opacity: 1;
}

.archmagcontent-image{
  width: 100%;
}

.archmag h2 {
	background-color: #981b7f;
	width: auto;
	padding: 4px;
	color:#fff;
	font-size:0.8rem;
	font-weight:600;
	text-align:center;
}

.archmag:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.archmag .fadeIn-bottom{
  top: 80%;
}

.tribe-events-single-event-title {
	font-size: 1.8rem;
}

.contact-box {
	width: 100%; 
	height:auto; 
	overflow:hidden; 
	margin-top:20px;
	float:left;
	margin-bottom:20px;
}

.contact-box .col1{
	border-radius: 4px;
	float:left;
	width:49%;
	margin-right:1%;
	border: 1px solid #CCCCCC;
}

.contact-box .col2{
	border-radius: 4px;
	float:left;
	width:49%;
	margin-left:1%;
	border: 1px solid #CCCCCC;	
}
.fa.fa-whatsapp {
    font-size: 1.6rem;
    color: #fff;
    padding: 0;
	background-color: green;
	border-radius: 100%;
	width:22px;
	height:22px;
}


.cli-style-v2 .cli-bar-btn_container .cli-plugin-button {
	margin-top: 5px;
    margin-bottom: 5px;
    width: 220px !important;
    max-width: 220px !important;
    border-radius: 2rem !important;
}
/** Network Page **/
.circulation-box {
	width:100%;
	padding:5px 0 10px 0;
	float:left;
}

.circul-chart1 {
	width:100%;
	padding:10px;
	float:left;
	text-align:center;
}
.circul-chart1 img{
	width:80%; height:auto; padding:10px;
}

.circul-chart2 {
	width:100%;
	padding:10px;
	float:left;
	text-align:center;
	background-color:#cccdcf;
}
.circul-chart2 img{
	width:100%; height:auto; padding:10px;
}


.circulation-box1 {
	width:50%;
	padding:10px;
	float:left;
}

.circulation-box2 {
	width:50%;
	padding:10px;
	float:left;
	height:380px;
}

.cir-col01 {
	width:33.3333%;
	height:150px;
	text-align:center;
	float:left;
	margin-bottom:20px;
}
.cir-col02 {
	width:33.3333%;
	height:150px;
	text-align:center;
	float:left;
	margin-bottom:20px;
}
.cir-col03 {
	width:33.3333%;
	height:150px;
	text-align:center;
	float:left;
	margin-bottom:20px;
}

.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
    position: relative;
    display: none;
}

.app-page-logo {
	width: 100%;
	height: auto;
	overflow: hidden;
	float: left;
}

.app-page-logo img {
	width: 55%;
	height: auto;
	padding: 20px;
}

.app-box {
  width: 100%;
  height: 160px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 40px 10px 40px;
  float: left;
}
#comments {
    clear: both;
    width: 100%;
}
#comments form{
    clear: both;
    width: 60%;
}

.comment-list img {
	display: none;
}

.middle-cont {
	margin: 30% 0 20% 0; text-align:center;
}

.specialissue-box {
  width: 100%;
  padding: 5px 0 10px 0;
  float: left;
}

.specialissue-col01 {
  width: 50%;
  height: 200px;
  text-align: left;
  float: left;
  margin-bottom: 20px;
}

.specialissue-col02 {
  width: 50%;
  height: auto;
  overflow: hidden;
  text-align: left;
  float: left;
  margin-bottom: 20px;
}

.specialissue-box .spl-boxbg-ldd {
  background-color: #fff;
  height: 205px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 64%);
  margin: 10px;
  width: 95%;
  padding-bottom: 15px;
	padding-top: 15px;
	padding-right: 10px;
}
