body {

}
a {color: #ec6a25}
a:hover {color: #252958;}
.txt-orange {color: #ec6a25;}
.txt-navy {color: #252958;}

.bg-gray {background: #eee;}
.bg-beige {background: #fdf6f1;}

.pad1020 {padding: 10px 20px;}

.head-right li a {
	color: #fff;
	background: #ec6a25;
	border-color: #ec6a25;
}
.head-right li a:hover {
	color: #ec6a25;
	background: #fff;
	border-color: #ec6a25;
}
.btn-default,
.btn-grad {
	border-radius: 7px !important;
	padding: 10px 25px !important;
	background: #252958 !important;
	color: #fff !important;
}
.btn-default:hover,
.btn-default:focus,
.btn-grad:hover,
.btn-grad:focus  {
	background: #ec6a25 !important;
}

.logo {
	text-align: left;
}

#modal-container .wrap .img {
  background-color: rgba(236,106,37,0.6);
}
#modal-container .form-control {
  border: 1px solid #ec6a25;
}
#modal-container .wrap .img .close {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  top: 15px;
  right: 15px;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 16px;
  padding: 15px 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.page-banner {
	padding: 80px 0;
}
.firstwrap {
	padding: 60px 0;
}
.firstwrap h4 {
	margin-bottom: 30px;
}
.listwrap {
	padding: 60px 0;
}
.listwrap h2 {
	margin-bottom: 30px;
}

.profile-logo {
  position: absolute;
  z-index: 3;
  display: block;
  bottom: 60px;
  width: 100%;
}
.profile-logo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.profile-logo h1 {
  color: #fff;
  margin-top: 20px;
}
.profile-logo h1 span {
  background: rgba(0,0,0,0.5);  
  padding: 10px 20px;
  border-radius: 6px;
}

.page-content {
	padding: 60px 0;
}
.page-content .img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}
.card,
.page-content .card {
	border-radius: 8px;
	border-color: #ec6a25;
}
.page-content .social a {
  background: #252958;
  color: #fff;
  width: 42px;
  height: 42px;
  display: inline-block;
  margin-right: 10px;
  font-size: 24px;
  line-height: 42px;
  text-align: center;
  border-radius: 4px;
}
.page-content .social a:hover {
  background: #ec6a25;
  color: #ffd;
}
.page-content .star span {
  background: #ec6a25;
  color: #fff;
  width: 36px;
  height: 36px;
  display: inline-block;
  margin-right: 6px;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
}
.page-content .star i {
  color: #999;
}
.page-content .star i:hover {
  color: #ffdb0f;
}


.recipe-box {
	background: #fff;
	border-radius: 8px;
	border-color: #ec6a25;
	padding: 10px;
}
.recipe-box:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.2) ;
}
.recipe-box .read-more-text {
	color: #ec6a25;
	font-weight: normal;
}

footer {
	background: #ecf0f1;
	padding-top: 30px;
	margin-top: -30px;
}
footer h4 {
	color: #ec6a25;
	font-size: 19px;
	font-weight: 600;
	text-transform: uppercase;
}



/* ----------- text scroller ----------- */
.scroll-left {
  background: #252958;
  border: 1px solid #252958;
  height: 40px; 
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin-bottom: 20px;
}
.scroll-left p {
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 40px;
  text-align: center;
  /* Starting position */
  -moz-transform:translateX(100%);
  -webkit-transform:translateX(100%); 
  transform:translateX(100%);
  /* Apply animation to this element */ 
  -moz-animation: scroll-left 20s linear infinite;
  -webkit-animation: scroll-left 20s linear infinite;
  animation: scroll-left 20s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
0% { -moz-transform: translateX(100%); }
100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
0% { -webkit-transform: translateX(100%); }
100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
0% { 
-moz-transform: translateX(100%); /* Browser bug fix */
-webkit-transform: translateX(100%); /* Browser bug fix */
transform: translateX(100%); 
}
100% { 
-moz-transform: translateX(-100%); /* Browser bug fix */
-webkit-transform: translateX(-100%); /* Browser bug fix */
transform: translateX(-100%); 
}
}


/**
 * Tabs
 */
.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.tabs label {
  order: 1;
  display: block;
  padding: 1rem 1.2rem;
  margin-right: 0.3rem;
  cursor: pointer;
  background: #fdf6f1;
  font-weight: normal;
  font-size: 18px;
  transition: 0.4s;
  border: 1px solid #fdf6f1;
  text-transform: uppercase;
  border-radius: 4px;
}
.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
  margin-top: 30px;
  background: #fff;
  transition: 0.4s;
  background: #fdf6f1;
  border-radius: 6px;
}
.tabs input[type="radio"] {
  display: none;
}
.tabs input[type="radio"]:checked + label {
  color: #fff;
  background: #ec6a25;
}
.tabs input[type="radio"]:checked + label + .tab {
  display: block;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
  }
  .tabs label {
    width: auto;
    margin-right: 0.2rem;
    margin-top: 0.2rem;
    font-size: 13px;
    padding: 1.2rem 0.5rem;
    width: 100px;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {


  .profile-logo {
    position: absolute;
    z-index: 3;
    display: block;
    top: 160px;
    width: 100%;
  }
  .profile-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
  }
  .profile-logo h1 {
    color: #fff;
    margin-top: 10px;
    font-size: 22px;
  }

}