/*======================
   fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
:root{
	--gray: #717171;
	--red: #e21e22;
}
/*======================
  Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}
body {
	line-height: 1.6;
	font-family: 'DM Sans', sans-serif;;
	background-color: #fff;
	color: var(--gray);
	font-weight: 400;
}
ol,
ul {
	list-style: none;
}
a,
button{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: var(--gray);
}
a:hover {
	text-decoration: none;
	color: var(--red);
}
button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}
/*Proloader START CSS*/
.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
	background: #fff;
}

.loader_34 {
	/* Preloader */
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.loader_34 .ytp-spinner {
	/* Spinner Container */
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	margin-left: -32px;
	z-index: 18;
	pointer-events: none;
}

.loader_34 .ytp-spinner .ytp-spinner-container {
	pointer-events: none;
	position: absolute;
	width: 100%;
	padding-bottom: 100%;
	top: 50%;
	left: 50%;
	margin-top: -50%;
	margin-left: -50%;
	animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
	-webkit-animation: ytp-spinner-linspin 1568.23529647ms linear infinite;
}

.loader_34 .ytp-spinner-rotator {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
	animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}

.loader_34 .ytp-spinner-left {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}

.loader_34 .ytp-spinner-right {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

.loader_34 .ytp-spinner-left {
	/* Position inside Container*/
	right: 50%;
}

.loader_34 .ytp-spinner-right {
	/* Position inside Container*/
	left: 50%;
}

.loader_34 .ytp-spinner-circle {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	width: 200%;
	height: 100%;
	border-style: solid;
	/* Spinner Color */
	border-color: var(--red) var(--red) transparent;
	border-radius: 50%;
	border-width: 6px;
}

.loader_34 .ytp-spinner-left .ytp-spinner-circle {
	left: 0;
	right: -100%;
	border-right-color: transparent;
	-webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
	animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}

.loader_34 .ytp-spinner-right .ytp-spinner-circle {
	left: -100%;
	right: 0;
	border-left-color: transparent;
	-webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
	animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite both;
}


/* Preloader Animations */

@-webkit-keyframes ytp-spinner-linspin {
	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes ytp-spinner-linspin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes ytp-spinner-easespin {
	12.5% {
		-webkit-transform: rotate(135deg);
	}
	25% {
		-webkit-transform: rotate(270deg);
	}
	37.5% {
		-webkit-transform: rotate(405deg);
	}
	50% {
		-webkit-transform: rotate(540deg);
	}
	62.5% {
		-webkit-transform: rotate(675deg);
	}
	75% {
		-webkit-transform: rotate(810deg);
	}
	87.5% {
		-webkit-transform: rotate(945deg);
	}
	to {
		-webkit-transform: rotate(1080deg);
	}
}

@keyframes ytp-spinner-easespin {
	12.5% {
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	25% {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
	37.5% {
		-webkit-transform: rotate(405deg);
		transform: rotate(405deg);
	}
	50% {
		-webkit-transform: rotate(540deg);
		transform: rotate(540deg);
	}
	62.5% {
		-webkit-transform: rotate(675deg);
		transform: rotate(675deg);
	}
	75% {
		-webkit-transform: rotate(810deg);
		transform: rotate(810deg);
	}
	87.5% {
		-webkit-transform: rotate(945deg);
		transform: rotate(945deg);
	}
	to {
		-webkit-transform: rotate(1080deg);
		transform: rotate(1080deg);
	}
}

@-webkit-keyframes ytp-spinner-left-spin {
	0% {
		-webkit-transform: rotate(130deg);
	}
	50% {
		-webkit-transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(130deg);
	}
}

@keyframes ytp-spinner-left-spin {
	0% {
		-webkit-transform: rotate(130deg);
		transform: rotate(130deg);
	}
	50% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(130deg);
		transform: rotate(130deg);
	}
}

@-webkit-keyframes ytp-right-spin {
	0% {
		-webkit-transform: rotate(-130deg);
	}
	50% {
		-webkit-transform: rotate(5deg);
	}
	to {
		-webkit-transform: rotate(-130deg);
	}
}

@keyframes ytp-right-spin {
	0% {
		-webkit-transform: rotate(-130deg);
		transform: rotate(-130deg);
	}
	50% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	to {
		-webkit-transform: rotate(-130deg);
		transform: rotate(-130deg);
	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	position: absolute;
	right: 15px;
	display: none;
	z-index: 999;
	top: -15px;
}
.hamburger-menu span {
	background: #5f3a26;
	width: 30px;
	height: 3px;
	display: block;
	margin: 5px 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}
header {
	background-color: #ffffff;
}
.header_top{
	padding: 25px 0;
	border-bottom: 2px solid #606060;
}
.header_top_whatsapp{
    padding-top: 30px;
}
.header_top_phone{
    padding-top: 20px;
}
.header_top_mail{
    padding-top: 9px;
}
.header_bottom{
	border-bottom: 2px solid #606060;
}
.menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 10px 0 15px;
}
.menu li {
	padding: 0 0px;
	margin-top: 5px;
}
.menu li a {
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	display: block;
	color: #333333;
	font-size: 14px;
}
.menu li a::before{
	position: absolute;
	content: '';
	bottom: 0px;
	right: 0;
	height: 1px;
	width: 0;
	background-color: var(--red);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.menu li a:hover::before{
	right: auto;
	left: 0;
	width: 100%;
}
.menu li a.active::before{
	left: 0;
	width: 100%;
}
.menu li:first-child{
	padding-left: 0px;
}
.menu li:last-child{
	padding-right: 0px;
}
.menu>li>a.active {
	color: var(--red);
}
header .media-body,
header .media p{
	color: #717171;
	font-weight: 400;
	line-height: 1;
}
header .media-body:hover{
	color: var(--red);
}
.gray{
	color: #717171;
}
.icon{
	width: 50px;
	margin-right: 15px;
	text-align: right;
}
.icon img {
	max-height: 29px;
}
.bg_size{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.home_area{
	background-color: #5f3a26;
	border-bottom: 2px solid #606060;
}
.home_wrapper{
	padding-right: 20px;
	padding-left: 20px;
	background-color: #bba27f;
}
.home_content{
	background-color: #ffffff;
	height: 490px;
	overflow: hidden;
	position: relative;
}
.ring_wrap {
    position: absolute;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 50px;
    gap: 20px;
}
.ring_wrap img{
    max-width: 335px;
    height: 100%;
}
.model_img{
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 285px;
}
.card_img{
	position: absolute;
    left: 25%;
    height: 100%;
    bottom: 0;
    width: 100%;
    max-width: 284px;
}
.bis_img{
	position: absolute;
    left: 21%;
    top: 10%;
    height: 50px; 
}
.purity_img{
	position: absolute;
    height: 81px;
    left: 19%;
    top: 27%;
}
.card_lay_img{
	position: absolute;
    top: 54%;
    left: 17%;
}
.block_img {
    position: absolute;
    right: 43px;
    bottom: -20px;
    max-width: 335px;
}
.ring_img{
	position: absolute;
    right: 19%;
    bottom: 19px;
    height: 300px;
}
.social_icons img{
	width: 25px;
	margin-left: 1.45px;
}
.home_slider {
	max-width: 420px;
	margin-left: auto;
	margin-top: 30px;
	text-align: right;
	padding-right: 5.5%;
}
.home_slider #typed{
	color: var(--gray);
	font-size: 30px;
	margin-left: -100px;
	text-transform: uppercase;
}
.typed-cursor {
	opacity: 1;
	font-size: 34px;
	font-weight: 400;
	display: none;
}
.section_padd{
	padding: 55px 0;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 30px;
	right: 15px;
	border-radius: 50%;
	background: #5f3a26;
	z-index: 1000;
}
.back-to-top i {
	color: #fff;
}

/*mark design*/
.mark_wrapper{
	border-bottom: 1px solid #d2d2d2;
}

.p2{
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}
.orange{
	color: #bd6d1c !important;
}
.mark_wrapper a i{
	font-size: 17px;
    margin-right: 8px;
}
/*service designe*/
.title{
	color: #828282;
	font-size: 25px;
	line-height: 1.3; 
}
.service_wrapper{
	text-decoration: underline;
	padding: 55px 0 30px;
}
.service_wrapper img{
	max-width: 770px;
	width: 100%;
}

/* notice area*/
.notice_content_wrapper{
    display: flex;
    align-items: center;
}
/*footer design*/
footer{
	background-color: #ffffff;
	padding-top: 10px;
}
.header_bottom.v2{
	border-top: 8px solid #5f3a26;
	border-bottom: 2px solid #5f3a26;
}
.footer_wrapper{
	border-bottom:1px solid #5f3a26;
}
.footer_contact_area {
    border-right: 1px solid #c6c6c6;
    height: 100%;
}
.footer_contact_area i{
	color: #8d504d;
	font-size: 30px;
	margin-right: 14px;
	margin-bottom: -2px;
}
.footer_contact_area i.fa-envelope-o{
	margin-top: -4px;
}
.footer_icon_img{
	max-width:30px;
	margin-right: 14px;
}
.footer_contact_area h5 {
	color: #875a45;
	font-weight: 700;
	margin-top: -4px;
}
.media-body p,
.footer_contact_area a {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.35px;
}
.contact_area{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}
.footer_logo{
	max-width: 265px;
}
.footer_content{
	border-right: 1px solid #c6c6c6;
    height: 100%;
}
.footer_content p {
	color: #717171;
	line-height: 20px;
	padding-bottom: 15px;
	font-size: 13px;
	padding-right: 5px;
	max-width: 353px;
}
.footer_title{
	font-size: 21px;
	color: #814e4e;
	font-weight: 600;
	position: relative; 
	margin-bottom: 30px;
	padding-bottom: 3px;
}
.footer_title::before{
	position: absolute;
	content: '';
	width: 35px;
	height: 2px;
	background-color: #814e4e;
	bottom: 0px;
}
.footer_content_item{
	border-right: 1px solid #c6c6c6;
	height: 100%;
}
.footer_content_item ul li{
	position: relative;
	margin-bottom:4px;
	padding-left: 19px;
}
.footer_content_item ul li:last-child{
	margin-bottom: 0;
}
.footer_content_item ul li::before{
	position: absolute;
    content: '';
    width: 11px;
    height: 2px;
    background-color: #717171;
    top: calc(50% - 1px);
    left: 0;
}
.footer_content_item ul li a{
	color: #717171;
}
.footer_content_item ul li a:hover,
.footer_content_item ul li a.active{
	color: var(--red);
}
.footer_last_item{
	margin-top: 33px;
	min-width: 190px;
}
.footer_bottom{
	background-color: #875a45;
}
.footer_bootom_content{
	text-align: center;
	padding: 20px 0;
	color: #ded9c6;
}
.footer_text{
	margin-top: 18px;
}
.footer_bootom_content p a{
	color: #ded9c6;
}
.footer_bootom_content p a:hover{
	opacity: 0.7;
}
footer .button{
	padding: 8px 15px;
	font-size: 15px;
}
.footer_social_icons{
    margin-bottom: 28px;
}
/*mobile menu*/
.mobile_menu {
	position: fixed;
	height: 100vh;
	max-width: 320px;
	overflow: auto;
	padding: 29px 15px 15px 15px;
	z-index: 1026;
	top: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	opacity: 0;
}
.mobile_menu.open{
	opacity: 1;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.mobile_menu ul{
    padding: 15px 0;
}
.mobile_menu ul li {
	padding: 10px 5px 10px 0;
	border-top: 1px solid #c6c6c6;
}
.mobile_menu ul li:last-child{
    border-bottom: 1px solid #c6c6c6;    
}
.mobile_menu ul li a{
	text-transform: uppercase;
	display: block;
}
.mobile_menu ul li a.active{
	color: var(--red);
}
.logo_wrapper img{
	max-width:220px;
}
.mobile_humberger_menu {
	position: absolute;
	font-size: 57px;
	top: -10px;
	right: 11px;
	font-weight: 400;
}
.overlay{
	position: fixed;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    top: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 1025;
}
.overlay.open{
	opacity: 1;
	pointer-events: all;
}
.mobile_img a{
	margin-bottom: 10px;
}
.mobile_menu_address{
	font-size: 15px;
}
.mobile_icon i{
	font-size: 24px;
	margin-right: 17px;
	color: #8d504d;
}
.mobile_icon .phone{
	font-size: 26px;
}
.mobile_icon .whatsapp{
	font-size: 27px;
}

.text_title{
	font-size: 20px;
	font-weight: 700;
}
.underline{
	position: relative;
	padding-bottom: 4px;
	display: inline-block;
}
.underline::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: var(--red);
}
.acme-news-ticker-label {
	margin-right: 25px;
}
.col_equal {
	min-width: 355px;
	padding-left: 20px;
}

/*service banner*/
.banner_wrapper{
	min-height: 137px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.service_menu{
	border-left: 7px solid var(--red);
	height: 47px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-left: 30px;
}
.service_menu li{
	color: #ffffff;
	text-transform: uppercase;
	position: relative;
	font-weight: 700;
}
.service_menu li + li{
	margin-left: 15px;
	padding-left: 17px;
}
.service_menu li + li::before{
	position: absolute;
	content: '|';
	color: #ffffff;
	left: 0;
	top: 44%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	font-size: inherit;
}
.service_menu li a{
	color: #ffffff;
}
.service_menu li a:hover{
	color: var(--red);
}

/*service content*/
.service_main_heading {
	font-size: 27px;
	font-weight: 400;
	line-height: 1;
}
.service_main_heading .first_img{
	padding-bottom:21px;
	margin-right: 6px;  
}
.service_main_heading .second_img{
	padding-bottom:11px;
	margin-left: 1px;
}
.service_heading h1{
	font-size: 35.59px;
	
}
.service_list li{
	position: relative;
	padding-left: 15px;
}
.service_list li::before{
	position: absolute;
    content: '';
    height: 6px;
    width: 6px;
    background-color: var(--gray);
    border-radius: 50%;
    left: 0;
    top: 10px;
}
.pl37{
	padding-left: 37px;
}
.ml37{
	margin-left:37px;
}

/* company content */
.border_left{
	position: relative;
	padding-left: 37px;
}
.border_left::before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: var(--red);
}
.content_wrapper h2{
	font-size: 30px;
	font-weight: 400;
}
.company_content h4{
	font-size: 18px;
}
.company_name{
    font-size: 24px;
    font-weight: 400;
}
.company_about_item li{
	position: relative;
	padding-left: 22px;
}
.company_about_item li::before{
	position: absolute;
    content: '';
    background-image: url(../img/about-icon.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    left: 0;
    height: 12px;
    width: 12px;
    top: 6px;
}
.director_card {
	position: relative;
	display: inline-block;
	background-color: var(--red);
	z-index: 1;
}
.author_details h5{
	font-size: 15px;
	line-height: 12px;
}
.director_card .author_details {
    position: absolute;
    top: 10px;
    z-index: -1;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
    padding: 0 10px;
}
.director_card:hover .author_details{
	z-index: 1;
}
.director_card img{
	border: 2px solid #000;
	-webkit-box-shadow: 3px 3px 5px rgba(126, 126, 126, 0.75);
	        box-shadow: 3px 3px 5px rgba(126, 126, 126, 0.75);
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	top: 0;
	position: relative;
	z-index: 2;
}
.director_card:hover img{
	top: 50px;
}

/*branches_nakoda*/
.nakoda_wrapper .border_left::before{
	left: 0;
	top: 0;
	height: 74%;
}
.nakoda_wrapper .border_left.h100::before{
	height: 100%;
}
.nakoda_title_underline{
	border-bottom: 3px solid var(--red);
	display: inline-block;
}
.nakoda_header_content h2{
	border-bottom: 3px solid var(--red);
	display: inline-block;
	color: #886112;
	text-transform: uppercase;
}
.nakoda_header_content p{
	font-size: 18px;
	color: var(--gray);
}
.nakoda_content_wrapper {
    border-bottom: 1px solid #a7a7a7;
}
.nakoda_content_wrapper a:hover{
	color: var(--red);
}
.nakoda_title{
	border-bottom: 3px solid #a7a7a7;
	color: #7a550e;
	font-size: 20px;
	display: inline-block;
	text-transform: uppercase;
}
.nakoda_border_left{
	border-left: 2px solid var(--red);
	height: 100%;
	padding-left: 10px;
}
.nakoda_content_title h4{
	font-size: 15px;
	color: #7a550e;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.nakoda_content_item {
	margin-bottom: 15px;
}
.nakoda_content_item ul li{
	color: #6d6d6d;
	font-size: 15px; 
}
.nakoda_content_item ul li a{
	color: #6d6d6d;
	font-size: 15px;
}
.nakoda_content_wrapper .map{
	color: #7a550e;
	font-size: 15px;
	display: inline-block;
	margin-bottom: 55px;
}
/*Contact Design*/
.contact_wrapper h2{
	font-size: 30px;
	text-transform: uppercase;
}
.contact_wrapper p{
	color: var(--gray);
	font-size: 16px;
}
.contact_content_wrapper{
	height: 115px;
	border:1px solid #dfdfdf;
	background-color: #f9f9f9;
}
.icon_img {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #606060;
    border-radius: 0 4px 4px 0;
    width: 70px;
    height: 65px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.contact_content_wrapper:hover .icon_img{
	background-color: var(--red);
}
.contact_content h4{
	font-weight: 600;
}
.contact_content h4, .contact_content p{
	font-size: 18px;
}
.contact_wrapper h5{
	font-size: 18px;
	line-height: 24px;
	color: #636363;
}
.contact_wrapper .contact_last_p{
	font-size: 12px;
	color: #636363;
}
.contact_link{
	font-size: 18px;
	color: #636363;
}
.contact_phn_number .a1{
	border-right: 1px solid #c6c6c6;
    display: inline-block;
    padding-right: 15px;
    margin-right: 15px;
}
.contact_phn_number a,
.contact_link a{
	font-weight: 500;
	letter-spacing: 0.35px;
}
.contact_map_link{
	display: inline-block;
    border: 1px solid #dfdfdf;
    background-color: #f9f9f9;
    padding: 19px 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #6b635b;
    border-radius: 6px;
}
.contact_map iframe{
	width: calc(100% - 37px);
	border: none;
	height: 600px;
	margin-bottom: 55px;
}
.contact_form .first_p{
	font-size: 17px;
	text-transform: capitalize;
}
.contact_form .second_p{
	font-size: 12px;
	color: #262626;
}
.contact_form input{
	margin: 20px 0;
}
.contact_form input{
	background-color: #f0f5f8;
	height: 45px;
}
.contact_form textarea{
	background-color: #f0f5f8;
}
.contact_form textarea:focus,
.contact_form input:focus{
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-color: #717171;
}
.contact_form button img{
	margin-left: 20px;
}

/*download page*/
.download_wrapper{
	border-bottom: 1px solid #717171;
	padding: 55px 0;
}
.service_heading h2 span {
	font-size: 27px;
}
.service_heading h2 {
	color: #886112;
}
.gold{
	color: #886112 !important;
}
.mr37{
	margin-right: 37px;
}
.download {
	margin-top: 30px;
}
.support_wrap{
	padding-left: 37px;
}
.download.support_wrap .down_icon{
	padding-right: 10px;
	width: 107px;
	max-width: 100%;
}
.download h2{
	color: #886112;
}
.download .down_icon {
	padding-right: 37px;
	max-width: 105px;
}
.download span {
	color: #6d6d6d;
	font-size: 20px;
	display: inline-block;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	text-transform: uppercase;
}
.download p,
.download a{
	font-size: 18px;
	color: #717171;
}
.download .contact_link a{
	letter-spacing: 0.35px;
}
.download .contact_link a:hover{
	color: var(--red);
}
.download a.text-uppercase{
	text-decoration: underline;
}
.download .download_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: var(--red);
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	padding: 0 13px;
	border-radius: 5px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	letter-spacing: -0.7px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.download .download_btn span {
	width: 35px;
	border-left: 1px solid #ff3c3c;
	padding-left: 12px;
	margin-left: 13px;
	height: 46px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.download .download_btn span img{
	margin-bottom: -2px;
	width: 16px;
}
.download .download_btn:hover{
	background-color: #ca0307;
}
.contact_cell .down_icon{
	max-width: 100%;
	min-width: 107px;
	text-align: center;
	padding-right: 10px;
}
.contact_cell .down_icon img{
	max-width: 55px;
}
/*rule area start*/
.rule_p a{
    display: inline-block;
    font-size: 17px;
    line-height: 25px;
    color: #5f3a26;
    font-weight: 700;
    padding-top: 25px;
    transition: 0.4s;
}
.rule_p.p1 a{
    padding-top: 0;
}
.rule_p a:hover{
    color: var(--red);
}
.rule_last_text{
    font-size: 17px;
    line-height: 25px;
    color: #5f3a26;
    font-weight: 700;
    padding-top: 45px;
    transition: 0.4s;
    padding-left: 37px;
}
.rule_last_text a{
    color: var(--red);
}
.rule_last_text a:hover{
    color: #5f3a26;
}

/*gallery page*/
.gallery_wrapper .nakoda_title{
	color: var(--gray);
	font-size: 30px;
	border-color: var(--gray);
}
.gallery_box {
    box-shadow: 0 3px 9px rgba(0,0,0,0.2);
}
.gallery_box img {
	width: 100%;
	max-height: 234px;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.gallery_box:hover img{
	-webkit-transform: scale(1.3);
	    -ms-transform: scale(1.3);
	        transform: scale(1.3);
}
.gallery_box .event_title{
	border: 3px solid #f5f5f5;
	font-size: 17px;
	font-weight: 400;
	padding: 10px 15px;
	color: #717171;
	border-bottom: none;
}
.video_box {
	border: 3px solid #f5f5f5;
	padding: 10px 10px 5px;
}
.video_box iframe{
	width: 100%;
	border: none;
}
.video_box video{
	width: 100%;
	height: 175px;
	-o-object-fit: cover;
	   object-fit: cover;
}
.video_box .event_title{
	font-size: 17px;
	font-weight: 400;
	padding: 0px 0px 10px;
	color: #717171;
}
/*Help_desk*/
.help_deskbordre{
	margin-top: 45px;
}
.help_desk_content_wrapper h2{
	text-transform: uppercase;
}
.help_desk_content_wrapper h4{
	color: var(--gray);
	font-size: 16px;
	margin-top: 20px;
}
.help_desk_content_wrapper p{
	font-size: 13px;
	margin-top: 20px;
	color: var(--gray);
}
.help_desk_form input{
	margin: 20px 0;
    height: 50px;
    border-radius: 50px;
    padding-left: 25px;
}
.help_desk_form textarea{
	border-radius: 10px;
	margin-bottom: 20px;
	padding-left: 25px; 
	padding-top: 15px;
}
.help_desk_form input:focus,
.help_desk_form textarea:focus{
	-webkit-box-shadow: none;
	        box-shadow: none;
	border: 1px solid var(--gray);
}
.help_desk_form button{
	display: inline-block;
	border-radius: 50px;
	padding: 12px 20px;
	margin-bottom: 55px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fcf9f9;
	background: -webkit-gradient(linear, left top, right top, from(rgba(226,30,34,1)), to(rgba(116,5,7,1)));
	background: -o-linear-gradient(left, rgba(226,30,34,1) 0%, rgba(116,5,7,1) 100%);
	background: linear-gradient(90deg, rgba(226,30,34,1) 0%, rgba(116,5,7,1) 100%);
	border: none;
	width: 100%;
}
.help_desk_form button:hover{
	background: -webkit-gradient(linear, left top, right top, from(rgba(116,5,7,1)),  to(rgba(226,30,34,1)));
	background: -o-linear-gradient(left, rgba(116,5,7,1) 0%,  rgba(226,30,34,1) 100%);
	background: linear-gradient(90deg, rgba(116,5,7,1) 0%,  rgba(226,30,34,1) 100%);
}
.help_desk_inqueryimg{
	position: relative;
}
.help_desk_inqueryimg p{
	position: absolute;
    content: '';
    border-bottom: 1px solid var(--gray);
    top: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 42%;
    font-size: 17px;
}
.help_desk_content_item h3{
	font-size: 16px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 20px;
}
.help_desk_content_item h2{
    font-size: 24px;
    color: var(--gray);
    text-transform: uppercase;
}
.help_desk_content_item2{
	padding-top: 55px;
}
.help_desk_content_item2 h3{
	font-size: 16px;
    color: var(--gray);
    text-transform: uppercase;
}
.help_desk_content_item2 h2{
    font-size: 24px;
    color: var(--gray);
    text-transform: uppercase;
}
.help_desk_details_wrapper{
	margin-top: 55px;
}
.help_desk_details{
	margin-right: 37px;
	margin-left: 37px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	border-bottom: 1px solid var(--gray); 
}
.help_desk_details .location{
	display: block;
	font-size: 20px;
	color: var(--gray);
	font-weight: 700;
	padding-bottom: 20px;
	text-transform: uppercase;
}
.help_desk_details .number{
	font-size: 20px;
}
.help_desk_details .location:hover:before{
	content: "E-mail";
	color: var(--red);
	display: inline-block;
	margin-right: 5px;
}
.help_desk_wraper ul.nav li a{
	padding: 0;
	border-radius: 0;
}
.help_desk_wraper ul.nav li a.active{
	background-color: transparent;
}
.help_desk_wraper ul.nav li a img{
	max-width: 65px;
}
.help_desk_wraper ul.nav li a.active h3,
.help_desk_wraper ul.nav li a.active h2,
.help_desk_wraper ul.nav li a:hover h3,
.help_desk_wraper ul.nav li a:hover h2{
	color: var(--red);
}
.button {
	border: 1px solid #875a45;
	padding: 15px 18px;
	border-radius: 3px;
	color: #875a45;
	display: inline-block;
	font-size: 17px;
	line-height: 1;
	text-transform: capitalize;
	z-index: 1;
    position: relative;
    -webkit-transition: color 0.5s;
    -o-transition: color 0.5s;
    transition: color 0.5s;
    cursor: pointer;
}
.button:hover{
	color: #fff;
}
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
}
.blob-btn__blob {
  position: absolute;
  top: 6px;
  width: 25%;
  height: 100%;
  background: #875a45;
  border-radius: 100%;
  -webkit-transform: translate3d(0, 160%, 0) scale(1.9);
          transform: translate3d(0, 160%, 0) scale(1.9);
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  -o-transition: transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
}
.blob-btn__blob:nth-child(1) {
  left: 0%;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
  left: 30%;
  -webkit-transition-delay: 0.08s;
       -o-transition-delay: 0.08s;
          transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
  left: 60%;
  -webkit-transition-delay: 0.16s;
       -o-transition-delay: 0.16s;
          transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
  left: 90%;
  -webkit-transition-delay: 0.24s;
       -o-transition-delay: 0.24s;
          transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
  -webkit-transform: translateZ(0) scale(1.9);
          transform: translateZ(0) scale(1.9);
}
.nakoda_wrapper ul.nav li a{
	padding: 0;
	border-radius: 0;
}
.nakoda_wrapper ul.nav li a.active{
	background-color: transparent;
}
.nakoda_wrapper ul.nav li a h2{
	font-size: 25px;
	text-transform: uppercase;
	padding: 0;
	border-bottom: 3px solid var(--red);
	color: #886112;
}
.nakoda_wrapper ul.nav li a.active h2,
.nakoda_wrapper ul.nav li a:hover h2{
	color: var(--red);
}
.career_wrapper .text_title{
	color: var(--red);
}
.parsley-errors-list li {
    color: var(--red) !important;
    margin-top: -15px !important;
}
.logo_area{
    padding-bottom: 25px;
    border-top: 2px solid #5f3a26;
}
.logo_area img{
    width: 100%;
    max-width: 175px;
    object-fit: cover;
}
.key_service{
    margin-top: 30px;
}
.key_service ul li {
    position: relative;
    margin-top: 12px;
    font-size: 18px;
    padding-left: 37px;
    line-height: 1.3;
    text-transform: uppercase;
}
.key_service ul li::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0px;
    height: 20px;
    width: 20px;
    background-image: url(../img/check.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.client_slider .owl-stage{
    display: flex;
    align-items: flex-end;
}
.client_slider .owl-stage .item img{
    max-height: 87px;
    object-fit: contain;
}
.client_slider .owl-stage .owl-item:nth-child(2) .item img,
.client_slider .owl-stage .owl-item:nth-child(4) .item img,
.client_slider .owl-stage .owl-item:nth-child(5) .item img{
    max-height: 55px;
}
.client_slider .owl-stage .item img.client2{
    max-height: 75px;
}
.client_slider .owl-stage .item img.client6{
    max-height: 75px;
}
.client_slider .owl-stage .item img.client8{
    max-height: 75px;
}
.client_slider .owl-stage .item img.client9{
    max-height: 75px;
}
















/* ------------------------------------ Header Version 2 --------------------------------------------*/
.header-wrapper-v2{
}

.header-logo-v2{
    max-width: 1140px;
    width: 100%;
    margin: 15px auto 0;
}
.header-logo-v2 img{
    max-width: 500px;
    width: 100%;
    margin: auto;
    display: block;
}
.header-images-wrapper-v2{
    margin: 15px 0 0 0;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.header-images-v2{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-images-v2 .box{
    padding: 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.header-images-v2 .box:nth-child(5){
    border-right: none;
}
.header-images-v2 .box img{
    max-width: 150px;
    width: 100%;
}
.header-contact-info-wrapper-v2{
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.header-contact-info-v2{
    max-width: 1140px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-contact-info-v2 a{
    text-decoration: none;
    color: #875a45;
}

@media only screen and (max-width:1200px) {
    .header-logo-v2, .header-contact-info-v2, .header-images-v2{
        max-width: 92%;
        width: 100%;
    }
}
@media only screen and (max-width:991px) {
    .header-wrapper-v2{
        display: none;
    }
}

.hamburger-menu {
    right: 18px;
    top: auto;
    bottom: 15px;
}
