/*-------------------------------------------------
>>>>>>>>>> 01. General CSS <<<<<<<<<<
---------------------------------------------------*/
 body {
     background: #ffffff;
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
     font-weight: 400;
     line-height: 26px;
     color: #000b1d;
     overflow-x: hidden;
}

/* Common CSS */
 h1, h2, h3, h4, h5, h6 {
     font-family: 'Poppins', sans-serif;
     color: #222222;
     line-height: 1.2;
     font-weight: 600;
     margin-top: 0;
     margin-bottom: 10px;
     padding: 0;
     text-transform: capitalize;
}
h1 {
  font-size: 40px;
  line-height: 60px;
}
h2 {
  font-size: 36px;
  line-height: 54px;
}
h3 {
  font-size: 28px;
  line-height: 42px;
}
h4 {
  font-size: 24px;
  line-height: 36px;
}
h5 {
  font-size: 20px;
  line-height: 30px;
}
h6 {
  font-size: 16px;
  line-height: 24px;
}
p {
     margin: 0;
     padding: 0;
}

 a {
     margin: 0;
     padding: 0;
     text-decoration: none;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 a:focus, a:hover {
     text-decoration: none;
     -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 ul {
     margin: 0;
     padding: 0;
}
 ul li {
     list-style-type: none;
     margin: 0;
     padding: 0;
}
 img {
     max-width: 100%;
     height: auto;
}
/* Form CSS */
 .form-control {
     height: 45px;
     margin-bottom: 30px;
     box-shadow: none;
     border: 1px solid #e4e4e4;
     -webkit-box-shadow: none;
     -moz-box-shadow: none;
     border-radius: 0px;
     -moz-border-radius: 0px;
     -webkit-border-radius: 0px;
}
 .form-control:focus {
     border-color: #999999;
     box-shadow: none;
     -webkit-box-shadow: none;
     -moz-box-shadow: none;
}
 ::-moz-selection {
    /* Code for Firefox */
     color: #ffffff;
     background: #43ad4f;
}
 ::selection {
     color: #ffffff;
     background: #43ad4f;
}
 ::-webkit-input-placeholder {
     color: #676767 !important;
}
 ::-moz-placeholder {
     color: #676767 !important;
}
 ::-o-placeholder {
     color: #676767 !important;
}
 :-ms-input-placeholder {
     color: #676767 !important;
}
 input:-moz-placeholder {
     color: #676767 !important;
}
.notification-bar form .form-control::-webkit-input-placeholder {
     color: #ffffff !important;
}
.notification-bar form .form-control::-moz-placeholder {
     color: #ffffff !important;
}
.notification-bar form .form-control::-o-placeholder {
     color: #ffffff !important;
}
.notification-bar form .form-control:-ms-input-placeholder {
     color: #ffffff !important;
}
.notification-bar form .form-control input:-moz-placeholder {
     color: #ffffff !important;
}
/* Background Over Layer CSS */
 .over-layer-black {
     position: relative;
}
 .over-layer-black:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     background-color: rgba(34, 34, 34, 0.8);
}
 .over-layer-white {
     position: relative;
}
 .over-layer-white:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     background-color: rgba(255, 255, 255, 0.8);
}
/* Section Title CSS */
 .my-title {
    text-align: center;
    margin-bottom: 40px;
}
 .my-title p {
    color: #43ad4f;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: -7px;
}
 .my-title h2 span {
    font-weight: 300;
}
.my-title h2 {
  font-size: 30px;
  line-height: 48px;
  margin-top: -10px;
  margin-bottom: 0;
  font-weight: 300;
  font-weight: bold;
}
.my-title img {
  margin-bottom: 10px;
}



/* Theme btn CSS */
 .theme-btn {
     display: inline-block;
     vertical-align: middle;
     position: relative;
     background: #43ad4f;
     border: none;
     font-size: 14px;
     line-height: 30px;
     font-weight: 600;
     text-transform: uppercase;
     padding: 10px 40px;
     -webkit-transition-property: color;
     transition-property: color;
     -webkit-transition-duration: 0.3s;
     transition-duration: 0.3s;
}
 .theme-btn i {
    font-size: 30px;
    position: relative;
    bottom: -5px;
 }
 .theme-btn:hover {
    background: #2ab856; 
}
 .theme-btn:before {
     content: "";
     position: absolute;
     z-index: -1;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
      border-radius: .25rem;
     background: #2ab856;
     -webkit-transform: scaleX(0);
     transform: scaleX(0);
     -webkit-transform-origin: 50%;
     transform-origin: 50%;
     -webkit-transition-property: transform;
     transition-property: transform;
     -webkit-transition-duration: 0.3s;
     transition-duration: 0.3s;
     -webkit-transition-timing-function: ease-out;
     transition-timing-function: ease-out;
}
 .theme-btn:hover, .theme-btn:focus, .theme-btn:active {
     color: #ffffff;
     box-shadow: none;
}
 .theme-btn:hover:before, .theme-btn:focus:before, .theme-btn:active:before {
     -webkit-transform: scaleX(1);
     transform: scaleX(1);
}
/* Preloader CSS */
 #preloader {
     position: fixed;
     left: 0;
     top: 0;
     z-index: 99999999;
     width: 100%;
     height: 100%;
     overflow: visible;
     background: #ffffff url("../images/preloader.svg") no-repeat center center;
}
/* Scroll To Top CSS Start */
 #dyscrollup-btn {
     z-index: 999999;
     position: fixed;
     bottom: 10px;
     right: 10px;
     cursor: pointer;
     display: none;
     color: #ffffff;
     text-align: center;
}
 #dyscrollup-btn:before {
     content: "\f0a6";
     font-family: FontAwesome;
     position: absolute;
     left: 0;
     bottom: 10px;
     color: #43ad4f;
     font-size: 45px;
}
/* Pagination CSS */
 .my-pagination {
     text-align: center;
     display: block;
}
 .my-pagination {
     margin-top: 50px;
     margin-bottom: 30px;
}
 .my-pagination .page-link {
      color: #000;
  padding: 10px;
  margin:2px;
  background: #f7fcff ;
  border:1px solid #ccc;
}
 .my-pagination .page-link:hover {
    background: #43ad4f;
    border-color: #43ad4f;
    color: #ffffff;
 }
 .my-pagination .page-item.active .page-link {
  color: #fff;
  padding: 10px;
  margin:2px;
  background: #ccc ;
  border:1px solid #ccc ;
}
/* Default Section Padding CSS */
 .default-section {
     padding: 100px 0 70px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 02. Header CSS <<<<<<<<<< 
--------------------------------------------------*/

@media (min-width: 767px) 
{
.header-area 
{
 background:#fff;  
}
}

/* For mobile devices */
@media (max-width: 767px) {
.header-area 
{
 background:#fff;  
}
}

/* For tablets */
@media (min-width: 768px) and (max-width: 991px) {
.header-area 
{
 background:#fff;  
}
}

/* For desktop devices */
@media (min-width: 992px) {
.header-area 
{
 background:#f8f8ff;  
}
}

.header-area 
{
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 2;
    
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-area .container-fluid 
{
padding: 0 150px;
}
/* Header Nav CSS Start */
.header-navbar 
{
   
}
.header-logo {
    padding-top: 28px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-logo img {
    width: 220px;
    height: auto;
}

.stellarnav ul {
    text-align: right;
}

.stellarnav>ul>li>a 
{
    color: #434345 !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 30px 10px;
    position: relative;
}

.stellarnav>ul>li.menu-item-has-children>a:before {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 55px;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.stellarnav.light {
  background: transparent;
}
.stellarnav>ul>li>a:hover {
    border-bottom-color: #43ad4f;
}
.stellarnav>ul>li.active>a {
    border-bottom-color: #43ad4f !important;
}
.stellarnav ul ul {
    border-radius: 4;
    border-top: 1px solid #43ad4f;
}
.stellarnav ul li ul li a {
    padding: 15px 15px;
    color: #434345;
    font-weight: 500;
    border-bottom: 1px solid #f6f6f6;
    text-transform: capitalize;
}




/* Nav Search CSS */
.nav-search-col {

}
.nav-search-col ul {
  padding: 0;
  margin: 0;
  margin-top: 25px;
  margin-right:-10px;
  text-align: right;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.nav-search-col ul li {
  display: inline-block;
  margin: 0 5px;
}
.nav-search-col ul li:first-child {
  margin-left: 0;
}
.var-bdr {
  width: 1px;
  height: 25px;
  background: #000b1d;
  display: block;
  margin-bottom: -8px;
}
.nav-search-col ul li a i {
  font-size: 20px;
  color: #000b1d;
}
.fixed-header .nav-search-col ul {
  margin-top: 5px;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-search-col .modal {
  background: rgba(31, 224, 117, 0.8);
}
.nav-search-col .modal .modal-content {
  border-radius: 0;
}
.nav-search-col .modal .modal-title {
  font-size: 18px;
  font-weight: 500;
}
.nav-search-col .modal .input-group-text {
  padding: 10px 15px;
}

/* Notification Bar CSS */
.notification-bar {
  position: fixed;
  right: -400px;
  top: 0;
  z-index: 999999;
  width: 400px;
  height: 100vh;
  background: #f6f6f6;
  padding: 50px 30px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.notification-bar.highlight {
  opacity: 1;
  visibility: visible;
  right: 0px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.notification-close {
  
}
.notification-close a i {
  font-size: 50px;
  color: #222222;
}
.notification-close a i:hover {
  color: #ffffff;
}
.notification-bar h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.notification-bar h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 0;
  width: 50px;
  height: 1px;
  background: #222222;
}
.notification-bar p {
  margin-bottom: 5px;
  color: #ffffff;
}
.notification-bar p i {
  margin-right: 5px;
}
.notification-bar form .form-control {
  background: transparent;
  border-color: #ffffff;
  margin-bottom: 10px;
  color: #ffffff;
}
.notification-bar form .theme-btn {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 6px 25px;
  height: 45px;
  border-radius: 0;
}
.notification-bar ul {
  padding: 0;
  margin: 0;
  text-align: left;
}
.notification-bar ul li {
  display: inline-block;
  margin: 0 5px;
}
.notification-bar ul li a i {
  color: #ffffff;
  font-size: 18px;
}
.notification-bar ul li a i:hover {
  color: #000b1d;
}





/* Header Top Bar CSS */
.header-topbar-area {
  background: #222222;
  padding: 10px;
  margin: auto;
}
.header-topbar-col {
  margin-bottom: 0px;
}
.header-topbar-col p {
  color: #ffffff;
}
.header-topbar-col p span {
  color: #43ad4f;
  margin-left: 5px;
}
.header-topbar-col ul {
  padding: 0;
  margin: 0;
  text-align: right;
}
.header-topbar-col ul li {
  display: inline-block;
  margin-left: 12px;
}
.header-topbar-col ul li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #ffffff;
  text-align: center;
  border-radius: 50%;
  color: #000b1d;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-topbar-col ul li i:hover {
  background: #43ad4f;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}





/*------------------------------------------------ 
    >>>>>>>>>> 03. Slider CSS <<<<<<<<<< 
--------------------------------------------------*/
.slider-area {
  padding: 300px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  height: 150vh;
  position: relative;
}
.slide-item p {
  color: #b3b3b3;
  font-size: 18px;
  font-weight: 500;
}
.slide-item h1 {
  font-size: 90px;
  line-height: 105px;
  margin-bottom: 20px;
}
.slide-item h1 span {
  font-weight: 200;
  
}
.slider-area .owl-theme .owl-nav {
  margin: 0 20px;
  margin-top: 0;
  display: inline-block;
  text-transform: uppercase;
  -ms-transform: rotate(-90deg); 
  -webkit-transform: rotate(-90deg); 
  transform: rotate(-90deg);
  position: absolute;
  left: -50px;
  bottom: -100px;
}
.slider-area .owl-theme .owl-nav [class*=owl-] {
  background: transparent;
  color: #000b1d;
  padding: 0;
  border-radius: 0;
  position: relative;
  margin: 0 10px;
}
.slider-area .owl-theme .owl-nav [class*=owl-]:before {
  content: "";
  position: absolute; 
  right: 0;
  top: 0;
  z-index: 0;
  height: 30px;
  width: 1px;
  background: #43ad4f;
}
.my-video {
  position: relative;
  top: 120px;
  left: 180px;
  z-index: 0;
}
.my-video p {
  position: absolute;
  left: 110px;
  top: 20px;
  z-index: 0;
  font-weight: bold;
  text-transform: capitalize;
}
.my-video p span {
  font-weight: normal;
}
.mysocial-links {
  position: absolute;
  right: 50px;
  bottom: 5px;
  z-index: 0;
}
.mysocial-links ul {
  margin: 0;
  padding: 0;
}
.mysocial-links ul li {
  display: inline-block;
  color: #43ad4f;
}
.mysocial-links ul li a {
  text-transform: capitalize;
  color: #43ad4f;
}
#html5-watermark {
    display: none !important;
}



/*------------------------------------------------ 
    >>>>>>>>>> 04. Hero CSS <<<<<<<<<< 
--------------------------------------------------*/
.hero-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  height: 100vh;
  position: relative;
}
.my-content {
  width: 100%;
  height: 100%;
  display: table;
}
.my-content-center {
  vertical-align: middle;
  display: table-cell;
}
.hero-col h1 {
  color: #ffffff;
  font-size: 90px;
  line-height: 105px;
  margin-bottom: 20px;
}
.hero-col h1 span {
  font-weight: 200;
}

/* Hero Two CSS */
.hero-two-area {
  padding: 265px 0 190px;
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-two-area h1 {
  color: #222222;
}




/*------------------------------------------------ 
    >>>>>>>>>> 05. Features CSS <<<<<<<<<< 
--------------------------------------------------*/
.features-area {
    
}
.features-area .my-title {
  margin-bottom: 100px;
}
.features-col {
  padding-left: 40px;
  border-left: 1px solid #dddddd;
}
.features-col img {
  margin-bottom: 20px;
  margin-top: 30px;
}
.features-col span {
  color: #909195;
  font-size: 12px;
}
.features-col h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.features-col i {
  font-size: 48px;
  color: #d8d8d8;
  position: relative;
  left: -50px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.features-col:hover i {
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.bdr-none {
  border: #EEEEEE !important;
}


/* Features Two CSS */
.features-two-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.features-two-col {
  margin-bottom: 30px;
}
.features-two-col img {
  margin-bottom: 20px;
  display: block;
}
.features-two-col h6 {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: #DEC777;
  display: inline-block;
  padding: 5px 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.features-two-col h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  text-transform: capitalize;
}
.features-two-col h3 span {
  font-weight: 300;
}
.features-two-col p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
}
.features-two-box {
  background: #F2F3F7;
  padding: 40px 30px;
  margin-bottom: 30px;
  position: relative;
}
.features-two-box h1 {
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: 0;
  font-size: 120px;
  opacity: 0.05;
}
.features-box-content {
  position: relative;
  padding-left: 100px;
}
.features-box-content img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-right: 1px solid #dddddd;
  padding-right: 15px;
  width: 75px;
  height: auto;
}
.features-box-content h5 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #262626;
  text-transform: capitalize;
  margin-bottom: 0;
}

/* Features CSS Start */
.features-three-area {
  padding-top: 30px;
}
.features-three-title {
  margin-bottom: 40px;
  text-align: center;
}
.features-three-title h2 {
  font-size: 36px;
  line-height: 48px;
}
.features-three-title h2 span {
  font-weight: 300;
}
.features-col {
  margin-bottom: 30px;
}
.features-three-col {
  text-align: center;
  padding: 20px;
  padding-bottom: 40px;
  margin-bottom: 30px;
  border: 1px solid #dddddd;
  position: relative;
}
.features-three-col img {
  margin-bottom: 40px;
  width: 100%;
  height: auto;
}
.features-three-col h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.features-three-col a i {
  font-size: 18px;
  color: #222222;
  padding: 12px 12px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
  position: absolute;
  right: 0;
  bottom: -20px;
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.features-three-col:hover a i {
  right: 20px;
  opacity: 1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}



/*------------------------------------------------ 
    >>>>>>>>>> 06. About CSS <<<<<<<<<< 
--------------------------------------------------*/
.about-area {

}
.about-area.default-section {
  padding-top: 0;
}
.about-col {
  margin-bottom: 30px; 
}
.about-col h6 {
  font-size: 14px;
  font-weight: 600;
  color: #43ad4f;
}
.about-col h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 200;
  margin-bottom: 20px;
}
.about-col h2 span {
  font-weight: bold;
}
.about-col p {
  margin-bottom: 30px;
}
.about-col .btn {

}


/*------------------------------------------------ 
    >>>>>>>>>> 07. About Two CSS <<<<<<<<<< 
--------------------------------------------------*/
.about-two-area.default-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}
.about-two-area.default-section .about-col img {
  display: block;
  margin-bottom: 30px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 08. Counter CSS <<<<<<<<<< 
--------------------------------------------------*/
.counter-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.counter-area.default-section {
  padding: 100px 0;
}
.counter-col h2 {
  font-size: 36px;
  line-height: 46px;
}
.counter-col .counter-subtitle {
  margin-bottom: 20px;
}
.counter-col .counter-subtitle p strong {
  font-size: 16px !important;
  font-weight: 500 !important;
}
.counter-col img {
  margin-top: 20px;
  margin-bottom: 30px;
  opacity: 0.5;
}
.counter-box {
  margin-bottom: 20px;
}
.counter {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.counter-box span {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.counter1 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.counter1:after {
  content: "$";
  position: absolute;
  right: 100%;
  top: 0;
}
.counter-box p {
  font-weight: 600;
  margin-top: 5px;
}
.call-to-ask {

}
.call-to-ask p {
  margin-bottom: 10px;
}
.call-to-ask p a {
  color: #e6b9fc;
}
.call-to-ask h5 {
  font-size: 22px;
  margin-bottom: 0;
}
.call-to-ask h5 span {
  font-weight: normal;
  text-transform: capitalize;
  padding: 0 10px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 09. Service CSS <<<<<<<<<< 
--------------------------------------------------*/
.service-area {
  background: #F2F3F7;
  padding:10px;
  margin:10px;
}
.service-area .default-section 
{
padding: 50px 0 50px;
}

.service-box 
{
padding: 15px;
width:auto;
background: #fff;
/*box-shadow: 0px 2px 3px #f6f6f6;*/
position: relative;
border-radius:4px;
border-color: transparent;
}

.service-box img 
{
width: 100%;
height: auto;
border-radius:3px;
border:0px;
}
.service-box .service-box-text 
{
  padding-right:20px;
  position: relative;
  margin-top:10px;
  padding: 10px;
  background:#f8f8ff ;
  border-radius:4px;
}
.service-box .service-box-text h5 
{
  color:#434345;
  font-size: 16px;
  font-weight:500;
  text-transform: capitalize;
  margin-bottom: 0;
  line-height:25px;
}

.service-box .service-box-text img 
{
  width: 52px;
  height: 52px;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 0;
}
.service-link i {
  position: absolute;
  right: 50px;
  bottom: -60px;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: #ffffff;
  text-align: center;
  color: #222222;
  font-size: 18px;
  line-height: 40px;
  box-shadow: 1px 0 13px rgba(0,0,0,0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-link i:hover {
  background: #43ad4f;
  color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-box:hover i {
  opacity: 1;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-area .owl-theme .owl-nav {
  margin-top: 50px;
}
.service-area .owl-theme .owl-dots .owl-dot.active span, 
.service-area .owl-theme .owl-dots .owl-dot:hover span {
  background: #E6B9FC;
}
.service-area .owl-theme .owl-dots .owl-dot span {
  background: #fff;
  border-radius: 0;
  margin: 0 5px;
}



/* Service Two CSS */
.service-two-area {
  position: relative;
}
.service-two-area .my-big-text {
  left: auto;
  right: 0;
}
.service-two-col {
  margin-bottom: 30px;
  padding: 30px 30px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.06);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.06);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.06);
  position: relative;
}
.service-two-col h3 {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 0;
  font-size: 36px;
  color: #c8ffea;
}
.service-two-col img {
  margin-bottom: 20px;
}
.service-two-col span {
  color: #909195;
  display: block;
}
.service-two-col h5 {
  margin-bottom: 0;
  margin-top: 10px;
}
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #43ad4f;
  padding: 30px 30px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-two-col:hover .service-overlay {
  opacity: 1;
  z-index: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.06);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.06);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.06);
}
.service-overlay span {
  color: #ffffff;
}
.service-overlay h5 {
  color: #ffffff;
}
.service-overlay p {
  margin-top: 15px;
  color: #ffffff;
}

/* Service Inner CSS */
.service-inner-area {
  padding: 100px 0;
}
.inner-service-two {
  padding: 100px 0;
}
.inner-service-two .features-three-area {
  padding-top: 0;
}

/* Service Details CSS */
.service-details-area {
  padding: 70px 0 70px;
}
.service-sidebar-col {
  margin-bottom: 30px;
}
.service-details-col {
  margin-bottom: 30px;
}
.service-details-col a{
	color:#39a851;
}
.service-details-col img {
  margin-bottom: 50px;
}
.service-details-col h4 {
  margin-bottom: 20px;
}
.service-details-col p {
  margin-bottom: 40px;
}
.servay-col h4 {
  margin-bottom: 30px;
}
.service-catagory {
  
}

.service-catagory h4{
    background: #43ad4f;
    color:#f6f6f6;
  padding-bottom: 10px;
  padding-top: 10px;
  display: block;
 font-weight:400;
  margin-bottom: 2px;
  position: relative;
}
.service-catagory ul li a {
  color: #222222;
  background: #f8f8ff;
  padding: 15px 20px 15px 40px;
  display: block;
  margin-bottom: 2px;
  position: relative;
}
.service-catagory ul li .active {
  color: #fff;
  background: #43ad4f;
  padding: 15px 20px 15px 40px;
  display: block;
  font-weight:400;
  margin-bottom: 2px;
  position: relative;
}


.service-catagory ul li a:hover {
  background: #43ad4f;
  color: #ffffff;
}
.service-catagory ul li a:before {
  content: "\ea94";
  font-family: FontAwesome;
  color: #222222;
  font-size: 18px;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 0;
}
.service-catagory ul li a:hover:before {
  color: #ffffff;
}
.sidebar-testimonial {
  margin-top: 50px;
}
.sidebar-testimonial h3 {
  margin-right: 20px;
}
.sidebar-testimonial h4 {
  margin-right: 20px;
    color: #fff;
  background: #43ad4f;
  padding: 15px 20px 15px 40px;
  display: block;
 font-weight:400;
  margin-bottom: 2px;
  position: relative;
}
.sidebar-testimonial .testimonial-item {
  padding: 0;
}
.sidebar-testimonial .testimonial-item .testimonial-para {
  padding: 0;
}
.sidebar-testimonial .testimonial-item .testimonial-para i {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 20px;
}
.sidebar-testimonial .testimonial-item .testimonial-para p {
  color: #222222;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
}
.sidebar-testimonial .testimonial-item .testimonial-img {
  padding-left: 100px;
}
.sidebar-testimonial .testimonial-item .testimonial-img img {
  width: 90px;
}
.sidebar-testimonial .testimonial-item .testimonial-img h6 {
  padding-top: 10px;
}
.sidebar-testimonial .my-stars {
  padding: 0;
}
.sidebar-testimonial .testimonial-item .testimonial-img p {
  padding-left: 0;
}
.sidebar-testimonial .testimonial-item .testimonial-img p:before {
  display: none;
}
.download-box {
  background: #222222;
  padding: 40px 40px 50px;
  margin-top: 50px;
}
.download-box h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 10. Testimonial CSS <<<<<<<<<< 
--------------------------------------------------*/
.testimonial-area {
  position: relative;
}
.testimonial-area.default-section {
  padding: 100px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.my-big-text {
  position: absolute;
  top: 150px;
  left: 400px;
  z-index: 0;
}
.my-big-text h1 {
  color: #43ad4f;
  font-size: 200px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.1;
}
.testimonial-col h3 {
  font-size: 36px;
  margin-top: -8px;
  margin-bottom: 30px;
}
.testimonial-col h3 span {
  font-weight: 300;
}
.testimonial-item {
  padding-bottom: 20px;
}
.testimonial-item .testimonial-para {
  position: relative;
  padding-left: 50px;
}
.testimonial-item .testimonial-para i {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  font-size: 36px;
  color: #d9d9d9;
}
.testimonial-item .testimonial-para p {
  font-size: 22px;
  line-height: 40px;
  font-weight: 200;
  font-style: italic;
  color: #222222;
  margin-bottom: 30px;
}
.testimonial-item .testimonial-img {
  position: relative;
  padding-left: 150px;
}
.testimonial-item .testimonial-img img {
  width: 125px;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 50%;
}
.testimonial-item .testimonial-img h6 {
  color: #222222;
  padding-top: 30px;
}
.testimonial-item .testimonial-img p {
  position: relative;
  padding-left: 30px;
}
.testimonial-item .testimonial-img p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  z-index: 0;
  width: 20px;
  height: 2px;
  background: #DEC777;
}
.my-stars {
  padding-left: 30px;
}
.my-stars i {
  color: #43ad4f;
}
.testimonial-area .owl-theme .owl-dots, .testimonial-area .owl-theme .owl-nav {
  text-align: left;
  margin-top: 20px;
}
.testimonial-area .owl-theme .owl-dots .owl-dot.active span, 
.testimonial-area .owl-theme .owl-dots .owl-dot:hover span {
    background: #43ad4f;
}
.testimonial-area .owl-theme .owl-dots .owl-dot span {
    background: #222222;
    border-radius: 0;
    margin: 0 5px;
}


/* Testimonial Two CSS */
.testimonial-two-area {
  position: relative;
  background: #F2F3F7;
  padding: 100px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.testimonial-two-item {
  text-align: center;
}
.testimonial-two-item p {
  font-size: 22px;
  font-weight: 300;
  line-height: 40px;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-two-item .testimonial-person {
  border-radius: 50%;
}
.testimonial-two-item img {
  width: auto !important;
  margin: 0 auto;
  margin-bottom: 10px;
}
.testimonial-two-area .owl-theme .owl-nav [class*=owl-] {
  padding: 0;
  border-radius: 0;
  color: #3C4767;
  font-size: 80px;
  background: none;
}
.testimonial-two-area .owl-theme .owl-nav [class*=owl-]:hover {
  color: #43ad4f;
}
.testimonial-two-area .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: 50%;
}
.testimonial-two-area .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  top: 50%;
}

/* Testimonial Three CSS */
.testimonial-three-area {

}
.testimonial-three-area .testimonial-col h3 {
  color: #ffffff;
}
.testimonial-three-area .testimonial-col p {
  color: #ffffff;
}
.testimonial-three-area .testimonial-col h6 {
  color: #ffffff;
}
.testimonial-three-area .owl-theme .owl-dots .owl-dot span {
  background: #949494;
}




/*------------------------------------------------ 
    >>>>>>>>>> 11. Case Studies CSS <<<<<<<<<< 
--------------------------------------------------*/
.case-studies-area {
    position: relative;
}
.case-studies-area.default-section {
  padding: 100px 0 0;
  background: #F7F7F7;
}
.case-studies-area .my-big-text {
  top: 70px;
}
.case-studies-col {
  position: relative;
  overflow: hidden;
}
.case-studies-content {
    padding: 0 60px;
    background: rgba(34,34,34,0.8);
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.case-studies-col:hover .case-studies-content {
   height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.content-center {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  padding: 0 50px;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.case-studies-col:hover .content-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.case-studies-content p {
  color: #ffffff;
  margin-bottom: 30px;
}
.case-studies-title {
  padding: 30px 80px 30px 40px;
  background: #F7F7F7;
  border-right: 1px solid #e8e8e8;
}
.case-studies-title h4 {
  margin-bottom: 0;
  color: #222222;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  text-transform: capitalize;
}
.case-studies-title h4 a {
  color: #222222;
}

/* Case Studies Two CSS*/
.case-studies-two-area {
  position: relative;
  padding-top: 0;
}
.case-studies-two-area .my-big-text {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.case-studies-two-area .my-title {
  position: relative;
}
.case-studies-two-area .my-title a {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  color: #222222;
  text-transform: uppercase;
}
.case-studies-two-area .my-title a:hover {
  color: #43ad4f;
}
.case-studies-two-area .my-title a i {
  font-size: 20px;
  position: relative;
  top: 2px;
}
.case-studies-two-area .case-studies-col {
  margin-bottom: 30px;
}
.tab {
  position: relative;
  overflow: hidden;
}
.tabs {
  display: table;
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
}
.tab-nav {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}
.tab-nav li {
  display: inline-block;
  margin-right: 60px;
}
.tab-nav li a {
  color: #222222;
  border-bottom: 2px solid transparent;
}
.tab-nav li a:hover {
  border-bottom: 2px solid #dddddd;
}
.tab-nav li.current a {
  border-bottom: 2px solid #dddddd;
}
.current a {
  color: #222222;
}
.tabs_item {
  display: none;
}
.tabs_item.active {
  display: block;
}
.case-studies-inner-area {
  
}
.pt-100 {
  padding-top: 100px;
}

/* Case Studies Inner CSS */
.case-studies-inner-area {
  padding: 100px 0;
}
.case-studies-inner-two.default-section {
  padding: 100px 0;
}



/* Case Details CSS */
.case-details-area.default-section {
  padding: 100px 0 90px;
}
.case-details-col img {
  margin-bottom: 50px;
}
.case-info-box {
  margin-bottom: 30px;
}
.case-info-box h5 {
  font-size: 18px;
  color: #43ad4f;
}
.case-para {
  margin-top: 20px;
  margin-bottom: 50px;
}
.case-para h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.servay-text h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.servay-text ul {
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
.servay-text ul li {
  display: inline-block;
  margin-right: 10px;
}
.servay-text ul li.shire-text {
  margin-right: 20px;
}
.servay-text ul li a i {
  color: #222222;
}
.servay-text ul li a i:hover {
  color: #43ad4f;
}






/*------------------------------------------------ 
    >>>>>>>>>> 12. Blog CSS <<<<<<<<<< 
--------------------------------------------------*/
.blog-area {

}
.blog-title-col {
  margin-bottom: 30px;
}
.blog-title-col h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
.blog-title-col p {
  margin-bottom: 30px;
}
.blog-title-col p a {
  color: #dec777;
}
.blog-box {
  margin-bottom: 30px;
}
.blog-box-content {
  padding: 25px 30px;
  box-shadow: 0 0 10px rgba(3, 169, 245, 0.2);
}
.blog-box-content h4 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
.blog-box-content h4 a {
  color: #222222;
}
.blog-box-content h4 a:hover {
  color: #43ad4f;
}
.blog-box-content ul {
  margin: 0;
  padding: 0;
}
.blog-box-content ul li {
  display: inline-block;
  margin-right: 15px;
}
.blog-box-content ul li i {
  margin-left: 5px;
  color: #222222;
  font-size: 12px;
}
.blog-box-content ul li a {
  font-size: 12px;
  color: #222222;
  text-transform: capitalize;
}
.blog-box-content ul li a:hover {
  color: #43ad4f;
}


/* Blo Two CSS */
.blog-two-area {
  background: #F2F3F7;
}
.blog-two-col {
  margin-bottom: 30px;
  box-shadow: 0 0 40px rgba(3, 169, 245, 0.2);
}
.blog-two-content {
  padding: 40px 30px;
}
.blog-two-content h4 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
.blog-two-content h4 a {
  color: #222222;
}
.blog-two-content ul {
  padding: 0;
  margin: 0;
}
.blog-two-content ul li {
  display: inline-block;
  margin-right: 15px;
}
.blog-two-content ul li i {
  margin-left: 5px;
  color: #222222;
  font-size: 12px;
}
.blog-two-content ul li a {
  font-size: 12px;
  color: #222222;
  text-transform: capitalize;
}
.without-img-blog .blog-two-content {
  padding: 70px 30px;
}
.without-img-blog .blog-two-content ul {
  margin-bottom: 20px;
}


/* Blog full Width CSS */
.blog-full-wd-area {
  
}
.blog-full-wd-box {
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0 5px rgba(3, 169, 245, 0.2);
  box-shadow: 0 0 5px rgba(3, 169, 245, 0.2);
}
.blog-full-wd-box img{
  width:100%;  
}
.blog-content-box {
  padding: 10px;
  padding-left:-20px;
}
.blog-content-box h4 {
  font-size: 16px;
  font-weight: 400px;
  text-transform: capitalize;
}
.blog-content-box ul {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.blog-content-box ul li {
  display: inline-block;
  margin-right: 15px;
}
.blog-content-box ul li a {
  color: #222222;
}
.blog-content-box ul li a:hover {
  color: #1de37e;
}
.blog-content-box ul li i {
  margin-right: 5px;
}
.blog-content-box p {
  margin-bottom: 15px;
}
.ream-more {
  color: #1de37e;
  text-transform: capitalize;
}
.ream-more:hover {
  color: #1de37e;
}
.ream-more i {
  font-size: 30px;
  position: relative;
  bottom: -6px;
  left: -5px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.ream-more:hover i {
  left: 10px;
  opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-full-wd-area .my-pagination {
  margin-top: 0;
}



/* Bolg Side CSS */
.sidebar-col {
  
}
.sidebar-col h3 {
  font-size: 24px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.sidebar-col h3 span {
  font-weight: 200;
}
.widget_search {
  margin-bottom: 50px;
}
.widget_search .input-group-text {
  background: #1DE37E;
  padding: 5px 15px;
}
.widget_search .input-group-text i {
  color: #ffffff;
}
.widget_search .input-group {
  height: 45px;
}
.widget_categories {
  margin-bottom: 50px;
}
.widget_categories ul li {
  position: relative;
  padding-left: 20px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.widget_categories ul li:hover {
  padding-left: 25px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.widget_categories ul li:before {
  content: "\ea7c";
  font-family: IcoFont;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  color: #222222;
}
.widget_categories ul li {
  margin-bottom: 15px;
}
.widget_categories ul li a {
  color: #222222;
  display: block;
}
.widget_categories ul li a span {
  float: right;
}
.recent-post-widget {
  margin-bottom: 50px;
}
.recent-post-widget .post {
  margin-bottom: 25px;
}
.recent-post-widget .post a {
  color: #333333;
  font-weight: 600;
}
.recent-post-widget .post p a {
  color: #1de37e;
  font-weight: normal;
}
.widget_tag_cloud {
  margin-bottom: 30px;
}
.widget_tag_cloud ul {
  margin-top: 35px;
}
.widget_tag_cloud ul li {
  display: inline-block;
  margin: 0 5px 22px 0;
}
.widget_tag_cloud ul li a {
  background: #222222;
  color: #ffffff;
  padding: 10px 20px;
}
.widget_tag_cloud ul li a:hover {
  background: #1DE37E;
}

/* Blog Details CSS */
.blog-details-area {
  
}
.blog-details-col .blog-full-wd-box {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}
.blog-details-col .blog-content-box {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.hilight-text {
  padding: 50px 30px;
  background: #F7F7F7;
  border-left: 3px solid #1DE37E;
  margin-bottom: 40px;
}
.hilight-text p {
  font-size: 16px;
  font-style: italic;
  color: #8c8c8c;
}
.blog-details-separator {
  margin-bottom: 30px;
}
.blog-details-separator-col {
  margin-bottom: 30px;
}
.blog-details-separator-col img {
  width: 100%;
  height: auto;
}
.tagbar {
  padding: 15px 0 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.tagbar-col {
  margin-bottom: 15px;
  display: block;
}
.tagbar-col p {
  color: #9ca6a9;
}
.tagbar-col p i {
  margin-right: 5px;
}
.tagbar-col p a {
  color: #2f3f5c;
  margin-left: 5px;
}
.tagbar-col ul {
  padding: 0;
  margin: 0;
}
.tagbar-col ul li {
  display: inline-block;
}
.tagbar-col ul li a {
  padding: 8px 15px 8px 45px;
  border-radius: 30px;
  background: #E6E7E9;
  margin-right: 5px;
  position: relative;
  color: #555555;
}
.tagbar-col ul li:last-child a {
  padding: 0;
}
.tagbar-col ul li a i {
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  line-height: 35px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  color: #ffffff;
}
.tagbar-col ul li:last-child a i {
  top: -8px;
}
.social-bg-1 {
  background: #3B5998;
}
.social-bg-2 {
  background: #2BA9E1;
}
.social-bg-3 {
  background: #DD4B39;
}
.social-bg-4 {
  background: #CB2027;
}
.social-bg-5 {
  background: #45A147;
}
.linkbar {
  margin-top: 60px;
  padding-bottom: 20px;
}
.linkbar .linkbar-col {
  text-align: center;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 30px;
}
.linkbar .linkbar-col p a {
  text-transform: uppercase;
  font-weight: 600;
  color: #8992a2;
}
.linkbar .linkbar-col p a:hover {
  color: #1de37e;
}
.linkbar .linkbar-col p a i {
  margin-left: 5px;
  color: #8992a2;
}
.author-box { 
  background: #FBFBFB;
  padding: 40px 35px;
  padding-left: 180px;
  position: relative;
  border-bottom: 1px solid #dddddd;
  margin-top: 60px;
  margin-bottom: 50px;
}
.author-box img {
  position: absolute;
  left: 35px;
  top: 50px;
  z-index: 0;
}
.author-box h5 {
  color: #2f3f5d;
  font-size: 16px;
}
.author-box h5 a {
  color: #1de37e;
  font-size: 13px;
  float: right;
}
.author-box h5 a i {
  margin-left: 10px;
}
.edit-btn {
  background: #222222;
  font-size: 13px;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  position: absolute;
  top: -20px;
  left: 35px;
  z-index: 0;
}
.edit-btn:hover {
  color: #ffffff;
}
.edit-btn i {
  margin-right: 5px;
}
.my-bdr {
  border-top: 1px solid #dddddd;
  margin-bottom: 20px;
}
.blog-box {
  position: relative;
}
.blog-box .edit-btn {
  left: 0;
  top: 0;
  position: relative;
}
.realted-post {
  margin-bottom: 30px;
}
.comments-col {

}
.comments-col .edit-btn {
  left: 0;
  top: 0;
  position: relative;
}
.top-space {
  margin-top: 30px;
}
.comment-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 50px;
}
.comment-item img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.comment-item h6 {
  font-size: 14px;
  font-weight: 500;
}
.comment-item h6 a {
  color: #c9cbcf;
  margin-left: 30px;
  font-weight: normal;
}
.comment-item .comment-info {
  margin-top: 20px;
}
.comment-item .comment-info a {
  padding: 8px 15px;
  background: #EDEFF1;
  border-radius: 5px;
  color: #8992a2;
  margin-right: 10px;
}
.comment-item .comment-info a i {
  margin-right: 5px;
}
.left-space {
  margin-left: 70px;
}
.left-space-two {
  margin-left: 140px;
}
.load-btn {
  font-size: 14px;
  color: #222222;
  background: transparent;
  border: 1px solid #dddddd;
  padding-top: 15px;
  padding-bottom: 15px;
}
.load-btn:hover {
  color: #ffffff;
  background: #43ad4f;
  border-color: #43ad4f;
}
.commetns-filds {
  border-top: 1px solid #dddddd;
  margin-top: 30px;
  padding-top: 50px;
}
.commetns-filds .edit-btn {
  position: relative;
  left: 0;
  top: 0;
  z-index: 0;
}
.commetns-filds-col .form-control {
  margin-bottom: 10px;
}
.commetns-filds-col .theme-btn {
  padding: 5px 10px 10px;
  background: #000000;
}
.commetns-filds-col .theme-btn i {
  font-size: 20px;
}
.my-bottom-space {
  margin-bottom: 50px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 13. Booking CSS <<<<<<<<<< 
--------------------------------------------------*/
.booking-area {
  padding: 75px 0;
   z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.booking-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(34,34,34,0.8);
}
.booking-area:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 50%;
  height: 100%;
  background: #43ad4f;
}
.booking-col h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 46px;
  text-transform: capitalize;
  font-weight: 600;
  padding-right: 150px;
  margin-bottom: 0;
}
.booking-col h2 span {
  color: #43ad4f;
}
.booking-col .theme-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  border: 1px solid #ffffff;
  margin-top: 20px;
}


/*------------------------------------------------ 
    >>>>>>>>>> 14. Welcome CSS <<<<<<<<<< 
--------------------------------------------------*/
.welcome-area {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.welcome-col {
  margin-bottom: 30px;
}
.welcome-col h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.welcome-col h2 span {
  color: #43ad4f;
}
.welcome-col h6 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}
.welcome-col h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
.welcome-col h3 span {
  font-weight: 200;
}
.welcome-text-box {
  margin-bottom: 30px;
}
.welcome-text-box h4 {
  text-transform: capitalize;
  font-weight: 600px;
  font-size: 20px;
  letter-spacing: 1px;
}






/*------------------------------------------------ 
    >>>>>>>>>> 15. Separator CSS <<<<<<<<<< 
--------------------------------------------------*/
.separator-area {
  padding: 100px 0;
  position: relative;
}
.separator-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(33,36,50,0.9);
}
.separator-col {
  text-align: center;
}
.separator-col h4 {
  color: #ffffff;
  font-size: 30px;
  line-height: 50px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: -7px;
}
.separator-col p {
  color: #ffffff;
  margin-bottom: 25px;
}




/*------------------------------------------------ 
    >>>>>>>>>> 16. Team CSS <<<<<<<<<< 
--------------------------------------------------*/
.team-area {
  padding: 100px 0;
}
.team-item {
  position: relative;
  overflow: hidden;
}
.team-overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(230,185,252,0.9);
  opacity: 0;
  -webkit-transition: all .6s ease-out;
  -moz-transition: all .6s ease-out;
  transition: all .6s ease-out;
}
.team-item:hover .team-overlay {
  opacity: 1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.team-item img {
  width: 100%;
  height: auto;
}
.team-content {
  width: 100%;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  bottom: 100px;
  z-index: 0;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); 
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.team-item:hover .team-content {
  bottom: 40px;
  opacity: 1;
  -webkit-transition: all .6s ease-out;
  -moz-transition: all .6s ease-out;
  transition: all .6s ease-out;
}
.team-content h4 {
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
}
.team-content p {
  color: #ffffff;
  margin-bottom: 10px;
}
.team-content ul {
  padding: 0;
  margin: 0;
}
.team-content ul li {
  display: inline-block;
  margin: 0 8px;
}
.team-content ul li i {
  color: #ffffff;
  font-size: 18px;
}
.team-content ul li i:hover {
  color: #000000;
}
.team-area .owl-theme .owl-nav [class*=owl-] {
  padding: 0;
  border-radius: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 50px;
  background: none;
  width: 65px;
  height: 50px;
  background: #43ad4f;
}
.team-area .owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
}
.team-area .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: -100%;
  top: 50%;
  margin-top: -25px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-area .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: -100%;
  top: 50%;
  margin-top: -25px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-area:hover .owl-carousel .owl-nav .owl-next {
  right: 0;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-area:hover .owl-carousel .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Team Three CSS */
.team-two-area 
{
  padding-top: 100px;
}
.team-two-area .my-title 
{
  padding-left: 10px;
}
.team-two-area .my-title span 
{
  display: block;
  margin-bottom: 20px;
  margin-top: 10px;
}
.team-two-area .owl-theme .owl-nav 
{
  display: none;
}
.team-area-inner 
{
  padding: 100px 0 20px;
}
.mb-30 
{
  margin-bottom: 30px;
}


/* Team Inner Page CSS */
.team-inner-page 
{
  padding: 100px 0;
}
.team-item {

}



/*------------------------------------------------ 
    >>>>>>>>>> 17. Partner CSS <<<<<<<<<< 
--------------------------------------------------*/
.partner-area.default-section {
    padding: 80px 0 50px;
    border-bottom: 1px solid #f1f1f1;
    margin-top: 50px;
}
.partner-col {
  margin-bottom: 30px;
  text-align: center;
}

.partner-col a img:hover {
  opacity: 1;
}



/*------------------------------------------------ 
    >>>>>>>>>> 18. Support CSS <<<<<<<<<< 
--------------------------------------------------*/
.support-area {

}
.support-col {

}
.support-form-box {
  background: #FAFAFA;
  padding: 50px 100px;
}
.support-form-box-col {
  margin-bottom: 30px;
}
.support-form-box-col h2 {
  font-size: 36px;
  color: #1de37e;
  margin-bottom: 20px;
  margin-top: 50px;
}
.support-form-box-col h2 span {
  color: #222222;
  font-weight: 200;
}
.support-form-box .form-control {
  border-color: #f1f1f1;
  margin-bottom: 10px;
  resize: none;
}
.support-form-box .theme-btn {
  margin-top: 20px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 19. Titlebar CSS <<<<<<<<<< 
--------------------------------------------------*/
.titlebar-area {
  padding: 180px 0 60px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.titlebar-col {
  text-align: center;
}
.titlebar-col h1 {
  font-size: 30px;
  line-height: 35px;
  color: #ffffff;
}
.titlebar-col p {
  color: #ffffff;
  margin-top:20px;
}
.titlebar-col p a {
  color: #ffffff;
  margin: 0 5px;
}
.titlebar-col p a:hover {
  color: #43ad4f;
}

@media (max-width: 767px) {
    
.titlebar-area {
  padding: 205px 0 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.titlebar-col {
  text-align: center;
}
.titlebar-col h1 {
  font-size: 25px;
  line-height: 30px;
  color: #ffffff;
}
.titlebar-col p {
  color: #ffffff;
   margin-top:20px;
}
.titlebar-col p a {
  color: #ffffff;
  margin: 0 5px;
}
.titlebar-col p a:hover {
  color: #43ad4f;
}    
}

/*------------------------------------------------ 
    >>>>>>>>>> 20. FAQ CSS <<<<<<<<<< 
--------------------------------------------------*/
.faq-area {
  padding: 100px 0;
}
.faq-area h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}
.faq-area h2 span {
  font-weight: 300;
}
.faq-col {
  
}
.tab-body-1 {
  display: block;
}
.tab-body-2 {
  display: none;
}
.tab-body-3 {
  display: none;
}
.accordion_container {
  width: 100%;
}
.accordion:hover{
background: #F8F8F8;
color: #222222;	
}
.accordion_head {
  padding: 20px 30px 20px 50px;
  cursor: pointer;
  background-color: #F8F8F8;
  margin-bottom: 10px;
}
.accordion_head h5 {
  font-size: 16px;
  color: #222222;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
}
.accordion_head h5:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 8px;
  z-index: 0;
  width: 15px;
  height: 1px;
  background: #222222;
}
.accordion_body {
  border: 1px solid #F8F8F8;
  padding: 30px 30px;
  margin-bottom: 10px;
}
.accordion_body p {

}
.plusminus {
  float: right;
  position: relative;
  top: -20px;
  font-size: 20px;
}




/*------------------------------------------------ 
    >>>>>>>>>> 21. Error CSS <<<<<<<<<< 
--------------------------------------------------*/
.error-area {
  padding: 100px 0;
}
.error-col {
  text-align: center;
}
.error-col h1 {
  font-size: 220px;
  line-height: 220px;
  color: #43ad4f;
  margin-top: -40px;
  margin-bottom: 0;
}
.error-col h5 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
}
.error-col p {
  font-size: 18px;
  margin-bottom: 30px;
}
.error-col .input-group>.form-control {
  height: 80px;
  background: #F2F2F2;
  border: none;
  padding-left: 30px;
}
.error-col .input-group-text {
  background: #43ad4f;
  padding: 20px 50px;
  border: none;
}
.error-col .input-group-text i {
  color: #ffffff;
  font-size: 30px;
}



/*------------------------------------------------ 
    >>>>>>>>>> 22. Contact CSS <<<<<<<<<< 
--------------------------------------------------*/
#map {
  height: 500px;
}
.contact-area {
  
}
.contact-col {
  margin-bottom: 30px;
}
.contact-form-box {
  padding: 50px 30px;
  background: #f8f8ff;
  border-radius:10px;
  border: 2px solid #DBE2E8;
  box-shadow: 0px 2px 3px #f2f2f2;
}
.contact-form-box h2 {
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 20px;
}
.contact-form-box h2 span {
  font-weight: 200;
}
.contact-form-box img {
  margin-bottom: 30px;
}
.contact-form-box .theme-btn {
  padding: 12px 25px 12px;
}
.contact-info-box {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
}
.contact-info-box i {
 
  
  top: 0;
  z-index: 0;
  font-size: 40px;
  color: #989898;
}
.contact-info-box h4 {
  font-size: 18px;
}
/*------------------------------------------------ 
    >>>>>>>>>> 23. Footer CSS <<<<<<<<<< 
--------------------------------------------------*/
.footer-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-area.default-section {
  padding-bottom: 0;
}
.footer-area .widget {

}
.footer-area .widget-title {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.footer-about p {
  color: #ffffff;
}
.footer-about img {
  margin-bottom: 40px;
}
.footer-info {
  margin-top: 15px;
}
.footer-info h6 {
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
}
.footer-info p {
  font-size: 14px;
  color: #ababab;
  margin-bottom: 5px;
}
.footer-links {

}
.footer-links ul {
  margin: 0;
  padding: 0;
}
.footer-links ul li {
  color: #ababab;
  margin-bottom: 15px;
}
.footer-links ul li:hover {
  color: #ffffff;
}
.footer-links ul li a {
  margin-left: 5px;
  color: #ababab;
}
.footer-links ul li a:hover {
  color: #ffffff;
}
.my-post {

}
.post {
  position: relative;
  padding-left: 105px;
  margin-bottom: 20px;
}
.post img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.post a {
  color: #ababab;
  position: relative;
  top: -5px;
}
.post p {
  color: #ffffff;
  margin-top: 5px;
  position: relative;
  top: -5px;
}
.copyright {
  padding: 30px 0 20px;
  border-top: 1px solid #303030;
  margin-top: 20px;
}
.copyright-col {
  margin-bottom: 10px;
  text-align: right;
}
.copyright-col p {
  font-size: 11px;
  color: #ffffff;
}
.copyright-col p a {
  color: #43ad4f;
}
.copyright-col ul {
  margin: 0;
  padding: 0;
  text-align: left;
}
.copyright-col ul li {
  display: inline-block;
  margin-left: 10px;
}


.plan {
    background: ghostwhite;
    text-align: left;
    padding: 10px;
	border-radius:8px;
}

.homeplansrate {
    font-size: 16pt;
    color: #434345;
    font-weight:500;
}
.plan .homeplanstit2 
{
   	margin-top:10px;
    color: #434345;
    font-size: 16pt;
	font-weight:400;
    padding: 10px 0px 10px 0px;
}
.homeplansinfo{
	color: #222;
	font-size:15px;
	font-weight:400;
	padding-left: 10px;
	padding-right: 10px;
	
}
.homeplansinfo span{
	color: #434345;
	 font-size: 10pt;
	 float:right;
}
.ref {
text-align: center;
}
.ref span {
    z-index: 1;
    position: relative;
    display: inline-block;
    color: #111;
}



.rounded-big
{
 border-radius:8px;   
}
