/* @import url('http://example.com/example_style.css'); */


@font-face {
	font-display: block;
	font-family: 'ntjosefine';
	font-style: normal;
	src: url('../fonts/ntjosefine/NTJosefine.eot') format("embedded-opentype"), 
	url('../fonts/ntjosefine/NTJosefine.woff2') format("woff2"), 
	url('../fonts/ntjosefine/NTJosefine.woff') format("woff"), 
	url('../fonts/ntjosefine/NTJosefine.ttf') format("truetype");
}
@font-face {
	font-display: block;
	font-family: 'AlbraBlack';
	font-weight: 900;
	font-style: normal;
	src: url('../fonts/AlbraBlack/AlbraBlack.eot') format("embedded-opentype"), 
	url('../fonts/AlbraBlack/AlbraBlack.woff2') format("woff2"), 
	url('../fonts/AlbraBlack/AlbraBlack.woff') format("woff"), 
	url('../fonts/AlbraBlack/AlbraBlack.ttf') format("truetype");
}
@font-face {
	font-display: block;
	font-family: 'AlbraBold';
	font-weight: 700;
	font-style: normal;
	src: url('../fonts/AlbraBold/AlbraBold.eot') format("embedded-opentype"), 
	url('../fonts/AlbraBold/AlbraBold.woff2') format("woff2"), 
	url('../fonts/AlbraBold/AlbraBold.woff') format("woff"), 
	url('../fonts/AlbraBold/AlbraBold.ttf') format("truetype");
}
@font-face {
	font-display: block;
	font-family: 'AlbraSemi';
	font-weight: 600;
	font-style: normal;
	src: url('../fonts/AlbraSemi/AlbraSemi.eot') format("embedded-opentype"), 
	url('../fonts/AlbraSemi/AlbraSemi.woff2') format("woff2"), 
	url('../fonts/AlbraSemi/AlbraSemi.woff') format("woff"), 
	url('../fonts/AlbraSemi/AlbraSemi.ttf') format("truetype");
}
@font-face {
	font-display: block;
	font-family: 'AlbraMedium';
	font-weight: 500;
	font-style: normal;
	src: url('../fonts/AlbraMedium/AlbraMedium.eot') format("embedded-opentype"), 
	url('../fonts/AlbraMedium/AlbraMedium.woff2') format("woff2"), 
	url('../fonts/AlbraMedium/AlbraMedium.woff') format("woff"), 
	url('../fonts/AlbraMedium/AlbraMedium.ttf') format("truetype");
}
@font-face {
	font-display: block;
	font-family: 'AlbraRegular';
	font-weight: 400;
	font-style: normal;
	src: url('../fonts/AlbraRegular/AlbraRegular.eot') format("embedded-opentype"), 
	url('../fonts/AlbraRegular/AlbraRegular.woff2') format("woff2"), 
	url('../fonts/AlbraRegular/AlbraRegular.woff') format("woff"), 
	url('../fonts/AlbraRegular/AlbraRegular.ttf') format("truetype");
}
@font-face {
	font-display: block;
	font-family: 'AlbraLight';
	font-weight: 300;
	font-style: normal;
	src: url('../fonts/AlbraLight/AlbraLight.eot') format("embedded-opentype"), 
	url('../fonts/AlbraLight/AlbraLight.woff2') format("woff2"), 
	url('../fonts/AlbraLight/AlbraLight.woff') format("woff"), 
	url('../fonts/AlbraLight/AlbraLight.ttf') format("truetype");
}




/**
 * CSS @imports must be at the top of the file.      
 * Add them above this section.                             
 */







/* ==========================================================================


   1. BASE STYLES                                             


   ========================================================================== */


/** 
 * Box Sizing
 * 
 * Applies a natural box layout model to all elements so that width and padding 
 * are essentially combined, making responsive styles easier to manage.
 */

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
} 

/* Website background color and default font styles */
body {
  background: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.375;
}

/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

:root {
  --conwidth: calc((100% - (1643px + 1.5rem)) / 2);
}


.container {
  float: none;
  max-width: calc(1643px + 1.5rem);
  margin: 0 auto;
}

a { 
	text-decoration: none;
	outline: none;
	color: #030303;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
a:hover, a:focus { 
	text-decoration: none;
	outline: none;
	color: #1399ed; 
}

hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* Highlighted Text */
::-moz-selection {
  color: #fff;
  background: #3399ff;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #3399ff;
  text-shadow: none;
}


/* ==========================================================================
   Typography
   ========================================================================== */


/* Basic text */
p {
	margin: 0 0 15px;
	font-size: 20px;
} 
p:last-child{
	margin: 0;
}
small {}
strong {}
em {}
cite {}
code {}
pre {}

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

sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
	margin: 0px 0 10px;
	font-family: 'ntjosefine';
    font-weight: 700;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {
	font-size: 70px;
}
h2 {
	font-size: 50px;
}
h3 {
	font-size: 50px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

/* Lists */
ul, ol {}
ul ul, ul ol, ol ol, ol ul {}
li {}

ul.unstyled, ol.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Quotes */
blockquote {}
blockquote p {}
blockquote small {}
blockquote small:before {}

q:before, q:after, blockquote:before, blockquote:after {}


/*=== Common Css ===*/

.ct_pricing_cnt table.table tr td a,
.woocommerce ul.products li.product a.added_to_cart,
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.woocommerce-wishlist.woocommerce table.shop_table td.product-add-to-cart a.add_to_cart_button,
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.woocommerce ul.products li.product a.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt,
a.cmn_btn {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    margin-top: 4px; 
    padding: 15px 25px;
    border-radius: 5px 5px 0 0;
    line-height: 1;
    font-size: 15px;
    border: 1px solid #000;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
	text-align: center;
	white-space: normal;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
a.cmn_btn.table-price-button {
    border-radius: 5px;
}
.ct_pricing_cnt table.table tr td a:hover,
.woocommerce ul.products li.product a.added_to_cart:hover,
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover,
.woocommerce-wishlist.woocommerce table.shop_table td.product-add-to-cart a.add_to_cart_button:hover,
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover,
.woocommerce ul.products li.product a.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover,
a.cmn_btn:hover {
    box-shadow: 6px 6px 1px rgba(0,0,0,.5);
	border: 1px solid #000;
	background-color: #000000;
	color: #fff;
}
.woocommerce button.button:disabled, 
.woocommerce button.button:disabled[disabled]{
	color: #fff;
}
.woocommerce ul.products li.product a.added_to_cart,
a.cmn_btn_tsp{
	background-color: #fff;
	color: #000;
}
a.cmn_btn_tsp:hover{
	background-color: #000;
	color: #fff;
}
a.cmn_btn.cmn_white {
	border-color: #fff;
	background-color: #fff;
	color: #000;
}
a.cmn_btn.cmn_transparent {
	background-color: transparent;
	border-color: #fff;
}
a.cmn_btn.cmn_transparent:hover,
a.cmn_btn.cmn_white:hover{
	box-shadow: none;
	border-color: #000;
	background-color: #000;
	color: #fff;
}
a.cmn_btn.cmn_dt {
	background-color: transparent;
	color: #000;
}
.btn_wrap a.cmn_btn:not(:last-child) {
    margin-right: 10px;
}

.cmn_padd{
	padding-top: 70px;
	padding-bottom: 70px;
}
.clearfix:before, 
.clearfix:after{
	content: " ";
    display: table;
} 
.clearfix:after{
	clear: both;
}


/* ==========================================================================
   Header
   ========================================================================== */

/*=== Header Top Css ===*/

.header_top {
    background-color: #191816;
    color: #fff;
    position: relative;
}
.header_top .ht_inn {
	padding: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.free_shiping_cnt {
    padding: 25px 0;
}
.header_top .free_shiping_cnt p {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
	text-transform: uppercase;
}
.header_top .ht_inn .top_links_wrap {
    position: relative;
    top: 0;
    right: 0;
}
.header_top .inner_links {
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
}
.header_top .inner_links .contact_num {
    padding-right: 15px;
    margin-right: 10px;
    position: relative;
}
.header_top .inner_links .contact_num:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #3e3e3e;
}
.header_top .inner_links .contact_num a {
    color: #fff;
}

/*===== Header Top Links =====*/

.header_top .toplinks ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.header_top .toplinks > ul > li {
    padding: 24px 8px;
	display: inline-block;
}
.header_top .toplinks > ul > li.searh_list {
    position: static;
}
.header_top .toplinks ul a {
    color: #fff;
    font-size: 15px;
}
.header_top .toplinks ul > li > ul.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ededed;
    display: none; 
    z-index: 10;
    min-width: 150px;
}
.header_top .toplinks ul > li > ul.submenu > li{
	padding: 10px;
	color: #000;
}
.header_top .toplinks > ul > li.loginlogout_list > ul.submenu li{
	padding: 0;
}
.header_top .toplinks ul > li > ul.submenu > li > a{
	color: #000;
	display: block;
	padding: 10px;
}
.header_top .toplinks > ul > li.loginlogout_list > ul.submenu li > a{
	background-color: #ededed;
}
.header_top .toplinks > ul > li.loginlogout_list > ul.submenu li > a:hover{
	background-color: #000;
	color: #fff;
}
.header_top .toplinks ul > li:hover > ul.submenu{
	display: block;
}
.header_top .toplinks ul > li > ul.submenu.stsearch_menu {
    display: none;
	min-width: 250px;
}
ul.submenu.stsearch_menu li span#loaderimage {
    max-width: 35px;
    height: auto;
    display: none;
}
ul.submenu.stsearch_menu li span#loaderimage img{
	max-width: 30px;
}
ul.submenu.stsearch_menu li input{
	margin: 0;
}
.header_top .toplinks ul.ctslist_item_wrap li {
    background-color: #313131;
    padding: 10px;
    color: #fff;
	border-bottom: 1px solid #fff;
}
.header_top .toplinks ul.ctslist_item_wrap li:last-child{
	border: 0 none;
}
.header_top .toplinks ul.ctslist_item_wrap li.ctslist_item a {
    display: block;
}
.header_top .toplinks ul.ctslist_item_wrap li.ctslist_item a .in {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_top .toplinks ul.ctslist_item_wrap li.ctslist_item a .in .img {
    padding-right: 15px;
    border-right: 1px solid #fff;
}
.header_top .toplinks ul.ctslist_item_wrap li.ctslist_item a .in .img img.wp-post-image {
	max-width: 100%;
    height: auto;
    max-height: 50px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
.header_top .toplinks > ul > li.cart_list a {
    position: relative;
}
.header_top .toplinks > ul > li.cart_list a span.cart_count {
    position: absolute;
    background-color: #fff;
    color: #000;
    min-width: 15px;
    min-height: 15px;
    border-radius: 100%;
    line-height: 1;
    text-align: center;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -10px;
}

/*=== Header Top Menu ===*/

.header_top .ht_inn ul#top-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.header_top .ht_inn ul#top-menu-list li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}
.header_top .ht_inn ul#top-menu-list li:last-child {
    margin-right: 0;
}
.header_top .ht_inn ul#top-menu-list li a {
	color: #fff;
}
.header_top .ht_inn ul#top-menu-list li:after {
    content: "|";
    position: absolute;
    right: -19px;
    top: 50%;
    font-size: 12px;
    transform: translateY(-50%);
}
.header_top .ht_inn ul#top-menu-list li:last-child:after {
	content: none;
}
.header_top .ht_inn ul#top-menu-list li.current-menu-item a,
.header_top .ht_inn ul#top-menu-list li a:hover{
	text-decoration: underline;
}


/*=== Header bottom Css ===*/


.header_bottom{
	padding: 5px 0;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}
.header_logo {
    padding-right: 20px;
}
.header_logo a.navbar-brand.logo {
    display: block;
}
.header_logo a.navbar-brand.logo img.logo {
    max-width: 350px;
	width: 100%;
}
.header_bottom .hb_inn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_bottom .btn_wrap {
    padding-left: 5px;
	min-width: 155px;
}
.header_bottom .btn_wrap a.cmn_btn:not(:last-child) {
    margin-right: 5px;
}
.menu_wrapper .primary-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu_wrapper .primary-navigation ul li {
    display: inline-block;
    padding: 0 8px;
	position: relative;
}
.menu_wrapper .primary-navigation ul > li.menu-item-has-children:after{
    content: "\f107";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.menu_wrapper .primary-navigation .primary-menu-container > ul > li:before {
    content: "|";
    position: absolute;
    right: -4px;
    top: 50%;
    font-size: 12px;
    transform: translateY(-50%);
}
.menu_wrapper .primary-navigation .primary-menu-container > ul > li:last-child:before{
	content: none;
}
.menu_wrapper .primary-navigation ul li a{
	font-size: 17px;
	letter-spacing: 0px;
	text-transform: uppercase;
	color: #000000;
	font-weight: 500;
	font-family: "Inter";
	text-align: left;
}
.menu_wrapper .primary-navigation ul li.current_page_item > a,
.menu_wrapper .primary-navigation ul li:hover > a,
.menu_wrapper .primary-navigation ul li a:hover{
	text-decoration: underline;
}


/*=== Submenu Css ===*/

.menu_wrapper .primary-navigation ul > li > ul.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #000;
    min-width: 200px;
    display: none;
    box-shadow: 0px 0px 10px rgba(0,0,0,.2);
    z-index: 50;
}
.menu_wrapper .primary-navigation ul > li:hover > ul.sub-menu {
    display: block;
}
.menu_wrapper .primary-navigation ul > li > ul.sub-menu > li{
    display: block;
    text-align: left;
    padding: 0;
    margin: 0;
}
.menu_wrapper .primary-navigation ul > li > ul.sub-menu > li > a{
    display: block;
    padding: 10px 15px;
    color: #fff;
}
.menu_wrapper .primary-navigation ul > li > ul.sub-menu > li > a:hover{
    background-color: #414143;
    text-decoration: none;
    color: #fff;
}




/* ==========================================================================
   Content                                                 
   ========================================================================== */
   
/*=== Banner Css ===*/

.banner_section {
    background-size: cover;
    background-position: center center;
}   
.banner_mcnt {
    display: table;
    width: 100%;
}
.banner_mcnt > div {
    display: table-cell;
    vertical-align: bottom;
}
.banner_mcnt > div.bann_img {
    width: 35%;
}
.banner_mcnt > div.bann_caption {
	width: 65%;
    vertical-align: middle;
    padding: 25px 25px 25px 80px;
}
.banner_mcnt h1 {
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #fff;
    font-family: 'ntjosefine';
    margin: 0 0 25px;
	text-align: center;
} 
/* .banner_mcnt > div.bann_caption h2 {
    font-size: 32px;
    color: #b87b41;
    line-height: 1.3;
    margin: 0 0 40px;
    font-family: inherit;
    text-transform:capitalize;
    background-color: #FFC0CB;
    padding: 20px;
    border-radius: 10px;
} */

.banner-description-sale {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #00a69c;
    font-style: italic;
    color: #fff;
}

.banner-sale-inner {
    display: flex;
    align-items: center;
	gap: 25px;
}

.bann_caption .banner-description-sale p:nth-child(3n) {
    margin-top: 1em;
    font-style: normal;
	text-transform: capitalize;
}
.bann_caption .banner-description-sale p:last-child {
	margin-bottom: 1em;
	font-style: normal;
	text-transform: capitalize;
}

.bann_caption .banner-description-sale p:nth-child(4n) {
    margin-top: 5px;
    font-size: 22px;
}
.bann_caption .banner-description-sale p:nth-child(4n) a {
	text-transform: uppercase;
    font-weight: 700;
    margin: 0 5px;
}
.banner-description-sale h2 {
    letter-spacing: 3px;
	margin-top: 10px;
}

.bann_caption .banner-description-sale p:last-child a {
    color: #fff;
	
	&:hover {
		filter: drop-shadow(2px 4px 6px #000);
	}
}


.sale-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bann_caption .banner-description-sale p{
	margin-bottom: 0;
}

.sale-inner h2 {
    font-size: 70px;
	margin: 0;
}
.banner_mcnt p {
    font-size: 15px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Inter";
    margin: 0 0 45px;
}
.banner_mcnt .bann_btn_wrap a.cmn_btn:not(:last-child) {
    margin-right: 10px;
}

/*=== Service Section Css ===*/

.ct_service_sec {
    padding: 70px 0;
}
.ct_service_sec .top_cnt {
    margin: 0 0 30px;
}
.ct_service_sec .top_cnt h2 {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    font-family: 'ntjosefine';
    margin: 0 0 20px;
}
.ct_service_sec .service_slider_wrap {
	position: relative;
    padding-left: 70px;
    padding-right: 70px;
}
.ct_service_sec .service_slider_wrap a.ctnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
}
.service_item_inn a.ser_link {
    display: block;
}
.service_item_inn a.ser_link .service_img {
    min-height: 520px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.ct_service_sec .service_slider_wrap a.ctnav.prev {
    left: 0;
}
.ct_service_sec .service_slider_wrap a.ctnav.next {
    right: 0;
}
.service_item_inn a.ser_link .service_img .ct_sercnt {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
	padding: 60px 35px;
	overflow-y: auto !important;
	opacity: 0;
	visibility: hidden;
    background-color: rgba(0,0,0,.8);
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
.service_item_inn a.ser_link:hover .service_img .ct_sercnt {
	opacity: 1;
	visibility: visible;
}
.service_item_inn a.ser_link .service_img .ct_sercnt h5{
	font-size: 31px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
	font-family: 'ntjosefine';
	margin: 0 0 12px;
}
.service_item_inn a.ser_link .service_img .ct_sercnt p{
	letter-spacing: 0px;
	color: #ffffff;
	font-weight: 400;
	font-family: "Inter";
}
.service_item_inn a.ser_link .service_img .bottom_title {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #000;
    width: 100%;
    padding: 15px 20px;
	opacity: 1;
	visibility: visible;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
.service_item_inn a.ser_link:hover .service_img .bottom_title {
	opacity: 0;
	visibility: hidden;
}
.service_item_inn a.ser_link .service_img .bottom_title h5 {
    font-size: 31px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'ntjosefine';
    margin: 0;
    text-align: center;
}
.service_item_inn a.ser_link .service_img span.price {
	position: absolute;
	left: 0;
	top: 30px;
	background-color: #000;
    font-size: 29px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'ntjosefine';
	padding: 10px 25px;	
	opacity: 1;
	visibility: visible;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
.service_item_inn a.ser_link .service_img span.price:after{
	content: "";
    position: absolute;
    top: 0;
	right: -28px;
    height: 100%;
    width: 0;
	border-left: 30px solid transparent;
    border-top: 30px solid #000;
    border-bottom: 30px solid #000;
    transform: rotate(-180deg);
}
.service_item_inn a.ser_link:hover .service_img span.price{
	opacity: 0;
	visibility: hidden;
}
.service_slider .slider_item .bann_btn_wrap {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 10px;
}

/*=== About Section Css ===*/

.ct_about_sec {
    background-color: #f8f8f8;
    padding: 50px 0;
}
.ct_about_sec > .container {
    padding-left: 125px;
    padding-right: 125px;
}
.ct_about_sec .top_cnt {
    text-align: center;
    margin: 0 0 30px;
}
.ct_about_sec .top_cnt h2 {
    color: #000;
    margin: 0 0 30px;
    line-height: 1.2;
    font-family: 'ntjosefine';
    text-transform: uppercase;
}
.ct_about_sec .top_cnt p {
    line-height: normal;
}
.ct_about_sec .vid_img {
    min-height: 615px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 30px;
    background-size: cover;
    background-position: center center;
}
.ct_about_sec .vid_img a.play_cion {
    background-color: rgba(255,255,255,.78);
    padding: 10px 30px;
    border-radius: 0px;
    font-size: 35px;
    color: #000;
}
.ct_about_sec .bottom_btn_wrap {
    text-align: center;
}

/*=== Specification css ===*/

.ct_spec_sec {
    background-color: #1c1c1c;
    padding: 25px 0;
}
.ct_spec_sec .ct_spec_inner {
	max-width: 100%;;
    margin: 0 auto;
}
.ct_spec_sec .ct_spec_inner .spec_box {
    width: 33.33333%;
    float: left;
	padding-left: 115px;
    position: relative;
    padding-right: 50px;
}
.ct_spec_sec .ct_spec_inner .spec_box:not(:last-child) {
    border-right: 2px solid #fff;
}
.ct_spec_sec .ct_spec_inner .spec_box .icon {
	position: absolute;
	left: 40px;
	top: 10px;
}
.ct_spec_sec .ct_spec_inner .spec_box .cnt {
    font-size: 15px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Inter";
}
.ct_spec_sec .ct_spec_inner .spec_box .cnt span.count {
    font-size: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'ntjosefine';
}
.page-template-page-cosmetic-injectables .ct_spec_sec .ct_spec_inner .spec_box .cnt span.count {
    font-size: 40px;
}

/*=== ===*/

.ct_lhs_sec {
    padding: 70px 0;
}
.ct_lhs_sec .lhs_topcnt {
    margin: 0 auto 40px;
    text-align: center;
    max-width: 900px;
}
.ct_lhs_sec .lhs_topcnt h6 {
    font-size: 20px;
    text-transform: uppercase;
    color: #808080;
    font-family: 'ntjosefine';
    text-align: center;
    margin: 0 0 15px;
}
.ct_lhs_sec .lhs_topcnt h2 {
    text-transform: uppercase;
    color: #000;
    font-family: 'ntjosefine';
    text-align: center;
    margin: 0 0 30px;
}
.ct_lhs_sec .lhs_topcnt p {
    letter-spacing: 0px;
    color: #000000;
    font-weight: 400;
    font-family: "Inter";
    text-align: center;
}
.ct_lhs_main {
    max-width: 1300px;
    margin: 0 auto;
}

.ct_lhs_main .lhs_inner {
    padding: 100px 90px 0;
    position: relative;
}
.ct_lhs_main .lhs_inner span.beforetxt {
    font-size: 50px;
    text-transform: uppercase;
    color: #dfdfdf;
    font-family: 'ntjosefine';
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}
.ct_lhs_main .ct_lhs_col:nth-child(2n) .lhs_inner span.beforetxt {
    right: 0;
    left: auto;
}
.ct_lhs_main .ct_lhs_col:nth-child(2n-1) .lhs_inner:after{
	content: "";
    position: absolute;
    right: -11px;
    top: 0;
    width: 2px;
    height: 135px;
    background-color: #e2e2e2;
}
.ct_lhs_main .lhs_inner a {
    display: block;
}
.ct_lhs_main .lhs_inner .img a img {
    min-height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
.ct_lhs_main .lhs_inner .img {
    margin: 0 0 35px;
}

.ct_lhs_main .lhs_inner .cnt h3 {
    font-size: 20px;
    line-height: 36px;
    text-transform: uppercase;
    color: #000000;
    font-family: 'ntjosefine';
    text-align: center;
	margin: 0;
}
.ct_lhs_main .bann_btn_wrap {
    padding-top: 60px;
    text-align: center;
}
.ct_lhs_main .bann_btn_wrap a.cmn_btn:not(:last-child) {
    margin-right: 10px;
}

/*===== Review Section Css =====*/

.ct_review_sec .ct_revinn {
    background-color: #f8f8f8;
    padding: 45px 50px;
}
.ct_review_sec .ct_mainslider {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    padding: 0 160px;
}
.ct_review_sec .ct_mainslider .review_item {
    text-align: center;
}
.ct_review_sec .ct_mainslider h3 {
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'ntjosefine';
    margin: 0 0 30px;
}
.ct_review_sec .ct_mainslider p {
	margin: 0 0 40px;
}
.ct_review_sec .ct_mainslider a.revnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    cursor: pointer;
    z-index: 1;
}
.ct_review_sec .ct_mainslider a.prev {
    left: 0;
}
.ct_review_sec .ct_mainslider a.next {
    right: 0;
}
.review_slider.owl-theme .owl-dots {    
	margin: 25px 0 0 !important;
    text-align: center;
}
.review_slider.owl-theme .owl-dots .owl-dot span {    
	background: #fff;    
	margin: 0 5px;	
	width: 95px;	
	height: 4px;	
	border-radius: 0px;	
	background: #fff;	
	transition: all 0.5s ease-in-out;
}
.review_slider.owl-theme .owl-dots .owl-dot span:hover,
.review_slider.owl-theme .owl-dots .owl-dot.active span {    
	background: #373737;
}


/*===== Treatment Section =====*/


.ct_treatment_sec {
    background-color: #fff;
    padding: 80px 0 80px;
}
.ct_treatment_sec .ct_intt .ct_ttimg {
    max-height: 608px;
    overflow: hidden;
    margin: 0px 0 60px;
}
.ct_treatment_sec .ct_intt .ct_ttimg img {
    min-height: 608px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    display: block;
}
.ct_treatment_sec .ct_intt .ct_ttimg a {
    display: block;
}
.ct_treatment_sec .ct_intt:hover .ct_ttimg img {
    transform: scale(1.3);
}
.ct_treatment_sec .ct_intt .ct_ttcnt .title h3 {
	line-height: 1.2;
	color: #000;
	margin: 0 0 30px;
	font-family: 'ntjosefine';
	text-transform: uppercase;
}
.ct_treatment_sec .ct_intt p {
    line-height: normal;
    color: #000;
}
.ct_treatment_sec .ct_intt .cnt {
    margin: 0 0 30px;
}


/* ==========================================================================
   Footer
   ========================================================================== */


footer#main_footer {
    background-color: #0a0a0a;
    color: #fff;
}


/*===== Footer Top Css =====*/

.footer_top {
    padding: 50px 0;
}
.footer_top a{
	color: #fff;
}
.footer_top a:hover{
	text-decoration: underline;
}
.footer_logo {
    max-width: 355px;
    margin: 0 0 20px;
}
.footer_about_cnt {
    max-width: 405px;
}
.footer_about_cnt p {
    font-size: 17px;
    line-height: 26px;
    margin: 0;
}
.footer_about_cnt p a{
	color: #fff;
}
.footer_about_cnt p a:hover{
	text-decoration: underline;
}
.footer_title h6 {
    font-size: 21px;
    line-height: 1.3;
    margin: 0 0 25px ;
    text-transform: capitalize;
	font-family: 'AlbraRegular';
	font-weight: 400;
}
.footer_links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer_links ul li {
    margin: 0 0 10px;
}
.footer_links ul li a {
    font-size: 17px;
    line-height: 1;
    color: #fff;
}
.footer_links ul li a:hover {
    text-decoration: underline;
}
.footer_contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_contact ul li {
    margin-bottom: 15px;
}
.footer_contact ul li h6 {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 5px;
}
.footer_contact ul li p {
    font-size: 16px;
    margin: 0;
}
.social_links {
    padding-top: 50px;
}
.social_links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.social_links ul li:first-child{
    margin: 0;
} 
.social_links ul li {
    display: inline-block;
    margin: 0 15px;
    font-size: 25px;
}
.social_links ul li a {
    display: block;
	color: #fff;
}
.social_links ul li:nth-child(1) a:hover {
	color: #4267B2;
}
.social_links ul li:nth-child(2) a:hover {
	color: #1DA1F2;
}
.social_links ul li:nth-child(3) a:hover {
	color: #FF0000;
}
.social_links ul li:nth-child(4) a:hover {
	color: #DD2A7B;
}
.subcribe_form_wrap form {
    position: relative;
    padding-right: 135px;
}
.subcribe_form_wrap form input[type="email"] {
    padding: 12px 20px;
    background-color: transparent;
    border-color: #f9f9f9;
    font-size: 17px;
    color: #fff;
    font-weight: 400;
    margin: 0;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
.subcribe_form_wrap form input[type="email"]:hover,
.subcribe_form_wrap form input[type="email"]:focus{
	border-color: #51535c;
}
.subcribe_form_wrap form input[type="email"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
}
.subcribe_form_wrap form input[type="email"]::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
}
.subcribe_form_wrap form input[type="email"]:-ms-input-placeholder { /* IE 10+ */
	color: #fff;
}
.subcribe_form_wrap form input[type="email"]:-moz-placeholder { /* Firefox 18- */
	color: #fff;
}
.subcribe_form_wrap form span.fbtn_wrap {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 135px;
}
.subcribe_form_wrap form span.fbtn_wrap input.submit_btn {
    font-size: 17px;
    font-weight: 700;
    padding: 15px 38px 14px 25px;
    width: 100%;
    line-height: 1;
    display: block;
    border-radius: 0;
    background-color: #fff;
    color: #050505;
    min-height: auto;
}
.subcribe_form_wrap form span.fbtn_wrap span.icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #050505;
    font-size: 18px;
}

/*===== Footer Bottom Css =====*/

.footer_bottom {
    padding: 25px 0;
    border-top: 1px solid #33393a;
}
.footer_copyright p {
    font-size: 17px;
    margin: 0;
}
.foobottom_links {
    text-align: right;
}
.foobottom_links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.foobottom_links ul li {
    display: inline-block;
    margin: 0 25px;
    position: relative;
}
.foobottom_links ul li:not(:last-child):after {
    content: "|";
    position: absolute;
    right: -29px;
    top: 50%;
    font-size: 14px;
    transform: translateY(-50%);
}
.foobottom_links ul li a {
    font-size: 17px;
    line-height: 1;
    color: #fff;
}
.foobottom_links ul li a:hover {
    text-decoration: underline;
}


/* ==========================================================================
   Forms
   ========================================================================== */


/* All Global Forms
   ========================================================================== */



/* Labels */
body label {}

/* One Line Inputs */

body input.form-control,
body select.form-control,
body textarea.form-control,
body input[type="text"],
body input[type="password"], 
body input[type="datetime"], 
body input[type="datetime-local"], 
body input[type="date"], 
body input[type="month"], 
body input[type="time"], 
body input[type="week"], 
body input[type="number"], 
body input[type="email"], 
body input[type="url"], 
body input[type="search"], 
body input[type="tel"], 
body input[type="color"],
body input[type="file"],
body textarea,
body select {
	width: 100%;
	background-color: #ddd;
	padding: 12px 18px;
	height: auto;
	min-height: auto;
	line-height: 1;
	border: 1px solid #000;
	margin-bottom: 20px;
	border-radius: 0;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	outline: none;
	box-shadow: none !important;
}
body textarea.form-control{
	height: 145px;
	resize: none;
}
body select.form-control{
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
}


body input[type="text"]:focus,
body input[type="password"]:focus, 
body input[type="datetime"]:focus, 
body input[type="datetime-local"]:focus, 
body input[type="date"]:focus, 
body input[type="month"]:focus, 
body input[type="time"]:focus, 
body input[type="week"]:focus, 
body input[type="number"]:focus, 
body input[type="email"]:focus, 
body input[type="url"]:focus, 
body input[type="search"]:focus, 
body input[type="tel"]:focus, 
body input[type="color"]:focus,
body input[type="file"]:focus,
body textarea:focus,
body select:focus {
	border-color: #000;
}

/* Separate Styles for Multiple Line Inputs */
body textarea {}
body textarea:focus {}

/* Separate Styles for Drop Downs */
body select {}
body select:focus {}

/* Multiple Selection Inputs */

body input[type="radio"] {}
body input[type="checkbox"] {}


/* Placeholder Text */
.form-control::-webkit-input-placeholder { /* Webkit Browsers */
   color: #000000 !important;
   opacity: 1; 
}
.form-control:-moz-placeholder { /* Firefox 18- */
   color: #000000 !important;
   opacity: 1;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
   color: #000000 !important;
   opacity: 1;
}
.form-control:-ms-input-placeholder { /* IE10 */
   color: #000000 !important;
   opacity: 1;
}


/* ==========================================================================
   Buttons                                              
   ========================================================================== */


/* All Global Buttons (Excluding CTAs)
   ========================================================================== */

body input[type="submit"],
body input[type="button"] {
	cursor: pointer;
	-webkit-appearance: none;
	background-color: #231f20;
    border-radius: 0;
    width: auto;
	padding: 15px 20px 10px;
    line-height: 1;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
	font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
    border: 0 none;
	outline: none;
	box-shadow: none;
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 55px;
}
body input[type="submit"]:hover,
body input[type="button"]:hover {
	background: #ffcd42;
	color: #000;
}

body input[type="submit"]:focus,
body input[type="button"]:focus {
	background: #ffcd42;
	color: #000;
}

.hidden{
	visibility:hidden;
	display: none !important; 
}



/*===== Inner Page Css =====*/


.ct_twocol_bann .banntab {
    display: table;
    width: 100%;
    height: 720px;
}
.ct_twocol_bann .banntab .banncol {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}
.ct_twocol_bann .banntab .banncol.banncol_right {
	background-size: cover;
	background-position: center center;
}
.ct_twocol_bann .banntab .banncol.banncol_left{
	padding-left: var(--conwidth);
}
.ct_twocol_bann .banntab .bann_main_cnt {
    padding: 15px 80px 15px 15px;
}
.ct_twocol_bann .banntab .bann_main_cnt h1 {
    color: #fff;
    font-family: 'ntjosefine';
    text-transform: uppercase;
    margin: 0 0 20px;
    line-height: 1.2;
}
.ct_twocol_bann .banntab .bann_main_cnt p {
    color: #fff;
    line-height: 1.3;
    margin: 0 0 30px;
}
.main_content_wrapper h2 {
    color: #000000;
    text-transform: uppercase;
	margin: 0 0 30px;
	font-family: 'ntjosefine';
}
.main_content_wrapper p {
	margin: 0 0 25px;
}
.abbottom_img {
    padding-bottom: 70px;
}
.abbottom_img .img {
    min-height: 575px;
    width: 100%;
    background-size: cover;
    background-position: center center;
}

/*==== Bridal Makeup Css =====*/

.page-template-page-bridal-makeup .main_content_wrapper.cmn_padd {
    padding-bottom: 10px;
}
.pos_right_img.banner_section {
    height: 720px;
    width: 100%;
    display: table;
    position: relative;
}
.pos_right_img.banner_section .banninn {
    display: table-cell;
    vertical-align: middle;
	position: relative;
    z-index: 1;
    width: 100%;
}
.pos_right_img.banner_section .banninn .bann_caption {
    max-width: 40%;
}
.pos_right_img.banner_section .right_img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    max-width: 60%;
    width: 100%;
}
.pos_right_img.banner_section .right_img img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: auto;
    width: auto;
    object-fit: cover;
    object-position: center;
}
.pos_right_img.banner_section .banninn h1{
    color: #fff;
    font-family: 'ntjosefine';
    text-transform: uppercase;
    margin: 0 0 20px;
    line-height: 1.2;
}
.pos_right_img.banner_section .banninn p {
    color: #fff;
    line-height: 1.3;
    margin: 0 0 30px;
}
.ctmser_box {
    padding-left: 45px;
    padding-right: 45px;
    margin-bottom: 60px;
    margin-top: 60px;
}
.ctmser_box .title h4 {
    font-size: 31px;
    text-transform: uppercase;
    margin: 0 0 20px;
	font-family: 'ntjosefine';
}
.ctmser_box .title h4 a{
	color: #000;
}
.ctmser_box .img {
    max-height: 410px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}
.ctmser_box .img img {
	height: 410px;
	width: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all 0.5s ease-in-out;
	transform: scale(1);
}
.ctmser_box:hover .img img {
    transform: scale(1.3);
}
.ctmser_box .cnt {
    font-size: 20px;
    margin-bottom: 25px;
}

/*=== Booking Section Css ===*/

.ct_booknow_sec {
    background-color: #404042;
    display: table;
    width: 100%;
    height: 700px;
}
.ct_booknow_sec .booknow_col {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}
.ct_booknow_sec .booknow_col.booknow_col_left {
    background-size: cover;
    background-position: center center;
}
.ct_booknow_sec .booknow_col.booknow_col_right{
	padding-right: var(--conwidth);
}
.ct_booknow_sec .booknow_col.booknow_col_right .book_nowcnt {
    padding: 60px;
	color: #fff;
}
.ct_booknow_sec .booknow_col.booknow_col_right .book_nowcnt h2 {
    text-transform: uppercase;
    margin: 0 0 25px;
	font-family: 'ntjosefine';
}
.ct_booknow_sec .booknow_col.booknow_col_right .book_nowcnt p{
	font-size: 20px;
	margin: 0 0 20px;
}


/*===== Cosmetic Injection =====*/

.ct_ci_box.ctmser_box .title {
    background-color: #000;
    padding: 20px;
}
.ct_ci_box.ctmser_box .title h4 {
    margin: 0;
}
.ct_ci_box.ctmser_box .title h4 a {
    color: #fff;
}
.ci_about_sec {
    padding: 70px 0;
    background-color: #f8f8f8;
}
.ci_about_sec .ci_abvidimg {
    min-height: 385px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci_about_sec .ci_abvidimg a.play_cion {
    background-color: rgba(255,255,255,.78);
    padding: 10px 30px;
    border-radius: 0px;
    font-size: 35px;
    color: #000;
}
.ci_about_sec .vid_wrapper {
    padding-left: 45px;
}
.ci_about_sec .abcnt_inr h2 {
    text-transform: uppercase;
    margin: 0 0 20px;
	font-family: 'ntjosefine';
}
.ci_about_sec .abcnt_inr p {
	margin-bottom: 25px;
}


/*=== Hair Removal Section ===*/

.ct_hrp_sec {
    padding-top: 50px;
    padding-bottom: 50px;
}
.ct_hrp_sec .top_cnt {
    text-align: center;
    margin: 0 0 65px;
}
.ct_hrp_sec .top_cnt h2 {
    color: #000000;
    text-transform: uppercase;
    margin: 0;
	font-family: 'ntjosefine';
}
.hrp_slider_wrap {
    padding: 0 50px;
    position: relative;
}
.hrp_slider_wrap a.ctnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    cursor: pointer;
    z-index: 1;
}
.hrp_slider_wrap a.prev {
    left: 0;
}
.hrp_slider_wrap a.next {
    right: 0;
}
.hrp_slider .slider_item {
    background-color: #404042;
	overflow: hidden;
}
.hrp_slider .slider_item .hrp_type {
    position: relative;
    min-height: 165px;
    background-color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .hrp_slider .slider_item .hrp_type:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 0;
    width: 0;
    border-left: 250px solid transparent;
    border-right: 250px solid transparent;
    border-top: 180px solid #555;
    transform: translateX(-50%);
} */
.hrp_slider .slider_item .hrp_type span {
    position: relative;
    z-index: 1;
    font-size: 40px;
    text-align: center;
    display: block;
	padding: 25px 25px;
    text-transform: uppercase;
	font-family: 'ntjosefine';
	color: #fff;
}
.hrp_slider .slider_item .hrp_item_inn {
	color: #fff;
}
.hrp_slider .slider_item .hrp_item_inn .hrp_price {
    text-align: center;
    padding: 50px 50px 25px;
    font-family: 'ntjosefine';
    font-size: 40px;
}
.hrp_slider .slider_item .hrp_item_inn .hrp_price span.ctptitle {
    display: block;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
}
.hrp_slider .slider_item .hrp_item_inn .hrp_price .pbox {
    border-bottom: 1px solid #fff;
    padding: 0 0 10px;
    margin-bottom: 20px;
}
.hrp_slider .slider_item .hrp_item_inn .hrp_price .pbox:last-child {
    margin: 0;
    padding: 0;
    border: 0 none;
}
.hrp_slider .slider_item .hrp_item_inn .hrp_content {
    padding: 0px 50px 50px;
    font-size: 20px;
    text-align: center;
}
.hrp_slider .slider_item .hrp_item_inn .hrp_btn_wrap {
    text-align: center;
    padding: 0 50px 50px;
}
.ct_benefit_sec {
    padding: 65px 0 25px;
    position: relative;
}
.ct_benefit_sec .benefit_sec {
    background-color: #f8f8f8;
	margin-bottom: 50px;
}
.ct_benefit_sec .benefit_wrap .becnt_col_left {
    width: calc((100% - 685px) / 2);
    float: left;
}
.ct_benefit_sec .benefit_wrap .becnt_col_right {
    width: calc((100% - 685px) / 2);
    float: right;
}
.ct_benefit_sec .benefit_wrap .be_center_img {
	position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.ct_benefit_sec .benefit_wrap .becnt.becnt_col {
    padding: 40px 15px;
}
.ct_benefit_sec .benefit_wrap .becnt.becnt_col h3 {
    font-size: 31px;
    margin: 0 0 20px;
    color: #000;
    font-family: 'ntjosefine';
    text-transform: uppercase;
}
.ct_benefit_sec .bann_btn_wrap {
    text-align: center;
}

/*=== How It Works Section ===*/

.ct_hiw_sec {
    padding: 70px 0;
}
.ct_hiw_sec .hiw_wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}
.ct_hiw_sec .hiw_wrapper .hiw_box {
    width: 33.333%;
    float: left;
    min-height: 482px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	padding: 50px;
}
.ct_hiw_sec .hiw_wrapper .hiw_box .hiw_box_inner {
    padding: 20px;
}
.ct_hiw_sec .hiw_wrapper .hiw_box.hiw_box_img {
    background-size: cover;
    background-position: center center;
}
.ct_hiw_sec .hiw_wrapper .hiw_box h4 {
    font-size: 31px;
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 15px;
	font-family: 'ntjosefine';
}
.ct_hiw_sec .hiw_wrapper .hiw_box h4 {
    font-size: 31px;
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 15px;
}
.ct_hiw_sec .hiw_wrapper .hiw_box p {
    color: #000000;
}
.ct_hiw_sec .hiw_wrapper .his_box_5.hiw_box {
    background-color: #404042;
    color: #fff;
}
.ct_hiw_sec .hiw_wrapper .his_box_5.hiw_box *{
    color: #fff;
}
.ct_hiw_sec .hiw_wrapper .his_box_5.hiw_box h2 {
    text-transform: uppercase;
    margin: 0;
	font-family: 'ntjosefine';
}


/*====== Event Page Css ======*/

.ct_event_bann.banner_section {
    display: table;
    width: 100%;
    height: 700px;
    padding: 75px 0;
}
.ct_event_bann.banner_section .banninn {
    display: table-cell;
    vertical-align: middle;
}
.ct_event_bann .banncnt h1 {
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 30px;
}
.ct_event_bann .banncnt p {
    color: #fff;
}
.ct_event_bann .banncnt .content_countdown .element_conteiner {
    margin-top: 15px;
    padding: 0 25px;
}
.ct_event_bann .banncnt .content_countdown .element_conteiner span.time_left {
    background-color: transparent !important;
    border-radius: 0px !important;
    font-size: 30px !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    font-family: "Inter" !important;
    text-align: center !important;
    position: relative;
    padding: 15px 20px !important;
    height: 75px;
    width: 75px;
    margin: 0 0 16px !important;
}
.ct_event_bann .banncnt .content_countdown .element_conteiner span.time_left:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 2px solid #fff;
    transform: rotate(45deg);
}
.ct_event_bann .banncnt .content_countdown .element_conteiner span.time_description {
    font-size: 15px !important;
    letter-spacing: 0px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-family: "Inter" !important;
    margin: 25px 0 0 !important;
}
.ct_event_bann .bann_btn_wrap {
    text-align: center;
    padding-top: 45px;
}
.ct_mainevent_wrap .inn_event_block {
    margin-bottom: 75px;
    padding: 0 25px;
}
.ct_mainevent_wrap .inn_event_block .event_image {
    margin: 0 0 25px;
}
.ct_mainevent_wrap .inn_event_block .event_image a {
    display: block;
}
.ct_mainevent_wrap .inn_event_block .event_image a img {
    min-height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
.ct_mainevent_wrap .inn_event_block .event_meta {
    font-size: 14px;
    color: #7a7a7a;
    margin: 0 0 30px;
}
.ct_mainevent_wrap .inn_event_block .event_meta span.mbox:not(:last-child) {
    margin-right: 25px;
}
.ct_mainevent_wrap .inn_event_block .event_cnt {
    margin-bottom: 30px;
}
.ct_mainevent_wrap .inn_event_block .event_cnt h4 {
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    font-family: "N TJosefine";
}
.ct_mainevent_wrap .inn_event_block .event_cnt p {
    color: #000000;
}

/*===== Contact Page Css =====*/

.ct_contactus_bann.banner_section {
    min-height: 720px;
    display: table;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.ct_contactus_bann.banner_section .banninn {
    display: table-cell;
    vertical-align: middle;
}
.ct_contactus_bann.banner_section .banninn:before {
    content: "";
    height: 75%;
    max-width: 650px;
    width: 100%;
    background-image: url(../images/contact-us-d.png);
    background-position: left 0px top 0px;
    background-size: 100% 100%;
    position: absolute;
    left: calc(var(--conwidth) - 150px );
    top: 65px;
    z-index: 1;
    transform: rotate(0deg);
}
.ct_contactus_bann.banner_section .banninn:after {
    content: "";
    height: 100%;
    max-width: 700px;
    width: 100%;
    background-color: #414143;
    position: absolute;
    left: calc(var(--conwidth) - 150px );
    top: 0;
    transform: rotate(45deg);
}
.ct_contactus_bann.banner_section .banninn .bann_caption {
    position: relative;
    max-width: 550px;
    z-index: 100;
}
.ct_contactus_bann.banner_section .banninn .bann_caption h1 {
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
}
.ct_contactus_bann.banner_section .banninn .bann_caption p {
    letter-spacing: 0px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 25px;
}
.ct_contactus_bann.banner_section .bann_btn_wrap {
    margin-top: 50px;
}
.ct_contact_main {
    padding-bottom: 75px;
}
.ct_contact_main .top_title {
    margin: 0 0 100px;
}
.ct_contact_main .top_title h2 {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    font-size: 70px;
    line-height: 1;
}
.ct_contact_main .mainform {
    padding-right: 75px;
}
.ct_contact_main form .form_grp {
    position: relative;
    margin-bottom: 50px;
}
body .ct_contact_main form .form_grp .form-control {
    background: transparent;
    border: 2px solid transparent;
    border-bottom: 2px solid #000;
    padding: 10px;
    margin: 0;
    transition: all 0.3s ease-in-out;
}
body .ct_contact_main form .form_grp.focused .form-control,
body .ct_contact_main form .form_grp .form-control:focus{
    border-color:  #000;
}
.ct_contact_main form .form_grp label {
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    letter-spacing: 0px;
    color: #000000;
    font-weight: 400;
}
.ct_contact_main form .form_grp.focused label {
    top: -30px;
}
body .ct_contact_main form input[type="submit"]{
    display: inline-block;
    background-color: #000000;
    color: #fff;
    padding: 10px 20px;
    line-height: 1;
    font-size: 15px;
    border: 1px solid #000;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
    border-radius: 0;
    min-height: auto;
    transition: all 0.3s ease-in-out;
}
body .ct_contact_main form input[type="submit"]:hover,
body .ct_contact_main form input[type="submit"]:focus{
    box-shadow: 6px 6px 1px rgb(0 0 0 / 50%);
}
.contact_details .con_box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact_details .con_box ul li {
    display: block;
    margin: 0 0 50px;
}
.contact_details .con_box ul li h6 {
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 15px;
}
.contact_details .con_box ul li p {
    letter-spacing: 0px;
    color: #000000;
    font-weight: 400;
}
.ct_contact_main .social_links h6 {
    font-family: 'ntjosefine';
    font-size: 15px;
    text-transform: uppercase;
}
.ct_contact_main .social_links ul li a {
    height: 35px;
    width: 35px;
    border: 2px solid #231f1f;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #231f1f;
    line-height: 1;
}
.ct_contact_main .social_links ul li {
    font-size: 20px;
    margin: 0 5px;
}


.leaflet-control-attribution.leaflet-control {
    display: none;
}



/*===== Woocommerce Page Css =====*/


/*===== Product Page Css =====*/

header.woocommerce-products-header.pg_promain_title h1 {
    text-transform: uppercase;
}
.woocommerce ul.products li.product .archive-img-wrap, 
.woocommerce-page ul.products li.product .archive-img-wrap {
    background-color: #f9f9f9;
    padding: 35px;
    text-align: center;
	margin-bottom: 20px;
	display: flex;
    align-items: center;
    justify-content: center;
	max-height: 350px;
    min-height: 350px;
	overflow: hidden;
}
.woocommerce ul.products li.product .archive-img-wrap img.attachment-woocommerce_thumbnail, 
.woocommerce-page ul.products li.product .archive-img-wrap img.attachment-woocommerce_thumbnail {
    max-height: calc(350px - 70px);
    height: auto !important;
    display: inline-block;
	margin: 0;
	transition: all 0.5s ease-in-out;
    transform: scale(1);
}
.woocommerce ul.products li.product:hover .archive-img-wrap img.attachment-woocommerce_thumbnail, 
.woocommerce-page ul.products li.product:hover .archive-img-wrap img.attachment-woocommerce_thumbnail{
	transition: all 0.5s ease-in-out;
    transform: scale(1.1);
}
.woocommerce ul.products li.product  h2.woocommerce-loop-product__title,
.woocommerce-page ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 30px;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 15px;
}
.woocommerce ul.products li.product a.added_to_cart{
	margin-left: 15px;
}
.woocommerce nav.woocommerce-pagination {
    padding: 25px 0 15px;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li a,
.woocommerce nav.woocommerce-pagination ul.page-numbers li span {
    font-size: 20px;
    padding: 10px 15px;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover, 
.woocommerce nav.woocommerce-pagination ul li span.current{
	background: #414143;
	color: #fff;
}
.woocommerce ul.products li.product .pprice_rating, 
.woocommerce-page ul.products li.product .pprice_rating {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 10px;
}
.woocommerce ul.products li.product .pprice_rating .star-rating, 
.woocommerce-page ul.products li.product .pprice_rating .star-rating {
	order: 2;
    margin-left: 20px;
    margin-bottom: 0;
    font-size: 20px;
}
.woocommerce ul.products li.product .pprice_rating .price,
.woocommerce-page ul.products li.product .pprice_rating .price{
	font-size: 30px;
	font-family: 'ntjosefine';
	margin: 0;
	color: #000;
	max-width: 135px;
}
.woocommerce ul.products li.product .pprice_rating .price  del, 
.woocommerce-page ul.products li.product .pprice_rating .price del {
	font-size: 20px;
    opacity: 1;
    font-family: 'Inter';
	color: #73747c;
}
.woocommerce ul.products li.product .pprice_rating .price  ins, 
.woocommerce-page ul.products li.product .pprice_rating .price ins {
	text-decoration: none;
}
.woocommerce ul.products li.product .pprice_rating .prating-count, 
.woocommerce-page ul.products li.product .pprice_rating .prating-count{
	order: 3;
    margin-left: 10px;
	font-size: 14px;
	min-width: 80px;
}




/*===== Single Product Page Css =====*/

.product_bann_sec.banner_section {
    height: 700px;
    width: 100%;
    display: table;
    padding: 50px 0;
}
.product_bann_sec.banner_section .banninn {
    display: table-cell;
    vertical-align: middle;
}
.product_bann_sec.banner_section .bann_caption {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}
.product_bann_sec.banner_section .banncnt h1 {
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.product_bann_sec.banner_section .banncnt p {
    margin: 0 0 30px;
}
.product_bann_sec.banner_section .bann_caption .bann_btn_wrap {
    text-align: center;
}

.ct_protop_cnt {
    padding: 75px 0 25px;
}
.ct_protop_cnt .content_wrap {
    padding: 15px;
}
.ct_protop_cnt .product_img img.img-fluid {
    max-width: 100%;
    height: auto;
}
.ct_protop_cnt .product_cnt {
    margin: 0 0 45px;
}
.ct_protop_cnt .product_cnt h2 {
    text-transform: uppercase;
    margin: 0 0 30px;
}
.ct_protop_cnt .product_cnt p {
    margin: 0 0 30px;
}
.ct_protop_cnt .product_cnt p:last-child {
    margin: 0;
}
.ct_protop_cnt > .container > .row {
    align-items: center;
}
.woocommerce-page .pg_single_product div.product div.summary form.cart .quantity {
	float: none;
	margin: 0;
	display: inline-block;
}
.woocommerce-page .pg_single_product div.product div.summary form.cart button.single_add_to_cart_button {
    float: none;
    display: inline-block;
    vertical-align: middle;
}
.woocommerce div.product .woo-variation-gallery-wrapper{
	min-height: auto !important;
}
.woocommerce div.product .woo-variation-gallery-wrapper .slick-list img {
    height: auto !important;
    width: 100% !important;
    min-height: 500px;
    max-height: 500px;
    object-fit: cover;
    object-position: center center;
}
.woocommerce div.product .woo-variation-gallery-thumbnail-wrapper .wvg-gallery-thumbnail-image {
    border: 2px solid #fafafa;
    box-sizing: border-box;
	opacity: 1;
}
.woocommerce div.product .woo-variation-gallery-thumbnail-wrapper .wvg-gallery-thumbnail-image img {
    max-height: 150px;
    min-height: 150px;
    width: 100%;
	filter: grayscale(1);
    object-fit: cover;
    object-position: center center;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}
.woocommerce div.product .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image.current-thumbnail img, 
.woocommerce div.product .woo-variation-gallery-wrapper .wvg-gallery-thumbnail-image:hover img{
	filter: none;
}
.woocommerce div.product div.summary h1.product_title {
    font-size: 50px;
    text-transform: uppercase;
}
.woocommerce div.product div.summary .product_meta {
    margin: 0 0 10px;
    font-family: 'ntjosefine';
    font-size: 16px;
    text-transform: uppercase;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    font-size: 35px;
    color: #000;
	font-family: 'ntjosefine';
}
.woocommerce div.product div.summary .product_meta span.sku_wrapper {
    display: none;
}
.woocommerce div.product .woocommerce-product-rating {
    font-size: 20px;
}
.woocommerce-tabs.wc-tabs-wrapper {
    padding: 40px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    margin: 0;
    background-color: #919090;
    border-radius: 5px 5px 0 0;
    margin: 0 10px 0px 0px;
    padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #fff;
    padding: 15px 35px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border: none;
    background: #000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child {
    margin: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover{ 
	background-color: #000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #fff;
}
.woocommerce div.product .woocommerce-tabs .panel {
    background: #fafafa;
    padding: 25px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.2);
	border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-webkit-border-radius: 0px 0px 10px 10px;
	-o-border-radius: 0px 0px 10px 10px;
	-ms-border-radius: 0px 0px 10px 10px;
}
.woocommerce div.product .woocommerce-tabs .panel div#review_form_wrapper {
    background: #ddd;
    padding: 25px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
}
.woocommerce div.product .woocommerce-tabs .panel div#review_form_wrapper span#reply-title {
    display: block;
    margin-bottom: 25px;
    font-size: 27px;
    text-transform: uppercase;
}
.woocommerce form.cart .quantity {
    margin-right: 25px;
    display: inline-block;
    vertical-align: middle;
    background: #ddd;
}
.woocommerce .quantity button.minus,
.woocommerce .quantity button.plus {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
	border: 1px solid #000;
	display: inline-block;
	vertical-align: top;
	font-size: 25px;
    line-height: 1;
}
.woocommerce .quantity input.qty {
	height: 40px;
    width: 60px;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    margin: 0 0 0 -5px !important;
    text-align: center;
}
.woocommerce .quantity button.plus {
    margin-left: -5px;
}
.woocommerce .quantity input.qty::-webkit-inner-spin-button, 
.woocommerce .quantity input.qty::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.woocommerce div.product div.summary .yith-wcwl-add-to-wishlist a {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
}
.woocommerce div.product div.summary .yith-wcwl-add-to-wishlist a:hover {
    box-shadow: 6px 6px 1px rgb(0 0 0 / 50%);
}
.woocommerce div.product div.summary .yith-wcwl-add-to-wishlist span.feedback {
    margin-right: 15px;
}
.woocommerce table.shop_table.wishlist_table td {
    text-align: left;
}

/*==== Related Product Page Css ====*/

.pg_single_product section.related.products {
    padding-top: 35px;
}
.pg_single_product section.related.products .rel_title {
    text-align: center;
    margin-bottom: 60px;
}
.pg_single_product section.related.products .rel_title h2 {
    display: inline-block;
    margin: 0;
    padding: 15px 20px;
    border: 2px solid #000;
}


/*===== Cart Page Css =====*/

.woocommerce #content table.cart td.actions .input-text, 
.woocommerce table.cart td.actions .input-text, 
.woocommerce-page #content table.cart td.actions .input-text, 
.woocommerce-page table.cart td.actions .input-text{
	width: 170px;
    min-height: 37px;
    line-height: 22px;
}
.woocommerce-cart form.woocommerce-cart-form td.product-thumbnail img {
    max-width: 100px !important;
}
.woocommerce-wishlist.woocommerce table.wishlist_table thead th {
    border-top: 0 none;
} 
.woocommerce-cart .wc-proceed-to-checkout {
    text-align: right;
}

/*=== My Account Page Css ===*/

.woocommerce nav.woocommerce-MyAccount-navigation {
    background-color: #ddd;
    padding: 20px;
    border-radius: 10px;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul > li {
    padding: 10px 0;
    position: relative;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul > li:before {
    content: "\f0da";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
	margin-right: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*=== Hide Download Link on Sidebar ===*/

.woocommerce nav.woocommerce-MyAccount-navigation ul > li.woocommerce-MyAccount-navigation-link--downloads {
    display: none;
}
.woocommerce-message{
	border-top-color: #000;
}

/*=== Checkout Page ===*/

.woocommerce-checkout .woocommerce form .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100%;
    background-color: #ddd;
    padding: 5px 18px;
    height: auto;
    min-height: 43px;
    line-height: 30px;
    border: 1px solid #000;
    margin-bottom: 20px;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    outline: none;
    box-shadow: none !important;
}
.woocommerce-checkout .woocommerce form span.woocommerce-input-wrapper {
    min-height: 43px;
}
.woocommerce-checkout .woocommerce form .form-row .select2-container {
    min-height: 43px;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    margin: 0 !important;
}
.woocommerce-checkout .woocommerce form .select2-container--default .select2-selection--single {
    border: navajowhite;
    min-height: 43px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}
.woocommerce #reviews #comments ol.commentlist {
    padding: 0;
    margin-bottom: 15px;
}



/*===== error message css =====*/

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output{
	margin: 0;
	padding: 20px 0;
	border: 0 none;
	color: #f00;
}



/*===== Pricing Table Css =====*/

.ctpricing_table ul.nav-tabs{
	overflow: hidden;
    position: relative;
	padding: 0;
    margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.ctpricing_table ul.nav-tabs li{
	border-radius: 5px;
	display: inline-block;
    position: relative;
	margin: 0 5px;
	padding: 0;
}
.ctpricing_table ul.nav-tabs li button.nav-link{
	background-color: #919090;
    border-radius: 5px 5px 0 0;
	color: #fff;
    padding: 12px 20px;
	border: 0 none;
	box-shadow: none;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.375;
	width: 100%;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.ctpricing_table ul.nav-tabs li button.nav-link.active,
.ctpricing_table ul.nav-tabs li button.nav-link:hover{
	background: #000;
	color: #fff;
}
.ct_pricing_cnt {
    background: #f5f4f4;
    padding: 35px;
}
.ct_pricing_cnt table.table.table-bordered {
    border-color: #000;
    margin: 0;
}
.ct_pricing_cnt table.table > thead tr th {
    background: #726e6e;
    color: #fff;
    border-color: #f5f4f4;
    padding: 7px 15px;
}
.ct_pricing_cnt table.table > tbody tr td {
    padding: 7px 15px;
}
.ct_pricing_cnt table.table > tbody tr td:last-child{
	width: 252px;
	text-align: center;
}
.ct_pricing_cnt table.table > tbody tr td:first-child{
	width: 252px;
}
.ct_pricing_cnt table.table > tbody tr td a{
	font-size: 14px;
}

.ctpricing_table{
	max-width: 80%;
	width:100%;
	margin: 0 auto;
		
}

.ct_btm_sec {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.ct_btm_sec h2 {
    text-transform: uppercase;
    color: #000;
    font-family: 'ntjosefine';
    text-align: center;
    margin: 0 0 30px;
}

.ct_btm_sec p {
    letter-spacing: 0px;
    color: #000000;
    font-weight: 400;
    font-family: "Inter";
    text-align: center;
}


/*@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
    
    .ct_pricing_cnt table, thead, tbody, th, td, tr { 
        display: block; 
    }

    .ct_pricing_cnt thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .ct_pricing_cnt tr { border: 1px solid #ccc; }
    
    .ct_pricing_cnt td { 
        / Behave  like a "row" /
        / border: none; /
        border: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    
    .ct_pricing_cnt td:before { 
        / Now like a table header /
        position: absolute;
        / Top/left values mimic padding /
        top: 0px;
        left: 0;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
    .page-id-20 td:nth-of-type(1):before { content: "hfgiahe"; }
    .page-id-20 td:nth-of-type(2):before { content: "Single Session"; }
    .page-id-20 td:nth-of-type(3):before { content: "Course( 3 Session )"; }

}*/


/*===== Pricing Table Mobile =====*/

.thead-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-bottom-btn.bann_btn_wrap {
    align-items: flex-end;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.label-1{
    font-weight:600;
}
.row-1{
    justify-content:space-between;
    display:flex;
    padding:10px;
    background:#fff;
}
.label-2{
    font-weight:600;
}
.row-2{
    justify-content:space-between;
    display:flex;
    padding:10px;
    background:#d3d3d3;
}

.ct_spec_sec {
    display: none;
}
.tab-whatever { display: none; }
.tab-whatever.active { display: block; }

/*===== Pricing Table Mobile Ends Here =====*/





.et_ctbtn {
    padding: 35px 0 0;
}

.bann_btn_wrap > div, .bann_btn_wrap > a {
    display: inline-block;
    vertical-align: middle;
}
.bann_btn_wrap > div {
    padding: 0px !important;
}


.cth_booknowbtn {
    padding-right: 25px;
}
.cth_booknowbtn a.headbtn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 10px 15px;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    animation: myanimation 2s infinite;
}
@keyframes myanimation {
  0% {background-color: #fff; color: #000;}
  50% {background-color: #ff616a; color: #fff;}
  75% {background-color: #fff; color: #000;}
}
.cth_booknowbtn.disabled a.headbtn {
    animation: none;
    opacity: 0.2;
    pointer-events: none;
}
.pagination_wrp {}

.pagination_wrp .nav-links {
    text-align: center;
    padding: 20px 0;
}

.pagination_wrp nav.navigation.pagination {
    display: block;
}

.pagination_wrp .nav-links .page-numbers {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 1;
    padding: 15px 15px;
}

.pagination_wrp .nav-links .page-numbers.current,.pagination_wrp .nav-links .page-numbers:hover {
    background-color: #ddd;
    color: #000;
}
.header_top .toplinks ul > li > ul.submenu > li .dgwt-wcas-search-wrapp button.dgwt-wcas-search-submit {
    display: none !important;
}
.header_top .toplinks ul > li > ul.submenu > li .dgwt-wcas-search-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 13px 24px !important;
}
.header_top .toplinks ul > li > ul.submenu > li .dgwt-wcas-search-wrapp .dgwt-wcas-close:not(.dgwt-wcas-inner-preloader) {
    right: 25px !important;
    margin: 0;
}