*{
	margin:0;
	box-sizing: border-box;
	
}
body{
	line-height: 1.5;
	font-family: 'wbk', sans-serif;
	font-weight: 400;
	color: #2D2A26;
	overflow-x: hidden;
	font-weight: 300;
}
img{max-width: 100%;}
body.hidden-scrolling{
	overflow-y: hidden;
}
.container{
	max-width: 1440px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
h1, h1 span{font-size: 80px;	color: #fff;font-family: 'fm';text-transform: uppercase;}
h2 {font-size: 50px;	color: #2D2A26;font-family: 'fm';text-transform: uppercase;}
h3 {font-size: 30px;	color: #2D2A26;font-family: 'fm';text-transform: uppercase;}
h1 span {
    position: relative;
    right: -50px;
}
p{font-size: 20px; font-family: 'wbk';}
a{
	text-decoration: none;
	color: #D92228;
}
span.c-red {
    margin-bottom: 15px;
    display: block;
}
.p-100{padding: 100px 0;}
@font-face {
font-family: 'fm';
src: url(../fonts/Feijoa-Medium.otf);
}
@font-face {
font-family: 'tb';
src: url(../fonts/testfeijoa-bold.otf);
}
@font-face {
font-family: 'td';
src: url(../fonts/testfeijoa-display.otf);
}
@font-face {
font-family: 'tm';
src: url(../fonts/testfeijoa-medium.otf);
}
@font-face {
font-family: 'wb';
src: url(../fonts/whitneybold.otf);
}
@font-face {
font-family: 'wbk';
src: url(../fonts/whitneybook.otf);
}
@font-face {
font-family: 'wl';
src: url(../fonts/whitneylight.otf);
}
@font-face {
font-family: 'wm';
src: url(../fonts/whitneymedium.otf);
}
@font-face {
font-family: 'wsb';
src: url(../fonts/whitneysemibold.otf);
}
.container-fluid {
    padding: 0;
}
.sec-2row {
    margin: 0;
}
.sec-2row .col-lg-6{
	padding: 0;
}

/*header*/
.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background: #fff;
    padding: 0 15px;
    box-shadow: 0 0 10px #00000026;
}
.header-main{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
}
.header .logo{
	padding: 0 15px;
}
.header .logo a {
    display: block;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 65px;
	position: relative;
}
.header .menu > .menu-item > a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: #2D2A26;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 10px;
	width: 10px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before, .header .menu > .menu-item > a .plus:after {
    content: '';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    background-color: #2D2A26;
    height: 2px;
    width: 100%;
    transform: rotate(135deg);
    transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #D92228;
}
.header .menu > .menu-item > a .plus:after {
    transform: rotate(45deg);
    left: -2px;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #D92228;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #D92228;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
.header .menu > .menu-item:last-child > a {
    color: #fff;
    background: #d92228;
    border-radius: 50px;
    padding: 13px 25px;
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #2D2A26;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #2D2A26;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #2D2A26;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.top-social {
    display: flex;
    width: 650px;
    margin: 0 0 0 auto;
    justify-content: flex-end;
}
.social-1 span {
    font-size: 20px;
    font-family: 'avnr-rmn', sans-serif;
}
.social-1 {
    display: flex;
    margin-left: 30px;
    align-items: center;
}
.social-1-txt {
    margin-left: 10px;
}
.social-1 p {
    font-size: 16px;
    font-weight: bolder;
    font-family: 'avnr-bl';
}
.wrapper {
  width: 100%;
	margin-top: 80px;
}

.wrapper .carousel {
  position: relative;
}


.owl-dots {
  display: none;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%);
}

.owl-prev {
  left: 50px;
}

.owl-next {
  right: 0px;
}
.banner-card{height: calc(100vh - 80px);}
.fa-chevron-left,
.fa-chevron-right {
  font-size: 30px;
  color: #fff;
  transition: all 0.2s;
}

.fa-chevron-left:hover,
.fa-chevron-right:hover {
  color: #777;
}
.row.ban-slidr {
    height: calc(100vh - 120px);
    align-items: end;
    position: relative;
}
.ban-slidr p{font-size: 24px; color: #fff; line-height: 1.7;}
.btnn img, .form button img, .header .menu > .menu-item:last-child > a img{
    width: unset !important;
    display: inline-block !important;
    margin-left: 8px;
    margin-top: -2px;
}
.btnn {
    background: #d92228;
    color: #fff;
    display: inline-block;
    padding: 13px 40px;
    font-size: 20px;
    font-family: 'wm';
    text-transform: uppercase;
    border-radius: 50px;
}
.btnn:hover, .form button:hover, .header .menu > .menu-item:last-child > a:hover{
    color: #fff;
    opacity: 0.8;
}
.banner-card:before {
    position: absolute;
    content: '';
    background: linear-gradient(0deg, #000000cc, transparent);
    width: 100%;
    height: 100%;
}
.rgtt {
    max-width: 530px;
    padding-left: 50px;
}
.section-5 {
    padding-bottom: 150px;
}
.c-red{color: #d92228;}
.bg-lgt{background: #F8F8F8;}
button.owl-prev, button.owl-next {
    border: 1px solid #fff !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.section-2{position: relative;}
.stick {
    max-width: 45%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.hdd {
    margin: 0 auto 50px;
}
.prop-row h3 {
    margin-top: 36px;
}
.prop-card {
    max-width: 90%;
    margin: 0 auto;
}
.prop-col:nth-child(2) {
    position: relative;
    bottom: -80px;
}
.text {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    padding: 7% 10%;
}
.section-5{overflow-x: hidden;}
.testi-slider img {
    width: auto !important;
    justify-self: center;
    margin-top: -30px;
    position: relative;
    z-index: 17;
}
.testi-card {
    border: 1px solid #cac5c5;
    background: #F9F9F8;
    padding: 0 20px 20px;
    min-height: 313px;
}
.testi-slider {position: relative;}
.testi-slider .owl-stage-outer{padding-top: 30px;    overflow: visible;}
.testi-card p {
    font-size: 24px;
    font-family: 'fm';
    padding-top: 20px;
}
span.nem {
    font-size: 24px;
    display: block;
    color: #d92227;
}
.testi-slider:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: #ffffff;
    left: calc(-101%);
    z-index: 1;
}
.testi-slider .owl-prev, .testi-slider .owl-next {
    top: auto;
    bottom: -120px;
}
.testi-slider .owl-prev {
    left: calc(50% - 55px);
}
.testi-slider .owl-next {
    right: calc(50% - 55px);
}
.c-wht span, .c-wht h2 {
    color: #fff;
}
footer.footer {
    background: #2D2A26;
    padding: 200px 0 10px;
}
.f-menu a {
    color: #fff;
    padding: 25px;
}
.f-menu li:not(:last-child) {
    border-right: 1px solid #ffffff;
}
.f-menu li {
    display: inline-block;
}
.section-6 {
    padding-top: 100px;
}
.cont {
    color: #fff;
}
.form-row {
    background: #fff;
}
.cont h3 {
    color: #fff;
}
input, textarea {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 1px;
    border: none;
    border-bottom: solid 1px #ccc;
    padding: 10px 7px 20px 40px;
}
:focus-visible {
    border-bottom: 1px solid #ccc;
    outline: none;
}
button {
    background: #d92227;
    border: none;
    color: #fff;
    border-radius: 50px;
    padding: 12px 40px;
    font-size: 20px;
    font-family: 'wm';
    text-transform: uppercase;
}
.f{position: relative;}
.f img {
    position: absolute;
    top: 11px;
}
.form-r {
    padding: 50px;
}
.form-l {
  background: #d92227;
  color: #fff;
  padding: 50px;
}
.form-l a {
    color: #fff;
    font-size: 24px;
}
.h4, h4 {
		font-size: 20px;
		font-family: 'fm';
		text-transform: uppercase;
		margin: 0;
}
.form-l .d-flex {
    margin-top: 40px;
}
.mc {
    margin-left: 20px;
}
.form-row {
    background: #fff;
    border: 10px solid #fff;
    margin-bottom: -125px;
    position: relative;
}
.copyright p {
    font-size: 16px;
    color: #fff;
    border-top: 1px solid #575757;
    margin-top: 40px;
    padding-top: 30px;
    text-transform: uppercase;
}
.social a {
    margin-left: 10px;
}
.social {
    text-align: right;
}