  :root {
		/* base */
		/* dimgray */
		--hex-gray: #686868;
		--R-gray: 105;
		--G-gray: 105;
		--B-gray: 105;
		
		/* 2025 */
		/* skyblue */
		--hex-skyblue: #63DCFD;
		--R-skyblue: 099;
		--G-skyblue: 219;
		--B-skyblue: 253;
		
		/* dslate */
		--hex-dslate: #213E5C;
		--R-dslate: 034;
		--G-dslate: 063;
		--B-dslate: 094;
		
		/* steelblue */
		--hex-blue: #027FA1;
		--R-blue: 002;
		--G-blue: 127;
		--B-blue: 162;
		
		/* slate2 */
		--hex-slate2: #03627B;
		--R-slate2: 003;
		--G-slate2: 100;
		--B-slate2: 124;
		
		/* Brandeis Blue */
		--hex-brandeis: #0074FE;
		--R-brandeis: 0;
		--G-brandeis: 116;
		--B-brandeis: 254;
		
	}
  body {
    background: #fff;
    /*font-family: 'Poppins'/*'Josefin Sans''Lato'*//*, sans-serif;*/
		font-family: "Merriweather", serif;
    /*font-weight: 300;*/
    font-weight: 400;
    font-size: 16px; /*14px;*/
    line-height: 22px;
    color: var(--hex-dslate);
  }

  html {
    height: 100%;
  }

	.merriweather {
		font-family: "Merriweather", serif;
	}
	
	.merriweather-regular {
		font-family: "Merriweather", serif;
		font-weight: 400;
		font-style: normal;
	}

	.merriweather-bold {
		font-family: "Merriweather", serif;
		font-weight: 700;
		font-style: normal;
	}

	.merriweather-regular-italic {
		font-family: "Merriweather", serif;
		font-weight: 400;
		font-style: italic;
	}

	.merriweather-bold-italic {
		font-family: "Merriweather", serif;
		font-weight: 700;
		font-style: italic;
	}

	.merriweather-sans {
		font-family: "Merriweather Sans", sans-serif;
		font-optical-sizing: auto;
		font-weight: 400;
		font-style: normal;
	}

  a{
    color:var(--hex-dslate);
  }

  a:hover {
    outline: none;
    text-decoration:none;
    /*color:#143433;*/
    color:var(--hex-blue);
  }

  a:focus {
    outline:none;
    outline-offset: 0;
  }

  a {
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
  }


  ul {
    list-style: none;
  }

  h1, h2, h3, h4, h5, h6 {
    /*font-family: 'Poppins', sans-serif;*/
		font-family: "Merriweather", serif;
    font-weight: 300;
  }

  h1{
    color: var(--hex-gray);
  }


  h2{
    font-size: 24px;
    color: var(--hex-gray);
  }

  h3{
    font-size: 18px;
  }

	hr {
    border-top: 1px solid #193858;	
	}

  .overflow{
    overflow: hidden;
  }

  .uppercase{
    text-transform: uppercase;
  }

  .btn-common {
    font-size: 14px;
    color: #797979;
    border: 1px solid #604905;
    /*font-family: 'Open Sans', sans-serif;*/
    font-weight: 300;
    padding: 10px 25px;
  }

  #action .col-sm-5{
    position: absolute;

    top: 0;
    height: 100%;
    right: 0;
  }


  .btn-common:hover, 
  .btn-common:focus{
    outline: none;
    background: none;
    box-shadow: none;
    color: #604905;
  }

  .align-right{
    text-align: right;
  }

  .inline{
    display: inline-block;
  }

  .padding{
    /*padding: 65px 0;*/
    padding: 30px 0;
  }

  .padding-bottom{
    padding-bottom: 65px;
  }

  .padding-top{
    padding-top: 90px;
  }

  .padding-right{
    padding-right: 80px;
  }

  .padding-left{
    padding-left: 80px;
  }

  .margin-bottom{
    margin-bottom: 35px;
  }

  .carousel-indicators.visible-xs {
    height: 20px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -35px;
    width: 100%;
    left: 0;
  }

  .carousel-indicators.visible-xs li {
    border-color: #604905;
    border-width: 2px;
    height: 12px;
    margin: 0 5px 0 0;
    width: 12px;
  }

  .carousel-indicators.visible-xs li.active {
    background: rgba(210, 153, 72, 0.7);
  }

	p.indent {
	text-indent:2rem;
	}
	
	.indent {
		padding-left:2rem;
	}
	
	.boldcase {
	font-weight:bold;
	}
	
.italicase {
	font-style:italic;
	}
	
/* Base styles (regardless of theme) */
.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}
.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}
.bs-callout p:last-child {
    margin-bottom: 0;
}
.bs-callout code {
    border-radius: 3px;
}
.bs-callout+.bs-callout {
    margin-top: -5px;
}
.bs-callout-default {
    border-left-color: #777;
}
.bs-callout-default h4 {
    color: #777;
}
.bs-callout-primary {
    border-left-color: #428bca;
}
.bs-callout-primary h4 {
    color: #428bca;
}
.bs-callout-success {
    border-left-color: #5cb85c;
		background-color: #f0f7fd;
}
.bs-callout-success h4 {
    color: #5cb85c;
}
.bs-callout-danger {
    border-left-color: #d9534f;
		background-color: #fcf2f2;
}
.bs-callout-danger h4 {
    color: #d9534f;
}
.bs-callout-warning {
    border-left-color: #f0ad4e;
		background-color: #fefbed;
}
.bs-callout-warning h4 {
    color: #f0ad4e;
}
.bs-callout-info {
    border-left-color: #5bc0de;
		background-color: #f0f7fd;
}
.bs-callout-info h4 {
    color: #5bc0de;
}

.bs-callout-review {
    /*border-left-color: #f0ad4e;*/
    border-color: #f0ad4e;
		background-color: #FFFFFF; /* #f0eb4e;*/
}


.opt_sel {
    border-color: #604905; /*rgba(62, 136, 91, 0.7);*/
    margin-bottom: 0.25rem;
    padding: 0.5rem; /*0.25rem;
    padding-left: 0.25rem;*/
    background: var(--hex-dslate);
		/*
		background: linear-gradient(135deg, rgba(1,102,117,1) 80%, rgba(1,180,212,1) 90%, rgba(28,181,185,1) 95%);
		*/
		/*
		background:
		linear-gradient(135deg, 
			rgba(255,213,96,0) 31%, 
			rgba(var(--R-skyblue),var(--G-skyblue),var(--B-skyblue),1) 50%, 
			rgba(var(--R-dslate),var(--G-dslate),var(--B-dslate),1) 75%, 
			rgba(var(--R-slate2),var(--G-slate2),var(--B-slate2),1) 90%) 
			var(--x, 0)/ 200%;
			*/
		transition: 0.25s;
		--x: 100%;
    
		/* text-transform: uppercase; */
    font-weight: bold;
    color: white;
    border-radius: 8px;
}



.opt_sel label {
	/*font-size: 0.875rem;*/
	font-weight: bold;
	/*font-size: 1rem;*/
	color: white;
}

.opt_nosel {
	border:none;
  margin-bottom: 0.25rem;
  padding: 0.5rem; /*0.25rem;
	padding-left:0.25rem;*/
  background: transparent;
	border-radius: 8px;
}

.opt_gray {
	border-color: #CCC;
  margin-bottom: 0.25rem;
  padding: 0.5rem; /*0.25rem;
	padding-left:0.25rem;*/
  background: #CCC;
	text-decoration: line-through;
	color:#999;
	font-weight: bold;
	border-radius: 8px;
}

.opt_gray label {
	color:#999;
	text-decoration: line-through;
}

.opt_soldout {
	border-color: #CCC;
  margin-bottom: 0.25rem;
	padding: 0.5rem; /*0.25rem;
  padding-left:0.25rem;*/
  background: #CCC;
	color:#999;
	border-radius: 8px;
}

.opt_soldout label {
	color:#999;
}

.label.frequencia {
    border-radius: 4px;
    font-size: 1rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #000; /*#604905;	*/
  border-radius:4px;}
	
.fieldset legend {
	margin: 0;
	margin-left: -0.1875rem;
	padding: 0.3rem 2rem;
	background: #1d4358;
	/*background: linear-gradient(135deg, rgba(255,213,96,0) 1%, rgba(255,213,96,1) 20%, rgba(242,112,42,1) 30%, rgba(0,143,160,1) 55%);*/
	border: 1px solid #1d4358;
	border-radius: 4px;
	width: auto;
	color: #F2EFEB;
	font-weight: 700;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color:  #604905; /*rgba(57, 111, 182, 0.4);*/
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: white;
	border-radius:3px;}

kbd.kbd-success {
	background-color:  #5cb85c;
}
	
kbd.kbd-danger {
	background-color: #d9534f;
}

.btn-file {
	position: relative;
	overflow: hidden;
}
.btn-file input[type=file] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity=0);
	opacity: 0;
	outline: none;
	background: white;
	cursor: inherit;
	display: block;
}

.btn-success {
	background-color: #398E32;
}
.btn-success {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c;
}

.btn-success:hover {
	background-color: #398E32;
}


	/* Modal
================================= */

.modal-dialog {
	border: 2px solid #000;
}

.modal .modal-content {
  border-radius: 0;
}
.modal .modal-header {
  background: rgb(var(--R-dslate),var(--G-dslate),var(--B-dslate));
	background: 
		linear-gradient(90deg, 
			rgba(var(--R-dslate),var(--G-dslate),var(--B-dslate),1) 10%,
			rgba(var(--R-skyblue),var(--G-skyblue),var(--B-skyblue),1) 60%);
  color: #FFF;
	font-weight:400;
}

.modal .modal-header .close {
  font-style: 26px;
}

.detailsmodal {
  background: url(../images/content/lateral.jpg);
  background-repeat: no-repeat;
  background-position: left top;
}

.modal-title {
	font-weight: 700;
}

/* Alert Modal
================================*/
.modal .danger {
	background-color: #c24a4a; /*#fcf2f2;*/
}

.modal .danger h4 {
	color: #FFF; /*#d9534f;*/
}

.modal .danger button.close {
	color: #FFF;
}

.modal .success {
	background-color: #DCFFE4; /*#f0f7fd;*/
}

.modal .success h4 {
	color: #118611; /*#5cb85c;*/
}

.modal .warning {
	background-color: #fcf4d1; /*#fefbed;*/
}

.modal .warning h4 {
	color: #d18212; /*#f0ad4e;*/
}

.modal .info {
	background-color: #cde6fb; /*#f0f7fd;*/
}

.modal .info h4 {
	color: #1b7995; /*#5bc0de;*/
}


/*************************
*******Header******
**************************/


#header{
  margin-bottom: 0;
  padding: 30px 0 60px 0;
}

#header .navbar-inverse .container{
  position: relative;
}

.search{
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 1;
}

.search i{
  color: #604905;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 2px;
}

.field-toggle{
  position: relative;
  top: 30px;
  right: 15px;
  display: none;
  height: 50px;
}

.search-form{
  padding-left: 10px;
  height: 40px;
  font-size: 18px;
  color: #818285;
  font-weight: 300;
  outline: none;
  border: 1px solid #604905;
  margin-top: 20px;
  border-radius: 4px;
}

.social-icons ul li{
  padding: 0 10px;

}

.social-icons ul li:last-child{
  padding-right: 0;

}

.social-icons ul li a{
  font-size: 16px; /*18px;*/
  /*color: #d3d3d3;*/
  padding: 0;
}

.social-icons ul li a:hover,
.social-icons ul li a:focus{
  color:var(--hex-blue);
  background: none;
}

#header .navbar {
  background: #fff;
  border: 0;
  margin-bottom: 0;
}

#header .navbar-toggle{
  margin-top: 20px;
}

#header .navbar-brand{
  padding: 0;
  margin-left: 0;
}

#header .navbar-brand h1{
  padding: 0;
  margin: 0;
}

#header .navbar-brand img{
  height:90px;
}

#header .navbar-nav.navbar-right >li:last-child{
  margin-right: 20px;
}

#header .navbar-nav.navbar-right >li a {
  color: #193858;
  /*font-size: 12px;*/
  padding: 20px;
  text-transform: uppercase;
  font-weight: 300; /*300;*/
}

#header .navbar-inverse .navbar-nav  li.active > a,  
#header .navbar-inverse .navbar-nav  li.active > a:focus, 
#header .navbar-nav.navbar-right li > a:hover,
.navbar-inverse .navbar-nav > .open > a {
  background-color: inherit;
  border: 0;
  color: #604905;
}

#header .navbar-inverse .navbar-nav  li a:hover{
  color: var(--hex-blue); 
}


/*Dropdown menu*/

ul.sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

#header .navbar-nav li ul.sub-menu li a {
  color: #193858;
  padding: 5px 0;
  font-size: 13px;
  display: block;
  text-transform: capitalize;
}

#header .navbar-nav li ul.sub-menu li .active{
  background: #D7E2F0;
  color: #604905;
  position: relative;
}

#header .navbar-nav li ul.sub-menu li .active i{
  position: absolute;
  font-size: 56px;
  top: -13px;
  color: #88A9D3;
}

#header .navbar-nav li ul.sub-menu li .active .fa-angle-right{
  left: -3px;
}

#header .navbar-nav li ul.sub-menu li .active .fa-angle-left{
  right: -3px;
}


#header .navbar-nav li ul.sub-menu li a:hover,
#header .navbar-nav li ul.sub-menu li a:focus{
  /*background: linear-gradient(90deg, rgba(255,213,96,0) 31%, rgba(255,213,96,1) 50%, rgba(242,112,42,1) 60%, rgba(0,143,160,1) 85%) var(--x, 0)/ 200%;*/
  /*background: 
		linear-gradient(135deg, 
			rgba(255,213,96,0) 31%, 
			rgba(var(--R-skyblue),var(--G-skyblue),var(--B-skyblue),1) 50%, 
			rgba(var(--R-dslate),var(--G-dslate),var(--B-dslate),1) 60%, 
			rgba(var(--R-slate2),var(--G-slate2),var(--B-slate2),1) 85%) 
			var(--x, 0)/ 200%;*/
	background: rgb(var(--R-dslate),var(--G-dslate),var(--B-dslate));
	background: 
		linear-gradient(90deg, 
			rgba(255,255,255,0) 30%, 
			rgba(var(--R-skyblue),var(--G-skyblue),var(--B-skyblue),1) 40%,
			rgba(var(--R-blue),var(--G-blue),var(--B-blue),1) 50%,
			rgba(var(--R-dslate),var(--G-dslate),var(--B-dslate),1) 80%) 
			var(--x, 0)/ 200%; 
  color: #FFF;
  font-weight: 700;
  transition: 0.5s;
  --x: 100%;
}

.fa-angle-down{
  padding-left: 5px; 
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8); /*scale(0);*/
    transform: scale(0.8); /*scale(0);*/
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8); /*scale(0);*/
    -ms-transform: scale(0.8); /*scale(0);*/
    transform: scale(0.8); /*scale(0);*/
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}


/*************************
*******Footer******
**************************/

#footer {
  padding-bottom: 75px;
  background-image: url(../images/home/footer.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
}

#footer h1{
  margin-bottom: 65px;
  margin-top: 36px;
}

#footer .bottom-separator {
  margin-bottom: 60px;
}

#message {
  height: 110px;
  resize: none;
}

.bottom > h2 {
  margin-top: 0;
  margin-bottom: 26px;
}

.bottom .media-body h3 {
  margin-top: 0;
  padding-left: 25px;
}

.bottom .media-body h3 a{
  color: #604905;
}

.testimonial .media{
  margin-top: 0;
  margin-bottom: 25px;
}

.testimonial .media>.pull-left{
  margin-right: 25px;
}

.testimonial .media>.pull-left img{
  margin-top: 6px;
}

.testimonial .media .media-body blockquote{
  padding-left: 25px;
  padding-right: 30px;
  position: relative;
  border-left: 0;
  margin-bottom: 0;
}

.testimonial .media .media-body blockquote:before{
  position: absolute;
  left: 5px;
  top: 8px;
  content: '"';
  font-size: 40px;
  color: #604905;
  /*font-family: 'Noto Sans', sans-serif;*/
	font-family: "Merriweather", serif;
  transform:rotate(180deg);
  -ms-transform:rotate(180deg); /* IE 9 */
  -webkit-transform: rotate(180deg); /* Opera, Chrome, and Safari */
  line-height: 0;
}

.testimonial .media .media-body blockquote:after{
  position: absolute;
  right: 30px;
  bottom: 14px;
  content: '"';
  font-size: 40px;
  color: #604905;
  /*font-family: 'Noto Sans', sans-serif;*/
	font-family: "Merriweather", serif;
  line-height: 0;
}

.bottom > address {
  line-height: 22px;
  margin-bottom: 40px;
}

.form-control {
  border: 1px solid #000; /*#604905;*/
  font-weight: 300;
  outline: none;
  box-shadow: none;
  height: 40px;
}

.form-control:hover, 
.form-control:focus{
  border-color: #318EB0; /*#604905;*/
  outline: none;
  box-shadow: none;
}

.form-control-feedback {
	text-align:inherit;
}

.btn-submit {
  width: 100%;
  background-color: #604905;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-top: 5px;
  border-bottom: 3px solid #254876;
  box-shadow: none;
  padding: 10px;
}

.btn-submit:hover, 
.btn-submit:focus{
  color: #fff;
  outline: none;
  box-shadow: none;
  opacity: .8;
}

.copyright-text{
  margin-top: 40px; /*70px;*/
}

/*************************
*******Home Page******
**************************/

#home-slider {
	/*background: url(../images/home/slider-bg.png) 0 100% repeat-x;*/
  position: relative;
	background-image:url('../images/home/slider-bg-2.png');
	background-repeat:repeat-x;
	background-size:cover;
	background-position:center top;
}

#home-slider .main-slider {
  position: relative;
  height: 420px;
}


.slider-top {
    overflow: hidden;
}
.slider-top,
.slider-bottom {
    position: relative;
}
.slider-top:after,
.slider-bottom:after {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 400;
    content: "";
    height: 14px;
    background-repeat: repeat-x;
}
.slider-top:after {
    top: 0;
    background-image: url('../images/home/slider-shad-top.png');
    background-position: left top;
}
.slider-bottom:after {
    top: auto;
    bottom: 0;
    background-image: url('../images/home/slider-shad-bot.png');
    background-position: left bottom;
}


@keyframes slideRight {
	100% {
		transform: translateX(70%);
	}
}

@keyframes slideLeft {
	100% {
		transform: translateX(-70%);
	}
}

/* Slider 1 */
#home-slider .logo-01 {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.animate-in .logo-01 {
  -webkit-animation: fadeInLeft 1000ms cubic-bezier(.64,0,.8,1.31) 200ms both;
  animation: fadeInLeft 1000ms cubic-bezier(.64,0,.8,1.31) 200ms both;
}


#home-slider .logo-02 {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.animate-in .logo-02 {
  -webkit-animation: fadeInRight 1000ms cubic-bezier(.64,0,.8,1.31) 500ms both;
  animation: fadeInRight 1000ms cubic-bezier(.64,0,.8,1.31) 500ms both;
}


#home-slider .logo-03 {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.animate-in .logo-03 {
  -webkit-animation: fadeInRight 1000ms cubic-bezier(.64,0,.8,1.31) 800ms both;
  animation: fadeInRight 1000ms cubic-bezier(.64,0,.8,1.31) 800ms both;
}


#home-slider .logo-04 {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.animate-in .logo-04 {
  -webkit-animation: fadeInDown 500ms cubic-bezier(.64,0,.8,1.31) 1100ms both;
  animation: fadeInDown 500ms cubic-bezier(.64,0,.8,1.31) 1100ms both;
}



#home-slider .logo-05 {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.animate-in .logo-05 {
  -webkit-animation: fadeInUp 500ms cubic-bezier(.64,0,.8,1.31) 1400ms both;
  animation: fadeInUp 500ms cubic-bezier(.64,0,.8,1.31) 1400ms both;
}


/* END - Slider 1 */

/* Slider 2 */
#home-slider .slide02-01 {
  position: absolute;
  left: 0px;
  bottom: 0px;
	visibility: hidden;
}

.slide-left .slide02-01 {
	visibility: visible !important;
  -webkit-animation: fadeInUp 500ms cubic-bezier(.64,0,.8,1.31) 0ms both;
  animation: fadeInUp 500ms cubic-bezier(.64,0,.8,1.31) 0ms both;
}

#home-slider .slide02-02 {
  position: absolute;
  left: 0px;
  bottom: 0px;
	visibility: hidden;
}

.slide-left .slide02-02 {
	visibility: visible !important;
  -webkit-animation: fadeInUp 500ms cubic-bezier(.64,0,.8,1.31) 300ms both;
  animation: fadeInUp 500ms cubic-bezier(.64,0,.8,1.31) 300ms both;
}


/* END - Slider 2 */

/* Slider Mol */
#home-slider .slide-mol-l {
  position: absolute;
  left: 0px;
  bottom: 0px;
	visibility: hidden;
}

.slide-left .slide-mol-l {
	visibility: visible !important;
  /*animation: fadeIn 1200ms cubic-bezier(.64,0,.8,1.31) 0ms both;*/
  animation: fadeInLeft 1200ms linear 0ms both;
}

#home-slider .slide-mol-r {
  position: absolute;
  left: 0px;
  bottom: 0px;
	visibility: hidden;
}

.slide-left .slide-mol-r {
	visibility: visible !important;
  animation: fadeInRight 1200ms linear 0ms both;
}


/* END - Slider 2 */




#home-slider h1{
  margin-top: 70px;
  margin-bottom: 25px;
}

#home-slider .btn-common {
  margin-top: 20px;
}

#home-slider .preloader {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #fafafa;
  text-align: center;
}

#home-slider .preloader > i {
  font-size: 48px;
  height: 48px;
  line-height: 48px;
  color: #604905;
  position: absolute;
  left: 50%;
  margin-left: -24px;
  top: 50%;
  margin-top: -24px;
}


#action, 
#page-breadcrumb {
  background-image: url(../images/home/breadcrumb-bg.png); /*tour-bg.png);*/
  /*background-color: #fbfafa;*/
  background-repeat: repeat-x;
  height: 110px; /*170px; /*155px;*/
  background-position: bottom; /*center;*/
  display: table;
  position: static;
  width: 100%;
}

.vertical-center{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  position: statice;
}

.sun{
  background-image: url(../images/home/tour-icon1.png);
  background-repeat: no-repeat;
  background-position: 100% bottom;
}


.single-service{
  overflow: hidden;
  display: block;
}

.single-service img {
  margin-bottom: 18px; /*35px;*/
}

.single-service .fold {
  margin-bottom: 35px;
}

.single-service h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

.single-service p {
  padding: 0 48px;
}

.action h1{
  margin-top: 0;
}

.action p{
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 300;
}

.action .btn-common{
  margin-top: 55px;
  float: left;
}

.title {
  /*color: #404040;*/
  color: var(--hex-blue);
  font-weight: 300;
}

.single-features {
  overflow: hidden;
  padding-top: 65px;
  padding-bottom: 40px;
}

.single-features:last-child {
  padding-bottom: 95px;
}

.single-features h2{
  margin-bottom: 15px;
}

/*#clients{
  padding-bottom: 45px;
}*/

.clients {
  margin-bottom: 5px; /*45px;*/
}

.clients img {
  display: inline-block;
}

.clients-logo {
  overflow: hidden;
  margin-bottom: 10px;
}

.align-sponsor {
	position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/*************************
*******About Us Page******
**************************/

#action , 
#page-breadcrumb{
  position: relative;
}

#team {
  padding: 85px 0;
}

#team-carousel {
  margin-top: 80px;
}

#company-information .padding-top{
  padding-top: 105px;
  
}

/*.single-service img {
  height: 85px;
}*/

.thumbnail {
	/*margin: 1em 0.75em;*/
	border: solid 1px var(--hex-dslate);
	/*border-radius: 3px;*/
}

.thumbnail-margin {
	margin: 1em 0.75em;
}

.thumbnail:hover, .thumbnail:focus {
	box-shadow: 0 0 12px 1px rgb(var(--R-dslate), var(--G-dslate), var(--B-dslate), 0.3);
	transition: all 200ms ease-out;
}

.tour-button {
  background-image: url(../images/home/tour-icon2.png);
  height: 100%;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  left: 0;
  background-position: 151px 4px;
}

.team-single {
  position: relative;
}

.person-thumb {
  position: relative;
}

.social-profile {
  background: none repeat scroll 0 0 rgba(37, 72, 118, 0.8);
  display: none;
  height: 100%;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
  width: 100%;
}

.team-single:hover .social-profile{
  display: block;
  -webkit-animation: fadeInUp 400ms;
  animation: fadeInUp 400ms;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.social-profile .nav-pills {
  display: inline-block;
  margin-top: -26px;
  padding: 0;
  position: relative;
  top: 50%;
}

.social-profile .nav-pills li {
  display: inline-block;
  margin: 0 5px;
}

.social-profile .nav-pills li a {
  color: #fff;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  border-radius: 40px;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.social-profile .nav-pills li a:hover {
  color: #254876;
  border-color: #254876;
}

.person-info h2 {
  font-weight: 300;
  margin-bottom: 5px;
}

.person-info h3 {
  font-size: 16px;
  color: var(--hex-gray);
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 0;
}

.team-carousel-control {
  position: absolute;
  top: 36%;
  width: 13px;
  height: 16px;
  text-indent: -9999999px;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.right.team-carousel-control {
  right: -50px;
  background-image: url(../images/aboutus/right.png);
}

.left.team-carousel-control {
  left: -50px;
  background-image: url(../images/aboutus/left.png);
}

.team-carousel-control:hover{
  background-position: 0 -18px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition:  all 0.5s ease 0s;
}

.count h1{
  font-size: 60px;
  color: #88A9D3;
}

.count h3{
  font-size: 16px;
}

.progress .progress-bar.six-sec-ease-in-out {
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -ms-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition:  width 1s ease-in-out;
}

.top-zero{
  margin-top: 0;
}

h3.top-zero{
  font-size: 20px;
}

#company-information .about-us h2{
  margin-bottom: 45px;
}

.single-skill h3{
  font-size: 16px;
}

.progress{
  height: 30px;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.progress-bar{
  line-height: 30px;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.progress-bar.progress-bar-primary{
  background: #88A9D3;
}



/*************************
*******Service Page******
**************************/
#recent-projects{
  padding: 85px 0;
}

.recent-projects .team-single{
  height: 355px;
}

.recent-projects p.padding-bottom{
  padding-bottom: 50px;
}

.choose{
  padding-top: 30px;
}

#company-information.choose .padding-top{
  padding-top: 78px;
}

#company-information h2{
  margin-bottom: 25px;
  margin-top: 0;
}

ul.elements{
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

ul.elements li{
  margin: 6px 0;
}

ul.elements li > i{
  color: #193858;
  display: inline-block;
  margin-right: 10px;
}

#company-information h1.margin-bottom{
  margin-bottom: 26px;
}

/*************************
*******Portfolio Default**
**************************/
.portfolio-single {
  position: relative;
}

.portfolio-thumb {
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
	border-radius: 100px;
	border: solid 2px var(--hex-dslate);
	box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.40);
}

.portfolio-single:hover .portfolio-view{
  display: block;
  -webkit-animation: fadeInUp 400ms;
  animation: fadeInUp 400ms;
}

#portfolio .row{
  margin-left: -10px;
  margin-right: -10px;
}

.portfolio-view{
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  /*background: linear-gradient(to bottom, rgba(229,108,53,0.5) 0%,rgba(243,37,152,0.5) 100%);*/
  background-color: rgba(0,0,0,0.3);
	/*rgba(242, 37, 151, 0.7);
   rgba(228, 110, 50, 0.5);*/
	width: 100%;
  text-align: center;  
}

.portfolio-view .nav-pills {
  padding: 0;
  display: inline-block;
  margin-top: -26px;
  top: 50%;
  position: relative;
}

.portfolio-view .nav-pills li {
  display: inline-block;
  margin: 0 5px;
}

.portfolio-view .nav-pills li a {
  color: #fff;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  padding: 0;
  border-radius: 40px;
  -webkit-animation: scaleIn 400ms linear 100ms both;
  animation: scaleIn 400ms linear 100ms both;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.portfolio-view .nav-pills li a:hover {
  color: #604905;
  border-color: #604905;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

/* PV navpills 2 */
.portfolio-single:hover .portfolio-view2{
  display: block;
  -webkit-animation: fadeInUp 400ms;
  animation: fadeInUp 400ms;
}

.portfolio-view2{
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  /*background: rgba(37, 72, 118, 0.8);*/
  width: 100%;
  text-align: center;  
}

.portfolio-view .nav-pills2,
.portfolio-view2 .nav-pills2 {
  padding: 0;
  display: inline-block;
  margin-top: -26px;
  top: 50%;
  position: relative;
}

.portfolio-view .nav-pills2 li,
.portfolio-view2 .nav-pills2 li {
  display: inline-block;
  /*margin: 0 5px;*/
}

.portfolio-view .nav-pills2 li a,
.portfolio-view2 .nav-pills2 li a {
  color: #000; /*#EB4C62;*/
  border: 2px solid #000; /*#EB4C62;*/
	background-color: #FFF;
  /*width: 40px;
  height: 40px;*/
  line-height: 38px;
  text-align: center;
  padding: 8px 24px; /*0;*/
  border-radius: 8px; /*40px;*/
  -webkit-animation: scaleIn 400ms linear 100ms both;
  animation: scaleIn 400ms linear 100ms both;
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.portfolio-view .nav-pills2 li a:hover,
.portfolio-view2 .nav-pills2 li a:hover {
  color: #FFF;
  border-color: #000; /*#143433;*/
	background: linear-gradient(90deg, #FFD560 0%, #F2702A 10%, #008FA0 80%); /*#EB4C62;*/
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
/* PV navpills 2 */

.portfolio-info {
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio-info h2 {
  font-size: 18px;
  margin: 15px 0 0;
	text-align:center;
	color:#000;
}

.portfolio-info h3 {
  font-size: 16px;
  margin: 15px 0 0;
	text-align:center;
	color:#000;
}

.portfolio-filter {
  /*margin: 80px 0;*/
  margin: 50px 0;
  padding: 0;
}

.portfolio-filter li {
  display: inline-block;
  position: relative;
}

.portfolio-filter li a {
  border-radius: 0;
  color: var(--hex-gray);
  font-size: 18px;
  font-weight: 300;
  padding: 0 25px;
  text-transform: capitalize;
  border: none;
}

.portfolio-filter li .active{
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.portfolio-filter li a:hover, 
.portfolio-filter li a:focus,
.portfolio-filter li a.active {
  background: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
	color: var(--hex-blue);
	text-decoration: none;
}

.portfolio-filter li a.active:before{
  position: absolute;

  content: "";
  left: 5px;
  width: 16px;
  height: 16px;
  background: url(../images/ico/icon.png);
  top: 3px;
}

.portfolio-pagination{
  text-align: center;
  
  padding-top: 40px;
  padding-bottom: 90px;
}

.pagination li{
  display: inline-block;
  margin: 0 10px;
}

.pagination li a{
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #fff;
}

.pagination li:first-child a{
  background: url(../images/portfolio/left.png);
  background-repeat: no-repeat;
  text-indent: -999999999px;
  background-position: center top 10px;
  width: 32px;
  height: 36px;
  border: none;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.pagination li:first-child a:hover{
  background: url(../images/portfolio/left.png);
  background-position: center top -37px;
  background-repeat: no-repeat;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.pagination li:last-child a{
  background: url(../images/portfolio/right.png);
  background-repeat: no-repeat;
  text-indent: -999999999px;
  background-position: center top 10px;
  width: 32px;
  height: 36px;
  border: none;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.pagination li:last-child a:hover{
  background: url(../images/portfolio/right.png);
  background-position: center top -37px;
  background-repeat: no-repeat;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.pagination li a:hover,
.pagination .active a,
.pagination .active a:hover,
.pagination .active a:focus{
  background: none;
  border-color: #604905;
  color: #604905;
}


/*****************************
Portfolio with right sidebar
*****************************/

.sidebar h3 {
  color: #404040;
  margin-top: 0;
  border-bottom: 3px solid #ececec;
  margin-bottom: 6px;
  padding-bottom: 8px;
}

.sidebar-item{
  margin-bottom: 48px;
}

.categories .navbar-stacked li {
  border-bottom: 1px solid #ececec;
}

.categories .navbar-stacked li:last-child {
  border-bottom: 0px solid #ececec;
}

.categories .navbar-stacked li a {
  font-size: 16px;
  color: #6a6a6a;
  padding: 8px 0;
  padding-left: 0;
}

.categories .navbar-stacked li a:hover{
  background: none;
  margin-left: 20px;
  color: #88A9D3;
  opacity: 1;
}

.categories .navbar-stacked li.active a{
  color: #88A9D3;
  padding-left: 20px;
}

.categories .navbar-stacked li.active a:before{
  position: absolute;
  content: "";
  border-color: transparent transparent transparent #88A9D3;
  border-width: 8px;
  border-style: solid;
  left: 0;
  top: 13px;
  margin-top: 0;
  z-index: 0;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.categories .navbar-stacked li.active a:after {
  position: absolute;
  content: "";
  border-color: transparent transparent transparent #fff;
  border-width: 6px;
  border-style: solid;
  left: 0px;
  top: 15px;
  margin-top: 0;
  z-index: 1;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.sidebar-item .media{
  border-bottom: 1px solid #ececec;
  padding-bottom: 10px;
  padding-top: 21px;
  margin-top: 0;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.sidebar-item .media:last-child{
  border-bottom: 0px solid #ececec;  
  padding-bottom: 0; 
}

.sidebar-item .media:hover{
  border-left: 2px solid #88A9D3;
  padding-left: 5px;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.sidebar-item .media:hover.media .media-body h4 a{
  color: #88A9D3;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

.sidebar-item .media .media-body h4 {
  margin-top: 0;
  margin-bottom: 8px;
}

.sidebar-item .media .media-body h4 a{
  color: #7d7d7d;
  font-size: 16px;
}

.sidebar-item .media .media-body p {
  color: #b4b4b4;
  font-size: 12px;
}

.tag-cloud .nav-pills{
  margin-top: 16px;
}

.tag-cloud .nav-pills li{
  margin: 0;
  margin-top: 6px;
  margin-right: 4px;
}

.tag-cloud .nav-pills li a{
  font-size: 14px;
  font-weight: 300;
  padding: 5px 15px;
  background: #bbbbbb;
  color: #fff;
  border-radius: 3px;
}

.tag-cloud .nav-pills li a:hover{
  background: #88A9D3;
}

.popular ul.gallery {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 10px -8px;
}

.popular ul.gallery li {
  display: block;
  width: 33.33%;
  float: left;
  padding: 8px;
}

.popular ul.gallery li a {
  display: block;
}

.popular ul.gallery li a img {
  width: 100%;
  transition: border-radius 300ms ease-in;
  -webkit-transition: border-radius 300ms ease-in;
}

.popular ul.gallery li a img:hover {
  border-radius: 60px;
}

/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}




/*****************************
Portfolio Details
*****************************/

#portfolio-information.padding-top{
  padding-top: 100px;
}

.project-name h2{
  margin-top: 0;
  margin-bottom: 15px;
}

#related-work .title{
  margin-bottom: 55px;
  margin-top: 10px;
}

.navbar-default {
  background: none;
  padding: 0;
}

.navbar-default li a{
  font-size: 12px;
  padding: 0;
  padding-right: 15px;
}

.navbar-default li a i{
  padding-right: 8px;
}

.navbar-default li a:hover{
  color: #88A9D3;
  background: none;
}

.skills .navbar-default,
.client .navbar-default{
  margin-left: 35px;
  
}

.live-preview .btn-common{
  margin-top: 21px;
  padding: 13px 45px;
}


/*****************************
Blog Default
*****************************/

.single-blog.timeline {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-bottom: 0;
  position: relative;
  padding-bottom: 0;
}

.timeline .post-content {
  padding: 20px 20px 0;
}

.post-thumb{
  margin: -1px -1px 0;
  position: relative;
  overflow: hidden;
}

.timeline .post-thumb img {
  width: 100%;
}

.post-thumb iframe{
  width: 100%;
  min-height: 270px;
  border: 0;
}

.post-overlay{
  position: absolute;
  top: 50%;
  display: none;
  width: 94px;
  height: 140px;
  margin-top: -70px;
  overflow: hidden;
}

.post-overlay span{
  position: absolute;
  left: 50%;
  bottom: 0; 
  margin-left: -60px;
  -webkit-animation: fadeInUp 400ms;
  animation: fadeInUp 400ms;
  z-index: 9;
}

.post-overlay span:before{
  position: absolute;
  bottom: 0;
  border-style: solid;
  border-width: 60px;
  content: "";
  border-color: transparent transparent #88A9D3 transparent;
  z-index: -1;
  cursor: initial;
}

.post-overlay span a{
  font-size: 30px;
  color: #fff;
  background: transparent;
  padding: 0; 
  margin-left: 50px;
}

.single-blog:hover .post-overlay{
  display: block;
  -webkit-animation: fadeIn 300ms;
  animation: fadeIn 300ms;
}

.timeline-divider{
  position: relative;
  padding-top: 50px;
}

.timeline-divider:before{
  position: absolute;
  top: 0;
  content: "";
  border-left-style: solid;
  border-left-width: 1px;
  height: 100%;
  border-left-color: #88A9D3;
  left: 50%;
  margin-left: -2px;
}

.timeline-blog .col-sm-6.padding-top{
  padding-top: 70px;
}

.post-content{
  padding: 20px 0;
}

.timeline-date .btn-common{
  font-size: 18px;
  color: #4a4a4a;
  font-weight: 300;
  border-radius: 0;
  padding: 17px 40px;
}

.arrow-right{
  position: relative;
}

.arrow-right:after{
  position: absolute;
  right: 1px;
  content: "";
  top: 15px;
  background: url(../images/blog/left.png);
  width: 43px;
  height: 54px;
}

.arrow-left{
  position: relative;
}

.arrow-left:before{
  position: absolute;
  left: -2px;
  content: "";
  top: 86px;
  background: url(../images/blog/right.png);
  width: 43px;
  height: 54px;
}

.post-title {
  margin-top: 0;
}

.post-title a,
.comments-number a{
  color: var(--hex-gray);
}

.post-title a:hover,
.comments-number a:hover{
  color: #88A9D3;
}

.post-content .post-author{
  margin-top: 0;
  
}

.post-content  .post-author a{
  font-weight: 300;
  font-size: 14px;
}

a.read-more{
  color: #254876;
  font-weight: 300;
}

a.read-more:hover{
  opacity: .8;
}

.post-bottom{
  border-top: 1px solid #eeeeee;
  padding-top: 10px;
  margin-top: 20px;
  margin: 20px -20px 0;
  padding: 20px 20px 0;
}


/*****************************
Blog with right sidebar
*****************************/

.single-blog{
  padding-bottom: 30px;
}

.single-blog .post-bottom{
  border-bottom: 1px solid #eeeeee;
  padding-top: 10px;
  padding-bottom: 10px;
}

.single-blog .post-overlay span{
  left: 0;
  top: 0;
  margin-left: 0;
  width: 94px;
  height: 140px;
  background: url(../images/blog/blog-arrow.png);
  -webkit-animation: fadeInLeft 400ms;
  animation: fadeInLeft 400ms;
}

.single-blog .post-overlay span a{
  margin-left: 8px;
  font-weight: 700;
  font-size: 36px;
  line-height: 18px;
  position: absolute;
  top: 50px;
}

.single-blog .post-overlay span a small{
  font-size: 16px;
  font-weight: 300;
  margin-left: 5px;
}

.single-blog .post-overlay span:before{
  border-color: transparent;
  border-width: 0;
}

.post-nav{
  margin:0;
  padding: 0;
}

.post-nav li a{
  padding: 0;
  text-align: left;
}

.post-nav li a i{
  color: #88A9D3;
  margin-right: 8px;
}

.post-nav li a:hover{
  background: none;
}

.blog-padding-right{
  padding-right:35px;
}

.blog-pagination {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 55px;
}

/*****************************
Blog with right sidebar
*****************************/

.masonery_area .single-blog{}
.masonery_area .single-blog .post-thumb{
  height: auto;
}

.masonery_area .single-blog .post-title{
  margin-top: 5px;
}

.masonery_area .single-blog .post-title a{
  font-size: 20px;
}

.masonery_area .single-blog .post-thumb img{
  height:auto;
}

.masonery_area .single-blog .post-bottom{
  border-top:0;
  padding-top:0;
  margin-top:15px;
}

/* Audio CSS */

.audiojs{
  background: #88A9D3;
  height: 45px;
  width: 100%;
}

.audiojs .scrubber{
  background: #fff;
  
  height: 8px;
  border-top: 0;
  width: 170px;
  margin-top: 19px;
  margin-left: 12px;
  border-radius: 10px;
}

.audiojs .play-pause{
  background: #cca46c;
  width: 68px;
  height: 45px;
  padding: 0;
  padding-left: 24px;
  padding-top: 10px;
  border-right: 0;
}

.audiojs .time{
  display: none;
  
}

.audiojs .progress{
  background: #254876;

  height: 8px;
  border-radius: 10px;
}

.audiojs .loaded{
  background: #ba9663;
  height: 8px;
  border-radius: 10px;
}


/*****************************
Blog Details
*****************************/

.navbar-nav.post-nav li{
  margin-right: 60px;
}

.single-blog.blog-details .post-content{
  padding-top: 30px;
}

.single-blog.blog-details .post-bottom{
  margin-top: 55px;
}

.single-blog-wrapper{
  position: relative;
}

.blog-share{
  margin-top: 40px;
  display: inline-block;
  padding: 0;
}

span.stMainServices,
span.stButton_gradient, 
.stButton .chicklets{
  height:24px !important;
}

.author-profile.padding{
  padding-top:50px;
}

.author-profile .col-sm-2 img{
  width: 100%;
  border-left: 3px solid #88A9D3;
}

.author-profile h3{
  margin-top:0;
  color: #3a424c;
}

.author-profile p{
  color: #3a424c;
  font-weight: 400;
}

.author-profile span a{
  color: #254876;
}

.response-area{
  border-bottom: 0;
}

.response-area h2{
  margin-top: 0;
  
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 20px;
}

.post-comment{
  padding-left: 70px;
  padding-top: 36px;
  border-top: 1px solid #f1e8dd;
}

.post-comment .pull-left img{
  margin-right: 60px;
  border-left: 3px solid #88A9D3;
}

.post-comment .media-body{
  padding-top: 6px;
  border-bottom: 0;
  padding-bottom: 50px;
}

.post-comment .media-body p{
  margin-top:10px;
}

.post-comment .media-body span i{
  color: #254876;
  margin-right: 10px;
}

.post-comment .media-body span a{
  color: #254876;
  font-weight: 700;
}

.post-comment .media-body .post-nav li a{
  font-weight: 300;
}

.parrent .media-list{
  margin-left: 190px;
}

.parrent .post-comment{
  padding-left: 0;
  margin-left: 70px;
}


/****************************
********* Contact Us*********
*****************************/
#map-section {
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}

#gmap {
  height: 350px;
}

.get-in-touch img {
  margin-top: 35px;
  margin-bottom: 32px;
}

.get-in-touch p {
  font-size: 18px;
  font-weight: 300;
}

#map-section .contact-info {
  position: absolute;
  background-color: #fff;
  right: 0;
  top: 0;
  width: 33%;
  height: 100%;
  padding:25px 50px;
  opacity: 0.9
}

#map-section .contact-info h2, 
#map-section address a:hover {
  color: #254876
}

#contact-form #message{
  resize:none;
}

#contact-form .btn-submit {
  width: 28%;
  margin: 5px auto;
}

.corporate-info .corporate-address {
  background-image: url("../images/contact-bg.png");
  background-position: left top;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-bottom: 50px;
}

.corporate-info .corporate-address address {
  background-image: url("../images/icon-map.png");
  background-position: left top;
  background-repeat: no-repeat;
  padding-left: 40px;
}


/****************************
****** Price-table CSS*******
*****************************/

#price-table {
  margin-top: 88px;
  margin-bottom: 90px;
}

#price-table-alt {
  margin-top: 18px;
  margin-bottom: 20px;
}

.single-price ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.table-heading {
  background-color: transparent !important;
  color: #FFFFFF !important;
  overflow: hidden;
  padding: 0 !important;
  text-align: center;
}

.single-price .plan-name { 
  background-color: #B0BDCE;
  color: #000; /*#696969;*/
  font-size: 20px;
  margin-bottom: 0;
  padding: 10px 0;
  text-transform: capitalize;
}

.single-price .plan-price { 
   color: #000; /*#696969;*/
  float: none;
  font-size: 14px;
  height: 110px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  padding-top: 15px;
}


.plan-price .dollar-sign {
  font-size: 21px; /*18px;*/
}

.plan-price .price {
  font-size: 30px; /*24px;*/
}

.plan-price .month {
  display: block;
  margin-top: -6px;
	font-size: 18px;
}

#price-table-alt .plan-price .month {
  display: block;
  margin-top: -6px;
	font-size: 18px;
	text-align:right;
}

.single-price .plan-price:after {
  border-color: #7C91AD transparent transparent;
  border-style: solid;
  border-width: 110px;
  content: "";
  height: 0;
  left:50%;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  margin-left: -110px;
}

.single-price ul li, 
.single-table ul li {
  padding: 12px 18px;
  background-color: #D1E2F3;
  margin-bottom: 5px;
  color: #000; /*#696969;*/
}

.single-table.highligh-table > ul > li.missing {
	background-color: #F1D0D4;
  color: #000; /*#696969;*/
}

.single-table.highligh-table > ul > li.caution {
	background-color: #F0F1B8;
  color: #000; /*#696969;*/
}

.single-price ul li span, 
.single-table ul li span {
  float: right;
}

.single-price .btn-buynow {
  background-color: #7C91AD;
  border-radius: 0;
  color: #fff;
  padding: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.single-price .btn-buynow:hover {
  background-color: #4E5C6D;
}

.highligh-table .plan-name {
  background-color: #604905;
  color: #fff;
}

.highligh-table .plan-price {
  color: #fff;
}

.highligh-table .plan-price:after {
  border-color: #604905 transparent transparent;
}

.highligh-table .btn-buynow {
  background-color: #254876;
}

.highligh-table .btn-buynow:hover {
  background-color: #604905;
}


#price-table2 {
  margin-bottom: 180px;
}

.table-header {
  background-color: var(--hex-skyblue);
  overflow: hidden;
  padding: 10px; /*20px;*/
	color: var(--hex-dslate);
}

.single-table {
  position: relative;
  /*padding-top: 60px;*/
}

/*.single-table:before {
  border-color: transparent transparent #7C91AD;
  border-style: solid;
  border-width: 0 130px 60px;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}*/

.table-header h2 {
  color: #000; /*#696969;*/
  float: left;
  font-size: 24px;
  margin-top: 10px;
}


.table-header .plan-price {
  float: right;
  margin: 0;
  overflow: hidden;
  padding-top: 5px;
}


.single-table .btn-signup {
  display: block;
  text-align: center;
  position:relative;
  z-index:1
}

.single-table ul {
  margin: 0;
  padding: 0;
}

.single-table .btn-signup:after {
  content: "";
  position: absolute;
  border-color: #7C91AD transparent transparent;
  border-style: solid;
  border-width: 78px 130px 0;  
  height: 0;
  left: 0; 
  top: -1px;
  width: 100%;
  z-index: -1;
}

.single-table .btn-signup a {
  color: #000; /*#696969;*/
  display: inline-block;
  overflow: hidden;
  padding: 20px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.single-table .btn-signup:hover a {
  color: #fff;
}

.single-table .btn-signup:hover.btn-signup:after{
  border-color: #4E5C6D transparent transparent;
}

.single-table.highligh-table .table-header {
  background-color: var(--hex-dslate);
}

.highligh-table .btn-signup a, 
.highligh-table .table-header h2,
.highligh-table .table-header h4 {
  color: #fff;
	font-weight:400;
}

.highligh-table .btn-signup.btn-signup:hover:after {

  border-color: #254876 transparent transparent;
}

.highligh-table .btn-signup:after {
  border-color: #604905 transparent transparent;
}

.highligh-table:before {
  border-color:transparent transparent #604905;
}

.thumbcdate1, .thumbcdate3 {
	display: block;
	/*margin: 1em 0.75em;*/
	border: solid 2px var(--hex-dslate);
	border-radius: 100px;
	box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.40);
}

.thumbcdate2, .thumbcdate4 {
	display: block;
	/*margin: 1em 0.75em;*/
	border: solid 2px var(--hex-skyblue);
	border-radius: 100px;
	box-shadow: 4px 4px 3px 0px rgba(0,0,0,0.40);
}

.table > tbody > tr > td.cdate {
    margin-bottom: 0.5rem;
		padding: 0.25rem;
		border: none;
		/*border-bottom: 3px solid #FFF;*/
		border-top-left-radius:6px;
		border-bottom-left-radius:6px;
		font-weight:bold;
		text-align: center;
		vertical-align:middle;
}

.table > tbody > tr > td.cdate1, .table > tbody > tr > td.cdate3 {
		background-color: var(--hex-dslate);
		color:#FFF; 
}

.table > tbody > tr > td.cdate2, .table > tbody > tr > td.cdate4 {
		background-color: var(--hex-skyblue);
		color:var(--hex-dslate);
}

/*.table > tbody > tr > td.cdate3 {
		background-color: #01B4D3;
		color:#FFF;
}

.table > tbody > tr > td.cdate4 {
		background-color: #F21B42;
		color:#FFF;
}
*/


.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #193858;
	background-color: transparent;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 1px solid #193858;
}

.tablemodal > tbody > tr > td.cdate {
    margin-bottom: 0.5rem;
		padding: 0.25rem;
		border: none;
		border-bottom: 3px solid #FFF;
		border-top-left-radius:3px;
		border-bottom-left-radius:3px;
		background-color: #EB4C62;
		font-weight:bold;
		text-align: center;
		vertical-align:middle;
		color:#FFF;
}

.tablemodal > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #EB4C62;
}

.tablemodal > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 1px solid #EB4C62;
}

/*************************
********404 page CSS******
**************************/

#error-page {
  display: table;
  height: 100%;
  min-height: 100%;
  width: 100%;
  color: var(--hex-gray);
  font-size: 18px;
  font-weight: 300;
  padding: 100px 0;
}

#error-page .container-fluid {
  overflow: hidden;
}

.error-page-inner {
  display: table-cell;
  vertical-align: middle;
}

.bg-404 {
  background-image: url("../images/home/tour-bg.png");
  background-repeat: repeat-x;
  background-position: center top;
}

.error-image {
  display: inline-block;
  padding-top: 50px;
  padding-bottom: 50px;
}

.error-image img {
  width: 100%;
}

#error-page h2 {
  font-size:36px;
  text-transform: uppercase;
}

.btn-error {
  font-weight: 300;
  margin-top: 30px;
  padding:25px 55px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 5px;
  background-color: transparent;
  border: 1px solid #604905;
  margin-top: 50px;
  margin-bottom: 50px;
}

.btn-error:hover, .btn-error:focus  {
  background-color: #604905;
  border-color:#604905;
  color:#fff;
}

#error-page i, #coming-soon i {
  border: 1px solid #604905;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #604905;
  font-size: 17px;
  margin:0 15px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#error-page i:hover, #coming-soon i:hover {
  background-color: #604905;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


/*************************
********404 page CSS******
**************************/

#error-page {
  display: table;
  height: 100%;
  min-height: 100%;
  width: 100%;
  color: var(--hex-gray);
  font-size: 18px;
  font-weight: 300;
  padding: 100px 0;
}

#error-page .container-fluid {
  overflow: hidden;
}

.error-page-inner {
  display: table-cell;
  vertical-align: middle;
}

.bg-404 {
  background-image: url("../images/home/tour-bg.png");
  background-repeat: repeat-x;
  background-position: center top;
}

.error-image {
  display: inline-block;
  padding-top: 50px;
  padding-bottom: 50px;
}

.error-image img {
  width: 100%;
}

#error-page h2 {
  font-size:36px;
  text-transform: uppercase;
}

.btn-error {
  font-weight: 300;
  margin-top: 30px;
  padding:25px 55px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 5px;
  background-color: transparent;
  border: 1px solid #604905;
  margin-top: 50px;
  margin-bottom: 50px;
}

.btn-error:hover, .btn-error:focus  {
  background-color: #604905;
  border-color:#604905;
  color:#fff;
}

#error-page i, #coming-soon i {
  border: 1px solid #604905;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #604905;
  font-size: 17px;
  margin:0 15px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#error-page i:hover, #coming-soon i:hover {
  background-color: #604905;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*************************
******Coming Soon CSS*****
**************************/

.logo-image {
  display: block;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 95px;
}

.logo-image img {
  display: inline-block;
}

#coming-soon {
  background-image: url("../images/home/tour-bg.png");
  background-position: center top;
  background-repeat: repeat-x;
  padding: 40px 0;
  overflow: hidden;
}

#coming-soon .social-link {
  margin-top: 35px;
}

.time-count {
  display: block;
  text-align: center;
}

.time-count ul {
  padding-left: 0;
}

#countdown {
  display: inline-block;
  margin-bottom: 100px;
  margin-top: 100px;
}


#countdown li {
  float: left;
  margin-right: 100px;  
  color: #757575;  
  font-weight: 300;
  font-size: 30px;
  position: relative;
  z-index:1;
  padding-top: 45px;
}

#countdown li:last-child {
  margin-right: 0;
  margin-left: 20px;
}

#countdown li span {
  display: block;
  font-size: 72px;
  margin-bottom: 25px;
}

#countdown li.angle-one:before {
  border-color: #604905 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 250px 145px 0;
  content: "";
  left: -80px;
  position: absolute;
  top: -5px;
  z-index: -1;
}

#countdown li.angle-one:after{
  border-color: #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 236px 137px 0;
  content: "";
  left: -72px;
  position: absolute;
  top: 0;
  z-index:-1;
}

#countdown li.angle-two:before {
  border-color: rgba(0, 0, 0, 0) #254876 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 250px 290px 0 0;
  content: "";
  left: -175px;
  position: absolute;
  top: -5px;
  z-index:-1;
  -moz-transform: skewX(30deg);
  -webkit-transform: skewX(30deg);
  -o-transform: skewX(30deg);
  -ms-transform: skewX(30deg);
  transform: skewX(30deg);
}

#countdown li.angle-two:after {
  border-color: rgba(0, 0, 0, 0) #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 235px 272px 0 0;
  content: "";
  left: -162px;
  position: absolute;
  top: 5px;
  z-index: -1;
  -moz-transform: skewX(30deg);
  -webkit-transform: skewX(30deg);
  -o-transform: skewX(30deg);
  -ms-transform: skewX(30deg);
  transform: skewX(30deg);
}

#countdown li.angle-two span{
  padding-top: 90px;
}

#countdown li.angle-one span.minutes, 
#countdown li.angle-one .minute {
  margin-left: 25px;
}


#subscribe {
  background-color: #565656;
  color: #FFFFFF;
  padding: 40px 0 50px;
}

#subscribe h2 {
  color: #fff;
  text-transform: uppercase;
}

#subscribe .fa-envelope-o {
  color: #88A9D3;
  margin-right: 5px;
}

#subscribe .form-control {
  background-color: transparent;
  height: 52px;
  color: #fff;
}

#newsletter {
  margin-top: 35px;
  position: relative;
}

#newsletter i {
  color: #88A9D3;
  font-size: 36px;
  position: absolute;
  right: 12px;
  top: 7px;
}

.newsletter p {
  color: #919191;
  font-size: 12px;
  margin-top: 10px;
}

#coming-soon-footer {
  padding: 45px 0;
  line-height: 15px;
  overflow: hidden;
}

#coming-soon-footer a {
  color: #604905;
}

#coming-soon-footer a:hover {
  color: #b38040
}

/*Shortcodes CSS*/
.bs-example{
  margin: 0 0 20px;
}

.panel-group{
  /*border: 1px solid #FFCE36; /*#eee;*/
}
.panel-default{
  border: 0;
}
.panel-group .panel{
  border-radius: 0;
}
.panel-group .panel+.panel{
  margin-top: 0;
}

.panel-default>.panel-heading{
  background-color: #FFCE36; /* transparent;*/
  border-top: 2px solid #FFF; /*1px solid #eee;*/
}

.panel-title > a:hover {
    color: #604905;
}

.panel-group .panel-default:first-child>.panel-heading{
  border-top: 0;
}

.panel-default>.panel-heading+.panel-collapse .panel-body{
  border-top-color: #eee;
}


.nav > li {
	font-weight: 400;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus{
  background-color: #EB4C62;
	color: #FFF;
}

.nav > li > a:focus, .nav > li > a:hover {
	text-decoration: none;
	background-color: #EB4C62;/*#7BC6C2;*/
}

.tab-content {
  padding-top: 20px;
}

/*Features*/
.feature-inner{
  text-align: center;
}
.icon-wrapper{
  display: inline-block;
  background-color: #604905;
  color: #fff;
  padding: 25px;
  box-shadow: 0 0 0 5px rgba(0,0,0,.1) inset;
  -webkit-box-shadow: 0 0 0 5px rgba(0,0,0,.1) inset;
  border-radius: 100%;
  margin: 10px 0;
}


/* New Styles */
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fs-7 {
  font-size: 0.90rem !important;
}

.fs-8 {
  font-size: 0.80rem !important;
}

.fs-9 {
  font-size: 0.70rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-decoration-inherit {
  text-decoration: inherit !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}
