*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: "Times New Roman", Times, serif;
}

/* The progress container (grey background) */
.progress-container {
	width: 100%;
	height: 5px;
	background: #ccc;
	position: fixed;
	top: 0;
	z-index: 1001;
  }
  
  /* The progress bar (scroll indicator) */
  .progress-bar {
	height: 5px;
	background: rgba(2, 2, 40, 0.8);
	width: 0%;
  }

header{
	position: fixed;
	margin-top: 5px;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	border-bottom: .5px solid #d9d9d9;
	padding: 0px 3%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1000;
	background-color: rgba(255,255,255,0.7);
	transition: .4s ease-in-out;
}
header.black{
	box-shadow: 0 0 10px 0px #d9d9d9;
	background-color: rgba(255,255,255);
	height: 50px;
	transition: .3s ease-in-out;
}

header .logo{
	height: 50px;
}
header.black .logo{
	height: 50px;
}
header .logo img{
	height: 100%;
}

header .navbar ul{
	list-style: none;
	margin: 10px 0;
}

header .navbar ul li{
	position: relative;
	float: left;
}
header .navbar ul li .current{
	background: rgba(40, 13, 87);
	color: #fff;
	border-radius: 8px;
}

header .navbar ul li a{
	font-size: 15px;
	padding: 10px;
	font-weight: 700;
	color: #333;
	display: block;
	margin-left: 5px;
	text-decoration: none;
}

header .navbar ul li a:hover{
	background: #555;
	color: #fff;
}

header .navbar ul li ul{
	position: absolute;
	left: 0;
	width: 200px;
	background: #f2f2f2;
	border-radius: 5px;
	display: none;
}

header .navbar ul li ul li{
	width: 100%;
	border-top: 1px solid rgba(0,0,0,.1);
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
	display: initial;
}


.nav .btn-hamburger{
	display: none;
	position: absolute;
	right: 1.5em;
	top: 50%;
	background-color: #fff;
	border-radius: 5px;
	border: 0;
	cursor: pointer;
	outline: none;
	transform: translateY(-50%);
}

.nav .btn-hamburger span{
	display: block;
	width: 30px;
	height: 4px;
	background-color: #333;
	margin: 6px;
	border-radius: 2px;
	transition: .3s ease-in-out;
}

.nav .btn-hamburger span:nth-child(4),
.nav .btn-hamburger span:nth-child(5){
	position: absolute;
	top: 10px;
	opacity: .5;
}

.nav .btn-hamburger span:nth-child(4){
	transform: rotate(45deg) scale(0);
}
.nav .btn-hamburger span:nth-child(5){
	transform: rotate(-45deg) scale(0);
}
.nav.opened .btn-hamburger span:nth-child(4){
	opacity: 1;
	transform: rotate(45deg) scale(1);
}
.nav.opened .btn-hamburger span:nth-child(5){
	opacity: 1;
	transform: rotate(-45deg) scale(1);
}

.nav.opened .btn-hamburger span:nth-child(1),
.nav.opened .btn-hamburger span:nth-child(2),
.nav.opened .btn-hamburger span:nth-child(3){
	opacity: 0;
}

/*-----home pg-------*/
.custom-container{
	position: relative;
	/*margin-top: 60px;*/
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
    /* background-color: blue; */
}

.home-sticky{
	z-index: 1;
	top: 0;
	width: 100%;
	height: 70vh;
    position: relative;
    overflow: hidden;
}

.home-sticky-img{
	background-image: url("/images/sticky.jpg");
	height: 100%;
    width: 100%;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	transition: .3s ease-in-out;
}


.the-firm{
	max-width: 1050px;
	/*background-color: red;*/
	padding: 15px;
}

.the-firm h3{
	text-align: center;
	font-size: 28px;
	font-weight: 800;
	line-height: 2em;
	letter-spacing: .8px;
}

.the-firm p{
	font-size: 20px;
	/*font-weight: 800;*/
	line-height: 1em;
	letter-spacing: .8px;
}

.the-firm p a{
	color: orange;
}

.in-3{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
    /* flex-direction: row; */
	width: 85%;
	margin-top: 40px;
	margin-bottom: 50px;
}

.mission{
	flex-basis: 33%;
	background-color: orange;
	text-align: center;
	max-width: 300px;
	min-width: 250px;
	min-height: 170px;
	border-radius: 15px;
	padding: 7px;
	margin-top: 10px;
	box-shadow: 7px 5px 5px 6px #e6e6e6;
	transition: .3s ease-in-out;
	cursor: pointer;
}

.mission:hover{
	transform: translateY(-5px);
}

.col-3-icons{
	background-color: rgba(220,220,220);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: auto;
	margin-top: -30px;
}

.col-3-icons i{
	font-size: 30px;
	color: orange;
}

.mission p{
	color: #fff;
	letter-spacing: .5px;
	line-height: 1.2em;
}

.mission h4{
	font-size: 25px;
	line-height: 2em;
	letter-spacing: .3px;
	color:rgba(100, 100, 98);
	font-weight: 900;
}

.the-team{
	width: 100%;
	/* background-color: #555; */
	background-color: rgba(2, 2, 40, 0.8);
	/* background-image: linear-gradient(330deg, orange, #fff); */
}

.team-container{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.member-1{
	/*align-items: center;*/
	display: flex;
	flex-wrap: wrap;
	/* flex-basis: 60%; */
	/* max-height: 400px; */
    max-width: 800px;
	/* background-color: red; */
	justify-content: space-around;
	margin-top: 45px;
	margin-bottom: 40px;
	border-radius: 15px;
}

.member-1 .img{
	flex-basis: 30%;
	height: 100%;
}

.member-1 .img img{
	width: 220px;
	height: 300px;
	border-radius: 15px 0 0 15px;
}

.member-1 .member-contact{
	padding-left: 15px;
	flex-basis: 70%;
}

.member-1 .member-contact h2{
	color: orange;
	font-size: 28px;
	letter-spacing: .7px;
}

.member-1 .member-contact .italic{
	color: orange;
	font-size: 17px;
	letter-spacing: .7px;
}

.member-1 .member-contact p{
	color: #fff;
	font-size: 18px;
	margin-bottom: 10px;
	/*letter-spacing: .7px;*/
}

.member-1 .member-contact .icons{
	width: 40%;
	background-color: orange;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	padding: 5px;
	border-radius: 5px;
}

.member-1 .member-contact .icons a{
	color: #fff;
	font-size: 20px;
}

.member-1 .member-contact .icons a:hover{
	transform: translateY(-3px);
}





/*---------------------------------------*/



/*-----------------------about--------------*/
.about-main{
	align-items: center;
	max-width: 900px;
	margin-top: 40px;
	padding: 15px;
}

.about-main h3{
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1.3px;
	line-height: 1.4em;
	text-align: center;
	align-items: center;
	margin-bottom: 10px;
	color: #404040;
}

.about-main hr{
	width: 80px;
	border: 3px solid orange;
	border-radius: 5px;
	background-color: orange;
	border-radius: 5px;
	margin: auto;
	margin-bottom: 30px;
}

.about-main p{
	font-size: 17px;
	letter-spacing: .4px;
	color: #4d4d4d;
	font-weight: 600;
}

.about-col-3{
	width: 90%;
	/* width: 100vw; */

	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 50px;

	/* background-color: #ff3333; */
}

.about-1{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	/* flex-basis: 33%; */
	background-color: orange;
	text-align: center;
	max-width: 370px;
	min-width: 250px;
	min-height: 250px;
	border-radius: 15px;
	padding: 10px 0;
	margin-top: 10px;
	box-shadow: 7px 5px 5px 6px #e6e6e6;
	transition: .3s ease-in-out;
	cursor: pointer;
}

.about-1:hover{
	transform: translateY(-5px);
}

.about-col-3-icons{
	background-color: /*rgba(220,220,220)*/ #fff;

	border-radius: 50%;
	max-width: 80px;
	height: 80px;

	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: auto;
	margin-right: 7px;

	flex-basis: 30%;
}

.about-col-3-icons i{
	font-size: 30px;
	color: orange;
}

.about-col-3-icons-2{
	background-color: #fff;
	/*width: 60px;*/
	min-height: 240px;
	border-radius: 15px;
	padding: 5px;
	text-align: center;
	align-items: center;
	margin: auto;

	flex-basis: 65%;
}

.about-col-3-icons-2 p{
	color: rgba(100, 100, 98);
	letter-spacing: .5px;
	line-height: 1.2em;
}

.about-col-3-icons-2 h4{
	font-size: 25px;
	line-height: 2em;
	letter-spacing: .3px;
	color: 000;
	font-weight: 900;
}


.legal-aid{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	background-color: orange;
	text-align: center;
	width: 85%;
	border-radius: 15px;
	padding: 10px 0;
	margin-top: 10px;
	box-shadow: 7px 5px 5px 6px #e6e6e6;
}

.legal-aid-child-1{
	background-color: /*rgba(220,220,220)*/ #fff;

	border-radius: 50%;
	max-width: 80px;
	height: 80px;

	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: auto;
	margin-right: 7px;

	flex-basis: 30%;
}

.legal-aid-child-1 i{
	font-size: 30px;
	color: orange;
}

.legal-aid-child-2{
	background-color: #fff;
	/*width: 60px;*/
	min-height: 240px;
	border-radius: 15px;
	padding: 5px;
	text-align: center;
	align-items: center;
	margin: auto;

	flex-basis: 65%;
}

.legal-aid-child-2 ol{
	/*list-style: none;*/
	list-style-type: lower-alpha;
	margin-left: 20px;
	text-align: left;
	color: rgba(100, 100, 98);
	letter-spacing: .5px;
	line-height: 1.2em;
}
.legal-aid-child-2 ol li{
	margin-bottom: 7px;
}

.legal-aid-child-2 h4{
	font-size: 25px;
	line-height: 2em;
	letter-spacing: .3px;
	color: 000;
	font-weight: 900;
}


/*-------------------------------------------*/

/*----------------------services---------*/
.container-services{
	margin-top: 100px;
	padding: 15px;
}

.services-main h3{
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1.3px;
	line-height: 1.4em;
	text-align: center;
	align-items: center;
	margin-bottom: 10px;
	color: #404040;
}

.service-holder{
	max-width: 95%;
}

.service-holder-child-1{
	width: 100%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-around;
	/*align-items: center;*/
	padding: 5px;
}

.service-holder-icon i{
	font-size: 40px;
	color: orange;
}
.service-holder-icon span{
	font-size: 30px;
	margin-left: 8px;
	color: orange;
}

.service-list{
	width: 90%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/*background-color: red;*/
	margin: auto;
	color: rgba(100, 100, 98);
}

.service-list-child-first{
	/*max-width: 500px;*/
	flex-basis: 98%;
	margin-bottom: 18px;
}

.service-list-child{
	/*max-width: 500px;*/
	flex-basis: 48%;
	margin-bottom: 18px;
}



/*-----------contact pg-----------*/
.contact-wrapper{
	/*width: 100%;*/
	/*background-color: cyan;*/
	margin: 30px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	/* box-shadow: 7px 15px 15px 6px #e6e6e6; */
}

.message{
	flex-basis: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	flex-direction: column;
	padding: 10px;
	min-height: 400px;
	/*max-width: 500px;*/
	/*background-color: cyan;*/
	/*border: solid .5px rgba(180, 175, 178, 0.8);*/
}

.message h4{
	color: #6b6b47;
	font-size: 28px;
	line-height: 1.4em;
	letter-spacing: 1px;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 600;
}

.message form{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.message form .my-input{
	flex-basis: 48%;
	margin-bottom: 18px;
	border: solid 1px rgba(180, 175, 178, 0.8);
}
.message form .my-input label{
	padding: 5px;
	margin-left: 5px;
	line-height: 2em;
	font-size: 13px;
	font-weight: 700;
	color: rgba(31, 29, 30, 0.9);
	letter-spacing: 1px;
}
.message form .my-input-subject{
	flex-basis: 96%;
	margin-bottom: 18px;
	border: solid 1px rgba(180, 175, 178, 0.8);
}


.message form .my-text{
	flex-basis: 96%;
	margin-bottom: 18px;
	border: solid 1px rgba(180, 175, 178, 0.8);
}
.message form .send-bt{
	flex-basis: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.message form .send-bt .send-bt-1{
	flex-basis: 40%;
}
.message form .send-bt .send-bt-1:hover{
	transform: scale(1.1);
}
.message form .send-bt .send-bt-2:hover{
	transform: scale(1.1);
}
.message form .send-bt .send-bt-2{
	flex-basis: 40%;
}

.message form .send-bt .send-bt-1 input{
	width: 80px;
	height: 30px;
	border: none;
	background: orange;
	color: #fff;
	font-size: 15px;
	line-height: 1.2em;
	letter-spacing: 1px;
	border-radius: 3px;
}
.message form .send-bt .send-bt-2 input{
	width: 80px;
	height: 30px;
	border: none;
	background: #ff3333;
	color: #fff;
	font-size: 15px;
	line-height: 1.2em;
	letter-spacing: 1px;
	border-radius: 3px;
}

.message form .my-input input{
	border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    /*border-bottom-style: groove;*/
    padding: 10px;
    outline: none;
    height: 40px;
    width: 100%;
    border-bottom: none;
    border-top: solid rgba(180, 175, 178, 0.8) 1px;
}

.message form .my-text label{
	padding: 5px;
	margin-left: 5px;
	line-height: 2em;
	font-size: 13px;
	font-weight: 700;
	color: rgba(31, 29, 30, 0.9);
	letter-spacing: 1px;
}
.message form .my-text textarea{
	border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    /*border-bottom-style: groove;*/
    padding: 10px;
    outline: none;
    width: 100%;
    height: 80px;
    border-bottom: none;
    border-top: solid rgba(180, 175, 178, 0.8) 1px;
}

.contact{
	flex-basis: 50%;
	min-height: 430px;
	background-image: url("images/contact1.jpg");
	background-position: center;
	background-size: cover;
	/*background-attachment: fixed;*/
	/*transition: .3s ease-in-out;*/
}

.contact .contact-wrapper-2{
	min-height: 430px;
	background-color: rgba(2, 2, 40, 0.8);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-around;
	align-items: left;
	/*box-shadow: 5px 5px 5px 3px #e6e6e6;*/
	/*border-radius: 5px;*/
	padding: 10px;
}

.contact .contact-wrapper-2 .call{
	/*flex-basis: 90%;*/
	/*margin-left: 30%;*/
	display: flex;
	flex-direction: column;
	align-items: left;
	padding: 10px;
	color: orange;
}
.contact .contact-wrapper-2 .call a:hover{
	color: orange;
}

.contact .contact-wrapper-2 .call i{
	margin-bottom: 7px;
	margin-right: 10px;
	font-size: 17px;
	color: orange;
}

.contact .contact-wrapper-2 .call p{
	color: rgba(224, 224, 233, 0.8);
	font-size: 14px;
	padding-left: 30px;
}

.contact .contact-wrapper-2 .call a{
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	padding-left: 30px;
}





/*------footer-----*/
.footer{
	width: 100%;
	/* background-color: rgba(39, 37, 34, 0.87); */
	background-color: rgba(2, 2, 40, 0.8);
	color: white;
	padding: 15px 15px 20px 15px;
	text-align: center;
	font-size: 16px;
	letter-spacing: .3px;
	line-height: 1.2em;
	margin-top: 20px;
}

.footer-content{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	text-align: left;
}

.footer-content .address h4{
	color: orange;
	font-size: 20px;
}

.footer-content .address{
	font-size: 14px;
}

.footer-content button{
	max-height: 40px;
	margin-top: auto;
	margin-bottom: auto;
	padding: 5px;
	background-color: orange;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 16px;
	letter-spacing: .7px;
	cursor: pointer;
}
.footer-content button:hover{
	transform: translateY(-3px);
}

.footer hr{
	/*width: 100px;*/
	height: 5px;
	/* background-color: #fff; */
	background-color: orange;
	border: none;
	border-radius: 5px;
	margin-top: 7px;
	margin-bottom: 15px;
}






@media only screen and (max-width: 850px){
	header .navbar{
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		border-top: 1px solid rgba(0,0,0,.1);
		display: none;
		background: rgba(255,255,255);
	}

	header nav.show{
		display: initial;
		margin-top: 1px;
		padding-right: 10px;
	}

	header .navbar ul li{
		width: 100%;
	}

	header .navbar ul li ul{
		position: relative;
		width: 100%;
	}

	header .navbar ul li ul li{
		background: #eee;
	}

	.nav .btn-hamburger{
		display: block;
		background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255), rgb(255, 255, 255));
	}

	.member-1{
		flex-basis: 90%;
		/*min-height: 400px;*/
	}

	/*.member-1 .img img{
		min-height: 400px;
	}*/
	.service-list-child{
		/*max-width: 500px;*/
		flex-basis: 98%;
	}
}

@media only screen and (max-width: 705px){
	.container{
		margin-top: 100px;
	}

	.message{
		flex-basis: 100%;
	}

	.contact{
		flex-basis: 100%;
	}
}

@media only screen and (max-width: 695px){
	header{
		height: 70px;
	}

	header .logo{
		height: 60px;
	}
}

@media only screen and (max-width: 610px){
	.mission{
		margin-top: 30px;
	}
}

@media only screen and (max-width: 570px){
	.about-1{
		flex-basis: 100%;
	}
}

@media only screen and (max-width: 450px){
	.member-1 .img{
		flex-basis: 100%;
	}

	.member-1 .img img{
		width: 100%;
		min-height: 400px;
		border-radius: 15px 15px 0 0;
	}

	.member-1 .member-contact{
		flex-basis: 100%;
	}
}

@media only screen and (max-width: 400px){
	/* .home-sticky-img{
		background-image: url("images/i6.jpeg");
		transition: .3s ease-in-out;
	} */

	.message h4{
		font-size: 25px;
	}

	.message form .my-input{
		flex-basis: 100%;
	}
}
