
* {
	margin: 0;
	padding: 0;
}

@font-face {
  font-family: myslimfont;
  src: url('../fonts/HindMadurai-Light.ttf');
}

@font-face {
  font-family: myboldfont;
  src: url('../fonts/PatuaOne-Regular.ttf');
}

@font-face {
  font-family: mymidfont;
  src: url('../fonts/Quando-Regular.ttf');
}
@font-face {
  font-family: myhomefont;
  src: url('../fonts/MPLUS1p-Medium.ttf');
}

body {
	margin: 0;
	padding: 0;
	font-family: arial;
	font-size: 16px;
	background: #eeeeee;
}
:root {
  --color-white: hsl(0, 0%, 100%);
  --color-light: hsl(206, 33%, 96%);
  --color-black: hsl(0, 0%, 7%);
  --color-night: hsl(214, 100%, 10%);
  --color-purple: hsl(291, 64%, 42%);
  --color-indigo: hsl(255, 100%, 60%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  	0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  	0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
	background: #000c23;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  max-width: 83rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  border: none;
  outline: none;
  color: var(--color-indigo);
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

.navbar {
  max-width: 100%;
  height: auto; 
  background: #f9a11e !important;
  margin: 0 auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: var(--shadow-large);
}
.navbar .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.navbar .burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 2rem;
  height: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  transform: rotate(0deg);
  transition: 0.35s ease-in-out;
}
.navbar .burger-line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--color-black);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.navbar .burger-line:nth-child(1) {
  top: 0;
}
.navbar .burger-line:nth-child(2), .navbar .burger-line:nth-child(3) {
  top: 0.5rem;
}
.navbar .burger-line:nth-child(4) {
  top: 1rem;
}
.navbar .burger.is-active .burger-line:nth-child(1), .navbar .burger.is-active .burger-line:nth-child(4) {
  top: 1.25rem;
  width: 0%;
  left: 50%;
}
.navbar .burger.is-active .burger-line:nth-child(2) {
  transform: rotate(45deg);
}
.navbar .burger.is-active .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}
.navbar .menu-inner {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.navbar .menu {
  overflow-x: visible !important;
  overflow-y: visible !important;
}

.navbar .menu-link {
  font-family: inherit;
  font-size: 1rem;
  position: relative;
  font-weight: 600;
  line-height: inherit;
  border: none;
  color: #000000;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  transition: all 0.35s ease-in-out;
}
.navbar .menu-link:hover,
.navbar .menu-link:focus,
.navbar .menu-link:active { 
  color: #fff; 
}
/* Hide Dropdowns by Default */
.navbar ul ul {
	display: none;
	position: absolute;  
	z-index: 50;
	width:250px;
	padding-top: 20px;
	right: 0px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	max-width: 100%;
}
@media(max-width: 768px){
	.navbar ul ul {
		left: 0px;
	}
}	
/* Display Dropdowns on Hover */
.navbar ul li:hover > ul {
	display: table;
}

.small-blocks div.col-sm-4 {
	border: 2px solid #ccc;
	padding-top: 12px;
}
	
/* Fisrt Tier Dropdown */
.navbar ul ul li {
	float:none;
	display:list-item;
	position: relative;
	width: 250px;
}
/* Fisrt Tier Dropdown */
.navbar ul ul li > a { 
	line-height: 45px; 
	display: block;
	text-transform: uppercase;
	padding: 0px 16px 0px 16px;
	background: #fff !important;
	color: #000    !important;
	border-bottom: 2px solid #ccc;
	
}
 
	
/* Change this in order to change the Dropdown symbol */
.navbar li > a:after { content:  ' +'; }
.navbar li > a:only-child:after { content: ''; }

.navbar .menu-inner ul li {
	width: 100%;
}
.navbar .menu-link span { 
	display: inline-block;
	width: 15px;
	height: 15px;
	position: absolute;
	right: -2px;
	top: -5px;
	background: #ff0000;
	text-align: center;
	-webkit-border-radius: 5em;
	line-height: 13px;
}
.navbar .menu-link button {
	background: #fff !important;
}
.active {
	color: #000c23 !important;
}
@media only screen and (max-width: 768px) {
  .navbar .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .navbar .menu {
    width: 100%;
    max-height: 0rem;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.35s ease;
  }
  .navbar .menu.is-active {
    opacity: 1;
    visibility: visible;
  }
  .navbar .menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
  }
} 

.services-page {
	width: 100%;
	min-height: 400px;
	position: relative;
}

.contact-btn-m {
	background: #fff !important;
}
/* menu 2 ======= */ 
div.sticky2 {
  position: relative;
  background: #000c23;
  color: #fff !important;
  font-size: 20px;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  width: 100%;
}

div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #f9a11e;
  padding: 10;
  font-size: 20px;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  z-index: 99;
}

#menu-center {
    width: 100%;
    height: 66px;
    background: #f9a11e;
    position: relative;
    border: 0px;
    padding-right: 20px;
    
}
#menu-center ul {
    margin: 15px 0 0 0;
}
#menu-center ul li {
    list-style: none;
    margin: 0 28px 0 0;
    display: inline;
    float: left;
}
.active {
    font-family:'Droid Sans', serif;
    text-decoration: none;
    border-bottom: 2px solid #f9a11e;
}
#menu-center ul li a {
    font-family: arial;
    font-size: 18px;
    color: white;
    display: block;
    font-weight: bold;
    text-decoration: none;
    line-height: 32px;
}
 
.readmore  {
	display: inline-block;
	max-width: 100%;
	padding: 0px 16px 0px 16px;
	line-height: 45px;
	background: #fff;
	border: 1px solid #000;
	text-decoration: none !important; 
	text-align: center;
	-webkit-border-radius: 1.5em;
	font-size: 18px;
	color: #000 !important;
	margin-bottom: 21px;
}
.readmore:hover {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	background: #f89f07;
	border: 1px solid #a6a6a6;
}

.readmore-2  { 
	max-width: 100%;
	line-height: 45px;
	background: #fff;
	border: 1px solid #000;
	text-decoration: none !important;
	-webkit-border-radius: 5em;
	display: inline-block;
	text-align: center;
	font-size: 18px;
	color: #000 !important;
	margin-bottom: 21px;
}
.readmore-3  {
	width: 290px;
	max-width: 100%;
	line-height: 45px;
	background: #fff;
	border: 1px solid #000;
	text-decoration: none !important;
	-webkit-border-radius: 5em;
	display: inline-block;
	text-align: center;
	font-size: 18px;
	color: #000 !important;
	margin-bottom: 21px;
}

.readmore-1  {
	width: 220px;
	line-height: 55px;
	background: #000c23;
	text-decoration: none !important;
	-webkit-border-radius: 5em;
	display: inline-block;
	text-align: center;
	font-size: 18px;
	color: #000 !important;
	margin-top: 21px;
	margin-bottom: 21px;
}
 
hr {
	display: inline-block;
	width:100%;
	height: 0.8px;
	background: #d4d4d4;
} 
a {
	text-decoration: none !important;
} 

 
.modal-header button {
	font-size: 41px !important;
	opacity: 1 !important;
	padding: 10px;
	margin-bottom: 0px !important;
}
.modal-title {
	font-size: normal; 
}
.modal-title img {
	display: inline-block;
	width: 45px;
}
.modal-body {
	margin: 0px !important;
	padding: 20px !important;
}  
.nav-tabs.centered > li, .nav-pills.centered > li {
    float:none;
    display:inline-block;
    *display:inline; /* ie7 fix */
     zoom:1; /* hasLayout ie7 trigger */
}

.nav-tabs.centered, .nav-pills.centered {
    text-align: center;
}

.nav-tabs>li > a {
	line-height: 56px !important;
	-webkit-border-radius: 0px;
	margin-top: 0px !important;
	border-top: 0px !important;
	color: #000 !important;
}
.nav-tabs>li > a:hover {
	background: none !important;
	border: 0px !important;
}
.nav-tabs .active > a {
	line-height: 56px !important;
	font-family: arial;
}
.tab-content {
	width: 100%;
}
.logindetails {
	width: 100%;
	padding: 40px;
	font-family: myslimfont;
}
.input-group {	
	margin-bottom: 12px;
} 
 
/* Preloader with Bootstrap Progress Bar
-----------------------------------------------*/
.loader2 {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	padding: 20px;
	background:  #000c23;
	color: #fff;
}
.loader-container {
	width: 400px;
	max-width: 100%;
	height: 200px;
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0; 
	margin: auto;
	text-align: center;
}
.loader-container h3 {
	text-transform: uppercase !important;
	font-size: 22px;
}
.logo-load {
	width: 350px;
	max-width: 100%;
	margin: 0 auto;
	margin-bottom: 35px;
}

.home-page {
	width: 100%;
	height: 100vh;
	background: url('../img/bg-img-home.JPG')no-repeat center 100%;
	padding: 7% 20px 50px 20px;
	background-size: cover ;
	margin: 0px; 
	position: relative;
}
.logo-homePG {
	width: 400px;
	max-width: 100%;
	margin: 0 auto;
	margin-bottom: 41px;
}
.pag-home-block {
	width: 100%;
	min-height: 200px;
	position: relative;  
	margin: auto; 
	text-align: center;
}
.pag-home-block  a {
	color: #000 !important;
}
.single__company {
	position: relative;
	width: 100%;
	min-height: 300px;
	background: #fff; 
	margin-bottom: 21px;
	padding: 10px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	-ms-border-radius: 0.5em;
	-o-border-radius: 0.5em;
}
.wrapped-content-home {
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
	margin-top: 21px;
}
.wrapped-content-home .btn-home {
	display: inline-block;
	background: #f89f07;
	color: #000;
	padding: 0px 26px 0px 26px;
	line-height: 35px;
	margin-bottom: 12px;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	
}
@media(max-width: 768px){
	.wrapped-content-home .btn-home {
		font-size: 100% !important;
	}
}
.wrapped-content-home .btn-home i {
	display: inline-block;
	width: 25px;
	height: 25px;
	position: relative;
	margin-right: -15px;
	margin-left:  15px;
	line-height: 25px;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
	background: #fff;
}
.wrapped-content-home .btn-home:hover,
.wrapped-content-home .btn-home:focus,
.wrapped-content-home .btn-home:active {
	 background: #050d20;
	 color: #fff !important;
}
.wrapped-content-home .btn-home:hover i,
.wrapped-content-home .btn-home:focus i,
.wrapped-content-home .btn-home:active i { 
	 color: #000 !important;
}
.wrapped-img-pg {
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
	background: #000;
	text-align: center;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	-ms-border-radius: 0.5em;
	-o-border-radius: 0.5em;
}
.wrapped-img-pg .logo-small {
	width: 70px;
	height: 70px;
	position: absolute;
	z-index: 9;
	overflow: hidden;
	background: #fff;
	left: 10px;
	top: 10px;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
}
.wrapped-img-pg .logo-small img {
	display: block;
	width: 100%;
}
.wrapped-img-pg h4 {
	position: absolute;
	bottom: 10px;
	width: 100%;
	z-index: 10;
	text-transform: uppercase;
	display: block;
	color: #fff;
	font-weight: bolder;
	text-align: center;
}
.wrapped-img-pg img {
	display: block; 
	height: 100%;
	width: 100%;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	object-fit: cover;
	object-position: top;
}
.wrapped-img-pg::after {
	display: block;
	content: '';
	width: 100%;
	bottom: 0px;
	height: 120px;
	position: absolute;
	z-index: 8; 
	background: rgb(2,0,36);
	background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(0,212,255,0) 57%); 
}
.single__company:hover img {
	transform: scale(1.2);
	opacity: 0.6;
}
 
.owl-next:focus, .owl-prev:focus {outline: none;}

.slider-main .item {
  height: 70vh;
  margin-bottom: 0px !important;
  padding-bottom: 0px !important; 
  position: relative;
  font-family: arial;
}
.slider-main .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-main .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}
.slider-main .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
} 
.slider-main .item .cover .header-content h2 {
  font-weight: 900;
  font-size: normal;
  color: #fff;
}
.slider-main .item .cover .header-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 5px 0 20px;
  word-spacing: 3px;
  color: #fff;
}
.slider-main .item .cover .header-content h4 {
  font-size: 100%;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.slider-main .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider-main .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.slider-main .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.slider-main .owl-item.active a {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.slider-main .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
.slider-main .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.slider-main .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
.slider-main .owl-nav .owl-prev:focus {
  outline: 0;
}
.slider-main .owl-nav .owl-prev:hover {
  background: #000 !important;
}
.slider-main .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.slider-main .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
.slider-main .owl-nav .owl-next:focus {
  outline: 0;
}
.slider-main .owl-nav .owl-next:hover {
  background: #000 !important;
}
.slider-main:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.slider-main:hover .owl-next {
  right: 0px;
  opacity: 1;
}
 
.contact-btn-m {
	display: inline-block;
	line-height: 45px !important;
	padding: 0px 16px 0px 16px;
	-webkit-border-radius: 5em;
}
.contact-btn-m:hover {
	background:  #000 !important;
}
.slider-main {
	margin: 0 auto;
}

.about-us-home {
	width: 100%;
	min-height: 300px;
	padding: 30px;
	background: #fff;
	position: relative;
	margin-top: -21px;
	padding-top: 100px;
	padding-top: 50px 
}

.about-us-home h1 {
	font-weight: 1000;
}

.img-wrap img {
	float: right;
    clear:none;
    -webkit-border-radius: 0.5em;
    width: 100%;
}

.img-wrap {
	position: relative;
	padding-top: 20px;
}

.services-section {
	width: 100%;
	position: relative;
	min-height: 300px;
	background: #09142a;
	padding: 120px 20px 120px 20px;
} 
 .service_single {
 	width: 100%;
 	min-height: 300px;
 	text-align: center;
 	background: #fff;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
 }
  
 .service_single a.readmore {
 	font-family: arial;
 }
 .service_single a.readmore i{
 	margin-left: 12px;
 }

.services-section h1 {
	text-align: center;
	font-weight: 1000;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 51px;
}

.head___title {
	width: 100%;
	min-height: 20px;
	padding: 20px;
	text-align: center;
}

.head___title h3 { 
	font-family: arial;
}
.title___images {
	width: 100%;
	height: 200px;
	background: #000;
	position: relative;
	overflow: hidden;
}
.service_single:hover .title___images img {
	-webkit-transform: scale(1.2);
	opacity: 0.5;
}
.title___images img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
	-o-object-position: top;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
@media(max-width: 768px){
	.head___title h3 {
		font-size: 100%;
	}
	.header-content h4 {
		display: none;
	}
}

.team-prakis h1 {
	font-weight: 1000;
	color: #000;
	text-transform: uppercase; 
	text-align: center;
}

.team-prakis {
	width: 100%;
	position: relative;
	min-height: 420px;
	background: #fff;
	padding: 90px 0px 90px 0px;
}

.line-overthrough {
	width: 100%;
	position: relative; 
	margin-top: 150px;
	height: 100px;
	background: #f89f07;
}

.team-block-row {
	position: relative;
	margin-top: -220px; 
	min-height: 200px;
	width: 100%;
	z-index: 90;
}

.team___blokcs {
	width: 100%;
	min-height: 300px;
	background: #e1e1e1;
	-webkit-border-top-left-radius: 0.5em;
	-webkit-border-top-right-radius: 0.5em;
	color: #000;
	padding: 20px;
}
.img__teamProfile {
	width: 160px;
	height: 160px;
	overflow: hidden;
	background: #fff;
	position: relative;
	margin: 0 auto; 
	border: 5px solid #fff; 
	-webkit-border-radius: 50em;
	-moz-border-radius: 50em;
	-ms-border-radius: 50em;
	-o-border-radius: 50em;
}
.img__teamProfile img {
	-o-object-fit: cover;
	-o-object-position: top;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.content___bio {
	position: relative;
	width: 100%;
	height: auto;
	font-family: arial !important;
	text-align: center;
}

.content___bio h3  {
	margin-top: 12px;
	font-size: 18px;
	font-weight: bolder;
	text-transform: capitalize;
} 
.content___bio h4 {
	text-transform: capitalize;
	font-size: 14px;
}
.content___bio a {
	display: inline-block;
	padding:  0px 16px  0px 16px;
	line-height: 30px;
	border: 1px solid #000;
	color: #000 !important;
	text-transform: uppercase;
	font-size: 14px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
}
.content___bio a:hover,
.content___bio a:focus,
.content___bio a:active {
	background: #fff;
	border: 1px solid #000;
	color: #000 !important;
}
.btn-view-all {
	position: relative;
	width: 100%;
	height: auto;
	font-family: arial; 
	text-align: center;
	margin-top: 40px;
}
.btn-view-all a {
	display: inline-block;
	line-height: 45px;
	padding: 0px 28px 0px 28px;
	border: 2px solid #000;
	color: #000 !important;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
}
.logo-btm {
	width: 200px;
	max-width: 100%;
	min-height: 100px; 
	position: relative; 
}
.logo-btm img {
	display: block;
	width: 100%;
}
.social___medial {
	width: 100%;
	min-height: 50px;
	position: relative; 
}
.social___medial a {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border: 1px solid #fff;
	color: #fff !important;
	text-align: center;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
	margin-right: 12px;
}
.menu-btm-emails .form-control {
	-webkit-border-radius: 0px; 
}
.social___medial a:hover,
.social___medial a:focus,
.social___medial a:active {
	color: #000 !important;
	background: #fff;
}
.menu-btm-emails .form-control:focus,
.menu-btm-emails .form-control:active {
	border: 0px !important;
	-webkit-box-shadow: none;
}
.menu-btm-emails button {
	display: inline-block;
	border: 2px solid #fff;
	padding: 0px 16px 0px 16px;
	margin-left: 10px;
	color: #fff;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	line-height: 35px;
}
 
.menu-btm-emails button:hover,
.menu-btm-emails button:focus,
.menu-btm-emails button:active {
	background: #f89f07; 
}

.modal.left .modal-dialog,
	.modal.right .modal-dialog {
		position: fixed;
		margin: auto;
		width: 320px;
		height: 100%;
		-webkit-transform: translate3d(0%, 0, 0);
		    -ms-transform: translate3d(0%, 0, 0);
		     -o-transform: translate3d(0%, 0, 0);
		        transform: translate3d(0%, 0, 0);
	}

	.modal.left .modal-content,
	.modal.right .modal-content {
		height: 100%;
		overflow-y: auto;
	}
	
	.modal.left .modal-body,
	.modal.right .modal-body {
		padding: 15px 15px 80px;
	}



        
/*Right*/
	.modal.right.fade .modal-dialog {
		right: -320px;
		-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
		        transition: opacity 0.3s linear, right 0.3s ease-out;
	}
	.modal.right.fade.in .modal-dialog {
		right: 0;
	}

/* ----- MODAL STYLE ----- */
	.modal-content {
		border-radius: 0;
		border: none;
	}

	.modal-header {
		border-bottom-color: #EEEEEE;
		background-color: #FAFAFA;
	}

/* ----- v CAN BE DELETED v ----- */


 

.footer-home {
	width: 100%;
	height: auto;
	text-align: center;
	color: #fff;
	margin-top: 50px;
}

.footer-main {
	width: 100%;
	padding: 80px 20px 50px 20px;
	color: #fff !important;
	min-height: 300px;
	background: #09142a; 
	position: relative;
}
.footer-main h3 {
	font-weight: bolder;
	text-transform: uppercase;
	font-size: 21px;
	color: #fff;
	margin-bottom: 34px;
}
.text-btm-main {
	padding: 10px;
}
.menu-btm2 ul li {
	list-style-type: none; 
	margin-left: -20px;
}
.menu-btm2 li a {
	margin-right: 18px;
	display: inline-block;
	color: #fff !important;
	text-decoration: none;
	line-height: 31px;
}
.menu-btm2 li a:hover,
.menu-btm2 li a:focus,
.menu-btm2 li a:active {
	color: #d1ab14 !important;
}

.scroll-up {
	width: 50px;
	height: 50px;
	background: #dea725;
	display: none;
	text-align: center;
	right: 30px;
	z-index: 1000;
	border: 2px solid #09142a;
	line-height: 50px;
	-webkit-border-radius: 5em;
	-moz-border-radius: 5em;
	-ms-border-radius: 5em;
	-o-border-radius: 5em;
	position: fixed;
	color: #09142a !important;
	bottom: 54px;
}
.scroll-up i{
	font-size: 38px !important;
}
.btm-footer {
	line-height: 45px;
	text-align: center;
	background: #000c23;
	color: #fff;
	padding: 20px;
}

#footer-2 {
	font-size: 12px;
}
#footer-2 p {
	margin-top: 15px;
}