@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');
/* 
.baloo-2-<uniquifier> {
  font-family: "Baloo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}*/

body {
	font-family: "Baloo 2", sans-serif;
	color: #000;
	font-size:16px;
	font-weight:normal;
	line-height: 1.8;
}
.mt-100 {
	margin-top: 100px;
}
.mb-20 {
	margin-bottom:20px;
}
.mt-80 {
	margin-top: 80px;
}
/*color codes*/

.light-amber {
	color:#ffd87d;
}
.orange {
	color:#ffc41b;
}
.golden-orange {
	color:#f9a71c;
}
.warm-orange {
	color:#fcba65;
}
.red {
	color:#e9292c;
}
.deep-red {
	color:#b82e31;
}
.sec-1 {
	float:left;
	width:100%;
	clear:both;
	margin-bottom:50px;
	background:#F9F3E2;
	padding:50px 0;
}
.grey-bg {
	background:#e4e4e4;
}
.sec-2 {
	float:left;
	width:100%;
	clear:both;
	margin-bottom:60px;
}
.sec-3, .sec-4, .sec-5, .sec-6 {
	float:left;
	width:100%;
	clear:both;
	margin-bottom:60px;
}
a {
	color:#000000;
	text-decoration:none;
}
a:hover {
	color:#fdb813;
	text-decoration:none;
}
.main-title h2 {
	font-family: "Baloo 2", sans-serif;
	font-size:42px;
	line-height:36px;
	color:#e9292c;
	font-weight:bold;
	margin-top:0;
	/*	margin-bottom:38px;*/
	text-transform:capitalize;
	position:relative;
}
.main-title h2 {
	color:#000;
	display:inline-block;
	position:relative;
}
.main-title h3 {
	font-family: "Baloo 2", sans-serif;
	font-size:30px;
	line-height:30px;
	color:#e9292c;
	font-weight:bold;
	margin-top:0;
	text-transform:uppercase;
}
.main-title h5 {
	font-family: "Baloo 2", sans-serif;
	font-size:13px;
	line-height:13px;
	color:#e9292c;
	font-weight:bold;
	margin-bottom:30px;
	margin-top:0;
}
.text-left h2 {
	text-align:left;
}
.white {
	color:#fff !important;
}
.white h2 {
	color:#fff !important;
}
.white-btn {
	color:#fff;
	border-color:#fff;
}
/*=================================================
buttons
===================================================*/
.ClsButton {
	font-family: "Baloo 2", sans-serif !important;
	width:88px !important;
	height:inherit !important;
	font-size:16px !important;
	color:#E8292B !important;
	font-weight:bold !important;
	text-transform:uppercase;
	border-radius:50px 0 50px 50px !important;
	border:2px solid #E8292B;
	position:relative;
	overflow:hidden;
}
.btn-primary, .button, .size, .ClsButton {
	font-size:16px;
	background:none;
	color:#E8292B;
	font-weight:600;
	text-decoration:none;
	padding:8px 28px;
	text-transform:uppercase;
	border-radius:50px 0 50px 50px !important;
	border:2px solid #E8292B;
	position:relative;
	overflow:hidden;
}
 .btn-primary::before, .button::before, .size::before, .ClsButton::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #E8292B; /* fill color */
 transform: scaleY(0);
 transform-origin: bottom;
 transition: transform 0.8s ease;
 z-index: 0;
 border-radius:50px 0 50px 50px;
}
 .btn-primary span, .button span, .size span, .ClsButton span, .btn-primary span::after, .button span::after, .size span::after, .ClsButtonspan::after {
 position:relative;
 z-index:2;
}
 .btn-primary span::after, .button span::after, .size span::after, .ClsButtonspan::after {
 content:'';
 display:inline-flex;
 background:url(../images/btn-arrow-red.png) no-repeat;
 background-position:center center;
 background-size:cover;
 width:10px;
 height:16px;
 margin-left:15px;
 position: relative;
 top: 3px;
}
 .btn-primary:hover span::after, .button:hover span::after, .size:hover span::after, .ClsButton:hover span::after {
 content:'';
 display:inline-flex;
 background:url(../images/btn-arrow-white.png) no-repeat;
 background-position:center center;
 background-size:cover;
 width:10px;
 height:16px;
 margin-left:15px;
 position: relative;
 top: 3px;
}
.btn-primary:hover, .button:hover, .size:hover, .ClsButton:hover {
	font-size:16px;
	color:#fff !important;
	font-weight:600;
	text-decoration:none;
	padding:8px 28px;
	text-transform:uppercase;
	border-radius:0px 50px 50px 50px !important;
	border:2px solid #E8292B;
	background-color:none !important;
}
 .button:hover::before, .btn-primary:hover::before, .size:hover::before, .ClsButton:hover::before {
 transform: scaleY(1);
border-radius:0px 50px 50px 50px !important;
z-index:1;
}
.btn-white {
	font-size:16px;
	background:none;
	color:#fff;
	font-weight:600;
	text-decoration:none;
	padding:8px 28px;
	text-transform:uppercase;
	border-radius:50px 0 50px 50px !important;
	border:2px solid #fff;
	position:relative;
	overflow:hidden;
}
 .btn-white::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #fff; /* fill color */
 transform: scaleY(0);
 transform-origin: bottom;
 transition: transform 0.8s ease;
 z-index: 0;
 border-radius:50px 0 50px 50px;
}
 .btn-white span, .btn-white span::after {
 position:relative;
 z-index:2;
}
 .btn-white span::after {
 content:'';
 display:inline-flex;
 background:url(../images/btn-arrow-white.png) no-repeat;
 background-position:center center;
 background-size:cover;
 width:10px;
 height:16px;
 margin-left:15px;
 position: relative;
 top: 3px;
}
 .btn-white:hover span::after {
 content:'';
 display:inline-flex;
 background:url(../images/btn-arrow-red.png) no-repeat;
 background-position:center center;
 background-size:cover;
 width:10px;
 height:16px;
 margin-left:15px;
 position: relative;
 top: 3px;
}
.btn-white:hover {
	font-size:16px;
	color:#E8292B !important;
	font-weight:600;
	text-decoration:none;
	padding:8px 28px;
	text-transform:uppercase;
	border-radius:0px 50px 50px 50px !important;
	border:2px solid #fff;
	background-color:none !important;
}
 .btn-white:hover::before {
 transform: scaleY(1);
border-radius:0px 50px 50px 50px !important;
z-index:1;
}
.btn-download {
	font-size:16px;
	background:none;
	color:#fff;
	font-weight:600;
	text-decoration:none;
	padding:8px 28px;
	text-transform:uppercase;
	border-radius:50px 0 50px 50px !important;
	border:2px solid #E8292B;
	position:relative;
	overflow:hidden;
	background:#E8292B;
}
.download-qr {
	background:#FBB865;
	border:1px solid #FBB865;
}
 .btn-download::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #fff; /* fill color */
 transform: scaleY(0);
 transform-origin: bottom;
 transition: transform 0.8s ease;
 z-index: 0;
 border-radius:50px 0 50px 50px;
}
 .btn-download span, .btn-download span::after {
 position:relative;
 z-index:2;
}
 .btn-download span::after {
 content:'';
 display:inline-flex;
 background:url(../images/download-icon.png) no-repeat;
 background-position:center center;
 background-size:cover;
 width:12px;
 height:21px;
 margin-left:15px;
 position: relative;
 top: 3px;
}
 .btn-download:hover span::after {
 content:'';
 display:inline-flex;
 background:url(../images/download-icon-red.png) no-repeat;
 background-position:center center;
 background-size:cover;
 width:12px;
 height:21px;
 margin-left:15px;
 position: relative;
 top: 3px;
}
.btn-download:hover {
	font-size:16px;
	color:#E8292B !important;
	font-weight:600;
	text-decoration:none;
	padding:8px 28px;
	text-transform:uppercase;
	border-radius:0px 50px 50px 50px !important;
	border:2px solid #E8292B;
	background-color:none !important;
}
 .btn-download:hover::before {
 transform: scaleY(1);
border-radius:0px 50px 50px 50px !important;
z-index:1;
}
/*button subscribe*/

.btn-subscribe {
	font-size:16px;
	background:none;
	color:#fff;
	font-weight:600;
	text-decoration:none;
	padding:8px 28px;
	text-transform:uppercase;
	border-radius:50px 0 50px 50px !important;
	border:2px solid #fff;
	position:relative;
	overflow:hidden;
}
 .btn-subscribe::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: #fff; /* fill color */
 transform: scaleY(0);
 transform-origin: bottom;
 transition: transform 0.8s ease;
 z-index: 0;
 border-radius:50px 0 50px 50px;
}
 .btn-subscribe span, .btn-subscribe span::after {
 position:relative;
 z-index:2;
}
 .btn-subscribe span::after {
 content:'';
 display:inline-flex;
 background:url(../images/na-btn-icon.png) no-repeat;
 background-position:center center;
 background-size:cover;
 width:39px;
 height:20px;
 margin-left:15px;
 position: relative;
 top: 3px;
}
 .btn-subscribe:hover span::after {
 content:'';
 display:inline-flex;
 background:url(../images/na-btn-icon-red.png) no-repeat;
 background-position:center center;
 background-size:cover;
 width:39px;
 height:20px;
 margin-left:15px;
 position: relative;
 top: 3px;
}
.btn-subscribe:hover {
	font-size:16px;
	color:#E8292B !important;
	font-weight:600;
	text-decoration:none;
	padding:8px 28px;
	text-transform:uppercase;
	border-radius:0px 50px 50px 50px !important;
	border:2px solid #fff;
	background-color:none !important;
}
 .btn-subscribe:hover::before {
 transform: scaleY(1);
border-radius:0px 50px 50px 50px !important;
z-index:1;
}
/*======================================================================*/








.view-more {
	font-size:14px;
}
.white {
	color:#fff !important;
}
.view-more {
	font-size:14px;
	margin-left:20px;
}
.white, .white:hover {
	color:#fff !important;
}
.nl-bcn {
	float:left;
	width:100%;
	margin-top:52px;
}
.csreq-form-btn {
	float:left;
	width:100%;
	margin-top:30px;
	text-align:right;
}
.btn-hldr {
	float:left;
	width:100%;
	margin-bottom:15px;
}
.hldr-left {
}
.kh-sec {
	float:left;
	width:100%;
	margin-bottom:100px;
}
/*==============================================================
IR HOME PAGE  CSS STARTS HERE
================================================================*/
.sec-1 {
	position:relative;
}


/* TOP triangles */
.sec-1::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 20px;
 background:
 linear-gradient(135deg, #fff 25%, transparent 25%) 0 0,  linear-gradient(225deg, #fff 25%, transparent 25%) 0 0;
 background-size: 20px 20px;
 background-repeat: repeat-x;
}
/* Bottom triangles */
.sec-1::after {
content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 20px;
 background:
 linear-gradient(45deg, #fff 25%, transparent 25%),  linear-gradient(-45deg, #fff 25%, transparent 25%);
 background-size: 20px 20px;
 background-repeat: repeat-x;
}
.sec-1 .main-title {
	margin-bottom:38px;
}
.sec-1 .main-title h2 {
	text-transform:uppercase;
	color:#e9292c;
}
.sec-1 .main-title h2 span {
	color:#000;
	display:block;
}
.qt-sec {
	float:left;
	width:100%;
}
.qt-sec, .graph-sec, .stk-footer {
	float:left;
	width:100%;
}
.stk-title {
	font-size: 30px;
	line-height:41px;
	font-weight:bold;
	color:#e9292c;
	margin-bottom:0;
	text-transform:uppercase;
}
.stk-prcsec {
	float:left;
	width:100%;
	margin-bottom:30px;
}
.stk-price {
	font-size:80px;
	line-height:80px;
	font-weight: bold;
	color: #000000;
	display: inline-block;
}
.ChgUp:after {
	content: url(../images/Up.png);
	width: 16px;
	height: 11px;
	display: inline-block;
	margin-left:20px;
}
.ChgDown:after {
	content: url(../images/Down.png);
	width: 16px;
	height: 11px;
	display: inline-block;
	margin-left:20px;
}
.stk-chg {
	font-family: "Baloo 2", sans-serif;
	display: inline-block;
	margin-left: 15px;
	color: #000;
	font-size:30px;
	line-height:41px;
	font-weight:400;
}
.stk-chg span {
	font-family: "Baloo 2", sans-serif;
	color: #5A5C5D;
}
.chgUp {
	color: #5A5C5D;
}
.chgDown {
	color: #5A5C5D;
}
.ohlv-sec {
	float: left;
	width: 100%;
	text-align:left;
	position:relative;
}

.deco-item-right{
	width:100%;
	height:auto;
	position:relative;
}
.deco-item-right::after{
		 content:'';
 display:inline-flex;
 background:url(../images/stk-bg-food-1.png) no-repeat;
 width:215px;
 height:400px;
 background-position:center center;
 background-size:cover;
 position:absolute;
 right:0;
 
 top:-241px;
 
}


.open, .high, .low, .vol {
	float:left;
	width:100%;
	font-family: "Baloo 2", sans-serif;
	color: #000;
	width:100%;
	padding-bottom:20px;
	margin-bottom:20px;
	border-bottom:4px solid #F9A71C;
	display:flex;
	align-items:center;
}
.vol {
	border-bottom:none;
}
.ohlv-title {
	float:left;
	width:50%;
	font-weight: 500;
	color:#000000;
	font-size:26px;
	line-height:26px;
	text-align:left;
}
.ohlv-val {
	float:left;
	width:50%;
	font-weight: bold;
	color:#000000;
	font-size:60px;
	line-height:60px;
	text-align:right;
}
.rm-btn-sec {
	float:left;
}
.stk-foot {
	float:left;
	width:100%;
	margin-top:58px;
	display:flex;
	gap:15px;
}
.stk-foot .rm-btn-sec {
	float:left;
	width:30%;
}
.eod {
	float:left;
	width:70%;
	text-align:right;
	font-size:16px;
	line-height:17px;
	color:#000;
	text-transform:capitalize;
	font-weight:500;
	display:flex;
	justify-content: flex-end;
	align-items: center;
}
/*==============================================================
BURSA SECTION CSS STARTS HERE
================================================================*/
 
 .sec-2 {
	min-height:752px;
}
.sec-2 .main-title {
	float:left;
	width:100%;
	margin-bottom:38px;
	text-align:center;
}
.sec-2 .main-title h2 {
	color:#000;
	font-weight:500;
}
.sec-2 .main-title h2 span {
	color:#E8292B;
	font-weight:bold;
	display:block;
}
.bursa-ann-sec {
	font-family: "Baloo 2", sans-serif;
	float:left;
	width:100%;/*padding:110px 0;*/
	position:relative;
	min-height:700px;
}
.regular {
	float:left;
	width:100%;
}
.ba-limage {
	float:left;
	width:100%;
	background-image:url(../images/ba-big-bg.png);
	background-size:cover;
	background-position:center center;
	border-radius:50px;
	height:600px;
}
.ba-left-img {
	position:absolute;
}
.ba-right-slide {
	position:absolute;
	top:170px;
	right:0;
}
 .bursa-ann-sec > [class*="col-"] {
 padding:0;
}
.bursa-ann-sec .main-title {
	margin-top:40px;
	margin-bottom:90px;
	color:#fff;
}
.bursa-ann-sec .main-title h2 {
	margin-bottom:0px;
}
.bursa-ann-sec .ba-footer {
	margin-top:0;
	position:absolute;
	bottom:0;
}
.ba-item {
	color: #fff;
	margin:0 0px;
	text-align:left;
	min-height:350px;
}
.line-bar {
	border-bottom: 1px solid #BFBFBF;
	float: left;
	width: 77%;
	margin-top: 58px;
	margin-bottom: 58px;
}
.ba-wrap {
	float:left;
	font-family: "Baloo 2", sans-serif;
	background: #fff;
	/*margin:6px 15px;*/
	padding:60px;
	color:#000;
	text-align:left;
	border-radius: 50px 0 50px 0;
	display:block;
	cursor:pointer;
	font-size:16px;
	line-height:16px;
	font-weight:normal;
	box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	position:relative;
}
.wrap-red {
	background:#E8292B;
	color:#fff;
}
.wrap-orange {
	background:#F9A71C;
	color:#fff;
}
/*.ba-item-cont {
	color:#000000;
	background:#fff;
	font-size:16px;
	line-height:16px;
	font-weight:normal;
}*/
.ba-item-cont .ba-cont {
	float:left;
	width:100%;
	color:#fff;
	font-size:20px;
	line-height:25px;
	margin-bottom:30px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* number of lines to show */
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
.ba-item-cont:hover {
	color:#000;
	background:#fff;
	font-size:16px;
	line-height:16px;
	font-weight:normal;
	display:block;
}
.ba-item-cont:hover .ba-cont {
	color:#000;
	cursor:pointer;
}
.ba-cal {
	float:left;
	width:100%;
	color:#fff;
	font-size:20px;
	line-height:19px;
	margin-bottom:20px;
}
.ba-cal span {
	display:block;
}
.ba-cont {
	color: #fff;
	font-size: 20px;
	line-height: 20px;
}
.ba-footer {
	float:left;
	width:100%;
	margin-top:25px;
	text-align:left;
}
.bursa-ann-sec .slick-prev {
	position:absolute !important;
	bottom:-65px !important;
	right:214px !important;
}
.bursa-ann-sec .slick-next {
	position:absolute !important;
	bottom:-65px !important;
	right:145px !important;
}
/*==============================================================
Press Releases SECTION CSS STARTS HERE
================================================================*/
 .sec-3 {
	min-height:752px;
}
.sec-3 .main-title {
	float:left;
	width:100%;
	margin-bottom:38px;
	text-align:center;
}
.sec-3 .main-title h2 {
	color:#000;
	font-weight:500;
}
.sec-3 .main-title h2 span {
	color:#E8292B;
	font-weight:bold;
	display:block;
}
.mnpr-ann-sec {
	font-family: "Baloo 2", sans-serif;
	float:left;
	width:100%;/*padding:110px 0;*/
	position:relative;
	min-height:700px;
}
.regular {
	float:left;
	width:100%;
}
.mnpr-limage {
	float:left;
	width:100%;
	background-image:url(../images/mn-pr-big-bg.png);
	background-size:cover;
	background-position:center center;
	border-radius:50px;
	height:600px;
}
.mnpr-left-img {
	position:absolute;
}
.mnpr-right-slide {
	position:absolute;
	top:170px;
	right:0;
}
 .mnpr-ann-sec > [class*="col-"] {
 padding:0;
}
.mnpr-ann-sec .main-title {
	margin-top:40px;
	margin-bottom:90px;
	color:#fff;
}
.mnpr-ann-sec .main-title h2 {
	margin-bottom:0px;
}
.mnpr-ann-sec .mnpr-footer {
	margin-top:0;
	position:absolute;
	bottom:0;
}
.mnpr-item {
	color: #fff;
	margin:0 0px;
	text-align:left;
	min-height:350px;
}
.line-bar {
	border-bottom: 1px solid #BFBFBF;
	float: left;
	width: 77%;
	margin-top: 58px;
	margin-bottom: 58px;
}
.mnpr-wrap {
	float:left;
	font-family: "Baloo 2", sans-serif;
	background: #fff;
	/*margin:6px 15px;*/
	padding:60px;
	color:#000;
	text-align:left;
	border-radius: 50px 0 50px 0;
	display:block;
	cursor:pointer;
	font-size:16px;
	line-height:16px;
	font-weight:normal;
	box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	position:relative;
}
.wrap-orange {
	background:#F9A71C;
	color:#fff;
}
/*.ba-item-cont {
	color:#000000;
	background:#fff;
	font-size:16px;
	line-height:16px;
	font-weight:normal;
}*/
.mnpr-item-cont .mnpr-cont {
	float:left;
	width:100%;
	color:#fff;
	font-size:20px;
	line-height:25px;
	margin-bottom:30px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* number of lines to show */
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
.mnpr-item-cont:hover {
	color:#000;
	background:#fff;
	font-size:16px;
	line-height:16px;
	font-weight:normal;
	display:block;
}
.mnpr-item-cont:hover .mnpr-cont {
	color:#000;
	cursor:pointer;
}
.mnpr-cal {
	float:left;
	width:100%;
	color:#fff;
	font-size:20px;
	line-height:19px;
	margin-bottom:20px;
}
.mnpr-cal span {
	display:block;
}
.mnpr-cont {
	color: #fff;
	font-size: 20px;
	line-height: 20px;
}
.mnpr-footer {
	float:left;
	width:100%;
	margin-top:25px;
	text-align:left;
}
.mnpr-ann-sec .slick-prev {
	position:absolute !important;
	bottom:-65px !important;
	right:214px !important;
}
.mnpr-ann-sec .slick-next {
	position:absolute !important;
	bottom:-65px !important;
	right:145px !important;
}
.wrap-orange .slick-dots li button:before {
	background: #f1a029;
}
/*==============================================================
REPORTS SECTION CSS STARTS HERE
================================================================*/
.sec-4 {
	padding-top:60px;
	padding-bottom:60px;
	position:relative;
	background: #F9F3E2;
}
.ar-bg {
	background:#FBB865;
}
.qr-bg {
	background:#E8292B;
}
.cr-bg {
	background:#FFEBC2;
}
.cp-bg {
	background:#FFD87D;
}

/* TOP triangles */
.sec-4::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 20px;
 background:
 linear-gradient(135deg, #fff 25%, transparent 25%) 0 0,  linear-gradient(225deg, #fff 25%, transparent 25%) 0 0;
 background-size: 20px 20px;
 background-repeat: repeat-x;
}
/* Bottom triangles */
.sec-4::after {
content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 20px;
 background:
 linear-gradient(45deg, #fff 25%, transparent 25%),  linear-gradient(-45deg, #fff 25%, transparent 25%);
 background-size: 20px 20px;
 background-repeat: repeat-x;
}
.sec-4 .main-title {
	float:left;
	width:100%;
	margin-bottom:38px;
	text-align:center;
}
.sec-4 .main-title h2 {
	color:#000;
	font-weight:bold;
	text-transform:uppercase;
}
.sec-4 .main-title h2 span {
	color:#E8292B;
	font-weight:bold;
}
.reports-sec {
	float:left;
	width:100%;
	display:flex;
}
.rp-cont {
	float:left;
	width:100%;
	text-align:center;
	min-height:385px;
	color:#fff;
	padding:18px 18px;
	border-radius:30px 0 30px 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.rp-icon img {
	width:100%;
	height:auto;
	margin-bottom:18px;
	object-fit:cover;
}
.rp-box {
	float:left;
	width:100%;
}
.rp-title, .rp-icon, .rp-btns {
	float:left;
	width:100%;
	text-align:center;
}
.rp-title {
	font-family: "Baloo 2", sans-serif;
	font-size:18px;
	line-height:30px;
	/*min-height:60px;*/
	font-weight:600;
	margin-bottom:18px;
	color:#000;
	min-height:60px;
}
.rp-icon {
	position:relative;
	z-index:2;
}
.rp-vw {
	font-weight:bold;
}
.rp-cont .btn {
	width:165px;
	text-align:center;
}
/*==============================================================
SHAREHOLDERS MEETINGS CSS STARTS HERE
================================================================*/

.sec-5 {
	margin-bottom:170px;
	position:relative;
}

 
.sec-5 .main-title {
	float:left;
	width:100%;
	margin-bottom:38px;
	text-align:center;
}
.sec-5 .main-title h2 {
	color:#000;
	font-weight:bold;
	text-transform:uppercase;
}
.sec-5 .main-title h2 span {
	color:#E8292B;
	font-weight:bold;
}
.shm-sec {
	float:left;
	width:100%;
	border-right:2px solid #E8292B;
	margin-bottom:30px;
}
.no-border {
	border:none;
	padding-left:50px;
}
.shm-title {
	font-size:24px;
	line-height:33px;
	font-weight:bold;
	margin-bottom:30px;
	color:#000000;
}
.sh-date, .sh-time, .sh-add {
	font-style:normal;
	font-size:24px;
	line-height:29px;
	color:#000000;
	margin-bottom:12px;
	font-weight:500;
}
.sec-5 .btn-cont {
	margin-top:60px;
}
/*==============================================================
NEWS ALERT SECTION CSS STARTS HERE
================================================================*/

.sec-6 {
	float:left;
	width:100%;
	position:relative;
}


.sec-6::before{
	 content:'';
 display:inline-flex;
 background:url(../images/muffin-1.png) no-repeat;
 width:215px;
 height:242px;
 background-position:center center;
 background-size:cover;
 position:absolute;
top: -263px;
    left: 60px;
 
}


.nl-sec, .ir-cont-sec {
	float:left;
	width:100%;
}
.news-alert-sec {
	float:left;
	width:100%;
}
.frm-cnt {
	float:left;
	width:100%;
}
.nl-sec {
	text-align:left;
	background:#E8292B;
	padding:30px;
	border-radius:30px;
	color:#fff;
}
.nl-sub {
	font-size:16px;
	line-height:22px;
	margin-bottom: 22px;
	font-weight:normal;
	color:#fff;
}
 .frm-cnt [class*="col-"] {
 padding-left:0;
 padding-right:10px;
}
.form-control {
	font-family: "Baloo 2", sans-serif;
	display: block;
	width: 100%;
	height: 49px;
	padding: 6px 12px;
	font-size: 16px;
	font-weight:500;
	line-height: 1.42857143;
	color: #000 !important;
	background-color:transparent;
	background:#fff;
	border-radius:5px;
	border:none;
}
 
 ::placeholder {
 color:#000 !important;
 opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
 color:#000 !important;
}
.form-control:focus {
	border-color:#00A3DA;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.frm-cnt input {
	margin-bottom:15px;
}
.view-more {
	color:#064f94;
	margin-left:5px;
}
/*IR Contact sec css*/


.ir-cont-sec .main-title {
	float:left;
	width:100%;
	margin-bottom:25px;
	text-align:center;
}
.ir-cont-sec .main-title h2 {
	color:#000;
	font-weight:bold;
	text-transform:uppercase;
}
.ir-cont-sec .main-title h2 span {
	color:#E8292B;
	font-weight:bold;
}
.ir-cont-sec {
	float:left;
	width:100%;
	border:2px solid #FBB865;
	border-radius:30px 0 30px 0;
	padding:123px 50px 27px 50px;
	position:relative;
	text-align:center;
}
 .ir-cont-sec::before {
 content:'';
 display:inline-flex;
 background:url(../images/ir-contact-img.png) no-repeat;
 width:268px;
 height:254px;
 background-position:center center;
 background-size:cover;
 position:absolute;
 top:-120px;
 left: 50%;
 transform: translateX(-50%);
}
.ir-cont-sec .main-title h2, .nl-sec .main-title h2 {
	margin-top:30px;
}
 .ir-cont-sec [class*="col-"] {
 padding-left:0;
 padding-right:10px;
}
.nl-sub {
	font-family: "Baloo 2", sans-serif;
	float:left;
	width:100%;
	margin-bottom:33px;
	color:#fff;
}
.cont-person {
	font-family: "Baloo 2", sans-serif;
	font-size:22px;
	line-height:22px;
	font-weight:bold;
	color:#000;
	text-align:center;
	margin-bottom:17px;
}
.phone, .email, .fax {
	font-family: "Baloo 2", sans-serif;
	margin-bottom:17px;
	width: 100%;
	font-size:22px;
	line-height:22px;
	font-weight:bold;
	color:#000;
	text-align:center;
}
.phone a, .fax a {
	font-family: "Baloo 2", sans-serif;
	font-size:22px;
	line-height:22px;
	font-weight:bold;
	color:#000;
	text-align:center;
}
.phone a span {
	font-family: "Baloo 2", sans-serif;
	font-size:22px;
	line-height:22px;
	font-weight:bold;
	color:#000;
	text-align:center;
}
.email a {
	font-family: "Baloo 2", sans-serif;
	font-size:22px;
	line-height:22px;
	font-weight:bold;
	color:#000;
	text-align:center;
}
.email a span {
	font-family: "Baloo 2", sans-serif;
	font-size:22px;
	line-height:22px;
	font-weight:bold;
	color:#000;
	text-align:center;
}
.email a:hover {
	font-family: "Baloo 2", sans-serif;
	font-size:22px;
	line-height:22px;
	font-weight:bold;
	color:#000;
	text-align:center;
}
.mob-off {
	display:block;
}
.mob-on {
	display:none;
}
.ralign {
	text-align:right;
}









/*==========  Mobile First Method  ==========*/


@media(max-width:1199px) {
}







/* Large desktops and laptops */
@media (min-width: 1200px) {
}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
 .main-title h2 {
 font-size:38px;
 line-height:34px;
}
.stk-price {
 font-size: 36px;
 line-height: 36px;
 font-weight: bold;
 color: #000000;
 display: inline-block;
}
.stk-chg {
 font-family: "Baloo 2", sans-serif;
 display: inline-block;
 margin-left: 15px;
 color: #000;
 font-size: 24px;
 line-height: 26px;
 font-weight: 400;
}
.ohlv-title {
 float: left;
 width: 50%;
 font-weight: 400;
 color: #000000;
 font-size: 24px;
 line-height: 25px;
 text-align: left;
}
.ohlv-val {
 float: left;
 width: 50%;
 font-weight: bold;
 color: #000000;
 font-size: 36px;
 line-height: 36px;
 text-align: right;
}
.stk-foot .rm-btn-sec, .stk-foot .btn-container {
 float: left;
 width: 29%;
}
.eod {
 float: left;
 width: 70%;
 text-align: right;
 font-size: 12px;
 line-height: 17px;
 color: #AAAAAA;
 margin-top: 40px;
 text-transform: uppercase;
 font-weight: bold;
}
.stk-foot {
 float: left;
 width: 100%;
 margin-top: 43px;
}
.rp-title {
 min-height:60px;
}
.rp-cont {
 min-height:415px;
}
}
 @media (min-width: 992px) {
}
@media (max-width: 991px) {
}
/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
 .main-title h2 {
 font-size:24px;
 line-height:24px;
}
.stk-price {
 font-size: 22px;
 line-height: 24px;
 font-weight: bold;
 color: #000000;
 display: inline-block;
}
.stk-chg {
 font-family: "Baloo 2", sans-serif;
 display: inline-block;
 margin-left: 15px;
 color: #000;
 font-size: 20px;
 line-height: 20px;
 font-weight: 400;
}
.ohlv-title {
 float: left;
 width: 50%;
 font-weight: 400;
 color: #000000;
 font-size: 22px;
 line-height: 22px;
 text-align: left;
}
.ohlv-val {
 float: left;
 width: 50%;
 font-weight: bold;
 color: #000000;
 font-size: 30px;
 line-height: 30px;
 text-align: right;
}
.stk-foot {
 float: left;
 width: 100%;
 margin-top: 34px;
}
.bursa-ann-sec .slick-next {
 position: absolute !important;
 bottom: -65px !important;
 right: 75px !important;
}
.bursa-ann-sec .slick-prev {
 position: absolute !important;
 bottom: -65px !important;
 right: 144px !important;
}
.press-releases-sec .btn-container a {
 position: relative;
 left: 71px;
}
.press-releases-sec .slick-next {
 position: absolute !important;
 bottom: -83px !important;
 right: 21px !important;
}
.press-releases-sec .slick-prev {
 position: absolute !important;
 bottom: -83px !important;
 right: 91px !important;
}
.media-news-sec .slick-next {
 position: absolute !important;
 bottom: -83px !important;
 right: 72px !important;
}
.media-news-sec .slick-prev {
 position: absolute !important;
 bottom: -83px !important;
 right: 142px !important;
}
.pp-link {
 padding-top: 28px;
}
}
@media (min-width: 768px) {
}


/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
 .main-title h2 {
 font-size:32px;
 line-height:32px;
}
 .stk-foot {
 float: left;
 width: 100%;
 margin-top:30px;
 margin-bottom:30px;
}
.ba-right-img, .pr-slide-right, .mn-right-img {
 position:static;
}
.ba-rimage, .prs-rimage, .mn-rimage {
 height:110px;
}
.shm-sec {
 border-right:none;
}
.media-news-sec {
 margin-top:60px;
}
.bursa-ann-sec .slick-next {
 position: absolute !important;
 bottom: -64px !important;
 right: 25px !important;
}
.bursa-ann-sec .slick-prev {
 position: absolute !important;
 bottom: -65px !important;
 right: 96px !important;
}
.press-releases-sec .btn-container a {
 position: relative;
 left: 15px;
}
.press-releases-sec .slick-next {
 position: absolute !important;
 bottom: -83px !important;
 right: 25px !important;
}
.press-releases-sec .slick-prev {
 position: absolute !important;
 bottom: -83px !important;
 right: 98px !important;
}
.media-news-sec .btn-container a {
 position: relative;
 left: 15px;
}
.media-news-sec .slick-next {
 position: absolute !important;
 bottom: -83px !important;
 right: 24px !important;
}
.media-news-sec .slick-prev {
 position: absolute !important;
 bottom: -83px !important;
 right: 94px !important;
}
}
 @media (max-width:576px) {
 .main-title h2 {
 font-size:28px;
 line-height:32px;
}
.stk-title {
 font-size:26px;
 line-height:30px;
}
.stk-price {
 font-size:30px;
 line-height:50px;
}
.stk-chg {
 font-size:26px;
 line-height:36px;
}
.ohlv-title {
 font-size:22px;
 line-height:32px;
}
.ohlv-val {
 font-size:30px;
 line-height:42px;
}
}



/* Portrait phones and smaller */
@media (max-width: 480px) {
}
 @media(max-width:414px) {
}

/* Portrait i phones and smaller */
@media (max-width: 380px) {
}
