
@import url('header.css?V=0.8');
@import url('animate.css');
@import url('jquery-ui.css');
@import url('swiper.min.css');
@import url('font-awesome.css');
@import url('custom-animate.css');
@import url('magnific-popup.css');
@import url('odometer-theme-default.css');
@import url('jquery.bootstrap-touchspin.css');



.theme_color{
	color:var(--main-color);
}

/* Theme Color */

:root {
	
	/* #000DFF in decimal RGB */
	--main-color: #c7300e;
	--main-color-rgb:0,13,255;
	
	/* #C115EC in decimal RGB */
	--color-two: #dd4017;
	--color-two-rgb:193,21,236;
	
	/* #DDDDDD in decimal RGB */
	--color-three: rgb(221,221,221);
	--color-three-rgb:221,221,221;
	
	/* #F2F2F2 in decimal RGB */
	--color-four: rgb(242,242,242);
	--color-four-rgb:242,242,242;




    /* #ffffff in decimal RGB */
	--white-color:rgb(255,255,255);
	--white-color-rgb:255,255,255;

	/* #000000 in decimal RGB */
	--black-color:rgb(0,0,0);
	--black-color-rgb:0,0,0;

}

/*** 

====================================================================
	Reset
====================================================================

 ***/
 
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

/*** 

====================================================================
	Global Settings
====================================================================

***/


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-three);
}

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana-Bold.woff2') format('woff2'),
         url('../fonts/Verdana-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana.woff2') format('woff2'),
         url('../fonts/Verdana.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
    font-family: 'Verdana', Arial, sans-serif;
overflow-x: hidden;
	line-height:1.6em;
	font-weight:400;
	font-size:14px;
	color:#323232;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

.text-left{
	text-align: left;
}


/* Preloader */

.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse farthest-corner at center, #E15E1A 0%, #C7300E 31%);    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader .box {
    position: relative;
    width: 140px;
    height: 140px;
	line-height:140px;
    animation: bounce 1s infinite ease-in-out;
	    border-radius: 200px;
		background-color: #fff;
}
.preloader .box img
{
	padding: 10px;
}

/* Keyframe Animations */

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
}

@keyframes small-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


i{
    font-style: normal;
}

.bordered-layout .page-wrapper{
	padding:0px 50px 0px;
}

a{
	text-decoration:none;
	cursor:pointer;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	color:var(--main-color);
}

button,
a:hover,a:focus,a:visited{
	text-decoration:none;
	outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	margin:0px;
	background:none;
	font-weight:700;
	color:var(--black-color);
       font-family: 'Verdana' !important;
}

input,button,select,textarea{
	
}

textarea{
	overflow:hidden;
}

.text,
p{
	position:relative;
	line-height:1.7em;
	color:#323232;
	font-size:16px;
}

/* Typography */

h1{
	line-height:110px;
	font-size:86px;
}

h2{
    line-height: 55px;
    font-size: 40px;
}

h3{
	line-height:42px;
	font-size:22px;
}

h4{
	line-height:34px;
	font-size:18px;
}

h5{
	line-height:30px;
	font-size:18px;
}

h6{
	line-height:28px;
	font-size:16px;
}

.auto-container{
	position:static;
	max-width:1320px;
	padding:0px 30px;
	margin:0 auto;
}

.auto-container_two{
	position:static;
	max-width:1200px;
	padding:0px 30px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

img{
	display:inline-block;
	max-width:100%;
}

.theme-btn{
	cursor:pointer;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.centered{
	text-align:center;	
}

::-webkit-input-placeholder{color: inherit;}
::-moz-input-placeholder{color: inherit;}
::-ms-input-placeholder{color: inherit;}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

/* backtoup */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.20);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px); }
  .progress-wrap::after {
    position: absolute;
    content: '\f176';
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    color: var(--main-color);
    left: 0;
    top: 0;
    height: 35px;
    width: 35px;
    cursor: pointer;
    display: block;
    font-weight: 700;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-size: 13px; }
  .progress-wrap svg path {
    fill: none; }
  .progress-wrap svg.progress-circle path {
    stroke: var(--main-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; }
  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .progress-wrap.style2::after {
    color: var(--thm-color-2); }
  .progress-wrap.style2 svg.progress-circle path {
    stroke: var(--thm-color-2); }
  .progress-wrap.style3::after {
    color: var(--thm-color-3); }
  .progress-wrap.style3 svg.progress-circle path {
    stroke: var(--thm-color-3);
}

/* List Style One */

.list-style-one{
	position:relative;
}

.list-style-one li{
	position:relative;
	color:var(--white-color);
	font-size:16px;
	font-weight:400;
	line-height:1.8em;
	margin-bottom:10px;
	padding-left:30px;
}

.list-style-one li a{
	position:relative;
	color:var(--white-color);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.list-style-one li a:hover{
	color:var(--main-color);
}

.list-style-one li .icon{
	position:absolute;
	left:0px;
	top:5px;
	color:var(--main-color);
	font-size:18px;
	line-height:1em;
	font-weight:300;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

/* Btn Style One */

.btn-style-one{ 
	position: relative;
	font-weight:700;
    font-size: 15px;
	overflow: hidden;
	text-align:center;
	border-radius:50px;
	padding:16px 34px;
	display:inline-block;
    color: var(--white-color);
	text-transform: capitalize;
	font-family: 'Verdana';
    background: linear-gradient(93deg, rgba(225, 94, 26, 1) 0%, rgba(221, 64, 23, 1) 50%, rgba(199, 48, 14, 1) 100%);
}

.btn-style-one:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background: #52ba55;
}

.btn-style-one:hover:before{
	top: 0%;
}

.btn-style-one .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-one .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--white-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-style-one:hover{
	
}

.btn-style-one:hover:before{
	top: -40%;
}

/* Btn Style Two */

.btn-style-two{ 
	position: relative;
	font-weight:700;
    font-size: 15px;
	overflow: hidden;
	text-align:center;
	padding:20px 48px;
	border-radius:50px;
	display:inline-block;
    color: var(--black-color);
	text-transform: capitalize;
	font-family: 'Verdana';
	background-color: var(--white-color);
}

.btn-style-two:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background:#52ba55;
}

.btn-style-two:hover:before{
	top: 0%;
}

.btn-style-two .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-two .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--black-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-two:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-style-two:hover{
	
}

.btn-style-two:hover:before{
	top: -40%;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	font-weight:700;
    font-size: 16px;
	overflow: hidden;
	text-align:center;
	border-radius:50px;
	padding:20px 50px;
	display:inline-block;
    color: var(--white-color);
	text-transform: capitalize;
	background-color: var(--black-color);
}

.btn-style-three:before{
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-color: rgba(0, 13, 255, 1);
	background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}

.btn-style-three:hover:before{
	top: 0%;
}

.btn-style-three .btn-wrap{
	position:relative;
	z-index:1;
	float:left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one{
	position: relative;
	display: block;
	color: var(--white-color);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-style-three:hover{
	
}

.btn-style-three:hover:before{
	top: -40%;
}

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
    z-index: 2;
	margin-bottom:20px;
}

.sec-title_title{
	position: relative;
    font-weight:700;
    font-size:18px;
	display: flex;
	gap:15px;
	align-items:center;
	color:var(--main-color);
	text-transform:uppercase;
}

.sec-title_dots{
	position:relative;
}

.sec-title_dots span:nth-child(1) {
	animation-delay: 0s;
}

.sec-title_dots span:nth-child(2) {
	animation-delay: 0.5s;
}

.sec-title_dots span:nth-child(3) {
	animation-delay: 1s;
}

@keyframes zoom-in-out {
	0% { transform: scale(0); opacity: 0; }
	20% { transform: scale(1.2); opacity: 1; }
	50% { transform: scale(1); opacity: 1; }
	80% { transform: scale(0.8); opacity: 1; }
	100% { transform: scale(1); opacity: 0; }
}

.sec-title_dots span{
	position:relative;
	width:10px;
	height:10px;
	margin-right:4px;
	border-radius:50px;
	display:inline-block;
	animation: zoom-in-out 3s infinite;
    opacity: 0;
	background-color: rgba(0, 13, 255, 0);
    background-image: linear-gradient(0deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}

.sec-title_heading{
	margin-top: 15px; 
    color: #c7300e;
    text-transform: capitalize; 
}

.sec-title_text{
	line-height:28px; 
	font-size:16px;
	margin-top:10px;
    color:#323232;
	font-weight: 600;
}

.sec-title.light .sec-title_title{
    color: var(--white-color);
}

.sec-title.light .sec-title_title span{
	background-color: rgba(255, 255, 255, 0);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.sec-title.light .sec-title_big-title{
	-webkit-text-stroke-color: rgba(var(--color-three-rgb), 0.30);
}

.sec-title.light .sec-title_text{
	opacity: 1;
	color: var(--white-color);
}

.sec-title.light .sec-title_heading{
	color:var(--white-color);
}

.sec-title.centered{
	text-align: center !important;
}

.sec-title.centered .sec-title_title{
	justify-content:center;
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button{
	top:-2px;
	width:100%;
	border:0px;
	padding: 15px 25px;
	font-weight:500;
	line-height:28px;
	font-size:16px;
	color:var(--color-four);
	background-color: var(--white-color);
	border:1px solid rgba(var(--black-color-rgb), 0.08);
}

.form-group .ui-button .ui-icon{
	background:none;
	position:relative;
	top:3px;
	text-indent:0px;
	color:#a5a5a5;	
}

.form-group .ui-button .ui-icon:before{
	font-family: 'FontAwesome';
	content: "\f107";
	position:absolute;
	right:0px;
	top:2px !important;
	top:10px;
	height:22px;
	display:block;
	line-height:20px;
	font-size:14px;
	font-weight:normal;
	text-align:center;
	z-index:5;
	color:var(--color-three);
}

.ui-menu .ui-menu-item{
	font-size:14px;
}

.ui-menu .ui-menu-item:last-child{
	border:none;	
}

.ui-state-active, .ui-widget-content .ui-state-active{
	background-color:var(--main-color) !important;
	border-color:var(--main-color) !important;
}

.ui-menu .ui-menu-item-wrapper{
	position:relative;
	display:block;
	padding:8px 20px;
	line-height:24px;
	font-size:14px;
}

.ui-menu-item:hover{
	background-color:var(--color-two);
}

/* Cursor End */

.xs-sidebar-group .close-button{
	font-family: "Flaticon";
}

.newsletter-popup-area-section{
	display: none;
}

.ui-datepicker td span, .ui-datepicker td a{
	text-align: center !important;
}

/* Shop Sidebar */

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
    cursor: url(../images/cross-out.png), pointer;
}

.xs-sidebar-group .close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
	cursor:pointer;
	font-size:var(--font-18);
}

.xs-sidebar-group .close-button .mdi{
	color:var(--color-four);
	font-size:var(--font-14);
	font-family: "Material Design Icons";
}

.xs-sidebar-group .close-button .mdi:hover{
	color:var(--black-color);
}

.xs-sidebar-widget:nth-child(2){
	right:-380px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 370px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    -webkit-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    -o-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
    transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}
.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}
.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0px;
    -webkit-transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.8, 0.03, 0, 0.96) 0.4s;
    transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}
.sidebar-textwidget {
    padding: 0px;
}
.close-side-widget {
    font-size: rem(15px);
    display: block;
}
.sidebar-widget-container {
    position: relative;
    top: 0px;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
}
.xs-sidebar-group.isActive .sidebar-widget-container {
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}
.xs-bg-black {
    background-color: #000000;
}
.xs-menu-tools > li {
    display: inline-block;
    margin-right: 15px;
}
.xs-menu-tools > li:last-child {
    margin-right: 0;
}
.xs-menu-tools > li > a {
    color: #000000;
    text-decoration: none;
}
.nav-alignment-dynamic,
.nav-alignment-flex-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}


/*** 

====================================================================
	Achieve One USE
====================================================================

***/
.ptb-60
{
	padding-top: 60px;
	padding-bottom: 60px;
}
.achieve-one{
	position: relative;
	padding: 60px 0px 70px;
}


.achieve-one_vector{
	position:absolute;
	left:15px;
	top:0px;
	right:15px;
	bottom:0px;
	background-position:left center;
	background-repeat:no-repeat;
}

.achieve-one_vector-two{
	position:absolute;
	left:15px;
	top:0px;
	right:15px;
	bottom:20px;
	background-position:right bottom;
	background-repeat:no-repeat;
}

.achieve-one_bg{
	position:absolute;
	left:15px;
	top:0px;
	right:15px;
	bottom:0px;
	border-radius: 50px;
	background-size:cover;
	    background-position: 100%;
}

.achieve-one_counter{
    position: relative;
    border: 1px solid rgb(255 255 255);
    border-bottom: none;
    border-right: none;
}
.counter-one_column .counter-one_inner img
{
	    filter: brightness(0) invert(1);
}

.counter-one_column{
	position:relative;
}

.counter-one_column:last-child{
	border-right:none;
}

.counter-one_inner{
    position: relative;
    padding: 15px 20px;
    border-right: 1px solid rgb(255 255 255);
    border-bottom: 1px solid rgb(255 255 255);
	    height: 100%;
}

.counter-one_inner:before{
	position:absolute;
	content:'';
	left:0px;
	right:0px;
	bottom:0px;
	opacity:0;
	height:0%;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background-color: #e52e33;
}

.counter-one_inner:hover::before{
	top:0px;
	opacity:1;
	height:100%;
}

.exhibition-one_text
{
	  position: relative;
    color: #ffffff;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500; 
    margin-bottom: 0;
}
.counter-one_text{
    position: relative;
    color: #ffffff;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    min-height: 120px;
    margin-bottom: 0;
}

.counter-one_count{
	position:relative;
	color:#ffffff;
	font-size:80px;
	font-weight:700;
	line-height:1em;
}


/*** USE

====================================================================
	Process One
====================================================================

***/

.process-one{
	position:relative;
	padding:40px 0px 60px;
}

.process-one.style-two{
	padding-bottom:0px;
}


.step-block_one{
	position:relative;
}

.step-block_one-inner{
    position: relative;
    padding: 25px 25px;
    border-radius: 20px;
    border: 2px solid #D9D9D9;
    min-height: 250px;
}

.step-block_one-inner:before{
    position: absolute;
    content: '';
    right: -29px;
    bottom: 60px;
    width: 30px;
    height: 90px;
    z-index: 1;
    background: url(../images/icons/curve.png?V=1);
    background-size: contain;
    background-repeat: no-repeat;
}

.step-block_one:last-child .step-block_one-inner::before{
	display:none;
}

.step-block_one-bg{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0;
	background-size:cover;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.step-block_one-inner:hover .step-block_one-bg{
	opacity:1;
}

.step-block_one-number{
	position:relative;
	font-size:16px;
}

.step-block_one-number span{
	position:relative;
	line-height:1em;
	font-weight:800;
	font-size:70px;
    background: linear-gradient(93deg, rgba(225, 94, 26, 1) 0%, rgba(221, 64, 23, 1) 50%, rgba(199, 48, 14, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-block_one-inner:hover .step-block_one-number span{
	color:var(--black-color);
	-webkit-text-fill-color: inherit;
}

.step-block_one-inner:hover .step-block_one-heading{
	color:var(--main-color);
}

.step-block_one-inner h6
{
    margin-top: 15px;
    color: #c7300e;
}

.step-block_one-heading{
	position:relative;
    font-size: 16px;
    font-weight: 500;
    margin-top: 0px;
	color:var(--black-color);
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	line-height: 26px
}

.step-block_one-text{
	position:relative;
	font-size:16px;
	color:#323232;
	line-height:30px;
	margin-top:15px;
}

.process-one_content{
	position:relative;
	text-align:right;
	margin-top:-140px;
}

.process-one_button{
	position:relative;
}

.process-one_content-text{
	position:relative;
	font-size:16px;
	line-height:30px;
	color:#323232;
	margin-top:20px;
}

/*** 

====================================================================
	Testimonial One USE
====================================================================

***/

.testimonial-one{
	position:relative;
	padding:60px 0px 60px;
}

.testimonial-one_pattern-layer{
	position:absolute;
	left:0px;
	top:-300px;
	bottom:0px;
	width:732px;
	height:1376px;
	background-repeat:no-repeat;
}

.testimonial-one .sec-title{
	margin-bottom:30px;
}

.testimonial-one_talk{
	position:relative;
	font-size:32px;
	gap:25px;
	font-weight:700;
	color:var(--color-two);
}

.about-one_arrows{
	position:relative;
	width:275px;
	height:130px;
	margin-left:40px;
	margin-top:-40px;
	-webkit-animation: icon-bounce 0.8s ease-out infinite;
    animation: icon-bounce 0.8s ease-out infinite;
}

.testimonial-one_content-column{
	position:relative;
}

.testimonial-one_carousel-column{
	position:relative;
}

.testimonial-one_carousel-content{
	position:relative;
	margin-left:30px;
	border-radius:30px;
	padding:10px 40px 15px;
	background-color:#f5f5f5;
}

.testimonial-one_carousel-content:before{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	width:126px;
	height:126px;
	background: url(../images/icons/vector-1.png);
}

.testimonial-one_carousel-content:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:199px;
	height:125px;
	background: url(../images/icons/vector-2.png);
}

.testimonial-one_carousel-layer{
	position:absolute;
	left:0px;
	top:0px;
	width:389px;
	height:238px;
	background: url(../images/icons/vector-2.png);
}

.testimonial-one_carousel-content .swiper-container{
	padding-bottom:60px;
	margin-left:-25px;
}

.testimonial-block_one{
    position: relative;
    min-height: 290px;
}

.testimonial-block_one-inner{
	position:relative;
	padding-left: 20px;
	padding-right: 20px;
}

.testimonial-block_one-author{
    position: relative;
    font-size: 20px;
    font-weight: bold;
    padding-left: 0px;
    padding-top: 10px;
    min-height: 100px;
    color: var(--main-color);
    font-family: 'Verdana';
}

.testimonial-block_one-author span{
	position:relative;
	display:block;
	font-size:14px;
	font-weight:600;
	margin-top:10px;
	color:var(--black-color);
	font-family: 'Verdana';
}

.testimonial-block_one-author_image{
	position:absolute;
	left:0px;
	top:0px;
	width:90px;
	height:90px;
	overflow:hidden;
	border-radius:150px;
}

.testimonial-block_one-text{
    position: relative;
    font-size: 16px;
    line-height: 27px;
    margin-top: 5px;
    color: var(--black-color);
}

.testimonial-block_one-rating{
	position:relative;
	display:flex;
	gap:4px;
	justify-content: end;
    align-items: center;
	margin-top:70px;
	font-size:32px;
	font-weight:700;
	text-align:right;
	line-height:1em;
	color:var(--black-color);
}

.testimonial-block_one-rating span{
	position:relative;
	font-size:22px;
	color:var(--color-two);
}

.testimonial-one_arrow{
	position:absolute;
	left:0px;
	z-index:99999;
	bottom:0px;
}

.testimonial-one_carousel-prev,
.testimonial-one_carousel-next{
	position:relative;
	width:50px;
	height:50px;
	font-size:20px;
	margin:0px 1px;
	border-radius:50px;
	line-height:50px;
	text-align:center;
	display:inline-block;
	color:var(--white-color);
    background: linear-gradient(93deg, rgba(225, 94, 26, 1) 0%, rgba(221, 64, 23, 1) 50%, rgba(199, 48, 14, 1) 100%);
	
}

.testimonial-one_carousel-prev:hover,
.testimonial-one_carousel-next:hover{
	color:var(--white-color);
	background:#52ba55;
}

/* Skills Section */

.default-skills{
	position:relative;
}

.default-skill-item{
	position:relative;
	margin-bottom:40px;
}

.default-skill-item:last-child{
	margin-bottom:0px;
}

.default-skill-title{
	position:relative;
	font-weight:700;
	font-size:22px;
	margin-bottom:15px;
	color:var(--black-color);
	text-transform:capitalize;
	font-family: 'Verdana';
}

.default-skill-bar{
	position:relative;
	width:100%;
	height:16px;
	border-radius:50px;
}

.default-skill-bar:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:-8px;
	right:0px;
	height:16px;
	border-radius:50px;
	background-color:#D9D9D9;
}

.default-bar-inner{
	position:relative;
	width:100%;
	height:16px;
	overflow:hidden;
	border-radius:50px;
}

.default-bar{
	position:absolute;
	left:0px;
	top:0px;
	height:16px;
	width:0px;
	border-radius:50px;
	background-color: rgba(0, 13, 255, 0);
    background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
	-webkit-transition:all 2000ms ease;
	-ms-transition:all 2000ms ease;
	-o-transition:all 2000ms ease;
	-moz-transition:all 2000ms ease;
	transition:all 2000ms ease;
}

.default-count-box{
	position:absolute;
	right:0px;
	top:0px;
	font-weight:700;
	font-size:18px;
	color:var(--black-color);
}

.about-two_button{
	position:relative;
	margin-top:60px;
}
/*** 

====================================================================
	Incredible One USE
====================================================================

***/

.incredible-one{
	position:relative;
	padding:60px 0px 60px;
	margin-top: 60px;
}

.incredible-one .sec-title{
	margin-bottom:25px;
}

.incredible-one_vector{
    position: absolute;
    left: 40px;
    top: -80px;
    width: 461px;
    height: 565px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

.incredible-one_bg{
position: absolute;
    left: 15px;
    top: 0px;
    right: 15px;
    bottom: 0px;
    border-radius: 50px;
    /* background: linear-gradient(93deg, rgba(225, 94, 26, 1) 0%, rgba(221, 64, 23, 1) 50%, rgba(199, 48, 14, 1) 100%); */
    background-image: url(../images/common-bg.png);
    background-size: cover;
    background-position: 100% 100%;
}

.incredible-one_pattern{
	position:absolute;
	right:15px;
	top:0px;
	bottom:0px;
	width:551px;
	background-repeat:no-repeat;
}

.incredible-one_title{
	position:relative;
	font-size:120px;
	line-height:110px;
	font-weight:800;
	opacity:0.8;
	text-transform:uppercase;
	color: transparent;
	font-family: "Raleway", serif;
	-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(var(--white-color-rgb), 1);
}

/*** 


/*** 

====================================================================
	About Three USE
====================================================================

***/

.about-three{
	position:relative;
	overflow:hidden;
	border-radius:50px;
	padding:60px 0px 60px;
	background-color:#e6e9f1;
	margin:0px 20px;
}

.about-three_shadow{
	position:absolute;
	left:0px;
	top:-220px;
	right:0px;
	bottom:0px;
	background-position:right top;
	background-repeat:no-repeat;
}

.about-three_title-column{
	position:relative;
}

.about-three_title-outer{
	position:relative;
	padding-right:30px;
}

.about-three_content{
	position:relative;
	padding-left:0px;
}

.about-three_experiance{
	position:absolute;
	left:0px;
	top:0px;
	width:100px;
	height: 260px;
	border-radius:50px;
	text-align:center;
	padding:10px 10px;
	color:var(--white-color);
}

.about-three_experiance strong{
	position:relative;
	display:block;
	font-size:35px;
	line-height:48px;
	font-family: 'Verdana';
}

.about-three_experiance span{
    position: relative;
    font-size: 18px;
    line-height: 28px;
    transform: rotate(90deg);
    display: block;
    width: 182px;
    text-align: left;
    font-weight: bold;
    transform-origin: 7% 98%;
}

.about-three_title{
	position:relative;
	font-size:24px;
	font-weight:700;
	line-height:30px;
	color:var(--main-color);
	font-family: 'Verdana';
}

.about-three_text{
	position:relative;
	font-size:16px;
	font-weight:400;
	line-height:30px;
	color:#323232;
	margin-top:10px;
}

.about-three_button{
	position:relative;
	margin-top:25px;
}

.about-three_image-column{
	position:relative;
}

.about-three_image-outer{
	position:relative;
	padding-right:20px;
	margin-left:-50px;
}

.about-three_image{
	position:relative;
	overflow:hidden;
	border-radius:40px;
}

.about-three_image img{
	position:relative;
	width:100%;
	display:block;
}

.about-three_image-two{
	position:absolute;
	right:-80px;
	bottom:0px;
	overflow:hidden;
	border-radius:26px;
}

.about-three_authors{
	position:relative;
	display:flex;
	gap:25px;
	margin-top:50px;
	margin-left:30px;
}

.about-three_authors ul{
	position:relative;
	display:flex;
	margin-left:20px;
}

.about-three_authors ul li{
	position:relative;
	width:54px;
	height:54px;
	margin-left:-20px;
	border-radius:50px;
	display:inline-block;
	border:3px solid var(--white-color);
}

.about-three_reviews{
	position:relative;
	font-weight:800;
	font-size:30px;
	color:var(--black-color);
	font-family: 'Verdana';
}

.about-three_reviews span{
	position:relative;
	font-weight:600;
	font-size:16px;
}

.about-three .animation_mode{
	position:relative;
	min-height:150px;
	margin-top:0px;
}

.about-three .animation_mode h1{
    position: relative;
    font-size: 80px;
    line-height: 1em;
    font-weight: 800;
    color: #000000;
    margin: 30px 25px 0px;
    display: inline-block;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #c7300e;
    font-family: "Raleway", serif;
}

/*** 

====================================================================
	Inspire One USE
====================================================================

***/

.inspire-one{
	position:relative;
	overflow:hidden;
	padding:25px 0px;
}

.inspire-one.alternate{
	padding-bottom:120px;
}

.inspire-one:before{
	position:absolute;
	content:'';
	left:0px;
	top:22px;
	right:0px;
	height:100px;
 background: linear-gradient(93deg, rgba(225, 94, 26, 1) 0%, rgba(221, 64, 23, 1) 50%, rgba(199, 48, 14, 1) 100%);
}

.inspire-one .animation_mode{
	position:relative;
	min-height:100px;
	transform:rotate(2deg);
	background-color:#52ba55;
}

.inspire-one .animation_mode h1{
    position: relative;
    font-size: 32px;
    line-height: 1em;
    font-weight: 700;
    margin: 35px 25px 0px;
    display: inline-block;
    text-transform: uppercase;
	color: var(--white-color);
	font-family: 'Verdana';
}
.inspire-one .animation_mode h1:hover{
	color: var(--main-color);
}

/* USE */

.slider-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: #dd40179e;
    z-index: -1;
}


.social-fixed-right {
position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background-color: #ffffffd1;
    padding: 5px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.social-icon  {
    width: 30px;
    height: 30px;
       background-color: #c7300e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none;
	    border: 1px solid #c7300e1a;
}

.social-icon img
{
	filter: brightness(0) invert(1);
}
.social-icon i
{
	color: #fff;
}
.social-icon:hover {
    transform: scale(1.1);
    color: #fff;
}


.br-8
{
	border-radius: 8px;
}

	.footer-discuss .up-down_animation div {
    color: #fff !important;
}
.vide-slider
{
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.vide-slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 15%);
    pointer-events: none;
    z-index: 9;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: #fff;
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.cookie-popup p {
    margin: 0 0 12px;
    font-size: 14px;
	color: #000;
    line-height: 1.5;
}

.cookie-popup a {
    color: #c9310e;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-popup button {
    border: none;
    padding: 7px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.btn-accept {
    background: #c9310e;
    color: #fff;
}

.btn-accept:hover {
    background: #e05619;
}

.btn-decline {
    background: #444;
    color: #fff;
}

.btn-decline:hover {
    background: #666;
}.video-slider
		{
			width: 100%;
    height: 100%;
    object-fit: fill;
		}
		@media only screen and (max-width: 767px){
.video-slider
{
	margin-top: 120px;
}
		}

		.swiper-slide.swiper-slide-active
{
    border-right: 1px solid #c7300e;
    height: 100%;}

	
.page-title{
	position:relative;
	overflow: hidden;
	text-align: center;
	padding:200px 0px 25px;
}

.page-title_big-title{
	position:absolute;
	left:70px;
	bottom:90px;
	z-index:10;
	color: transparent;
    font-weight: 800;
	font-size:100px;
    text-transform: uppercase;
    font-family: "Raleway", serif;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(var(--white-color-rgb), 0.40);
}

.page-title_bg-image{
	position:absolute;
	left:20px;
	top:0px;
	right:20px;
	bottom:0px;
	overflow:hidden;
	border-radius:50px;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
}



.page-title h1{
	color:var(--white-color);
	text-transform:capitalize;
}

.page-title .bread-crumb{
	position: relative;
	margin-top:5px;
}

.page-title .bread-crumb li{
	position: relative;
	font-weight:500;
	font-size: 18px;
	margin-right: 15px;
	padding-right: 15px;
	display:inline-block;
	color:var(--white-color);

}

.page-title .bread-crumb li:first-child::before{
	position: absolute;
	right: -6px;
	top:-2px;
    content: ":";
	font-size: 22px;
	font-family: 'Font Awesome 6 Free';
}

.page-title .bread-crumb li:last-child{
	padding-right: 0;
	margin-right: 0;
}

.page-title .bread-crumb li:last-child:before{
	display: none;
}

.page-title .bread-crumb li a{
	color:var(--white-color);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;	
}

.page-title .bread-crumb li a:hover{
	color:var(--main-color);
}

 .contact-two{
	position:relative;
	padding:60px 0px 60px;
}

.contact-two_shadow{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-position:center center;
	background-repeat:no-repeat;
}

.contact-two .inner-container{
	position:relative;
	border-radius:20px;
	padding:50px 50px 50px;
	background-color:var(--white-color);
	border:1px solid rgba(var(--black-color-rgb), 0.10);
}

.contact-info_box{
	position:relative;
	margin-top:80px;
}

.contact-info_box .contact-info_text{
	position:relative;
	margin-top:15px;
}

.contact-info_block{
	position:relative;
}

.contact-info_block-inner{
	position:relative;
}

.contact-info_block-icon{
	position:relative;
	width:50px;
	height:50px;
	font-size:20px;
	line-height:52px;
	font-weight:700;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	color:var(--main-color);
	font-family: 'Font Awesome 6 Free';
	border:2px solid var(--main-color);
}

.contact-info_block-inner h4{
	margin:15px 0px 10px;
	color:var(--black-color);
}

 .form-group input,select,textarea {
      position: relative;
    display: block;
    width: 100%;
    height: 60px;
    line-height: 28px;
    padding: 10px 30px;
    font-weight: 400;
    font-size: 14px;
    background: none;
    color: #323232;
    border-radius: 50px;
    -webkit-transition: all 300ms 
ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms 
ease;
       background-color: #F5F5F5;
    margin-bottom: 25px;
    border: 1px solid #d9d9d9;
    margin-bottom: 25px;
}

.form-group i{display: none;}

.contact-two table td label
{
	padding-left: 5px;
}


.col-xl-2:last-child .step-block_one-inner::before,
.col-lg-2:last-child .step-block_one-inner::before,
.col-md-2:last-child .step-block_one-inner::before {
    display: none;
}

.table-bordered>:not(caption)>* {
    border-width: var(--bs-border-width) 0;
    border: 1px solid #dc4414;
}
.w-20p {
    width: 20%;
}

	/* SAME HEIGHT + CENTER CONTENT */
.creative-box {

    text-align: center;
       background-image: url(https://annapoornainterfood.com/assets/images/common-bg.png);
    background-size: cover;
    background-position: 100% 100%;
    border-radius: 14px;
    padding: 18px;
	height: 100%;
    transition: all 0.4s ease;
   
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* IMAGE FIXED SIZE */
.creative-img {
    width: 100%;
 
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.creative-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* STRONG HOVER EFFECT */
.creative-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    background-image: url(https://annapoornainterfood.com/assets/images/common-bg.png);
    background-size: cover;
    background-position: 100% 100%;
}
.creative-box:hover p
{
	color: #fff;
}
.creative-box:hover img {
    transform: scale(1.12);
}

.creative-content p
{
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}

.pt-60
{
	padding-top: 60px;
}

.pb-30
{
	padding-bottom: 30px;
}


.service-block_one{
	position:relative;
	z-index:99;
	margin-bottom:20px;
}

.service-block_one-inner{
	position:relative;
	border-radius:50px;
	overflow:hidden;
	padding:25px 30px 45px;
    background: radial-gradient(ellipse farthest-corner at center, #E15E1A 0%, #C7300E 31%);
}

.service-block_one-inner:before{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	opacity:1;
	width:162px;
	height:151px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background: url(../images/icons/vector-5.png?V=1);
}

.service-block_one-icon{
	position:relative;
	width:90px;
	height:90px;
	text-align:center;
	line-height:90px;
	border-radius:50px;
	display:inline-block;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
    background-color: rgb(255, 255, 255);

}

.service-block_one-inner:hover .service-block_one-icon{
	transform: rotateY(180deg);
}

.service-block_one-heading{
    position: relative;
    margin-top: 15px;
    font-weight: 400;
}

.service-block_one-heading a{
	position:relative;
	color:var(--white-color);
}

.service-block_one-shadow{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-position:right bottom;
	background-repeat:no-repeat;
}

.service-block_one-arrow {
    position: absolute;
    right: 9px;
    top: 7px;
    width: 70px;
    height: 70px;
    z-index: 1;
    opacity: 0;
    text-align: center;
    line-height: 70px;
    border-radius: 50px;
    display: inline-block;
    transform: rotate(90deg);
    background-color: var(--white-color);
    transition: all 500ms 
ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms 
ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.service-block_one-inner:hover .service-block_one-arrow{
	opacity:1;
	transform: rotate(0deg);
}

.service-block_one-inner:hover::before{
	opacity:1;
}

	.gallery
					{
						    border-radius: 8px;
    background: #fff;
    padding: 5px;
    margin-bottom: 20px;
					}

					
.pricing-section {

  text-align: center;
}


.pricing-card {
  background: #fff;
  color: #fff;
  border-radius: 15px;
margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    background: radial-gradient(ellipse farthest-corner at center, #E15E1A 0%, #C7300E 31%)
}
.pricing-card:hover ul li {
  color: #fff;
}

.pricing-card:hover ul li i {
  color: #fff;
}
.plan-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.pricing-card:hover .text-red {
  color: #fff !important;
}

.pricing-card:hover .pricing-header {
  background-color: #c29c4c;
}

.price {
  font-size: 22px;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 10px;
  margin-bottom: 0px;
  border-bottom: 5px solid #c7300e;
  border-radius: 13px;
      padding-top: 0;
}

.pricing-features li {
    text-align: left;
    padding: 13px 5px;
    border-bottom: 1px solid #0000001a;
        font-size: 14px;
    color: #000;
    line-height: 18px;
    display: flex;
}
.pricing-features li b {
 float: right;
    position: absolute;
    right: 15px;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features i {
  margin-right: 8px;
  color: #4cab1e;
}

.btn-pricing {
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-pricing:hover {
  background-color: #000;
  color: #fff;
}

.pricing-section .col-lg-2 {
  flex: 0 0 19.666667%;
  max-width: 20.666667%;
  padding: 5px;
}
.pricing-header {
    padding: 12px 0px;
    color: #fff;
    background-image: url(../images/common-bg.png);
    background-position: 100% 100%;
    background-size: cover;
}

		.checklist-award ul {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 0 24px;
}
.checklist-award li {
color: #ffffff;
    margin-bottom: 11px;
    font-weight: 600;
    position: relative;
    padding-left: 24px;
    list-style: none;
	font-size: 15px;
}
.checklist-award li:before {
    content: "\f00c";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    font-weight: 900;
    color: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: 0.3s 
ease-in-out;
    transition: 0.3s 
ease-in-out;
}

.footer-three_logo img
{
    margin-bottom: 15px;
    margin-top: 15px;

}


/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position:relative;
	padding-top:90px;
	padding-bottom: 100px;
}

.main-footer_bg-color{
	position:absolute;
	left:15px;
	top:0px;
	right:15px;
	bottom:15px;
	border-radius:50px;
    background-image: url(../images/common-bg.png);
    background-size: cover;
    background-position: 100% 100%;

/* background: radial-gradient(ellipse farthest-corner at center, #E15E1A 0%, #C7300E 31%); */



}

.main-footer_vector{
	position:absolute;
	right:15px;
	top:70px;
	width:306px;
	height:306px;
	background-repeat:no-repeat;
}

.main-footer .inner-container{
	position: relative;
}


.main-footer_image{
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-size: cover;
}

.footer-text{
    position: relative;
    font-size: 21px;
    margin-top: 10px;
    line-height: 26px;
    color: var(--white-color);

}

.intro-img
{
	z-index: 9;
	position: relative;
}
.footer-discuss{
	position:relative;
	font-size:40px;

	z-index:10;
	font-weight:700;
	line-height:1em;
	color:var(--white-color);
    margin-bottom: 15px;
	font-family: 'Verdana';
}

.footer-social_box{
	position: relative;
	z-index:10;
}


.footer-type_title{
	position:absolute;
	left:0px;
	bottom:30px;
	right:0px;
	font-size:50px;
	text-align:left;
	font-weight:bold;
	line-height:1em;
	
	color: rgba(var(--white-color-rgb), 0.45);
}

/* Footer Bottom */

.footer-bottom{
	position: relative;
	padding: 40px 0px 50px;
	text-align: center;
}

.main-footer_copyright{
	position: relative;
	font-size: 20px;
	font-weight:600;
	color: var(--white-color);
}

/* Footer Two */

.footer-two{
	position:relative;
	margin: 20px;

}

.footer-two_bg{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	border-radius:40px;
	background-color: rgba(13, 25, 67, 1);
    background-image: linear-gradient(180deg, rgba(8, 10, 49, 1) 0%, rgba(130, 0, 176, 1) 100%);
}

.footer-two_shape-one{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	height:126px;
	background-position:right top;
	background-repeat:no-repeat;
}

.footer-two_shape-two{
	position:absolute;
	left:0px;
	bottom:0px;
	right:0px;
	height:82px;
	background-position:left bottom;
	background-repeat:no-repeat;
}

.footer-two_shape-three{
	position:absolute;
	right:0px;
	bottom:0px;
	left:0px;
	height:82px;
	background-position:right bottom;
	background-repeat:no-repeat;
}

.footer-two_widgets{
	position:relative;
	padding:160px 0px 70px;
}

.footer-two_column{
	position:relative;
	margin-bottom:30px;
}

.footer-logo_two{
	position:relative;
	margin-bottom:35px;
}

.footer-two_appointment{
	position:relative;
	font-size:48px;
	font-weight:700;
	line-height:58px;
	margin-bottom:10px;
	color:var(--white-color);
	font-family: 'Verdana';
}

.footer-two_text{
	position:relative;
	font-size:16px;
	line-height:30px;
	max-width:500px;
	margin-top:10px;
	color:var(--white-color);
}

.footer-two_socials{
	position:relative;
	margin-top:30px;
	z-index:10;
	display: inline-block;
}

.footer-two_socials a{
	position:relative;
	width:34px;
	height:34px;
	line-height:34px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	color:var(--white-color);
}

.footer-two_socials a:hover{
	background-color: rgba(0, 13, 255, 1);
    background-image: linear-gradient(180deg, rgba(0, 13, 255, 1) 0%, rgba(193, 21, 236, 1) 100%);
}

.footer-two_vector{
	position:absolute;
	left:40%;
	top:15%;
	width:366px;
	height:355px;
	background-repeat:no-repeat;
}

.footer-two_title{
	position:relative;
	font-size:24px;
	font-weight:700;
	line-height:36px;
	color:var(--white-color);
	font-family: 'Verdana';
}

/* Footer Three */

.footer-style_three{
	position:relative;

	padding-bottom:30px;
	margin-left:20px;
	margin-right: 20px;
}

.footer-style_three-bg{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:30px;
	border-radius:50px;
    background:#e52e33;
}

.footer-style_three-bg_image{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:30px;
	border-radius:50px;
	background-size:cover;
}

.footer-style_three .widgets-section{
	position:relative;
	padding:50px 0px 50px;
}

.footer-three_column{
	position:relative;
	margin-bottom:0px;
}


.footer-three_text{
	position:relative;
	font-size:16px;
	line-height:28px;
	margin-bottom:50px;
	color:var(--white-color);
}

.footer-three_location-title{
	position:relative;
	font-size:24px;
	font-weight:600;
	color:var(--white-color);
	font-family: 'Verdana';
}

.footer-three_location-text{
    position: relative;
    font-size: 15px;
    line-height: 25px;
    margin-top: 0px;
    color: var(--white-color);
}

.footer-three_title{
	font-weight:600;
	margin-bottom:15px;
	color:var(--white-color);
}

.footer-style_three .gallery-widget .instagram-block_one{
	width:33.333%;
	display:flex;
	padding:0px 5px;
	margin-bottom:10px;
}

.footer-style_three .gallery-widget .instagram-block_one i img{
	width:24px;
}

.footer-style_three .gallery-outer{
	position:relative;
	margin-bottom:15px;
}

.footer-three_widget.links-widget{
	padding-left:50px;
}

.footer-three_list{
	position:relative;
	
}

.footer-three_list li{
	position:relative;
	margin-bottom:10px;
}

.footer-three_list li a:hover{
	color:#15C1EC;
}

.footer-three_list li a{
	position:relative;
	font-size:15px;
	color: var(--white-color);
}

.footer-three_appointment-title{
	position:relative;
	font-size:28px;
	line-height:38px;
	font-weight:600;
	color: var(--white-color);
}

.footer-three_appointment-subtitle{
	position:relative;
	margin-top:15px;
	font-size:20px;
	font-weight:700;
	color:#15C1EC;
	font-family: 'Verdana';
}

.footer-three_appointment-text{
	position:relative;
	font-size:16px;
	line-height:28px;
	margin-top:15px;
	color:var(--white-color);
}


.footer-three_bottom{
	position:relative;
	padding:10px 10px;
	border-radius:50px;
	text-align:center;
	background-color:#fff;
}

.footer-three_copyright{
	position:relative;
	font-size:16px;
	color:var(--black-color);
}


   .footer-three_logo {
background: #fff;
    padding-left: 20px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-right: 15px;
	    margin-top: 15px;
                }

                .pl-0 {
                    padding-left: 0px;
                    margin-left: 0;
                }

                .pl-30 {
                    padding-left: 30px;
                }

				

.timing-card {

    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;

    position: relative;
    margin-bottom: 10px;
}

.timing-card:hover {
    transform: translateY(-8px);
}

.timing-card h3 {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.timing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timing-card li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.timing-card li:last-child {
    border-bottom: none;
}

.date {
    font-weight: 600;
}

.time {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Exhibitor Theme */
.exhibitor h3 {
    color: #e15e1a;
    border-left: 4px solid #e15e1a;
}
.exhibitor .time {
    background: #fde6db;
    color: #c7300e;
}

/* Visitor Theme */
.visitor h3 {
    color: #0056b3;
    border-left: 4px solid #0056b3;
}
.visitor .time {
    background: #e1ecff;
    color: #0056b3;
}

/*  */

 .previous-edition:nth-child(1),
 .previous-edition:nth-child(2) {
  border-right: 0 !important;
}


.previous-edition h3 {
  font-size: 45px;
    font-weight: bold;
    margin-bottom: 15px;
margin-top: 10px;
      -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ee1d23;
    font-family: "Raleway", serif;
    font-weight: bold;
}

.bar {
  height: 6px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
    background: linear-gradient(93deg, rgba(225, 94, 26, 1) 0%, rgba(221, 64, 23, 1) 50%, rgba(199, 48, 14, 1) 100%);
  animation: grow 1.5s ease forwards;
}

@keyframes grow {
  from { width: 0; }
}
.previous-edition {
    border: 1px solid #c7300e;
    padding: 20px;
    transition: background 0.6s ease-in-out; /* smooth hover */
}

.previous-edition:hover {
    background-image: url(https://annapoornainterfood.com/assets/images/common-bg.png);
    background-size: cover;
    background-position: 100% 100%;
}
.previous-edition:hover h3
{
     -webkit-text-stroke-color: #fff;

}

.previous-edition:hover h6
{
     color: #fff;
}

.previous-edition:hover .bar span 
{
    background: linear-gradient(93deg, rgb(255 255 255) 0%, rgb(255 255 255) 50%, rgb(209 209 209) 100%);
}
  .info-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 30px;
}

/* Underline */
.info-step::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #fff;
}

/* Arrow head */
.info-step::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

    .infographic-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
}

/* Connecting line */
.infographic-row::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.info-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-no {
display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #65ba6a;
    font-size: 29px;
    font-weight: 650;
    margin-bottom: 20px;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FF5722;
}



.info-step p {
  
     color: #fff;
    margin-bottom: 0;
    font-weight: 600;
	    font-size: 15px;
		line-height: 1.6em;
}

/* Responsive */
@media(max-width: 992px) {
    .infographic-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .infographic-row::before {
        display: none;
    }
}

@media(max-width: 576px) {
    .infographic-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.img-gallery img
{
border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #c7300e4a;
}


.ways-to-venue {
    gap: 20px;
}

.venue-icon {
    flex: 0 0 auto;
}

.venue-text h6 {
    margin-bottom: 10px;
    font-size: 20px;
}

.venue-text h4 {
    margin-bottom: 0;
	    font-weight: 600;
}


		.ways-to-venue
		{
			    position: relative;
    padding: 25px 25px;
    border-radius: 20px;
    border: 2px solid #D9D9D9;
    min-height: 180px;
		}
		.ways-to-venue img
		{
			margin-bottom: 15px;
		}
.ways-to-venue:hover
		{
			    background: radial-gradient(ellipse farthest-corner at center, #E15E1A 0%, #C7300E 31%);
			 border: 2px solid #C7300E;
		}
		@media (max-width: 576px) {
    .ways-to-venue {
        flex-direction: column;
        text-align: center;
    }
}

 .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* iOS trick */
}


    .footer-edition,
.footer-edition *,
.footer-edition:hover,
.footer-edition:focus {
    color: #fff !important;
}

.footer-edition sup {
  position: relative;
  top: -36px;     font-size: 30px !important;

}
.footer-edition p
{
     font-size: 35px !important;    color: var(--white-color);
}
.footer-edition
{
        position: relative;
    font-size: 75px;

    z-index: 10;
    font-weight: 700;
    line-height: 1em;
    color: var(--white-color);
    margin-bottom: 5px;
    text-align: center;

}
 .partner-logo
    {
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    padding: 5px;
    margin-bottom: 15px;
    }

     .partner-logo h6
    {
    font-size: 13px;
    margin-bottom: 10px;
    }

@media (max-width: 767px) {
.main-footer_vector
{
top: 50%;
}
.partner-logo img
{
    margin-bottom: 10px;
}
}
