/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: 'Roboto', sans-serif;
	color: #4d4643;
}
a {
	color: #2A3294;
}
a:hover {
	color: #BE1F31;
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	right: 15px;
	bottom: 15px;
	background: #2A3294;
	color: #fff;
	transition: display 0.5s ease-in-out;
	z-index: 99999;
}
.back-to-top i {
	font-size: 24px;
	position: absolute;
	top: 8px;
	left: 8px;
}
.back-to-top:hover {
	color: #fff;
	background: #BE1F31;
	transition: 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
 [data-aos-delay] {
 transition-delay: 0 !important;
}
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	padding: 15px 0;
	font-size: 15px;
	z-index: 999;
	position: absolute;
	width: 100%;
	color: #fff;
}
#topbar .contact-info a {
	line-height: 1;
	color: #fff;
	transition: 0.3s;
}
#topbar .contact-info a:hover {
	color: #BE1F31;
}
#topbar .contact-info i {
	color: #2A3294;
	padding: 4px;
}
#topbar .contact-info span {
	padding: 0 8px;
}
#topbar .contact-info img {
	margin-left: 7px;
}
#topbar .contact-info .icofont-phone {
	padding-left: 20px;
	margin-left: 20px;
	border-left: 1px solid #e9e9e9;
}
#topbar .social-links a {
	color: #836a61;
	padding: 4px 0 4px 20px;
	display: inline-block;
	line-height: 1px;
	transition: 0.3s;
}
#topbar .social-links a:hover {
	color: #2A3294;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header-sticky-wrapper {
	width: 100%;
}
#header {
	height: 90px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	padding: 10px 0;
	position: absolute;
	width: 100%;
}
#header.header-scrolled {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
#header .logo div {
	font-size: 28px;
	margin: 0;
	padding: 5px 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
}
#header .logo div a, #header .logo div a:hover {
	color: #2b2320;
	text-decoration: none;
}
#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 55px;
}
.sub-header {
	background: url(../img/consult-header.jpg) no-repeat center center/cover;
	width: 100%;
	padding: 150px 0 50px 0;
}
.sub-header h2 {
	font-size: 35px;
	color: #FFF;
	margin-top: -65px;
}
.contact-info {
	font-size: 20px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
	margin: 2px 0 0 0;
	padding: 0;
	list-style: none;
}
#header.header-scrolled .nav-menu * {
	margin: 0px 0 0 0;
}
#header.header-scrolled .nav-menu a {
	color: #666
}
#header.header-scrolled .nav-menu .drop-down li {
	margin-top: 7px !important;
}
.nav-menu > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}
.nav-menu > ul > li + li {
	padding-left: 45px;
}
.nav-menu a {
	display: block;
	position: relative;
	color: #2d3090;
	padding: 14px 0 15px 0;
	transition: 0.3s;
	font-size: 20px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
	color: #BE1F31;
	text-decoration: none;
}
.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 20px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}
.nav-menu .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
	margin-top: 2px;
}
.nav-menu .drop-down ul a {
	padding: 5px 20px;
	font-size: 15px;
	font-weight: 500;
	text-transform: none;
	color: #2A3294;
}
.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
	color: #BE1F31;
}
.nav-menu .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}
.nav-menu .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.nav-menu .drop-down .drop-down > a {
	padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}
.inside.header-scrolled {
	background-color: #002d4b !important;
}
.inside.header-scrolled .nav-menu a {
	color: #fff !important;
}
#header.header-scrolled .nav-menu .drop-down li a {
	color: #002d4b !important
}
#header.header-scrolled .nav-menu .drop-down li a:hover {
	color: #BE1F31 !important
}
 @media (max-width: 1366px) {
.nav-menu .drop-down .drop-down ul {
	left: -90%;
}
.nav-menu .drop-down .drop-down:hover > ul {
	left: -100%;
}
.nav-menu .drop-down .drop-down > a:after {
	content: "\ea9d";
}
}
/* Mobile Navigation */
.mobile-nav-toggle {
	position: fixed;
	right: 15px;
	top: 20px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	color: #65534c;
}
.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}
.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-nav a {
	display: block;
	position: relative;
	color: #2b2320;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
	text-transform: uppercase;
	font-size: 14px;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #2A3294;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\eaa1";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(14, 11, 10, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}
.service-area-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-area-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #4d4643;
  padding:0 0 0 25px;
  background: url(../img/arrow-orrange.png) no-repeat left 4px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.carousel-item.sliders{
	height: 80vh;
}
.carousel-item.sliders img{
	width: 100%;
	height: 100%;
}
.carousel-caption h5, .carousel-caption h1{
	font-size: 18px;
	text-align:left;
}
.carousel-caption h2{
	font-size: 70px;
	font-weight: bold;
	text-align:left;
}
.carousel-caption p{
	font-size: 18px;
	text-align:left;
}
#hero {
	width: 100%;
	height: 65vh;
	overflow: hidden;
	position: relative;
	padding: 0;
	margin-top: -90px;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

#hero .carousel-container {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: absolute;
	top: 160px;
	left: 50px;
	right: 50px;
}
#hero .carousel-content {
	background: rgba(28, 23, 21, 0.7);
	padding: 20px;
	color: #fff;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	border-top: 5px solid #2A3294;
}
#hero .carousel-container h2 {
	color: #2A3294;
	margin-bottom: 20px;
	font-size: 50px !important;
	font-weight: 600;
}
#hero .carousel-container p {
	padding-right: 16rem;
}
.lrn-how {
	color: #2A3294;
	font-size: 20px;
	font-weight: 400;
}
.lrn-how span {
	color: #BE1F31;
	font-weight: 600;
}
.carousel-caption {
  bottom: 50px;
}
.btn-get-started {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	padding: 15px 38px;
	border-radius: 50px;
	transition: 0.5s;
	line-height: 1;
	margin: 10px 0;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: 1px solid #BE1F31;
	background: #BE1F31;
}
.btn-get-started:hover {
	background: #2A3294;
	border: 1px solid #2A3294;
	color: #fff;
	text-decoration: none;
}
#hero .btn-get-started.white {
	color: #2A3294;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: 1px solid #fff;
	background: #fff;
}
#hero .btn-get-started.white:hover {
	background: #BE1F31;
	border: 1px solid #BE1F31;
	color: #fff;
	text-decoration: none;
}
#hero .btn-line {
	color: #2A3294;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: 1px solid #BE1F31;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	padding: 15px 33px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	border-radius: 50px;
	transition: 0.5s;
}
#hero .btn-line:hover {
	background: #BE1F31;
	border: 1px solid #BE1F31;
	color: #fff;
	text-decoration: none;
}
#hero .carousel-inner .carousel-item {
	transition-property: opacity;
}
#hero .carousel-inner .carousel-item, #hero .carousel-inner .active.carousel-item-left, #hero .carousel-inner .active.carousel-item-right {
	opacity: 0;
}
#hero .carousel-inner .active, #hero .carousel-inner .carousel-item-next.carousel-item-left, #hero .carousel-inner .carousel-item-prev.carousel-item-right {
	opacity: 1;
	transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next, #hero .carousel-inner .carousel-item-prev, #hero .carousel-inner .active.carousel-item-left, #hero .carousel-inner .active.carousel-item-right {
	left: 0;
	transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
	width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
	background: none;
	font-size: 48px;
	line-height: 1;
	width: auto;
	height: auto;
}
#hero .carousel-indicators li {
	cursor: pointer;
}
 @media (min-width: 1024px) {
#hero .carousel-content {
	width: 60%;
}
#hero .carousel-control-prev, #hero .carousel-control-next {
	width: 5%;
}
}
 @media (max-width: 992px) {
#hero {
	height: calc(100vh - 70px);
}
#hero .carousel-content h2 {
	margin-bottom: 15px;
	font-size: 22px;
}
#hero .carousel-content p {
	font-size: 15px;
}
}
 @media (max-height: 500px) {
#hero {
	height: 120vh;
}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 45px 0 60px 0;
	overflow: hidden;
}
.section-bg {
	background-color: #f6f3f2;
}
.section-title {
	padding-bottom: 30px;
	text-align: center;
}
.section-title h2 {
	font-size: 28px;
	font-weight: 300;
	margin-bottom: 20px;
	padding-bottom: 0;
	color: #65534c;
}
.section-title h2 strong {
	font-weight: 700;
}
.section-title p {
	margin-bottom: 0;
}
.slide-img img {
	border-radius: 15px;
	box-shadow: 0 0px 50px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}
.ga-img{
	border-radius: 10px;
	box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.2), 0 3px 5px 0 rgba(0, 0, 0, 0.15);
}
.pricing .bg-primary {
	background-color: #2A3294 !important;
}
.pricing .card {
	background-color: #f6f6f6 !important;
}
.pricing .text-primary {
	color: #2A3294 !important;
}
.pricing .price, .pricing h1 {
	font-size: 25px;
	font-weight: 500;
}
.pricing span.h6 {
	font-size: 15px;
}
.pricing ul li {
	font-size: 16px;
	margin-bottom: 15px;
}
.pricing .btn-buy {
	font-size: 16px;
	padding: 7px 25px;
	background-color: #e2ecf2;
	font-weight: bold;
	border-radius: 50px;
}
.pricing span.price-tags {
	background-color: #2A3294;
	padding: 0 25px;
}
.pricing .card:hover {
	background-color: #2A3294 !important;
}
.pricing .card:hover ul li, .pricing .card:hover h1 {
	color: #fff !important;
}
.pricing .card:hover .btn-buy {
	background-color: #BE1F31;
	color: #fff;
}
.pricing .card:hover span.price-tags {
	background-color: #fff !important;
	color: #2A3294 !important
}
.cname{
	font-size: 18px;
}
.cname span{
	font-size: 15px;
	color: #7e7e7e;
}
.orgname{
	font-size: 15px;
	color: #7e7e7e;
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
	background: url(../img/about-bg.jpg) no-repeat center top/cover;
	padding: 100px 0 60px 0;
	color: #574741;
}
.cta h3, .section-title h3 {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: #2A3294;
}
.cta h4 {
	font-size: 25px;
	font-weight: 700;
	color: #2A3294;
}
.cta h3 span {
	color: #2A3294;
}
.cta p {
	padding: 0;
	margin: 0;
}
.abt-info {
	padding: 40px 60px;
	border-left: solid 5px #c5cdd2
}
.cta .cta-btn {
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 25px;
	border-radius: 2px;
	transition: 0.4s;
	margin: 10px;
	border-radius: 4px;
	border: 2px solid #2A3294;
	color: #2A3294;
	background: #fff;
}
.cta .cta-btn:hover {
	background: #2A3294;
	color: #fff;
}
 @media (max-width: 1024px) {
.cta {
	background-attachment: scroll;
}
}
 @media (min-width: 769px) {
.cta .cta-btn-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
}
/*--------------------------------------------------------------
# sections
--------------------------------------------------------------*/
.services {
	background: url(../img/ser-bg.png) no-repeat center center/contain;
}
.services .icon-box {
	padding: 25px;
	margin-top: 15px;
	margin-bottom: 25px;
	text-align: left;
	position: relative;
	background: #e8f0f5;
	border-radius: 8px;
}
.services .icon-box.ser{
	padding: 25px;
	margin-top: 15px;
	margin-bottom: 25px;
	text-align: left;
	position: relative;
	background: #e8f0f5 !important;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.services .icon-box:hover, .services .icon-box.active {
	background: #38409e;
}
.services .icon {
	transition: 0.2s;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	width: 115px;
	height: 115px;
	background: #fff url(../img/icon-1.png) no-repeat center center;
	margin-bottom: 25px;
}
.services .icon-box:hover .icon, .services .icon-box.active .icon {
	background: #151c73 url(../img/icon-1-w.png) no-repeat center center;
}
.services .icon.budget {
	background: #fff url(../img/icon-2.png) no-repeat center center;
}
.services .icon-box:hover .icon.budget, .services .icon-box.active .icon.budget {
	background: #151c73 url(../img/icon-2-w.png) no-repeat center center;
}
.services .icon.tax {
	background: #fff url(../img/icon-3.png) no-repeat center center;
}
.services .icon-box:hover .icon.tax, .services .icon-box.active .icon.tax {
	background: #151c73 url(../img/icon-3-w.png) no-repeat center center;
}
.services .icon.couch {
	background: #fff url(../img/icon-4.png) no-repeat center center;
}
.services .icon-box:hover .icon.couch, .services .icon-box.active .icon.couch {
	background: #151c73 url(../img/icon-4-w.png) no-repeat center center;
}
.services .icon.qbooks {
	background: #fff url(../img/icon-5.png) no-repeat center center;
}
.services .icon-box:hover .icon.qbooks, .services .icon-box.active .icon.qbooks {
	background: #151c73 url(../img/icon-5-w.png) no-repeat center center;
}
.services .icon.stup {
	background: #fff url(../img/icon-6.png) no-repeat center center;
}
.services .icon-box:hover .icon.stup, .services .icon-box.active .icon.stup {
	background: #151c73 url(../img/icon-6-w.png) no-repeat center center;
}
.services .icon.interiors {
	background: #fff url(../img/interiors.png) no-repeat center center;
}
.services .icon-box:hover .icon.interiors{
	background: #151c73 url(../img/interiors-w.png) no-repeat center center;
}
.services .icon.exteriors {
	background: #fff url(../img/exteriors.png) no-repeat center center;
}
.services .icon-box:hover .icon.exteriors{
	background: #151c73 url(../img/exteriors-w.png) no-repeat center center;
}
.services .icon.mep {
	background: #fff url(../img/mep.png) no-repeat center center;
}
.services .icon-box:hover .icon.mep{
	background: #151c73 url(../img/mep-w.png) no-repeat center center;
}
.services .icon i {
	color: #fff;
	font-size: 24px;
}
.services h4, .services h2{
	font-weight: bold;
	margin-bottom: 15px;
	font-size: 18px;
	color: #2A3294;
}
.services .icon-box.ser:hover h4{
	color: #2A3294;
}
.services .icon-box:hover h4, .services .icon-box.active h4 {
	color: #fff;
}
.services .icon-box a {
	color: #BE1F31;
	padding-right: 25px;
	font-weight: bold;
	background: url(../img/arrow-orrange.png) no-repeat right 2px;
}
.services .icon-box:hover a, .services .icon-box.active a {
	color: #2A3294;
	background: url(../img/arrow-orrange.png) no-repeat right 2px;
}
.services .icon-box p {
	line-height: 24px;
	font-size: 16px;
	color: #343434;
	height: 170px;
}

.icon-boxs {
	padding: 25px;
	margin-top: 15px;
	margin-bottom: 25px;
	text-align: left;
	position: relative;
	background: #e8f0f5;
	border-radius: 8px;
	height: 230px;
}
.icon-boxs ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.icon-boxs ul li {
	margin: 0 0 8px 0;
	padding: 0 0 0 25px;
	background: url(../img/arrow-orrange.png) no-repeat left 5px;
}
.expect {
	background: #f6f6f6;
	padding: 55px 0 30px 0;
}
.expect.cbg {
	background: url(../img/c-bg.jpg) no-repeat center center/cover;
	padding: 70px 0 30px 0;
}
.expect.cbg-ser {
	background: url(../img/c-bg-ser.jpg) repeat left top;
	padding: 70px 0 30px 0;
}
.expect-box {
	background: #FFF;
	padding: 25px;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 40px;
	height: 240px;
	border: solid 1px #c6c6c6;
}
.expect-box .nou {
	background: #fff;
	width: 80px;
	height: 80px;
	font-size: 45px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	border-radius: 100%;
	margin: 0 auto 20px auto;
	line-height: 78px;
}
.expect-box h4 {
	color: #2A3294;
	font-size: 17px;
}
.expect-box p {
	margin-bottom: 0;
}
.vid-test {
	background: url(../img/text-bg.jpg) no-repeat center center/cover;
}
.col-containers {
  display: table;
  width: 100%;
}
.cols {
  display: table-cell;
  padding: 16px;
}
.carousel-item.no-bg {
	background: none !important;
}
.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: -40px;
	left: 0;
	z-index: 15;
	display: -ms-flexbox;
	display: flex;

	padding-left: 0;
	margin-right: 0;
	margin-left: 0%;
	list-style: none;
}
.carousel-indicators li {
	box-sizing: content-box;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 8px;
	height: 8px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #2A3294;
	background-clip: padding-box;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	opacity: .5;
	border-radius: 50%;
}
ul.address-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.address-list li {
	padding-left: 25px;
	margin-bottom: 15px;
}
ul.address-list li.map {
	background: url(../img/map-icon.png) no-repeat left 5px;
}
ul.address-list li.phone {
	background: url(../img/phone-icon.png) no-repeat left 5px;
}
ul.address-list li.mail {
	background: url(../img/mail-icon.png) no-repeat left 7px;
}
.form-control {
	border: solid 1px #dedede;
	padding: 12px 15px;
	background-color: transparent;
	height: 50px;
	font-size: 15px;
}
textarea {
	border: solid 1px #dedede;
	padding: 12px 15px;
	background-color: transparent;
	height: 120px;
	font-size: 15px;
	width: 100%
}
.ser-box {
	width: 18%;
	margin-right: 2%;
}
.ser-box.lst {
	margin-right: 0%;
}
.ser-img {
	text-align: center;
	background-color: #ffffff;
	border-radius: 8px 8px 0 0;
}
.ser-info {
	background-color: #fff;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
	padding: 20px 0px 20px 0px
}
.ser-info h5 {
	color: #2A3294;
	font-size: 16px;
	text-transform: uppercase;
}
.ser-info a {
	color: #BE1F31;
	padding-right: 25px;
	font-weight: bold;
	background: url(../img/arrow-orrange.png) no-repeat right 2px;
}
.ser-info a:hover {
	color: #000;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	color: #333333;
	font-size: 16px;
	background: url(../img/f-bg.jpg) no-repeat center center/cover;
}
#footer .footer-top {
	padding: 60px 0 0px 0;
}
#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3, .footer-links h3 {
	font-size: 20px;
	margin: 0 0 25px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 500;
	color: #2A3294;
}
#footer .footer-top .footer-contact p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: 'Roboto', sans-serif;
	color: #b4aca8;
}
#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}
#footer .footer-top .footer-links {
	margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.t-line {
	border-top: solid 1px #b7b7b7;
	padding-top: 25px;
}
#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #fd6f41;
	font-size: 18px;
	line-height: 1;
}
#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}
#footer .footer-top .footer-links ul a {
	color: #333333;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #fd6f41;
}
#footer .footer-newsletter {
	font-size: 15px;
}
#footer .footer-newsletter h4 {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}
#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px 0 0 4px;
	text-align: left;
}
#footer .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: 0;
	right: -4px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #2A3294;
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type="submit"]:hover {
	background: #BE1F31;
}
#footer .credits {
	padding-top: 5px;
	font-size: 13px;
	color: #b4aca8;
}
#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #2A3294;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}
#footer .social-links a:hover {
	background: #BE1F31;
	color: #fff;
	text-decoration: none;
}
.modal-dialog {
	max-width: 800px;
	margin: 1.75rem auto;
}
.card-body {
	padding: 1.25rem;
}
.list-unstyled {
	padding-left: 0;
	list-style: none;
	height: 140px;
}
.d-none {
	display: block !important;
}
.custom-popup {
	bottom: 33% !important;
}
#requestaQuote .request_form_popup #contactus_form {
	padding: 0px 30px 30px 30px;
}
#requestaQuote .modal-dialog {
	max-width: 530px;
	margin: 1.75rem auto;
}
#requestaQuote .modal-content button {
	float: right;
	width: auto;
	display: inline-block;
	text-align: right;
	margin-right: 7px;
	margin-top: 7px;
}

/* --------------------- responsive ---------------------- */  

@media only screen and (min-width: 1366px) and (max-width: 1440px) {
#hero {
	height: 96vh;
}
.d-none {
	display: block !important;
}
}
@media only screen and (max-width:1366px) {
#hero {
	height: 82vh;
}
#hero .carousel-container {
	top: 125px;
}
.d-none {
	display: block !important;
}
}
@media only screen and (max-width:1280px) {
#hero {
	height: 100vh;
}
.contact-info {
    font-size: 16px;
}
.nav-menu a {
    font-size: 16px;
}
.d-none {
	display: block !important;
}
}
@media only screen and (min-width:1000px) and (max-width:1169px) {
#hero .carousel-container p {
	padding-right: 8rem;
}
#hero .btn-line {
	font-size: 12px;
}
.lrn-how {
	font-size: 16px;
}
.d-none {
	display: block !important;
}
}
@media only screen and (min-width:768px) and (max-width:999px) {
.mobile-nav-toggle {
	top: 35px;
}
.contact-info {
    font-size: 14px;
}
.nav-menu a {
    font-size: 14px;
}
}
@media only screen and (min-width:640px) and (max-width:767px) {
}
@media only screen and (min-width:480px) and (max-width:639px) {
.carousel-item {
	background: none !important;
}
#hero .carousel-container {
	left: 10px !important;
}
#hero .carousel-container p {
	padding-right: 0 !important;
}
.abt-info {
	padding: 40px 0px 10px 0px !important;
	border-left: solid 0px #c5cdd2 !important;
}
.pl-5.pr-5.pt-5 {
	padding-left: 0 !important;
}
#hero {
	height: 82vh;
}
.d-none {
	display: none !important;
}
.carousel-item.sliders {
    height: 50vh;
}
}
@media only screen and (max-width:479px) {
.carousel-item {
	background: none !important;
}
#hero .carousel-container {
	left: 10px !important;
}
#hero .carousel-container p {
	padding-right: 0 !important;
}
.abt-info {
	padding: 40px 0px !important;
	border-left: solid 0px #c5cdd2 !important;
}
.pl-5.pr-5.pt-5 {
	padding-left: 0 !important;
}
.d-none {
	display: none !important;
}
#hero {
	height: 93vh;
}
.carousel-item.sliders {
    height: 50vh;
}
}
@media only screen and (max-width:320px) {
.carousel-item {
	background: none !important;
}
#hero .carousel-container {
	left: 10px !important;
}
#hero .carousel-container p {
	padding-right: 0 !important;
}
.abt-info {
	padding: 40px 0px !important;
	border-left: solid 0px #c5cdd2 !important;
}
.pl-5.pr-5.pt-5 {
	padding-left: 0 !important;
}
.carousel-item.sliders {
    height: 50vh;
}
}
