/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. welcome
06. features
07. testimonials
08. contact
09. footer
10. preloader

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 25px;
  color: #747474;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #f1556a;
  color: #fff;
}

::-moz-selection {
  background: #f1556a;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

a.main-button-slider {
  font-size: 14px;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #af0e13;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a.main-button-slider:hover {
  background-color: #004356;
}

a.main-button {
  font-size: 14px;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #f4813f;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a.main-button:hover {
  background-color: #f1556a;
}

button.main-button {
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 25px;
  padding: 15px 25px;
  background-color: #e11800;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

button.main-button:hover {
  background-color: #004356;
}


.center-heading {
  margin-bottom: 40px;
}

.center-heading h2 {
  margin-top: 0px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.center-heading h2 em {
  font-style: normal;
  color:#e11800;
}

.center-heading p {
  font-size: 15px;
  color: #646464;
  text-align: center;
}


/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
 /* background-color: #fff;*/
  background-color: #0454b3;
  height: 80px!important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .main-nav .nav li:hover a {
  color: #e95847!important;
}

.background-header .nav li a.active {
  color: #e95847!important;
}

.header-area {
  position: relative;
  /*top: 0px;
  left: 0px;
  right: 0px;*/
  z-index: 100;
  background-color:#0454b3;
  height: 100px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  /*line-height: 80px;*/
  line-height: 68px;
  color: #191a20;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


.header-area .main-nav .nav {
  float: right;
  margin-top: 27px;
  /*margin-left: 15%;*/
  margin-right: 0px;
  background-color: #ffffffdb;
  padding: 0px 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  /*padding-left: 20px;
  padding-right: 20px;*/
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 600;
  font-size: 13px;
  /*color: #7a7a7a;*/
  color: #000;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  /*height: 40px;*/
  line-height: 30px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a {
  color: #e11800;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 35px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #7a7a7a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transform: translateY(-2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  display: block;
  background: #fff;
  color: #7a7a7a!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}

.header-area .main-nav .nav li.submenu ul li a:before {
  content: '';
  position: absolute;
  width: 0px;
  height: 40px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #e95847;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #e95847!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
	min-height: 130px;
	/*min-height: 175px;*/
  /*min-height: 120px;min-height: 80px;*/
  /*background:#fff;
  height: 80px;*/
}

.header-area.header-sticky .nav {
  margin-top: 35px !important;
}

.header-area.header-sticky .nav li a.active {
  color: #e95847;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 991px) {
  .logo {
    text-align: center;
    float: left !important;
  }
  .logo img{
    width:250px;
  }
  .header-area {
    background-color: #0454b3;
    /*padding: 0px 15px;*/
    height: 80px !important;
    box-shadow: none;
    text-align: center;
  }
  .header-area.header-sticky{
	   min-height: 80px !important;
	  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    /*margin-left: 30px;*/
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    margin-top: 76px !important;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #e95847!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 992px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}
/*---------------------------------------------
permalinks
---------------------------------------------*/
.permalinks-1{
	width: 100%;
	height: 100px;
	background-repeat: no-repeat;
	background-position: right center;
	background-size:cover;
}
.permalinks-1 .header-text .left-text {
  position: relative;
  align-self: center;
  margin-top: 13%;
}

.permalinks-1 .header-text h1 {
  font-weight: 900;
  font-size: 42px;
  margin-bottom: 30px;
  color: #191a20;
}

.permalinks-1 .header-text h1 em {
  font-style: normal;
  color: #af0e13;
}
@media (max-width: 992px) {
	.permalinks-1 .header-text .left-text {
	  margin-top: 22%;
	}
	#our-courses{ padding:50px 0px;}
}
@media (max-width: 678px) {
	.permalinks-1 .header-text .left-text {
	  margin-top: 40%;
	}
	#our-courses{ padding:50px 0px;}
}

/* 
---------------------------------------------
welcome
--------------------------------------------- 
*/
.welcome-area {
  width: 100%;
  /*height: 100vh;
  min-height: 793px;*/
  
  /*background-image: url(../images/banner.jpg);*/
/*  background-image: url(../images/banner-new.jpg);*/
  background-repeat: no-repeat;
  background-position: right top;
  background-size:cover;
}

.welcome-area .header-text .left-text {
  position: relative;
  align-self: center;
  margin-top: 20%;
  transform: perspective(1px) translateY(-30%) !important;
}

.welcome-area .header-text h1 {
  font-weight: 650;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #191a20;
}

.welcome-area .header-text h1 em {
  font-style: normal;
  color: #af0e13;
}

.welcome-area .header-text p {
  font-weight: 300;
  font-size: 17px;
  /*color: #4c4c4c;*/ color: #181818;
  line-height: 28px;
  letter-spacing: 0.25px;
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 1420px) {
  .welcome-area .header-text {
    /*width: 70%;*/
	width: 90%;
    margin-left: 5%;
  }
}

@media (max-width: 1320px) {
  .welcome-area .header-text .left-text {
    margin-top: 50%;
  }
  .welcome-area .header-text {
    width: 50%;
    margin-left: 5%;
  }
}

@media (max-width: 1140px) {
  .welcome-area {
    height: 450px;
    background-size: cover;
	background-position: center top;
  }
  .welcome-area .header-text {       
    width: 100%;
    padding-top: 70px;
    margin-left: 0%;
  }
  .welcome-area .header-text .left-text {
    margin-top: 5%;
    transform: none !important;
  }
}
@media (max-width: 810px) {
  .welcome-area {
    height: auto;
    background-size: cover;
	background-position: center top;
  }
	.welcome-area .header-text h1 {
	  font-size: 24px;
	  line-height:34px;
      margin-left: 0%;
	 
	 letter-spacing:3.4px;
	  	}
	.welcome-area .header-text h1 em{letter-spacing:0px;}
  .welcome-area .header-text {
    padding-top: 130px;
    margin-left: 0;
  }
    
  .container-fluid .col-md-12 {
    margin-right: 0px;
    padding-right: 0px;
  }
}

/*
---------------------------------------------
about
---------------------------------------------
*/

#about {
  padding: 50px 0px;
  /*position: relative;
  z-index: 9;*/
}



blockquote {
	width:100%;
	font:26px CallunaRegular;
	letter-spacing: .075em;
	float: left;
	padding: 45px 0 30px 25px;
	margin: 0;
	border-top: 2px dotted #858585;
	border-bottom: 2px dotted #858585;
	-webkit-transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
}

.container-1:before {
	content: "“";
	font: 9em "Museo 700";
	position: absolute;
	left: -20px;
	color: #004356;
}

.container-1:after {
	content: "”";
	font: 9em "Museo 700";
	position: absolute;
	right: 40px;
	top: 180px;
	color: #004356;
}

/*blockquote:first-line {
	font: 1.85em "Sketch Block";
	color: #fff79e;
}*/

blockquote strong:first-child {
	/*font:50px "Museo 700";*/
	font:1.3em "Museo 700";
	text-transform: uppercase;
	letter-spacing: 0;
}

blockquote strong:last-child {
	font: 2em "Museo 700";
	text-transform: uppercase;
	letter-spacing: 0;
}

blockquote em {
	border-bottom: 2px dotted #858585;
  padding-left: 5px;
}

blockquote + b {
	float: right;
	margin-top: 10px;
	font: 1.6em CallunaRegular;
	letter-spacing: .15em;
}

blockquote + b:first-letter {
	color: #fff79e;
	font-size: 1.3em;
	font-style: italic;
	letter-spacing: .25em;
}

@-moz-document url-prefix() { 

	blockquote:first-letter {
		margin-top: -29px;
	}

}
@media (max-width: 575.98px) {
	.container-1:after {
		font: 6em "Museo 700";
		right: 40px;
		top: 240px;
	}
}
@media (min-width: 576px) and (max-width: 767.98px) {
	.about-q{ margin-bottom:30px;}
	blockquote {
		width:100%;
		font:24px CallunaRegular;
		letter-spacing: .075em;
	}
	
	.container-1:before {
		font: 6em "Museo 700";
		left: 0px;
	}
	
	.container-1:after {
		font: 6em "Museo 700";
		right: 40px;
		top: 140px;
	}
	blockquote strong:first-child {
		font:35px "Museo 700";
	}
	
	blockquote strong:last-child {
		font:35px "Museo 700";
	}
	
}
@media (min-width: 768px) and (max-width: 991.98px) {
	blockquote {
		width:100%;
		font:24px CallunaRegular;
		letter-spacing: .075em;
		padding: 45px 25px 30px 25px;
	}
	
	.container-1:before {
		font: 6em "Museo 700";
		left: 0px;
	}
	
	.container-1:after {
		font: 6em "Museo 700";
		right: 30px;
		top: 270px;
	}
	blockquote strong:first-child {
		font:30px "Museo 700";
	}
	
	blockquote strong:last-child {
		font:30px "Museo 700";
	}
	
}
@media (min-width: 992px) and (max-width: 1199.98px) {
	blockquote {
		width:100%;
		font:24px CallunaRegular;
		letter-spacing: .075em;
		padding: 45px 25px 30px 25px;
	}
	
	.container-1:before {
		font: 6em "Museo 700";
		left: 0px;
	}
	
	.container-1:after {
		font: 6em "Museo 700";
		right: 30px;
		top: 190px;
	}
	blockquote strong:first-child {
		font:40px "Museo 700";
	}
	
	blockquote strong:last-child {
		font:40px "Museo 700";
	}
	
}


@media (max-width: 992px) {
  /*.features-item {
    margin-bottom: 45px;
  }*/
}


.course-item {
  border-radius: 5px;
  padding:30px;
  margin-bottom:20px;
  /*text-align: center;*/
  background:#fff;
   
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.features-item{
  border-radius: 5px;
  padding:0px;
  margin-bottom:20px;
  /*text-align: center;*/
  background:#fff;
   
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.features-item h2 {
  z-index: 9;
  position: absolute;
  top: 15px;
  left: 45px;
  font-size: 100px;
  font-weight: 600;
  color: #fdefe9;
}

.features-item img {
  z-index: 10;
  position: relative;
  max-width: 100%;
}

.features-item h4 {
  font-size: 16px;
  color: #1e1e1e;
  padding:15px;
  min-height:90px;
}

.features-item .main-button {
  margin-top: 35px;
  display: inline-block;
}
/*---------------------------------------------
our-services
---------------------------------------------*/

#our-courses {
  padding: 50px 0px;
/*  position: relative;
  z-index: 9;*/
  background:#fdfdfd;
}

/*---------------------------------------------
contact-no
---------------------------------------------*/

#contact-no {
  padding: 60px 0px;
  background:rgba(233,88,71,1);
  /*background: linear-gradient(48deg, rgba(233,88,71,1) 0%, rgba(184,13,13,1) 50%, rgba(133,16,2,1) 100%);*/
  /*background: linear-gradient(317deg, rgba(4, 69, 88, 1) 0%, rgba(176, 17, 22, 1) 30%, rgba(176, 17, 22, 1) 50%, rgba(176, 17, 22, 1) 70%, rgba(4, 69, 88, 1) 100%);*/
  background: linear-gradient(317deg, rgba(0, 2, 53, 1) 0%, rgba(176, 17, 22, 1) 40%, rgba(176, 17, 22, 1) 50%, rgba(176, 17, 22, 1) 60%, rgba(0, 2, 53, 1) 100%);
}
#contact-no .center-heading h4 {
    margin-top: 0px;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
#contact-no .center-heading h4 em {
    font-style: normal;
    color: #ffc100;
}
@media (max-width: 810px) {
	#contact-no .center-heading h4 {
		font-size:25px;
	}
}

/*
---------------------------------------------
promotion
---------------------------------------------
*/

.left-image-decor {
  background-image: url(../images/left-bg-decor.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  display: inline-block;
  height: 110%;
  margin-top: -200px;
}

#promotion {
  padding: 100px 0px;
}

#promotion .left-image {
  align-self: center;
}

#promotion .right-text ul {
  padding: 0;
  margin: 0;
}

#promotion .right-text ul li {
  display: inline-block;
  margin-bottom: 10px;
}

#promotion .right-text ul li:last-child {
  margin-bottom: 0px;
}

#promotion .right-text img {
  display: inline-block;
  float: left;
  margin-right: 15px;
  width:40px;
}

#promotion .right-text h4 {
  font-size: 16px;
  color: #1e1e1e;
  margin-bottom: 15px;
  margin-top: 10px;
}


/*
--------------------------------------------
testimonials
--------------------------------------------
*/
.right-image-decor {
  background-image: url(../images/right-bg-decor.png);
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  width: 100%;
  display: inline-block;
  height: 110%;
  margin-top: -200px;
}

#testimonials {
  padding-top: 100px;
  position: relative;
  z-index: 9;
}

#testimonials .item {
  position: relative;
}

#testimonials .item .testimonial-content {
  background: rgb(244,129,63);
  background: linear-gradient(145deg, rgba(244,129,63,1) 0%, rgba(241,85,106,1) 100%);
  margin-left: 60px;
  padding: 40px 30px;
  text-align: center;
  border-radius: 5px;
}

#testimonials .item .testimonial-content ul li {
  display: inline-block;
  margin: 0px 1px;
}

#testimonials .item .testimonial-content ul li i {
  color: #fff;
  font-size: 13px;
}

#testimonials .item .testimonial-content h4 {
  font-size: 22px;
  margin-top: 20px;
  color: #fff;
}

#testimonials .item .testimonial-content p {
  color: #fff;
  font-style: italic;
  font-weight: 200;
  margin: 20px 0px 15px 0px;
}

#testimonials .item .testimonial-content span {
  color: #fff;
  font-weight: 200;
  font-size: 13px;
}

#testimonials .author img {
  max-width: 120px;
  margin-bottom: -60px;
}

.owl-carousel .owl-nav button.owl-next span {
  z-index: 10;
  top: 45%;
  border-radius: 10px;
  font-size: 46px;
  color: #fff;
  right: -210px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  background: rgb(244,129,63);
  background: linear-gradient(145deg, rgba(244,129,63,1) 0%, rgba(241,85,106,1) 100%);
  position: absolute;
}

.owl-carousel .owl-nav button.owl-prev span {
  z-index: 9;
  top: 30%;
  border-radius: 10px;
  font-size: 46px;
  color: #fff;
  right: -150px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  background: rgb(244,129,63);
  background: linear-gradient(145deg, rgba(244,129,63,1) 0%, rgba(241,85,106,1) 100%);
  position: absolute;
}

@media screen and (max-width: 1060px) {
  .owl-carousel .owl-nav {
    display: none!important;
  }
}

/*---------------------------------------------
contact1
---------------------------------------------*/
#contactus{
  padding: 50px 0px;
}
#contact1{
  padding: 100px 0px;
}
.contact1-info{
  
}
.contact-form {
  position: relative;
  z-index: 10;
  padding: 45px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  
}
.contact-form input,
.contact-form textarea {
  color: #777;
  font-size: 13px;
  border: 1px solid #eee;
  background-color: #f7f7f7;
  border-radius: 5px;
  width: 100%;
  height: 40px;
  outline: none;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 10px;
}

.contact-form textarea {
  height: 70px;
  resize: none;
  padding: 10px;
}

.contact-form {
  text-align: center;
}

.contact-form ::-webkit-input-placeholder { /* Edge */
  color: #7a7a7a;
}

.contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #7a7a7a;
}

.contact-form ::placeholder {
  color: #7a7a7a;
}
.contact1-info .right-content {
  color: #000;
}

.contact1-info .right-content h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 42px;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact1-info .right-content h2 em {
  font-style: normal;
  color: #e95a49;
}

.contact1-info .right-content p {
  color: #000;
}
.contact1-info .right-content .contact-info{
	margin-bottom:20px;
}
.contact1-info .right-content .contact-info h6{
  font-size:18px;
  color: #000;
  font-weight:600;
}
.contact1-info .right-content .contact-info i{
  margin-bottom:10px;
  font-size:20px;
  color: #e95a49;
}
.contact1-info .right-content .contact-info h6 p{
  font-size:18px;
  color: #000;
}
@media (max-width: 992px) {
  .contact-form {
    margin-bottom: 45px;
  }
}
/* 
---------------------------------------------
footer
--------------------------------------------- 
*/

@media (max-width: 992px) {
  footer {
    padding-top: 0px!important;
    margin-top: 0px!important;
  }
  footer .right-content {
    text-align: left;
  }
  footer .footer-content {
    padding: 60px 0px!important;
  }
}

footer {
  padding-top: 30px;
  /*background:rgba(233,88,71,1);*/
  /*background: linear-gradient(317deg, rgba(244, 124, 67, 1) 0%, rgba(241, 91, 101, 1) 100%);*/
  /*background: linear-gradient(48deg, rgba(233,88,71,1) 0%, rgba(184,13,13,1) 50%, rgba(133,16,2,1) 100%);*/
  background-image: url(../images/banner-footer.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
}

footer .footer-content {
  padding: 40px 0px;
}



footer .right-content {
 /* align-self: center;*/
}



.footer-content .right-content {
  color: #e11800;
}

.footer-content .right-content h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 42px;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-content .right-content h2 em {
  font-style: normal;
  color: #fff;
}

.footer-content .right-content p {
  color: #FFF;
}
.footer-content .right-content .contact-info{
	margin-bottom:20px;
}
.footer-content .right-content .contact-info h6{
  font-size:18px;
  color: #fff;
  font-weight:600;
}
.footer-content .right-content .contact-info h6 i{
  margin-bottom:10px;
  font-size:20px;
  color: #fff;
}
.footer-content .right-content .contact-info h6 p{
  font-size:18px;
  color: #fff;
}
.footer-content .right-content a {
  color: #FFF;
}

.footer-content .right-content a:hover {
  color: #FC3;
}

footer .social {
  overflow: hidden;
  margin-top: 0px;
}

footer .social li:first-child {
  margin-left: 0px;
}

footer .social li {
  margin: 0px 7.5px;
  display: inline-block;
}

footer .social li a {
  color: #fff;
  text-align: center;
  background-color: #e11800;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  font-size: 18px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

footer .social li a:hover {
  background-color: #004356;
  border-color: #fff;
  color: #fff !important;
}

footer .copyright {
  margin-top: 10px;
  font-weight: 400;
  font-size: 15px;
  color: #4a4a4a;
  letter-spacing: 0.88px;
  text-transform: capitalize;
}

footer .sub-footer {
  padding: 20px 0px;
  border-top: 1px solid rgba(250,250,250,0.3);
  text-align: center;
}

footer .sub-footer a {
	color: #FFF;
	font-weight: 600;
}

footer .sub-footer a:hover {
	color: #e95a49;
}

footer .sub-footer p {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  footer .copyright {
    text-align: center;
  }
  footer .social {
    text-align: center;
  }
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/
#preloader {
  overflow: hidden;
  background-image: linear-gradient(145deg, #f4813f 0%, #f1556a 100%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/********************
	popup
********************/
.popup1{
	position:fixed;
	height:100%;
	width:100%;
	background:rgba(0, 0, 0, 0.7);
	z-index:200;
	display:none;
}
.popup{
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}
.contentBox{
	position:relative;
	/*width:700px;
	height:400px;*/
	background:#fff;
	border-radius: 20px;
	display:flex;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contentBox .imgBx{
	position:relative;
	width:300px;
	height:400px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.contentBox .imgBx::before{
	content:'';
	position:absolute;
	width:250px;
	height:250px;
	border-radius:50%;
	background:#1c5b72;
}
.contentBox .imgBx img{
	position:relative;
	max-width:250px;
	z-index:1;
}

.contentBox .content{
	position:relative;
	width:400px;
	height:400px;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:10px;
}
.contentBox .content h2{
	font-size:30px;
	color:#ab1015;
	font-weight:600;
	margin-bottom:5px;
	text-transform:uppercase;
	text-align:center;
	text-shadow: 2px 0px 0px rgba(0,0,0,0.3);
}
.contentBox .content p{
	font-size:13px;
	color:#000;
	font-weight:300;
	line-height:1.3;
	margin-bottom:20px;
	text-align:center;
}
.contentBox .content h6{
	font-size:18px;
	color:#000;
	font-weight:600;
}
.contentBox .content h6 i{
	color:#ab1015;
	margin-right:10px;
}
.contentBox .content a{
	font-size:16px;
	color:#3b3b3b;
	font-weight:500;
	text-decoration:none;
	margin-left:20px;
}
.contentBox .content a:hover{
	font-size:16px;
	color:#ab1015;
	font-weight:500;
	text-decoration:none;
	margin-left:20px;
}
.contentBox .close{
	position:absolute;
	top:20px;
	right:20px;
	width:30px;
	height:30px;
	background:#ccc;
	background-position:center;
	border-radius:50%;
	text-align:center;
	opacity:1;
	z-index:1;
}
.contentBox .close i{
	position:relative;
	color:#000;
	font-size:20px;
	font-weight:300;
	text-shadow:none;
	opacity:1;
}
.contentBox .contact-form {
	position: relative;
	z-index: 0;
	padding: 0px;
	border-radius: 0px;
	background-color: #fff;
	box-shadow: none;
	
}
.contentBox .contact-form input{
	color: #777;
	font-size: 13px;
	border: 1px solid #eee;
	background-color: #fff;
	border-radius: 5px;
	width: 100%;
	height: 35px;
	outline: none;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-bottom: 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.contentBox .contact-form button.main-button {
	outline: none;
	border: none;
	cursor: pointer;
	font-size: 13px;
	border-radius:5px;
	padding: 10px 25px;
	background-color: #e11800;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.contentBox .contact-form button.main-button:hover {
	background-color: #004356;
}
@media (max-width: 767px) {
	.contentBox{
		width:300px;
		height:auto;
		flex-direction:column;
	}
	.contentBox .imgBx{
		height:200px;
		transform:translateY(-50px);
	}
	.contentBox .imgBx::before{
		background:#fff;
	}
	.contentBox .content{
		height:auto;
		width:100%;
		padding:0px 15px 20px 15px;
	}
	.contentBox .close{
		top:-50px;
		right:-10px;
		background:#fff;
		background-position:center;
	}
	#contact-no .center-heading h4 em{ display:block; }
}

/********************
	social-media
********************/
.social-media {
	display: block;
	position:fixed;
	bottom:5%;
	right:0%;
	z-index:10;
	align-items:center;
	-ms-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.social-media a {
	color:#fff;
	background: #00b009;
	border-radius:50%;
	text-align:center;
	text-decoration:none;
	font-family:fontawesome;
	position: relative;
	display: inline-block;
	width:50px;
	height:50px;
	padding-top:0px;
	margin:0 2px;
	-o-transition:all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	-webkit-font-smoothing: antialiased;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}

.social-media a:hover {
  	background: #00b009;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}
.social-media a span {
	color:#00b009;
	position:absolute;
	font-family:sans-serif;
	bottom:0;
	top:0;
	left:-120px;
	right:0px;
	padding:15px 55px 15px 15px;
	z-index:-1;
	font-size:15px;
	font-weight:600;
	border-radius:30px;
	border:2px solid #00b009;
	background:#fff;
	/*visibility:hidden;*/visibility:visible;
	opacity:0.8;
	-o-transition:all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-moz-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/*.social-media a span:before {
	content:'';
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
	position:absolute;
	bottom:-5px;
	left:40px;
}*/
.social-media a:hover span {
	/*bottom:50px;*/
	visibility:visible;
	opacity:1;
	left: -140px;
}
.social-media a:nth-of-type(1):before {
	content:'\f232';
	font-size:35px;
}


.topbar {
    /*background-color: #a51e23;*/
	background-color: #ec3237;
    padding: 8px 0;
}
.top-contact {
    padding-top: 5px;
}
.topbar .single-contact {
    display: inline-block;
    margin-right: 25px;
    color: #ccc;
    cursor: pointer;
}
.topbar .single-contact:last-child{
	margin-right:0px;
}
.topbar .single-contact,
.topbar .single-contact a{
    color: #b9d2e7;
	font-weight:normal;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
	font-size:15px;
}
.topbar .single-contact i {
	color: #f3a712;
	margin-right: 5px;
	font-size: 20px;
	position: relative;
	top: 2px;
}
.topbar .single-contact:hover,
.topbar .single-contact a:hover{
	color:#fff;
}
/* Top right */
.topbar-right {
    position: relative;
    float: right;
}
.topbar-right .button {
    float: left;
    right: 0;
}
.topbar-right .button .bizwheel-btn {
    height: auto;
    text-transform: initial;
    padding: 8px 15px;
    line-height: initial;
    background: #fff;
	font-size:14px;
    color: #f3a712;
    border: 1px solid transparent;
}
.topbar-right .button .bizwheel-btn:hover{
	background:transparent;
	border-color:#fff;
	color:#fff;
}
/* Social Icons */
.topbar .social-icons {
    float: left;
    margin-right: 20px;
    padding-top: 8px;
}
.topbar .social-icons li {
	display: inline-block;
	margin-right: 10px;
}
.topbar .social-icons li:last-child{
	margin:0;
}
.topbar .social-icons li a {
	color: #ccc;
}
.topbar .social-icons li a:hover{
	color:#F3A712;
}
#supporticon{    display: inline-block;
    position: fixed;
    bottom: 50px;
    z-index: 99;
    /*left: 5px;*/
    right: 10px;
}


/********************
	social-media
********************/
.supporticon {
	display: block;
	position:fixed;
	bottom:0%;
	right:0%;
	z-index:10;
	align-items:center;
	-ms-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.supporticon a {
	color:#fff;
	background: #00b009;
	border-radius:50%;
	text-align:center;
	text-decoration:none;
	font-family:fontawesome;
	position: relative;
	display: inline-block;
	width:50px;
	height:50px;
	padding-top:0px;
	margin:0 2px;
	-o-transition:all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	-webkit-font-smoothing: antialiased;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}

.supporticon a:hover {
  	background: #00b009;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}
.supporticon a span {
	color:#00b009;
	position:absolute;
	font-family:sans-serif;
	bottom:0;
	top:0;
	left:-50px;
	right:0px;
	padding:15px 55px 15px 15px;
	z-index:-1;
	font-size:15px;
	font-weight:600;
	border-radius:30px;
	border:2px solid #00b009;
	background:#fff;
	visibility:hidden;
	opacity:0;
	-o-transition:all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-moz-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/*.supporticon a span:before {
	content:'';
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
	position:absolute;
	bottom:-5px;
	left:40px;
}*/
.supporticon a:hover span {
	/*bottom:50px;*/
	visibility:visible;
	opacity:1;
	left: -120px;
}
.supporticon a:nth-of-type(1):before {
	content:'\f232';
	font-size:35px;
}



.supporticon-1 {
	display: block;
	position:fixed;
	bottom:0%;
	left:5%;
	z-index:10;
	align-items:center;
	-ms-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.supporticon-1 a {
	color:#fff !important;
	background: #2076fd;
	border-radius:50%;
	text-align:center;
	text-decoration:none;
	font-family:fontawesome;
	position: relative;
	display: inline-block;
	width:50px;
	height:50px;
	padding-top:3px;
	margin:0 2px;
	-o-transition:all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	-webkit-font-smoothing: antialiased;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}

.supporticon-1 a:hover {
  	background: #2076fd;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}
.supporticon-1 a span {
	color:#2076fd;
	position:absolute;
	font-family:sans-serif;
	width:200px;
	bottom:0;
	top:0;
	left:-50px;
	/*right:0px;*/
	padding:12px 15px 15px 55px;
	z-index:-1;
	font-size:15px;
	font-weight:600;
	border-radius:30px;
	border:2px solid #2076fd;
	background:#fff;
	visibility:hidden;
	opacity:0;
	-o-transition:all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-moz-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/*.supporticon-1 a span:before {
	content:'';
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
	position:absolute;
	bottom:-5px;
	left:40px;
}*/
.supporticon-1 a:hover span {
	/*bottom:50px;*/
	visibility:visible;
	opacity:1;
	left: 0px;
}
.supporticon-1 a:nth-of-type(1):before {
	content:'\f003';
	font-size:30px;
}


.supporticon-2 {
	display: block;
	position:fixed;
	bottom:9%;
	left:5%;
	z-index:10;
	align-items:center;
	-ms-transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
}
.supporticon-2 a {
	color:#fff !important;
	background: #fd7e20;
	border-radius:50%;
	text-align:center;
	text-decoration:none;
	font-family:fontawesome;
	position: relative;
	display: inline-block;
	width:50px;
	height:50px;
	padding-top:4px;
	margin:0 2px;
	-o-transition:all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	-webkit-font-smoothing: antialiased;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}

.supporticon-2 a:hover {
  	background: #fd7e20;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}
.supporticon-2 a span {
	color:#fd7e20;
	position:absolute;
	font-family:sans-serif;
	width:200px;
	bottom:0;
	top:0;
	left:-50px;
	/*right:0px;*/
	padding:12px 15px 15px 55px;
	z-index:-1;
	font-size:15px;
	font-weight:600;
	border-radius:30px;
	border:2px solid #fd7e20;
	background:#fff;
	visibility:hidden;
	opacity:0;
	-o-transition:all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-moz-transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/*.supporticon-2 a span:before {
	content:'';
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #fff;
	position:absolute;
	bottom:-5px;
	left:40px;
}*/
.supporticon-2 a:hover span {
	/*bottom:50px;*/
	visibility:visible;
	opacity:1;
	left: 0px;
}
.supporticon-2 a:nth-of-type(1):before {
	content:'\f095';
	font-size:30px;
}
@media (max-width: 768px) {
	.supporticon-2 {
		left:8%;
		bottom:15%;
	}
	.supporticon-1 {
		left:8%;
	}
	
}
@media (max-width: 400px) {
	.supporticon-2 {
		left:10%;
		bottom:8%;
	}
	.supporticon-1 {
		left:10%;
	}
	.supporticon {
		right:-4%;
	}
}
/********************
	mail
********************/
.mail1{
	position:fixed;
	height:100%;
	width:100%;
	background:rgba(0, 0, 0, 0.7);
	z-index:200;
	display:none;
}
.mail{
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}
.call1{
	position:fixed;
	height:100%;
	width:100%;
	background:rgba(0, 0, 0, 0.7);
	z-index:200;
	display:none;
}
.call{
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}

#videobtn{ cursor:pointer; }
.videobox{
	position:fixed;
	height:100%;
	width:100%;
	background:rgba(0, 0, 0, 0.7);
	z-index:200;
	display:none;
}
.videobox{
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
}

.closevideo,.closemail,.closecall{ cursor:pointer;}
.contentBox{
	position:relative;
	/*width:700px;
	height:400px;*/
	background:#fff;
	border-radius: 20px;
	display:flex;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/*.contentBox .imgBx{
	position:relative;
	width:300px;
	height:400px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.contentBox .imgBx::before{
	content:'';
	position:absolute;
	width:250px;
	height:250px;
	border-radius:50%;
	background:#1c5b72;
}
.contentBox .imgBx img{
	position:relative;
	max-width:250px;
	z-index:1;
}*/


.contentBox .content{
	position:relative;
	width:400px;
	height:400px;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:10px;
}

.videobox .contentBox .content{ width:100%;height:100%; }

.contentBox .content{
	position:relative;
	width:400px;
	height:400px;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:10px;
}
.contentBox .content h2{
	font-size:30px;
	color:#ab1015;
	font-weight:600;
	margin-bottom:5px;
	text-transform:uppercase;
	text-align:center;
	text-shadow: 2px 0px 0px rgba(0,0,0,0.3);
	padding-top:20px;
}
.contentBox .content p{
	font-size:13px;
	color:#000;
	font-weight:300;
	line-height:1.3;
	margin-bottom:20px;
	text-align:center;
}
.contentBox .content h6{
	font-size:18px;
	color:#000;
	font-weight:600;
}
.contentBox .content h6 i{
	color:#ab1015;
	margin-right:10px;
}
.contentBox .content a{
	font-size:16px;
	color:#3b3b3b;
	font-weight:500;
	text-decoration:none;
	margin-left:20px;
}
.contentBox .content a:hover{
	font-size:16px;
	color:#ab1015;
	font-weight:500;
	text-decoration:none;
	margin-left:20px;
}
.contentBox .close{
	position:absolute;
	top:20px;
	right:20px;
	width:30px;
	height:30px;
	background:#ccc;
	background-position:center;
	border-radius:50%;
	text-align:center;
	opacity:1;
	z-index:1;
}
.contentBox .close i{
	position:relative;
	color:#000;
	font-size:20px;
	font-weight:300;
	text-shadow:none;
	opacity:1;
}
.contentBox .contact-form {
	position: relative;
	z-index: 0;
	padding: 0px;
	border-radius: 0px;
	background-color: #fff;
	box-shadow: none;
	
}
.contentBox .contact-form input{
	color: #777;
	font-size: 13px;
	border: 1px solid #eee;
	background-color: #fff;
	border-radius: 5px;
	width: 100%;
	height: 35px;
	outline: none;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-bottom: 10px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.contentBox .contact-form button.main-button {
	outline: none;
	border: none;
	cursor: pointer;
	font-size: 13px;
	border-radius:5px;
	padding: 10px 25px;
	background-color: #e11800;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.contentBox .contact-form button.main-button:hover {
	background-color: #004356;
}
@media (max-width: 767px) {
	.contentBox{
		width:300px;
		height:auto;
		flex-direction:column;
	}
	/*.contentBox .imgBx{
		height:200px;
		transform:translateY(-50px);
	}
	.contentBox .imgBx::before{
		background:#fff;
	}*/
	.contentBox .content{
		height:auto;
		width:100%;
		padding:0px 15px 20px 15px;
	}
	.contentBox .close{
		top:-50px;
		right:-10px;
		background:#fff;
		background-position:center;
	}
}

.colorred{ color: #b10000;}





/*****************************

******************************/

.li-bxshadoe li{
	 background: #fff;
	 /*padding: 15px;
	 margin-bottom: 10px;
	 border-right: 5px solid #b10000;
	 border-left: 5px solid #b10000;*/
	 padding: 10px 20px;
	 margin-bottom: 20px;
	 border-right: 5px solid #b10000;
	 border-left: 5px solid #b10000;
	 border-radius: 50px;
}
.li-bxshadoe li .list-h{
	font-weight:500;
	align-items: center;
    display: flex;
	justify-content: center;
}
.li-bxshadoe li .list-h i{
	padding: 7px;
	color: #b10000;
}







/*****************************
			Team
******************************/

#team{
	padding-top: 150px;
	padding-bottom: 80px;
}
#team h3{
	text-transform:uppercase;
	margin-bottom:5px;
	color: #b10000;	
}
#team h5{
	text-transform:uppercase;
	margin-bottom:20px;
	color: #484848;
	
}
#team .border-bcolor{
	border-bottom: 1px double #b10000;
	padding-bottom: 50px;
	padding-top:50px;
}
@media (max-width: 810px) {
	#team{
		padding-top: 80px;
	}
	
}

/*****************************
		Contact
******************************/
#contact-in{
	padding-top: 150px;
	padding-bottom: 80px;
}
#contact-in .contact-info h6 {
	padding-bottom:10px;
    font-size: 25px;
    color: #b10000;
    font-weight: 600;
}
#contact-in .contact-info p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}
#contact-in .contact-info p strong{
    font-size: 16px;
    color: #b10000;
}
.form-bg-2 {
  position: relative;
}

.form-bg-2 .contact-form {
	position: relative;
	z-index: 1;
	padding: 40px 20px;
	background: #ecebeb;
  
}
.form-bg-2 .contact-form input, .form-bg-2 .contact-form select{
  color: #777;
  font-size: 14px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 50px;
  width: 100%;
  height: 40px;
  outline: none;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 20px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.form-bg-2 .contact-form textarea {
  border-radius: 10px;
  color: #777;
  font-size: 14px;
  border: 1px solid #eee;
  background-color: #fff;
  width: 100%;
  height: 100px;
  outline: none;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 20px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}

.form-bg-2 .contact-form h6 em{
  color: #fff;
}

.form-bg-2 .contact-form {
  text-align: center;
}

.form-bg-2 .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #7a7a7a;
}

.form-bg-2 .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #7a7a7a;
}

.form-bg-2 .contact-form ::placeholder {
  color: #7a7a7a;
}

#contact-us{
	padding: 80px 0 0px 0 !important;
    background-image: url(../images/bg-top-2.png);
    background-repeat: no-repeat;
    background-position: top;


	}

@media (max-width: 810px) {
	#contact-in .center-heading h4 {
		font-size:25px;
	}
}

@media (max-width: 992px) {
  .practice-item {
    margin-bottom: 45px;
  }
}

.practice-item {
  border-radius: 5px;
  padding: 30px;
  margin-bottom:20px;
  text-align: center;
  background:#fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.practice-item p{ color:#4b4b4b !important;}
.practice-item h2 {
  z-index: 9;
  position: absolute;
  top: 15px;
  left: 45px;
  font-size: 100px;
  font-weight: 600;
  color: #fdefe9;
}

.practice-item img {
  z-index: 10;
  position: relative;
  max-width: 100%;
  margin-bottom:30px;
}

.practice-item h4 {
  margin-top: 0px;
  font-size: 22px;
  color: #1e1e1e;
  margin-bottom: 10px;
}
.practice-item h5 {
  margin-top: 0px;
  font-size: 18px;
  color: #b10000;
  margin: 10px 0;
 /* text-align:left;*/
}

.practice-item .main-button {
  margin-top: 35px;
  display: inline-block;
}

.li-practice li{
	 background: #f3f3f3;
	 /*padding: 15px;
	 margin-bottom: 10px;
	 border-right: 5px solid #b10000;
	 border-left: 5px solid #b10000;*/
	 padding: 10px 20px;
	 margin-bottom: 10px;
	 border-right: 5px solid #b10000;
	 border-left: 5px solid #b10000;
	 border-radius: 50px;
	 
	 /*text-align:left;*/
}
.li-practice li .list-h{
	font-weight:500;
	align-items: center;
    display: flex;
	justify-content: center;
	font-size: 15px;
}
.li-practice li .list-h i{
	padding: 7px;
	color: #b10000;
}

.carousel-indicators li{background-color:#ec3339;height: 5px;}