* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
}

/*p {
	margin-bottom:0px!important;
}	

/* Header */

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
header#header {
    background:#000;
	color:#fff;
}

.brand{display:flex;align-items:center;gap:14px}
    .brand img{ max-width: 180px;
    max-height: 60px;
}
    .auth{font-size:18px;opacity:.95}
    .auth a{color:#fff;margin-left:12px;text-decoration:none}
	
.hero-image {
    flex: 1;
}
.hero-image img {
	width:100%;
}
.hero-text {
    flex: 1;
}

.cus-btn {
    padding: 14px 20px;
    border-radius: 40px;
    background: #671314;
    color:#fff;
	font-size:15px;
    text-decoration: none;
    font-weight: 700;
	border:1px solid transparent;
    transition: transform 0.3s ease;
}
a.hero-btn.cus-btn:hover{
	color: #671314;
	 background: #e2d5b8;
	 transform: translateY(-2px);
}
.cus-btn:hover {
	transform: translateY(-2px);
}
.btn-row {
    display: flex;
    gap: 12px;
    align-items: center;
}
.cus-btn.alt {
    border-radius: 40px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
	color:#000;
}
.cus-btn.alt:hover {
	 background-color:0;
}
.hero-text h1{
    font-size: 38px;
    color: #fff;
	letter-spacing: 4px;
    margin-bottom: 15px;
	font-weight:600;
	line-height:50px;
	
}
.hero-text p {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    margin-bottom: 50px;
    margin-top: 10px!important;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}
.hero-banner {
    background: url('img/new-banner.png') center no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 640px;
    background-size: cover;
    background-position: top;
	 position:relative;
}

section.hero-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(103 19 20 / 50%);
}

/*feature section */
h2.section_title {
    font-size: 40px;
    color: #671314;
	font-weight:700;
    margin-bottom: 40px;
	line-height:40px;
}

.cards, .why {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}
 /* Feature Scenes */
    .Feature_section{padding:64px 0; text-align:center;}
  .Feature_card h3 {
    margin: 25px 0 10px;
    font-size: 24px;
    color: #671314;
    font-weight: 600;
}
.Feature_card p {
    margin: 0;
    color: #272727;
    font-size: 18px;
    padding: 0px 20px;
    font-weight: 500;
}	
.Feature_img img {
    border-radius: 25px;
    border: 8px solid #fff;
   /* box-shadow: 0 0 11px #834a4ab5;*/
    width: 100%;
    object-fit: cover;
    height: 310px;
    object-position: top;
filter: drop-shadow(11.064px 6.536px 22.5px rgba(136,0,0,0.45));
background-color: #ffffff;
}
/*how  it work section */
 
.how-it-works {
    padding: 80px 20px;
    text-align: center;
    background: #f8f9fa;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.step-box {
  flex:1;
  padding: 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 11px rgba(15,15,15,0.05);
  transition: all 0.3s ease;
 transition:transform 0.3s ease;
}

.step-box:hover {
 transform: translateY(-2px);
}

.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.step-box h3 {
    font-size: 22px;
    color: #671314;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-box p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}
.icon i {
    color: #681313;
    font-size:45px;
}

/*why-choose-us */ 
.why-choose-us {
    padding: 70px 20px 100px;
    text-align: center;
    background: #fff;
}
section.why-choose-us h2 {
    margin-bottom: 10px;
}
 .feature-box {
    padding:40px;
    border-radius: 10px;
    text-align: center;
	border-radius: 10px;
    filter: drop-shadow(4.193px 2.723px 8px rgba(0,0,0,0.1));
    background-color: #fffeff;
    border: 1px solid #f1f2f4;
	transition: transform 0.3s ease;
}
    .feature-box img{height:48px;margin-bottom:10px}
    .feature-box h5{margin:6px 0;color:#000;font-weight:600;}
    .feature-box p {
    color: #666;
    font-size: 18px;
    max-width: 180px;
    margin: 0 auto;
}

 .feature-box:hover {
    transform: translateY(-2px);
}
.feature-box img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}
 .why { 
	gap:20px;
}
/*call to action */
section.call-to-action {
    background: #cecfd1;
}
.cta {
    display: flex;
    align-items: center;
    gap:100px;
}
.left img {
    width: 100%;
    height: 420px;
    filter: grayscale(100%) brightness(100%) contrast(110%);
}
.right {
    flex: 3;
}
.left {
    flex: 2;
}
h2.section_titles {
    font-size: 40px;
    color: #671314;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 44px;
}
a.cus-btn.call{
	    background:#671314;
		color:#fff;
		transition: transform 0.3s ease;
}
a.cus-btn.call:hover{
	 background:#e2d5b8;
	 color:#671314;
	 transform: translateY(-2px);
}
.cta-btn {
    margin-top: 46px;
}
.right p {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
}
.creators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
section.creators-sec{
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}
.creator {
    overflow: hidden;
	 position: relative;
    box-shadow: 0 6px 20px rgba(15,15,15,0.03);
}
.creator .meta {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 16px;
    position: absolute;
    bottom: 0px;
    color: #fff;
    z-index: 999;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    background: #8c8c8c;
}
.top_creator {
    background: url('img/images-h.png') center no-repeat;
    height: 145px;
    position: relative;
    background-size: cover;
    width: 100%;
    background-position: bottom;
}
.meta img {
    top: -47px;
    width: 80px;
    margin-top: -68px;
    height: 80px;
	border-radius: 69px;
	filter: drop-shadow(6.709px 4.357px 22.5px rgba(136,0,0,0.45));
	background-color: #605e81;
	border: 3px solid #fffeff;
}
.info {
    flex: 1;
    margin-top: -10px;
}
section.creators-sec h2 {
    margin-bottom: 20px;
}
section.creators-sec p{
    margin-bottom: 30px!important;
    color: #8c8c8c;
    font-size: 18px;
    font-weight: 400;
}

section.why-choose-us p {
	 margin-bottom: 30px!important;
    color: #8c8c8c;
    font-size: 18px;
    font-weight: 500;
}
/*footer css */

.footer {
    background-color: #1f1f1f;
    padding-top: 40px;
    padding-bottom: 20px;
}
.footer-top {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-sec {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;

}

.footer-column ul {
  list-style: none;
  padding: 0;
  display:flex;
  gap:10px;
}
.footer-actions {
    display: flex;
    gap: 25px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  display: inline-block;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}


.social-icons {
  text-align: right;
}

.social-icons a {
  margin-left: 8px;
  display: inline-block;
}
p.copyright {
    font-size: 16px;
    line-height: 15px;
	margin-bottom:0px;
}
.copyrights a {
    color:#fff;
    text-decoration: none;
}
.copyrights {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    color: #fff;
    padding-bottom: 20px;
    
}
.social-icons a > i {
    color: #fff;
    padding:5px;
    width: 30px;
    height: 30px;
	font-size:20px;
}

@media(max-width:767px){
	.creators {
    grid-template-columns: repeat(1, 1fr);
}
.hero {
    flex-direction: column;
}
.cards, .why{
	grid-template-columns: repeat(1, 1fr);
	max-width:100%;
	width:100%;
}
.cta {
    gap: 27px;
    flex-direction: column;
    padding-bottom: 60px;
}
.footer-top {
    flex-direction: column;
    gap: 10px;
}
.footer-column ul {
    flex-direction: column;
}
.copyrights {
    flex-direction: column-reverse;
    gap: 20px;
}
.hero-text h1 {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 1px!important;
}
h2.section_title{
	font-size:30px;
}
h2.section_titles {
    font-size: 30px;
    line-height: 38px;
}
.hero-banner {
    height: 395px;  
}
.step-box{
	flex:auto;
}
}

@media(min-width:767px) and (max-width:1024px){
.cta {
    gap: 30px;
}
}
@media(min-width:1024px){
.why {
    max-width: 1000px;
     width: 1000px; 
    margin: 0 auto;
    gap: 20px;
}
}

.navbar-light .navbar-toggler-icon {
    background-color: #fff;
    border-radius: 5px;
}

