/*------------------ Breadcrumb styling --------------------*/
.breadcrumbs
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(51, 153, 255, 0.9)), url('../img/Image_fx (27).png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.breadcrumb-container
{
	height: 34vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1.5rem;
}

.breadcrumb-container .hero-heading
{
	font-size: 3rem;
}
/*------------------ Breadcrumb styling --------------------*/



/*------------------ Insurance service card styling ---------------*/
.services
{
	margin-top: 2.6rem;
}

.service-card
{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
	border: none;
	border-radius: 10px;
	margin: 2rem 0;
}

.service-card .service-img
{
	height: 180px;
	width: 100%;
	margin: 0;
	padding: 0;
}

.service-card .card-home
{	
	background: url("../img/home-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-auto
{	
	background: url("../img/auto-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-vacation
{	
	background: url("../img/vacation-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-belonging
{	
	background: url("../img/belongings-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-childcare
{	
	background: url("../img/childcare-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .card-health
{	
	background: url("../img/health-insurance.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card .service-details
{
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
/*------------------ Insurance service card styling ---------------*/


/*------------------ FAQ styling -------------------------------------*/
.faqs
{
	background: linear-gradient(rgba(51, 153, 255, 0.9), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.faq
{
  margin-top: 2rem;
  padding-bottom: 1rem;
  cursor: pointer;
}

.faq .question
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--fourth-color);
  padding: 1rem;
}

.faq .question h3
{
  font-size: 1.1rem;
  font-weight: 600;
}

.faq .answer
{
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}

.faq .answer p
{
  padding-top: 1rem;
  line-height: 1.6;
}

.faq.active .answer
{
  max-height: 300px;
}
/*------------------ FAQ styling -------------------------------------*/


/*------------------ Additional service styling -------------------*/
.additional-service
{
	margin: 4rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.additional-service .addi-service-img
{
	border: none;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.additional-service .addi-ser-heading
{
	font-size: 1.6rem;
	font-weight: 600;
}

.additional-service hr
{
	width: 60px;
	color: var(--third-color);
}
/*------------------ Additional service styling -------------------*/







/*---------------------------------------------------------------*/
/*-------------------- Mobile screen styling (< 768px) ---------*/
/*---------------------------------------------------------------*/
@media screen and (max-width: 767px)
{
	/*----------- Breadcrumb styling ----------*/
	.breadcrumb-container 
	{
		height: 35vh;
		padding: 1rem;
	}

	.breadcrumb-container .hero-heading
	{
		font-size: 1.8rem;
	}

	/*----------- Service styling ------------*/
	.services
	{
		margin-top: 1.5rem;
	}

	.service-card
	{
		margin: 1rem 0;
		border-radius: 8px;
	}

	.service-card .service-img
	{
		height: 140px;
	}

	.service-card .service-details
	{
		padding: 1.2rem;
		gap: 0.8rem;
	}

	/*----------- FAQ styling --------------*/
	.faqs
	{
		padding: 2rem 0;
	}

	.faq-row
	{
		flex-direction: column;
		align-items: stretch;
	}

	.faq
	{
		margin-top: 1rem;
	}

	.faq .question
	{
		padding: 0.8rem;
	}

	.faq .question h3
	{
		font-size: 1rem;
	}

	.faq .answer p
	{
		font-size: 0.9rem;
	}

	/*------------ Additional service styling ------------*/
	.additional-row
	{
		flex-direction: column;
		align-items: stretch;
	}

	.additional-service
	{
		margin: 2rem 0;
	}

	.additional-service .addi-ser-heading
	{
		font-size: 1.3rem;
	}

	.additional-service .addi-service-img
	{
		max-width: 100%;
		height: auto;
	}
}

/*---------------------------------------------------------------*/
/*-------------------- Tablet screen styling (768px - 1024px) --*/
/*---------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px)
{
	/*----------- Breadcrumb styling ----------*/
	.breadcrumb-container 
	{
		height: 45vh;
	}

	.breadcrumb-container .hero-heading
	{
		font-size: 2.2rem;
	}

	/*----------- Service styling ------------*/
	.services
	{
		margin-top: 2rem;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.service-card
	{
		margin: 0;
	}

	.service-card .service-img
	{
		height: 160px;
	}

	/*----------- FAQ styling --------------*/
	.faqs
	{
		padding: 1rem 0;
	}

	.faq-row
	{
		flex-direction: column;
		align-items: stretch;
	}

	.faq
	{
		margin-top: 1.5rem;
	}

	.faq .question h3
	{
		font-size: 1.1rem;
	}

	/*------------ Additional service styling ------------*/
	.additional-row
	{
		flex-direction: column;
		align-items: stretch;
	}

	.additional-service
	{
		margin: 3rem 0;
	}

	.additional-service .addi-ser-heading
	{
		font-size: 1.5rem;
	}
}

/*---------------------------------------------------------------*/
/*-------------------- Desktop screen styling (1025px+) --------*/
/*---------------------------------------------------------------*/
@media screen and (min-width: 1025px)
{
	/*----------- Breadcrumb styling ----------*/
	.breadcrumb-container 
	{
		height: 50vh;
	}

	/*----------- Service styling ------------*/
	.service-card
	{
		margin: 0;
	}

	/*----------- FAQ styling --------------*/
	.faq-row
	{
		align-items: flex-start;
	}

	/*------------ Additional service styling ------------*/
	.additional-row
	{
		align-items: flex-start;
	}
}