@font-face {
font-family: "TStarProHeavy";

src: url("../fonts/TStarProHeavy.ttf") format("truetype");
} 

@font-face {
font-family: "TStarProBold";

src: url("../fonts/TStarProBold.ttf") format("truetype");
} 
@font-face {
font-family: "TStarProLight";

src: url("../fonts/TStarProLight.ttf") format("truetype");
} 

@font-face {
font-family: "TStarProMedium";

src: url("../fonts/TStarProMedium.ttf") format("truetype");
} 

@font-face {
font-family: "TStarProRegular";

src: url("../fonts/TStarProRegular.ttf") format("truetype");
} 

body {
		font-family: "TStarProRegular", sans-serif;
}


@media (min-width: 1200px) {
		.container {
				max-width: 1200px !important;
		}
}

[class*="text-color-hover-"] {
		transition: ease all 300ms;
}

[class*="bg-color-hover-"] {
		transition: ease background 300ms;
}

@media (min-width: 768px) {
		.custom-max-width-1 {
				max-width: 387px;
		}
}

.custom-font-secondary {
		font-family: 'Roboto Slab', serif !important;
}

.custom-font-gunel {
		font-family: 'TStarProMedium', serif !important;
}

.font-weight-light {
	font-family: 'TStarProLight', serif !important;
	font-weight:300;
	
}

.custom-font-size-1 {
		font-size: 1.4em !important;
		line-height:1.6em;
}

.custom-font-size-2 {
		font-size: 1.35em !important;
}

.custom-font-size-3 {
		font-size: 1.15em !important;
}

.custom-font-size-4 {
		font-size: 50% !important;
}

.custom-text-color-1 {
		color: #93bae4 !important;
}

.box-shadow-1 .card-body {
		z-index: 1;
}

.custom-box-shadow-1 {
		box-shadow: 0 0px 90px -55px rgba(0, 0, 0, 0.25) !important;
}

.custom-border-radius-1 {
		border-radius: 0.5rem !important;
}

.custom-line {
		display: inline-block;
		width: 50px;
		border-bottom: 3px solid #CCC;
}

.custom-card-style-1 {
		border: 2px solid transparent;
		transition: ease border 300ms;
}

.custom-card-style-1 .custom-card-style-1-image-wrapper img {
		transform: translate3d(5px, -5px, 0);
		transition: ease transform 300ms;
}

.custom-card-style-1 .custom-card-style-1-title,
.custom-card-style-1 .custom-card-style-1-link {
		transition: ease color 300ms;
}

.custom-card-style-1:hover .custom-card-style-1-image-wrapper img {
		transform: translate3d(0, 0, 0);
}

.owl-carousel {
		display: block;
		opacity: 0;
}

.owl-carousel.owl-loaded {
		opacity: 1;
}

@media (min-width: 1200px) {
		.custom-carousel-box-shadow-1 {
				position: relative;
		}
		.custom-carousel-box-shadow-1:before {
				content: '';
				position: absolute;
				top: 50%;
				left: 50%;
				width: 65%;
				height: 0px;
				box-shadow: 0 0 110px 180px rgba(0, 0, 0, 0.07);
				transform: translate3d(-50%, -50%, 0);
				z-index: 0;
		}
		.custom-carousel-box-shadow-2 {
				position: relative;
		}
		.custom-carousel-box-shadow-2:before {
				content: '';
				position: absolute;
				top: 50%;
				left: 50%;
				width: 57%;
				height: 0px;
				box-shadow: 0 0 160px 240px rgba(0, 0, 0, 0.07);
				transform: translate3d(-50%, -50%, 0);
				z-index: 0;
		}
}

@media (min-width: 992px) {
		.custom-highlight-1 {
				position: relative;
				z-index: 1;
		}
		.custom-highlight-1:after {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 0%;
				height: 100%;
				background-color: #212529;
				z-index: -1;
		}
}

.customHighlightAnim:after {
		-webkit-animation-name: customHighlightAnim;
						animation-name: customHighlightAnim;
		-webkit-animation-duration: 2s;
						animation-duration: 2s;
		-webkit-animation-fill-mode: forwards;
						animation-fill-mode: forwards;
}

.customHighlightAnimDelay:after {
		-webkit-animation-delay: 3s;
						animation-delay: 3s;
}

@-webkit-keyframes customHighlightAnim {
		0% {
				width: 0;
				opacity: 1;
		}
		100% {
				width: 100%;
				opacity: 1;
		}
}

@keyframes customHighlightAnim {
		0% {
				width: 0;
				opacity: 1;
		}
		100% {
				width: 100%;
				opacity: 1;
		}
}

.clean-animation-1 svg g:nth-child(1) {
		-webkit-animation: cleanAnimation 3s;
						animation: cleanAnimation 3s;
		-webkit-animation-iteration-count: infinite;
						animation-iteration-count: infinite;
}

.clean-animation-1 svg g:nth-child(2) {
		-webkit-animation: cleanAnimation 3s;
						animation: cleanAnimation 3s;
		-webkit-animation-iteration-count: infinite;
						animation-iteration-count: infinite;
		-webkit-animation-delay: 400ms;
						animation-delay: 400ms;
}

.clean-animation-1 svg g:nth-child(3) {
		-webkit-animation: cleanAnimation 3s;
						animation: cleanAnimation 3s;
		-webkit-animation-iteration-count: infinite;
						animation-iteration-count: infinite;
		-webkit-animation-delay: 800ms;
						animation-delay: 800ms;
}

@-webkit-keyframes cleanAnimation {
		0% {
				opacity: 0;
				transform: scale(0.8);
				transform-origin: 50% 50%;
		}
		85% {
				opacity: 1;
				transform: scale(1);
				transform-origin: 50% 50%;
		}
		100% {
				opacity: 0;
				transform: scale(1);
				transform-origin: 50% 50%;
		}
}

@keyframes cleanAnimation {
		0% {
				opacity: 0;
				transform: scale(0.8);
				transform-origin: 50% 50%;
		}
		85% {
				opacity: 1;
				transform: scale(1);
				transform-origin: 50% 50%;
		}
		100% {
				opacity: 0;
				transform: scale(1);
				transform-origin: 50% 50%;
		}
}

.customLineAnimation {
		-webkit-animation-name: customLineAnimation;
						animation-name: customLineAnimation;
}

@-webkit-keyframes customLineAnimation {
		0% {
				width: 0px;
				opacity: 1;
		}
		100% {
				width: 50px;
				opacity: 1;
		}
}

@keyframes customLineAnimation {
		0% {
				width: 0px;
				opacity: 1;
		}
		100% {
				width: 50px;
				opacity: 1;
		}
}

@media (min-width: 2000px) {
		.shape-divider svg {
				width: 100%;
		}
}

.custom-col-half-section.col-half-section {
		max-width: 727px;
}

.fluid-col-lg-5 .fluid-col {
		left: 50%;
		width: 100vw;
		transform: translate3d(-50%, 0, 0);
}

@media (min-width: 992px) {
		.fluid-col-lg-5 {
				min-height: 0;
		}
		.fluid-col-lg-5 .fluid-col {
				width: calc(44.2vw - 15px);
				left: 15px;
				transform: none;
		}
}

@media (max-width: 991px) {
		.fluid-col-lg-5 {
				min-height: 400px !important;
		}
}

/*
* Header
*/
.custom-header-top-btn-style-1 {
		position: relative;
}

.custom-header-top-btn-style-1:after {
		content: '';
		position: absolute;
		top: 100%;
		right: 0;
		width: calc( 100% + 20px);
		height: 10px;
		z-index: 1;
		background: #FFF;
}

html.sticky-header-active #header .header-top {
		padding: 0 !important;
}

@media (min-width: 992px) {
		#header .header-nav-main nav > ul > li > a {
				font-size: 17px;
				font-weight: 600;
				padding: 0 0.8rem !important;
		}
}

@media (min-width: 1200px) {
		#header .header-nav-main nav > ul > li > a {
				padding: 0 1.3rem !important;
		}
}

/*
* Contact Form
*/
.custom-form-style-1 .form-control {
		height: calc(1.8em + 1.85rem + 2px);
		padding: 15.6px 20px;
		padding: 0.975rem 1.25rem;
		background: #f7f7f7;
		border-color: #f7f7f7;
		line-height: 1.5 !important;
}

.custom-form-style-1 .form-control:focus {
		border-color: #CCC;
}

.custom-form-style-1 .form-control::-webkit-input-placeholder {
		color: #a9a9a9;
}

.custom-form-style-1 .form-control::-moz-placeholder {
		color: #a9a9a9;
}

.custom-form-style-1 .form-control:-ms-input-placeholder {
		color: #a9a9a9;
}

.custom-form-style-1 select {
		color: #495057;
}

.custom-form-style-1 select option {
		color: #a9a9a9;
}

.custom-form-style-1 select option[selected] {
		color: #a9a9a9;
}

.custom-form-style-1 textarea.form-control {
		height: auto;
}

.custom-svg-stars {
		position: absolute;
		top: 0;
		right: 100%;
		width: 300px;
		opacity: 0.1;
		z-index: 0;
}

/*
* Home Why Choose Us Section - Custom Accordion Style
*/
.custom-accordion-style-1 > .card {
		border: 1px solid transparent !important;
		transition: ease border-color 300ms;
}

.custom-accordion-style-1 > .card .card-header a {
		position: relative;
		padding: 23px 30px;
		background-color: #FFF;
		transition: ease background-color 300ms, ease color 300ms;
}

.custom-accordion-style-1 > .card .card-header a:after {
		content: '+';
		position: absolute;
		top: 50%;
		right: 25px;
		font-size: inherit;
		font-weight: inherit;
		transform: translate3d(0, -50%, 0) rotate(45deg);
		transform-origin: 50% 50%;
		transition: ease transform 300ms;
}

.custom-accordion-style-1 > .card .card-header a.collapsed:after {
		transform: translate3d(0, -50%, 0) rotate(0deg);
}

.custom-accordion-style-1 > .card + .card {
		margin-top: 20px;
}

/*
* Home Section Our Process - Custom Featured Icon
*/
.custom-featured-icon-wrapper {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 110px;
		height: 110px;
		border-radius: 100%;
}

.custom-featured-icon-wrapper .icon-featured {
		margin: 0 !important;
}

/*
* Home Section Happy Clients - Custom Testimonial
*/
.testimonial.testimonial-style-3.custom-testimonial-style-1 blockquote {
		background: #FFF !important;
		padding: 45px 40px 35px 40px;
}

.testimonial.testimonial-style-3.custom-testimonial-style-1 blockquote:before {
		content: '\f10d';
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		font-size: 19.2px;
		font-size: 1.2rem;
		top: 15px;
		left: 15px;
}

.testimonial.testimonial-style-3.custom-testimonial-style-1 .testimonial-author {
		margin: 19px 0 0 0;
}

.testimonial.testimonial-style-3.custom-testimonial-style-1 .testimonial-author img {
		max-width: 67px;
}

/*
* Portfolio Detail
*/
.custom-list-icons-icon-size li {
		padding-left: 50px !important;
}

.custom-list-icons-icon-size li > [class*="fa-"]:first-child,
.custom-list-icons-icon-size li > .icons:first-child, .custom-list-icons-icon-size li a:first-child > [class*="fa-"]:first-child,
.custom-list-icons-icon-size li a:first-child > .icons:first-child {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px !important;
		height: 40px !important;
		font-size: 14.4px !important;
		font-size: 0.9rem !important;
		top: 1px !important;
}

/*
* Services Detail
*/
.custom-nav-list-effect-1 > li > a {
		position: relative;
		transition: ease padding 300ms, ease color 300ms;
}

.custom-nav-list-effect-1 > li > a:before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 0;
		height: 0;
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
		border-left: 6px solid #CCC;
		opacity: 0;
		visibility: hidden;
		transform: translate3d(0, -50%, 0);
		transition: ease opacity 300ms;
}

.custom-nav-list-effect-1 > li.active > a, .custom-nav-list-effect-1 > li.open > a, .custom-nav-list-effect-1 > li:hover > a {
		padding-left: 15px;
}

.custom-nav-list-effect-1 > li.active > a:before, .custom-nav-list-effect-1 > li.open > a:before, .custom-nav-list-effect-1 > li:hover > a:before {
		opacity: 1;
		visibility: visible;
}

/*
* Blog
*/
.blog-sidebar .form-control.bg-color-grey {
		background-color: #FFF !important;
}

/*
* Footer
*/
#footer p, #footer a:not(.btn), #footer span, #footer li, #footer .footer-copyright p {
		color: #a3b2c7;
}

#footer .social-icons li a {
		color: #a3b2c7 !important;
}

#footer .social-icons li:hover a {
		color: #FFF !important;
}

#footer a:not(.btn):not(.no-footer-css) {
		color: #a3b2c7;
}

.bg-fourty {
	background:#897450;
	border-radius:120px 0 0 0;
}

.text-72 {
    font-size: 6.75em !important;
}

.pbt-100 {
	padding:80px 0 130px;
}

.bg-dblue {
	background:url('../images/bg-dblue.png') no-repeat right center #fff;
}

.bg-dblue2 {
	background:url('../images/bg-dblue.png') no-repeat right center #fff;
}

.bg-dblue3 {
	background:#003056;
}


.bg-dgold {
	background:#897450;
}


.bg-grid {
	background:url('../images/repeat-grid.png') no-repeat left top;
}

.bg-grid2 {
	background:url('../images/repeat-grid2.png') no-repeat right top;
	height:100%
}

.mt-150 {
	margin-top:150px;
}

.mt-100 {
	margin-top:100px;
}

.mh-350 {
	min-height:350px;
}

.mh-300 {
	min-height:300px;
}
.mh-250 {
	min-height:250px;
}
.mh-200 {
	min-height:200px;
}

.bg-grey {
	background:#f5f5f5 !important;
}

.pt-divider {
	width:250px;
	height:2px;
	background:#fff;
}

/*pt160-services*/

.pt160-services {
	margin-bottom:100px;
}
.pt160-wrapper {
	padding: 120px 0 45px 0;
	background: linear-gradient(to top, #FDFFFD, #F5FFF5, rgba(202, 245, 202, 0.3));
	position: relative;
}

#pt160-curve {
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(180deg);
}

#pt160-curve path {
	fill: #fff
}

.pt160-service {
	/*background: #FFFFFF;*/
	box-shadow: 0px 1px 155px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	text-align: left;
	padding: 25px 25px 25px 25px;
	position: relative;
	z-index: 1
}

.g-readmore {
	position:absolute;
	left:25px;
	bottom:30px;
}

.pt160-anim-1 {
	position: absolute;
	top: -80px;
	left: -50px;
}

.pt160-anim-2 {
    position: absolute;
    bottom: -23px;
    left: -128px;
}

.pt160-anim-1 img {
	-webkit-animation: sp 3s linear infinite;
	animation: sp 3s linear infinite;
}

.pt160-anim-2 img {
	-webkit-animation: sp 3s linear infinite;
	animation: sp 3s linear infinite;
}

@keyframes sp {
	from {
		transform: translate(0, 0px);
	}

	65% {
		transform: translate(0, 30px);
	}

	to {
		transform: translate(0, -0px);
	}
}

.pt160-heading {
	margin-top:100px;
}

/*
.pt160-heading h3 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    font-size: 35px;
    display: inline-block;
}

.pt160-heading h3::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -15px;
    background-color: #66E9AE;
    height: 5px;
    width: 70px;
}
*/

.pt160-heading p {
    color: #363636;
font-size: 18px;
line-height: 28px;
margin-bottom: 15px;
}

.pt160-button a {
    background: linear-gradient(253.52deg, #48D6F2 8.92%, #84FC6A 96.59%);
    box-shadow: 0px 2px 15px rgba(164, 164, 164, 0.25);
    border-radius: 68px;
    color: #fff;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    margin-top: 25px;
    display: inline-block;
}

.pt160-button a:hover {
	background: linear-gradient(253.52deg, #84FC6A 8.92%, #48D6F2 96.59%);
}

.pt160-icon img {
    height: 60px;
    margin-bottom: 20px;
}


.pt160-text h3 {
text-transform:none !important;
margin-bottom:5px;
font-size:1.2rem;
}

.pt160-text p {
    font-size: 16.5px;
    line-height: 26px;
}

.pt160-box1{
	margin-top:180px;
}

.pt160-box2{
	margin-top:40px;
}


@media (min-width: 768px) and (max-width: 991px) {
	.pt160-service {
		padding: 25px 25px;
	}
}

.pt-strike h3 {
	line-height:3rem;
}

.pt-strike h3::after {
    position: absolute;
    content: "";
    background: #003056;
    width: 70px;
    height: 3px;
    left: 0;
    bottom: 0;
}

.bg-box {
  background-color: #eee;
}

#partner_contact_h3 {
  padding-left: 45px;
}
h3.size-sm {
  font-size: 18px;
}

.attorney-contact-info li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

ul.unstyled-listed li {
	list-style: none;
}
.box-padding, .box-padding-r, .box-padding-r2 {
  padding: 30px;
}

.attorney-contact-info li i{
 margin-right:10px;
}