/*
Theme Name: custom wrapper
Theme URI: https://afterimagedesigns.com/wp-bootstrap-starter/
Author: Afterimage Designs
Author URI: https://afterimagedesigns.com/
Description:  The best WordPress starter theme based on the most powerful frameworks in the world: "_s" (by Automattic, the main people behind WordPress development), Twitter Bootstrap (the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web) and Font Awesome (or Fontawesome, a full suite of 675+ pictographic icons for easy scalable vector graphics on websites). This theme, like WordPress, is licensed under the GPL. You can use this theme as base for your next WordPress theme project and you are allowed to remove the link at the footer or do whatever you want. Your feedback on how we can continuously improve this WordPress Starter Theme Bootstrap will be highly appreciated. Page templates includes Right-sidebar (default page template), Left-Sidebar, Full-Width, Blank with container, Blank without container Page. Other features - Currently using Bootstrap v4.0.0 , Widgetized footer area, WooCommerce ready, Compatible with Contact Form 7, Compatible with Visual Composer, Compatible with Elementor Page Builder. This theme will be an active project which we will update from time to time. Check this page regularly for the updates.
Version: 3.3.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp-bootstrap-starter
Requires at least: 4.7
Requires PHP: 5.2.4
Tested up to: 5.4
Tags: blog, custom-menu, featured-images, threaded-comments, translation-ready, right-sidebar, custom-background, e-commerce, theme-options, sticky-post, full-width-template
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
  ## Links
  ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
  ## Posts and pages
  ## Comments
# Infinite scroll
# Media
  ## Captions
  ## Galleries
# Woocommerce
# Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
body {
  margin: 0;
  -webkit-font-smoothing: auto;
  font-family: 'Poppins', sans-serif !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 2.5rem;
}

hr {
  box-sizing: content-box;
  height: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  color: #24292e;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 15px;
  font-family: 'Montserrat';
}
h1 {
  font-size: 60px;
  font-weight: 700 !important; 
  line-height: 74px;
  margin: 0 !important;
  padding: 0 !important;
  color: #000 !important;
}
h2 {
    font-size: 60px ;
    font-weight: 700 ;
    line-height: 70px;
    color: #000;
    text-transform: uppercase;
}
h3 {
  font-size: 30px ;
  line-height: 40px ;
  font-weight: 600 ;
  color: #000 !important;
  text-transform: uppercase;
  letter-spacing: 20px;

}
h4 {
  font-size:22px;
  line-height: 22px;
  font-weight: 400;
  color: #000 !important;
  

}
h5 {
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.9px;
  font-weight: 700;
  color: #fff;
}
h6{
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

p {
  margin-bottom: 1.5em;
}
h1.entry-title {
  font-size: 1.31rem;
  border-bottom: 1px solid #eaecef;
}
h2.entry-title {
  border-bottom: 1px solid #eaecef;
}
h3.widget-title {
  font-size: 1.2rem;
}
p{
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #6E6E6E !important;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
body {
    font-family: 'Poppins' !important;
    background: #fff !important;
}
body, html {
    overflow-x: hidden;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
#page-sub-header {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 0;
  text-align: center;
  font-size: 1.25rem;
  background-size: cover !important;
}

body:not(.theme-preset-active) #page-sub-header h1 {
  line-height: 1.6;
  font-size: 4rem;
  color: #563e7c;
  margin: 0 0 1rem;
  border: 0;
  padding: 0;
}

#page-sub-header p {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 1.25rem;
  font-weight: 300;
}
body:not(.theme-preset-active) #page-sub-header p {
color: #212529;
}
a.page-scroller {
  color: #333;
  font-size: 2.6rem;
  display: inline-block;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  body:not(.theme-preset-active) #page-sub-header h1 {
    font-size: 3.750rem;
  }
  body:not(.theme-preset-active) #page-sub-header {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  #page-sub-header p {
    max-width: 43rem;
    margin: 0 auto;
  }
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.btn-close {
    display: none;
}
#masthead nav {
  padding-left: 0;
  padding-right: 0;
}
.navbar-brand {
   
}
.navbar-toggle .icon-bar {
  background: #000 none repeat scroll 0 0;
}
.dropdown-menu .dropdown-toggle::after {
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  border-top: 0.3em solid transparent;
}
.dropdown.menu-item-has-children .dropdown.menu-item-has-children {
    position: relative;
}
.dropdown.menu-item-has-children .dropdown.menu-item-has-children>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}
.dropdown.menu-item-has-children .dropdown.menu-item-has-children:hover>.dropdown-menu {
    display: block;
}
.dropdown.menu-item-has-children .dropdown.menu-item-has-children>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown.menu-item-has-children .dropdown.menu-item-has-children:hover>a:after {
    border-left-color: #fff;
}
.dropdown.menu-item-has-children .dropdown.menu-item-has-children.pull-left {
    float: none;
}
.dropdown.menu-item-has-children .dropdown.menu-item-has-children.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}
.dropdown-item {
  line-height: 1.2;
  padding-bottom: 0.313rem;
  padding-top: 0.313rem;
}
.dropdown-menu {
  min-width: 12.500rem;
}
.dropdown .open .dropdown-menu {
  display: block;
  left: 12.250em;
  top: 0;
}
.dropdown-menu .dropdown-item {
  white-space: normal;
  background: transparent;
  line-height: 1.6;
}
.dropdown-menu .dropdown-item:hover {
  background: transparent;
}
@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .dropdown-menu li > .dropdown-menu {
    right: -9.875rem;
    top: 1.375rem;
  }
}
@media screen and (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    border: medium none;
    margin-left: 1.250rem;
    padding: 0;
  }

  .dropdown-menu li a {
    padding: 0;
  }

  #masthead .navbar-nav > li > a {
    padding-bottom: 0.625rem;
    padding-top: 0.313rem;
  }

  .navbar-light .navbar-toggler {
    border: medium none;
    outline: none;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
.comment-content.card-block {
  padding: 20px;
}

.navigation.post-navigation {
  padding-top: 1.875rem;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  border: 1px solid #ddd;
  border-radius: 0.938rem;
  display: inline-block;
  padding: 0.313rem 0.875rem;
  text-decoration: none;
}

.post-navigation .nav-next a::after {
  content: " \2192";
}

.post-navigation .nav-previous a::before {
  content: "\2190 ";
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background: #eee none repeat scroll 0 0;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 0.313rem;
  line-height: normal;
  padding: 0.938rem 1.438rem 0.875rem;
  text-decoration: none;
  top: 0.313rem;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 0.313rem 0 1.25rem 1.25rem;
}

a img.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.alignleft {
  float: left;
  margin: 0.313rem 1.25rem 1.25rem 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignleft {
  margin: 0.313rem 1.25rem 1.25rem 0;
}

.wp-caption.alignright {
  margin: 0.313rem 0 1.25rem 1.25rem;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  font-size: 0.875rem;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

.widget_search .search-form input[type="submit"] {
  display: none;
}

.nav > li > a:focus,
.nav > li > a:hover {
  background-color: #eee;
  text-decoration: none;
}
.half-rule {
  width: 6rem;
  margin: 2.5rem 0;
}
.widget_categories .nav-link {
  display: inline-block;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
#content.site-content {
  padding-bottom: 0rem;
  padding-top: 0rem;
}

.sticky .entry-title::before {
  content: '\f08d';
  font-family: "Font Awesome\ 5 Free";
  font-size: 1.563rem;
  left: -2.5rem;
  position: absolute;
  top: 0.375rem;
  font-weight: 900;
}

.sticky .entry-title {
  position: relative;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.page-template-blank-page .entry-content,
.blank-page-with-container .entry-content {
  margin-top: 0;
}

.post.hentry {
  margin-bottom: 4rem;
}

.posted-on, .byline, .comments-link {
  color: #9a9a9a;
}

.entry-title > a {
  color: inherit;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
.comment-body .pull-left {
  padding-right: 0.625rem;
}
.comment-list .comment {
  display: block;
}
.comment-list {
  padding-left: 0;
}
.comments-title {
  font-size: 1.125rem;
}
.comment-list .pingback {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.563rem 0;
}
.comment-list .pingback:first-child {
  border: medium none;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  background: #f1f1f1 none repeat scroll 0 0;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 0.313rem 0.313rem 0;
  text-align: center;
}
.wp-caption img[class*="wp-image-"] {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-text {
  font-size: 0.688rem;
  line-height: 1.063rem;
  margin: 0;
  padding: 0.625rem;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-item .gallery-columns-2 {
  max-width: 50%;
}
.gallery-item .gallery-columns-3 {
  max-width: 33.33333%;
}
.gallery-item .gallery-columns-4 {
  max-width: 25%;
}
.gallery-item .gallery-columns-5 {
  max-width: 20%;
}
.gallery-item .gallery-columns-6 {
  max-width: 16.66667%;
}
.gallery-item .gallery-columns-7 {
  max-width: 14.28571%;
}
.gallery-item .gallery-columns-8 {
  max-width: 12.5%;
}
.gallery-item .gallery-columns-9 {
  max-width: 11.11111%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugin Compatibility
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Woocommerce
--------------------------------------------------------------*/
.woocommerce-cart-form .shop_table .coupon .input-text {
  width: 8.313rem !important;
}
.variations_form .variations .value > select {
  margin-bottom: 0.625rem;
}
.woocommerce-MyAccount-content .col-1,
.woocommerce-MyAccount-content .col-2 {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Elementor
--------------------------------------------------------------*/
.elementor-page article .entry-footer {
  display: none;
}
.elementor-page.page-template-fullwidth #content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}
.elementor-page .entry-content {
  margin-top: 0;
}
/*--------------------------------------------------------------
## Visual Composer
--------------------------------------------------------------*/
.vc_desktop article .entry-footer {
  display: none;
}
.vc_desktop #content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}
.vc_desktop .entry-content {
  margin-top: 0;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer#colophon {
  font-size: 85%;
}
body:not(.theme-preset-active) footer#colophon {
  color: #99979c;
  background-color: #f7f7f7;
}
.navbar-dark .site-info {
  color: #fff;
}
.copyright {
  font-size: 0.875rem;
  margin-bottom: 0;
  text-align: center;
}

.copyright a, footer#colophon a {
  color: inherit;
}

@media screen and (max-width: 767px) {
  #masthead .navbar-nav > li > a {
    padding-bottom: 0.938rem;
    padding-top: 0.938rem;
  }
}
/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Notebook
--------------------------------------------------------------*/
@media only screen and (max-width: 1366px) {
  html {
    font-size: 95%;
  }
h2 {
    font-size: 45px !important;
    line-height: 55px !important;
}
h3 {
    font-size: 30px !important;
    line-height: 40px !important;
}
h4 {
    font-size: 26px;
    line-height: 36px !important;
}
body.archive div#content {
    padding: 100px 0px !important;
}
body.page-template.page.page-id-25.logged-in.woocommerce-checkout div#content {
    padding-top: 85px !important;
    padding-bottom: 85px !important;
}
body.product-template-default.single.single-product div#content {
    padding: 100px 0px 60px !important;
}
}
@media (min-width: 1440px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px !important;
}
}
@media (max-width: 1400px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1160px !important;
}
}
@media screen and (max-width: 1199px) {
  .navbar-dark .dropdown-item {
    color: #fff;
  }
  .navbar-nav .dropdown-menu {
    background: transparent;
    box-shadow: none;
    border: none;
  }
}
/*--------------------------------------------------------------
## Netbook
--------------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
  html {
    font-size: 90%;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 960px) {
  html {
    font-size: 85%;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .navbar-collapse {
    width: 100%;
}
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 480px) {
  html {
    font-size: 75%;
  }
}

/*----------------------------------------
             custom css
------------------------------------------*/
ul{
  padding-left: 0 !important;
  list-style: none;
}

a{
  text-decoration: none !important;
  padding: 0px !important;
  background: none !important;
}
input{
  box-shadow: none !important;
  outline: none !important;
}
/*----------------------------------------
        
------------------------------------------*/

/*----------------------------------------
         
------------------------------------------*/


/*----------------------------------------
          
------------------------------------------*/
 

/*----------------------------------------
          
------------------------------------------*/

/*----------------------------------------
          
------------------------------------------*/

/*----------------------------------------
         
------------------------------------------*/

/*----------------------------------------
           
------------------------------------------*/

/*----------------------------------------
            
------------------------------------------*/

/*----------------------------------------
           footer
------------------------------------------*/
.site-info.row {
    display: flex !important;
    justify-content: center;
}
#colophon .site-info section, 
#colophon .site-info section p {
    margin-bottom: 0;
}
#colophon .container {
    border-top: 1px solid #0000002e;
}
#footer-widget h3 {
    margin-top: 0;
    margin-bottom: 30px;
}
#colophon, #footer-widget {
    background: transparent !important;
}
.main-footer .widget_text {
    margin-bottom: 0px;
}
.ftr-1 ul li i {
    color: #3a80ec;
    font-size: 18px;
    padding-right: 10px;
}
#footer-widget h3 {
    margin-bottom: 0px;
    padding-bottom: 20px;
    text-transform: capitalize;
}
ul#menu-footer-menu li a {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 34px;
}
#footer-widget {
    padding-top: 100px !important;
    padding-bottom: 70px;
    padding-left: 50px;
    padding-right: 50px;
}
.footer-left p {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 26px;
}
.footer-right p {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 20px;
}
#colophon .row {
    padding-top: 20px;
    padding-bottom: 20px;
}
.ftr-1 p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    color: #4D4D4D !important;
}
.ftr-1 #text-2 {
    margin-bottom: 0px;
}
.site-info p {
    margin-bottom: 0px;
    font-size: 19px;
    line-height: 34px;
    color: #585858b8 !important;
}
.site-info p strong {
    color: #000;
}
.ftr-3 p {
    font-size: 16px;
    line-height: 32px;
    color: #434343 !important;
    margin-bottom: 20px;
}
#footer-widget ul li a {
    font-size: 18px !important;
    line-height: 32px;
    color: #000 !important;
    font-weight: 500 !important;
    text-transform: capitalize;
    transition: 0.5s;
    text-transform: uppercase;
}
.menu-footer-menu-container ul.menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  gap: 30px; 
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-footer-menu-container ul.menu li {
  display: inline-block;
}
#footer-widget ul li a:hover {
    color: #3a80ec;
}
.ftr-3 {
    display: flex;
    justify-content: center;
}
#colophon .container-fluid {
    border-top: 1px solid;
}
.ftr-3 ul {
    display: flex;
}

.ftr-3 ul li a i {
    color: #ffffff;
    font-size: 13px;
}

.ftr-3 ul li {
    margin-bottom: 0px !important;
    background: #1E293B;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}
/*----------------------------------------
           hover effects
------------------------------------------*/
#masthead ul#menu-header-menu li a:hover {
    background: transparent !important;
    color: #000 !important;
    transition: 0.5s !important;
}
.vc_section.about_us .site_all a:hover {
    transition: 0.8s !important;
    background: transparent !important;
    border: 1px solid #000 !important;
    border-radius: unset !important;
    color: #000 !important; 
}
ul#menu-footer-menu li a:hover {
    color: #511b26 !important;
}
.ftr-2 #nav_menu-2 {
    margin-bottom: 0px !important;
}
#masthead ul#menu-header-menu li a:hover {
    color: #783427 !important;
    transition: 0.5s !important;
}
/*----------------------------------------
        Custom css Start
------------------------------------------*/
/*********BREADCRUMBS CSS**************/
.page-header {
    background: linear-gradient(45deg, #e9c9b3, #F47F2E);
    text-align: center;
    padding-top: 180px;
    padding-bottom: 90px;
    border-bottom: 10px solid #3D0D1F;
}
.breadcrumb-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 5px;
    font-size: 24px;
    justify-content: center;
    margin-top: 20px;
}
.breadcrumb-list li::after {
    content: ">";
    margin: 0 5px;
    color: #000;
}
.breadcrumb-list li:last-child::after {
    content: "";
}
.breadcrumb-list li {
    color: #000;
    font-size: 18px;
    line-height: 28px;
}
.page-header .page-title {
    color: #000 !important;
}
.custom-breadcrumb .breadcrumb-list li a {
    color: #000;
    font-size: 18px;
    line-height: 28px;
}
/*----------------------------------------
         Header CSS
------------------------------------------*/
#masthead {
    padding: 20px 50px 20px 50px;
    width: 100% !important;
    position: absolute;
    z-index: 99;
    background: transparent !important;
}
#masthead ul#menu-header-menu li {
    margin-left: 30px;
    padding-right: 30px;
    border-right: 2px solid #000;
}
#masthead ul#menu-header-menu li:last-child {
    border-right: unset;
}
#masthead ul#menu-header-menu li a {
    position: relative;
    color: #000;
    font-size: 18px !important;
    transition: 0.5s !important;
    line-height: 18px;
    text-transform: capitalize;
    font-weight: 400;
}
#masthead ul#menu-header-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #4a0c20, #e5ca70);
    transition: 0.5s ease;
}
#masthead #menu-header-menu {
    margin-left: 40px;
}
#masthead ul#menu-header-menu li a:hover::after {
    width: 100%;
}
.navbar-light .navbar-nav .active>.nav-link {
    font-weight: 600 !important;
    color: #000 !important;
}
#masthead .site_btn a {
    position: relative;
    justify-content: center;
    align-items: center;
    line-height: 0px;
    border-radius: 10px !important;
    border: 1px solid #fff !important;
    display: flex !important;
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: #fff !important;
    padding: 29px 20px !important;
}
/*----------------------------------------
        Banner Css
------------------------------------------*/
rs-layer.banner-head.rs-layer span {
    font-weight: 500 !important;
}

/*----------------------------------------
         About Us section
------------------------------------------*/
.site_btn a {
    position: relative;
    justify-content: center;
    align-items: center;
    line-height: 0px;
    border-radius: 10px !important;
    border: 1px solid #e3742d !important;
    display: flex !important;
    color: #fff !important;
    font-weight: 700 !IMPORTANT;
    font-size: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(193deg, #F47F2E, #3D0D1F) !important;
    padding: 16px 20px !important;
	text-transform: capitalize;
}
.site_btn a:hover{
    background: linear-gradient(193deg, #3D0D1F, #F47F2E) !important;
    transition: all 0.3s ease-in-out;
}
.site_btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-20deg);
}
.site_btn a:hover::before {
    animation: shine 0.8s forwards;
}
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}
.vc_section.about-us {
    padding-top: 120px !important;
    padding-bottom: 90px;
}
.vc_section.about-us h2 {
    padding-bottom: 20px;
}
.vc_section.about-us .site_btn {
    margin-top: 40px;
}
.about-sec .shadow-title:before {
    content: '';
    position: absolute;
    width: 741px;
    left: 90px;
    right: 0;
    margin: 0 auto;
    background: url(inc/assets/images/about.png) no-repeat;
    z-index: 999;
    height: 107px;
    top: -40px;
}
.about-sec .shadow-title {
    position: relative !important;
    padding-bottom: 40px;
}
.about-sec p {
    padding-left: 100px;
    padding-right: 100px;
    margin-bottom: 40px !important;
}
.about-sec .site_btn a {
    margin: 0 auto !important;
}
.about-sec .site_btn {
    display: flex !important;
}
/*----------------------------------------
       Book section
------------------------------------------*/
.book-sec {
    position: relative !important;
}

.book-sec:before {
    content: '';
    background: linear-gradient(45deg, #000, #585858) !important;
    width: 93%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 25px;
}
.vc_section.book-sec {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
.book-sec h2 {
    margin-bottom: 25px !important;
}
.book-sec p strong {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.book-sec .boo-list li {
    font-size: 18px;
    list-style: disc;
    line-height: 34px;
    margin-bottom: 5px;
    color: #ffffff91;
}
.book-sec .boo-list li::marker {
    font-size: 19px;
}
.book-sec .site_btn {
    margin-top: 30px;
}
.book-sec p {
    margin-bottom: 10px;
}
.book-sec .boo-list ul {
    padding-left: 20px !important;
}
.book-sec .white_btn a {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
    margin-left: 20px;
}
.book-sec .trans-btn a {
    background: transparent !important;
    border-color: #fff !important;
}
.book-sec .book-col {
    position: relative;
}

.book-sec .book-col:before {
    content: '';
    position: absolute;
    background: url(inc/assets/images/buynow.png) !important;
    top: 30px;
    left: 210px;
    width: 174px;
    height: 763px;
}
/*----------------------------------------
         Contact Us CSS
------------------------------------------*/
.Contact-sec {
    position: relative !important;
}

.Contact-sec:before {
    content: '';
    position: absolute;
    width: 93%;
    height: 100%;
    background: linear-gradient(267deg, #fb7100, #510f1f);
    left: 0;
    right: 0;
    margin: 0 auto;
    TOP: 0;
    border-radius: 25px;
}
.Contact-sec h3 {
    color: #fff !important;
    padding-bottom: 50px;
}
.Contact-sec .trp p {
    color: #ffffff8c !important;
    padding-left: 100px;
    padding-right: 100px;
}
.site-contact .form-control {
    background: transparent;
    border-bottom: 1px solid #ffffff4a !important;
    border-radius: 0;
    height: 71px;
    border: unset;
}
.site-contact .form-control::placeholder {
    font-size: 16px;
    color: #ffffff8f;
}
.site-contact .wpcf7-textarea.form-control {
    height: 145px;
}
 .sub-site {
    width: 180px;
    height: 71px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #fff;
    outline: unset;
    color: #000;
    font-size: 18px;
    margin: 0 auto !important;
    display: flex;
}
.Contact-sec .shadow-title {
    position: relative;
}
.Contact-sec .shadow-title:before {
    content: '';
    position: absolute;
    width: 741px;
    left: 90px;
    right: 0;
    margin: 0 auto;
    background: url(inc/assets/images/Contact.png) no-repeat;
    z-index: 999;
    height: 107px;
    top: -40px;
}
/*----------------------------------------
         About Pages CSS
------------------------------------------*/
.testimonial-thumbnail-slider .slick-slide .cnt-wraper p {
    color: #999999;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    margin-right: 4px;
	display: none;
}
.cnt-wraper .tags i {
    display: none;
}
.testimonial-thumbnail-slider .slick-slide .cnt-wraper h4 {
    color: #000000 !important;
    margin-top: 0px;
    margin-bottom: 0;
    font-size: 30px !important;
    font-weight: 800;
    line-height: 31px;
    font-family: 'Rubik' !important;
    letter-spacing: unset;
    font-weight: 500;
    margin-bottom: 10px;
}
.testimonial-thumbnail-slider .slick-slide {
    transition: 0.3s ease;
    border-radius: 15px;
    margin-bottom: 25px;
    padding: 15px;
    transition: all 0.5s;
    margin-left: 6px;
    height: 190px;
}
.testimonial-section .row {
    align-items: center;
}
.testimonial-thumbnail-slider .slick-center {
    opacity: 1;
    margin-left: 100px;
}
.testimonial-thumbnail-slider .slick-list.draggable {
    padding: 0px !important;
    position: relative;
}
.testimonial-content-slider .slick-dots {
    position: absolute;
    margin-bottom: 0px;
    top: 0;
    left: -50px;
    z-index: 1;
    padding: 0 !important;
    display: none !important;
}
.testimonial-content-slider .slick-dots::after {
    content: '';
    position: absolute;
    top: -95px;
    left: 7px;
    width: 2px;
    height: 450px;
    background-color: #9a30bb;
    z-index: -1;
}
.testimonial-content-slider{
  position: relative;
}
.testimonial-content-slider .slick-dots li button {
    font-size: 0px;
    background: #D4537A;
    width: 8px;
    height: 11px;
    outline: unset;
    border: unset;
    border-radius: 20px;
    line-height: 0px;
}
.testimonial-content-slider .slick-dots .slick-active button {
    width: 16px !important;
    height: 16px;
}
.testimonial-thumbnail-slider .thumb-inner {
    display: flex;
    align-items: center;
}
.testimonial-content-slider .slick-dots li {
    display: flex;
    margin: 40px 0px;
    justify-content: center;
    align-items: center;
}
.cnt-wraper .tags {
    display: flex;
    align-items: center;
}

.cnt-wraper .tags i {
    color: #FF8F3F;
}
.cnt-wraper {
    margin-left: 40px;
}
.testimonial-thumbnail-slider .slick-slide {
  position: relative;
  display: inline-block;
}

.testimonial-thumbnail-slider .slick-slide img {
  width: 102px;
  height: 102px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* Gradient border via pseudo-element */
.testimonial-thumbnail-slider .slick-slide::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(45deg, #F47F2E, #3D0D1F);
  z-index: 1;
  margin: 0 auto;
}
.testimonial-thumbnail-slider .thumb-slide.slick-slide.slick-active img {
    scale: 0.85;
}

.testimonial-thumbnail-slider  .thumb-slide.slick-slide.slick-current.slick-active.slick-center  img  {
    scale:1;
}


.testimonial-thumbnail-slider .thumb-slide.slick-slide.slick-active img {
    scale: 0.85;
}

.testimonial-thumbnail-slider  .thumb-slide.slick-slide.slick-current.slick-active.slick-center  img  {
    scale:1;
}

.slick-vertical .slick-slide .content-inner {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    /* opacity: .7; */
}

.testimonial-thumbnail-slider .slick-list.draggable:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    left: -20px;
    height: 100%;
    background: url(inc/assets/images/Ellipse76.png);
    background-repeat: no-repeat;
    background-position: -4% 0%;
    background-size: 28% 93%;
}


.testimonial-thumbnail-slider .slick-center {
    opacity: 1;
    margin-left: 110px !important;
}

.testimonial-thumbnail-slider.slick-initialized.slick-slider.slick-vertical {
}

.testimonial-thumbnail-slider .slick-center h4 {
    font-size: 26px !important;
}
.testimonial-section {
    padding-top: 50px !important;
    padding-bottom: 30px;
}
.content-inner p {
    font-size: 36px;
    color: #000 !important;
    line-height: 50px;
    font-style: italic;
    font-weight: 600;
    font-family: 'Rubik';
    background: rgb(168 168 168 / 10%);
    margin: 0;
    text-align: center;
    width: 100%;
    padding: 50px;
    border-radius: 42px;
    height: 570px;
    display: flex;
    align-items: center;
}
/*----------------------------------------
         Contact Pages CSS
------------------------------------------*/

/*----------------------------------------
          WEB RESPONSIVE
------------------------------------------*/
@media only screen and (max-width: 1660px){
#masthead {
        padding: 10px 10px 10px 10px;
}
.about-sec .shadow-title:before {
    width: 711px;
    left: 0px;
    right: 0;
    height: 107px;
    top: -40px;
    margin: 0 auto;
}
.about-sec p {
    padding-left: 50px;
    padding-right: 50px;
}
.content-inner p {
    font-size: 28px;
    line-height: 40px;
    height: 550px;
}
.Contact-sec .trp p {
    color: #ffffff8c !important;
    padding-left: 50px;
    padding-right: 50px;
}
.Contact-sec .shadow-title:before {
    left: 0px;
    right: 0;
    top: -40px;
}
}    
@media only screen and (max-width: 1366px){  
.book-sec .boo-list li {
  font-size: 16px;
  line-height: 28px;
}
p {
  font-size: 16px;
  line-height: 28px;
}
  .about-sec p {
      padding-left: 20px;
      padding-right: 20px;
  }
  .Contact-sec .trp p {
      padding-left: 20px;
      padding-right: 20px;
  }   
  .content-inner p {
      padding: 30px !important;
      font-size: 23px;
      line-height: 35px;
      height: 500px;
  }  
.navbar-brand {
  width: 15%;
}
#masthead #menu-header-menu {
    margin-left: 10px;
}       
}  
@media only screen and (max-width: 1199px){
.navbar-collapse.collapse.show {
    transform: unset;
}
.navbar-collapse {
        width: 80%;
        right: 0% !important;
        position: fixed !important;
        z-index: 999;
        top: 0 !important;
        transition: 0.5s;
        padding: 0px 0px;
        height: 100%;
        transform: translate(100%, 0);
        background: linear-gradient(193deg, #F47F2E, #3D0D1F) !important;
        border-left: solid #fff;
    }
#masthead .btn-close {
    background: transparent !important;
    border: none;
    color: #fff;
    font-weight: 700 !important;
    font-size: 30px;
    top: 10px;
    position: relative;
    display: block !important;
    outline: none !important;
    left: 14px;
}
#masthead .navbar-collapse #menu-header-menu li a {
        color: #fff;
        padding: 20px 0px !important;
        text-align: center;
        margin-right: 0px;
    }
    #masthead #menu-header-menu li {
        border-bottom: 1px solid #fff;
        padding-right: 0px !important;
        margin-left: 0px !important;
        border-right: unset !important;
    } 
#masthead .site_btn a {
    width: 150px;
    padding: 24px 8px !important;
    margin-top: 20px !important;
    margin: 0 auto;
}
  .about-sec p {
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: 10px !important;
    }
    p {
        font-size: 15px;
        line-height: 25px;
    }	
.testimonial-thumbnail-slider .slick-list.draggable:before {
    left: 50px;
}
h2 {
        font-size: 35px !important;
        line-height: 45px !important;
    }
.book-sec .boo-list li {
        font-size: 15px;
        line-height: 25px;
    }
.vc_section.about-sec {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
section.vc_section {
    padding-right: 20px !important;
    padding-left: 20px !important;
}
.Contact-sec:before {
    width: 100%;
    height: 100%;
}
    .testimonial-thumbnail-slider .slick-slide img {
        width: 102px;
        height: 102px;
    }
.testimonial-thumbnail-slider .slick-slide .cnt-wraper h4 {
    font-size: 22px !important;
}
.content-inner p {
        padding: 22px !important;
        font-size: 22px;
        line-height: 32px;
        height: 470px;
    }
.Contact-sec h3 {
    color: #fff !important;
    padding-bottom: 10px;
}
#footer-widget ul li a {
    font-size: 15px !important;
    line-height: 26px;
}
.menu-footer-menu-container ul.menu {
    gap: 12px;
}
#footer-widget {
    padding-top: 60px !important;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}
h1 {
    font-size: 50px;
    line-height: 60px;
}
button.navbar-toggler {
    background: #fff;
}
}
@media only screen and (max-width: 960px){
.testimonial-section {
    padding-top: 20px !important;
    padding-bottom: 10px;
}
    .content-inner p {
        padding: 22px !important;
        font-size: 18px;
        line-height: 28px;
        height: 430px;
    }
.testimonial-thumbnail-slider .slick-slide .cnt-wraper h4 {
        font-size: 15px !important;
        line-height: 20px !important;
    }
.cnt-wraper {
    margin-left: 10px;
}
.testimonial-thumbnail-slider .slick-slide {
        margin-bottom: 25px;
        padding: 10px;
        margin-left: 6px;
        height: 140px;
    }
.testimonial-thumbnail-slider .slick-slide::before {
    top: 6px;
    left: 6px;
    width: 72px;
    height: 72px;
}
.testimonial-thumbnail-slider .slick-slide img {
        width: 62px;
        height: 62px;
    }
.testimonial-thumbnail-slider .slick-list.draggable:before {
	display: none;
    }
    h2 {
        font-size: 30px !important;
        line-height: 40px !important;
    }
.site_btn a {
    font-size: 15px !important;
    padding: 10px 12px !important;
}
.book-sec p strong {
    font-size: 16px;
}
.book-sec:before {
    width: 100%;
}
.about-sec .shadow-title {
    position: relative !important;
    padding-bottom: 10px;
}
h3 {
        font-size: 24px !important;
        line-height: 34px !important;
    }
#masthead ul#menu-header-menu li a {
    font-size: 15px !important;
}
    .navbar-brand {
        width: 22%;
    }		
}
@media only screen and (max-width: 767px){
    .navbar-brand {
        width: 41%;
    }
.content-inner p {
        padding: 10px !important;
        font-size: 16px;
        line-height: 25px;
        height: 210px;
    }
.book-sec .book-horr {
    text-align: left !important;
}
.testimonial-thumbnail-slider .slick-slide {
        margin-bottom: 25px;
        padding: 10px;
        margin-left: 6px;
        height: 100px;
        margin: 0 auto;
        margin-left: 0px !important;
    }
.book-sec h2 {
    margin-bottom: 15px !important;
    margin-top: 20px;
}
	.book-sec .site_btn {
    margin-top: 0px;
    margin-bottom: 0px;
}
#footer-widget {
        padding-top: 60px !important;
        padding-bottom: 60px;
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }
.site-info p {
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}
.about-sec .shadow-title {
        padding-bottom: 10px;
        margin-top: 20px;
    }
.about-sec .shadow-title:before {
    display: none;
}
.Contact-sec .shadow-title:before {
    display: none;
}
h3 {
        font-size: 24px !important;
        line-height: 34px !important;
        letter-spacing: 10px;
    }
    h1 {
        font-size: 40px;
        line-height: 50px;
    }
.sub-site {
    width: 160px;
    height: 50px;
    font-size: 15px;
}
   button.navbar-toggler {
        background: #cf6e30;
    }	
}
@media only screen and (max-width: 439px){
	    .navbar-brand {
        width: 46%;
    }
    h3 {
        font-size: 17px !important;
        line-height: 20px !important;
        letter-spacing: 10px;
    }
.site-contact .form-control {
    height: 40px;
}
}


.form-control {
    color: #fff;
}