/* ===============
    Fonts
===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ===============
    Root
===============*/
:root{
	/* colors */
	--blue: #1700E8;
	--green: #25A74F;
	--hawkes_blue: #D5DCE8;

	--textcolor: #242424;
	--charcoal: #444444;
	--charcoal2: #4a4a4a;

	--white_smoke: #f5f5f5;
	--kashmir: #5C6C83;
	--waikawa_grey: #64748B;
	
	--poppins: 'Poppins', sans-serif;
	--bold: 700;
	--semibold: 600;
	--regular: 400;
	--medium: 500;
	--flight: 300;
}
*{
	font-display: swap;
}
html{
	scroll-behavior: smooth;
}
body.home-page {
    font-size: 20px;
    font-family: var(--poppins);
    line-height: 1.6;
}
a {
    display: inline-block;
    text-decoration: none;
    transition: all 300ms ease-in-out;
}
ul{
	margin: 0;
	padding: 0;
}
p{
	color: var(--charcoal);
}
button {
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

button:focus {
    outline: none;
}

.all_btn{
    height: 78px;
   	background: var(--bb-primary-button-background-regular);
    font-size: 23px;
    color: var(--bb-primary-button-text-regular) !important;
    border-radius: 20px;
    padding: 0px 30px;
	font-weight: var(--medium);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    margin: 0 auto;
	box-shadow: 0px 3px 15px #00000059;
	position: relative;
	z-index:1;
	overflow: hidden;
}
.all_btn:hover{
    background: var(--bb-primary-button-background-hover);
    color: var(--bb-primary-button-text-hover) !important;
}


.mob_menu_btn{
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    padding: 2px;
    margin-left: 30px;
    display: none;
}
.mob_menu_btn span{
    height: 2px;
    width: 26px;
    background: var(--bb-primary-button-background-regular);
    display: block;
    margin-bottom: 6px;
    transition: all 300ms ease-in-out;
}
.mob_menu_btn.mob_menu_btn_arrow span{
    width: 22px !important;
}
.mob_menu_btn span:last-child{
    margin-bottom: 0;
    width: 22px;
}
.mob_menu_btn span:nth-child(2){
    width: 18px;
}

.inner_com_container{
	max-width:1340px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width:1599px) {
    .home-page .container{
        max-width: 1480px;
    }
}

@media (min-width: 1659px) {
    .home-page .container{
        max-width: 1620px;
    }
}

/* ==================
    Header
================== */
.mobile_nav_box{
	display: none;
}
.main_header{
    z-index: 3;
    position: absolute;
    left: 0;
    right: 0;
}
.logo {
    max-width: 340px;
}
.logo a{
	padding: 40px 0;
}
.logo img{
    max-width: 100%;
}
.header_cta_btn{
    padding-left: 50px;
}
.header_cta_btn ul{
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.header_cta_btn li:not(:first-child){
	margin-left: 40px;
}
.header_btn{
	min-width: 140px;
	height: 52px;
	color: var(--bb-primary-button-text-regular);
	background: var(--bb-primary-button-background-regular);
	box-shadow: 0px 0px 14px #3B3B3B30;;
	border-radius: 13px;
	display:flex;
	justify-content: center;
	align-items: center;
	font-weight: var(--medium);
}

.header_btn:hover{
    color: var(--bb-primary-button-text-hover);
	background: var(--bb-primary-button-background-hover);
}
.head_login_btn{
	color: var(--bb-secondary-button-text-regular);
	background: var(--bb-primary-button-background-regular);
	box-shadow: 0px 0px 14px #3B3B3B30;
}

.head_login_btn:hover{
	background: var(--bb-secondary-button-background-hover);
	box-shadow: 0px 0px 14px #3B3B3B30;
}

@media (min-width:1600px){
	.header_cta_btn .all_btn{
		padding:0 50px;
	}
}

/* ==================
    Navigation
================== */
.main_nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.main_nav ul li{
    position: relative;
}
.main_nav > ul > li{
    margin: 0 30px;
}
.main_nav > ul > li:first-child{
    margin-left: 0;
}
.main_nav > ul > li:last-child{
    margin-right: 0;
}
.main_nav ul li a{
    display: block;
}
.main_nav > ul > li > a{
    font-size: 20px;
    color: var(--charcoal2);
    padding: 10px 0;
	font-weight: var(--medium);
}
.main_nav > ul > li > a:hover{
    color: var(--green);
}
.mean-expand{
    display: none ;
}
/* =================== 
    Menu Dropdown
=================== */
@media (min-width:992px) {
    .main_nav ul ul{
        position: absolute;
        display: block;
        left: 0;
        top: 100%;
        background: #fff;
        min-width: 280px;
        border-radius:0 0 10px 10px;
        opacity: 0;
        visibility: hidden;
        z-index: 99;
		box-shadow: 0 3px 15px #1b2ebe1f;
    }
    .main_nav ul li:last-child ul{
        left: auto;
        right: 0;
    }
    .main_nav ul ul li{
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    .main_nav > ul > li:hover > a:before{
        width: 100%;
    }
    .main_nav ul li.menu-item-has-children:after{
        content: "\f107";
        font-family: "Font Awesome 5 Pro";
        font-weight: 400;
        font-size: 21px;
        line-height: .3;
        position: absolute;
        left: calc(100% + 10px);
        top: 26px;
        transition: all 300ms ease-in-out;
    }
    .main_nav ul ul li:last-child{
        border-bottom: 0;
    }
    .main_nav ul ul li a{
        font-size: 16px;
        padding: 14px 15px;
        color: #000;
    }
    .main_nav ul ul li a:hover{
        color: var(--blue);
    }
    .main_nav ul ul li:last-child a{
        border-radius: 0 0 10px 10px;
    }

    .main_nav ul li:hover > ul{
        opacity: 1;
        visibility: visible;
    }
    .main_nav ul li.menu-item-has-children:hover:after{
        transform: rotate(180deg) translateY(40%);
        background-position: center top;
    }
    /* .header_right li:last-child{
        display: none;
    } */
    .header_right li:nth-child(3){
        padding-right: 0;
    }
}



/* =================== 
    Banner
=================== */
.banner_panel {
	background: #FEFEFE;
	box-shadow: 0px 5px 55px #0000001C;
	padding: 156px 0px;
	position: relative;
	background-image: url('http://revere.io/wp-content/uploads/2024/04/revere-home-banner-main-compressed-webp.webp');
	background-size: contain;
	background-position: center 80%;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	align-items: center;
}
.banner_text{
	max-width: 1100px;
	margin:0 auto;
}
.banner_text h4 {
	color: #6E6E6E;
	font-family: var(--poppins);
	font-size: 28px;
	line-height: 1.2;
	font-weight: var(--medium);
	margin-bottom: 15px;
}
.banner_text h1 {
	font-size: 50px;
	line-height: 1.4;
	font-weight: var(--bold);
	margin-bottom: 42px;
	color: #3B3B3B;
}
.banner_text p {
	color: var(--textcolor);
	font-weight: var(--medium);
	margin:0 auto;
	margin-bottom: 55px;
	max-width: 920px;
}
.banner_btn {
    max-width: 390px;
    height: 78px;
    background: var(--bb-primary-button-background-regular);
    font-size: 23px;
    color: var(--bb-primary-button-text-regular);
    border-radius: 20px;
    padding: 0px 15px;
    font-weight: var(--medium);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    margin: 0 auto;
    box-shadow: 0px 3px 15px #00000059;
    position: relative;
    z-index:1;
}
.banner_btn img{
	max-width: 24px;
	margin-left: 20px;
	transition: margin 300ms ease-in-out;
	filter: invert(1);
}
.banner_btn:hover{
	background: var(--bb-primary-button-background-hover);
    color: var(--bb-primary-button-text-hover);
}
.banner_btn:hover img{
	margin-left: 28px;
}




/* =================== 
    Uniting Ambition
=================== */
.revere_ambition {
  padding: 130px 0;
}
/* .ambition_img {
    margin-right: 115px;
} */
.ambition_img img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* .ambition_text{
	margin-left: auto;
    max-width: 700px;
    margin-right: 115px;
    padding: 0 15px;
} */
.ambition_text h4{
  color: var(--charcoal);
  font-size: 28px;
  font-weight: var(--medium);
}
.ambition_text h2{
    color: var(--bb-primary-color);
    line-height: 1.4;
    font-size: 40px;
    font-weight: var(--bold);
    margin-bottom: 25px;
}
.ambition_text p{
	font-weight: var(--medium);
/* 	text-align: justify; */
}


/* =================== 
   Section heading
=================== */
.section_head h2{
	font-size: 60px;
	line-height: 1.45;
}
.section_head p{
	font-weight: var(--medium);
}
.section_head_gray h2{
	font-weight: var(--medium);
	color: var(--bb-primary-color);
}
.section_head_color h2{
	font-weight: var(--bold);
	background: linear-gradient(105deg, #25A74F 0, #1700E8 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* =================== 
    How Its Works
=================== */
.how_wroks_panel{
	background: #171717;
	position: relative;
	z-index: 1;
}
.how_wroks_panel:after{
	content: "";
	height: 150px;
	width: 100%;
	left:0;
	top:-2px;
	position: absolute;
	background: url('http://revere.io/wp-content/uploads/2024/01/white_carve.svg');
	background-size: 100%;
	background-position: center top;
	background-repeat: no-repeat;
	z-index:1;
}
.how_wroks_inner{
	padding-top: 150px;
	padding-bottom: 350px;
	background: #212121;
	padding-left: 30px;
	padding-right: 30px;
}
.how_wroks_wraper{
	max-width: 1100px;
	width: 100%;
	margin:0 auto;
}
.how_wroks_heading{
	margin-bottom: 7%;
}
.how_wroks_item{
	display:flex;
	flex-wrap: wrap;
	padding-bottom: 60px;
	padding-top: 60px;
	padding-left:15px;
	padding-right:15px;
/* 	margin-bottom: 60px; */
	border-bottom: 1px solid #ffffff4f;
	transition: background 300ms ease-in-out;
}
.how_wroks_item:last-child{
	border-bottom: none;
	margin-bottom: 0;
}
.how_wroks_item:hover{
	background: var(--bb-primary-color);
}
.how_wroks_item:hover .how_wroks_title h4,
.how_wroks_item:hover .how_wroks_right p{
	color: var(--bb-primary-button-text-regular);
}
.how_wroks_item:hover .how_wroks_icon img{
	filter: brightness(0);
}
.how_wroks_left{
	max-width: 325px;
	display:flex;
	flex-wrap:wrap;
	flex: 0 0 100%;
}
.how_wroks_right{
	flex: 1;
	padding-left: 100px;
}

.how_wroks_right .line-limit{
	transition: all 300ms ease-in-out;
}
/* .how_wroks_right:not(.fulltext) .line-limit{
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 6; 
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
} */


.how_wroks_right .read_more{
	display: inline-block;
	color: var(--bb-primary-color);
	font-weight: 500;
	float: right;
	cursor: pointer;
	font-size: 12px;
}
.how_wroks_icon{
	max-width: 100px;
	flex: 0 0 100%;
}
.how_wroks_icon img{
	max-width: 100%;
	transition: all 500ms ease-in-out;
}
.how_wroks_item:hover .how_wroks_icon img{
	transform: rotateY(360deg);
}
.how_wroks_title{
	flex: 1 0 0%;
	padding-left: 40px;
}
.how_wroks_title h4{
	font-size: 28px;
	color: var(--bs-white);
	line-height: 1.4;
	font-weight: var(--regular);
}
.how_wroks_right p{
    font-size: 17px;
	line-height: 1.66;
	color: var(--bs-white);
/* 	text-align: justify; */
}
.how_wroks_right p:last-child{
	margin-bottom:0;
}

/* =================== 
    Acheive Panel
=================== */
.acheive_goal {
    /* margin: -80px 0; */
    background-image: url(https://revere.io/wp-content/uploads/2024/02/shutterstock_2019856085.png);
    background-position: center !important;
    background-size: cover;
    background-repeat: no-repeat;
}
.goal_shape_container{
	position: relative;
	display:flex;
	justify-content: center;
}
.goal_shape_container:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 1170px;
    height: 1050px;
    background-image: url(http://revere.io/wp-content/uploads/2024/02/hexagon.svg);
    background-size: cover;
    transform: translate(-50%,-50%);
    margin: -250px 0;
}

.goal_text h3 {
    font-family: var(--Poppins);
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 50px;
    font-weight: var(--bold);
    max-width: 440px;
    color: #646464;
}
.goal_shape {
    position: relative;
    z-index: 2;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 960px;
    padding: 0;
    text-align: center;
    position: relative;
    top: -250px;
}
.acheive_btn{
	max-width:255px;
}



/* =================== 
    Features Panel
=================== */
.features_panel{
	padding: 130px 0;
}
.features_head{
	margin-bottom: 70px;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width:1399px){
	.features_row{
		margin-left:-20px;
		margin-right:-20px;
	}
	.features_row [class*="col-"]{
		padding-left:20px;
		padding-right:20px;
	}
}
@media (min-width:1599px){
	.features_row{
		margin-left:-30px;
		margin-right:-30px;
	}
	.features_row [class*="col-"]{
		padding-left:30px;
		padding-right:30px;
	}
}

.features_box {
	text-align: center;
	border: 16px solid;
	border-radius: 14px;
	padding: 50px 35px;
	padding-bottom:110px;
	height:100%;
	transition: all 400ms ease-in-out;
}
.features_box:hover{
	transform: translatey(-20px)
}
.features_box p{
    color: var(--bs-white);
}
.features_box p:last-child{
	margin-bottom: 0;
}
.features_box h4 {
    color: var(--bs-white);
    font-size: 26px;
    font-weight: var(--semibold);
    margin-bottom: 20px;
}
.features_box_big{
	max-width: 815px;
	height: auto;
	padding: 90px;
	margin:0 auto;
	margin-top: -75px;
	position:relative;
	z-index:1;
}


/* =================== 
    News Panel
=================== */
.news_panel {
	padding: 130px 0px;
	background: #F5F5F5;
}
.news_head{
	margin-bottom: 60px;
}
.news_box {
	padding: 10px;
	background: #f5f5f5;
	transition: all ease-in-out 0.3s;
	box-shadow: 0px 0px 50px #0000000F;
	height:100%;
}
.news_row [class*="col-"]{
	margin-bottom:24px;
}
.news_box:hover {
	transform: translateY(-10px);
}
.news_box_image {
	display: block;
	width: 100%;
	height: 240px;
	position: relative;
}
.news_box_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news_box_content{
	padding: 20px 10px;
}
.news_box_content h4 {
	font-size: 24px;
	font-weight: var(--semibold);
	margin-bottom: 10px;
}
.news_box_content h4 a{
	color: var(--textcolor);
}
.news_box_content h4 a:hover{
	color: var(--green);
}
.news_box_content p{
	color:  var(--textcolor);
	font-size: 18px;
	line-height: 1.6;
	margin-bottom:0;
}

.aticle-content {
	margin: 20px;
}



/* =================== 
    Testimonials
=================== */

.testimonial_section{
    padding: 150px 0;
    background-color: #FAFAFA;
}
.testimonial_section .section_head{
    margin-bottom: 50px;
}
.testimonial_section .section_head h4{
    color: #6E6E6E;
    font-size: 26px;
    font-weight: 500;
}
.testimonial_section .swiper{
    padding: 30px 20px;
}
.testimonial_section .swiper-wrapper{
    margin-bottom: 45px;
}
.testimonial-pagination span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bb-primary-color);
}
.testimonial_section .testimonial-box{
    padding: 45px 35px;
    text-align: center;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0px 8px 20px #0000001F;
}
.testimonial-box img.quote-icon{
    width: 35px;
    height: auto;
    object-fit: contain;
}

.testimonial-box p {
	font-size: 17px;
    color: #242424;
    margin: 26px 0;
    font-weight: 500;
    line-height: 1.6;
	position: relative;
/* 	text-align: justify; */
/* 	overflow: hidden;
	display: -webkit-box;
	line-clamp: 4;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical; */
}
.testimonial-user{
	position: relative;
	padding-top: 26px;
}
.testimonial-user::after{
    content: '';
    display: block;
    width: 43px;
    height: 1px;
    background: #3B3B3B;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.testimonial-user img{
    width: 87px;
    height: 87px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}
.testimonial-user h4{
    font-size: 18px;
    line-height: 1.6;
    color: #242424;
    font-weight: 500;
}
.testimonial-user strong{
	display: block;
}

.testimonial-box a{
    margin-bottom: 26px;
    display: inline-block;
    color: var(--bb-primary-color);
    font-weight: 500;
}


/* =================== 
    FAQ
=================== */
.accordian_details{
	display:none;
}
.faq_panel{
	background: #171717;
}
.faq_inner{
	padding: 130px 30px;
	background: #212121;
}
.faq_head{
	margin-bottom: 50px;
}
.faq_wrap{
	max-width: 1090px;
	margin:0 auto;
}
.faq_item{
    border: 1px solid #EFEFEF;
    margin-bottom: 30px;
    border-radius: 20px;
}
.faq_item:last-child{
	margin-bottom:0;
}
.faq_heading{
    cursor: pointer;
    font-size: 20px;
    line-height: 1.4;
    font-weight: var(--semibold);
    color: var(--bb-primary-color);
    padding: 25px 30px;
    padding-right: 70px;
    margin-bottom: 0;
    position: relative;
    transition: background 300ms ease-in-out;
}
/* .faq_heading:hover,
.faq_heading.active{
	background: var(--kashmir);
} */
.faq_heading span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: calc(50% - 14px);
    transition: all 300ms ease-in-out;
}
.faq_heading span:after{
    content: "";
    position: absolute;
    height: 20px;
    width: 2px;
    background: var(--bb-primary-color);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.faq_heading span:before{
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--bb-primary-color);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.faq_heading.active span{
    transform: rotate(45deg)
}
.faq_details{
	padding: 0 30px 30px;
}
.faq_details p{
    font-size: 16px;
    color: var(--white_smoke);
    line-height: 1.7;
    margin-bottom: 20px;
	text-align: justify;
}
.faq_details p:last-child{
	margin-bottom:0;
}











/* =================== 
    Footer
=================== */
.main_footer{
	background:#fefefe;
	padding: 120px 0 90px;
}

.footer_logo{
    margin-bottom: 20px;
    max-width: 340px;
}
/* .footer_logo img{
    width: 100%;
    filter: brightness(0) invert(0);
} */
.footer_logo a{
    display: block;
    margin: 0 auto 25px;
}
.footer_item {
    margin-bottom: 35px;
}
.footer_item h4 {
    font-size: 24px;
    font-weight: var(--bold);
    margin-bottom: 30px;
}

.footer_menu ul,
.footer_contact ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_menu li,
.footer_contact li{
    margin-bottom: 8px;
	line-height:1.5;
}
.footer_menu li a,
.footer_contact li a{
    font-size: 18px;
    font-weight: var(--medium);
    color: #444;
    display: inline-block;
    position: relative;
}
.footer_menu li a:hover{
    color: var(--bb-primary-color);
    padding-left: 25px;
}
/* .footer_menu li a:after{
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    line-height: 1;
    font-size: 17px;
    color: var(--blue);
    border-radius: 50%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 5px;
    transition: all 300ms ease-in-out;
} */
/* .footer_menu li a:hover:after{
    opacity: 1;
} */

.footer_contact li a:hover{
    color: var(--bb-primary-color);
}
.bs-bp-container-reg .buddypress-wrap .bp-messages.info p{
	color: var(--bb-primary-button-text-regular);
}
