
/* =Toolkit
--------------------------------------------------------------------------------------------------*/
::-webkit-scrollbar {
  background: transparent;
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: #888;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
/* End Toolkit
========================================================*/

/* remember to define focus styles! */
:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
a:hover, a:focus{
  text-decoration: none;
  outline: 0 ;
  box-shadow: none;
}
/* =Typography
--------------------------------------------------------------------------------------------------*/

/* Setting up the fonts */
body {

  /*font-family: 'Open Sans', sans-serif;*/
  font-family: 'Montserrat', sans-serif;
  background:#FFFFFF;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #040404;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.container {max-width: 1500px;}
p{margin-bottom: 0; padding-bottom: 0;}

/* End Typography
--------------------------------------------------------------------------------------------------*/


/* =Headings
--------------------------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6, [class*=heading-] {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
}
h1, .h1{
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
} 
h2, .h2{
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
} 
h3, .h3{
  font-size: 36px;
  font-weight: bold;
  line-height: 42px;
}
h4, .h4{
  font-size: 28px;
  font-weight: bold;
  line-height: normal;
}
h5, .h5{
  font-size: 22px;
  font-weight: bold;
  line-height: normal;
}
h6, .h6{
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
}
/* End Headings
--------------------------------------------------------------------------------------------------*/


/* =Links
--------------------------------------------------------------------------------------------------*/
ul,li{list-style: none;margin:0;padding: 0;}
img{max-width: 100%;}
/* End Links
--------------------------------------------------------------------------------------------------*/
/* = Button
----------------------------------------------------------------------------------------------------*/
button:focus, button:active, .btn.focus, .btn:focus{box-shadow: none;outline: none;}
.btn{ 
  padding: 9px 30px; 
  line-height:17px; 
  font-size: 20px; 
  border:none; 
  box-shadow: none;
  font-weight:700; 
  border-radius:4px; 
  text-transform:capitalize;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 0;
  border-radius: 50px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary{background-color: #BC8E1E;color: #FFFFFF;border:2px solid #BC8E1E;}
.btn-primary:hover, .btn-primary:focus{ background-color: #FFFFFF;color: #BC8E1E; border-color: #BC8E1E;}
.btn-primary:hover, .btn-primary:focus , .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus
{background-color: #FFFFFF;color: #BC8E1E; border-color: #BC8E1E;}
.btn-secondary{ background:transparent;color: #fff;border: 2px solid #FFF;}
.btn-secondary:hover{background-color: #FFF;color: #BC8E1E;border-color: #FFF;}
/* .btn-secondary:hover,.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle,.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus
{}
.btn-default{background-color: #FFF;color: #151515;}
.btn-default:hover{background-color: #57a0ea;color: #FFF;} */

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle
{
  color: #fff;
  background-color: #BC8E1E;
  border-color: #BC8E1E;
}
/* =general purpose
--------------------------------------------------------------------------------------------------------*/
.container{
  max-width: 1280px;
}
p{
  font-size: 16px;
  color: #040404;
  line-height: 24px;
  font-size: medium;
}
.primary-text{
  color: #BC8E1E;
}
.primary-bg{
  background-color: #BC8E1E;
}
section{
  display: block;
  width: 100%;
  padding: 30px;
  position: relative;
}

/* Loader spinner */
.loader-wrap
{
  position: fixed;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background:rgba(255,255,255,0.98);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0px auto 50px;
}
.loader-wrap .loader-logo{width:250px;}
.spinner .double-bounce1, .spinner .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #BC8E1E;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s !important;
  animation-delay: -1.0s !important;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/* End general purpose
--------------------------------------------------------------------------------------------------------*/


/* Header
--------------------------------------------------------------------------------------------------*/
header
{
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  background-color: #FFFFFF;
}
.header-logo{
  width: 250px;
  display: inline-block;
}
header nav .main-manu{
    width: calc(100% - 300px);
}
header nav{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px;
    width: 100%;
}
header nav .main-manu ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header nav .main-manu ul li{
  margin: 5px 25px;
  position: relative;
  z-index: 1;
}
header nav .main-manu ul li a{
  color: #BC8E1E;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index:5;
}
header nav .main-manu ul li.active a, header nav .main-manu ul li:hover a{
  color: #084F61;
}
header nav .main-manu ul li.nav-btnbox{display: none;}
.manu-toggle-btn{
  width: 28px;
  height: 24px;
  min-height: inherit;
  padding: 0;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
}
.manu-toggle-btn span
{
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #BC8E1E;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.manu-toggle-btn span:nth-child(1) {
  top: 0px;
}

.manu-toggle-btn span:nth-child(2),.manu-toggle-btn span:nth-child(3) {
  top: 8px;
}

.manu-toggle-btn span:nth-child(4) {
  top: 16px;
}

.manu-toggle-btn.active span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* .manu-toggle-btn.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.manu-toggle-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.manu-toggle-btn.active span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
} */

/* End Header
--------------------------------------------------------------------------------------------------*/

/* =Breadcrumbs start
--------------------------------------------------------------------------------------------------*/
.breadcrumbs {}
.breadcrumbs a{display:inline-block;}
.breadcrumbs a:hover {text-decoration:none;}
/* =Breadcrumbs ends
--------------------------------------------------------------------------------------------------*/

/* =Main Contentn
--------------------------------------------------------------------------------------------------*/
.layout-wrap{
  display: block;
  margin:87px auto 0;
  overflow: hidden;
}
/* ============================ 
=============================== Home Page */
/* Home banner */
.head-banner-wrap{
  width: 100%;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.head-banner-wrap .banner{
  position: relative;
  display: block;
  width: 100%;
  justify-content: flex-end;
}
.head-banner-wrap .banner-content{
  position: absolute;
  top: 0;
  left: 0;
  padding:32px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head-banner-wrap .banner-content .info{
  max-width: 525px;
}
.head-banner-wrap .banner-content .info h2, .head-banner-wrap .banner-content .info h1{
  color: #C7E6E1;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.9);
}
.Home-wrap .head-banner-wrap .banner-content .info h2, .Home-wrap .head-banner-wrap .banner-content .info h1{color: #FFFFFF;}
.head-banner-wrap .banner-content .info .img-box{
  width: 80%;
}
.head-banner-wrap .banner-content .social-media-wrap {
  display: flex;
  flex-direction: column;
}
.head-banner-wrap .banner-content .social-media-wrap li a{
  display:flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
  background-color:#BC8E1E;
  border-radius: 100%;
  margin: 10px 0;
  color: #FFF;
  font-size: 24px;
  text-shadow: 2px 3px 3px rgba(0,0,0,0.5);
  border: 2px solid #BC8E1E;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.head-banner-wrap .banner-content .social-media-wrap li a:hover{
  background-color: #FFF;
  color: #BC8E1E;
  text-shadow: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.1);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.1);   
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.1);
    transition: all 200ms ease-in;
    transform: scale(1.1);
}
/* Logo Slider*/
.slider-wrap{
  max-height: 200px;
  padding: 44px 20px;
  overflow: hidden;
}
.sm-slider .logo-slider{max-width: 1016px;width: 100%;margin: 0 auto;}
.slider-wrap .logo-slider .item .imgbox{
  width: 100%;
  min-height: 120px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
/* Logo List */
.logo-list{
  max-height: 200px;
  /* max-width: 1236px; */
  margin: 0 auto;
}
.slider-wrap .logo-list .item .imgbox{
  width: 100%;
  height: 110px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
/* About Howard */
.about-howard {
  position: relative;
  padding: 40px 0 30px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-howard .info{
  background-color: rgba(255,255,255,0.5);
  padding: 25px 45px;
  border: 2px solid #084F61;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  max-width: 689px;
  margin-left: 46px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.about-howard .info h3{
  color: #BC8E1E;
  margin-bottom: 15px;
}
.about-howard .info p {
  color: #040404;
  margin-bottom: 25px;
  font-weight: 500;
}
.about-howard .info .read-more, .about-howard .info a{text-transform: uppercase;font-size: 18px;font-weight: bold;color: #BC8E1E;}
.about-howard .info a:hover{color: #BC8E1E;text-decoration: underline;}
.about-howard .imgbox{
  position: absolute;
  right: 40px;
  bottom: 0px;
  max-width: 450px;
}

/* Credentials Wrap */
.credential-wrap{
  padding: 35px;
}
.credential-wrap h3{
  margin-bottom: 20px;
  color: #FFF;
}
.credential-wrap .list ul{
  width: 49.6%;
  display: inline-block;
  vertical-align: top;
}
.credential-wrap .list ul li{
  width: calc(100% - 15px);
  padding: 0 15px;
}
.credential-wrap ul li{
  width: 100%;
  display: inline-block;
  padding: 0 0px 0 15px;
  color: #FFF;
  vertical-align: top;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  position: relative;
}
.credential-wrap ul li:before{
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #FFF;
  border-radius: 100%;
  top: 9px;
}
/* Latest Book Release */

.latest-book h3{
  margin: 20px 0;
}
.latest-book p{
  font-weight: 600;
}
.latest-book span{
  color: #EC3030;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
}
.latest-book ul{
  position: relative;
  margin-bottom: 15px;
}
.latest-book ul li{
  position: relative;
  font-weight: 600;
  font-size: 16px;
  padding-left: 15px;
}
.latest-book ul li:before{
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #040404;
  border-radius: 100%;
  top: 9px;
}
.latest-book .btn{
  min-width: 290px;
}
.latest-book .imgbox{
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
/* Take Quiz */
.take-quiz{
  background-repeat: no-repeat;
  background-size: cover;
}
.take-quiz h3{
  color: #BC8E1E;  
  margin-bottom: 20px;
  padding-right: 50px;
}
.take-quiz .info{
  background-color: rgba(255,255,255,1);
  padding: 25px 105px 25px 25px;
  border: 2px solid #084F61;  
  width: 68%;
  position: relative;
  z-index: 1;
}
.take-quiz .info span{display: inline-block;width: 100%; font-weight: bold;color: #4B380A;margin-bottom: 10px;}
.take-quiz .info p{
  margin-bottom: 10px;
}
.take-quiz  .take-quiz-info{
  position: absolute;
  right: 0;
  top: 50px;
  padding: 35px 0px 10px;
  width: 38%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.take-quiz .take-quiz-info h3{
  color: #FFF;
  padding-right: 0;
  text-align:center;
}
.take-quiz .take-quiz-info p{
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 26px;
  text-align: center;
  padding: 0 10px;
}
.take-quiz .take-quiz-info .btn-box{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Unlock Employee Wrap */
.unlock-employee-wrap{
  background-color: #000;
  background-repeat: no-repeat;
  display: inline-flex;
  justify-content: flex-end;
  background-position-x: -100px;
}
.unlock-employee-wrap .info{
  max-width: 815px;
}
.unlock-employee-wrap .info h3{
  color: #BC8E1E;
  margin-bottom: 15px;
}
.unlock-employee-wrap .info p{
  color: #FFF;
  font-weight: 600;
  margin-bottom: 15px;
}
.unlock-employee-wrap .info span{
  color: #FFF;
  margin-bottom: 35px;
  display: block;
}
.unlock-employee-wrap .info .btnbox{
  display: inline-block;
  width: 100%;
  text-align: left;
}
.unlock-employee-wrap .info .btn{
  background-repeat: no-repeat;
  display: inline-flex;
  background-size: cover;
  color: #FFFFFF;
  border: 2px solid #BC8E1E;
  font-size: 17px;
  margin: 5px 15px 15px 0;
  height: 64px;
  width: 250px;
  padding: 5px;
  background-repeat: repeat;
  background-size: cover;
}
/* Testimonial */
.testimonial h3{
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.testimonial-slider{
  max-width: 1115px;
  margin: 0 auto 0;
}
.testimonial-slider .testimonial-box{
  background-color: #D3C266;
  padding: 25px 40px;
  position: relative;
  margin-top: 80px;
}
.testimonial-slider .testimonial-box .author-img{
  width: 130px;
  height: 130px;
  margin: -90px auto 0;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}
.testimonial-slider .testimonial-box .name-box{
  text-align: center;
  color: #000000;
  margin:25px 0 15px;
}
.testimonial-slider .testimonial-box .name-box h6{
  color: #000;
}
.testimonial-slider .testimonial-box .name-box label, .testimonial-slider .testimonial-box .name-box span
{
  display: block;
  text-align: center;
  margin: 0;
  font-weight: bold;
}
.testimonial-slider .testimonial-box .info p{
  font-size: 16px;
  font-weight: 500;
}
.slick-prev, .slick-next{display: none !important;}
.testimonial-slider .slick-dots{
  bottom: -35px;
}
.testimonial-slider .slick-dots li button:before{
  color: #FFF;
  font-size: 15px;
  opacity: 1;
}
.testimonial-slider .slick-dots li.slick-active button:before{
  color: #040404;  
}
.testimonial .btnbox{
  display: flex;
  justify-content: center;
  margin-top: 55px;
}
.testimonial .btnbox .btn{max-width: 238px;width: 100%;}
/* Past Speacker Appearances */
.past-appearances{
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.past-appearances h3{
  color: #BC8E1E;
  margin-bottom: 25px;
  text-align: center;
}
.past-appearances .past-appearances-box{
  display: flex;
  flex-direction: column;
}
.past-appearances .past-appearances-box .imgbox{
  margin-bottom: 20px;
  border: 1px solid #BC8E1E;
}
.past-appearances .past-appearances-box .imgbox img{width: 100%;}
.past-appearances .past-appearances-box h6{
  color: #084F61;
  font-size: 20px;
}
.past-appearances .btnbox{margin-top: 25px;}
.past-appearances .btnbox .btn{max-width: 400px; width: 100%;}
/* Home Blog List */
.hm-blog-wrap{
  background-color: #084F61;
}
.hm-blog-wrap .titlebox{
  text-align: center;
}
.hm-blog-wrap h3{
  margin-bottom: 10px;
  color: #FFFFFF;
}
.hm-blog-wrap .titlebox{
  display: block;
  margin-bottom: 30px;
}
.hm-blog-wrap .titlebox p{
  color: #C7E6E1;
  max-width: 745px;
  margin: 0 auto;
}
.hm-blog{
  padding: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
.hm-blog h5{
  margin-bottom: 12px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 26px;
  min-height: 26px;
}
.hm-blog .imgbox{
  display: block;
  margin-bottom: 15px;
}
.hm-blog .imgbox img{width: 100%;}
.hm-blog label{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 45px;
  min-height: 45px;
}
.hm-blog p{
  font-size: 12px;
  line-height: 16px;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 96px;
  min-height: 96px;
}
.hm-blog a.btn{
  padding: 0;
  margin-top: 15px;
  color:#BC8E1E;
  min-height: inherit;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}
.hm-blog a.btn:hover{
  color:#084F61;
  border-bottom: 2px solid #084F61;
}
.hm-blog .btn em{margin-left: 10px;display: inline-block; }
.hm-blog:hover .imgbox{
  opacity: 0.5;
}
.hm-search-form{
  display: block;
  margin-top: 30px;
}
.hm-search-form .btnbox{
  width: 100%;
  max-width: 150px;
  margin: 0px auto 0;
}
.hm-search-form .btnbox .btn{width: 100%;height: 50px;}
.cat-filter-btn{
  text-align: right;
  display: none;
}
/* Interview Book */
.book-interview{
  background-color: #000;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  margin-bottom: 38px;
}
.book-interview .bg-imgbox{
  position: absolute;
  left: -68px;
  top: -60px;
  width: 80%;
}
.book-interview .info{
  max-width: 710px;
  position: relative;
  z-index: 1;
}
.book-interview .info h3{
  color: #FFF;
  margin-bottom: 5px;
}
.book-interview .info span{display: block;margin-bottom: 25px;color: rgba(255, 255, 255, 0.8);font-weight: 600;font-size: 22px;}
.book-interview .info ul li{
  width: 100%;
  display: inline-block;
  padding: 0 0px 30px 15px;
  color: #FFF;
  vertical-align: top;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  position: relative;
}
.book-interview .info ul li:before{
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #FFF;
  border-radius: 100%;
  top: 9px;
}
.book-interview .info .btnbox{
  display: flex;
  align-items: center;
}
.book-interview .info .btnbox .btn{
  max-width: 290px;
  width: 100%;
  margin:0 25px 15px 0;
}

/* ============================ 
=============================== About US */
.main-banner-wrap{
  display: flex;
  justify-content: flex-end;
}
.main-banner-wrap .banner
{
  position: relative;
  display: block;
  width: calc(100% - 80px);
  margin-left: 80px;
}
.main-banner-wrap .banner img{width: 100%;}
.main-banner-wrap .banner-content{
  padding: 32px 32px 32px 0;
}
.main-banner-wrap .banner-content .info
{
  background-color: #084F61;
  padding: 30px;
  text-align: center;
  margin-left: 20px;
}
.main-banner-wrap .banner-content .info h2, .main-banner-wrap .banner-content .info h1{
  text-shadow: none;
  font-weight: 400;
  margin-bottom: 25px;
}
.main-banner-wrap .banner-content .info .rating-box{margin: 10px 0;}
.main-banner-wrap .banner-content .info .rating-box span
{
  font-size: 30px;
}
.main-banner-wrap .banner-content .info h5{
  color: #FFF;
  line-height: 37px;
  margin-bottom: 25px;
  text-align: left;
}
.main-banner-wrap .banner-content .info p{color: #FFFFFF;text-align: left;}
.main-banner-wrap .banner-content .info p b{margin: 0 0 1rem 0 !important;display: block;}
.main-banner-wrap .banner-content .info .btn{max-width: 280px;width: 100%;box-shadow: 0 0 5px rgba(0,0,0,0.3);}

/* Howard Early Years */
.early-year{
  padding: 30px 20px 80px;
}
.early-year .info{
  position: relative;
  width: calc(100% - 60px);
  border:1px solid #BC8E1E;
  padding: 50px 25px;
  display: flex;
  align-items:flex-start;
  justify-content: space-between;
  margin-left: 60px;
}
.early-year .info .imgbox{
  position: relative;
  margin-left: -85px;
  width: 100%;
  max-width: 370px;
  top: 50px;
}
.early-year .info .info-content{
  width: calc(100% - 320px);  
}

.early-year .info .info-content h2{margin-bottom: 15px;color: #084F61;}
.early-year .info .info-content p{margin-bottom: 15px;}
.early-year .info .info-content a{color: #BC8E1E;text-decoration: underline;font-weight: bold;text-transform: uppercase;}
.early-year .info .info-content a:hover{color:#084F61;}

.early-year .info .info-content .info-view{
  max-height: 425px;
  overflow: hidden;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  margin-bottom: 15px;
}
.early-year .info .info-content .info-view.more-info{
  max-height: inherit;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
/* howard's Books */
.checked {
  color: #BC8E1E;
}
.howard-books{
  padding: 30px 20px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.howard-books .titlebox{text-align: center;}
.howard-books h2{text-align: center;color: #084F61;margin-bottom: 10px; text-combine-upright: ;}
.howard-books .titlebox p{max-width: 70%;margin: 0 auto 20px;}
.howard-books .info-wrap{
  border: 1px solid #084F61;
  padding: 25px;
  min-height: 450px;
}
.howard-books .info-wrap h4{font-size: 24px;margin-bottom: 15px;}
.howard-books .info-wrap .info{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.howard-books .info-wrap .info .imgbox{
  width: 225px;
  text-align: center;
  padding: 15px;
}
.howard-books .info-wrap .info .imgbox img{max-height: 200px;height: 100%;}
.rating-box{
  display: block;
  margin-top: 15px;
}
.rating-box label{color: #084F61;font-size: 15px;font-style: italic;}
.howard-books .info-wrap .info .content{
  width: calc(100% - 225px);min-height: 350px;
}
.howard-books .info-wrap .info .imgbox a{color: #BC8E1E;text-decoration: underline;font-weight: 500;margin-top: 5px;}
.howard-books .info-wrap .info .imgbox a:hover{color: #084F61;}
.howard-books .info-wrap .info .content h6{
  font-size: 16px;margin-bottom: 10px;
}
.howard-books .info-wrap .info .content ul li{
  padding-left: 15px;
  position: relative;
  font-weight: 500;
}
.howard-books .info-wrap .info .content ul li:before{
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #040404;
  border-radius: 100%;
  top: 10px;
}
.stores-list{
  display: block;
  text-align: center;
  margin-top: 20px;
}
.stores-list h6{
  font-size: 20px;
  color: #838383;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.stores-list ul{
  display: flex;
  text-align: center;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.stores-list ul li{
  display: inline-block;
  padding: 15px;
  width: 100%;
  max-width: 170px;
  transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.stores-list ul li:hover
{
  transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.1);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.1);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.1);
    transition: all 200ms ease-in;
    transform: scale(1.1);
}
.howard-books .info-wrap .ms-info {
  min-height: 318px;
  display: block;
  padding:20px 0 80px;
  position: relative;
}
.howard-books .info-wrap .ms-info p{font-weight: bold;}
.howard-books .info-wrap .ms-info .btnbox{
  display: block;
  margin-top: 20px;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
}
/* Newsletter Wrap */
.join-newsletter-wrap{
  padding: 50px 0;
}
.join-newsletter-wrap .info{
  background-repeat: no-repeat;
  width: 84%;
  margin:0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .content-wrap{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 452px;
} */
.join-newsletter-wrap .info .book-event-tag{
  background-color: rgba(188,142,30,0.8);
  padding: 15px;
  max-width: 400px;
  width: 100%;
  height: 100%;
  min-height: 452px;
  position: relative;
  left: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.join-newsletter-wrap .info .book-event-tag h2{
  color: #FFF;
  margin-bottom:20px;  
  text-align: left;
  line-height: 40px;
}
.join-newsletter-wrap .info .book-event-tag .btnbox{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.join-newsletter-wrap .info .book-event-tag .btnbox .btn{padding: 5px 20px;max-width: 167px;width: 100%; font-size: 16px;margin-top: 10px;}
.newsletter-form{
  max-width: 450px;
  width: 100%;
  background-color: #FFFFFF;
  padding: 63px 20px 20px;
  border: 1px solid #BC8E1E;
}
.newsletter-form h5{
  color: #BC8E1E;
  margin-bottom: 15px;
}
.newsletter-form p{
  font-size: 12px;
  margin-top: 20px;
  line-height: 14px;
}
.newsletter-form .btn{max-width: 188px;width: 100%;}
span.wpcf7-not-valid-tip
{
  color: #f00;
  font-size: 0.7em;
  font-weight: normal;
  display: block;
  margin-left: 20px;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{display: none !important; }
div.wpcf7-mail-sent-ok{
  border: 2px solid #398f14;
  background: #398f14;
  color: #FFF;
  font-size: 11px;
  text-align: center;
  margin: 10px 0 0;
}
/* ============================ 
=============================== Coaching */
.read-more{color: #BC8E1E; text-decoration: underline;font-weight: 600;}
.howard-story{
  background-color: #084F61;
}
.howard-story .titlebox{
  text-align: center;
  margin-bottom: 50px;
}
.howard-story .titlebox h2{color: #FFFFFF;margin-bottom: 12px;}
.howard-story .titlebox p{text-transform: uppercase;margin-bottom: 0;font-weight: bold;color: #C7E6E1;font-size: 18px;}
.howard-story p{color: #FFFFFF;margin-bottom: 15px;}
.sm-blogs-list{ display: block;width: 100%; margin-top:32px;}
.sm-blogs-list h4{margin: 20px 0;display: flex;align-items: center;}
.sm-blogs-list h4 span{display: inline-block;  margin-right: 10px;;}
.sm-blogs-list h4 em, .sm-blogs-list h4 i{margin-right: 8px;color: #084F61;}
.sm-blogs-list .blog-list li{
  width: 100%;
  padding: 15px 0;
}
.sm-blogs-list .blog-list li:first-child{
  padding: 0 0 15px;
}
.sm-blogs-list .list-unstyled li h6{
  color: #084F61;margin-bottom: 4px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 22px;
  min-height: 22px;
  margin-bottom: 0;
}
.sm-blogs-list .blog-list li p{
  margin-bottom: 5px;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 22px;
  min-height: 22px;
}
.sm-blogs-list .list-unstyled li{
  border-bottom: 2px solid #BC8E1E;
  padding: 10px 0;
}
.sm-blogs-list .list-unstyled li:first-child{padding: 0 0 10px;}
.watch-videobox {
  display: block;width: 100%;padding: 20px;background-color: #FFFFFF;
  border: 1px solid #BC8E1E;
  min-height: 400px;
  overflow: hidden;
}
.watch-videobox h4{margin:0 0 20px}
.video-slider .slick-prev, .video-slider .slick-next{
  display: block !important;
}
.watch-videobox .slider-box{
  display: block;
  padding: 50px 10px 0;
  max-width: 345px;
  width: 100%;
  margin:0 auto;
}
.watch-videobox .slider-box .slick-prev{
  left: -25px;
  background-image: url('../img/pre-arrow.svg');
}
.watch-videobox .slider-box .slick-next {
  right: -25px;
  background-image: url('../img/next-arrow.svg');
}
.watch-videobox .slider-box .slick-prev, .watch-videobox .slider-box .slick-next{
  color: #084F61;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  background-color: #FFF;
}
.slick-prev:before, .slick-next:before{
  display: none;
}
.watch-videobox .video-item{
  height: 193px;
  position: relative;
  background-color: #000000;
  max-width: 345px;
  width: 100%;
}
.watch-videobox .video-item video, .watch-videobox .video-item iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
/* Howard Coaching */
.howard-coaching{
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 30px 75px;  
}
.howard-coaching .title-box{display: block;text-align: center;margin-bottom: 30px;}
.howard-coaching .title-box h2{
  color: #084F61;
  margin-bottom: 10px;
}
.howard-coaching .title-box p{
  font-size: 20px;
  font-weight: 500;
}
.coaching-info{
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
.coaching-info .left-info{
  display: inline-block;
  max-width: 420px;
  border: 1px solid #BC8E1E;
  padding: 15px;
  position: absolute;
  left: 0;
  z-index: 1;
  background-color: #FFFFFF;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}
.coaching-info .left-info h6{
  color: #084F61;
  font-size: 24px;
  margin-bottom: 5px;
}
.coaching-info .right-info{
  padding: 50px 30px 50px 50px;
  border: 1px solid #084F61;
  width: calc(100% - 390px);
}
.coaching-info .right-info span{
  font-size: 16px;
  font-weight: bold;
  display: block;
}
.coaching-info .right-info .list-group ul{
  width: 49.3%;
  display: inline-block;
  vertical-align: top;
}
.coaching-info .right-info ul li{
  padding:0 10px 0 15px;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 16px;
}
.coaching-info .right-info ul li:before{
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #040404;
  border-radius: 100%;
  top: 9px;
}
.coaching-info .right-info .list-group{
  display: block;
}

.coaching-info .right-info .info{
  width: 100%;
  display: inline-block;
  margin-bottom: 8px;
}
.coaching-info .right-info .info label{
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 0;
}
/* ============================ 
=============================== Books */
.books-wrap .main-banner-wrap .banner-content .info .content{
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}
.books-wrap .main-banner-wrap .banner-content .info p{text-align: left;color: #FFFFFF;}

/* ============================ 
=============================== Speaking */
.topics-wrap h2{
  color: #084F61;
  margin-bottom: 30px;
  text-align: center;
}
.highlight-wrap{
  display: block;
  width: 95%;
  margin: 0 auto 35px;
}
.highlight-wrap h4{
  color: #BC8E1E;
  margin-bottom: 15px;
  font-size: 30px;
}
.highlight-wrap .content{
  border: 1px solid #084F61;
  padding: 20px;
  width: 100%;
}
.highlight-wrap .content p{
  margin-bottom: 5px;
}
.highlight-wrap .content ul{
  width: 100%;
  margin: 25px 0;
}
.highlight-wrap .content ul li{
  position: relative;
  width: 100%;
  padding-left:15px;
  font-weight: 500;
}
.highlight-wrap .content ul li:before
{
  content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #040404;
    border-radius: 100%;
    top: 9px;
}
.highlight-wrap .content .btn{margin-top: 15px;}
.topic-include{
  display: block;
  margin:0 0 30px;
}
.topic-include li{padding: 10px 0; border-bottom: 2px solid #BC8E1E;color: #084F61;font-weight: bold;}
/* ============================ 
=============================== Book landing */
.book-landing-wrap .join-newsletter-wrap{
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-book-wrap .info{display: block;text-align: center;width: 90%;margin:0 auto 50px;}
.about-book-wrap .info h2{
  color: #084F61;
  margin-bottom: 20px;
}
.about-book-wrap .info p{
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 26px;
}
/* Offers */
.order-offers {
  background-color: #084F61;
  padding: 40px 30px;
}
.order-offers .titlebox{text-align: center;margin-bottom: 50px;}
.order-offers .titlebox h2{color: #FFFFFF;margin-bottom: 15px;}
.order-offers .titlebox p{color: #FFF;}
.offerbox{
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  min-height: 280px;
}
.offerbox h4{color: #FFFFFF;margin-bottom: 10px;}
.offerbox h6{  color: #C7E6E1;font-size: 20px;margin-bottom: 10px;}
.offerbox p{color: #FFFFFF;}
/* ============================ 
=============================== Media */
.media-wrap .main-banner-wrap{
  background-color: #084F61;
  height: auto;
  width: 100%;
  align-items: center;
}
.media-wrap .main-banner-wrap .banner-content{padding: 0px 0;height: 530px;position: relative;width: 100%;}
.media-wrap .main-banner-wrap .banner-content .info{
  max-width: 420px; width: 100%; margin-left: 0;padding: 50px 25px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.media-wrap .main-banner-wrap .banner-content .info h5{
  line-height: 32px;
  text-align: left;
}
/* .media-wrap .main-banner-wrap .banner-content .videobox{
  width: calc(100% - 420px);
  height: 100%;
  max-width: inherit;
  margin: 0;
  position: relative;
} */
.media-wrap .main-banner-wrap .banner-content .videobox {
  width: calc(100% - 420px);
  height: 100%;
  max-width: inherit;
  margin: 0;
  position: absolute;
  right: 0;
}
.media-wrap .main-banner-wrap .banner-content .videobox video, .media-wrap .main-banner-wrap .banner-content .videobox iframe, .media-wrap .main-banner-wrap .banner-content .videobox img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  border: none;
}
.media-wrap .main-banner-wrap .banner-content .social-media-wrap{
  position: absolute;
  right: 20px;
}
.howard-in-media{
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.howard-in-media h2{
  text-align: center;
  color: #084F61;
  margin-bottom: 25px;
}
.howard-in-media .info{
  display: block;
  width: 100%;
}
.howard-in-media .info h6{
  color: #BC8E1E;
  margin-bottom: 20px;
}
.howard-in-media .info .videobox{
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 25px;
  background-color: #000;
}
/* .howard-in-media .info .videobox video{
  width: 100%;
} */
.howard-in-media .info .videobox iframe, .howard-in-media .info .videobox video{
  width: 100%;
  min-height: 216px;
  border:none;
}
.howard-in-media .imgbox{
  display: block;
  margin-bottom: 30px;
  cursor: pointer;
}
.howard-in-media .imgbox img{width: 100%;}
.howard-in-media .btnbox{
  display: block;
  text-align: center;
}
#more_posts, #more_post{
  width: auto !important;
  margin-bottom: 40px;
}
#more_posts:disabled, #more_posts[disabled], #more_post[disabled]  {
  display: none;
}
/* gallery-modal */
.modal-header h5{
  color: #084F61;
  font-size: 25px;
}
.gallery-modal .modal-body{
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal .imgbox{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.gallery-modal .imgbox img{
  width: 100%;
}
.gallery-modal .modal-footer{
  justify-content: center;
}
.gallery-modal .modal-footer .btn
{
  line-height: normal;
  min-height: 30px;
  padding: 8px 15px;
  width: 50px;
  border-radius: 4px;
}
/* Get In Touch */
.get-in-touch{
  background-color: #084F61;
}
.get-in-touch form{
  text-align: center;
  max-width: 815px;
  width: 100%;
  margin: 0 auto;
}
.get-in-touch form h2{color: #FFF;margin-bottom: 40px;}
.get-in-touch form .form-group { margin-bottom: 2rem;}
.get-in-touch form textarea{
  min-height: 375px;
  border-radius: 25px;
  padding: 20px;
  resize: none;
}
.get-in-touch .btnbox .btn{max-width: 396px;width: 100%;}
.howard-in-media .info .pagenation{margin-bottom: 35px;}
.pagenation{margin-bottom: 35px;display: flex;}
.pagenation .page-numbers{
  color: rgba(188,142,30,1) !important;
  border: 1px solid #BC8E1E !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
  width: 40px;
  line-height: initial;
  height: 35px;
}
.pagenation .page-numbers:first-child{
  border-radius: 25px 0 0 25px;
}
.pagenation .page-numbers:last-child{
  border-radius: 0 25px 25px 0;
}
.pagenation .page-numbers.next, .pagenation .page-numbers.prev{
  width: auto;
}
.pagenation .page-numbers.current{
  background-color: rgba(188,142,30,0.2);
    border-color: #BC8E1E;
    color: #BC8E1E;
}
.pagenation .page-numbers.current, .pagenation .page-numbers:hover {
  background-color: rgba(188,142,30,1);
  border-color: #BC8E1E;
  color: #FFFFFF !important;
}
/* ============================ 
=============================== Blogs */
.blog-nav-dropdown{display: none;}
.blog-categories-nav{
  display: block;
  text-align: center;
}
.blog-categories-nav .nav{
  justify-content: center;
}
.blog-categories-nav .nav li a{
  background-color: #838383;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  border-right: 2px solid #FFF;
  font-weight: bold;
  min-width: 180px;
  padding: .5rem 1rem;
}
.blog-categories-nav .nav li:first-child a{
  border-radius: 25px 0 0 25px;
} 
.blog-categories-nav .nav li:last-child a{
  border-radius: 0 25px 25px 0;
  border-right: none;
} 
.blog-categories-nav .nav li.active a, .blog-categories-nav .nav li:hover a {
  background-color: #BC8E1E;
}
.blog-categories-nav .close-btn{display: none;}
.blogs-wrap .main-banner-wrap .banner-content .info h5{
  text-align: left;
}
.blogs-wrap .blogs{
  padding: 30px 20px;
}
.blogbox{
  border: 1px solid #084F61;
  padding: 25px;
  margin-bottom: 25px;
}
.blogbox:hover .imgbox {
  opacity: 0.6;
}
.blogbox:hover .read-more{
  color: #084F61;
}
.blogbox h5{
  color: #010101;
  font-size: 22px;
  margin-bottom: 15px;
}
.blogbox .imgbox{
  width: 100%;display: block;
  margin-bottom: 15px;
}
.blogbox .imgbox img{width: 100%;}
.blogbox label{
  overflow: hidden;
  font-weight: 500;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 39px;
  min-height: 39px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: normal;
  text-align: left;
}
.blogbox h5
{
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 30px;
  min-height: 30px;
  margin-bottom: 10px;
  line-height: normal;
  text-align: left;
}
.blogbox h6
{
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 40px;
  min-height: 40px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: normal;
  text-align: left;
}
.blogbox p{
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 100px;
  min-height: 100px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 17px;
  text-align: left;
}
.blogbox .read-more{
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
}
.blogbox .read-more:hover{color:#084F61;border-bottom: 1px solid #084F61;} 
.blogbox .read-more em{margin-left: 3px;}
.pagination .page-link{
  color: rgba(188,142,30,1);
  border: 1px solid #BC8E1E;
}
.page-item.active .page-link, .page-link:hover{
  background-color: rgba(188,142,30,0.2);
  border-color: #BC8E1E;
  color: #BC8E1E;
}
/* ============================ 
=============================== Blog Details */
.blog-details h2{
  margin-bottom: 30px;
}
.blog-details h2 span{
  display: block;
  margin: 10px 0 0;
  color: rgba(8,79,97,0.3);
  font-size: 15px;
  line-height: normal;
}
.blog-details .imgbox{
  width: 100%;
  margin-bottom: 35px;
}
.blog-details p{
  margin-bottom: 15px;
}
.blog-details span{font-weight: bold;display: block;}
.blog-details .videobox{
  width: 100%;
  max-width: 500px;
  margin: 5px auto 20px;
}
/* ============================ 
=============================== Blog Result */

.blog-result-banner{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  min-height: 220px;
}
.blog-result-wrap .hm-search-form {
  background-color: #084F61;
  padding: 30px 20px 10px;
  margin-top: 0;
}
.blog-result .blogbox h6{
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 20px;
  min-height: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: normal;
}
.blog-result .blogbox p {
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-width: 100%;
  max-height: 52px;
  min-height: 52px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 17px;
}
.not-found-msg{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 70%;
  padding: 30px 20px;
  min-height: 350px;
  margin: 0 auto;
}
.not-found-msg img{
  margin: 0 auto 25px;
  width: 250px;
  height: auto;
  display: block;  
}
.not-found-msg h3{
  text-align: center;
}


/* Error Page */
.error-page 
{
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  /* background-image: url("../img/bgi/404-bg.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
}
.error-page img{
  margin-bottom: 20px;
  max-width: 250px;
}
.error-page h3{
  margin-bottom: 10px;
  color: #FFFFFF;
}
.error-page .page-content{
  max-width: 500px;
  background-color: #084F61;
  padding: 30px;
  border-radius: 8px;
}
.error-page .page-content p{
  margin-bottom: 15px;
  color: #FFF;
  font-weight: 600;
  text-align: center;
}
.error-page .page-content .input-group .input-group-text{
  background-color: #BC8E1E;
  border: 1px solid #BC8E1E;
  color: #FFF;
  font-weight: 600;
}
/* =End Main Content
--------------------------------------------------------------------------------------------------*/


/* =Secondary Content
--------------------------------------------------------------------------------------------------*/





/* End Secondary Content
--------------------------------------------------------------------------------------------------*/


/* =Footer
--------------------------------------------------------------------------------------------------*/
footer{
  background-color: #084F61;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
footer .footer-top{
  display: flex;
  width: 100%;
  text-align: center;
  font-size: 0;
  flex-wrap: wrap;
}
footer .footer-top .footer-nav{
  display: inline-block;
  text-align: center;
  vertical-align: top;
  padding: 0 10px 20px;
  min-width: 173px;
  font-size: 14px;
}
footer .footer-top .footer-nav h6{
  color: #BC8E1E;
  text-transform: uppercase;
  margin-bottom: 5px;
}
footer .footer-top .footer-nav  ul li a{
  font-size: 15px;
  line-height: 24px;
  color: #FFF;
  font-weight: 400;
  position: relative;
}
footer .footer-top .footer-nav ul li a:hover{
  border-bottom: 1px solid #BC8E1E;
}
.copyright-text{
  text-align: center;
  margin-top: 30px;
}
.copyright-text p{
  color: #BC8E1E;
  font-size: 11px;
  font-weight: 600;
}
.footer-bottom .imbbox{max-width: 155px;position: relative;top: -35px;left: 40px;}
.footer-bottom .imbbox, .footer-bottom .logo-img{
  display: block;
  margin-top: 15px;
}
/* End Footer
--------------------------------------------------------------------------------------------------*/


/* =Forms
--------------------------------------------------------------------------------------------------*/
::-webkit-input-placeholder { /* Chrome */
  color: #BC8E1E;
}
::-ms-input-placeholder { /* IE 10+ */
  color: #BC8E1E;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #BC8E1E;
  opacity: 1;
}
::-moz-placeholder { /* Firefox 4 - 18 */
  color: #BC8E1E;
  opacity: 1;
}
/* Removing fieldset borders (remove if you want to keep the defaults defined in Normalization) */
.form-control, .bootstrap-select>.dropdown-toggle{
  border: 1px solid #BC8E1E;
  height: 49px;
  border-radius: 50px;
  color: #BC8E1E;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 13px;
  background-color: #fff;
  text-transform: capitalize;
}
.form-control:focus
{
  color: #BC8E1E;
  background-color: #fff;
  border-color: #BC8E1E;
  outline: 0;
  box-shadow: none;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn)
{
  width: 100%;
}
.bootstrap-select .dropdown-item.active, .dropdown-item:active{
  color: #BC8E1E;
  text-decoration: none;
  background-color: #FFF;
}
.bootstrap-select .btn-light:not(:disabled):not(.disabled).active, .bootstrap-select .btn-light:not(:disabled):not(.disabled):active, .bootstrap-select.show>.btn-light.dropdown-toggle
{
  color: #BC8E1E;
  background-color: #FFF;
  border-color: #BC8E1E;
}
.bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle{
  outline: none !important;
  outline-offset:initial !important;
}






.cm-popup-box{
background: #BC8E1E;
min-height: 200px;
width: 100%;
padding:10px 0px 10px;
text-align: center;
margin-bottom:10px;
}

.cm-popup-box h2{
color: #FFF;
    line-height: 1.2;
    margin-bottom: 20px;
    font-size:28px;
}

.cm-popup-box a{
display: inline-block;
color:#FFF;
border: 2px solid #FFF;
font-size: 18px;
padding: 13px 30px;
}

.cm-popup-box a:hover{
color: #BC8E1E;
background:#FFF;
}

.cm-btn {
    font-size: 20px;
    min-width: 220px !important;
min-height: 23px !important;
}

.cmmt-5{
  margin-top:80px !important;
}
/* End Forms
--------------------------------------------------------------------------------------------------*/

/* =Tables
--------------------------------------------------------------------------------------------------*/

/* End Tables
--------------------------------------------------------------------------------------------------*/

/* =Modal style
--------------------------------------------------------------------------------------------------*/


/* End Modal
--------------------------------------------------------------------------------------------------*/


/* =Misc 2
--------------------------------------------------------------------------------------------------*/

/* End Misc 2
--------------------------------------------------------------------------------------------------*/


/* =Additional 1
--------------------------------------------------------------------------------------------------*/

/* End Additional 1
--------------------------------------------------------------------------------------------------*/


/* =Additional 2
--------------------------------------------------------------------------------------------------*/

/* End Additional 2
--------------------------------------------------------------------------------------------------*/




