/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Footer
- Media Queries
******************************************/

/*****************************************
Colors:
- Buttons - orange #ff6c02
- Headings text - navy blue #1e266d
- Body text - dark gray #515867
- Backgrounds - light gray #f9f9f9
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
	width: 100%;
	height: 100%;
	font-family: 'Roboto', Raleway, sans-serif;
}

body,
p {
	color: #515867;
	font: 400 1rem/1.625rem 'Roboto', Raleway, sans-serif;
}

p {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

/* h1 {
	color: #1e266d;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 3.125rem;
	letter-spacing: -0.5px;
}

h2 {
	color: #1e266d;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.625rem;
	letter-spacing: -0.4px;
}

h3 {
	color: #1e266d;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.375rem;
	letter-spacing: -0.4px;
}

h4 {
	color: #1e266d;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2.125rem;
	letter-spacing: -0.4px;
}

h5 {
	color: #1e266d;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

h6 {
	color: #1e266d;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5rem;
} */

.h1-large {
	font-size: 2.75rem;
	line-height: 3.5rem;
	letter-spacing: -0.7px;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}


body,
html {
	scroll-behavior: smooth;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
	width: 10px;
	height: 10px;

}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
	border: 1px solid;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
	border-color: rgba(118, 118, 118, .6) !important;
	background-color: #fff;
	border-radius: 3px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
	background-color: #fff;
	border-left: 1px solid rgba(118, 118, 118, .6);

}

/* --------- Customized Scrollbar ---------*/


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	border-bottom: 1px solid #e3e8ec;
	background-color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	max-width: 100%;
	height: auto;
}

.navbar .logo-text {
	color: #1e266d;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem;
	/* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #ffffff;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #1e266d;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {

	color: #e2001a;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s;
	/* required for the fade animation */
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border: none;
	background-color: #ffffff;
}

.navbar .dropdown-item {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: #222222;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #ffffff;
	color: #e2001a;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #e7e7e7;
}

/* end of dropdown menu */

.navbar .nav-item .btn-solid-sm {
	margin-top: 0.125rem;
	border: 1px solid #1e266d;
	background-color: #1e266d;
}

.navbar .nav-item .btn-solid-sm:hover {
	background-color: transparent;
	color: #1e266d;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/*****************/
/*    Header     */
/*****************/
.header {
	padding-top: 7rem;
	padding-bottom: 2.5rem;
	/*background: url('../images/header-background.png') center center no-repeat;*/
	background-size: cover;
	text-align: center;
}

.header .text-container {
	margin-bottom: 4rem;
}

.header .h1-large {
	margin-bottom: 1.5rem;
}

.header .p-large {
	margin-bottom: 2rem;
}

.header .btn-solid-lg {
	margin-right: 0.5rem;
	margin-bottom: 0.75rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 5.5rem;
	padding-bottom: 1.5rem;
	background-color: #f9f9f9;
}

.footer a {
	text-decoration: none;
}

.footer .footer-col {
	margin-bottom: 3rem;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: #515867;
}

.footer .li-space-lg li {
	margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
	color: #515867;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
	color: #515867;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	background-color: #f9f9f9;
	text-align: center;
}

.copyright p,
.copyright a {
	text-decoration: none;
}


/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: #515867 url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #1e266d;
}
.iasscore_login{
	margin-top: 10rem;
}



/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header .btn-solid-lg {
		margin-bottom: 0;
	}
	.desktop-toggle-nav{
		margin-top: 2rem;
	}
	.sidenav{
		padding-top: 50px;
	}
	.user_logo{
		margin: auto 0px;
		width: 50px;
		height: 50px;
	
	}
	#login{
		margin-top: 4rem;
	}
	
	.navbar-brand img{
		width: 115px;
	}
	.desktop-navigation {
		position: inherit !important;
	}
	
	

	/* end of header */


}

/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {

	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 34rem;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 1.75rem;
		background-color: transparent;
		border-bottom: none;
		transition: all 0.2s;
		margin-top: 2rem;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		border-bottom: 1px solid #e3e8ec;
		background-color: #ffffff;
		margin-top: 0;
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		margin-top: 0.25rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.05);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .nav-item .btn-solid-sm {
		margin-top: 0;
		margin-left: 1rem;
	}

	/* end of navigation */


	/* Header */
	.header {
		padding-top: 10rem;
		padding-bottom: 7rem;
		text-align: left;
	}

	.header .text-container {
		margin-top: 3.5rem;
	}

	/* end of header */


	/* Footer */
	.footer .footer-col {
		margin-bottom: 2rem;
	}

	.footer .footer-col.first {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}

	.footer .footer-col.second {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}

	.footer .footer-col.third {
		display: inline-block;
		width: 224px;
		text-align: right;
		vertical-align: top;
	}

	.footer .footer-col.third .fa-stack {
		margin-right: 0;
		margin-left: 0.375rem;
	}

	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	/* end of extra pages */
}

/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.h1-large {
		font-size: 3.25rem;
		line-height: 4rem;
	}

	/* end of general styles */


	/* Header */
	.header {
		/* overflow-x: hidden; */
		padding-top: 10.75rem;
		padding-bottom: 13rem;
		overflow: hidden;
		height: 100%;
		padding-bottom: 20rem;
	}

	.header .text-container {
		margin-top: 6.5rem;
	}

	.header img {
		position: absolute;
		position: unset;
		left: 5rem;
	}

	/* end of header */



	/* Footer */
	.footer .footer-col.first {
		width: 352px;
		margin-right: 6rem;
	}

	.footer .footer-col.second {
		margin-right: 6.5rem;
	}

	.footer .footer-col.third {
		text-align: right;
	}

	/* end of footer */


}

/* end of min-width 1200px */










/*=============Extra CSS============*/


/*=============TOP BAR============*/
.top-nav {
	padding: 12px 0;
	height: auto;
	background: #000;
}

.left-info p a {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	font-family: 'Roboto', Raleway, sans-serif;
}

.left-info {
	display: flex;
}

.left-info p {}

p.mail {
	padding-right: 20px;
	position: relative;
}

p.mail:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 51px;
	background: #4D4D4D;
	top: -12px;
	right: 0;
}

p.phone {
	padding-left: 20px;
}

.right-info ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.right-info ul li {
	padding: 0 20px;
	position: relative;
}

.right-info ul li:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 51px;
	background: #4D4D4D;
	top: -12px;
	left: 0;
}

.right-info ul li:last-child {
	padding-right: 0;
}

.right-info {
	display: flex;
	justify-content: flex-end;
}

.right-info ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}


/*----- Nav Bar -----*/
.main-nav {
	padding: 0;
	padding: 20px 0;
	background-color: transparent;
	border-bottom: none;
	transition: all 0.2s;
	margin-top: 0;
}

.main-nav .navbar-brand {
	padding-top: 0;
	padding-bottom: 0;
}


.main-nav li a {
	padding: 0 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	padding-left: 20px !important;
	font-family: 'Raleway';
	text-transform: uppercase;

}

.dropdown-toggle::after {
	margin-left: 10px !important;
}

/*--Header--*/



.header {
	padding-top: 14rem !important;
	padding-bottom: 0;
	padding-bottom: 0;
	height: auto;
    /*z-index: -9999;*/
}

header {
	position: relative;

}

.header .text-container {
	margin: 0 !important;
	padding: 0 !important;
}

.latest-coursres-list {
	padding-top: 110px;
}

.header .h1-large {
	margin-bottom: 0 !important;
}

header::before {
	content: "";
	display: block;
	position: absolute;
	height: 1091px;
	background: url(../img/bg-shape.svg) no-repeat top center;
	top: -265px;
	width: 1640px;
	z-index: -1;
	background-size: 1708px 1068px;
	overflow: hidden;
	right: -205px;
}

/*.main-toggle-btn a img {
    position: relative;
    top: -1px;
}*/

.main-toggle-btn a img {
    position: relative;
    top: -1.75px;
}

/*--Header--*/
/*-----Banner----*/
.custom-banner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	text-align: center;
	margin: 0 auto;
	max-width: 90%;
}

.banner-left {
	flex: 0 0 40%;
}

.banner-right {
	flex: 0 0 60%;
	text-align: right;
}




/*---Banner Courses*/
.header .banner-left .h1-large {
	font-family: Raleway;
	font-style: normal;
	font-weight: bold;
	font-size: 40px;
	line-height: 160%;
	color: #222222;
	text-align: left;
}

.latest-coursres-list h3 {
	font-weight: bold;
	font-size: 22px;
	line-height: 170%;
	text-transform: uppercase;
	color: #222222;
	margin-bottom: 20px;
}

.latest-coursres-list ul {
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
}

.latest-coursres-list ul li {
	display: inline-block;
	flex: 0 0 auto;
	/* border-right: 1px solid #222; */
	margin-bottom: 9px;
	padding: 0;
	line-height: 20px;
	box-sizing: border-box;
	padding-right: 15px;
	padding-left: 15px;
	position: relative;
}

.latest-coursres-list ul li a {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 160%;
	color: #222222;
}

.latest-coursres-list ul li {
	border: 1px solid;
	border-radius: 30px;
	padding: 5px 10px;
	margin-right: 5px;
}


/*---Feed Button---*/
/*a.feed-btn {
	background: linear-gradient(180deg, #E2001A 0%, #920213 100%);
	box-shadow: 0px 8px 7px 1px rgba(226, 0, 26, 0.25);
	border-radius: 50px;
	height: 50px;
	text-align: center;
	font-family: Raleway;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFF;
	padding: 15px;
	right: 0;
	width: 150px;
	z-index: 9999999999999999999;
}*/


a.feed-btn {
    background: linear-gradient(180deg, #E2001A 0%, #920213 100%);
    box-shadow: 0px 8px 7px 1px rgba(226, 0, 26, 0.25);
    border-radius: 50px;
    height: 50px;
    text-align: center;
    font-family: Raleway;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    padding: 15px;
    right: 0;
    width: 150px;
    /*z-index: 9999;*/
}
.banner-btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 5%;
    padding: 55px 5% 55px 0;
    position: relative;
    top: 0;
    padding-top: 0;
}

nav.navbar.navbar-expand-lg.main-nav {
	background: transparent !important;
	position: absolute;
	width: 100%;
	z-index: +999;
}

.image-container {
	position: relative;
}

/*-------- GS SCORE -------*/
section#gs-score {
	padding-top: 30px;
	padding-bottom: 140px;
}

section#gs-score h2 {
    font-size: 40px;
    color: #000;
    padding-bottom: 3rem;
    font-family: 'Raleway';
}
section#gs-score .blog .carousel-indicators {
	left: 0;
	top: auto;
	bottom: -70px;
}

section#gs-score .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: #fff;
	background-color: #E2001A;
	width: 280px;
	height: 72px;
	text-align: center;
	line-height: 72px;
	padding: 0;
	font-size: 22px;
	font-weight: 800;
	box-shadow: 0 0 6px #dee2e6;
}

section#gs-score a {
	color: #fff;
	background-color: #fff;
	width: 280px;
	height: 72px;
	text-align: center;
	line-height: 72px;
	padding: 0;
	font-size: 22px;
	font-weight: 900;
	box-shadow: 0 0 6px #dee2e6;
	color: #000;
	margin-top: 40px;
	font-family: Raleway;
	font-weight: 600;
}


section#icons-section {
	padding: 160px 0;
	background-image: url(../img/Vector-back.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.icons-cols {
	text-align: center;
	background: #fff;
	padding: 45px;
	border: 1px solid #eee;
	transition: all ease 0.3s;
	border-radius: 8px;
	cursor: pointer;
}

.icons-cols h4 {
	font-size: 20px;
	padding-top: 35px;
	color: #005DA8;
}

.icons-cols:hover {
	box-shadow: 0 5px 4px #ccc;
}

ul.footer-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: left;
	padding-top: 20px;
}

ul.footer-list li {
	width: 40px;
	height: 40px;
	border: 3px solid #fff;
	border-radius: 50%;
	margin-right: 10px;
	display: inline-block;
	text-align: center;
}

.footer {
	background: #1A364E !important;
	padding: 50px 0;
}

ul.footer-list li a {
	color: #fff;
	/* font-size: 11px; */
	text-align: center;
	line-height: 35px;
}

p.p-small {
	font-size: 1rem;
	color: #fff;
	padding-top: 25px;
}

p.p-small a {
	color: #fff;
}

.footer input[type="search"] {
	width: 340px;
	height: 48px;
	padding: 10px;
	color: #838383 !important;
	border: none;
	font-size: 14px;
}

.footer button {
	width: 114px;
	height: 46px;
	background: #E2001A;
	border: none;
	color: #fff;
	font-size: 16px;
}

p.address {
	color: #fff;
	font-size: 20px;
	line-height: 190%;
	text-align: justify;
	padding-top: 30px;
	font-weight: 400;
	font-size: 1rem;
	line-height: 160%;
	color: #FFFFFF;
	font-family: Roboto;
}

.col-lg-6.f-cols {
	display: flex;
	justify-content: flex-end;
}

.footer form {
	width: 85%;
	float: right;
	display: block;
}

.inline-form {
	display: flex;
}


.footer button.sub-btn {
	height: 48px;
}

.shadow-effect {
	background: #fff;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	border: 1px solid #ECECEC;
	box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}

#customers-testimonials .shadow-effect p {
	font-family: inherit;
	font-size: 17px;
	line-height: 1.5;
	margin: 0 0 17px 0;
	font-weight: 300;
}

.testimonial-name {
	margin: -17px auto 0;
	display: table;
	width: auto;
	background: #3190E7;
	padding: 9px 35px;
	border-radius: 12px;
	text-align: center;
	color: #fff;
	box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

#customers-testimonials .item {
	text-align: center;
	padding: 50px;
	margin-bottom: 80px;
	opacity: .2;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1.0, 1.0, 1);
	transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
	transform-style: preserve-3d;
	max-width: 90px;
	margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
	background: #3190E7;
	transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
	display: inline-block;
	width: 100%;
	text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
	background: #3190E7;
	display: inline-block;
	height: 20px;
	margin: 0 2px 5px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
}









.blog .carousel-indicators {
	left: 0;
	top: auto;
	bottom: -40px;

}

/* The colour of the indicators */
.blog .carousel-indicators li {
	background: #a3a3a3;
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.blog .carousel-indicators .active {
	background: #707070;
}

.col-9.slider-3 h3 {
	color: #000;
	font-weight: 700;
	font-size: 20px;
	line-height: 170%;
	letter-spacing: 0;
	padding: 15px;
}

.col-9.slider-3 img {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	width: 100%;
}

.col-9.slider-3 p {
	font-size: 18px;
	padding: 0 15px;
}

a.now-btn {
	width: 168px !important;
	height: 44px !important;
	display: block;
	font-size: 14px !important;
	padding: 0 !important;
	line-height: 45px !important;
	background: #E2001A !important;
	color: #fff !important;
	margin-right: 15px;
	border-radius: 3px;
	margin-top: 30px !important;
}

a.now-btn i {
	margin-right: 5px;
}

.inner-section-btn {
	display: flex;
}

a.now-btn:last-child {
	background: #fff !important;
	border: 1px solid #e2001a;
	color: #e2001a !important;
}

.inner-section-btn {
	padding: 0 15px;
}

.inner-section-btn {
	padding: 0 15px;
}

.inner-section {
	border: 1px solid #eee;
	padding-bottom: 15px;
}

ol.carousel-indicators li {
	width: 14px !important;
	height: 14px !important;
	background: #fff !important;
	border: 1px solid #e2001a;
}

.blog .carousel-indicators .active {
	background: #e2001a !important;
}








.testimonials-slides {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	background: url(../img/test-bg.png);
	margin: 150px 0 20px 0;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
}




.testimonials-slides p {
	font-size: 18px;
	font-weight: 300;
	color: #555555;
	padding-bottom: 20px;
}


.testimonials-slides h3 {
	font-weight: 700;
	font-size: 30px;
	color: #555555;
	margin-bottom: 20px;
}


.testi {
	margin: 0 auto;
	position: relative;
	z-index: 9;
}


.testi .test-content {
	width: 950px;
	height: 279px;
	margin: 0 auto;
	background: #F3F7FA;
	border: 1px solid #C8DEEF;
	box-sizing: border-box;
	box-shadow: 0px 65px 26px -45px rgba(148, 145, 145, 0.25);
	border-radius: 10px;
	padding: 100px;
	position: relative;
	margin-top: 54px;
}



.testi img {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 999;
	top: -53px;
	width: 100px !important;
	height: 100px;
}


.testimonials-slides .swiper-container {
	margin-top: 25px;
}


.testi .test-content h4 {
	font-size: 22px;
	color: #555555;
	margin-bottom: 10px;
}


.testi .test-content p {
	font-size: 16px;
	color: #000000;
}


.swiper-pagination {
	position: unset;
	margin-top: 130px;
}



.swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	display: inline-block;
	border-radius: 50%;
	border: 1px solid #E2001A;
	opacity: 1;
	background: transparent;
}


.swiper-pagination-bullet-active {
	background: #E2001A;
}


/** =======================
 * Responsive  Menu
 ===========================*/

.mobile-navigation {
	display: none;
}






.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	/* right: 0; */
	background-color: #fff;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
	box-shadow: 0px 8px 12px 1px rgb(181 162 164 / 25%);
	z-index: 999999999;
}



.sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
	padding: 8px 14px 8px 22px;
	text-decoration: none;
	font-size: 18px;
	color: #a1a1a1;
	display: block;
	transition: .3s;
	text-align: left;
	line-height: 22px;
	padding-left: 30px !important;
	font-family: Poppins, sans-serif;
	font-weight: 400;
}

.sidenav a:hover {
	color: #f1f1f1;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 36px;
	margin-left: 50px;
	top: 15px;
	color: rgb(245, 6, 6);
}

#main {
	transition: margin-left .5s;
	padding: 16px;
}


.sidenav a:hover {
	color: #101010;
}


/** =======================
 * Desktop Toggle  Extra  Menus
 ===========================*/
.desktop-toggle #mains {
	top: 24px;
	right: 0;
}

/*.desktop-toggle ul {
    margin: 0;
    padding: 0;
}*/
.desktop-toggle ul {
    margin: 0;
    padding: 0;
    text-align: left;
}
.main-nav .desktop-toggle #mySidenavs ul li a {text-decoration: none;text-align: left;line-height: 22px;font-family: poppins;font-weight: 400 !important;text-transform: capitalize;font-size: 1rem !important;padding: 1rem 1.5rem !important;transition: all 0.3s linear;}

.main-nav .desktop-toggle #mySidenavs ul li a:hover {
    transition: all 0.3s linear;
    background: #005da89e;
    color: #fff;
    padding-left: 1.75rem !important;
}


/** =======================
 * Desktop Toggle  Extra  Menus
 ===========================*/




/** =======================
 * Additional login Button for mobile view
 ===========================*/

.right-info .hide-on-main {
    display: none;
}

.user-login-signup {
    background: #ffffff00;
    box-shadow: none;
    text-transform: capitalize;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 3px 13px;
    line-height: 25px;
    cursor: pointer;
}

.user-login-signup i {
    padding-right: 5.5px;
}



/** =======================
 * Additional login Button for mobile view
 ===========================*/



/** =======================
 * Responsive Accordion Menu
 ===========================*/
ul {
	list-style: none;
}

.accordion {
	width: 100%;
	max-width: 360px;
	margin: 30px auto 20px;
	background: #FFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.accordion .link {
	cursor: pointer;
	display: block;
	padding: 15px 15px 15px 42px;
	color: #4D4D4D;
	font-size: 15px;
	font-weight: 500;
	border-bottom: 1px solid #CCC;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	
    font-family: 'Roboto';
}

.accordion li:last-child .link {
	border-bottom: 0;
}

.accordion li i {
	position: absolute;
	top: 16px;
	left: 12px;
	font-size: 18px;
	color: #595959;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li i.fa-angle-down {
	right: 12px;
	left: auto;
	font-size: 16px;
}

.accordion li.open .link {
	color: #005da8;
}

.accordion li.open i {
	color: #005da8;
}

.accordion li.open i.fa-angle-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
#accordion li a.sigle-link {
    padding: 0 !important;
    font-family: 'Roboto';
    font-size: 15px !important;
}				   

		
/**
 * Submenu
 -----------------------------*/

.submenu {
	display: none;
	background: transparent;
	font-size: 14px;
	padding: 0;
	line-height: 27px;
}

.submenu li {
	border-bottom: 1px solid #4b4a5e;
	padding: 10px 0;
	padding-left: 10px;
}

.submenu a {
	display: block;
	text-decoration: none;
	color: #d9d9d9;
	padding: 12px;
	padding-left: 42px;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
.submenu a {
	font-size: 14px !important;
	text-transform: capitalize !important;
	padding-left: 65px !important;
	color: #000;
}

.submenu li {
    padding: 0;
}
.main-nav .submenu li a {
	color: #000;
	font-size: 12px !important;
	font-weight: 500 !important;
	margin-left: 15px !important;
}

.submenu a:hover {
    background: #005da8;
    color: #FFF;
}

div#main {
	position: absolute;
	right: 0;
	top: 11px;
}

#accordion li a.sigle-link {
	margin: 0;
	padding-left: 0 !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-transform: capitalize;
	color: #4D4D4D;
}




/* 

.menu-bar {
	display: flex;
	flex-direction: row;
	text-align: right;
	width: 30%;
	background: transparent;
	position: absolute;
	right: 71px;
	top: 60px;
}

 */
/* 
.menu-bar #main-menu {
	width: 620px;
}



.mobile-bar {
	display: block;
	position: absolute;
	top: 6px;
	right: -48px;
}
 */
 .menu-bar {
    display: flex;
    flex-direction: row;
    text-align: right;
    background: transparent;
    position: absolute;
    right: 72px;
    top: 60px;
    flex-wrap: wrap;
}
nav.desktop-navigation {
    position: relative;
    width: 100%;
	height: 5rem;
	box-shadow: 5px 10px 15px 0 rgb(0 0 0 / 10%);
}
.desktop-navigation .user_logo{
	margin: auto 0px auto auto;
	width: 50px;
	height: 50px;
	padding-top: 5px;	
}
.user_logo img{
	width: 70%;
}
.navbar-brand img{
	width: 170px;
}

nav.desktop-navigation .container-fluid {
    position: relative;
}
.menu-bar {
    top: 14px;
    right: 10px;
    display: block;
    padding: 0;
}
 .menu-bar #main-menu {
    position: relative;
    top: 0;
    left: 0;
    z-index: 9999;
    width: auto;
    left: 10px;
}
nav.desktop-navigation ul li a {
    text-transform: uppercase;
}
a.nav-link.toggle-main-nav {
    padding: 13px 15px;
}
.mobile-bar {
    display: block;
    position: absolute;
    top: 5.75px;
    right: -72px;
}

.menu-bar #main-menu .sm-blue a{
    background: transparent;
    background-color: transparent;
    color: #222222;
}



#myForm{
    box-shadow: 0 0 10px #dadada;
}

#navbar-collapse-usermenu.show{
	margin-top: 4rem;
}


/* The popup FEED BOX - hidden by default */
.feed-box {
    display: none;
    position: absolute;
    bottom: 40px;
    right: 4%;
    z-index: 99999;
}
.feed-header {
    max-width: 400px;
    max-height: 50px;
    padding: 7px 25px;
    background-color: #E3001B;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 5px 5px 0 0;
    box-sizing: border-box;
    text-align: left;
}

.feed-body{
    background: #ffffff;
    padding: 15px;
    max-width: 400px;
    border-radius:  0 0 5px 5px;
    
}


.feed-header h3 {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	width: 80%;
}



/*
.close-feed {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #fff;
	top: 4px;
	display: block;
	position: relative;
	box-sizing: border-box;
	padding: 1.5px 0 0 0;
	color: #fff;
	right: -26px;
}
*/

.close-feed {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
    top: 4px;
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 1.5px 0 0 0;
    color: #fff;
    right: -45px;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    border: 2px solid #fff;
}

.feed ul{
    list-style: none;
    margin: 0;
    padding: 0 20px 0 20px;
}



/*
.feed ul li{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 400px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #8D8D8D;
}
*/

.feed ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 400px;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    border-bottom: 1px solid #8D8D8D;
}
.feed ul li:last-child{
    border:none;
}


.feed ul li .circle{
    width:65px;
    height: 65px;
    border-radius: 50%;
    display: block;
    position: relative;
    
}


.yellow{
    background: #FF7A00;
}


.green{
    background: #4ACA69;
}


.grey{
    background: #617F8E;
}


.dark-red{
    background: #8F0B3D;
}


.feed ul li .text-feed {
	width: 60%;
	display: flex;
	position: relative;
	box-sizing: border-box;
	padding-left: 15px;
	align-items: center;
}

.full-length-feed p {
    font-size: 14px;
    font-weight: normal;
    position: relative;
    left: 0;
    padding: 10px 15px;
    padding-bottom: 0;
}

.feed ul li .text-feed h3{
    font-size: 16px;
    color: #444444;
    line-height: 24px;
}


.feed ul li .text-feed h3 span{
    display: block;
    position: relative;
    font-size: 12px;
    color: #8D8D8D;
    font-weight: normal;
}


.feed ul li .text-feed p{
    font-size: 14px;
    font-weight: normal;
    position: relative;
    left: 0;
}




/** =======================
 * Mobile View Accordion Menu
 ===========================*/


.desktop-toggle-nav nav {
	display: block;
}

.desktop-toggle-nav nav {
	width: 100%;
	text-align: left;
}



.desktop-toggle-nav .nav label {
	margin-bottom: 0;
}
.desktop-toggle-nav ul {
    margin: 0;
    padding: 0;
}
.desktop-toggle-nav ul li a {
	font-size: 14px;
}

/*Styling top level menu items.*/

.desktop-toggle-nav .nav a,
.desktop-toggle-nav .nav label {
	display: block;
	padding: .85rem;
	color: #fff;
	background-color: #151515;
	box-shadow: inset 0 -1px #1d1d1d;
	-webkit-transition: all .25s ease-in;
	transition: all .25s ease-in;
}

.desktop-toggle-nav .nav a:focus,
.desktop-toggle-nav .nav a:hover,
.desktop-toggle-nav .nav label:focus,
.desktop-toggle-nav .nav label:hover {
	color: rgba(255, 255, 255, 0.5);
	background: #030303;
}

.desktop-toggle-nav .nav label {
	cursor: pointer;
}

/*------------- Styling top level menu items. ------------- */

/*------------- Styling sub menu items -------------.*/

 /* -------------  Styling first level lists items ------------- */

.desktop-toggle-nav .nav .group-list a,
.desktop-toggle-nav .nav .group-list label {
	padding-left: 2rem;
	background: #252525;
	box-shadow: inset 0 -1px #373737;
}

.desktop-toggle-nav .nav .group-list a:focus,
.desktop-toggle-nav .nav .group-list a:hover,
.desktop-toggle-nav .nav .group-list label:focus,
.desktop-toggle-nav .nav .group-list label:hover {
	background: #131313;
}

/* -------------  Styling second level list items ------------- */

.desktop-toggle-nav .nav .sub-group-list a,
.desktop-toggle-nav .nav .sub-group-list label {
	padding-left: 4rem;
	background: #353535;
	box-shadow: inset 0 -1px #474747;
}

.desktop-toggle-nav .nav .sub-group-list a:focus,
.desktop-toggle-nav .nav .sub-group-list a:hover,
.desktop-toggle-nav .nav .sub-group-list label:focus,
.desktop-toggle-nav .nav .sub-group-list label:hover {
	background: #232323;
}

/*------------- Styling third level list items ------------- */

.desktop-toggle-nav .nav.sub-sub-group-list a,
.desktop-toggle-nav .nav .sub-sub-group-list label {
	padding-left: 6rem;
	background: #454545;
	box-shadow: inset 0 -1px #575757;
}

.desktop-toggle-nav-nav .nav.sub-sub-group-list a:focus,
.desktop-toggle-nav .nav .sub-sub-group-list a:hover,
.desktop-toggle-nav .nav .sub-sub-group-list label:focus,
.desktop-toggle-nav .nav .sub-sub-group-list label:hover {
	background: #333333;
}

/*------------- Hide nested lists ------------- */

.desktop-toggle-nav .nav .group-list,
.desktop-toggle-nav .nav .sub-group-list,
.sub-sub-group-list {
	height: 100%;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height .5s ease-in-out;
	transition: max-height .5s ease-in-out;
}

.desktop-toggle-nav .nav .nav__list input[type=checkbox]:checked + label + ul {
/*------------- reset the height when checkbox is checked  ------------- */
	max-height: 2000px;
}



/*------------- Styling sub menu items -------------.*/






/*-------------  Rotating chevron icon on toggle. -------------.*/



.desktop-toggle-nav label > span {
	float: right;
	-webkit-transition: -webkit-transform .65s ease;
	transition: transform .65s ease;
}

.desktop-toggle-nav .nav__list input[type=checkbox]:checked + label > span {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}




/*-------------  Rotating chevron icon on toggle. -------------.*/


/** =======================
 * Testimonial slider
 ===========================*/
#testimonialCar .item{
  opacity:0.4;
  transition:.9s ease all;
  margin:0 20px;
  transform:scale(.9);
}
@media(max-width:1000px){
  #testimonialCar .item{margin:0; transform:scale(1)}
}
#testimonialCar .active .item{
  opacity:1;
  transform:scale(1.25);
} 

#testimonialCar .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

#testimonialCar .inner{position:absolute; bottom:30px; left:0; right:0; text-align:center;}
#testimonialCar .inner a{color:#fff; text-decoration:none; border-bottom:2px solid rgba(255,255,255,0.5); transition:.3s ease border-color}
#testimonialCar .inner a:hover{border-color:#fff;}
#testimonialCar .black .inner a{color:#000; border-color:rgba(0,0,0,0.4)}
#testimonialCar .black .inner a:hover{border-color:#000;}


#testimonialCar .owl-controls{position:absolute; margin-top:300px;}
    
.testimonials-slides {
	min-height: 678px;
	background: url(img/test-bg.png) no-repeat top center / contain;
}
	
#testimonialCar .owl-dot {
    width: 15px;
    height: 15px;
    background: transparent;
    margin: 0 7.5px;
    border-radius: 50%;
    border: 1px solid #E2001A;
}

#testimonialCar .owl-dots {
    display: flex;
    top:10px;
    position: relative;
}

#testimonialCar .owl-dot.active {
    background: #E2001A;
}

#testimonialCar .owl-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

#testimonialCar .owl-carousel .owl-item img {
    max-width: 100%;
}	
#testimonialCar .testi .test-content {
    margin-bottom: 35px;
    width: 100%;
}

#testimonialCar .owl-item .testi .test-content {
    box-shadow: none !important;
}
#testimonialCar .owl-item.active .testi .test-content {
    box-shadow: 0px 64px 39px -57px rgb(148 145 145 / 25%) !important;
    margin-bottom: 79px;
}

#testimonialCar .owl-stage-outer {
    padding-top: 50px;
}




/** =======================
 * End of Testimonial slider
 ===========================*/


/** =======================
 * CSS for Product details page
 ===========================*/




/************ Product Details Page css ****************/



.brochure-page {
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
	box-sizing: border-box;
	box-shadow: 0px 0px 41px rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	min-height: 380px;
	padding: 30px;
	box-sizing: border-box;
	position: relative;
	margin-top: -50px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}



.brochure-page > div.product-picture {
    width: 20%;
    display: block;
    height: 325px;
    position: relative;
}

.brochure-page > div.product-content {
    width: 50%;
    display: block;
    height: 100%;
    position: relative;
    text-align: left;
    box-sizing: border-box;
    padding-left: 3rem;
}

.brochure-page > div.course-highlight{
    width: 30%;
    display: block;
    height: 100%;
    position: relative;
    text-align: left;
}


.brochure-page > div.product-picture img{
    width:100%;
    height: 100%;
    position: relative;
}


.brochure-page > div.product-picture a.download-brochure {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 90%;
    position: absolute;
    background: #4CAF50;
    color: #ffffff;
    bottom: 20px;
    padding: 12px 52px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 20px;
    justify-content: center;
    text-decoration: none;
}

.brochure-page > div.product-picture a.download-brochure img {
	width: 20px;
	height: 20px;
	position: relative;
	margin-right: 6px;
	top: 3px;
}




.brochure-page > div.product-content ul {
	list-style: disc;
	line-height: 27px;
	font-family: Raleway;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 170%;
}

.brochure-page > div.product-content ul li ul{
    padding-left: 30px;
}



.brochure-page > div.product-content ul.batch {
	list-style: none;
	margin: 15px 0 0 -15px;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}



.brochure-page > div.product-content ul.batch li {
    margin: 0 15px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(143, 143, 143, 0.34);
    padding: 10px 14px;
    cursor: default;
}


.brochure-page > div.product-content ul.batch li:first-child {
    margin-left: 0;
}



.course-details-box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.course-details-box > div {
    flex: 0;
    flex-grow: 1;
    margin: 0 15px;
    text-align: center;
    padding: 25px 17px;
    cursor: pointer;
}

.course-details-box > div:last-child {
    margin-right: 0;
}
.course-online-classes{
    border: 1px solid #F4F4F4;
    box-sizing: border-box;
    filter: drop-shadow(0px 0px 20px rgba(169, 169, 169, 0.25));
    border-radius: 4px;
}


.course-offline-classes{
    /*background: #F9F9F9;*/
    border: 1px solid #F4F4F4;
    box-sizing: border-box;
    border-radius: 4px;
}

.course-details-box .course-option.active, .course-details-box .course-option:hover {
    background: #F9F9F9;
    border: 1px solid #F4F4F4;
}
.course-online-classes img{
    width: 31.08px;
    height: 35px;
    margin-bottom: 15px;
}


.course-online-classes p{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #454545;
    margin-bottom: 15px;
}

.course-online-classes p.prices{
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: #4CAF50;

}


.course-offline-classes img{
    width: 31.08px;
    height: 35px;
    margin-bottom: 15px;
}


.course-offline-classes p{
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #454545;
    margin-bottom: 15px;
}

.course-offline-classes p.prices{
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: #4CAF50;

}




a.enroll_btn {
    background: #E2001A;
    position: absolute;
    right: 0;
    margin-top: 24px;
    padding: 17.5px 63px;
    color: #ffffff;
    text-decoration: none;
    font-family: Roboto;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    line-height: initial;
}

.enroll_btn img{
    position: relative;
    margin-right: 5px
}




/************ Tab Pannel CSS ****************/


#product-tab-pannel .custom-tabs-product {
    max-width: 90%;
    margin: 0 auto;
}


#product-tab-pannel .product-tabs-left {
    padding-left: 0;
}

#product-tab-pannel .right-side-adds {
    padding-right: 0;
}



#product-tab-pannel .custom-tabs-product .nav-tabs {
	border: 0;
}


#product-tab-pannel .custom-tabs-product .nav-tabs li {
    background: #E2001A;
    margin-right: 15px;
    height: auto;
    min-height: 55px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#product-tab-pannel .custom-tabs-product .nav-tabs li:last-child {
	margin-right: 0;
}

#product-tab-pannel .custom-tabs-product .nav-tabs li a {
	font-family: Raleway;
	font-weight: 700;
	font-size: 16px;
	line-height: 170%;
	color: #FFFFFF;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px;
	text-align: center;
	min-width: 120px;
}

#product-tab-pannel .custom-tabs-product .nav-tabs li.active {
  background: transparent;
  color: #E2001A;
  border-top: solid #E2001A;
  position: relative;
}

#product-tab-pannel .custom-tabs-product .nav-tabs li.active a {
  color: #E2001A;
}

#product-tab-pannel .custom-tabs-product .nav-tabs li.active:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background: #E2001A;
  left: 0;
  top: 0;
}
#product-tab-pannel .product-tabs-left .tab-content {
    padding: 2.75rem 0;
}
#product-tab-pannel .product-tab-content ul {
    list-style: disc;
    font-family: Raleway;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
}

#product-tab-pannel .product-tab-content .description-data-container {
    padding: 25px 35px;
    font-family: Raleway;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    color: #404040;
    background: #FFFFFF;
    border: 1px solid #E2001A;
    box-sizing: border-box;
    margin: 0 25px;
}
.description-data-container p {
    font-family: Raleway;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 170%;
/* or 27px */
    color: #404040;
}
/************ Tab Pannel CSS ****************/



/************ Add container CSS ****************/


.adds-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-wrap: wrap;
  text-align: right;
  width: 100%;
}
/*.adds-container .add-box img {
  max-width: 100%;
  object-fit: cover;
}
.add-box {
  margin-bottom: 18px;
}*/

.add-box {
    margin-bottom: 18px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.adds-container .add-box img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: auto;
}

/************ Add container CSS ****************/





/************ Product Details Page  css end here ****************/





/** =======================
 * End of CSS for Product details page
 ===========================*/





/** =======================
 * Responsive Accordion Menu
 ===========================*/


@media screen and (max-height: 450px) {
	.sidenav {
		padding-top: 15px;
	}

	.sidenav a {
		font-size: 18px;
	}
}






@media (max-width: 991px) {


	.mobile-navigation {
		display: block;
	}


	.navbar-toggler {
		display: none !important;
	}

}