body {
  width: 100%;
  height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
  color: #353f58;
	font-size: 14px;
	line-height:normal;
  background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color: #353f58;
    line-height: normal;
}
h1, .h1 {
    font-size: 5rem;
    font-weight: 900 !important;
}

blockquote {
	color: #bbb;
	font-size: 20px;
}

p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.6em;
}

p.lead {
	font-weight: 600;
}

a {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 600;
}
.light {
    font-weight: 400;
}

img.img-responsive {
	margin-bottom: 20px;
}

.m-top-10 {
  margin-top: 10px !important;
}
.m-top-20 {
  margin-top: 20px !important;
}
.m-top-30 {
  margin-top: 30px !important;
}
.m-top-90 {
  margin-top: 90px !important;
}
.m-top-40 {
  margin-top: 40px !important;
}
.m-top-50 {
  margin-top: 50px !important;
}
.m-top-60 {
  margin-top: 60px !important;
}
.m-top-70 {
  margin-top: 70px !important;
}
.m-top-80 {
  margin-top: 80px !important;
}

.p-top-10per {
  padding-top:10% !important;
}

.m-right-20minus{margin-right: -20px !important;}

.jumbotron {
    padding: 30px;
    margin-bottom: 0;
    color: inherit;
    background-color: #eee;
}


/* ------- Navigation ------------ */
#navigation {
    background: inherit;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
    border-bottom: none;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    /*box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.2);*/
}

.navbar {
    margin-bottom: 0;
}

.navbar-brand {
    font-weight: 700;
}


.navbar-brand:focus {
    outline: 0;
}

.nav.navbar-nav {
    background: #fff;
    box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.2);
}
#menu .nav.navbar-bar {
	text-align: center;
	float: none;
	margin: 0 auto;
}

.navbar-custom ul.nav {
	text-align: center;
	float: none;
	margin: 0 auto;
}
.navbar-custom ul.nav li {
	float: none;
	display: inline-block;
	text-align: center;
}
.navbar-custom ul.nav li a {
    font-size:14px;
    letter-spacing: 0;
    color: #444;
    text-transform: uppercase;
    font-weight:600;
    padding:7px 15px;
    margin: 10px 0px;
}


.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color:#00277c;
    color: #fff;
}
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color:#00277c;
    color: #fff;
}

.navbar-toggle {
    padding: 4px 6px;
    font-size: 14px;
    color: #fff;
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
}


/* loader */
#preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
}


#loaderInner {
    background:#ffffff url(../img/spinner.gif) center center no-repeat;
    height: 60px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 50%;
    width: 60px;
}

@keyframes boxSpin{
  0%{
    transform: translate(-10px, 0px);
  }
  25%{
    transform: translate(10px, 10px);
  }
  50%{
    transform: translate(10px, -10px);
  }
  75%{
    transform: translate(-10px, -10px);
  }
  100%{
    transform: translate(-10px, 10px);
  }
}


@keyframes shadowSpin{
  0%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
  25%{
    box-shadow: 10px 10px #39CCCC, -10px -10px #FFDC00;
  }
  50%{
    box-shadow: -10px 10px #39CCCC, 10px -10px #FFDC00;
  }
  75%{
    box-shadow: -10px -10px #39CCCC, 10px 10px #FFDC00;
  }
  100%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
}

#load {
	z-index: 9999;
  background-color: #FF4136;
  opacity: 0.75;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  margin: -5px auto 0 auto;
  left: 0;
  right: 0;
  border-radius: 0px;
  border: 5px solid #FF4136;
  box-shadow: 10px 0px #39CCCC, 10px 0px #01FF70;
  animation: shadowSpin 1s ease-in-out infinite;
}

/* misc */
hr {
  margin-top: 10px;
}

/* margins */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}

/* ===========================
--- General sections
============================ */
.page-section {
    padding: 5rem 0;
}
.home-section {
    padding-top:80px;
    padding-bottom:70px;
	 display:block;
    position:relative;
    z-index:120;
}

.footer-section {
  display:block;
  position:relative;
  background: #252935;
}

.footer-section h5 {
    font-size: 1.2em;
    color: #fff ;
    font-weight: 600;
    margin: 0 0 10px ;
}

.footer-section p {
  font-size: 0.9em;
    color: #fff;
    margin: 0 0 10px;
}

.custom-listing {
    padding: 10px 15px;
    margin:25px 10px;
    background: whitesmoke;
    width: 31%;
}
.custom-listing ul {
    padding: 0;
    list-style: none;
    margin: 5px 0px;
    float: left;
}
.custom-listing ul li {
    padding:0px 0px;
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: left !important;
    float: left !important;
    width: 100%;
}
.custom-listing ul li a {
    color: #444 ;
    text-decoration: none;
    width: 100%;
    float: left;
    padding: 10px 15px!important;
    margin: 0px !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.list-unstyled li {
    display: list-item;
    text-align: -webkit-match-parent;
}

.list-unstyled li a {
  color: #fff;
  font-size: 14px;
}



.section-heading {
	margin-bottom: 50px;
}

.section-heading h2 {
	font-size: 40px;
	margin-bottom: 10px;
	line-height: 1em;
}
.section-heading i {
	margin-bottom: 20px;
}


/* --- section bg var --- */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f8f8f8;
}


.bg-dark {
	background: #575757;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}



/* ===========================
--- Intro
============================ */

.intro {
	width:100%;
	position:relative;	
	background:#fff;
}

#intro.intro {
	padding:40px 0;
}

.intro .slogan {
	text-align: center;

}

.intro .page-scroll {
	text-align: center;
}


.intro .page-scroll a {
	color: #fff;
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
}

.intro .slogan h2 {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
	font-family: Montserrat, sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	border-width: 0px;
	border-color: #000;
	border-style: none;
	text-shadow: -1px 0 1px #000;
}

.intro .slogan h4 {
	color: #fff;
	text-shadow: -1px 1px 1px #000;
}

.header-text {
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.4);
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    height: 100%;
    padding-top: 13%;
}
.header-text h1 {
    color: #ffffff;
    text-shadow: 0px 0px 30px rgb(0, 0, 0);
    font-size: 5rem;
    text-transform: uppercase;
    line-height: normal;
    margin: 0px;
    letter-spacing: -0.5px;
}
.carousel-control {
    z-index: 3;
}
/* ===========================
--- About
============================ */
.about-section {
    padding-top: 80px;
    padding-bottom: 70px;
    display: block;
    position: relative;
    z-index: 120;
}
.about-section h4, .h4 {
    font-size: 18px;
    font-weight: 600 !important;
    color: #902722 !important;
}
 .about-head-banner {
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url("../img/gallery/19.jpg ");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding-top:15rem;
    padding-bottom: 4rem;
    margin-top: -30px;
 }
 .md-text {
    font-size:50px;
    font-weight:900;
    text-transform: none;
    color:#fff;
    font-family: 'Open Sans', sans-serif;
}

.ul-list ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.ul-list ul li {
  list-style: none;
  padding: 5px 0;
  border: none;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.2px;
  font-family: 'Open Sans', sans-serif;
  display: flex;
}
.ul-list ul li::before{
  content: "\2714";
  margin-right: 10px;
}


.ul-list ul li a{
  list-style: none;
  font-size: 13px;
  text-decoration: none;
}


.ul-list-footer ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.ul-list-footer ul li {
  list-style: none;
  padding:3px 0;
  border: none;
  font-size:13px;
  line-height: normal;
  letter-spacing: 0.2px;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  color: #ffffff;
}
.ul-list-footer ul li::before{
  content: "\2714";
  margin-right: 10px;
}

.ul-list-footer ul li a{
  list-style: none;
  font-size: 13px;
  text-decoration: none;
}



.icon .fa {
	color: #fff;
}



/* ==========================
--- Gallery
============================= */


.item {
    margin: 0px;
}
.item a {
  margin: 10px 0px;
  float: left;
}

.item img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px 10px;
}	
.carousel-inner .item img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px 0px;
    filter: blur(2px);
    -webkit-filter: blur(2px);
} 


/* ===========================
--- Contact
============================ */

.form-control{box-shadow: none;height: 40px; padding: 10px 12px;}

.form-wrapper {
	background: #f9f9f9;
	padding: 40px;
	 border-radius: 6px;
}


form#contact-form .form-group label {
	text-align: left !important;
	display: block;
	letter-spacing: 1px;
	font-size: 16px;
}
form#contact-form input,form#contact-form select,form#contact-form textarea {
	border-radius: 4px;
	border: 1px solid #eee;
  -webkit-box-shadow: none;
          box-shadow:  none;
	font-size: 16px;
	margin-bottom: 20px;
	background: #fefefe;
	color: #888;
}

form#contact-form input,form#contact-form select {
	height: 40px;
}

form#contact-form button {
	border-radius: 4px;
	height: 40px;
	text-transform: none;
	font-size: 16px;
	font-weight: 700;
}

form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
	background: #fff;
}

.validation {
    color: red;
    display:none;
    margin: 0 0 20px;
    font-weight:400;
    font-size:13px;
}

#sendmessage {
    color: green;
    border:1px solid green;
    display:none;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#errormessage {
    color: red;
    display:none;
    border:1px solid red;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#sendmessage.show, #errormessage.show, .show {
	display:block;
}

/* ===========================
--- Footer
============================ */

footer {
	padding: 50px 0 30px;
	
}

footer p {
	color: #f8f8f8;
}

footer a {
	color: #fff;
}

footer a:hover {
	color: #ccc;
}
.credits {
    color: #fff;
}

/* ==========================
Parallax
============================= */

#separator {	
	background-image: url(../img/gallery/35.jpg);
   background-repeat: no-repeat;
   -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
 max-width: 100%;
    overflow-x: hidden;



}

#separator .blur{  -webkit-filter: blur(5px); /* Safari 6.0 - 9.0 */
  filter: blur(5px);}


#separator .icon {
	margin-bottom: 20px;
}

#separator span {
	color: #fff;
}

#separator:after {	
	background-color: #6c1817;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}

/* ===========================
--- Elements
============================ */

.btn {
    font-weight:600;
	padding: 10px 15px;
	border-radius: 3px;
	font-size:12px;
	letter-spacing:0.5px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a.btn:hover {
	color: #fff;
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle.btn-dark {
    border: 2px solid #666;
    color: #666;
}


.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
    outline: 0;
    color: #999;
    background: #fff;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i{
    color: #999;
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
  color: #fff;
  background-color: #666;
  border-color: #666;
}

.btn-default {
    color: #324158;
    background-color: #e4e4e4;
    border-color: #e4e4e4;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #00277c;
    outline: 0;
    color: #fff;
    background-color: #00277c;
}

.btn-huge {
    padding: 25px;
    font-size: 26px;
}

.banner-social-buttons {
    margin-top: 0;
}


/* Media queries */

@media (max-width:768px) {
	.navbar-header .fa {
		color: #666;
	}
	
	.col-xs-6 {
		margin-bottom: 30px;
	}
}

@media (max-width:480px) {

	.navbar-custom .nav.navbar-nav {
    background-color: rgba(255,255,255,.4);
	}
	
	.navbar.navbar-custom.navbar-fixed-top {
		margin-bottom: 30px;
	}

	
	.page-scroll a {
		width: 40px;
		height: 40px;
		margin-top: 10px;
		font-size: 20px;
	}
	
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.card-body ul li {
  list-style: none;
  padding: 5px 0;
  border: none;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.5px;
  font-family: 'Open Sans', sans-serif;
}
.card-body ul li a{
  list-style: none;
  font-size: 13px;
  text-decoration: none;
}
.card-body ul li span {
    display: flex;
}
.card-body ul li i {
    float: left;
    margin-right: .3em;
    margin-top: .3em;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-body p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: normal;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.custom-cardimg-top {
    width: 100%;
    height: auto;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
    margin: 0px auto;
    background: #efefef;
    text-align: center;
    padding:0px 0px;
}

.card-img-top {
    width: 50%;
    height: auto;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
    margin: 0px auto;
    background: #efefef;
    mix-blend-mode: darken;
    transform: scale(1);
    transition: all 0.3s;
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

@media (min-width:1300px) {
  .container {
      width:1280px;
  }
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.custom-number {
    font-size: 1em;
    color: #032680;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    margin-top: 20px;
}
.custom-number span {
    font-size:1.87em;
}
.custom-email {
    font-size:0.89em;
    color: #353f58;
    font-weight: 500;
    margin-top: 20px;
}
.custom-email span {
    font-size: 1.5em;
}

.custom-number-footer {
    font-size: 1.3em;
    color: #1c1e21;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    padding: 1.5rem 0px;
}

.custom-number-footer a{
    color: #1c1e21;
}

.custom-card{
    border: none;
    border-radius: 100rem;
    padding: 24px 0px 0px 0px;
    text-align: center;
    width: 160px;
    height: 160px;
}
.custom-card h1 {
    font-size:30px;
    font-weight: 900 !important;
    color: #6c1817 !important;
    margin: 0px 0px !important;
}
.custom-card h5 {
    font-size: 14px;
    color: #444c65 !important;
	line-height: 1.7rem;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #fbfbfb;
    border: none;
    border-radius: 4px;
    box-shadow: none;
}
.custom-well{
	 height: 300px;
    background: #f0f0f0;
    border: none;
    box-shadow: none;
}
.custom-wellimg{
    box-shadow: 0px 1px 15px #a9a9a9;
    background: white;
    padding: 0px 0px;
    border-radius: 5px;
}

.custom-wellimg img{
    margin: 0px !important;
    padding: 0 !important;;
    width: 100%;
}
.well-contact {
    min-height: 20px;
    padding: 40px 50px;
    margin-bottom: 20px;
    background-color: #fbfbfb;
    border: none;
    border-radius: 4px;
    box-shadow: none;
}
.custom-card-list {
    border: none;
    box-shadow: 0px 0px 3px #ddd;
    margin-bottom: 20px;
}
.custom-card-list:hover{
	border: none;
    box-shadow: 0px 1px 15px 2px #dedede;
}

.custom-card-list:hover .btn-default {
    border: 1px solid #6c1817;
    outline: 0;
    color: #fff;
    background-color: #6c1817;
}

.custom-card-list h5 {
    font-size:18px;
    font-weight: 700 !important;
    color: #324158!important;
    margin: 5px 0px 15px 0px !important;
}
.custom-card-list .list-group-item {
    padding: 5px 0;
    border: none;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.5px;
}
.custom-card-list .list-group-item span{ display: flex;}
.custom-card-list .list-group-item i{ float:left; margin-right: .3em;}

.custom-megamenu {
    top: 93%;
}
.custom-megamenu .container {
    width:950px;
}

.megamenu {
  position: static;
}

.megamenu .dropdown-menu {
  background: none;
  border: none;
  width: 100%;
}

.custom-dropdown li { width: 100%; text-align: left !important;padding: 0px 10px; }
.custom-dropdown li a { margin: 5px 0px !important; }


@media screen and (max-width: 677px) and (min-width: 320px) {
  #intro.intro { padding: 10px 0;}
  .custom-email { margin-top: 0; margin-bottom: 15px; float: left;}
  .custom-email span{float: left; width: auto; font-size: 14px; margin: 0px 20px 0px 0px;}
  .intro .slogan { text-align: left;}
  .intro .slogan img{ width: 80%;}
  .custom-number span{ float: left; width: auto; font-size:16px; margin: 0px 20px 0px 0px;}
  .custom-number { float: left; width: 100%; margin-top: 10px;}
  .sticky-wrapper{ background: aliceblue;}
  #navigation{box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.2);}
  .carousel { position: relative; top: 0px !important; height: 250px;}
  .carousel-inner {width: 100%;height: 250px;}
  .header-text h1 {font-size: 2.5rem; letter-spacing: 0;}
  .carousel-inner .item img{ height: 250px;}
  .navbar-custom ul.nav li{ width: 100%;text-align: left;}
  .nav.navbar-nav { background: #fff !important; box-shadow: none;}
  .navbar-collapse{ padding-bottom: 15px;}
  .custom-listing {margin: 20px 0px; width: 100%; min-height: 200px;}
  .custom-megamenu .container { width: auto;}
  h1, .h1 {font-size: 3rem;}
  h4, .h4 {font-size: 14px; line-height: 24px !important;}
  .custom-well { height: auto; background: #f0f0f0;border: none; box-shadow: none; margin: 0px !important; min-height: 0;}
  .custom-card {padding: 2rem; text-align: center; width: 100%; height: auto; margin-bottom: 20px;}
  .custom-wellimg { margin: 30px 0px;}
  .home-section {padding-bottom: 0px; z-index: 120;}
  .owl-carousel .owl-item { float: left; width:32% !important;}
  .custom-number-footer{ text-align: center;}
}

@media screen and (max-width:767px) and (min-width:678px) {
  #intro.intro { padding: 10px 0;}
  .custom-email {float: left;}
  .custom-email span{float: none; width: auto; font-size: 14px; margin: 0px 20px 0px 0px;}
  .intro .slogan { text-align: center; float: left;}
  .intro .slogan img{ width: 80%;}
  .custom-number span{ float: right; width: auto; font-size:16px; margin: 0px 0px 0px 0px;}
  .sticky-wrapper{ background: aliceblue;}
  #navigation{box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.2);}
  .carousel { position: relative; top: 0px !important; height: 250px;}
  .carousel-inner {width: 100%;height: 250px;}
  .header-text h1 {font-size: 2.5rem; letter-spacing: 0;}
  .carousel-inner .item img{ height: 250px;}
  .navbar-custom ul.nav li{ width: 100%;text-align: left;}
  .nav.navbar-nav { background: #fff !important; box-shadow: none;}
  .navbar-collapse{ padding-bottom: 15px;}
  .custom-listing {margin: 20px 0px; width: 100%; min-height: 200px;}
  .custom-megamenu .container { width: auto;}
  h1, .h1 {font-size: 3rem;}
  h4, .h4 {font-size: 14px; line-height: 24px !important;}
  .custom-well {height: 300px; background: #f0f0f0;border: none; box-shadow: none; margin: 0px !important; min-height: auto;padding: 10px 0px; }
  .custom-card { padding: 2rem; text-align: center; width: 23%; height: auto; margin-bottom: 20px; float: left; margin-right: 10px;}
  .custom-wellimg { margin: 30px 0px;}
  .home-section {padding-bottom: 0px; z-index: 120;}
  .owl-carousel .owl-item { float: left; width:32% !important;}
  .custom-number-footer{ text-align: center;}
}

@media screen and (max-width:991px) and (min-width:768px) {
  .custom-number {font-size: 0.75em;}
  .intro .slogan img{ width: 100%;}
  .custom-email span { font-size: 1.32em;}
  .custom-megamenu .container { width: 515px;}
  .custom-listing {padding: 10px 10px; margin: 10px 10px; background: whitesmoke; width: 100%; float: left;}
  .custom-well {width:60%; float: left;padding:5px;}
  .custom-wellimg {float: right; width:38%;}
  .m-right-20minus {margin-right:0px !important;}
  .m-top-70 {margin-top:0px !important;}
  .custom-card {padding: 0; width: 100px;height: 100px; float: left; background: none;}
  .carousel-inner .item img {height: 420px;}
}
@media screen and (max-width:1200px) and (min-width:992px) {
  .custom-megamenu .container {margin-left: -210px;}
}