
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	overflow-x: hidden;
	font-family: "Poppins", sans-serif;
	color: black;
}


.body{
	width: 100%;
}
.body .header .inner{
	padding-top: 100px;
	margin: auto;
}
.body .header .inner>img{
	width: 100%;
	height: 500px;
	object-fit: cover;
	max-width: 1250px;
	margin: auto;
	margin-bottom: 80px;
	border-radius: 19px;
	animation: toggleUp 900ms ease-in-out alternate;	

}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.popup-close {
    float: right;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

.popup_content h3{
	color: red;
}






.add_to_cart_from_interested_box{
	text-align: center;
    display: block;
	width: 150px;
    border-radius: 25px;
    background: #000000;
    color: #FFFFFF;
    padding: 5px 10px;
	cursor: pointer;
    transition: background 0.3s ease;
}

.add_to_cart_from_interested_box:hover{
	background: #b5207a;
}




.guest_or_user_container{
	margin: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #e6e6e6;
	padding: 20px 0;
	z-index: 100;
}

.guest_or_user_inner{
	padding: 0 20px;
	display: flex; 
	justify-content: space-between;	
	align-items: center;
	max-width: 1500px;
	margin: auto;
}

.guest_or_user_col1{
	width: 50%;
	display: flex; 
}

.guest_or_user_col1 span{
	font-size: 25px;
}

.guest_or_user_col1 .label_total{
	font-weight: 400;
}

.guest_or_user_col1 .label_amount{
	font-weight: 500;
	margin-left: 5px;
}

.guest_or_user_col2{
	width: 50%;
	display: flex; 
	justify-content: center;	
}

.guest_or_user_inner a{
	background: #b52281; border-radius: 15px; padding: 10px 20px; color: #FFFFFF; width: 50%; text-align: center; margin: 5px;
	display: flex;flex-direction: column; align-items: center;
	justify-content:center;
	transition: background 0.3s ease;
	border: 3px #ffb9e4 solid;
	font-size: 14px;
	text-decoration: none !important;
}

.guest_or_user_inner a span{
	color: #FFFFFF;
}

.guest_or_user_inner a:hover{
	background: #58163f;
}



.static_content{
	max-width: 1234px;
    margin: auto;
    padding: 100px 75px 10px 75px;	
}

.static_content .mid_col ul{
    margin: 0px 0;
    padding: 0 0 2px 0px;
    list-style: none;	
}

.static_content .mid_col ul li{
	text-decoration: none;
    font-weight: normal;
    line-height: 20px;
    padding: 0px 0 0px 23px;
    margin: 10px 0;
    background: url(../images/arrow-ho.png) no-repeat 0px 5px;
}

.mid_col ul li {
    text-decoration: none;
    font-weight: normal;
    font-size: 13px;
    line-height: 22px;
    padding: 0px 0 0px 23px;
    margin: 0 0 0px 0;
    background: url(../images/arrow-ho.png) no-repeat 0px 5px;
}

.course_by_teacher{
    margin-right: 5px; 
    margin-bottom: 5px; /* Add bottom margin too */
    font-size: 11px; 
    background: #ffffff;
    border-radius: 15px;
    padding: 5px 10px;
    border: 1px #ebaed2 solid;
    display: inline-block; /* This helps with spacing */
}


@media screen and (max-width:680px){
	body{
		overflow-x: hidden;
	}
}

h1{	
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
	margin-bottom: 40px;
	font-size: 67px;
	line-height: 1.1em;
	transition: color 0.6s ease;
	animation: toggleUp 900ms ease-in-out alternate;	
}

h1:first-letter{
	text-transform: capitalize;
}

@media screen and (max-width:680px){
	h1{
	font-size: 40px;
	line-height: 45px;

}
}

h4, h5, h6{
    color: #721953;
    padding: 20px 0 10px 0;
}

a{
    text-decoration: underline;
    color: #b5207a;
    outline: none;
    cursor: pointer;	
}



h2{
	color: #1b1d21;
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.4em;
	transition: 0.6s ease;
	animation: toggleUp 900ms ease-in-out alternate;	
}
h3{
	font-size: 25px;
	margin: 10px 0;
	animation: toggleUp 900ms ease-in-out alternate;	
}

h4{
}

p{
	font-size: 16px;
	line-height: 30px;
}

a{
	text-decoration: none;
	cursor: pointer;
}

ul, li{
    text-decoration: none;
	list-style: none;
}
li{
	font-size: 16px;
	line-height: 30px;
}

button{
  cursor: pointer;
}


@keyframes toggleUp{
	
	from{
		opacity: 0;
		transform: translateY(5%);
	}
	to{
		opacity: 1;
		transform: translateY(0%);
	}	
}


@keyframes toggleDown{
	
	from{
		opacity: 0;
		transform: translateY(-5%);
	}
	to{
		opacity: 1;
		transform: translateY(0%);
	}	
}



.sub_category_box{
	display: block; 
	margin:20px 0; 
    padding: 20px;
    border-radius: 20px;
	background: #fdf2f8;
	border: 1px #b61f7a solid;
	transition: background 0.3s ease;
    box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 6px 9px rgb(0 0 0 / 20%);
}

.sub_category_box:hover{
	background: #ffffff;
}




/* com_newsletter_1:start*/
.com_newsletter_1{
	background: #8c065d;
	padding: 60px 0;
}

.com_newsletter_1_head{
	padding: 0 40px;
	text-align: center;
}

.com_newsletter_1_head h3{
	color: #FFFFFF;
	
}

.com_newsletter_1_head p{
	font-size: 15px;
	margin-top: 5px;
	color: #FAFAFA;
	
}

.com_newsletter_1_body{
	padding: 20px 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	max-width: 600px;
	margin: auto;
}

.com_newsletter_1_body input{
	padding: 7px;
	margin: 5px;
}

.com_newsletter_1_body button{
	padding: 7px 12px;
	background: #4e1438;
	color: #FFFFFF;
	border:2px #ffffff solid;
	margin: 5px;
	border-radius: 25px;
}

.com_newsletter_1_footer{
	display: none;
	text-align: center;
}

.com_newsletter_1_footer p{
	font-size: 14px;
	color: red;
}

/* com_newsletter_1:end*/



/*com_accordian_1:start*/

.com_accordion_1{
	width: 100%;
	padding: 200px 0 0 0;
}

.com_accordion_1_inner{
	margin: auto;
	max-width: 1234px;
	padding: 0;
/*	display: flex;*/
/*	flex-direction: row;*/
}

.com_accordion_1_inner h1, .com_accordion_1_inner h2, .com_accordion_1_inner h3{
	font-size: 28px;
	margin-bottom: 20px;
}

.com_accordion_1_inner .col_1{
/*	width: 50%;*/
}

.com_accordion_1_inner .col_2{
/*	width: 50%;*/
}

.accordion_menu_wrapper{
/*	width: 500px;*/
}

.accordion_menu_wrapper ul{
	list-style: none;
	padding: 0 !important;
}
.accordion_menu_wrapper ul li{
	line-height: inherit !important;
	margin: 0 !important;
	padding: 10px 0 !important;
	background: none !important;
	border-bottom: 1px solid #1b1b1b;
	cursor: pointer;
	font-size: 16px !important;
	font-weight: 500;
}

@media (max-width:767px){
	
	
	
/* com_newsletter_1:start*/
	.com_newsletter_1_body{
		flex-direction: column;
	}
/* com_newsletter_1:end*/	
	
	
	.com_accordion_1_inner{
/*		padding: 10px 0;*/
		flex-direction: column;
		text-align: center;
	}
	
	
.com_accordion_1_inner h2{
	text-align: left;
	font-size: 20px;
	margin-bottom: 20px;
}	
	.com_accordion_1_inner .col_1{
	width: 100%;
}

	.com_accordion_1_inner .col_2{
	width: 100%;
	text-align: left;
}
	.accordion_menu_wrapper{
	width: 100%;
}
}
/*
.accordion_menu_wrapper ul li i{
	float: right;
}
*/
.accordion_li{
	position: relative;
}
.accordion_li::before {
  content: '+';
  color: #1b1b1b;
  position: absolute;
  top: 24px;
  right: 0px;
  font-size: 30px;
  transform: translateY(-50%);
}
.accordion_active::before {
  content: '-';
  color: #1b1b1b;
  position: absolute;
  top: 30px;
  right: 0px;
  font-size: 30px;
  transform: translateY(-50%);
}

.accordion_li_ul{
	max-height: 0;
	overflow: hidden;
	transition: 0.5s ease;
}

.accordion_li_ul li{	
	font-style: italic;
	font-size: 15px;
	font-weight: 400 !important;
}
.accordion_menu_wrapper .accordion_li_ul li{
	border-bottom: none;
	padding: 20px 0px;
}
.accordion_menu_wrapper .accordion_li_ul li:first-child{
	padding-top: 10px;
}
.accordion_show{
	max-height: 300px;
	transition: 0.5s ease;

}
/*com_accordian_1:end*/



/* fav:start*/
.favorite-icon {
	color: #cdcdcd;
    background: none;
    border: none;
    font-size: 24px; /* Adjust icon size */
    cursor: pointer;
    padding: 0;
    margin-left: auto; /* Pushes the favorite icon to the far right within colleft2 */
}

.favorite-icon:hover {
    color: red; /* Or any hover effect */
}
#continueFavorite {
    background-color: #FAFAFA; /* Green */
    color: #787787;
}

#signInFavorite {
    background-color: #921765; /* Blue */
    color: white;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border: 1px solid #888;
    width: 80%; /* Could be more specific, e.g., 300px */
    max-width: 400px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content a {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* fav:end*/



/* com_may_be_interested_1:start*/
.com_may_be_interested_1{
	max-width: 1200px; 
	background: #FFFFFF;
    box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 0 10px rgb(0 0 0 / 10%);
    border-radius: 10px;
    border: 1px #FAFAFA solid;
    display: block;
    justify-content: space-between;
    padding: 2px 40px;
    margin: 0 10px;	
}

.com_may_be_interested_1 h3{
	font-size: 15px; 
	cursor: pointer;
	transition: color 0.3s ease;
}

.com_may_be_interested_1:hover > h3{
	color: #741953;
}

.com_may_be_interested_1 .may_be_interested_list{
	display: none;
	transition: all 0.3s ease;
}

.may_be_interested_heading {
    cursor: pointer;
    position: relative;
}

.may_be_interested_heading .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.may_be_interested_heading.active .arrow {
    transform: rotate(180deg);
}

/* com_may_be_interested_1:end*/

/* com_userdetails_1:start*/
.com_userdetails_1{
	text-align: left; 
	max-width: 1480px;
	margin: auto; 
	display: flex;
	justify-content: center;
}
.com_userdetails_1 .col{
	padding: 30px;
	border: 1px #fafafa solid;
	border-radius: 15px;
	margin: 10px;
	width: 33%;
	box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	max-height: 300px;
	overflow-y: scroll;
}
.com_userdetails_1 .col h2{
	font-size: 20px;
	margin: 0 0 10px 0;
}
.com_userdetails_1 .col p{
	line-height: 1.8em;
	font-size: 12px;
}
.com_userdetails_1 .col .edit_link{
	font-size: 12px;
	color: coral;
	margin: 10px 0;
	transition: color 0.3s ease;
}
.com_userdetails_1 .col .edit_link:hover{
	color: red;
}
/* com_userdetails_1:end*/

/* com_profile_with_submenu:start*/
/* Enhanced Profile Dropdown */
.com_profile_with_submenu {
    position: relative;
    display: inline-block;
}

.profile_trigger {
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile_trigger:hover {
}

.profile_trigger .material-icons {
    color: #1b1b1b;
}

.profile_trigger .dropdown-arrow {
    transition: transform 0.2s ease;
    font-size: 18px;
}

.com_profile_with_submenu.active .dropdown-arrow {
    transform: rotate(180deg);
}

.profile_submenu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 200px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.com_profile_with_submenu.active .profile_submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile_submenu a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.profile_submenu a:last-child {
    border-bottom: none;
}

.profile_submenu a:hover {
    background-color: #f8f9fa;
    color: #6a184d;
}

.profile_submenu a .material-icons {
    margin-right: 12px;
    font-size: 20px;
    color: #666;
}

.profile_submenu a:hover .material-icons {
    color: #6a184d;
}

/* Special styling for different menu items */
.menu-signup {
    background: linear-gradient(135deg, #a72078, #631747);
    color: white !important;
    margin: 8px;
    border-radius: 8px;
    border: none !important;
}

.menu-signup:hover {
    background: linear-gradient(135deg, #4d1437, #631747) !important;
    color: white !important;
}

.menu-signup .material-icons {
    color: white !important;
}


/* com_profile_with_submenu:start*/

/* com_teacher_resources_tabs:start*/
.teacher_resources_tabs{
	display: flex;
	justify-content: space-around;
	padding-bottom: 0px;
	margin-bottom: 40px;
}

.teacher_resources_tabs a{
	text-align: center;
	width: 100%;
	background: #FFFFFF;
	color: #b5217a;
	border-radius: 15px; padding: 10px 20px;  text-align: center; margin: 5px;
	display: flex;flex-direction: column; align-items: center;
	justify-content:center;
	border: 3px #ffb9e4 solid;
	transition: background 0.3s ease;
}

.teacher_resources_tabs a:hover{
	background: #b5217a;
	color: #FFFFFF;
}

.teacher_resources_tabs .tab_active{
	border: 2px white solid;
	background: #b5217a;
	color: #FFFFFF;
}
/* com_teacher_resources_tabs:end*/



/* com_bulk_actions:start*/
.com_bulk_actions .more_actions{
	position: fixed;
	z-index: 999;
	text-align: center;
    bottom: 0px;
    left: 0px;
    background: black;
    width: 100%;
    padding: 30px;
    color: #FFFFFF;
	background: #B4217C;
    background: linear-gradient(242deg, rgba(180, 33, 124, 1) 0%, rgb(84 5 56) 35%);
}
		
/* Hide default checkbox */
.com_bulk_actions .custom-checkbox {
    position: relative;
    display: inline-block;
	margin-top: 20px;
}

.com_bulk_actions .custom-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0;
}

/* Custom checkbox styling */
.com_bulk_actions .custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.com_bulk_actions .custom-checkbox:hover input ~ .checkmark {
    border-color: #6a184d;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* When checkbox is checked */
.com_bulk_actions .custom-checkbox input:checked ~ .checkmark {
    background-color: #6a184d;
    border-color: #6a184d;
}

/* Create the checkmark (hidden when not checked) */
.com_bulk_actions .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show checkmark when checked */
.com_bulk_actions .custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark */
.com_bulk_actions .custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Focus styles for accessibility */
.com_bulk_actions .custom-checkbox input:focus ~ .checkmark {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Demo styles */
.com_bulk_actions .demo-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.com_bulk_actions .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.com_bulk_actions .checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.com_bulk_actions label {
    cursor: pointer;
    user-select: none;
}

.com_bulk_actions .bulk_button {
    padding: 10px;
	border-radius: 10px;
}


.com_bulk_actions .response_area {
    background: green;
	padding: 20px;
}
.com_bulk_actions .response_area p{
    color: #FFFFFF;
	text-align: center;
}


/* com_bulk_actions:end*/








/*com_drop_menu:start*/
.rp_top_right_container{
	position: relative;
}


.com_drop_menu{
	width: 320px;
	height: fit-content;
	position: absolute;
	z-index: 150;
	top: 47px;
	right: 0;
	visibility: hidden;
	opacity: 0;
	background: white;
	border-radius: 15px;
	filter: drop-shadow(2px 2px 3px rgba(0,0,0, 0.2));
	transition: 0.3s ease;
}

.com_drop_menu_inner .business_person_balance_container{
	display: flex;  
	margin-top: 10px;	
}

.com_drop_menu_inner .business_person_balance_container .business_col_balance{
	width: 50%;	
}

.com_drop_menu_inner .business_person_balance_container .business_col_balance .business_balance_title{
	color: #e6e6e6; font-size: 13px; margin-bottom: 5px;
}

.com_drop_menu_inner .business_person_balance_container .business_col_balance .business_balance_amount{
	color: #787787; font-size: 15px;
}

.com_drop_menu_inner .business_person_balance_container .personal_col_balance .personal_balance_title{
	color: #e6e6e6; font-size: 13px; margin-bottom: 5px;
}

.com_drop_menu_inner .business_person_balance_container .personal_col_balance .personal_balance_amount{
	color: #787787; font-size: 15px;
}

.rp_top_right_container:hover .com_drop_menu{
	visibility: visible;
	opacity: 1;
}
.com_drop_menu::after{
	content: "";
	width: 20px;
	height: 20px;
	background: white;
	transform: rotate(45deg);
	position: absolute;
	z-index: 150;
	right: 20px;
	top: -5px;
}

.com_drop_menu_inner .menu_header{
	
}

.com_drop_menu_inner .menu_header .material-icons{
	padding: 5px 10px;
}

.menu_header_profile_photo{
	max-height: 60px;
    max-width: 60px;
    object-fit: contain;
    margin-right: 20px;
    border-radius: 50%;	
}

.com_drop_menu_inner .menu_list li a{
	font-weight: 400;
    margin-right: 35px;
    white-space: nowrap;
    margin: auto;	
}
.com_drop_menu_inner .menu_list li a i{
	margin-right: 5px;	
}
.menu_header{
	display: flex;
	flex-direction: row;
	margin: 15px;
	padding: 15px 0;
	border-bottom: 1px solid lightgrey;

}
.menu_header{
}

.menu_information{
	margin-top: 5px;
}
/*
.menu_information a{
	padding-left: 0px;
}
*/
.menu_header p{
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 5px;
}
.menu_header a{
	font-size: 13px;
	color: black;

}
.menu_header a:hover{
	text-decoration: underline;
	background: none;
	color: black;
}

.menu_list{
	list-style: none;
}

.menu_list li{
	width: 100%;
}
.menu_list a{
	color: black;
	display: block;
	padding: 15px 20px;
	width: 100%;
}
.menu_list a:hover{
	color: white;
	background: lightgrey;
}
.copywrite{
	text-align: center;
	font-size: 12px;
	color: #787787;
	padding: 20px 30px 30px 30px;
}
/*com_drop_menu:end*/






/*com_voucher_1:start*/
.com_voucher_1{
	padding: 20px 0;
}
.voucher_container{
	padding: 15px 0 0 0;
	display: none;
}

.voucher_input{
	padding: 10px;
	width: 100%;
	border: 1px #CCCCCC solid;
	border-radius: 4px;
}
.add_voucher_btn{
	text-decoration: none !important;
	border-radius: 25px;
	padding: 7px 14px;
	font-size: 14px;
	color: red;
	font-weight: bolder;
	box-shadow: 0 0 0 0px rgba(0,0,0,.1), 0 2px 5px rgba(0,0,0,.2);
	transition: background 0.3s ease;
}

.add_voucher_btn:hover{
	background: #e6e6e6;
	color: #FFFFFF;
}
/*com_voucher_1:end*/



/*com_confirmation_box:start*/
 .demo-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .demo-button {
            background-color: #111;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 24px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .demo-button:hover {
            background-color: #333;
        }

        .com_confirmation_box {
            position: fixed;
            top: 30px;
            right: 0;
            width: 380px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            z-index: 1012;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .com_confirmation_box.show {
			border: 2px #d5d5d5 solid;
			position: absolute;
            opacity: 1;
            transform: translateX(0);
			box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 6px 9px rgb(0 0 0 / 20%);
        }

        .com_confirmation_box_inner {
            padding: 20px;
        }

        .confirmation-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .confirmation-status {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            background-color: #0d9488;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .status-text {
            font-size: 16px;
            font-weight: 600;
            color: #111;
        }

        .close-button {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #666;
            padding: 4px;
            border-radius: 4px;
            transition: background-color 0.2s ease;
        }

        .close-button:hover {
            background-color: #f0f0f0;
        }

        .product-info {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
        }

        .product-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }

        .product-details {
            flex: 1;
        }

        .product-name {
            font-size: 14px;
            font-weight: 600;
            color: #111;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .product-color {
            font-size: 12px;
            color: #666;
            margin-bottom: 4px;
        }

        .product-size {
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
        }

        .product-price {
            font-size: 16px;
            font-weight: 600;
            color: #111;
        }

        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .view-cart-btn {
            background-color: #111;
            color: white;
            border: none;
            padding: 12px 16px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .view-cart-btn:hover {
            background-color: #333;
        }

        .checkout-btn {
            background-color: transparent;
            color: #111;
            border: 1px solid #ccc;
            padding: 12px 16px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkout-btn:hover {
            background-color: #f0f0f0;
            border-color: #999;
        }

        @media (max-width: 480px) {
            .com_confirmation_box {
                width: calc(100% - 40px);
                right: 20px;
            }
        }
/*com_confirmation_box:end*/








.thcr-detls{
background: #f7f7f7;
    border: 1px solid #e7e7e7;
    padding: 30px;
    display: block;
/*    float: left;*/
    width: 451px;
    margin-bottom: 14px;
    border-radius: 35px;	
}

.ico-teacher{
/*    float: left;*/
    margin: 8px 0;
	border-radius: 50%;
	border: 6px #f8cee7 solid;
}

.thcr-detls p{
/*float: left;*/
    background: url(../images/ico-teach-sepr.png) top left repeat-y;
    padding: 0 0 0 8px;
/*    width: 388px;	*/
}



/* com_loading_screen_1:start*/
.loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(0deg, rgb(255 159 210) 0%, rgba(255, 255, 255, 1) 35%);
            z-index: 9999;
            transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .logo-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
/*            margin-bottom: 40px;*/
        }

        .logo {
            width: 150px;
            height: auto;
/*            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));*/
/*            animation: logoFloat 3s ease-in-out infinite;*/
        }

        .logo-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .loading-text {
            color: #b4217c;
            font-size: 19px;
			margin:10px 0;
            font-weight: 300;
/*            margin-bottom: 30px;*/
            animation: textPulse 2s ease-in-out infinite;
        }

        .progress-container {
			display:none;
            width: 300px;
            height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 2px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #ffffff, #b51f78);
            border-radius: 2px;
            width: 0%;
            transition: width 0.3s ease;
            animation: progressShimmer 2s linear infinite;
        }

        .loading-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: #b72b7a;
            border-radius: 50%;
            animation: dotPulse 1.4s ease-in-out infinite both;
        }

        .dot:nth-child(1) { animation-delay: -0.32s; }
        .dot:nth-child(2) { animation-delay: -0.16s; }
        .dot:nth-child(3) { animation-delay: 0s; }

        .main-content {
            display: none;
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            min-height: 100vh;
        }

        .main-content.show {
            display: block;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes glow {
            0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
            100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
        }

        @keyframes textPulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        @keyframes progressShimmer {
            0% { background-position: -300px 0; }
            100% { background-position: 300px 0; }
        }

        @keyframes dotPulse {
            0%, 80%, 100% { 
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% { 
                transform: scale(1.2);
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .logo { width: 150px; }
            .loading-text { font-size: 20px; }
            .progress-container { width: 250px; }
            .hero-title { font-size: 2rem; }
        }
/* com_loading_screen_1:end*/


/* category_and_list:start*/
.category_and_list{}
.category_and_list_inner{
	display: flex;
	background: #fbf3f7;
}

.category_and_list_inner_banner{
	border-radius: 10px;
	width: 100%;
}

.category_and_list_inner_col1{
	max-width: 789px;
	margin:auto; 
	width: 100%;
	background: #fce6f2; 
	padding: 0 60px; 
	border-right: 1px rgb(226 204 217) solid; 
}

.category_and_list_inner_col1 .main_cat_link{
	background: #FFFFFF;
}


.squeeze_col1{
	width: 33%; 	
	position: fixed; 
	height: 100vh; 
	z-index:100; 
	/* Safari-specific fixes */
	-webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
	overscroll-behavior: contain; /* Prevent overscroll */
	overflow-y: scroll; 	
}

.category_and_list_inner_col_list{
	padding-left: 33%;
	padding-bottom: 160px;
	min-height: 1100px;
	
	width: 100%;
}


/* category_and_list:start*/



/* com_reviews_3:start*/

.com_reviews_3{
	background: #e6e6e6;
    background: linear-gradient(180deg, rgb(197 197 197) 0%, rgba(255, 255, 255, 1) 35%);	

}
.com_reviews_3_inner{
	padding: 100px 0;
}
     .carousel_container {
            max-width: 1200px;
            width: 100%;
            height: 500px;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
/*            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);*/
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
/*            border: 1px solid rgba(255, 255, 255, 0.2);*/
		 margin: auto;
		 margin-bottom: 0px;
            /* 🆕 ADDED FOR SWIPE FUNCTIONALITY */
            cursor: grab;
            touch-action: pan-y pinch-zoom;		 
		 border: 1px #e1e1e1 solid;
		 
        }

        .carousel-track {
/*
            display: flex;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
*/
        }

        .review-slide {
            height: 100%;
            display: flex !important;
            position: relative;
        }

        .review-content {
            width: 40%;
            padding: 3rem;
            display: flex;
            flex-direction: column;
/*            justify-content: center;*/
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .review-image {
            width: 60%;
            position: relative;
            overflow: hidden;
        }

        .review-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .review-slide:hover .review-image img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            mix-blend-mode: multiply;
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 1.5rem;
        }

        .star {
            width: 20px;
            height: 20px;
            fill: #fbbf24;
            stroke: #fbbf24;
        }

        .review-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #374151;
            margin-bottom: 2rem;
            font-style: italic;
            position: relative;
        }

        .review-text p {
            font-size: 14px;
			line-height: 1.7em;
        }

        .review-text::before {
            content: '"';
            font-size: 4rem;
            color: #b5227e;
            position: absolute;
            top: -1rem;
            left: -1rem;
            font-family: serif;
            opacity: 0.3;
        }

        .reviewer-info h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.25rem;
        }

        .reviewer-info .title {
            font-size: 0.95rem;
            color: #b5227e;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .reviewer-info .company {
            font-size: 0.9rem;
            color: #6b7280;
        }

        .carousel-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 10;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .nav-btn:active {
            transform: scale(0.95);
        }

        .nav-btn svg {
            width: 24px;
            height: 24px;
            stroke: #b5227e;
            stroke-width: 2;
        }

        .carousel-indicators {
            position: absolute;
            top: 2rem;
            right: 2rem;
            display: flex;
            gap: 0.75rem;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.2);
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
        }

        .fade-enter {
            opacity: 0;
            transform: translateY(20px);
        }

        .fade-enter-active {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }

        @media (max-width: 768px) {
            .carousel_container {
                height: auto;
                min-height: 400px;
            }
            
            .review-slide {
                flex-direction: column-reverse;
            }
            
            .review-content,
            .review-image {
                width: 100%;
				height: 500px;
/*                height: 50%;*/
            }
            
            .review-content {
                padding: 2rem;
            }
            
            .carousel-nav {
                bottom: 1rem;
            }
            
            .carousel-indicators {
                top: 1rem;
                right: 1rem;
            }
        }





.testimonials-preview {
    padding: 60px 0;
	background: #FFFFFF;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.preview-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.95);
    min-width: 200px;
}

.preview-item.visible {
    opacity: 1;
    transform: scale(1);
}

.preview-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.preview-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.preview-avatar {
    position: relative;
    flex-shrink: 0;
}

.preview-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

.preview-item.active .preview-avatar img {
    border-color: rgba(255, 255, 255, 0.5);
}

.preview-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-item.active .preview-status {
    opacity: 1;
}

.preview-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
	padding: 0 !important;
}

.preview-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 400;
}





/* com_reviews_3:end*/

/* com_search_2:start*/
.com_search_2{
	
}
.search-container {
    display: flex;
    align-items: center;
	flex-direction: row-reverse; 
    transition: width 0.3s ease;
}

.search-container.expanded {
    width: 300px;
	margin-right: 12px;
	margin-left: 0;
}

.search-icon {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.search-icon:hover {
/*    background: #af207e;*/
}

.search-icon svg {
    width: 22px;
    height: 22px;
    fill: #1b1b1b;
}

.search-icon:hover > svg{
	fill: #af207e;
}

.search-input {
    width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #333;
    font-size: 16px;
    padding: 12px 0;
    margin-left: 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.search-input.expanded {
    width: 220px;
    margin-left: 12px;
    opacity: 1;
}

.search-input::placeholder {
    color: #999;
}

.close-btn {
	margin-left: 10px;
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn.visible {
    display: flex;
}

.close-btn:hover {
    background: #ddd;
}

.close-btn svg {
    width: 12px;
    height: 12px;
    fill: #666;
}
/* com_search_2:end*/

/* com_benefits_2:start*/
.com_benefits_2{
	padding: 0 0;
	margin: auto;
	max-width: 1700px;
}
.com_benefits_2_body{
	max-width: 1420px;
	margin: auto;
	padding: 0 50px;
	display: flex;
	justify-content: space-between;
}

.com_benefits_2_body .booking_summary{
	background: #930256;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100% !important;
    justify-content: center;
    margin-bottom: 0 !important;	
	z-index: 698;
}

.com_benefits_2_body .booking_summary a{
	display: block;
	line-height: 1.5em;
	margin-top: 8px;
	font-size: 13px;
	color: #FFFFFF;
}

.com_benefits_2_body .col{
	margin-bottom: 15px;
	display: flex;
	align-items:flex-start;
	width: 32.5%;
	padding: 20px;
	border-radius: 10px;
	border: 2px #edf1f9 solid;
}
.com_benefits_2_body .col .col_1{
	padding: 5px;
}
.com_benefits_2_body .col .col_2{
	padding: 5px;
}
.com_benefits_2_body .col .col_2 p{
	line-height: 1.5em;
	margin-top: 8px;
	font-size: 13px;
}
/* com_benefits_2:start*/

/* com_booking_1:start */
.com_booking_1{
	background: #FFFFFF;
	padding: 0;	
}

.com_booking_1 input, .com_booking_1 select, .com_booking_1 textarea{
	width: 100%;
	padding: 10px;
	border: 1px #e6e6e6 solid;
	border-radius: 2px;
	margin: 5px 0;
}

.com_booking_1 h3{
	font-size: 17px;
	font-weight: lighter;
	color: #042865;
}

.com_booking_1_header{
	text-align: center;
	padding: 20px;
	margin: auto;
	max-width: 903px;
}

.com_booking_1_header h1{
	margin-bottom: 20px;
}

.com_booking_1_inner{
	margin: auto;
	display: flex;
	justify-content: space-around;
	padding: 40px 0 80px 0;
	max-width: 1350px;	
	flex-wrap: wrap;
}
.com_booking_1_inner .col{
	width: 48%;
	margin-bottom: 20px;
}

.form_container_1{
	box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	border: 1px #e6e6e6 solid;
	padding: 20px;
	border-radius: 15px;
}

.form_container_1_header{
	margin-bottom: 10px;
}

.form_container_1_body{
	display: flex;
	justify-content: space-between;
}

.form_container_1_body_col{
	width: 49%;
}

.form_container_1_body_col_full{
	width: 100%;
}

.form_container_1_body_col_full select{
	width: 100%;
	padding: 10px;
	appearance:none;
	background: #e6e6e6;
	-webkit-appearance: none;
}

.form_container_1_body_col label{
	display: block;
	margin: 10px 0 3px 0;
	font-size: 13px;
	color:#838993;
}

.form_container_1_body_col_full{
	width: 100%;
}
/* com_booking_1:end */



/* com_pricing_snippet_1:start*/
.com_pricing_snippet_1{

}

.com_pricing_snippet_1_head{
	padding: 20px;
}

.com_pricing_snippet_1_head h3{
	text-align: center;
	margin-bottom: 10px;
	color: #CCCCCC;
}

.com_pricing_snippet_1_head h2{
	text-align: center;
	margin-bottom: 10px;
}

.com_pricing_snippet_1_head p{
	text-align: center;
}

.com_pricing_snippet_1_body{
	padding: 40px 30px;
	max-width: 1234px;	
	display: block;
	margin: auto;
}

.com_pricing_snippet_1_body .col{
	box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 0 10px rgb(0 0 0 / 10%);
	background: #FFFFFF;
	border-radius: 10px;
	border: 1px #FAFAFA solid;
	display: flex;
	justify-content: space-between;
	padding: 40px;
	margin: 50px 10px 3px 10px;
}

.com_pricing_snippet_1_body .col:hover{
	background: #ededed;	
}

.com_pricing_snippet_1_body .col .row_1{
	padding-right: 10px;
	max-width: 678px;
}

.com_pricing_snippet_1_body .col .row_1 p{
	font-size: 14px;
	margin-top: 5px;
}

.com_pricing_snippet_1_body .col .row_1 h4{
	font-size: 20px;
/*
	color: #787787;
	font-size: 22px;
	line-height: 1.5em;
*/
}

.com_pricing_snippet_1_body .col .row_1 h4 a:hover{
	color: cadetblue;
}


.com_pricing_snippet_1_body .col .row_2{
	padding: 10px 0 20px 0;
/*	height: 60%;*/
	height: 300px;
	overflow-y: scroll;
}

.com_pricing_snippet_1_body .col .row_2 ul li{
	display: flex;
	align-content: center;
}

.com_pricing_snippet_1_body .col .row_2 ul .active_item::before{
	margin-right: 5px;
	color: #1b1b1b;
	font-family: "Material Icons";
	content: "check_circle";
}

.com_pricing_snippet_1_body .col .row_2 ul .inactive_item{
	color: #787787;
}

.com_pricing_snippet_1_body .col .row_2 ul .heading_item{
	padding: 10px; text-align: center; font-weight: 500; font-size: 25px; width: 100%; display: block; border-bottom: 2px #e6e6e6 solid; margin-top: 30px; margin-bottom: 15px;
}

.com_pricing_snippet_1_body .col .row_2 ul .inactive_item::before{
	margin-right: 5px;
	color: #787787;
	font-family: "Material Icons";
	content: "\e888";
}

.com_pricing_snippet_1_body .col .row_3{
}


.com_pricing_snippet_1_body .col .row_3 .plan_cta_1{
	text-align: center;
	display: block;
	border-radius: 25px;
	background: #000000;
	color: #FFFFFF;
	padding: 20px;
	transition: background 0.3s ease;
}

.com_pricing_snippet_1_body .col .row_3 .plan_cta_1:hover{
	background: #921d68;
}

.order_details h5, .additional_services_added h5{
	margin: 20px 0 5px 0;
	text-decoration:overline;
}

.order_details p, .additional_services_added p{
	font-size: 13px !important;
	margin: 0 !important;
}

.com_relations_subjects_parameters h4{
	font-size: 14px;
}



/* com_pricing_snippet_1:end*/


#CTA_link:hover{
	background: #b52281 !important;
}




/* .com_homepage_2 start*/
.com_homepage_2{
	padding: 0 0 60px 0;
}

.com_homepage_2 .container{
	padding: 0 40px 100px 40px;
	max-width:1500px;
	margin: auto;
}

.com_homepage_2 h2{
text-align: center;
	margin-bottom: 50px;
}

.com_homepage_2 h3{
    text-align: center;
}

.com_homepage_2 p{
  word-spacing: 3px;
  padding-bottom: 2em;
}



.instrucions{
  display: grid;
  gap: 3rem;
	grid-template-columns: 30% 30% 30%;
}
.temp{
	padding: 40px 10px;
  background-color: #fff;
  text-align: center;
  border-radius: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.temp img{
  padding: 20px;
  border-radius: 15px;
}
.temp h3{
	font-weight: 400;
    padding: 15px 15px 5px 15px;
    color: #b81b76;
    font-size: 30px;
}
.temp p{
  padding: 15px;
}

/* .com_homepage_2 end */



/*com_flex_3_cols_1:start*/
.com_flex_3_cols_1{
	padding: 60px 0;
	width: 100%;
}

.com_flex_3_cols_1 .header_holder{
	padding: 0 50px;
	max-width: 670px;
	margin: auto;
}

.com_flex_3_cols_1 .header_holder p{
	margin-bottom: 60px;
}

.com_flex_3_cols_1_inner{
	padding: 0 30px 200px 30px;
	width: 100%;
	margin: auto;
	max-width: 1500px;
	display: flex;
	flex-wrap: wrap;
}



.com_flex_3_cols_1_inner .item{
	width: calc(33.33% - 1rem);
	margin: 1rem 1rem 0 0;
}

.com_flex_3_cols_1_inner .item .item_img_container{
	text-align: center;
	display: flex;
	justify-content: center;
}






.com_flex_3_cols_1_inner .item .item_img_container img{
    margin-bottom: 40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
/*    border: 8px #ebaed2 solid;*/
    object-fit: cover;
}

.staff_image{
    margin-bottom: 40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px #ebaed2 solid;
    object-fit: cover;
    transition: all 0.3s ease;
	
}

.staff_image:hover{
    border: 8px gray solid;
	transform: scale(1.05);
}



.com_flex_3_cols_1_inner .item .item_h3_container{
	text-align: center;
	color: #1b1b1b;
}

.com_flex_3_cols_1_inner .item .item_h3_container h3{
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1em;
	font-family: "Poppins", sans-serif;
}

.com_flex_3_cols_1_inner .item .item_body_container{
	text-align: left;
	padding: 0 30px;
}

.com_flex_3_cols_1_inner .item .item_body_container h4{
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	text-align: left;
	color: #1b1b1b;
	margin: 5px 0 0px 0;
}
.com_flex_3_cols_1_inner .item .item_body_container p{
	font-size: 13px;
}

.com_flex_3_cols_1 ul{
	list-style: none;
}

.com_flex_3_cols_1 ul li{
	font-size: 13px;
	margin: 0 0 7px 7px;
}

.com_flex_3_cols_1 ul li::before{
	content: '-';
	margin-right: 4px;
}


/*com_flex_3_cols_1:end*/



/*com_person_1:start*/

.com_person_1{
	padding: 60px 0;
}
.com_person_1_inner{
	padding: 40px 50px;
	max-width: 750px;
	margin: auto;
	border: 1px #e9e9e9 solid;
	border-radius: 25px;
	box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 6px 9px rgb(0 0 0 / 20%);
}

.com_person_1 .image_holder{
	text-align: center;
}
.com_person_1 .image_holder img{
	margin-bottom: 40px;
    width: 300px; 
	height: 300px;
	border-radius: 50%;
	border: 8px #ebaed2 solid;
    object-fit: cover;
	transition: scale 0.3s ease;	
}

.com_person_1 h1{
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 25px;
	margin-bottom: 10px;
}

.com_person_1 h3{
	margin-top: 30px;
	font-weight: 600;
	font-size: 16px;
}

/*com_person_1:end*/




/*com_buy_template:start*/
.com_float_button_1{
	position: fixed;
	z-index: 790;
	bottom: 15px;
	right: 15px;
	padding: 10px 20px;
	background: #b52281;
	border-radius: 10px;
	border: 2px #FAFAFA solid;
	font-weight: 600;
	color: #FFFFFF;
	transition: background 0.3s ease;
}

.com_float_button_1:hover{
	border: 1px #b52281 solid;
	background: #FFFFFF;
	color: #b52281;
}
/*com_buy_template:end*/




/*com_shelf_1:start*/
.com_shelf_1{
	padding: 80px 60px;
}
.com_shelf_1_inner{
	padding: 60px;
	max-width: 1500px;
	background: #fcf5fc;
	border-radius: 55px;
	margin: auto;
}
	
.com_shelf_1_inner .shelf_row{
	display: grid;
	grid-gap: 15px;
	grid-template-columns: 50% 50%;
	padding: 20px 0;
}

.com_shelf_1_inner .shelf_item{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.com_shelf_1_inner .shelf_item img{
    width: 100%;
    border: 5px #e6b8d0 solid;
    border-radius: 30px;
}

.com_shelf_1_inner .shelf_text{
	padding: 10px 60px;
}

.com_shelf_1_inner p{
	margin-bottom: 10px;
}

.com_shelf_1_inner a{
	font-weight: 500;
	transition: all 0.3s ease;
}

.com_shelf_1_inner a:hover{
	color: black;
}

/*com_shelf_1:end*/


/*com_article_1:start*/
.com_article_1{
	padding: 200px 0;
	width: 100%;
}
.com_article_1_inner{
	max-width: 900px;
	margin: auto;
	padding: 20px;
}
.com_article_1_inner h1{
	margin-bottom: 50px;
}
.com_article_1_inner img{
	height: 100%;
	width: 100%;
	border-radius: 20px;
	object-fit: contain;
	margin: 30px 0;
}
.com_article_1_inner h2{
	margin: 30px 0px
}
.com_article_1_inner p{
	line-height: 1.8em;
	font-size: 20px;
}

.com_article_1_inner a{
	color: #262424;
	position: relative;
	transition: color 0.3s ease;
}

.com_article_1_inner a::before{
	opacity: 0.7;
	position: absolute;
	content: "";
	width: 100%;
	background: #3d1a3e;
	height: 4px;
	bottom: -4px;
	left: 0;
	transition: opacity 0.3s ease;
}
.com_article_1_inner a:hover:before{
	opacity: 1;	
	background: #3d1a3e;
}

.com_article_1_inner a:hover{
	color: #3d1a3e;
}
/*com_article_1:end*/


/* com_blog_1:start*/
.com_blog_head_1{
	padding: 200px 0 30px 0;
}

.com_blog_head_1_inner{
	padding: 0 30px;	
	text-align: center;
}

.com_blog_1{
	padding-bottom: 200px;
}

.com_blog_1_inner{
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	max-width: 1350px;
	margin: auto;
}

.com_blog_1_inner .blog_item{
	margin: 5px;
	border: 1px #CCCCCC solid;
	padding: 20px;
	width: 32%;
}

.com_blog_1_inner .blog_item a{
	display: block;
}

.com_blog_1_inner .blog_item a img{
	height: 200px;
	object-fit: cover;
	width: 100%;
}

.com_blog_1_inner .blog_item a h2{
	color: #1b1b1b;
	font-weight: 500;
	padding: 10px;
	font-size: 35px;
	line-height: 1.2em;
}

.com_blog_1_inner .blog_item p{
	padding: 10px;
}


.com_blog_1_inner .blog_item .read_more_lnk{
	padding: 10px;
	color: #0a0a0a;
	text-transform: uppercase;
	font-weight: 600;
}

.com_blog_1_inner .blog_item .read_more_lnk::after{
	content: ' >';
	transition: margin 0.3s ease;
}

.com_blog_1_inner .blog_item .read_more_lnk:hover:after{
	margin-left: 10px;
}

/* com_blog_1:end*/




/*com_areas_1:start*/
.com_areas_head_1{
	padding: 150px 0 0 0;
	background: #FFFFFF;
	text-align: center;
}
.com_areas_head_1_inner{
	padding: 0 30px;
}
.flex-list-3-cols{
	background: #FFFFFF;
	padding: 20px 0 120px 0;
}


.flex-list-3-cols .in{
	background: #FFFFFF;
	max-width: 1000px;
	display: flex;
	justify-content: space-between;
	margin: auto;
	flex-wrap: wrap;
}

.flex-list-3-cols .in .item{
	width: 33%;
	padding: 5px;
}

.flex-list-3-cols .in .item img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 10px;
}

.flex-list-3-cols .in .item .flex-list-3-cols-h-p{
	padding: 15px 25px 25px 25px;
}

.flex-list-3-cols .in .item .flex-list-3-cols-h-p h2{
	font-size: 30px;
	text-align: left;
	text-transform: uppercase; 
}

.flex-list-3-cols .in .item .flex-list-3-cols-h-p p{
	font-size: 14px;
	line-height: 1.5em;
	margin: 15px 0;
}

.flex-list-3-cols .in .item .flex-list-3-cols-h-p a{
	color: #0a0a0a;
}
/*com_areas_1:end*/

/*com_featured_categories_1:start*/
.com_featured_categories_1{
	padding: 60px 0;
}
.com_featured_categories_1 h2{
	text-align: center;
	padding: 20px 20px 0 20px;	
}
.com_featured_categories_1 p{
	max-width: 700px;
	margin: auto;
	text-align: center;
	padding: 0 20px 20px 20px;	
	color: #878682;
	font-size: 14px;
	line-height: 1.8em;
	font-weight: 300;
}
.com_featured_categories_1 p a{
	color:#5D5D5D;
	text-decoration: underline;
}
.com_featured_categories_1_inner{
	max-width: 1650px;
	margin: auto;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.featured_item_box{
	width: 45%;
	margin: 40px 15px;
}

.featured_item_box img{
	width: 100%;
}

.featured_item_box_body{
	margin-top: -100px;
	display: flex;	
}

.featured_item_box_body_col_1, .featured_item_box_body_col_2{
	width: 45%;
	margin: 5px;
}

.featured_item_box_body_col_2 h3{
	color: #ba9d57;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 27px;
	text-align: left;
	padding: 0;
	margin: 0;
}

.featured_item_box_body_col_2 p{
	margin: 10px 0;
	text-align: left;
	padding: 0;
}

.featured_item_box_body_col_2 .cta_read_more{
	margin: 0;
	padding: 0;
	text-align: left;
	color: #0a0a0a;
	text-transform: uppercase;
	font-size: 13px;
	transition: color 0.3s ease;
}
.featured_item_box_body_col_2 .cta_read_more:hover{
	color: #ba9d57;
}

/*com_featured_categories_1:end*/


/* lp_2:start*/
.lp_2{}
.lp_2_in{}
.lp_2_sec_1{}
.lp_2_sec_1 img{
	height: 600px;
	width: 100%;
	object-fit: cover;
}
.lp_2_sec_1_in{}
.lp_2_sec_2{
	margin-top: -200px;
	margin-bottom: 200px;
}
.lp_2_sec_2_in{
	padding: 0 40px;
	margin: auto;
	max-width: 1500px;
	display: flex;
	justify-content: space-between;
}

.lp_2_sec_2_in .col{
	width: 50%;
}

.lp_2_sec_2_in .col h1{
	line-height: 1em;
	font-weight: 200;
	font-size: 70px;
	color: #ba9d57;
	text-transform: uppercase;
	margin-bottom: 0;
}

.lp_2_sec_2_in .col .line{
	background: #ba9d57;
	padding: 2px;
	width: 150px;
	margin: 10px 0 50px 0;
}

.lp_2_sec_2_in .col p{
	color: #878682;
	font-weight: 200;
	font-size: 18px;
	line-height: 2em;
}

.lp_2_sec_3{}
.lp_2_sec_3_in{}
.lp_2_sec_4{}
.lp_2_sec_4_in{}
/* lp_2:start*/



/* landing_page_1:start*/
.landing_page_1{

}

.landing_page_1_body{
	min-height: 1000px;
}

.landing_page_1_section_1{
	background: #FFFFFF;
}
.landing_page_1_section_1_body{
	max-width: 900px;
	margin: auto;
	text-align: center;
}

.landing_page_1_section_1_body img{
	width: 100%;
	border-radius: 2px;
}

.landing_page_1_section_1_body h1{
	margin: auto;
	text-align: center;
	padding: 85px 0 25px 0;
	animation: toggleUp 900ms ease-in-out alternate;	
}

.landing_page_1_section_1_body p{
	padding: 20px;
	line-height: 1.8em;
	font-size: 18px;
}

.landing_page_1_section_1_body .cta_container{
	display: flex;
	justify-content: center;
	padding: 35px 0;
	text-align: center;
}

.landing_page_1_section_1_body .cta_container a{
	margin: 7px;
	border: 1px #FFFFFF solid;
	border-radius: 5px;
	padding: 12px 20px;
	width: 200px;
}

.landing_page_1_section_1_body .cta_container .cta_btn_1{
	background: #b52281;
	cursor: pointer;
    max-width: 90%;
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    padding: 10px 20px;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;	
	
	
}

.landing_page_1_section_1_body .cta_container .cta_btn_2{
	background: #FFFFFF;
	color: #787787;
}

.landing_page_1_section_2{
	
}

.landing_page_1_section_2_body{
	max-width: 1200px;
	padding: 80px 20px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.landing_page_1_section_2_col{
	width: 30%;
}

.landing_page_1_section_2_col p{
	color: #787787;
	font-size: 16px;
}


.landing_page_1_section_3{
	
}

.landing_page_1_section_3_body{
	max-width: 1200px;
	padding: 80px 20px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.landing_page_1_section_3_col{
	width: 48%;
}

.landing_page_1_section_3_col a{
	color: #ee6802;
	transition: color 0.3s;
}

.landing_page_1_section_3_col a:hover{
	color: #787787;	
}

.landing_page_1_section_3_row{
	display: flex;
	align-items: center;
}

.landing_page_1_section_3_row_col{
	margin: 10px;
}

.landing_page_1_section_3_row_col .customer_image{
	width: 50px;
	height: 50px;
}

.landing_page_1_section_3_row_col p{
	font-size: 16px;
}

.landing_page_1_section_3_row_col .customer_name{
	font-size: 15px;
	color: #787787;
	font-style: italic;
}


.landing_page_1_section_4{
	background: #e6e6e6;
}

.landing_page_1_section_4_body{
	max-width: 1200px;
	padding: 80px 20px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.landing_page_1_section_4_col{
	width: 47%;
}

.landing_page_1_section_4_col p{
	font-size: 18px;
	margin: 10px 0 20px 0;
}

.landing_page_1_section_4_col img{
	height: 400px;
	width: 100%;
	border-radius: 15px;
	object-fit: cover;
}

.landing_page_1_section_4_projects_thumbnails{
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
}

.landing_page_1_section_4_project_thumbnail{
	width: 24%;
	padding: 0 5px;
}
.landing_page_1_section_4_project_thumbnail img{
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 4px;
}

.landing_page_1_section_5{
	
}

.landing_page_1_section_5_body{
	max-width: 800px;
	padding: 80px 20px;
	margin: auto;
	text-align: center;

}

.landing_page_1_section_5_body h2{
	margin-bottom: 60px;
}

.landing_page_1_section_5_item{
	text-align: left;
	padding: 20px 0;
	border-bottom: 1px #CCCCCC solid;
}


.landing_page_1_section_5_item p{
	font-size: 17px;
	font-style: italic;
}

/* landing_page_1:start*/








/*com_product_details_1:start*/
.com_product_details_1{
	width: 100%;
}

.com_product_details_1_inner{
/*	max-width: 1800px;*/
	margin: auto;
	width: 100%;
	display: flex;
	flex-direction: row;
}



.com_product_details_1_inner .col_1{
	width: 100%;
}

.com_product_details_1_inner .col_1 img{
	cursor: zoom-in;
	animation: toggleUp 900ms ease-in-out alternate;	
}
.com_product_details_1_inner .col_2{
/*	width: 50%;*/
	min-width: 600px;
	max-width: 1000px;
	margin: auto;
/*	position: sticky;*/
}

.com_product_details_1_inner .col_2 .product_information_container{
	min-width: 600px;
	max-width: 1000px;
/*	padding: 80px 80px 80px 80px;*/
	padding: 20px;
/* 	position: sticky;*/
	top: 165px;
	transition: 1s ease;
}











@media screen and (max-width: 900px){
	

	
	
/*com_shelf_1:start*/
.com_shelf_1{
	padding: 20px 10px;
}
.com_shelf_1_inner{
	border-radius: 30px;
	padding: 15px;
	
}

.com_shelf_1_inner .shelf_row{
	display: flex;
	flex-direction: column;
}
	
.com_shelf_1_inner .shelf_reverse{
	flex-direction: column-reverse;
}

.com_shelf_1_inner .shelf_row .shelf_item{
	width: 100%;
}

.com_shelf_1_inner .shelf_item img{
    width: 100%;
    border: 5px #e6b8d0 solid;
    border-radius: 30px;
}

.com_shelf_1_inner .shelf_text{
	padding: 20px;
}

/*com_shelf_1:end*/		
		
	
	
	
	
	
	.com_product_details_1_inner{
	flex-direction: column;
}
	.com_product_details_1_inner .col_2{
	width: 100%;
	min-width: 50px;
	position:static;
	margin-top: 30px;
}
	.com_product_details_1_inner .col_2 .product_information_container{
	min-width: 50px;
	padding: 30px 30px 80px 30px;
 	position: static;
}
}

/*Font styling*/
.product_information_container h1{
	color: #b0227f;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: normal;
}
.product_information_container p{
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	line-height: 45px;
}

.product_information_container .float_right{
	float: right;
}

.com_product_details_1_inner .col_2 .product_information_container .product_description .product_price{
	display: flex;
	flex-direction: row;
}
.com_product_details_1_inner .col_2 .product_information_container .product_description .product_price p{
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 700;
}
.com_product_details_1_inner .col_2 .product_information_container .product_description .product_price p:last-of-type{
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 30px;
}

.product_configuration{
	padding: 40px 0px;
}
.underline{
	padding: 10px 0px;
	border-bottom: 1px solid black;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.underline:last-of-type{
	border-bottom: none;

}

/*Colour Selection*/

.colour_options div {
	display: inline-block;
}
 
.colour_options input[type="radio"] {
	display: none;
}
 
.colour_options input[type="radio"] + label span {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 50%;
	border: 2px solid #FFFFFF;
	box-shadow: 0 1px 3px 0 rgba(0,0,0,0.33);
}
 
.colour_options input[type="radio"]#beige + label span {
	background-color: #d3c6c4;
}
.colour_options input[type="radio"]#wine + label span {
	background-color: #463333;
}

.colour_options input[type="radio"]:checked + label span {
	background-image: url(https://rushpush.com.au/application/views/templates/1019/assets/tick.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
}

/*Type select*/

.type_select select{
	border: none;
	font-size: 16px;
	font-weight: 400;
	padding: 0px 20px;
	background: none;
}

/*Quanity selector*/

.quantity_selectors input {
	width: 60px;
	margin: 0px 5px;
	padding: 10px 0;
	text-align: center;
	border: 1px solid grey;
}

.quantity_selectors {
	display: flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
}

.quantity_selectors button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	border-radius: 0;
	border: 1px solid grey;
	background-color: white;
	color: black;
	width: 40px;
	cursor: pointer;	
}


/*Cart button*/

.cart_btn{
	padding: 10px 30px;
	border: 1px solid black;
	background: white;	
	border-radius: 12px;
	color: black;
	margin: 10px 0px;
    display: inline-block;
}
.cart_btn:hover{
	background: black;
	color: white;
}

/*product_specification*/

.product_paragraph_1{
/*	padding-top: 30px;*/
}

.product_paragraph_1 h2{
	border-bottom: 1px solid black;
	padding-bottom: 5px;
	margin: 20px 0 5px 0;
	font-size: 16px;
}

.product_paragraph_1 h3{
	font-size: 16px;
	margin-bottom: -1px !important;
	margin-top: 20px;
}


.enrolloffline_link:hover{
	text-decoration: underline;
}

.product_specification li{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.product_paragraph_1 p b{

}

.product_paragraph_1 p{
	line-height: 1.5em;
	text-transform: none;
    font-size: 16px;
    font-weight: 400;	
/*	border-bottom: 1px solid black;*/
}

.product_paragraph_1 ul li{
    text-decoration: none;
/*
    font-weight: normal;
    font-size: 13px;
    line-height: 22px;
*/
    padding: 0px 0 0px 23px;
    background: url(../images/arrow-ho.png) no-repeat 0px 5px;
}



/*	parameters: start*/
.parameterTitle_1{
	color: #721953 !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: 1.5em !important;
	margin: 15px 0 5px 0 !important;
}
/*	parameters: end*/


.slider2 {
  width: 100%;
/*  max-width: 800px;*/
/*  height: 100vh;*/
  position: relative;
  overflow: hidden; 
	aspect-ratio: 4/3;
}

.slide2 {
  width: 100%;
/*  max-width: 800px;*/
/*  height: 100vh;*/
  position: absolute;
  transition: all 0.5s;
}
.slide2:first-of-type {
  z-index: 2;
}


.slide2 img {
  width: 100%;
/*  height: 100%;*/
  object-fit: cover;
}

.btn2 {
	position: absolute;
	width: 40px;
	height: 40px;
	border: none;
	z-index: 10;
	cursor: pointer;
	background-color: transparent;
	font-size: 30px;
	opacity: 0.8;
	color: lightgray;
}

.btn2:active {
  transform: scale(1.1);
}

.btn-prev2 {
  top: 45%;
  left: 10px;
}

.btn-next2 {
  top: 45%;
  right: 10px;
}
/*com_product_details_1:end*/

/*com_best_selling:start*/

.com_best_selling{
	padding: 10px 0 100px 0;
}

.com_best_selling h2{
	text-align: center;
}

.com_best_selling .another_sliderOLD {
    /* text-align: center; */
    max-width: 1500px;
	height: auto;
    min-height: 550px;
    position: relative;
    overflow: hidden;
    margin:auto;
    background-color: white;
    border-radius: 20px;
}

.com_best_selling .another_sliderOLD .another_slide {
    text-align: center;
    width: 33.33%;
	height: 100%;
    min-height: 550px;
    position: absolute;
    transition: all 0.5s;
    padding: 20px;
	overflow: hidden;
}
.another_sliderOLD_container{
	aspect-ratio:4/3;
}

.com_best_selling .another_sliderOLD .another_slide img {
    width: 300px; 
	height: 300px;
	border-radius: 50%;
	border: 8px #ebaed2 solid;
    object-fit: cover;
	transition: scale 0.3s ease;
}

.com_best_selling .another_sliderOLD .another_slide:hover > div img{
    scale:102%;
}

.com_best_selling .another_sliderOLD .another_slide .another_slide_text {
    /* position: absolute; */
    text-align: center;
}

.com_best_selling .another_sliderOLD .another_slide .another_slide_text h3 {
    text-align: center;
    color: #1b1b1b;
	font-weight: 400;
	margin-top: 10px;
}
.com_best_selling .another_sliderOLD .another_slide .another_slide_text p {
    color: #7c7c7c;
	font-weight: 400;
	font-size: 13px;
	margin-top: 15px;
	line-height: 1.6em;
}

.com_best_selling .another_sliderOLD .another_btn_next {
    border: solid #1b1b1b;
    border-width: 0 6px 6px 0;
    background-color: transparent;
    display: inline-block;
    padding: 8px;
    border-radius: 0px;

    top: 30%;
    right: 1.5%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: absolute;
}

.com_best_selling .another_sliderOLD .another_btn_next:active {
/*    transform: scale(1.2);*/
}

.com_best_selling .another_sliderOLD .another_btn_prev {
    border: solid #1b1b1b;
    border-width: 0 6px 6px 0;
    background-color: transparent;
    display: inline-block;
    padding: 8px;
    border-radius: 0px;

    top: 30%;
    left: 1.5%;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    position: absolute;
}

.com_best_selling .another_sliderOLD .another_btn_prev:active {
/*    transform: scale(1 .1);*/
}

/*com_best_selling:end*/

/*com_product_list_2:start*/


.com_product_list_2{
	width: 100%;
	align-items:center;
	overflow: visible;
}

.com_product_list_2 .sub_page_banner img{
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.com_product_list_2_inner{
	max-width: 1550px;
	padding: 50px 0px 200px 0px;	
	margin: auto;
}


.main_cat_link, .item_box{
	display: block; 
	margin: auto; 
	margin-top: 20px;
	padding: 20px; 
	border-radius: 20px; 
	transition: background 0.3s ease;
	box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 6px 9px rgb(0 0 0 / 20%);
	
}


.item_box{
	background: #FFFFFF;
	padding: 30px 30px 1px 30px;
}

.item_box .item_box_description{
	font-size: 12px; 
	color: #787787; 
	margin-bottom: 5px;
	line-height: 1.8em;
}

.main_cat_link:hover{
	background: #971d6c !important;
	color: #FFFFFF  !important;
}

.item_box:hover{
	background: #feebf6 !important;
/*	color: #FFFFFF  !important;*/
}

.sub_cat_container{
	padding-top: 20px;
}

.sub_cat_link{
	display: block; 
	padding-left: 20px;
	transition: color 0.3s ease;
}

.sub_cat_link:hover{
	color: #1b1b1b;
}


.com_product_list_2_inner h1{
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 50px;
}

.com_product_list_2_inner h1 b{
	text-transform: uppercase;
	font-weight: 300;
}

.com_product_list_2_inner .all_product_wrapper{
	margin: auto;
	padding: 0 60px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.com_product_list_2_inner .product_item{
	white-space:normal;
	width: 25%;
}


.com_product_list_2_inner .product_item_inner{
    position: relative;
    flex-shrink: 0;
    /* background: #F4F4F4; */
    border-radius: 30px;
    /* filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.2)); */
    margin: 5px;
	height: 150px;
    border: 3px solid #fbe6f4;
    background: #FBE6F4;
    background: linear-gradient(180deg, rgb(255 239 250) 0%, rgba(255, 255, 255, 1) 100%);
}


.product_item__image_wrapper:hover .pop_up{
    bottom: 0px;
    transition: .2s ease;
}


.product_item__image_wrapper:hover .product_item__primary_image{
    opacity: 0;
}


/*images*/

.product_item__image_wrapper{
	width: 100%;
	overflow: hidden;
	position: relative;
/*	border-radius: 15px 15px 0px 0px;*/
	aspect-ratio:4/3;
}
.product_item__image_wrapper a{
	display: block;
}

.image_wrapper_inner{
	margin: auto;
	height: 100%;
	width: auto;
	position: relative;
}
.product_item__primary_image{
	position: absolute;
	z-index: 50;
	top: 0;
	left: 0;
	transition: 0.5s ease;
}
.product_item__second_image{
}

.image_wrapper_inner img{
	width: 100%;
	object-fit: cover;
}


/*Pop up on hover*/
.pop_up {
	display: flex;
	flex-direction: row;
	height: 45px;
	width: 100%;
	position: absolute;
	z-index: 105;
	bottom: -50px;
	left: 0;
	transition: .2s ease;
}

.pop_up .order_button{
	color: white;
	padding: 0px 0px 0px 20px;
	background: #B89771;
	display: flex;
	flex-grow: 2;
	margin: auto;
	align-items: center;
	height: 100%;
	cursor: pointer;
	font-weight: 500;
}

.pop_up .order_button:hover{
	background: #886741;
}


/*Product information*/

.product_item__info{
	display:flex;
	padding: 15px 25px;
/*
	text-align: center;
	justify-content: center;
*/
}

.product_item__category{
	display:block;
	margin-bottom:6px;
	font-size:11px;
	text-transform:uppercase;
	color: #959595;
}

.product_item__title{
    display: block;
    line-height: 1.3;
    color: black;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.product_item__price_container{
	display: flex;
	justify-content: center;
	flex-direction: row;
}
.product_item__price{
	display:block;
	margin-bottom:12px;
	color: black;
	font-weight: 600;
}
.product_item__price_sale{
	display:block;
	margin-bottom:12px;
	color: black;
	font-weight: 400;
	padding-left: 5px;
	text-decoration: line-through;
}

/*com_product_list_2:end*/


.com_parallax_banner_1{
	width: 100%;
}

.first_parallax_banner_container{
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	margin-bottom: -3px;
	
}

.banner_content{
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


.banner_content a{
	color: #5B5242;
	padding: 10px 40px;
	border: 1px solid white;
	border-radius: 15px;
	background: white;
	transition: 0.5s ease;
}
.banner_content a:hover{
	color: white;
	border: 1px solid white;
	background: none;
}

.first_parallax_banner_container .first_image_container{
    clip: none;
    height: 100%;
    left: 0;
    overflow: hidden;
/*    position: absolute;*/
/*    top: 0;*/
    width: 100%;
/*    z-index: -50;*/
}

.first_parallax_banner_container .first_image_container img{
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;

/*	position: fixed;*/
	
/*	transform: translate3d(0, 0, 0);*/
/*	transform-style: preserve-3d;*/
}

.parallax_banner_container{
	position: relative;
	height: 80vh;
	width: 100%;
	overflow: hidden;
	margin-bottom: -3px;
	
}

.parallax_banner_container .image_container{
    clip: rect(0, auto, auto, 0);
    height: calc(100vh + 10%);
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -100;
}

.parallax_banner_container .image_container img{
	width: 100%;
	height: calc(100vh + 10%);
	object-position: center;
	object-fit: cover;
	transform: translate3d(0, 0, 0);
	transform-style: preserve-3d;
	position: absolute;
/*	top: -50px;*/
/*	transition: 0.2s ease;*/
}

.half_block_banner{
	width: 100%;
	height: 700px;
	display: flex;
	flex-direction: row;
	padding: 60px 30px;
}
.half_block_banner .col{
	width: 50%;
	height: 100%;
	position: relative;
	padding: 5px;
}
.half_block_banner .col .banner_content{
	position: absolute;
}
.half_block_banner .col img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}





/* CSS Document */




    .com_image_fade_carousel{
      height: 673px;
      position: relative;
    }

    .com_image_fade_carousel a{
		
    	color: #5B5242;
    	background: white;

      padding: 10px 40px;
      border: 1px solid white;
      border-radius: 25px;
      transition: background 0.2s ease;
      text-decoration: none;
    }
    .com_image_fade_carousel a:hover{
		color: white !important;
		background: #b42280 !important;
  }

    .carousel-container {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .carousel-slide {
      position: absolute;
      transition: all 0.6s ease;
      width: 100%;
      height: 673px;
    }
    .carousel-slide-image{
      width: 100%;
      height: 673px;
    }
    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .carousel-controls {
      position: absolute;
      z-index: 100;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
    }

    .carousel-prev-slide, .carousel-next-slide {
      background: none;
      color: #fafafa;
      border: none;
      cursor: pointer;
      padding: 20px;
    }
    .carousel-prev-slide{
      left: 30px;
    }
    .carousel-next-slide{
      right: 30px;
    }   

	.carousel-prev-slide .fa-solid, .fas{
      font-size: 40px;
    }
    .carousel-next-slide .fa-solid, .fas{
      font-size: 40px;
    }

    .carousel-dots {
      text-align: center;
      margin-top: 20px;
      position: absolute;
      z-index: 100;
      bottom: 30px;
      width: 100%;
    }

    .carousel-dot-item {
      height: 10px;
      width: 10px;
      background-color: white;
      opacity: 0.3;
      border-radius: 50%;
      display: inline-block;
      margin: 0 8px;
      cursor: pointer;
    }
    .carousel-dots .active{
      opacity: 1;
    }

    /* Banner Content */

  .banner_content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	  padding: 40px;
}

.banner_content h1{
	margin-bottom: 20px;
	color: white;
	text-align:center;
	max-width: 987px;
}

.banner_content h2{
	font-size: 16px;
	color: white;
	margin-bottom: 5px;
}
.banner_content a:hover{
	color: white;
	border: 1px solid white;
	background: none;
}














.landing_page_1019_v1{
}

.landing_page_1019_v1_body{
	margin: auto;
}

.sub_page{
	margin: auto;
	max-width: 1000px;
	padding: 80px 30px;
	text-align: left;
}

.sub_page p{
	margin: 15px 0;
}

.sub_page img{
	margin: 30px 0;
	width: 100%;
}

.sub_page_banner img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}



/* com_shop_by_category_container:start */
.com_shop_by_category_container{
	padding: 80px 0;
}

.com_shop_by_category_container_inner{
	max-width: 1650px;
	margin: auto;
	padding: 0 20px;
}

.com_shop_by_category_container_inner h2{
    color: #1b1b1b;
}	

.com_shop_by_category_container_inner p{
    max-width: 900px;
	margin: auto;
	margin-bottom: 50px;
}	

.shop_by_category_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.shop_by_category_item{
	margin: 20px 15px;
	width: 45%;
	text-align: left;
	overflow: hidden;
}

.shop_by_category_item img{
	width: 100%;
	height: 400px;
	border-radius: 15px;
	object-fit: cover;
	transition: scale 0.3s ease;
}
.shop_by_category_item:hover > img{
	scale:102%;
}

.shop_by_category_item h3{
	color: #0a0a0a;
	padding: 10px 20px;
	font-size: 30px;
	font-weight: 300;
	text-align: center;
}

/* com_shop_by_category_container:end */




/* choose_by_colour_container:start */
.choose_by_colour_container{
	width: 100%;
	max-width: 210px;
	padding-bottom: 22px;
}
.choose_by_colour_container_inner p{
	color: #787787;
	display: block;
	font-size: 10px;
	margin-bottom: -5px;
}

.choose_by_colour_container_inner{
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-direction: column;
}

.colours_list{
	display: flex;
	align-items: center;
}
.colours_list .colour_item{
	padding: 12px;
    width: 26px;
    height: 26px;
    margin: auto;
    margin: 3px;
    border-radius: 50%;
    border: 3px #eaeaea solid;
	transition: border 0.3s ease;
}

.colours_list .colour_item:hover{
    border: 3px #f0bb43 solid;
}

/* choose_by_colour_container:end */


/* com_cart_items_and_total:start */

#choose_resource_delivery_method_to_continue{
	padding: 10px 0 0 0; 
	text-align:center; 
	color:red;
	display: none;
}

.com_cart_items_and_total{
	padding: 0;
}
.com_cart_items_and_total .header_paragraph{
	
}

.com_cart_items_and_total input{
    padding: 12px;
    font-size: 14px;
    border: 1px solid lightgrey;
    width: 100%;
    background: #FFFFFF;
    color: #0a0a0a;
    border-radius: 10px;
	margin: 5px 0 10px 0;
}

.com_cart_items_and_total .inner{
	display: flex;
	justify-content: space-between;
	max-width: 1456px;
	margin: auto;
}

.com_cart_items_and_total .inner .colleft, .com_cart_items_and_total .inner .colright{
	box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	border: 1px #FAFAFA solid;	
	padding: 20px;
	border-radius: 5px;
	height: fit-content;
}

.com_cart_items_and_total .inner .colleft{
	width: 64%;
}

.com_cart_items_and_total .inner .colleft .colleftin{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 20px 0;
	border-bottom: 2px #FAFAFA solid;
	padding-bottom: 20px;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft1{
	width: 60%;
	display: flex;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft1 img{
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft1 .colleft1details{
	width: 80%;
	padding: 0 10px;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft1 .colleft1details p a{
	font-weight: 500;
	color: #8f2569;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft1 .colleft1details p a:hover{
	color: #0a0a0a;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft1 .colleft1details .price_1{
	color: coral;
	text-decoration: line-through;
	margin-right: 10px;
}
.com_cart_items_and_total .inner .colleft .colleftin .colleft1 .colleft1details .price_2{
	color: #0a0a0a;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft2{
	width: 20%;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft2 .remove_btn{
	font-size: 12px;
	color: #0a0a0a;
	cursor: pointer;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft2 .remove_btn:hover{
	color: red;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft3{
	width: 15%;
}

.com_cart_items_and_total .inner .colright{
	width: 35%;
}

.com_cart_items_and_total .inner .colright a{
	color: #0a0a0a;
	text-decoration: underline;
}

.com_cart_items_and_total .inner .colright .total_header{
	display: flex;
	justify-content: space-between;
}

.com_cart_items_and_total .inner .colright .total_header p{
	font-size: 20px;
	font-weight: 400;
}

.com_cart_items_and_total .inner .colright .total_header_sub p, .com_cart_items_and_total .inner .colright .total_header_gst p{
	font-size: 16px;
	font-weight: 300;
}

.com_cart_items_and_total .inner .colright p{
	font-size: 16px;
	margin: 10px 0;
}



/* com_cart_items_and_total:end */


/* same_colour_products_container:start */

.same_colour_products_container{
	padding: 120px 0;
}

.same_colour_products_container_inner{
	text-align: center;
	padding: 0 40px;
}

.same_colour_products_container_inner .colour_badge{
	padding: 40px;
	width: 60px;
	height: 60px;
	margin: auto;
	margin-bottom: 20px;
	border-radius: 50%;
	border: 3px #eaeaea solid;
}
/* same_colour_products_container:end */



/* com_cart_button:start */
.com_cart_button{
	padding-bottom: 10px;
}

.com_cart_button h4{
	margin-top: 30px;
	margin-bottom: 5px;
	color: #787787;	
}

.com_cart_button .add-to-cart-container{
}

.com_cart_button .add-to-cart-container .pricing-container{
	display: flex;
}

.com_cart_button .add-to-cart-container .pricing-container .price1{
	text-decoration: line-through;
	font-weight: bolder;
	margin-right: 20px;
	color: red;
}

.com_cart_button .add-to-cart-container .pricing-container .price2{
	font-weight: bolder;
}

.com_cart_button .add-to-cart-container .qty-container{
	display: flex;
	justify-content: space-between;
	padding: 30px 0;
}

.com_cart_button .add-to-cart-container .qty-container .col1{
	width: 40%;
}

.com_cart_button .add-to-cart-container .qty-container .col1 .row1{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    line-height: 45px;	
}

.com_cart_button .add-to-cart-container .qty-container .col1 .row2{
	font-size: 12px;
	color: #787787;
	transition: color 0.3s ease;
}

.com_cart_button .add-to-cart-container .qty-container .col2{
	width: 40%;
}

.com_cart_button .add-to-cart-container .button_and_box_container{
	position: relative;
	width: 100%;
}

.com_cart_button .add-to-cart-container .button_and_box_container .button_container{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}

.com_cart_button .add-to-cart-container .button_and_box_container .button_container .add_to_cart_btn{
cursor: pointer;
    width: 100%;
    background: #741954;
    border: 1px #ad217c solid;
    color: #f7bde3;
    text-align: center;
    padding: 10px 20px;
    font-weight: bolder;
    display: flex;
	border-radius: 20px;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.com_cart_button .add-to-cart-container .button_and_box_container .button_container .add_to_cart_btn:hover{
	background: #1b1b1b;
}

.com_cart_button .add-to-cart-container .button_and_box_container .box_container{
    animation: animateTitle 0.5s ease-in-out alternate;
    position: absolute;
    background: #eaeaea;
    background: rgb(209, 209, 209);
    background: linear-gradient(0deg, rgb(255 198 235) 0%, rgb(233 233 233) 92%);
    left: -5%;
    bottom: 100%;
    margin-bottom: 5px;
    width: 110%;
    padding: 20px 30px;
    border: 2px #eaeaea solid;
    border-radius: 4px;
    z-index: 2;
    text-align: center;
    display: none;
}

.com_cart_button .add-to-cart-container .button_and_box_container .box_container .close_container{
	display: flex;
	flex-direction: row-reverse;
}

.com_cart_button .add-to-cart-container .button_and_box_container .box_container .close_container .material-icons{
	color: #0a0a0a;
	font-size: 20px;
	cursor: pointer;
}

.com_cart_button .add-to-cart-container .button_and_box_container .box_container .cart_icon_container{
	text-align: center;
}

.com_cart_button .add-to-cart-container .button_and_box_container .box_container .cart_icon_container .material-icons{
	color: #0a0a0a;
	font-size: 30px;
}


.com_cart_button .add-to-cart-container .button_and_box_container .box_container .box_text{
	color: #0a0a0a;
	font-size: 14px;
	padding: 5px 0 7px 0;
}

.com_cart_button .add-to-cart-container .button_and_box_container .box_container .box_actions_container{
	padding: 7px 0 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.com_cart_button .add-to-cart-container .button_and_box_container .box_container .box_actions_container a{
	background: #0a0a0a;
	border-radius: 0px;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: bolder;
	padding: 5px 10px;
	margin: 2px;
	line-height: 45px;
}

.com_cart_button .add-to-cart-container .button_and_box_container .box_container .box_actions_container p{
	cursor: pointer;
	background: #FFFFFF;
	border-radius: 0px;
	color: #0a0a0a;
	font-size: 13px;
	font-weight: bolder;
	padding: 5px 10px;		
	margin: 2px;	
}

.quantity_container{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.quantity_container input {
	display: inline-block;
	vertical-align: middle;
	width: 100px;
	padding: 10px;
	font-size: 17px;
  	text-align: center;
	border: 1px solid lightgray;
	border-radius: 10px;
}

.quantity_container .button {
	font-size: 25px;	
  cursor: pointer;
  width: 35px;
  height: 35px;
  text-align: center;
	display: inline-block;
	vertical-align: middle;	
}



/* com_cart_button:end */



/*.cat_caontainer:start*/
.cat_container{
	display: flex; 
	padding: 0; 
	justify-content:flex-start;
}

.cat_container_inner{
	width: 100%;
	
}

.cat_container_inner .cat_item{
	text-wrap:nowrap;
	color: #787787; 
	text-align: center; 
	font-size: 13px; 
	font-weight: 500; 
	padding: 10px 20px; 
	margin: 3px;
	border-radius: 30px;
	border: 1px solid #f8f5ef;
	transition: background 0.3s ease;
	line-height: 3.5em;
}

.cat_container_inner .cat_item:hover{
	background: #f8f5ef;
}




/*.cat_caontainer:end*/


/*.suggestion-results:start*/
.search_container_inner{
	position: relative;
	text-align: center;
	display: flex;
}

.search_container_inner img{
	display: none;
	width: 30%;
	margin: auto;
}

.search_container_inner h4{
	display: none;
	text-align: center;
}

/*Gloria custom*/
.suggestion_product_details{
	width: 85%;
}

.suggestion_product_details .p1{
	font-size: 13px;
	margin: 0;
	line-height: 1.5em;
}

.suggestion_product_details .p2{
	font-size: 11px;
	color: green;
	margin: 0;
	line-height: 1.5em;
}

.search_container_inner .search-field-container{
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: flex-end;
}

.search_container_inner .suggestion-results{
	display: none;
	position: absolute;
	top: 43px;
	right: 0;
	max-height: 400px;
	overflow-y: scroll;
	padding: 10px 20px;
	border: 1px solid lightgrey;
/*	border-left: 3px #eaeaea solid;*/
/*	border-bottom: 3px #eaeaea solid;*/
/*	border-right: 3px #eaeaea solid;*/
	width: 100%;
	max-width: 300px;
	background:white;
	color: #0a0a0a;	
	text-align: left;
	z-index: 3;
	border-radius: 6px;
}

/* Scrollbar */

/* width */
.suggestion-results::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

/* Track */
.suggestion-results::-webkit-scrollbar-track {
  background: transparent;
  margin: 5px;

/*
  box-shadow: inset 0 0 5px #dddddd;
  border-radius: 4px;
  border-left: 1.5px solid transparent;
  border-right: 1.5px solid transparent;
*/
}

/* Handle */
.suggestion-results::-webkit-scrollbar-thumb {
  background: #9e9e9e;
  border-radius: 6px;
  border: 3px solid white;	
}

 .search_container_inner .suggestion-results .loader{
	width: 60px;
}

.search_container_inner .suggestion-results a{
	display:flex;
	align-items: center;
	color: #0a0a0a;
	margin-top: 15px;
	font-size: 12px;
	font-weight: bolder;
}

.search_container_inner .suggestion-results img{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: 15%;
	height: 30px;
	max-width: 35px;
	border-radius: 3px;
}

.search_container_inner .suggestion-results span{
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	width: 100%;
}

 .search_container_inner .suggestion-results a:hover{
	color: darkgoldenrod;
}

#search_icon2{
	display: none;
}




.search_container_inner .search-field-container .material-icons{
	color: #20436a;
}

.search_container_inner .search-field-container input{
	padding: 8px 10px;
	font-size: 14px;
	border: 2px solid #b2217f;
	width: 100%;
	max-width: 300px;
	background:#FFFFFF;
	color: #0a0a0a;
	border-radius: 25px;
}
.search_container_inner .search-field-container input:focus{
	outline: none;
}
.nav_search_bar input:focus{
	outline: none;
}



/*.suggestion-results:end*/



/*com_announcement_bar:start*/

.com_announcement_bar{
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 701;
/*	background: #b52281;*/
	background: radial-gradient(circle, rgb(179 33 128) 0%, rgb(69 19 50) 100%);
	transition: background 0.3s ease;
}

.com_announcement_bar_inner{
	max-width: 1550px;
	margin: auto;
/*	color: #b52281;*/
	color: #1F1F1F;
	padding: 8px 40px;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}
.com_announcement_bar_inner a{
	font-size: 14px;
}
/*com_announcement_bar:end*/









/*com_nav_3:start*/

.com_nav_3{
	width: 100%;
	padding: 35px 0 0 0;
	background: white;
	position: fixed;
	top: 0;
	z-index: 700;
	display: flex;
	box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 6px 9px rgb(0 0 0 / 20%);
}

.com_nav_3_inner{
	width: 100%;
	padding: 0 40px;
	max-width: 1550px;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.com_nav_3_inner .col_1, .com_nav_3_inner .col_2{
	display: flex;
	align-items: center;
}

.com_nav_3_inner .top_logo{
	transition: padding 0.3s ease;
}

.com_nav_3_inner .top_logo_inner{
	object-fit: contain;
	display: flex;
	white-space: nowrap;
}

.com_nav_3_inner .top_logo img{
	height: 30px;
	margin-right: 10px;
	transition: 0.5s ease;
}

.com_nav_3_inner ul{
	display: flex;
	flex-direction: row;
}
.com_nav_3_inner ul li{
	display: flex;
	align-items: center;
	white-space: nowrap;
	transition: 0.5s ease;	
	font-size: 14px;
}

.com_nav_3_inner ul li a{
	color: #1c1c1e;	
	transition: 0.5s ease;
	font-weight: 600;
	text-transform: uppercase;
}
.com_nav_3_inner ul li a:hover{
	color: #b52281;
/*	border-bottom: 2px solid black;*/
}





.header_cta{
	display: flex;
	align-items: center;
	flex-direction: row;
	width: 100%;
}
.header_cta .mobile_search_button{
	background: none;
	border: none;
	font-size: 26px;
	color: #1b1b1b;
	position: absolute;
	top: 62px;
	right: 110px;
	display: none;
}

.header_cta .mobile_cart_button{
	background: none;
	border: none;
	font-size: 26px;
	color: #1b1b1b;
	position: absolute;
	top: 57px;
	right: 118px;
	display: none;
}

.nav_search_bar{
	position: relative;
}
.nav_search_bar input{
	max-width: 190px;
	border-radius: 19px;
	padding: 12px 20px 12px 42px;
	border: 1px solid lightgrey;
	transition: 0.5s ease;	
}
.nav_search_bar button{
	border: none;
	background: none;
	cursor: pointer;
	position: absolute;	
	left: 40px;
	top: 10px;
	transition: 0.5s ease;		
}
.nav_search_bar button i{
	font-size: 18px;
}
.account_container, .cart_container{
	margin: auto;
}
.account_container i, .cart_container i{
	color: #1b1b1b;	
	margin-left: 20px;
	font-size: 18px;
	cursor: pointer;
}
.account_container i:hover, .cart_container i:hover{
	color: black;	
}


	.header_cta .cart_container{
		position: relative;
	}	




/*SubMenu*/
.com_nav_3_inner .icon_arrow_down{
	width:12px;
	height:8px;
	margin-left:10px;
}


.com_nav_3_inner .has_submenu{
/*	padding: 20px 25px;*/
}

.com_nav_3_inner .has_submenu .has_submenu_link{
	display: block;
	padding: 20px 25px;
}

.com_nav_3_inner .has_submenu:hover{
	background: #ffd9f2;
	background: linear-gradient(180deg, rgb(245 222 235) 0%, rgba(255, 255, 255, 1) 100%);
}

.com_nav_3_inner .has_submenu .has_submenu_link:hover{
	color: #b52281;
/*	padding-bottom: 18px;*/
}


.com_nav_3_inner .has_submenu .has_submenu_link::after{
    content: '';
	margin-bottom: 1px;
	margin-left: 3px;
    border: solid #b52281;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;	
	transition: 0.3s ease;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
	
	
}

.com_nav_3_inner .has_submenu:hover > .has_submenu_link::after {
    transform: rotate(-135deg);
	margin-bottom: -1px;
}


.com_nav_3_inner .has_submenu:hover >  .sub {
	display: block;
/*	opacity: 1;*/
/*	visibility: visible;*/
	
}



/*SubMenu Inner*/
.com_nav_3_inner .sub{
     display: none; 
/*
	visibility: hidden;
	transition: 0.3s ease;
*/
	animation: toggleDown 400ms ease;	
    position: absolute;
    background-color: white;
    z-index: 150;
    left: 0;
    top: 105px;
    width: 100vw;
    padding: 20px;
    align-items: flex-start;
    background: #ffd9f2;
    background: linear-gradient(0deg, rgb(245 222 235) 0%, rgba(255, 255, 255, 1) 100%);
	box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 8px 8px rgb(0 0 0 / 5%);
}

.com_nav_3_inner .sub .sub_inner{
	width: 100%;
	max-width: 1560px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: auto;
}
.com_nav_3_inner .sub ul{
	display: flex;
	flex-direction: column;
}
.com_nav_3_inner .sub ul li{
	font-size: 15px;
	white-space: nowrap;
	width: 100%;	
	transition: color 0.3s ease;
	border-bottom: none;
}

.com_nav_3_inner .sub  a{
	color: #0a0a0a;
	width: 100%;
	display: inline-block;
	border-bottom: none;
	padding-bottom: 0px;
	font-size: 14px;
}
.com_nav_3_inner .sub  a:hover{
	border-bottom: none;
	padding-bottom: 0px;
	text-decoration: underline;
	color: #b52281;

}
.com_nav_3_inner .sub .nav_featured_products{
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	width: 100%;
}
.com_nav_3_inner .sub .nav_featured_products .nav_featured_product_item{
	position: relative;
	height: 100%;
}

.nav_featured_products_inner{
	display: flex;
	justify-content: space-between;
}

.nav_featured_products_inner .col{
	display: flex;
	padding: 20px;
}


.nav_featured_products_inner .col .col_inner{
	padding: 0 20px;
	width: 50%;
}

.nav_featured_product_item_content{
	position: absolute;
	color: white;
	background: rgba(0, 0, 0, 0.5);
	bottom: 0;
	width: 100%;
    text-align: center;
	z-index: 1000;
}
.nav_featured_product_item_image_container{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.nav_featured_product_item_image{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
}
.com_nav_3_inner .sub .nav_featured_products .nav_featured_product_item:hover .nav_featured_product_item_image{
	scale: 105%;
	
}


/*
.icon_nav_point{
	width: 18px;
	height: 18px;
	background: white;
	transform: rotate(45deg);
	transition: 0.2s ease;
}
*/



/*Humburger Menu*/

.hb_menu_btn{
	display: none;
	position: fixed;
    z-index: 1010;
	right: 20px;
	top: 63px;
	cursor: pointer;
	transition: all 0.5s ease-out;
}
.btn_line {
	width: 40px;
    height: 4px;
    margin: 0 0 5px 0;
    background: white;
    transition: all 0.3s ease;
}

.btn_line_1, .btn_line_2, .btn_line_3 {
	width: 34px;
    height: 4px;
	border-radius: 3px;
    background: #1b1b1b;
    transition: all 0.3s ease;
}

.close1{
     transform: rotate(45deg) translate(2px, 5px);
    }
 
 .close2{
     display: none;
    }

 .close3{
     transform: rotate(-45deg) translate(2px, -5px);
    }





/*com_nav_3:end*/





/* com_contact_1:start */
.com_contact_1{
	background: #FFFFFF;
	padding: 0 40px 0 40px;
}
.com_contact_1 .inner{
	margin: auto;
	display: flex;
	justify-content: space-around;
	padding: 40px 40px 80px 40px;
	max-width: 1350px;
}

.com_contact_1 .inner .leftcol{
	padding: 0 40px;
	width: 40%;
}

.com_contact_1 .inner .leftcol .call-us-now{
	display: flex;
    align-items: center;
    border: 3px #0a0a0a solid;
    padding: 10px;
    border-radius: 5px;
	margin-top: 30px;
    margin-bottom: 30px;
    color: #0a0a0a;
    text-align: center;
    font-weight: 500;
	max-width: 200px;
}

.com_contact_1 .inner .leftcol .call-us-now span{
	margin: 0 4px;
}

.com_contact_1 .inner .leftcol .call-us-now:hover{
    border: 3px #0a0a0a solid;
    color: #0a0a0a;
}

.com_contact_1 .inner .leftcol img{
	width: 100%;
	height: 200px;
	border-radius: 5px;
	object-fit: cover;
	margin-bottom: 20px;
}

.com_contact_1 .inner .leftcol .p1{
	color: #0a0a0a;
	font-weight: bolder;
	margin: 5px 0 5px 0;
}

.com_contact_1 .inner .rightcol{
	padding: 40px;
	width: 50%;
}

.com_contact_form_1 .form{
	padding: 40px;
	border-radius: 10px;
	box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
	background: #FFFFFF;
}

.com_contact_form_1 .form p{
	margin-top: 15px;
}

.com_contact_form_1 .form input, .com_contact_form_1 textarea{
	width: 100%;
	margin: 10px 0;
	padding: 10px 20px;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 2px #0a0a0a solid;
	border: 2px #dc63b2 solid;
}

.contact-form-container .form .send_btn{
	display: block;
	width: 100%;
	padding: 10px 20px;
	background: #0a0a0a;
	color: #FFFFFF;
	border-radius: 5px;
}

/* com_contact_1:end */




/*com_footer_2:start*/

.footer_container{
	background: #1b1d21;
	border-bottom: 7px #b52281 solid;
	
}

.footer_head{
	background: #B52281;
	background: linear-gradient(180deg, rgb(140 7 93) 0%, rgba(27, 29, 33, 1) 100%);
	padding: 100px 0;
	
}

.footer_head_inner{
	text-align: center;
	padding: 0 50px;
	max-width: 1610px;
	margin: auto;
}




.footer_head_inner h4{
	font-size: 60px;
	font-weight: 300;
	color: #FFFFFF;
	margin-bottom: 40px;
}

.footer_head_inner_flex{
	display: flex;
	justify-content: space-between;
}


.footer_head_inner_flex a{
	display: block;
	width: 19%;
	padding: 20px;
	border-radius: 30px;
	border: 5px #721250 solid;
	height: 300px;
	transition: 0.3s ease;
}

.footer_head_inner_flex a h5{
	color: #df5dad;
	font-size: 30px;
	font-weight: 300;
	margin-bottom: 5px;
}
.footer_head_inner_flex a p{
	color: #fde6f5;
	font-weight: 200;
	font-size: 14px;
	line-height: 1.6em;
	margin-bottom: 10px;
}

.footer_head_inner_flex a:hover{
	background: #721250;
}


.footer_container_inner{
	padding: 100px 60px 100px 60px;
	max-width: 1610px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


.footer_container_inner .col:first-of-type i{
	font-size: 16px;
	margin-right: 20px;
}

.footer_container_inner .col{
}
.footer_container_inner .col:last-of-type{
	width: auto;
}
.footer_container_inner .col h4{
	color: #ffcded;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 25px;
}

.footer_container_inner .col:not(:first-child) a{
	display: block;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 14px;
	margin-bottom: 20px;
}

.footer_container_inner .col a:hover{
	text-decoration: underline;
	color: #ffceed;
}

.footer_logo{
	display: flex;
	padding-bottom: 25px;
}
.footer_logo img{
	max-height: 45px;
	object-fit: contain;
}


.business_title, .business_address, .business_phone, .business_email{
	display: block;
	font-size: 14px;
	margin-bottom: 20px;
	font-weight: 500;
	color: #FFFFFF;
}

.social_media_container{
	display: flex;
}
.social_media_container i{
	font-size: 24px;
	margin-right: 25px;
	color: #FFFFFF;
}

.company_tag{
	display: flex;
	justify-content: center;
}
.company_tag a{
	font-size: 12px;
	font-weight: 500;
	color: #0a0a0a;
}
.company_tag span{
	font-size: 12px;
	font-weight: 700;
	opacity: 0.7;
	font-style: italic;
	padding: 0px 5px;
}




	






/*com_faqs_2:start*/
.com_faqs_2{
	max-width: 1000px;
	margin: auto;
}
.faqs_accordion_menu_container .faqs_accordion_menu{
	list-style: none;
	text-align: left;
}
.faqs_accordion_menu_container .faqs_accordion_menu .faqs_accordion_has_sub{
	border-bottom: 1px solid black;
	padding: 20px 0px;
	cursor: pointer;
	list-style: none;
}
.faqs_accordion_menu_container .faqs_accordion_menu .faqs_accordion_has_sub>p{
	text-align: left;
	color: black;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	max-width: 90%;
	display: inline-block;
}

.faqs_accordion_menu_container .faqs_accordion_menu .faqs_accordion_has_sub svg{
	margin-top: 6px;
	float: right;
	scale: 80%;
}

.faqs_accordion_menu_container .faqs_accordion_sub{
	max-height: 0;
	overflow: hidden;
	transition: 1s ease;
}

.faqs_accordion_menu_container .faqs_accordion_sub p{
	padding: 25px;
	font-size: 16px;
	text-transform: none;
	letter-spacing: 1px;
}

.faqs_accordion_menu_container .show{
	max-height: 800px;
	transition: 2s ease;
}
.faqs_arrow{
	transition: 0.5s ease;
}
.rotate_faqs{
	transform: rotate(45deg);
	transition: 0.5s ease;
}


/*com_faqs_2:end*/





@media (max-width:1100px){
	
	h1{
		font-size: 35px;
		line-height: 1.1em;
	}
	
	h2{
		font-size: 25px;
		line-height: 1.1em;
	}
	
	h3{
		font-size: 20px;
	}
	
	p{
		font-size: 15px;
		line-height: 1.4em;
	}
	
    .carousel-next-slide .fa-solid, .fas, .carousel-prev-slide .fa-solid, .fas{
      font-size: 20px;
    }	
	

	
	.com_announcement_bar_inner{
		padding: 8px 20px;
	}	

	.com_announcement_bar_inner a{
		font-size: 11px !important;
	}	
	
	.com_announcement_bar_inner .material-icons{
		font-size: 13px !important;
	}	
	
	.header_cta{
        display: block;
        width: 100%;
        padding: 0px;
	}	
	
	.header_cta .mobile_search_button{
		font-size: 22px;
		display: block;

	}	
	
	.header_cta .cart_container{
		display: block;
	color: #1b1b1b;
	position: absolute;
	top: 64px;
	right: 75px;
		
	}	
	
	
	.header_cta .cart_container i{
		font-size: 22px;
	}
	
	.com_image_fade_carousel a{
		padding: 5px 30px;
		font-size: 14px;
	}	
	
	
	.category_and_list_inner_col1{
		padding: 0 20px !important;
	}	
	
	
    .com_cart_items_and_total .inner .colleft .colleftin .colleft1 .colleft1details{
        width: 100%;
    }	
	
	.com_cart_items_and_total .inner .colleft .colleftin .colleft2{
		padding: 10px 20px !important;
	}	
	
/* com_search_2:start*/
.com_search_2{
	display: none;
}	
/* com_search_2:end*/
		
	
	
	
	
	
	.body .header .inner{
		padding: 110px 0 0 0;
	}
	

	


	.com_nav_3{
		padding: 45px 20px 20px 20px;		
	}

		
	
	
	
	.account_container{
		display: none;
	}
	
	.com_nav_3 ul{
	display: none;
}

	.cart_container{
/*	display: none;*/
}
	.nav_search_bar{
	margin-left: 0px;
	margin-bottom: 0px;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: 0.5s ease;
}
	.search_active{
		margin: 20px 0;
        opacity: 1;
        visibility: visible;
        height: 100%;
        transition: 0.5s ease;
	}
	
	.nav_search_bar input{
		max-width: 100%;
	}
	.search_container_inner .search-field-container{
	justify-content: flex-start;
		flex-direction: column;
}
	.search_container_inner .search-field-container input{
	margin-left: 0px;
	width: 100%;
	max-width: none;
}
	.com_nav_3_inner{
		padding: 15px 0 5px 0;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.search_container_inner .suggestion-results{
		max-height: 250px;
		margin-left: 0px;
		width: 100%;
		max-width: none;

	}
	.hb_menu_btn{
	display: block;
}


	
	
	
	
	
	
	.off_description{
		display: none;
	}
	
	
	
	
	

	
	
/* com_blog_1:start*/
.com_blog_1_inner{
    display: block;
}	

.com_blog_1_inner .blog_item{
    width: 100%;
    margin: 20px 0;
}		
/* com_blog_1:end*/		
	
	
	
    /*com_areas_1:start*/	
    .flex-list-3-cols .in{
        max-width: 1000px;
        display: flex;
        justify-content: space-between;
        margin: auto;
        flex-wrap: wrap;
    }

    .flex-list-3-cols .in .item{
        width: 100%;
        padding: 25px;
    }

    .flex-list-3-cols .in .item img{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }	
    /*com_areas_1:end*/		
		
	
	
/*com_featured_categories_1:start*/
.com_featured_categories_1{
	padding: 60px 0;
}
.com_featured_categories_1 h2{
	text-align: center;
	padding: 20px 20px 0 20px;	
}
.com_featured_categories_1_inner{
	flex-direction: column;
}
.featured_item_box{
	width: 100%;
	margin: 40px 0;
}	
	.featured_item_box_body_col_1{
		width: 35%;
	}
	
	.featured_item_box_body_col_2{
		width: 55%;
	}
/*com_featured_categories_1:end*/
	
	
/* lp_2:start*/
	
    .lp_2_sec_2{

    }	
	
    .lp_2_sec_2_in{
        padding: 0 40px;
        margin: auto;
        max-width: 1800px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
	
	.lp_2_sec_2_in .col{
		width: 100%;
	}
	

	

/* lp_2:end*/
	
	
/* landing_page_1:start*/
	.landing_page_1_section_1_body .cta_container{
        padding: 20px;
	}
	
    .landing_page_1_section_1_body .cta_container a{
        width: 100%;
		margin: 0 0 15px 0;
    }	
	
	
	.landing_page_1_section_1_body .cta_container .cta_btn_1{
		display: block;
		width: 100%;
	}	
	
    .landing_page_1_section_2_body{
        display: flex;
        justify-content:center;
		flex-direction: column;
    }

    .landing_page_1_section_2_col{
        width: 100%;
		margin: 20px 0;
    }
	
    .landing_page_1_section_3_body{
        display: flex;
		flex-direction: column;
        justify-content: space-between;
    }

    .landing_page_1_section_3_col{
        width: 100%;
    }	
	
    .landing_page_1_section_3_row_col p{
        font-size: 14px;
    }
	
    .landing_page_1_section_4_body{
        max-width: 1200px;
        padding: 80px 20px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
		flex-direction: column;
    }

    .landing_page_1_section_4_col{
        width: 100%;
		padding: 10px;
    }	
	
	.landing_page_1_section_4_project_thumbnail img{}
	
/* landing_page_1:end*/
	
	
	
/*com_contact_1:start*/
.com_contact_1{
	padding: 140px 40px;
}
.com_contact_1 .inner{
	margin: auto;
	display: block;
	padding: 20px 20px 60px 20px;
}

.com_contact_1 .inner .leftcol{
	padding: 0px 0 50px 0;
	width: 100%;
}

.com_contact_1 .inner .leftcol .p1{
	color: #0a0a0a;
	font-weight: bolder;
	text-decoration: underline;
	margin: 2px 0 40px 0;
}

.com_contact_1 .inner .rightcol{
	padding: 0px;
	width: 100%;
}
/*com_contact_1:end*/			
	
	
	
	


	
	.banner_content h2{
		font-size: 13px;
	}
	
    .com_image_fade_carousel{
      height: 400px;
    }

    .carousel-slide {
      height: 400px;
    }
    .carousel-slide-image{
      height: 400px;
    }	
	
	
/*com_footer_2:start*/
    .footer_container_inner{
		flex-direction: column;
		padding: 100px 25px;
	}

	.footer_container_inner .col:first-of-type{
        width: 100%;
    }

    .footer_container_inner .col{
        width: 100%;
		margin-bottom: 50px;
    }	
/*com_footer_2:end*/
	
	
	
/* choose_by_colour_container:start */
    .choose_by_colour_container{
        max-width: none;
    }

	.choose_by_colour_container_inner{
	}	
/* choose_by_colour_container:end */
	
	
/* same_colour_products_container:start */	
.same_colour_products_container_inner{
	padding: 0 20px;
}	
/* same_colour_products_container:end */	
	
	
	
    /* com_shop_by_category_container:start */

    .com_shop_by_category_container_inner{
        padding: 0;
    }	
	
    .com_shop_by_category_container_inner h2{
        font-size: 18px;
    }		
    .shop_by_category_list{
        display: flex;
		flex-direction: column;
    }

    .shop_by_category_item{
		margin: 20px 0;
        width: 100%;
        text-align: left;
    }
	
	

    .shop_by_category_item h3{
        font-size: 20px;
    }
    .shop_by_category_item img{
		height: auto;
    }

	
    /* com_shop_by_category_container:end */	
	
	

	

	/*com_product_list_2:start*/	
	.com_product_list_2_inner{
        flex-direction: column;
        flex-wrap: nowrap;
        border-top: none;
        border-left: none;
        padding: 50px 0px 50px 0px;	
	}

	.com_product_list_2_inner .product_item{
        padding:0px;
        width: 100%;
		margin: 5px 0;
	}
	.com_product_list_2_inner .product_item .product_item_inner{
		margin: 0px;
	}
	
.com_product_list_2_inner .all_product_wrapper{
	padding: 0 30px;
}	
	
    .com_product_list_2 .sub_page_banner img{
        height: 250px;
    }
	
    .product_item__image_wrapper, .image_wrapper_inner img{
        height: auto;
    }
	
	/*com_product_list_2:end*/	



	
	
	
	
/*com_best_selling:start*/
    .com_best_selling .another_sliderOLD {
        padding: 0px;
        margin: 20px; 
    }

    .com_best_selling .another_sliderOLD .another_slide {
        width: 100%;
        padding: 0px;
    }	
	
.com_best_selling .another_sliderOLD {
    /* text-align: center; */

}

.com_best_selling .another_sliderOLD .another_slide {
    min-height: 300px;

}	
	

.com_best_selling .another_sliderOLD .another_slide img {
}	
	
/*com_best_selling:end*/
	
	
	
	
/*com_product_details_1:start*/
	.product_paragraph_1 p b{
        display: block;
        width: 100%;
    }

    .product_paragraph_1 p{
        padding: 5px;
        margin: 15px 0 15px 0;
    }		
	
	.slider2 {

/*        margin-bottom: 40px;*/
	}

	.slide2 {
        width: 100%;
        height: 400px;
	}
/*com_product_details_1:end*/	
	
	
	
	
	
}

@media screen and (max-width:768px){
	
	
.squeeze_col1{
	display: none !important;
}	
	
	
	
	.guest_or_user_container{
		padding: 10px 0;
	}

.guest_or_user_col1 span{
	font-size: 15px;
}	
	
	.guest_or_user_inner a{
		padding: 5px;
	}
	
	.guest_or_user_inner a span{
		font-size: 14px;
	}
	
	
	
/* com_reviews_3:start*/
.com_reviews_3{
background: #FFFFFF;
}	
	
.preview-container {
    justify-content: left;
	padding: 0 30px;
}	
    
    .preview-item {
        min-width: 180px;
        padding: 0.75rem 1rem;
		width: 100%;
    }
    
/* com_reviews_3:end*/
	
	
	
	
	.my_location_top_nav{
		display: none !important;
	}
	

/* com_userdetails_1:start*/
.com_userdetails_1{
	flex-direction: column;
}
.com_userdetails_1 .col{
	width: 100%;
	margin: 10px 0;
}

/* com_userdetails_1:end*/	
	
	
/* com_profile_with_submenu:start*/
	.com_profile_with_submenu{
		display: none;
	}
	
.profile_submenu {
	margin-top: 20px;
    position: relative;
	opacity: 1;
	visibility: visible;
	box-shadow: none;
}	
/* com_profile_with_submenu:start*/
	
	
.squeeze_col1{
	display: none;
}
	
.category_and_list_inner_col_list{
	padding-left: 0;
	padding-bottom: 160px;
}	

.footer_head{
	padding: 100px 0 0 0;
	
}

.footer_head_inner{
	padding: 0 20px;
}

.footer_head_inner h4{
	font-size: 40px;
	line-height: 1.3em;
	margin-bottom: 40px;
}

.footer_head_inner_flex{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


.footer_head_inner_flex a{
	width: 100%;
	display: block;
	margin-bottom: 30px;
}

.footer_head_inner_flex a h5{
	font-size: 30px;
	margin-bottom: 5px;
}
	
/*com_confirmation_box:start*/
.com_confirmation_box.show {
    position: fixed;
    top: 110px;
	width: 90%;
}	
/*com_confirmation_box:end*/
	

	

	.com_cart_items_and_total .inner{
	display: block;
	padding: 0 20px;
	justify-content: space-between;
	max-width: 1120px;
	margin: auto;
}

.com_cart_items_and_total .inner .colleft{
	width: 100%;
}
	
.com_cart_items_and_total .inner .colleft .colleftin{
	display: block;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft1{
	width: 100%;
	margin-bottom: 5px;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft2{
	width: 100%;
	padding-left: 80px;
}

.com_cart_items_and_total .inner .colleft .colleftin .colleft3{
	padding: 20px;
/*	display: none;*/
}

.com_cart_items_and_total .inner .colright{
	width: 100%;
	padding: 20px;
}

.com_cart_items_and_total .inner .colright .total_header{
	display: flex;
	justify-content: space-between;
}	
	
	
.static_content{
    padding: 40px 25px;	
}	
	

/* com_benefits_2:start*/
.com_benefits_2_body{
	flex-direction: column;
	padding: 0 30px;

}
.com_benefits_2_body .col{
	width: 100%;
}
/* com_benefits_2:end*/		
	
/* com_booking_1:start */
.com_booking_1{
	background: #FFFFFF;
	padding: 40px 0 0 0;	
}
	
	.com_booking_1_inner{
	
		padding: 0 30px;
	}	
	
.com_booking_1_inner .col{
	width: 100%;
}

/* com_booking_1:end */	
		
	
/* com_pricing_snippet_1:start*/
	.com_pricing_snippet_1{
	}
	.com_pricing_snippet_1_body{
		flex-direction: column;
		padding: 0;
	}
	.com_pricing_snippet_1_body{
		padding: 0 20px;
	}
	
	.com_pricing_snippet_1_body .col{
		width: 100%;
		flex-direction: column;
		margin: 10px 0;
		padding: 20px;
	}
	
	.com_pricing_snippet_1_body .col img{
		width: 40px !important;
		height: 40px !important;
	}
	
	.com_pricing_snippet_1_body .col .row_1 h4{
		padding: 0;
		font-size: 15px;
	}	
	
/* com_pricing_snippet_1:end*/	
	
	
	
/* .com_homepage_2 start */
.slider .slide .slide_text {
    transform:none;
}	
	
	
	
  .instrucions{
   display: flex;
	  flex-direction: column;
  }
  .temp{
  }

/* .com_homepage_2 end */	
	
	
/*com_flex_3_cols_1:start*/
.com_flex_3_cols_1_inner{
	flex-direction: column;
}

.com_flex_3_cols_1_inner .item{
	width: 100%;
	margin-bottom: 30px;
}
.com_flex_3_cols_1_inner .item .item_img_container img{
}	
.com_flex_3_cols_1_inner .item .item_h3_container h3{
	font-size: 30px;
}	
.com_flex_3_cols_1_inner .item .item_body_container{
	height: auto;
}	
/*com_flex_3_cols_1:end*/


	
	
	
/*com_person_1:start*/

.com_person_1_inner{
	box-shadow: none;
	border: 0;
}

/*com_person_1:end*/	
	
	
	
	
	.half_block_banner{
	width: 100%;
	height: 700px;
	display: flex;
	flex-direction: column;
	padding: 60px 30px;
}
.half_block_banner .col{
	width: 100%;
	height: 100%;
	position: relative;
	padding: 5px;
}
	

	
    .cat_container{
        display: flex; 
        justify-content: center; 
		flex-direction: column;
        padding: 0 0 60px 0;
    }
	
    .cat_container_inner .cat_item{
		text-align: left;
        display: block;
		width: 100%;
		line-height: 1.5em;
    }	

}










