/*
  Theme Name:  Resi - Business And Agency HTML template
  Author: Ahmed Ali
  Description: Business template.
  Version: 1.0
*/

/* Css Index
-----------------------------------

1. Typography css 
2. Theme default css 
3. Header top css
4. Hero css
5. Feature css
6. About css
7. Service css
8. Progress css
9. Why Choose css
10. Team css
11. Subscribe css
12. Benefit  css
13. Video  css
14. Brand css
15.Blog css
16.Contact css
17.Home 2 Contact css
18.Portfolio css	
19.Price css 
20.Scroll top css
21.Footer css 
22.Breadcrumb css
23. single Page css
24. Sidebar css
25. Pagination css	

*/


/*-------------------------------------------------------
1. Typography css 
---------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&amp;family=Roboto:wght@300;400;500;700;900&amp;family=Montserrat:wght@500;600&amp;family=Open+Sans:wght@400&amp;family=Red+Hat+Display:wght@400;700&amp;family=Oswald:wght@400;500;600;700&amp;display=swap');
:root {
	--heading-color: #002e5b;
	--bg-color: #f9f9f9;
	--body-color: #888888;
	--theme-color: #002e5b;
	--theme-color-sec: #dc3545;
	--white-color: #fff;
	--black-color: #000;
	--light-color: #EFEFEF;
	--border-color:#E3E8FE;
	--lightgrey-color: #ccc;
	--font-family-1: 'Heebo', sans-serif;
    --font-family-2: 'Roboto', sans-serif;
	--font-family-mont: 'Montserrat', sans-serif;
	--font-family-open: 'Open Sans', sans-serif;
	--font-family-red: 'Red Hat Display', sans-serif;
}

*, *:before, *:after {
 	box-sizing: inherit;
}

html,body {
	height: auto;
    width:100%;
    margin:0;
    padding:0;
    overflow-x: hidden;
    font-size: 62.5%;
	box-sizing:border-box;
}

body {
	font-family: var(--font-family-1);
	font-style: normal;
	color: var(--body-color);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 3rem;
	-moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

a{
    color: var(--body-color);
}

a,
a:active,
a:focus,
a:hover{
    outline:none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	text-decoration: none;
}

a:hover{
    color:#666;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

h1, h2, h3, h4, h5, h6{
    color:var(--heading-color);
    margin:0 0 1.5rem 0;
    font-weight: 700;
    font-family: var(--font-family-2);
	line-height: 1.2;
}

h1{
    font-size:48px;
}

h2{
    font-size:36px;
}

h3{
    font-size:30px;
}

h4{
    font-size:22px;
}

h5{
    font-size:18px;
}

h6{
    font-size:14px;
}

p{
	margin-bottom: 1.5rem;
	color: var(--body-color);
	line-height: 3rem;
	font-size: 1.8rem;
}

.img,img{
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	height:auto;
}

hr {
  padding: 0px;
  border-bottom: 1px solid #eceff8;
  border-top: 0px;
}

label {
  color: #999;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 1.4rem;
  opacity: .5;
}

*::placeholder {
  color: #999;
  font-size: 1.4rem;
  opacity: .5;
}

input:focus,
textarea:focus, 
select:focus {
  outline: none;
  box-shadow: inherit;
}

/*-------------------------------------------------------
2. Theme default css 
---------------------------------------------------------*/

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url(assets/img/logo/pre-loader.gif) center no-repeat var(--white-color);
    text-align: center;
    display: none;
}

.height100 {
	height: 100%;
}

.height100vh {
	height: 100vh;
}

.bg {
	background:var(--bg-color);
}

.bg-sec {
	background:var(--bg-color-sec);
}
/*grid css*/

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 3rem;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 3rem;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 3rem;
}


/*Theme button css*/

.theme-btn {
	padding: 1.3rem 2.4rem;
    background: var(--theme-color);
    border-radius: 5px;
    color: var(--white-color);
    text-transform: capitalize;
	font-weight: 500;
}

.theme-btn i {
    height: 1.2rem;
    width: 1.2rem;
    line-height: 1.2rem;
    background: var(--white-color);
    color: var(--theme-color);
    font-size: 8px;
    margin-left: 7px;
    margin-right: 0;
    text-align: center;
    border-radius: 50%;
    transform: translate(0px, -2px);
}

.theme-btn:hover {
	background: #002e5b;
    color: var(--white-color);
}

.theme-btn:hover i {
	color: #002e5b;
}

/*margins paddings*/

.de-padding {
    padding: 3rem 0;
}

.de-pad-2 {
	padding: 8.6rem 0;
}

.de-pt {
	padding-top: 8rem;
}

.pt-120 {
	padding-top: 8rem;
}

.pt-105 {
	padding-top: 6.5rem;
}

.pt-20 {
	padding-top: 2rem;
}

.de-pb {
	padding-bottom: 8rem;
}

.blog-area {
	padding-top: 6rem;
}

/* servicesworkshops：课程卡片保持原宽度，用留白挤开（2+1 自动换行） */
.training-cards-row {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 25px;
	margin-left: auto;
	margin-right: auto;
	max-width: 980px;
}
.training-cards-row > [class*="col-"] {
	flex: 0 0 auto;
	max-width: none;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-bottom: 0 !important;
	width: auto !important;
}
.training-cards-row .project-text-card {
	/* 不覆盖 finves-custom.css 的固定宽度，让卡片保持不变 */
}
.training-cards-row .project-text-card h4 {
	margin-bottom: 20px;
}
.training-cards-row .project-text-card hr {
	margin-top: 0;
	margin-bottom: 20px;
}

.pb-130 {
	padding-bottom: 13rem;
}

.pb-120 {
	padding-bottom: 8rem;
}

.pb-105 {
	padding-bottom: 6.5rem;
}

.pb-80 {
	padding-bottom: 8rem;
}

.mb-10 {
	margin-bottom: 1rem;
}

.mb-20 {
	margin-bottom: 2rem;
}

.mb-30 {
	margin-bottom: 3rem;
}

.mb-70 {
	margin-bottom: 7rem;
}

.mb-40 {
	margin-bottom: 4rem;
}

.mb-0 {
	margin-bottom: 0;
}

.mt-10 {
	margin-top: 1rem;
}

.mt-20 {
	margin-top: 2rem;
}

.mt-30 {
	margin-top: 3rem;
}

.mt-40 {
	margin-top: 4rem;
}

.mt-70 {
	margin-top: 7rem;
}

 
.about-bottom-text {
	margin-top: 3rem;
	grid-column: 1 / -1;
}

.about-bottom-text p {
	margin-bottom: 2.5rem;
}

.about-bottom-text p:last-child {
	margin-bottom: 0;
}

/*bsnav menu*/
 
.text-strike {
	text-decoration: line-through;
}

.navbar .navbar-expand-lg .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link {
    padding: 2rem 2.5rem;
    display: block;
    position: relative;
    transition: .3s;
    cursor: pointer;
    color: var(--heading-color);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 3rem;
    text-transform: capitalize;
	letter-spacing: .8px;
	font-family: var(--font-family-2);
}

.navbar.sticked.in .navbar-expand-lg .navbar-nav .nav-link,
.navbar.sticked.in .navbar-nav .nav-link {
    color: var(--heading-color);
}

/*Besi Menu Settings*/

.main-navigation {
    position: relative;
}

.navbar {
    padding: 1rem 1.5rem;
    z-index: 999;
    background: #fff;
    margin-top: 5rem;
    position: relative;
}

.navbar .navbar-collapse {
    justify-content: flex-start !important;
}

.navbar .navbar-nav.navbar-mobile {
    margin-left: 14rem !important;
}

.single-head .navbar .navbar-expand-lg .navbar-nav .nav-link,
.single-head .navbar .navbar-nav .nav-link {
	color: var(--heading-color);
}

.navbar.sticked.in {
    background: #fff;
	border-bottom: 1px solid var(--lightgrey-color);
}

.navbar .navbar-brand img {
	max-width: 103px;
	height: auto;
}

.navbar .navbar-brand .logo-display {
	display: block;
}

.navbar .navbar-brand .logo-scrolled {
	display: none;
}

.navbar.sticked.in .navbar-brand .logo-display {
	display: none;
}

.navbar.sticked.in .navbar-brand .logo-scrolled {
	display: block;
}

/* Logo positioned outside white menu bar */
.navbar-brand.logo-outside {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	transform: translateX(calc(-100% - 26px));
	z-index: 1000;
	display: flex;
	align-items: center;
	height: auto;
}

.navbar-brand.logo-outside img {
	width: 200px;
	max-width: none;
	max-height: none;
	height: auto;
	display: block;
    padding-bottom: 0;
}

.navbar.sticked.in .navbar-brand.logo-outside {
	top: 0;
	bottom: 0;
	left: 0;
	transform: translateX(calc(-100% - 26px));
}

.navbar.sticked.in .navbar-brand.logo-outside img {
	max-width: 103px;
	max-height: 80px;
}

.navbar .navbar-company {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 2.2rem;
	color: var(--heading-color);
	letter-spacing: 2px;
	margin-right: auto;
	font-family: 'Oswald', sans-serif;
}

.navbar .navbar-company-logo-link {
	display: none;
	margin-right: 10px;
	flex: 0 0 auto;
	text-decoration: none;
}

.navbar.sticked.in .navbar-company-logo-link {
	display: block;
}

.navbar .navbar-company-logo {
	width: 32px;
	height: 32px;
	display: block;
}

.navbar-nav .nav-item.active>.nav-link,
.navbar-nav .nav-item:active:focus>.nav-link, 
.navbar-nav .nav-item:active>.nav-link,
.navbar-nav .nav-item:focus>.nav-link,
.navbar-nav .nav-item:hover>.nav-link {
    color: var(--theme-color);
}

.navbar.sticked.in .navbar-nav .nav-item.active>.nav-link,
.navbar.sticked.in .navbar-nav .nav-item:active:focus>.nav-link, 
.navbar.sticked.in .navbar-nav .nav-item:active>.nav-link,
.navbar.sticked.in .navbar-nav .nav-item:focus>.nav-link,
.navbar.sticked.in .navbar-nav .nav-item:hover>.nav-link {
    color: var(--theme-color);
}

.navbar.sticked.in .navbar-nav .nav-item:hover>.nav-link {
	color: var(--theme-color);
}

.nav-item.dropdown ul li:hover > a {
	color: var(--theme-color) !important;
}

/*caret*/

.nav-item .caret {
	border-left: none;
    border-right: none;
}


.nav-item.active .caret,
.nav-item:hover .caret {
	border-top-color: var(--theme-color);
}

/*Dropdown*/
/*
.nav-item.dropdown>.navbar-nav {
    background: #fff;
    width: 250px;
    position: absolute;
    pointer-events: none;
    flex-direction: column;
    transition: .3s ease-out;
    transition-delay: .1s;
    clip: rect(0,100vw,0,0);
    padding: 2rem 3rem;
}
*/

.navbar .nav-item .caret {
    margin-top: -18px;
    border-top: solid 5px var(--heading-color);
    font-size: 1.2rem;
    font-weight: 900;
    margin-left: 0px;
}

.navbar.sticked.in .nav-item .caret {
    border-top: solid 5px var(--heading-color);
}

.nav-item.dropdown ul li a {
	color: var(--heading-color-sec) !important;
	white-space: nowrap;
}
.navbar.sticked.in .nav-item:hover .caret {
	border-top: solid 5px var(--theme-color);
}

.navbar .nav-item:hover .caret {
	border-top: solid 5px var(--heading-color);
}

.navbar .nav-item.dropdown>.navbar-nav,
.navbar .nav-item.dropdown>.navbar-nav .navbar-nav {
    background: #fff;
    border-radius:0;
    box-shadow: 0 2px 14px rgba(0,0,0,.15);
    padding: 1.5rem 2rem;
	min-width: 260px;
}

.bsnav-transparent .nav-item.dropdown>.navbar-nav.in li a {
	font-size: 1.4rem;
}

/*For topbar*/

.navbar.in {
    margin-top: 0rem;
}

.single-head .navbar.in {
    margin-top: 0;
}


/*theme title*/

.site-title {
    margin-bottom: 5rem;
    margin-top: -1rem;
}

.site-title h2 {
    text-transform: capitalize;
    line-height: 1.2;
    font-size: 4rem;
	margin-bottom: 0;
}

.site-title h2 a {
	color: inherit;
	text-decoration: none;
}

.site-title h2 a:hover {
	color: var(--theme-color);
}

.site-title.wh h2 {
	color: var(--white-color);
}

.site-title h2 span {
    color: var(--theme-color);
    font-weight: 400;
}

.site-title.wh h2 span {
	color: var(--white-color);
}

/* servicehome 页面标题：2 行显示、字体缩小 */
.servicehome-title .hero-p1 {
	font-size: 2rem;
}
.servicehome-title h2 {
	font-size: 2.2rem;
	line-height: 1.4;
}

.hero-p1 {
    font-size: 2rem;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: var(--theme-color);
    position: relative;
    z-index: 1;
    padding-left: 4.5rem;
    font-family: var(--font-family-2);
	display: inline-block;
}

.site-title.wh .hero-p1 {
	color: var(--white-color);
}

.hero-p1::before, 
.hero-p1::after {
	position: absolute;
	content: '';
	background: var(--theme-color);
	height: 1px;
	width: 2.5rem;
}

.site-title.wh .hero-p1::before, 
.site-title.wh .hero-p1::after {
	background: var(--white-color);
}

.hero-p1::before {
	top: 40%;
	left: 0;
}

.hero-p1::after {
    bottom: 35%;
    left: 1rem;
}


/*border*/

.bdr {
	border: 1px solid var(--lightgrey-color);
}

.b-t {
	border-top: 1px solid var(--lightgrey-color);
}

.b-b {
	border-bottom: 2px solid #f0ecff;
}

.b-l {
	border-left: 1px solid var(--lightgrey-color);
}

.b-r {
	border-right: 1px solid var(--lightgrey-color);
}

.posi-rel {
	position: relative;
	z-index: 1;
	overflow: hidden;
}


/*-------------------------------------------------------
3. Header top css
--------------------------------------------------------- */

.header-top-area {
    position: absolute;
    top: -40px;
    left: 40px;
}

.header-top-area .header-top-wrapper .header-top-left ul {
    display: flex;
    color: var(--heading-color);
    font-size: 1.4rem;
}

.header-top-area .header-top-wrapper .header-top-left ul li {
	margin-right: 4rem;
}

.header-top-area .header-top-wrapper .header-top-left ul li:last-child {
	margin-right: 0;
}

.header-top-area .header-top-wrapper .header-top-left ul li i {
	margin-right: 1rem;
	color: var(--theme-color);
}

.header-serarch-btn i {
    color: var(--heading-color);
    display: inline-block;
    margin-right: 1.5rem;
}

.header-serarch-btn a {
    padding: 1.3rem 2.4rem;
    background: var(--theme-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: var(--white-color);
    text-transform: capitalize;
}

.header-serarch-btn a i {
    height: 1.2rem;
    width: 1.2rem;
    line-height: 1.2rem;
    background: var(--white-color);
    color: var(--theme-color);
    font-size: 8px;
    margin-left: 7px;
    margin-right: 0;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate(0px, -2px);
    transform: translate(0px, -2px);
}


.header-serarch-btn a:hover {
	background: #002e5b;
    color: var(--white-color);
}

.header-serarch-btn a:hover i {
	color: #002e5b;
}

/*Home 2*/
.header-top-area.home-2 .header-top-wrapper .header-top-left ul,
.header-top-area.home-2 .header-top-wrapper .header-top-left ul li i {
	color: var(--white-color);
}

/*-------------------------------------------------------
4. Hero css
--------------------------------------------------------- */

.hero-section {
    overflow: hidden;
}

.hero-single {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 110vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}


/*Hero Content*/

.hero-content {
    padding-top: 15rem;
}

.hero-content.demos {
    padding-top: 0;
}

.hero-content h2 {
    font-size: 7rem;
    line-height: 1.1;
    color: var(--heading-color);
    font-weight: 400;
    text-transform: capitalize;
}

.hero-content h2 span {
	font-weight: 700;
}

/* 首页 hero 标题固定 2 行，仅 OSINT + AI 与 Smarter Decisions 加粗 */
.hero-title-two-lines {
	font-weight: 400;
}
.hero-title-two-lines .hero-line-1,
.hero-title-two-lines .hero-line-2 {
	display: block;
	white-space: nowrap;
	font-weight: 400;
}
.hero-title-two-lines strong {
	font-weight: 700;
}

.hero-content p {
	color: var(--heading-color);
	font-size: 2rem;
	margin-bottom: 3rem;
}

.hro-btn a {
    display: inline-block;
}

/*Home-2*/

.home-2 .hero-single::before {
	position: absolute;
	content: '';
	z-index: -1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgb(0, 0, 0,0.6);
}


.home-2 .hero-single .hero-content h2, 
.home-2 .hero-single .hero-content p, 
.home-2 .hero-single .hero-content .hero-p1{ 
    color: var(--white-color);
}

.home-2 .hero-single .hero-content .hero-p1::before,
.home-2 .hero-single .hero-content .hero-p1::after {
	background-color: var(--white-color);
}

/*Owl Carousel*/

.hero-slider.owl-theme .owl-nav {
	margin-top: 0;
	position: absolute;
	left: 5rem;
	top: 50%;
	-webkit-transform: translate(0, -50%) rotate(90deg);
	transform: translate(0, -50%) rotate(90deg);
}


.hero-slider.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 1rem 1.5rem;
    background: rgb(0 0 0 / 8%);
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    line-height: 1;
}

[class^="ti-"], [class*=" ti-"] {
    font-family: 'themify';
    speak: none;
display: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-slider.owl-theme .owl-nav .owl-prev {
	-webkit-border-top-left-radius: 1rem;
	border-top-left-radius: 1rem;
}

.hero-slider.owl-theme .owl-nav .owl-next {
	-webkit-border-bottom-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

/*Demos*/

.homepage-box img {
    border: 2px solid var(--theme-color);
}

/*-------------------------------------------------------
5.Feature css
--------------------------------------------------------- */

.fet-wrapper .fet-box {
	border-top: 2px solid var(--theme-color);
    text-align: center;
    padding: 5rem 3rem;
    -webkit-box-shadow: 0px 0px 54px 0px rgba(151, 151, 151, 0.08);
    box-shadow: 0px 0px 54px 0px rgba(151, 151, 151, 0.08);
	position: relative;
	z-index: 1;
}

.fet-wrapper .fet-box .fet-info h4 {
    margin: 2rem 0 2rem;
}

.fet-wrapper .fet-box .fet-info p {
    margin-bottom: -1rem;
}

.fet-wrapper .fet-box .fet-btn  {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    text-align: center;
    background-color: var(--white-color);
    color: var(--theme-color);
    border: 1px solid #dedede;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 1.3rem;
}

.fet-wrapper .fet-box:hover .fet-btn .fet-theme,
.fet-wrapper .fet-box .fet-btn .fet-white {
	display: none;
}

.fet-wrapper .fet-box .fet-btn .fet-theme,
.fet-wrapper .fet-box:hover .fet-btn .fet-white {
	display: inline-block;
	
}

.fet-wrapper .fet-box:hover .fet-btn  {
	background-color: var(--theme-color);
	color: var(--white-color);
	border: 1px solid var(--theme-color);
}

.fet-wrapper .fet-box.fet-active .fet-btn {
	background-color: var(--theme-color);
	color: var(--white-color);
	border: 1px solid var(--theme-color);
}


.fet-wrapper .fet-box.fet-active:hover .fet-btn .fet-white,
.fet-wrapper .fet-box.fet-active .fet-btn .fet-white {
	display: inline-block !important;
}

.fet-wrapper .fet-box.fet-active .fet-btn .fet-theme {
	display: none !important;
}

.fet-slogan h5 {
    margin-bottom: 0;
    font-size: 1.6rem;
    color: var(--body-color);
    font-weight: 400;
    font-family: var(--font-family-1);
	letter-spacing: 0px;
}

.fet-slogan h5 span {
    color: var(--theme-color);
}


/*-------------------------------------------------------
6.About css
--------------------------------------------------------- */

.about-wrapper .about-left .about-left-img {
    height: 100%;
	position: relative;
    z-index: 1; 
}

.about-wrapper .about-left .about-left-img img {
	width: 100%;
	height: auto;
	min-height: 0;
	display: block;
	object-fit: contain;
}

.about-wrapper .about-right {
    padding-left: 3rem;
}

.about-inline-list {
	margin: 3rem 0 0;
	padding-left: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 2rem;
}

.about-inline-list li {
	display: flex;
	align-items: flex-start;
}

.about-inline-list li img {
	margin-right: 2rem;
	width: 4.2rem;
	height: 4.2rem;
	object-fit: contain;
}

.about-inline-list li .about-right-info h4 {
	text-transform: capitalize;
	margin-bottom: 0.8rem;
	font-family: var(--font-family-2);
}

.about-inline-list li .about-right-info p {
	margin-bottom: 0;
}

/* Who We Serve：右侧文字纵向收拢，尽量不超出左侧图片 */
.who-we-serve-section .who-we-serve-img {
	max-height: 480px;
	overflow: hidden;
	border-radius: inherit;
}
.who-we-serve-section .who-we-serve-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.who-we-serve-section .who-we-serve-text {
	max-height: 680px;
	overflow: hidden;
}
.who-we-serve-section .who-we-serve-text .ps-5 {
	padding-top: 0;
}
.who-we-serve-section .who-we-serve-text .h1 {
	margin-bottom: 1rem;
}
.who-we-serve-section .who-we-serve-text .my-5 {
	margin-top: 1rem !important;
	margin-bottom: 1.25rem !important;
}
.who-we-serve-section .about-inline-list {
	margin-top: 0;
	grid-gap: 1rem;
}
.who-we-serve-section .about-inline-list li .about-right-info h4 {
	font-size: 1.9rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	min-height: 5.2rem;
	height: 5.2rem;
	line-height: 1.35;
}
.who-we-serve-section .about-inline-list li .about-right-info p {
	font-size: 1.45rem;
    line-height: 1.55;
	color: #666;
}
@media (max-width: 991px) {
	.who-we-serve-section .who-we-serve-img,
	.who-we-serve-section .who-we-serve-text {
		max-height: none;
	}
}

.about-wrapper .about-right .site-title {
    margin-bottom: 2rem;
    line-height: 1;
}


.about-wrapper .about-right p {
    margin-bottom: 3rem;
}

.about-wrapper .about-right ul li {
    display: flex;
    align-items: flex-start;
}

.about-wrapper .about-right ul li img {
	margin-right: 3rem;
}

.about-wrapper .about-right ul li {
	margin-bottom: 2rem;
}

.about-wrapper .about-right ul li:last-child {
	margin-bottom: 0;
}

.about-wrapper .about-right ul li .about-right-info h4 {
    text-transform: capitalize;
    margin-bottom: 1rem;
    font-family: var(--font-family-2);
}

.about-wrapper .about-right ul li:nth-child(2) .about-right-info h4 {
	font-weight: 500;
}

.about-wrapper .about-right ul li .about-right-info p {
	margin-bottom: 0;
}

.about-wrapper .about-more-btn a {
    display: inline-block;
    margin-top: 4rem;
}

.expertise-content {
	margin-top: 2rem;
}

.expertise-list li {
	position: relative;
	padding-left: 2.2rem;
	margin-bottom: 1rem;
	font-family: var(--font-family-1);
}

.expertise-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--theme-color);
}

.expertise-note {
	margin-top: 1.5rem;
	margin-bottom: 0;
}


/*Video Play Button*/

.about-left .about-left-img a {
    position: absolute;
    top: 49%;
    left: 55%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.about-left .about-left-img a i {
    height: 8rem;
    width: 8rem;
    line-height: 8rem;
    text-align: center;
    background: var(--theme-color);
    color: var(--white-color);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    font-size: 2.5rem;
}

.about-left .about-left-img a::before {
	position: absolute;
	content:'';
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	height: 8rem;
	width: 8rem;
	line-height: 8rem;
	text-align: center;
	background-color: rgba(254, 0, 64,0.9);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: play-pluse 1500ms ease-out infinite;
    animation: play-pluse 1500ms ease-out infinite;
	z-index: -1;
}




/*-------------------------------------------------------
7.Service css
--------------------------------------------------------- */

.service-area {
	position: relative;
	z-index: 1;
}

.service-area::before {
	background-color: rgba(13, 110, 253, 0.12);
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 57%;
	z-index: -1;
}

.service-wrapper .service-box {
	padding: 2rem;
	padding-bottom: 0;
	-webkit-box-shadow: 0px 19px 54px 0px rgba(0, 0, 0, 0.02);
	box-shadow: 0px 19px 54px 0px rgba(0, 0, 0, 0.02);
	background-color: var(--white-color);
}

.service-wrapper .service-box .service-info {
	padding: 2rem 0;
	border-bottom: 1px solid #eaeaea;
}

.service-wrapper .service-box .service-info h4 {
	text-transform: capitalize;
}

.service-wrapper .service-box .service-info p {
	margin-bottom: 0;
	padding-left: 2.4rem;
	font-size: 1.45rem;
	color: #666;
	line-height: 1.6;
}

.service-wrapper .service-box .service-info .hero-p1 {
    color: var(--heading-color);
    font-size: 2.2rem;
    font-weight: 600;
}

.service-wrapper .service-box .service-more-btn a {
    display: block;
    text-align: center;
    color: var(--theme-color);
    background: var(--white-color);
	-webkit-border-radius: 0;
	border-radius: 0;
}

.service-wrapper .service-box .service-more-btn a i {
	background: var(--theme-color);
	color: var(--white-color);
}

.service-wrapper .service-box:hover .service-more-btn a {
	background: var(--theme-color);
	color: var(--white-color);
}

.service-wrapper .service-box:hover .service-more-btn a i {
	color: var(--theme-color);
    background: var(--white-color);
}

.service-wrapper .service-box.service-active .service-more-btn a {
    background: var(--theme-color);
	color: var(--white-color);
}

.service-wrapper .service-box.service-active .service-more-btn a i {
	color: var(--theme-color);
    background: var(--white-color);
}


/* 服务区静态三列，无横向滚动 */
.service-wrapper-static {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: stretch;
}
.service-wrapper-static .service-box {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.service-wrapper-static .service-box .service-img {
	height: 220px;
	min-height: 220px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f7fb;
	flex-shrink: 0;
}
.service-wrapper-static .service-box .service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.service-wrapper-static .service-box .service-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.service-wrapper-static .service-box .service-more-btn {
	flex-shrink: 0;
	margin-top: auto;
}
@media (max-width: 991px) {
	.service-wrapper-static {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 575px) {
	.service-wrapper-static {
		grid-template-columns: 1fr;
	}
	.service-wrapper-static .service-box .service-img {
		height: 200px;
		min-height: 200px;
	}
}

.service-wrapper.owl-theme .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.service-wrapper.owl-theme .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0px 7px;
    background: var(--theme-color);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.service-wrapper.owl-theme .owl-dots .owl-dot.active span,
.service-wrapper.owl-theme .owl-dots .owl-dot:hover span {
	width: 15px;
    height: 15px;
    background: var(--heading-color);
	transform: translate(0, 2px);
}

.service-wrapper.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 7rem;
}

/*Service Details Page*/

#accordion .panel-heading {
	padding: 0;
}

.panel .panel-body {
	background: #fff;
	padding: 3rem;
}

#accordion .panel.panel-active .panel-heading   {
	background: var(--bg-color);
}

#accordion .panel.panel-active .panel-heading .panel-title > a {
	color: var(--heading-color);
}

#accordion .panel-title > a {
	display: block;
	padding: 2rem;
	outline: none;
	text-decoration: none;
	color: #30323d;
	font-size: 1.8rem;
	font-family: var(--font-family-1);
}

#accordion .panel-title > a.accordion-toggle::before,
#accordion a[data-toggle="collapse"]::before {
	content: "";
	right: 3rem;
	position: absolute;
	background: url(assets/img/faqs/cls-minus.png);
	background-repeat: no-repeat;
	height: 3rem;
	width: 3rem;
}
/*\f077*/
#accordion .panel-title > a.accordion-toggle.collapsed::before,
#accordion a.collapsed[data-toggle="collapse"]::before  {
    content:"";
	background: url(assets/img/faqs/cls-plus.png);
	background-repeat: no-repeat;
}


.panel-group .panel {
	margin-bottom: 2rem;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 1rem;
	background: #fff;
	overflow: hidden;
}

.panel-group .panel:last-child {
	margin-bottom: 0;
}

.panel-heading {
    padding: 10px 15px;
    border: none;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-default>.panel-heading {
    background-color: var(--white-color);
    border-color: none;
	color: var(--heading-color);
}

/*-------------------------------------------------------
9. Partner css 
---------------------------------------------------------*/

.partner-wrapper .section-title h2 {
	font-size: 3rem;
	line-height: 1.4;
	text-transform: capitalize;
	font-weight: 600;
}

.partner-wrapper .partner-pic img {
	width: auto !important;
}


/*-------------------------------------------------------
10. Blog css 
---------------------------------------------------------*/


.blog-wrapper .blog-box .blog-pic img {
	border-radius: 3rem;
}

.blog-wrapper .blog-box .blog-meta ul li {
  display: inline-block;
  margin-right: 1rem;
}

.blog-wrapper .blog-box .blog-meta ul li a i {
  margin-right: 1rem;
  color: #7963ee;
}

.blog-wrapper .blog-box .blog-meta {
  margin-bottom: 2rem;
}

.blog-wrapper .blog-box .blog-desc {
  background: #fff;
  margin-right: 3rem;
  margin-left: 3rem;
  margin-top: -7rem;
  z-index: 1; 
  position: relative;
  padding: 3rem;
  box-shadow: 0px 0px 79px 0px rgba(0, 0, 0, 0.07);
}


.blog-wrapper .blog-box .blog-desc h4 {
	font-size: 1.8rem;
	line-height: 1.4;
	text-transform: capitalize;
	margin-bottom: 0;
	color: #30323d;
}



/*-------------------------------------------------------
8.Progress css
--------------------------------------------------------- */

.progress-box {
	text-align: center;
}

.progress-box .chart {
    height: 140px;
    width: 140px;
    position: relative;
    display: inline-block;
}

.progress-box .chart span {
    position: absolute;
    height: 90px;
    width: 90px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 1px solid #ececec;
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 90px;
	color: var(--theme-color);
	font-size: 2.2rem;
	font-weight: 700;
	font-family: var(--font-family-1);
}

.progress-box .chart span::before {
    position: absolute;
    content: '';
    height: 160px;
    width: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 1px solid #ececec;
    border-radius: 50%;
    z-index: -1;
}

.progress-box h4 {
    text-transform: capitalize;
    margin-bottom: 0;
    line-height: 1;
    margin-top: 2.5rem;
    font-family: var(--font-family-1);
    font-weight: 700;
}

/*-------------------------------------------------------
9.Why Choose css
--------------------------------------------------------- */


.wh-wrapper .wh-box {
    display: grid;
    padding: 3rem 2rem;
    align-items: center;
	grid-template-columns: 5rem 1fr;
	transition: .5s ease;
	border-top: 2px solid var(--theme-color);
	box-shadow: 0px 19px 68px 0px rgba(0, 0, 0, 0.05);
}

.wh-wrapper .wh-box .wh-info {
	padding-left: 2rem;
}

/* 标题与图标垂直居中，并略微下移 */
.wh-wrapper .wh-box .wh-info:not(.wh-info-body) {
	display: flex;
	align-items: center;
	padding-top: 0.4rem;
}

/* 正文从图标下方开始，占满整卡宽度，减少右侧留白 */
.wh-wrapper .wh-box .wh-info-body {
	grid-column: 1 / -1;
	padding-left: 0;
	padding-right: 0;
	margin-top: 0.5rem;
	margin-right: -2rem; /* 抵掉卡片右内边距，正文更靠右 */
}

.wh-wrapper .wh-box .wh-info-body p {
	padding-right: 1rem; /* 保留少量右边距，避免贴边 */
}

.wh-wrapper .wh-box .wh-info h4 {
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.wh-wrapper .wh-box .wh-info .wh-info-title {
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.wh-wrapper .wh-box .wh-info p {
    margin-bottom: 0;
    padding-right: 2rem;
}

.wh-wrapper .wh-box.wh-noicon {
	grid-template-columns: 1fr;
}

.wh-wrapper .wh-box.wh-noicon .wh-info {
	display: block;
	padding-left: 0;
	text-align: left;
}

.wh-wrapper .wh-box.wh-noicon .wh-info h4 {
	text-align: center;
}

.wh-wrapper .wh-box.wh-noicon .wh-info p {
	padding-right: 0;
	text-align: center;
}

.wh-area-choose .wh-wrapper .wh-box {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.wh-area-choose .wh-wrapper .wh-box .wh-info {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}
.wh-area-choose .wh-wrapper .wh-box .wh-info h4 {
	height: 5.2rem;
	min-height: 5.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 1rem;
	line-height: 1.35;
}
.wh-area-choose .wh-wrapper .wh-box .wh-info p {
	flex: 1;
	min-height: 7rem;
	font-size: 1.45rem;
	color: #666;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	/* text-align: left; */
}

.case-findings-section .wh-wrapper.grid-4 {
	align-items: stretch;
}
.case-findings-section .wh-wrapper.grid-4 .wh-box.wh-noicon {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
}
.case-findings-section .wh-wrapper.grid-4 .wh-box.wh-noicon .wh-info {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}
.case-findings-section .wh-wrapper.grid-4 .wh-box.wh-noicon .wh-info h4 {
	height: 5.2rem;
	min-height: 5.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 1rem;
	line-height: 1.35;
}
.case-findings-section .wh-wrapper.grid-4 .wh-box.wh-noicon .wh-info p {
	flex: 1;
	min-height: 4rem;
	font-size: 1.45rem;
	color: #666;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
}

.single-area .wh-area .wh-wrapper .wh-box {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
}
.single-area .wh-area .wh-wrapper .wh-box .wh-icon {
	flex-shrink: 0;
	text-align: center;
}
.single-area .wh-area .wh-wrapper .wh-box .wh-info {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}
.single-area .wh-area .wh-wrapper .wh-box .wh-info.wh-info-body {
	flex: 1;
	min-height: 8rem;
	display: flex;
	align-items: flex-start;
}
.single-area .wh-area .wh-wrapper .wh-box .wh-info.wh-info-body p {
	font-size: 1.45rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}
.single-area .wh-area .wh-wrapper .wh-box .wh-icon {
	min-height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.single-area .wh-area .wh-wrapper .wh-box .wh-info .wh-info-title {
	text-align: center;
	margin-bottom: 0.35rem;
	min-height: 7.5rem;
	height: 7.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.35;
}
.single-area .wh-area .wh-wrapper .wh-box .wh-info.wh-info-body {
	margin-top: 0.25rem;
	min-height: 11rem;
	height: 11rem;
	flex: 0 0 11rem;
	display: flex;
	align-items: flex-start;
}
.single-area .wh-area .wh-wrapper.grid-3 {
	align-items: stretch;
}
.single-area .wh-area .wh-wrapper .wh-box {
	height: 100%;
	padding-bottom: 4rem;
}

.wh-wrapper .wh-box .wh-info .sector-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.wh-wrapper .wh-box .wh-info .sector-list li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
}

.wh-wrapper .wh-box .wh-info .sector-list li:last-child {
	margin-bottom: 0;
}

.wh-wrapper .wh-box .wh-info .sector-list li:hover {
	-webkit-line-clamp: unset;
	overflow: visible;
}

.wh-wrapper .wh-box .wh-info .sector-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .8rem;
	width: .6rem;
	height: .6rem;
	border-radius: 50%;
	background: var(--theme-color);
}

.sector-area .wh-wrapper,
#business-sectors .wh-wrapper {
	grid-gap: 3rem;
}

.sector-area .wh-box,
#business-sectors .wh-box {
	background: #ffffff;
	border: 1px solid #f0ecff;
	border-top: 4px solid var(--theme-color);
	border-radius: 1.2rem;
	box-shadow: 0px 18px 40px 0px rgba(18, 38, 63, 0.08);
	position: relative;
	overflow: hidden;
}

.sector-area .wh-box::before,
#business-sectors .wh-box::before {
	content: '';
	position: absolute;
	top: -4.5rem;
	right: -4.5rem;
	height: 11rem;
	width: 11rem;
	border-radius: 50%;
	background: rgba(254, 0, 64, 0.08);
}

.sector-area .wh-box::after,
#business-sectors .wh-box::after {
	content: '';
	position: absolute;
	bottom: -6rem;
	left: -6rem;
	height: 14rem;
	width: 14rem;
	border-radius: 50%;
	background: rgba(254, 0, 64, 0.04);
}

.sector-area .wh-icon,
#business-sectors .wh-icon {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--theme-color);
	border: 0;
	position: relative;
	z-index: 1;
}

.sector-area .wh-icon img,
#business-sectors .wh-icon img {
	width: 3.2rem;
	height: 3.2rem;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.category-area .category-images {
	margin-top: 4rem;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 3rem;
}

.category-area .category-image {
	background: #ffffff;
	padding: 2rem;
	border-radius: 1.2rem;
	box-shadow: 0px 18px 40px 0px rgba(18, 38, 63, 0.08);
}

.category-area .category-image img {
	width: 100%;
	height: auto;
	display: block;
}

.category-area .category-desc {
	margin-top: 1.5rem;
}

.category-area .category-note {
	margin-top: 2rem;
	font-weight: 600;
}

.category-area .category-list {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.6rem;
}

.category-area .category-list span {
	background: #ffffff;
	border: 1px solid #f0ecff;
	padding: 0.6rem 1.2rem;
	border-radius: 2rem;
	font-size: 1.4rem;
	box-shadow: 0px 8px 20px 0px rgba(18, 38, 63, 0.06);
}

.feature-area .feature-desc {
	margin-top: 1.5rem;
}

.feature-area .feature-list {
	margin-top: 4rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-gap: 2.5rem;
}

.feature-area .feature-item {
	background: #ffffff;
	border: 1px solid #f0ecff;
	border-top: 4px solid var(--theme-color);
	border-radius: 1.2rem;
	padding: 2.5rem;
	box-shadow: 0px 18px 40px 0px rgba(18, 38, 63, 0.08);
}

.feature-area .feature-item {
	text-align: center;
}
.feature-area .feature-icon-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.feature-area .feature-icon-wrapper img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}
.feature-area .feature-item h4 {
	margin-bottom: 0;
	text-align: center;
}

.feature-area .feature-item p {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.feature-area .feature-list {
		grid-template-columns: 1fr;
		grid-gap: 1.5rem;
		margin-top: 2.5rem;
	}
	.feature-area .feature-item {
		min-width: 0;
	}
	.feature-area .feature-item h4 {
		word-wrap: break-word;
		overflow-wrap: break-word;
		hyphens: auto;
	}
	.single-area .wh-area .wh-wrapper.grid-3 {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 2rem;
	}
}
@media (max-width: 767px) {
	.feature-area .feature-list {
		grid-gap: 1.25rem;
	}
	.feature-area .feature-item {
		padding: 1.75rem 1.25rem;
	}
	.single-area .wh-area .wh-wrapper.grid-3 {
		grid-template-columns: 1fr;
		grid-gap: 1.5rem;
	}
	.why-choose-training .text-center.mt-50 {
		padding-left: 1rem;
		padding-right: 1rem;
		padding-top: 1.5rem !important;
	}
	.why-choose-training .theme-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		width: 100%;
		max-width: 100%;
		text-align: center;
		padding: 1rem 1.25rem;
		font-size: 1.35rem;
		box-sizing: border-box;
		white-space: nowrap;
		gap: 0.5rem;
	}
	.why-choose-training .theme-btn i {
		flex-shrink: 0;
		margin-left: 0;
	}
}
@media (max-width: 400px) {
	.why-choose-training .theme-btn {
		font-size: 1.2rem;
		white-space: normal;
	}
	.why-choose-training .theme-btn i {
		align-self: center;
	}
}

/* blog.html 中的 feature-list 样式 */
.single-content-text .feature-list {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-gap: 2.5rem;
}

.single-content-text .feature-item {
	background: #ffffff;
	border: 1px solid #f0ecff;
	border-top: 4px solid var(--theme-color);
	border-radius: 1.2rem;
	padding: 2.5rem;
	box-shadow: 0px 18px 40px 0px rgba(18, 38, 63, 0.08);
	text-align: center;
}

.single-content-text .feature-item h4 {
	margin-bottom: 1rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.single-content-text .feature-item h4 .check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background-color: #2b8af7;
	color: #ffffff;
	border-radius: 50%;
	font-size: 0.75rem;
	flex-shrink: 0;
}

.single-content-text .feature-item p {
	margin-bottom: 0;
	text-align: center;
}

.ai-capabilities-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	background: #eaf5ff;
	border: 1px solid #d8e9fb;
	border-radius: 12px;
	padding: 2rem;
}

.ai-capabilities-row {
	display: flex;
	gap: 1.5rem;
	align-items: stretch;
}

.ai-capabilities-label {
	background: var(--theme-color);
	color: #ffffff;
	border-radius: 10px;
	min-width: 44px;
	padding: 1rem 0.6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
}

.ai-capabilities-label::before {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.22);
}

.ai-capabilities-label span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-weight: 700;
	letter-spacing: 0.08em;
	font-size: 1.2rem;
}

.ai-capabilities-content {
	flex: 1;
}

.ai-capabilities-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.ai-capability-card {
	background: #f7fbff;
	border: 1px solid #e3edf8;
	border-radius: 10px;
	padding: 1.6rem;
	box-shadow: 0 6px 20px rgba(18, 38, 63, 0.06);
	height: 100%;
}

.ai-capability-title {
	margin-bottom: 1rem;
	font-size: 1.6rem;
	color: var(--theme-color);
}

.ai-capability-desc {
	margin-bottom: 0;
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--body-color);
}

.ai-capability-card-muted {
	background: #f1f5fb;
	border: 1px dashed #cfd9e6;
	box-shadow: none;
}

.ai-capability-card-muted .ai-capability-title {
	color: #7a8aa3;
}

.case-cta-area {
	padding: 3.5rem 0 5rem;
}

.case-cta-card {
	background: #f4f9ff;
	border: 1px solid #dbe8f6;
	border-radius: 12px;
	padding: 2.5rem 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	box-shadow: 0 12px 30px rgba(18, 38, 63, 0.06);
}

.case-cta-text {
	margin-bottom: 0;
	font-size: 1.8rem;
	color: var(--heading-color);
	font-weight: 600;
}

.case-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: #ffffff;
	background: var(--theme-color-sec);
	padding: 1.2rem 2.2rem;
	border-radius: 6px;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
}

.case-cta-link:hover {
	color: #ffffff;
	background: var(--theme-color);
}

h4#case-study-2 {
	scroll-margin-top: 120px;
}

@media (max-width: 767px) {
	.case-cta-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.case-cta-text {
		font-size: 1.6rem;
	}
}

@media (max-width: 991px) {
	.single-content-text .feature-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ai-capabilities-row {
		flex-direction: column;
	}

	.ai-capabilities-label {
		width: 100%;
		min-width: 0;
		padding: 0.6rem 1rem;
		flex-direction: row;
		justify-content: flex-start;
	}

	.ai-capabilities-label::before {
		margin-right: 0.8rem;
		margin-bottom: 0;
	}

	.ai-capabilities-label span {
		writing-mode: horizontal-tb;
		transform: none;
		letter-spacing: 0.04em;
	}
}

@media (max-width: 575px) {
	.single-content-text .feature-list {
		grid-template-columns: 1fr;
	}
}

/* About 页面 Tabs 内容区域左侧间距 */
.tabs-responsive .tab-content .col-lg-12.ps-6 {
	padding-left: 3rem !important;
}
@media (min-width: 768px) {
	.tabs-responsive .tab-content .col-lg-12.ps-6 {
		padding-left: 4rem !important;
	}
}

.core-values-block {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 1rem;
}
.core-value-row {
	display: grid;
	grid-template-columns: 12em 1fr;
	gap: 2rem;
	align-items: start;
	text-align: left;
}
.core-value-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #666;
	line-height: 1.4;
	flex-shrink: 0;
}
.core-value-desc {
	font-size: 1.8rem;
	line-height: 1.5;
	color: var(--body-color);
	margin: 0;
}
@media (max-width: 767px) {
	.core-value-row {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
}

/* servicesdynamics 页面：Customized Dynamic Platform 描述文本与下方卡片左对齐 */
.finves-project-area .container {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
.finves-project-area .row {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.finves-project-area .col-lg-12,
.finves-project-area .col-lg-6 {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
.finves-project-area .site-heading.platform-description {
	width: 100% !important;
	margin: 0 !important;
	text-align: left !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.platform-description h4 {
	text-transform: none !important;
	color: var(--heading-color);
	text-align: left !important;
}
.platform-description p {
	max-width: 100%;
	line-height: 1.8;
	color: #888888 !important;
	text-align: left !important;
}
/* 通用 platform-description 样式，适用于所有页面 */
.site-heading.platform-description {
	width: 100% !important;
	margin: 0 !important;
	text-align: left !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
@media (min-width: 992px) {
	.finves-project-area .container {
		max-width: 1400px;
	}
}

.servicesdynamics-page.finves-project-area .container {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1200px) {
	.servicesdynamics-page.finves-project-area .container {
		max-width: 1000px;
	}
}

/* Why Choose Aether DataTech Training */
.why-choose-training {
	background: var(--bg-color);
}
.why-choose-title {
	color: var(--theme-color);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	text-align: center;
}
.why-choose-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.why-choose-list li {
	color: var(--body-color);
	font-size: 1.4rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	padding-left: 2.5rem;
	position: relative;
}
.why-choose-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--theme-color);
	font-weight: 700;
	font-size: 1.6rem;
}


/*-------------------------------------------------------
10.Team css
--------------------------------------------------------- */

.team-area {
    position: relative;
	z-index: 1;
}

.team-area::before,
.team-area::after{
    position: absolute;
    content: '';
    height: 40rem;
    width: 40rem;
    z-index: -1;
    
}

.team-area::before {
	background-image: url(assets/img/team/team-shape-1.png);
	bottom: 0;
    left: 0;
    background-position: bottom left;
	background-repeat: no-repeat;
}

.team-area::after {
	background-image: url(assets/img/team/team-shape-2.png);
    top: 0;
    right: 0;
    background-position: top right;
	background-repeat: no-repeat;
}

.team-area .team-wrapper .team-box {
    background: var(--white-color);
    padding: 2rem;
	text-align: center;
}

.team-area .team-wrapper .team-box .team-img {
	margin-bottom: 2rem;
}

.team-area .team-wrapper .team-box .team-info h4 {
    text-transform: capitalize;
    line-height: 1;
	margin-bottom: 1rem;
}

.team-area .team-wrapper .team-box .team-info span {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 1.5rem;
}

.team-area .team-wrapper .team-box .team-info .team-social {
	display: flex;
	justify-content: center;
	align-items: center;
}

.team-area .team-wrapper .team-box .team-info .team-social li {
	margin-right: 1rem;
}

.team-area .team-wrapper .team-box .team-info .team-social li:last-child {
	margin-right: 0;
}

.team-area .team-wrapper .team-box .team-info .team-social li a i {
	height: 4rem;
	width: 4rem;
	line-height: 4rem;
	background: #f9f9f9;
	text-align: center;
	color: var(--theme-color);
	-webkit-transition: .5s ease;
	transition: .5s ease;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.team-area .team-wrapper .team-box .team-info .team-social li a:hover i {
	background: var(--theme-color);
	color: var(--white-color);
}

.team-area.tm-page::before,
.team-area.tm-page::after {
	display: none;
}

/*Home 2*/

.home-2 .team-area::before {
	background-image: url("assets/img/team/home-2-team-shape-1.png");
}

/*-------------------------------------------------------
11.Subscribe css
--------------------------------------------------------- */

.sub-area {
	padding: 5rem 0;
	background: var(--black-color);
}

.sub-area .sub-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-gap: 2rem;
    align-items: center;
}

.sub-wrapper.grid-2 {
    align-items: center;
}

.sub-area .sub-wrapper .sub-left {
    display: flex;
    align-items: center;
}

.sub-area .sub-wrapper .sub-left .sub-left-icon {
    margin-right: 2rem;
}

.sub-area .sub-wrapper .sub-left .sub-left-info h2 {
	font-size: 4rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.sub-area .sub-wrapper .sub-left .sub-left-info span {
	color: var(--white-color);
	font-weight: 300;
	text-transform: capitalize;
	line-height: 1;
	font-size: 1.9rem;
}

.sub-right form {
	position: relative;
	z-index: 1;		
}

.sub-right form input {
    width: 100%;
    height: 6rem;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    outline: none;
    border: none;
}

.sub-right form input::placeholder {
	color: #888888;
	text-transform: capitalize;
}

.sub-right form button {
    position: absolute;
    right: 6px;
    padding: 1rem 2.4rem;
    background: var(--theme-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: var(--white-color);
    text-transform: capitalize;
    border: none;
    outline: none;
    top: 6px;
    font-size: 1.8rem;
}

/*Home 2*/

.home-2 .sub-area {
	background: #002e5b;
}

/*-------------------------------------------------------
12.Benefit  css
--------------------------------------------------------- */

.benefit-wrapper {
	display: grid;
	grid-template-columns: 2fr 2fr;
}

.benefit-left {
    padding-right: 1rem;
}

.benefit-left .benefit-text {
	margin-bottom: 3rem;
}

.benefit-left .benefit-text p {
	margin-bottom: 2rem;
}

.benefit-left .benefit-text p:last-child {
    margin-bottom: 0;
}

.benefit-left .site-title {
    margin-bottom: 2rem;
}

.benefit-left .benefit-opt .benefit-opt-box img {
	margin-bottom: 1rem;
}

.benefit-left .benefit-opt .benefit-opt-box h4 {
    text-transform: capitalize;
    margin-bottom: 5px;
}

.benefit-left .benefit-opt .benefit-opt-box p {
    margin-bottom: 0;
}

.benefit-right .benefit-right-img {
    position: relative;
    z-index: 1;
    padding-left: 4.2rem;
	padding-bottom: 3rem;
}

.benefit-right-img::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0px;
    height: 83%;
    width: 78%;
    background: var(--theme-color);
    z-index: -1;
}

/*Video Play Button*/

.benefit-right .benefit-right-img  a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.benefit-right .benefit-right-img  a i {
    height: 8rem;
    width: 8rem;
    line-height: 8rem;
    text-align: center;
    background: var(--theme-color);
    color: var(--white-color);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    font-size: 2.5rem;
}

.benefit-right .benefit-right-img  a::before {
	position: absolute;
	content:'';
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	height: 8rem;
	width: 8rem;
	line-height: 8rem;
	text-align: center;
	background-color: rgba(254, 0, 64,0.9);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: play-pluse 1500ms ease-out infinite;
    animation: play-pluse 1500ms ease-out infinite;
	z-index: -1;
}



/*Benefit bottom css*/

.benefit-btm-wrapper .benefit-btm-box {
    display: grid;
    padding: 3rem 2rem;
    border-top: 2px solid transparent;
    align-items: center;
    grid-template-columns: 5rem 1fr;
	background-color: rgb(255, 255, 255);
	-webkit-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.03);
}

.benefit-btm-wrapper .benefit-btm-box .benefit-btm-info {
    padding-left: 2rem;
}

.benefit-btm-wrapper .benefit-btm-box .benefit-btm-info h4 {
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.benefit-btm-wrapper .benefit-btm-box .benefit-btm-info p {
    margin-bottom: 0;
}

.benefit-btm-wrapper .benefit-btm-box .benefit-btm-icon i {
    height: 5.8rem;
    width: 5.8rem;
    line-height: 5.8rem;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 49px 0px rgba(12, 62, 185, 0.08);
    box-shadow: 0px 0px 49px 0px rgba(12, 62, 185, 0.08);
    font-size: 2.8rem;
	color: var(--theme-color);
	padding-top: 1px;
}

/*-------------------------------------------------------
13.Video  css
--------------------------------------------------------- */

.video-area {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-area::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.8);
    content: '';
    z-index: -1;
	display: none;
}

.video-wrapper .video-play-btn {
    position: relative;
    z-index: 1;
    display: block;
}

.video-wrapper .video-play-btn i {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    background: var(--white-color);
    color: var(--theme-color);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    font-size: 2rem;
}

.video-wrapper .video-play-btn::before,
.video-wrapper .video-play-btn::after {
	position: absolute;
	content:'';
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	text-align: center;
	background-color: rgb(255, 255, 255,.6);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: play-pluse 1500ms ease-out infinite;
    animation: play-pluse 1500ms ease-out infinite;
	z-index: -1;
}

.video-wrapper .video-play-btn::before {
	height: 6rem;
	width: 6rem;
	line-height: 7rem;
}

.video-wrapper .video-play-btn::after {
	height: 8rem;
	width: 8rem;
	line-height: 9rem;
}

.video-area .video-wrapper .vid-btn {
	margin-top: 6rem;
}

.video-area .video-wrapper .vid-btn a {
	display: inline-block;
}

/*-------------------------------------------------------
14.Brand css
--------------------------------------------------------- */

.brand-area {
	padding: 5rem 0;
	background: var(--theme-color);
}

.brand-area .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    opacity: .7;
    cursor: pointer;
}

.brand-area .owl-carousel .owl-item img:hover {
	opacity: 1;
}

/*-------------------------------------------------------
15.Blog css
--------------------------------------------------------- */

.blog-wrapper .blog-box {
	padding: 2rem;
	padding-bottom: 0;
	-webkit-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.03);
	background-color: var(--white-color);
}

.blog-wrapper .blog-box .blog-meta {
	margin-bottom: 1.5rem;
}

.blog-wrapper .blog-box .blog-meta ul {
    display: flex;
    align-items: center;
}

.blog-wrapper .blog-box .blog-meta ul li {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-right: 2rem;
	font-size: 1.5rem;
	text-transform: capitalize;
}

.blog-wrapper .blog-box .blog-meta ul li i {
	margin-right: 1.5rem;
	color: var(--theme-color);
}

.blog-wrapper .blog-box .blog-info {
	padding: 2rem 0;
	border-bottom: 1px solid #eaeaea;
}

.blog-wrapper .blog-box .blog-info h4 {
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.blog-wrapper .blog-box .blog-info p {
    margin-bottom: 0;
    font-family: var(--font-family-2);
}

.blog-wrapper .blog-box .blog-more-btn a {
    display: block;
    text-align: center;
    color: var(--theme-color);
    background: var(--white-color);
	-webkit-border-radius: 0;
	border-radius: 0;
}

.blog-wrapper .blog-box .blog-more-btn a i {
	background: var(--theme-color);
	color: var(--white-color);
}

.blog-wrapper .blog-box:hover .blog-more-btn a {
	background: var(--theme-color);
	color: var(--white-color);
}

.blog-wrapper .blog-box:hover .blog-more-btn a i {
	color: var(--theme-color);
    background: var(--white-color);
}

.blog-wrapper .blog-box.blog-active .blog-more-btn a {
    background: var(--theme-color);
	color: var(--white-color);
}

.blog-wrapper .blog-box.blog-active .blog-more-btn a i {
	color: var(--theme-color);
    background: var(--white-color);
}

.blog-wrapper.owl-theme .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
}

.blog-wrapper.owl-theme .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0px 7px;
    background: var(--heading-color);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.blog-wrapper.owl-theme .owl-dots .owl-dot.active span,
.blog-wrapper.owl-theme .owl-dots .owl-dot:hover span {
	width: 15px;
    height: 15px;
    background: var(--theme-color);
	transform: translate(0, 2px);
}

.blog-wrapper.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 7rem;
}

/*-------------------------------------------------------
16.Review css
--------------------------------------------------------- */

.review-box {
    padding: 3rem 2rem;
    border-top: 2px solid var(--theme-color);
    box-shadow: 0px 19px 68px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 1;
}

.review-box .review-text {
    margin-bottom: 2rem;
}

.review-box .review-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
}

.review-box .review-bio span {
    color: var(--heading-color);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 7px;
    display: inline-block;
}

.review-box .review-bio p {
	margin-bottom: 0;
	text-transform: uppercase;
}

.review-box .review-rating {
    display: flex;
    color: var(--theme-color);
	flex-direction: column;
	position: absolute;
	left: 2rem;
}

.review-box .review-img img {
    border-radius: 50%;
    border: 1px dashed var(--theme-color);
    padding: 5px;
}


/*-------------------------------------------------------
16.Contact css
--------------------------------------------------------- */

.contact-area .contact-wrapper {
    box-shadow: 0px 2px 51px 0px rgba(0, 0, 0, 0.15);
    background-color: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: 1fr 400px;
}

.contact-area .contact-inputs {
    padding: 5rem 3rem;
}

.contact-area .contact-inputs form label {
    font-size: 1.4rem;
	font-weight: 300;
	color: var(--body-color);
	line-height: 1;
	text-transform: capitalize;
	margin-bottom: 1rem;
}

.contact-area .contact-inputs form .form-control {
    outline: none;
    height: 3rem;
    border: 1px solid #e5e5e5;
    padding: 1rem 3rem;
    line-height: 1;
}

.contact-area .contact-inputs form textarea.form-control {
	height: 9rem;
}

.contact-area .contact-inputs form .form-group {
	margin-bottom: -2rem;
}

.contact-area .contact-inputs form .contact-sub-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.5rem;
}

.contact-area .contact-inputs form .contact-sub-btn button {
	text-align: center;
}

.contact-area .contact-inputs form button {
    padding: 1rem 3rem;
    font-family: var(--font-family-mont);
    font-size: 1.6rem;
    border: none;
    font-weight: 500;
    background: var(--theme-color);
    color: var(--white-color);
    border-radius: 3rem;
    line-height: 1;
    text-align: center;
    outline: none;
    margin-top: 2rem;
}

.contact-area .site-title .hero-p1 {
    font-family: var(--font-family-1);
    font-size: 1.6rem;
}

.contact-area .site-title .hero-p1::before, 
.contact-area .site-title .hero-p1::after {
	display: none;
}

.contact-area .site-title h2 {
	font-size: 3.8rem;
}

.contact-area .contact-addr .contact-addr-box .contact-addr-single {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}

.contact-area .contact-addr .contact-addr-box .contact-addr-single:last-child {
	margin-bottom: 0;
}

.contact-area .contact-addr .contact-addr-box .contact-addr-single i {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    text-align: center;
    border-radius: 50%;
    background: var(--theme-color);
    color: var(--white-color);
    font-size: 1.6rem;
    border: 1px solid currentColor;
}

.contact-area .contact-addr .contact-addr-box .contact-addr-single p {
    margin-bottom: 0;
    font-family: var(--font-family-open);
    line-height: 1.3;
	font-size: 1.4rem;
	margin-left: 2rem;
	color: var(--white-color);
}

.contact-wrapper .contact-tl-1,
.contact-area .contact-addr .contact-tl-1 {
	text-transform: uppercase;
	margin-bottom: 4rem;
	font-family:  var(--font-family-red);
	color: var(--white-color);
	font-weight: 400;
}

.contact-wrapper .contact-tl-1 {
	color: #002e5b;
	font-weight: 700;
}

.contact-wrapper .contact-addr {
    padding: 6rem;
    background: #002e5b;
	padding-right: 0;
}

.contact-wrapper .contact-addr-social .contact-tl-1 {
    text-transform: uppercase;
    margin-top: 4rem;
    font-family: var(--font-family-mont);
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-wrapper .contact-addr-social .contact-social {
	display: flex;
	align-items: center;
}

.contact-wrapper .contact-addr-social .contact-social li {
	margin-right: 2rem;
}

.contact-wrapper .contact-addr-social .contact-social li a i {
	color: var(--white-color);
}

.contact-wrapper .contact-addr-social .contact-social li:hover a i {
	color: var(--theme-color);
}

/*Google Maps*/

.g-map-area {
	height: 100vh;
}

.g-map--wrapper iframe {
    width: 100%;
    height: 100vh;
	border: none;
}

/*-------------------------------------------------------
17.Home 2 Contact css
--------------------------------------------------------- */

.con-area {
	background: #f9f9f9;
}

.con-area .con-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-gap: 11rem;
}

.con-wrapper .con-addr {
    padding: 6rem;
    background: #002e5b;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.con-area .con-wrapper span.con-sub-heading {
    font-size: 2rem;
    text-transform: capitalize;
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.con-area .con-wrapper .con-inputs h2 {
    margin-bottom: 5rem;
    font-size: 5rem;
    line-height: 1.1;
}

.con-area .con-inputs form .form-control {
	border: none;
    outline: none;
    height: 3rem;
    border-bottom: 1px solid #c6c7c9;
    padding: 1rem 0;
    line-height: 1;
	background: transparent;
}

.con-area .con-inputs form .form-control::placeholder {
	color: var(--body-color);
}

.con-area .con-inputs form .form-group {
    margin-bottom: 4rem;
}

.con-wrapper .con-addr h5.con-tl {
    font-size: 2rem;
    color: var(--white-color);
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.con-area .con-addr .con-addr-box .con-addr-single {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.con-area .con-addr .con-addr-box .con-addr-single p {
    margin-bottom: 0;
    font-family: var(--font-family-open);
    line-height: 1.3;
    font-size: 1.4rem;
    margin-left: 2rem;
    color: var(--white-color);
}

.con-area .con-addr .con-addr-box .con-addr-single i {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    text-align: center;
    border-radius: 50%;
    background: var(--theme-color);
    color: var(--white-color);
    font-size: 1.6rem;
	border: 1px solid currentColor;
}

.con-area .con-addr h5.con-tle {
    color: var(--white-color);
    text-transform: uppercase;
    margin-top: 4rem;
}

.con-wrapper .con-addr-social .con-social {
	display: flex;
	align-items: center;
}

.con-wrapper .con-addr-social .con-social li {
	margin-right: 2rem;
}

.con-wrapper .con-addr-social .con-social li a i {
	color: var(--white-color);
}

.con-wrapper .con-addr-social .con-social li:hover a i {
	color: var(--theme-color);
}

.con-wrapper .contact-sub-btn .theme-btn {
    border: none;
    border-radius: 2px;
}

/*-------------------------------------------------------
18.Portfolio css
--------------------------------------------------------- */

.mix-item-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	justify-content: center;
}

/* 自定义：将服务筛选按钮分成多行排列 */
.mix-item-menu .mix-item-row {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	gap: 1.2rem;
}

.mix-item-menu button {
	border: 1px solid var(--theme-color);
	background: transparent;
	color: var(--heading-color);
	padding: 0.8rem 1.8rem;
	border-radius: 4px;
	font-weight: 600;
	text-transform: capitalize;
	transition: .3s ease;
}

.mix-item-menu button:hover,
.mix-item-menu button.active {
	background: var(--theme-color);
	color: var(--white-color);
}

.project-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.project-card {
	background: var(--white-color);
	border: 1px solid #e9edf4;
	box-shadow: 0px 18px 55px 0px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
}

.project-card::before {
	display: none;
}

.project-card .project-card-top {
	display: flex;
	gap: 1.4rem;
	align-items: center;
	padding: 2.2rem;
	border-bottom: 1px solid #eef1f6;
}

.project-card .project-card-icon {
	height: 4.6rem;
	width: 4.6rem;
	border-radius: 50%;
	background: var(--theme-color);
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	flex-shrink: 0;
}

.project-card .project-card-label {
	display: block;
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--theme-color);
	margin-bottom: .6rem;
}

.project-card .project-card-top h4 {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	color: var(--heading-color);
	text-transform: capitalize;
}

.project-card .project-card-bottom {
	padding: 2rem 2.2rem;
}

.project-card .project-card-bottom p {
	margin-bottom: 0;
}

.project-image-card {
	background: #0b1d3a;
}

.project-image-card::before {
	display: none;
}

.project-image-card img {
	height: 360px;
}

.project-image-card .project-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	padding: 2.2rem;
	text-align: center;
	background: rgba(9, 24, 48, 0.62);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease, background .3s ease;
}

.project-image-card:hover .project-overlay {
	background: rgba(9, 24, 48, 0.72);
	opacity: 1;
}

.project-image-card .project-tag {
	display: block;
	font-size: 1.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .6px;
}

.project-image-card .project-tag-yellow {
	color: #ffffff;
}

.project-image-card .project-tag-blue {
	color: #ffffff;
	font-weight: 500;
	font-size: 1.4rem;
	text-transform: none;
	letter-spacing: 0;
}

.project-wrapper .grid-sizer,
.project-wrapper .pf-item {
	width: 32%;
}

.project-wrapper .gutter-sizer {
	width: 2%;
}

.project-wrapper .pf-item {
	margin-bottom: 2.4rem;
}

.project-wrapper .pf-item.project-size-tall img {
	height: 420px;
}

.project-wrapper .pf-item.project-size-wide img {
	height: 300px;
}

.project-wrapper .pf-item.project-size-short img {
	height: 260px;
}

@media (max-width: 991px) {
	.project-wrapper .grid-sizer,
	.project-wrapper .pf-item {
		width: 49%;
	}

	.project-wrapper .gutter-sizer {
		width: 2%;
	}
}

@media (max-width: 575px) {
	.project-wrapper .grid-sizer,
	.project-wrapper .pf-item {
		width: 100%;
	}

	.project-wrapper .gutter-sizer {
		width: 0;
	}
}


.project-wrapper .project-box {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: #f5f7fb;
}

.project-wrapper .project-box img {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: cover;
	object-position: center;
	transform: scale(1.02);
}

.project-wrapper .project-image-card {
	background: #0b1d3a;
}

.project-wrapper .project-image-card img {
	height: 360px;
}

.project-wrapper .project-box::before {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	content: '';
	background-color: rgba(0, 0, 0,0);
	-webkit-transition: .5s ease;
	transition: .5s ease;
}

.project-wrapper .project-box:hover::before {
	background-color: rgba(0, 0, 0,0.251);
}

.project-wrapper .project-box .project-info {
    position: absolute;
    bottom: 3rem;
    left: -100%;
    background: var(--theme-color);
    padding: 1.5rem 3rem;
	z-index: 1;
	-webkit-transition: .5s ease;
	transition: .5s ease;
}

.project-wrapper .project-box:hover .project-info {
	left: 0;
}

.project-wrapper .project-box .project-info h4 {
	font-family: var(--font-family-red);
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 0;
	text-transform: capitalize;
}

.project-wrapper .project-box .project-info h4,
.project-wrapper .project-box .project-info span {
	color: var(--white-color);
}

.project-wrapper .project-box .project-info span {
	position: relative;
	z-index: 1;
	padding-left: 0;
	font-family: var(--font-family-red);
	font-size: 1.6rem;
	-webkit-transition: .5s ease;
	transition: .5s ease;
	transition-delay: .4s;
	display: block;
	margin-bottom: 5px;
}

.project-wrapper .project-box:hover .project-info span {
	padding-left: 5.4rem;
}

.project-wrapper .project-box .project-info span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	width: 0;
	height: 2px;
	background: var(--white-color);
	-webkit-transition: .5s ease;
	transition: .5s ease;
	transition-delay: .4s;
}

.project-wrapper .project-box:hover .project-info span::before {
	width: 4.4rem;
}

/*Project Details*/

.project-opt {
	margin-bottom: 2rem;
}

.project-opt-box {
    padding: 3rem;
    box-shadow: 0px 19px 68px 0px rgba(0, 0, 0, 0.05);
}

.project-opt-box i {
    font-size: 5rem;
    display: block;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.project-opt-box h4 {
	text-transform: capitalize;
}

/*-------------------------------------------------------
19. Price css 
---------------------------------------------------------*/

.price-wrapper .price-box {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 14px 47px 0px rgba(0, 0, 0, 0.08);
    padding: 4rem 8rem;
    text-align: center;
}

.price-wrapper .price-box .price-rib h4 {
    margin-bottom: 2.5rem;
	text-transform: capitalize;
}

.price-wrapper .price-box .price-rib img {
	margin-bottom: 3rem;
}

.price-wrapper .price-box .price-value {
    margin-bottom: 2rem;
}

.price-wrapper .price-box .price-value h2 {
    font-size: 3.8rem;
	margin-bottom: 0;
}

.price-wrapper .price-box .price-value h2 span {
    font-family: var(--font-family-1);
    font-size: 2rem;
    font-weight: 500;
}

.price-wrapper .price-box .price-info ul li {
    display: block;
    margin-bottom: 3rem;
	line-height: 1;
}

.price-wrapper .price-box .price-info ul li:last-child {
	margin-bottom: 0;
}

.price-wrapper .price-box .price-info ul li i {
	font-size: 2rem;
	margin-right: 1rem;
}

.price-wrapper .price-box .price-info ul li .fa-check {
	color: rgba(255, 87, 51, 0.6);
}

.price-wrapper .price-box .price-info ul li .fa-times {
	color: rgb(236, 42, 0);
}

.price-wrapper .price-box .price-bottom a {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    margin-top: 3rem;
}

.price-wrapper .price-box .price-bottom.price-active a {
	background: #002e5b;
    color: var(--white-color);
}

.price-wrapper .price-box .price-bottom.price-active a i{
	color: #002e5b;
}


/*-------------------------------------------------------
20. Scroll top css 
---------------------------------------------------------*/

#scrtop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#scrtop:hover {
  background-color: var(--heading-color);
}


/*-------------------------------------------------------
21. Footer css 
---------------------------------------------------------*/


footer {
    position: relative;
    z-index: 1;
	background: #002e5b;
}

.footer-widget-wrapper {
    display: grid;
    grid-template-columns: 1fr 15rem 1fr 12rem;
    grid-gap: 11rem;
}

.foo-widget-title {
    margin-bottom: 3rem;
    font-size: 2.1rem;
    text-transform: capitalize;
    font-weight: 400;
    font-family: var(--font-family-1);
}


/*About Us*/

.footer-widget-box.ab-us p {
    margin-bottom: 2rem;
}

.footer-widget-box.ab-us div {
    margin-bottom: 3rem;
    line-height: 1;
}

.footer-widget-box.ab-us img {
	max-width: 103px;
	height: auto;
}

.footer-widget-box.ab-us a {
    color: var(--white-color);
    text-transform: uppercase;
}

.footer-widget-box.ab-us a i {
	margin-left: 1rem;
	
}

/*footer list*/

.footer-widget-box ul.foo-list li {
    display: block;
    margin-bottom: 1rem;
}

.footer-widget-box ul.foo-list li:last-child {
	margin-bottom: 0;
}

.footer-widget-box ul.foo-list li span {
	text-transform: uppercase;
}

.footer-widget-box ul li a {
    text-transform: capitalize;
    line-height: 1.4;
}

.footer-widget-box ul li:hover a {
	color: var(--theme-color);
}


/*footer contact*/

.footer-contact p {
}

.footer-contact ul li {
	font-weight: 500;
	font-size: 1.8rem;
	color: var(--white-color);
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--white-color);
}

/*footer copyright*/

.copyright {
    padding: 2rem 0;
    border-top: 1px solid #2b3b51;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright.dem {
	display: block;
	text-align: center;
	padding: 5rem 0;
}

.copyright p {
    color: var(--white-color) !important;
    margin-bottom: 0;
    text-transform: capitalize;
}

/*footer social*/

footer ul.footer-social {
	display: flex;
}

footer ul.footer-social li {
	margin-right: 1.5rem;
}

footer ul.footer-social li:last-child {
	margin-right: 0;
}

footer ul.footer-social li a i {
	color: var(--white-color);
	font-size: 1.3rem;
}

footer ul.footer-social li:last-child {
	margin-bottom: 0;
}

/*White balance*/

.footer-widget-box p,
.footer-widget-box ul li a,
.foo-widget-title,
.copyright p,
.re-post-desc h6,
.re-post-desc p{
	color: var(--white-color);
}

.footer-widget-box.ab-us p,
.footer-widget-box ul li a,
.footer-contact p,
.copyright p,
.footer-widget-box.ab-us a {
    font-size: 1.4rem;
    font-family: var(--font-family-1);
}

/*-------------------------------------------------------
22. Breadcrumb css
---------------------------------------------------------*/

header.header.single-head .navbar {
    margin-top: 2rem;
}

header.header.single-head .navbar.in {
    margin-top: 0;
}

.main-breadcrumb {
	padding: 1rem 0 1.6rem;
	text-align: center;
}

.site-breadcrumb-title {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
    height: 80vh;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.site-breadcrumb-title::before {
	position: absolute;
	content: '';
    background-color: rgb(0, 0, 0,0.502);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.site-breadcrumb-title h2 {
    font-size: 4rem;
    text-transform: uppercase;
    color: var(--white-color);
    padding-top: 13rem;
}
.breadcrumb-title-contact {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.25;
	letter-spacing: 0.6px;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	padding-top: 0;
	font-size: 3.6rem;
	text-transform: none;
}

.main-breadcrumb .breadcrumb-menu {
	position: relative;
}

.main-breadcrumb .breadcrumb-menu li {
	position: relative;
	display: inline-block;
	margin-left: 3rem;
	color: var(--heading-color);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 2.4rem;
}

.main-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '\f101';
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    width: 2rem;
    right: -2.7rem;
    top: 7px;
    text-align: center;
    font-size: 1.4rem;
    color: #d63031;
}

.main-breadcrumb .breadcrumb-menu li:first-child{
	margin-left:0;	
}

.main-breadcrumb .breadcrumb-menu li:last-child:before{
	display:none;	
}

.main-breadcrumb .breadcrumb-menu li a {
    color: var(--white-color);
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 1rem;
    font-size: 1.3rem;
}

.main-breadcrumb ul li.active a {
	color: #d63031;
}

.main-breadcrumb .breadcrumb-menu li a:hover{
	color: #d63031;
}

/*-------------------------------------------------------
23. single Page css
---------------------------------------------------------*/

.single-content {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.single-content:last-child {
	margin-bottom: 0;
}

.single-content .single-page-img {
    margin-bottom: 1.5rem;
	text-align: center;
}

.single-content .single-page-img img {
	display: block;
	margin: 0 auto;
}

.single-content h2.single-content-title {
    font-size: 3.2rem;
}

/*Blog Page*/

.blog-single-btn {
	margin-top: -1rem;
}

.blog-single-btn a {
    display: inline-block;
}

/*single page meta content*/

.single-content .single-page-meta-content {
	margin-bottom: 2rem;
}

.single-content .single-page-meta-content ul {
    display: flex;
    align-items: center;
}

.single-content  .single-page-meta-content ul li {
	margin-right: 1.5rem;
}

.single-content .single-page-meta-content .single-meta-box {
    display: flex;
    align-items: center;
}

.single-content .single-page-meta-content .single-meta-box img {
	border-radius: 50%;
}

.single-content .single-page-meta-content .single-meta-box h5 {
	font-size: 1.6rem;
	color: var(--body-color);
	text-transform: capitalize;
	margin-bottom: 0;
	margin-left: 1rem;
	font-weight: 400;
}

.single-meta-box.single-meta-tags {
    background-color: var(--theme-color);
    padding: 3px 5px;
    line-height: 1;
}

.single-meta-box.single-meta-tags a {
	color: var(--white-color);
}

/*single content text*/

.single-content .single-content-text {
	margin-bottom: 3rem;
}

.single-content .single-content-text p:nth-child(4){
	margin-bottom: 3rem;
}

.single-content .single-content-text p:last-child{
	margin-bottom: 0;
}

.single-content p.single-text-spec {
    padding: 3rem;
    margin: 2rem 3rem 2rem 3rem;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 9.3px 0.7px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 9.3px 0.7px rgba(0, 0, 0, 0.06);
}

.single-content p.single-text-spec span {
    display: block;
    text-align: right;
    position: relative;
    z-index: 1;
	color: var(--heading-color);
	font-size: 1.6rem;
	font-family: var(--font-family-2);
	line-height: 1;
	margin-top: 8px;
}

.single-content p.single-text-spec span::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 125px;
    background-color: var(--theme-color);
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    width: 3.4rem;
    height: 1px;
}

/*single content tags*/

.single-content .single-content-tags ul {
	display: flex;
	align-items: center;
}

.single-content .single-content-tags ul li a {
	padding: 8px 2rem;
	font-size: 1.4rem;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: var(--white-color);
	text-transform: capitalize;
	display: block;
}

.single-content .single-content-tags ul li {
	margin-right: 1.5rem;
}

.single-content .single-content-tags ul li:last-child {
	margin-right: 0;
}

.single-content .single-content-tags ul li:nth-child(1) a {
	background-color: #5156ea;
}

.single-content .single-content-tags ul li:nth-child(2) a {
	background-color: #002e5b;
}

.single-content .single-content-tags ul li:nth-child(3) a {
	background-color: #08647b;
}

.single-content .single-content-tags ul li:nth-child(4) a {
	background-color: #0e7a58;
}

.single-content .single-content-tags ul li:nth-child(5) a {
	background-color: #0431b0;
}

/*singl content share*/

.single-content .single-content-share {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
	margin: 3rem 0 3rem;
}

.single-content .single-content-share h5 {
	font-family: var(--font-family-1);
	font-size: 1.8rem;
	margin-bottom: 0;
	color: var(--theme-color);
	font-weight: 400;
	margin-right: 2.3rem;	
}

.single-content .single-content-share ul.team-social {
    display: flex;
    align-items: center;
    font-size: 2rem;
}

.single-content .single-content-share ul.team-social li {
	margin-right: 1.5rem;
}

.single-content .single-content-share ul.team-social li:last-child {
	margin-right: 0;
}

.single-content .single-content-share ul.team-social li a i {
	color: #002e5b;
}

.single-content .single-content-share ul.team-social li:hover a i {
	color: var(--theme-color);
}


/*Comment Section*/


.single-comments-section .single-commentor .single-commentor-user {
    display: grid;
    grid-template-columns: 7rem 1fr;
    align-items: center;
    grid-gap: 2rem;
}

.single-comments-section .single-commentor ul li {
    margin-bottom: 3rem;
}


.single-comments-section .single-commentor .single-commentor-user .single-commentor-user-bio-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-comments-section .single-commentor .single-commentor-user .single-commentor-user-bio-head h6 {
	text-transform: capitalize;
	margin-bottom: 7px;
}

.single-comments-section .single-commentor .single-commentor-user .single-commentor-user-bio-head h6 span {
    text-transform: uppercase;
    color: var(--body-color);
    position: relative;
    z-index: 1;
	padding-left: 2rem;
}

.single-comments-section .single-commentor .single-commentor-user .single-commentor-user-bio-head h6 span::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 1rem;
    height: 1.6rem;
    width: 1px;
    background: #5156ea;
    transform: translate(0, -50%);
}

.single-comments-section .single-commentor .single-commentor-user .single-commentor-user-bio-head a i {
	font-size: 1.4rem;
	margin-right: 7px;
}

.single-comments-section .single-commentor .single-commentor-user .single-commentor-user-bio-head a:hover i {
	color: #5156ea;
}

.single-comments-section .single-commentor .single-commentor-user p {
	margin-bottom: 0;
}

.single-commentor-user.rlp {
	padding-left: 7rem;
}

.single-comments-section .single-commentor .single-commentor-user.rlp .single-commentor-user-bio-head h6 {
	color: var(--theme-color);
}


/*single-comments-section-form*/

.single-comments-section-form form .form-control {
    outline: none;
    height: 5rem;
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
    padding: 1rem 3rem;
    line-height: 1;
    margin-bottom: 3.5rem;
}

.single-comments-section-form form .form-control::placeholder {
	font-size: 1.6rem;
	font-weight: 300;
	color: var(--body-color);
	line-height: 1;
	text-transform: capitalize;
}

.single-comments-section-form form textarea.form-control {
	height: 15rem;
}

.single-comments-section-form form button {
	padding: 1rem 3rem;
	font-family: var(--font-family-2);
	font-size: 2.2rem;
	border: none;
	font-weight: 400;
	background: var(--theme-color);
	color: var(--white-color);
}

/*-------------------------------------------------------
24. Sidebar css
---------------------------------------------------------*/ 

.sidebar .sidebar-widget {
	padding: 2rem;
	-webkit-box-shadow: 0px 4px 38.4px 1.6px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 4px 38.4px 1.6px rgba(0, 0, 0, 0.08);
	margin-bottom: 3rem;
	border-radius: 5px;
}

.sidebar .sidebar-widget:last-child {
	margin-bottom: 0;
}

/*Sidebar Title css*/

.sidebar h4.widget-title {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 3rem;
}

.sidebar h4.widget-title::before {
    position: absolute;
    content: '';
    width: 3rem;
    height: 1px;
    background-color: var(--theme-color);
    right: -50px;
    top: 50%;
    transform: translate(10px, -50%);
}

/*Search css*/

.sidebar .sidebar-widget.search form {
	position: relative;
	z-index: 1;		
}

.sidebar .sidebar-widget.search form input {
    width: 100%;
    height: 6rem;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    outline: none;
    border: none;
	background-color: #f8f9ff;
}

.sidebar .sidebar-widget.search form input::placeholder {
	color: var(--heading-color);
	text-transform: capitalize;
}

.sidebar .sidebar-widget.search form button {
    position: absolute;
    right: 0;
    padding: 1.3rem 2.4rem;
    background: var(--theme-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: var(--white-color);
    text-transform: capitalize;
    border: none;
    outline: none;
    top: 0;
    font-size: 1.8rem;
}

/*Recent css*/

.sidebar .sidebar-widget.recent-post .recent-post-content .recent-post-single {
    display: grid;
    align-items: center;
    grid-template-columns: 7rem 1fr;
    grid-gap: 2rem;
	margin-bottom: 2rem;
}

.sidebar .sidebar-widget.recent-post .recent-post-content .recent-post-single .recent-post-img img {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.sidebar .sidebar-widget.recent-post .recent-post-content .recent-post-single:last-child {
	margin-bottom: 0;
}

.sidebar .sidebar-widget.recent-post .recent-post-content .recent-post-single .recent-post-info span {
    text-transform: uppercase;
    font-family: var(--font-family-2);
    display: block;
    font-size: 1.6rem;
    margin-top: -1rem;
    margin-bottom: 5px;
}

.sidebar .sidebar-widget.recent-post .recent-post-content .recent-post-single .recent-post-info h5 {
	text-transform: capitalize;
	font-size: 1.6rem;
	margin-bottom: 0;
}

/*Categories css*/

.sidebar .sidebar-widget.cate ul li {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
	line-height: 1;
}

.sidebar .sidebar-widget.cate ul li:last-child {
	margin-bottom: 0;
}

.sidebar .sidebar-widget.cate ul li a i {
    font-size: 1.4rem;
    color: #333b55;
    margin-right: 2rem;
}

/*Tags css*/

.sidebar-widget.Tags ul li {
    display: inline-block;
    line-height: 1;
	margin-bottom: 3rem;
}

.sidebar-widget.Tags ul li:last-child {
	margin-bottom: 0;
}

.sidebar-widget.Tags ul li a {
	padding: 1.3rem 2.4rem;
	text-transform: capitalize;
	font-size: 1.4rem;
	font-family: var(--font-family-2);
	line-height: 1;
	transition: .5s ease;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.sidebar-widget.Tags ul li a:hover {
	background: var(--theme-color);
	color: var(--white-color);
}

.sidebar-widget.Tags ul li:nth-child(4) a {
	background: var(--theme-color);
	color: var(--white-color);
}

/*-------------------------------------------------------
25. Pagination css
---------------------------------------------------------*/

.pagination-wrapper {
  text-align: center;
  margin: 0 0;
}

.pagination {
  display: inline-block;
  height: 70px;
  margin-top: 70px;
  padding: 0 25px;
  background-color: #eee;
}

@media only screen and (max-width: 1199px) {
  .pagination {
    height: 50px;
    margin-top: 50px;
    padding: 0 10px;
  }
}

.page-numbers {
  display: block;
  padding: 0 25px;
  float: left;
  transition: 400ms ease;
  color: #595959;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 70px;
}

.page-numbers:hover, .page-numbers.current {
  background-color: var(--theme-color);
  color: #fff;
}

.page-numbers.prev:hover, .page-numbers.next:hover {
  background-color: transparent;
  color: var(--theme-color);
}

@media only screen and (max-width: 1199px) {
  .page-numbers {
    padding: 0 15px;
    font-size: 16px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 120px) and (max-width: 1024px) {
  .page-numbers {
    padding: 0 14px;
    display: none;
  }
	
  .page-numbers:nth-of-type(2) {
    position: relative;
    padding-right: 50px;
  }
	
  .page-numbers:nth-of-type(2)::after {
    content: '...';
    position: absolute;
    font-size: 25px;
    top: 0;
    left: 45px;
  }
	
  .page-numbers:nth-child(-n+3), .page-numbers:nth-last-child(-n+3) {
    display: block;
  }
	
  .page-numbers:nth-last-child(-n+4) {
    padding-right: 14px;
  }
	
  .page-numbers:nth-last-child(-n+4)::after {
    content: none;
  }
}

/*-------------------------------------------------------
26. Error css
---------------------------------------------------------*/

.error-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.error-right {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.error-right h2 {
    font-size: 4rem;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 3rem;
}

.error-right .theme-btn {
    align-self: flex-start;
    display: inline-block;
}

/* Popular Use Cases Section */
.popular-use-cases-area {
    background-color: #fff;
}

.popular-use-case-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.popular-use-case-box:hover {
     transform: translateY(-5px);
}

.use-case-icon {
    flex: 0 0 8rem;
    height: 8rem;
    width: 8rem;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.use-case-icon img {
    max-width: 60%;
    max-height: 60%;
}

.popular-use-case-box:hover .use-case-icon {
    background-color: var(--theme-color-sec);
}

.use-case-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.use-case-content p {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--body-color);
}

.popular-use-case-box .use-case-content .sector-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0.5rem 0;
}

.popular-use-case-box .use-case-content .sector-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--body-color);
}

.popular-use-case-box .use-case-content .sector-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--theme-color);
}

.popular-use-case-box .use-case-content .sector-list li:last-child {
    margin-bottom: 0;
}

/* OSINT 圆形图 5 个可点击区域 (blog.html) */
.cycle-image-wrap {
	position: relative;
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.cycle-image-wrap .cycle-diagram-img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.cycle-hotspots {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.cycle-hotspots .cycle-hotspot {
	display: block;
	pointer-events: auto;
	position: absolute;
	width: 22%;
	height: 22%;
	min-width: 36px;
	min-height: 36px;
	border-radius: 50%;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: background 0.2s ease, box-shadow 0.2s ease;
	z-index: 2;
}

.cycle-step-details {
	margin-top: 1.5rem;
}

.cycle-step-body {
	padding: 0.5rem 0 0;
}

.cycle-hotspots .cycle-hotspot:hover,
.cycle-hotspots .cycle-hotspot:focus {
	background: transparent;
	box-shadow: none;
	outline: none;
}

.osint-principles-list {
	margin: 1rem 0 1.5rem;
	padding-left: 7ch;
	list-style: disc;
}

.osint-principles-list li {
	list-style: disc;
	list-style-position: inside;
	padding-left: 0;
	margin-bottom: 0.4rem;
	line-height: 1.6;
}

.osint-principles-list li::marker {
	color: #474849ff;
	font-size: 1.2em;
}

/* OSINT Features Grid 卡片布局 (blog.html) */
.osint-features-grid {
	margin-top: 2rem;
}

.osint-feature-card {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 2rem 1.5rem;
	height: 100%;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.osint-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--theme-color, #FE9347);
}

.osint-feature-icon {
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
}

.osint-feature-icon img {
	max-width: 50px;
	max-height: 50px;
	object-fit: contain;
}

.osint-feature-title {
	color: #2b8af7;
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.osint-feature-desc {
	color: #888888;
	font-size: 1.3rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.case-study-label {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	background: #1e4c7a;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.osint-intro-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: center;
}
.osint-intro-left {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.osint-intro-left p {
	text-align: justify;
}
.osint-intro-img {
	max-width: 85%;
	width: 85%;
	height: auto;
	max-height: 420px;
	object-fit: contain;
}
.osint-intro-right {
	display: flex;
	justify-content: center;
}
.osint-benefits-card {
	border: 1px solid #d5dbe6;
	border-radius: 6px;
	padding: 12px 16px;
	background: #ffffff;
	min-width: 220px;
}
.osint-benefits-title {
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 8px;
}
.osint-benefits-list {
	margin: 0;
	padding: 0;
	color: #1e3a8a;
	list-style: none;
}
.osint-benefits-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}
.osint-benefits-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1e3a8a;
	flex: 0 0 6px;
}
.osint-benefits-list li:last-child { margin-bottom: 0; }

.case-study-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.case-study-block {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
	padding: 16px 18px;
}
.case-snapshot-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}
.case-study-sections {
	display: grid;
	gap: 45px;
}
.case-study-subtitle {
	font-weight: 700;
	font-size: 1.6rem;
	color: #1E4C7A;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e2e8f0;
	display: inline-block;
}
.case-snapshot-grid-5 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.case-snapshot-card {
	border: 1px solid #dfe3eb;
	border-radius: 6px;
	padding: 10px 12px;
	background: #ffffff;
}
.case-snapshot-title {
	font-weight: 700;
	font-size: 1.4rem;
	color: #0f172a;
	margin-bottom: 6px;
}
.case-snapshot-text {
	font-size: 1.6rem;
	color: #4b5563;
	line-height: 1.6;
}
.case-findings-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 820px;
	margin: 0 auto;
}
.case-finding-card {
	border: 1px solid #dfe3eb;
	border-radius: 8px;
	padding: 12px 14px;
	background: #f9fafb;
	color: #1f2937;
	font-size: 1.3rem;
	line-height: 1.5;
}
.case-findings-note {
	margin-top: 12px;
	color: #4b5563;
	font-size: 1.4rem;
	line-height: 1.6;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}
.case-study-merged {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
	padding: 16px 18px;
}
.case-study-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}
.case-study-segment { min-width: 0; }

.case-study-block-title {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.3rem;
	color: #0f172a;
	margin-bottom: 12px;
}

/* .case-study-block-text {
	color:rgb(219, 220, 221);
	font-size: 1.8rem;
	line-height: 1.7;
	margin: 0;
} */

.case-study-meta {
	margin: 0;
	padding: 0;
	list-style: none;
}

.case-study-meta li {
	margin-bottom: 6px;
	font-size: 1.5rem;
	line-height: 1.6;
	color: #4b5563;
}

.case-study-meta li span {
	font-weight: 700;
	color: #111827;
	margin-right: 6px;
}

.case-study-checklist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.case-study-checklist li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 8px;
	font-size: 1.5rem;
	line-height: 1.6;
	color: #4b5563;
}

.case-study-checklist li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #6b7280;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid rgba(107, 114, 128, 0.45);
	font-size: 9px;
}

.case-advantages-cards { margin-top: 50px; }
.case-advantages-cards > .case-study-subtitle {
	border-bottom: none;
	padding-bottom: 0;
}
.case-advantages-image {
	display: block;
	margin-top: 18px;
}
.case-advantages-title {
	font-weight: 700;
	text-transform: uppercase;
	color: #0f172a;
	margin-bottom: 12px;
}
.case-adv-compare {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	align-items: start;
}
.case-adv-panel {
	position: relative;
	border: 2px solid transparent;
	border-radius: 24px;
	padding: 28px 20px 20px;
	background: #ffffff;
}
.case-adv-pill {
	position: absolute;
	top: -16px;
	left: 18px;
	padding: 7px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.case-adv-pill img {
	width: 18px;
	height: 18px;
	display: block;
}
.case-adv-stack {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}
.case-adv-stack li {
	border-radius: 999px;
	padding: 10px 16px;
	font-size: 1.35rem;
	line-height: 1.5;
	border: 1px solid transparent;
	background: #ffffff;
}
.case-adv-panel--muted {
	border-color: rgba(148, 163, 184, 0.6);
	color: #6b7280;
}
.case-adv-panel--muted .case-adv-pill {
	background: #9ca3af;
}
.case-adv-panel--muted .case-adv-stack li {
	border-color: rgba(148, 163, 184, 0.5);
	color: #6b7280;
}
.case-adv-panel--primary {
	border-color: rgba(37, 99, 235, 0.6);
	color: #1e40af;
}
.case-adv-panel--primary .case-adv-pill {
	background: #B7D3EC;
}
.case-adv-panel--primary .case-adv-stack li {
	border-color: rgba(37, 99, 235, 0.45);
	color: #1e40af;
}
.case-toggle {
	margin-top: 16px;
}
.case-toggle-summary {
	list-style: none;
	cursor: pointer;
}
.case-toggle-summary::-webkit-details-marker {
	display: none;
}
.case-toggle-hint {
	margin-top: 8px;
	font-size: 1.2rem;
	color: #94a3b8;
	text-align: center;
}
.case-toggle-content {
	margin-top: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #4b5563;
	font-size: 1.4rem;
	line-height: 1.7;
}
@media (max-width: 991px) {
	.case-adv-compare {
		grid-template-columns: 1fr;
	}
	.case-findings-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 992px) {
	.osint-intro-split {
		grid-template-columns: 1.6fr 0.9fr;
	}
	.case-study-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.case-snapshot-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.case-snapshot-grid-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
	.case-study-row {
		grid-template-columns: repeat(3, 1fr);
	}
	.case-adv-compare { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 5 个扇形大致中心位置（适配圆形图 2.png） */
.cycle-hotspot[data-step="1"] { left:68%; top: 30%; }
.cycle-hotspot[data-step="2"] { left: 68%; top: 60%; }
.cycle-hotspot[data-step="3"] { left: 46%; top: 75%; }
.cycle-hotspot[data-step="4"] { left: 30%; top: 52%; }
.cycle-hotspot[data-step="5"] { left: 38%; top: 24%; }

/* OSINT Intelligence Cycle 交互式流程图 (blog.html) */
.intelligence-cycle-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.25rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.cycle-step {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    max-width: 140px;
    padding: 1rem 0.75rem;
    background: #fff;
    border: 2px solid var(--theme-color, #FE9347);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.cycle-step:hover,
.cycle-step:focus {
    background: var(--theme-color, #FE9347);
    color: #fff;
    border-color: var(--theme-color, #FE9347);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 147, 71, 0.35);
    outline: none;
}

.cycle-step-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.cycle-step-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.cycle-arrow {
    color: #adb5bd;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.cycle-arrow-loop {
    color: var(--theme-color, #FE9347);
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .intelligence-cycle-flow {
        flex-direction: column;
        gap: 0.75rem;
    }
    .cycle-arrow:not(.cycle-arrow-loop) {
        transform: rotate(90deg);
    }
    .cycle-arrow-loop {
        transform: rotate(90deg);
    }
}

/* Advanced Features Area */
.adv-feature-item {
    background: #ffffff;
    border: 1px solid #f0ecff;
    border-top: 4px solid var(--theme-color);
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    box-shadow: 0px 18px 40px 0px rgba(18, 38, 63, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.adv-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 22px 50px 0px rgba(18, 38, 63, 0.12);
}

.adv-feature-item h4,
.adv-feature-item h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    min-height: 5.2rem;
    font-size: 1.8rem;
    line-height: 1.35;
    text-align: center;
}

.adv-feature-item h4 i,
.adv-feature-item h5 i {
    color: var(--theme-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    align-self: center;
    margin: 0;
}

.adv-feature-item p {
    margin-bottom: 0;
    font-size: 1.45rem;
    line-height: 1.6;
    color: #666;
    min-height: 7rem;
    text-align: center;
}




/ * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
 G L O B A L   H E L P E R S 
 
 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / 
 
 . s i t e - h e a d i n g   { 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 w i d t h :   6 0 % ; 
 
 	 m a r g i n :   0   a u t o   3 0 p x ; 
 
 } 
 
 
 
 . s i t e - h e a d i n g   h 4   { 
 
 	 f o n t - s i z e :   2 0 p x ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 c o l o r :   # F E 9 3 4 7 ; 
 
 	 l e t t e r - s p a c i n g :   1 p x ; 
 
 	 t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
 	 m a r g i n - b o t t o m :   1 0 p x ; 
 
 } 
 
 
 
 . s i t e - h e a d i n g   h 2   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 f o n t - s i z e :   3 7 p x ; 
 
 	 m a r g i n - b o t t o m :   2 0 p x ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 } 
 
 
 
 . s i t e - h e a d i n g   h 2   s p a n   { 
 
 	 d i s p l a y :   b l o c k 
 
 } 
 
 
 
 . f i n v e s - b t n   { 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 f o n t - w e i g h t :   6 0 0 ; 
 
 	 f o n t - s i z e :   1 7 p x ; 
 
 	 p a d d i n g :   1 0 p x   2 0 p x ; 
 
 	 b a c k g r o u n d :   # 6 8 6 1 B C   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o l o r :   # f f f ; 
 
 	 b o r d e r - r a d i u s :   5 p x ; 
 
 } 
 
 
 
 . s e c t i o n _ 7 0   { 
 
 	 p a d d i n g :   7 0 p x   0 ; 
 
 } 
 
 
 
 . f i n v e s - b r e a d c r o m b - a r e a   { 
 
 	 b a c k g r o u n d :   u r l ( . . / i m g / s e r v i c e _ b g . j p g )   n o - r e p e a t   f i x e d   0   0 / c o v e r ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 	 z - i n d e x :   1 ; 
 
 	 p a d d i n g :   1 0 0 p x   0 ; 
 
 } 
 
 
 
 . f i n v e s - b r e a d c r o m b - a r e a : a f t e r   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   0 ; 
 
 	 l e f t :   0 ; 
 
 	 w i d t h :   1 0 0 % ; 
 
 	 h e i g h t :   1 0 0 % ; 
 
 	 b a c k g r o u n d :   r g b a ( 8 ,   2 1 ,   4 0 ,   0 . 8 9 )   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 z - i n d e x :   - 1 ; 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   { 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   h 3   { 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 c o l o r :   r g b ( 2 5 5 ,   2 5 5 ,   2 5 5 ) ; 
 
 	 l e t t e r - s p a c i n g :   0 p x ; 
 
 	 m a r g i n - b o t t o m :   1 0 p x ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 f o n t - s i z e :   4 5 p x ; 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   l i   { 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 m a r g i n :   0   2 p x ; 
 
 	 c o l o r :   # f f f   ! i m p o r t a n t ; 
 
 	 f o n t - s i z e :   1 6 p x 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   l i   a   { 
 
 	 c o l o r :   # f f f 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   l i   i   { 
 
 	 c o l o r :   # F E 9 3 4 7 
 
 } 
 
 
 
 
 
 / * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
 2 1   -   P R O J E C T   S T Y L E   O N E   C S S 
 
 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / 
 
 
 
 . f i n v e s - p r o j e c t - a r e a   { 
 
 	 p a d d i n g - b o t t o m :   4 0 p x 
 
 } 
 
 
 
 . f i n v e s - p r o j e c t - a r e a   . s i t e - h e a d i n g   { 
 
 	 w i d t h :   5 0 % 
 
 } 
 
 
 
 . p r o j e c t - i m a g e   i m g   { 
 
 	 w i d t h :   1 0 0 % 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   { 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 m a r g i n - b o t t o m :   2 0 p x 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i   { 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 c o l o r :   # 1 1 1 ; 
 
 	 f o n t - w e i g h t :   5 0 0 ; 
 
 	 p a d d i n g :   5 p x   1 5 p x ; 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 c u r s o r :   p o i n t e r ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 	 - w e b k i t - t r a n s i t i o n :   a l l   0 . 4 s   e a s e   0 s ; 
 
 	 t r a n s i t i o n :   a l l   0 . 4 s   e a s e   0 s ; 
 
 	 b o r d e r :   2 p x   s o l i d   # 6 8 6 1 B C ; 
 
 	 m a r g i n :   0   5 p x ; 
 
 	 b o r d e r - r a d i u s :   5 p x 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i : a f t e r   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 w i d t h :   4 p x ; 
 
 	 h e i g h t :   1 5 p x ; 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   1 2 p x ; 
 
 	 l e f t :   - 2 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i : b e f o r e   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 w i d t h :   4 p x ; 
 
 	 h e i g h t :   1 5 p x ; 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   1 2 p x ; 
 
 	 r i g h t :   - 2 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i . a c t i v e   { 
 
 	 p o s i t i o n :   r e l a t i v e 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i . a c t i v e : a f t e r   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 w i d t h :   4 p x ; 
 
 	 h e i g h t :   1 5 p x ; 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   1 2 p x ; 
 
 	 l e f t :   - 2 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i . a c t i v e : b e f o r e   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 w i d t h :   4 p x ; 
 
 	 h e i g h t :   1 5 p x ; 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   1 2 p x ; 
 
 	 r i g h t :   - 2 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i : h o v e r , 
 
 . p o r t f o l i o - f i l t e r   l i . f i l t e r . a c t i v e   { 
 
 	 c o l o r :   # f f f ; 
 
 	 b a c k g r o u n d :   # 6 8 6 1 B C   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . p o r t f o l i o - w a r p   { 
 
 	 m a r g i n - t o p :   3 0 p x ; 
 
 } 
 
 
 
 . w o r k - i t e m   { 
 
 	 d i s p l a y :   b l o c k ; 
 
 	 m a r g i n - b o t t o m :   3 0 p x ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . p r o j e c t - i m g   i m g   { 
 
 	 m i n - w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . w o r k - i t e m   . p r o j e c t - i m g   { 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . w o r k - i t e m   . p r o j e c t - i m g : b e f o r e   { 
 
 	 b a c k g r o u n d :   r g b a ( 8 ,   2 1 ,   4 0 ,   0 . 8 9 )   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 h e i g h t :   1 0 0 % ; 
 
 	 l e f t :   0 ; 
 
 	 o p a c i t y :   0 ; 
 
 	 - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . A l p h a ( O p a c i t y = 0 ) " ; 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 t o p :   0 ; 
 
 	 - w e b k i t - t r a n s f o r m :   s c a l e ( 0 . 9 3 ) ; 
 
 	 t r a n s f o r m :   s c a l e ( 0 . 9 3 ) ; 
 
 	 - w e b k i t - t r a n s i t i o n :   a l l   0 . 3 s   e a s e   0 s ; 
 
 	 t r a n s i t i o n :   a l l   0 . 3 s   e a s e   0 s ; 
 
 	 w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . w o r k - i t e m : h o v e r   . p r o j e c t - i m g : b e f o r e   { 
 
 	 o p a c i t y :   1 ; 
 
 	 - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . A l p h a ( O p a c i t y = 1 0 0 ) " ; 
 
 } 
 
 
 
 . w o r k - i t e m   . c o n t e n t   { 
 
 	 l e f t :   0 ; 
 
 	 o p a c i t y :   0 ; 
 
 	 - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . A l p h a ( O p a c i t y = 0 ) " ; 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 t o p :   5 0 % ; 
 
 	 - w e b k i t - t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
 
 	 t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
 
 	 - w e b k i t - t r a n s i t i o n :   a l l   0 . 3 s   e a s e   0 s ; 
 
 	 t r a n s i t i o n :   a l l   0 . 3 s   e a s e   0 s ; 
 
 	 v i s i b i l i t y :   h i d d e n ; 
 
 	 p a d d i n g :   0   2 0 p x 
 
 } 
 
 
 
 . w o r k - i t e m   . c o n t e n t > h 3   { 
 
 	 b o r d e r - b o t t o m :   2 p x   s o l i d   # F E 9 3 4 7 ; 
 
 	 c o l o r :   # f f f ; 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 f o n t - s i z e :   1 8 p x ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 l e t t e r - s p a c i n g :   0 ; 
 
 	 l i n e - h e i g h t :   2 5 p x ; 
 
 	 m a r g i n - b o t t o m :   1 0 p x ; 
 
 	 p a d d i n g - b o t t o m :   1 0 p x ; 
 
 	 t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
 } 
 
 
 
 . w o r k - i t e m   . c o n t e n t   p   { 
 
 	 c o l o r :   # f f f ; 
 
 	 d i s p l a y :   b l o c k ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 } 
 
 
 
 . w o r k - i t e m : h o v e r   . c o n t e n t   { 
 
 	 o p a c i t y :   1 ; 
 
 	 - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . A l p h a ( O p a c i t y = 1 0 0 ) " ; 
 
 	 v i s i b i l i t y :   v i s i b l e ; 
 
 } 
 
 
 
 
 
 / * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
 2 2   -   P R O J E C T   S T Y L E   T W O   C S S 
 
 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / 
 
 
 
 . p r o j e c t - i t e m   { 
 
 	 m a r g i n - b o t t o m :   3 0 p x ; 
 
 	 b o x - s h a d o w :   7 p x   5 p x   3 0 p x   r g b a ( 7 2 ,   7 3 ,   1 2 1 ,   . 1 5 ) ; 
 
 } 
 
 
 
 . p r o j e c t - t e x t   { 
 
 	 p a d d i n g :   2 0 p x ; 
 
 } 
 
 
 
 . p r o j e c t - t e x t   h 3   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - s i z e :   2 1 p x ; 
 
 	 f o n t - w e i g h t :   6 0 0 ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 - w e b k i t - t r a n s i t i o n :   a l l   0 . 4 s   e a s e   0 s ; 
 
 	 t r a n s i t i o n :   a l l   0 . 4 s   e a s e   0 s ; 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 l i n e - h e i g h t :   3 1 p x ; 
 
 } 
 
 
 
 . p r o j e c t - t e x t   h 3 : h o v e r   { 
 
 	 c o l o r :   # F E 9 3 4 7 
 
 } 
 
 
 
 
 
 / * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
 2 3   -   P R O J E C T   D E T A I L S   C S S 
 
 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / 
 
 
 
 . p r o j e c t - d e t a i l s - l e f t   i m g   { 
 
 	 w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   { 
 
 	 m a r g i n - t o p :   3 0 p x ; 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   h 3   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - s i z e :   2 5 p x ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 m a r g i n - b o t t o m :   1 5 p x ; 
 
 	 p a d d i n g - b o t t o m :   1 0 p x ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   h 3 : a f t e r   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 c o n t e n t :   " " ; 
 
 	 l e f t :   0 ; 
 
 	 w i d t h :   1 5 % ; 
 
 	 h e i g h t :   2 p x ; 
 
 	 b a c k g r o u n d :   # F E 9 3 4 7   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 b o t t o m :   - 1 p x ; 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   p   { 
 
 	 m a r g i n :   0   0   1 5 p x 
 
 } 
 
 
 
 . f i n v e s - a b o u t - p r o j e c t   { 
 
 	 b a c k g r o u n d :   # f 9 f 9 f 9   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 } 
 
 
 
 . d e t a i l s - p r o j e c t - t e x t   h 3   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - s i z e :   2 5 p x ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 m a r g i n - b o t t o m :   1 5 p x ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . s i n g l e - s i d e b a r . s o c i a l _ w i d g e t   { 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 p a d d i n g :   0 ; 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   { 
 
 	 d i s p l a y :   i n l i n e - b l o c k 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i   { 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 m a r g i n - r i g h t :   5 p x 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i   a   { 
 
 	 d i s p l a y :   b l o c k ; 
 
 	 w i d t h :   4 0 p x ; 
 
 	 h e i g h t :   4 0 p x ; 
 
 	 l i n e - h e i g h t :   4 5 p x ; 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 b o r d e r - r a d i u s :   5 0 % ; 
 
 	 c o l o r :   # f f f 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . f a c e b o o k   a   { 
 
 	 b a c k g r o u n d :   # 3 b 5 9 9 9   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . t w i t t e r   a   { 
 
 	 b a c k g r o u n d :   # 5 5 a c e e   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . g p   a   { 
 
 	 b a c k g r o u n d :   # d d 4 b 3 9   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . l i n k e d i n   a   { 
 
 	 b a c k g r o u n d :   # 0 0 7 7 b 5   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . p i n t e r e s t   a   { 
 
 	 b a c k g r o u n d :   # b d 0 8 1 c   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   s p a n   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - s i z e :   1 7 p x ; 
 
 	 f o n t - w e i g h t :   6 0 0 ; 
 
 	 p a d d i n g - r i g h t :   1 0 p x ; 
 
 	 m a r g i n - r i g h t :   1 0 p x ; 
 
 	 b o r d e r - r i g h t :   1 p x   s o l i d   # d d d ; 
 
 } 
 
 
 
 . p r o j e c t - i n f o   l i   { 
 
 	 m a r g i n :   1 0 p x   0 ; 
 
 	 c o l o r :   # 1 1 1 
 
 } 
 
 
 
 . p r o j e c t - i n f o   l i   i   { 
 
 	 m a r g i n - r i g h t :   5 p x ; 
 
 	 c o l o r :   # 6 8 6 1 B C ; 
 
 	 w i d t h :   2 0 p x 
 
 } 
 
 
 
 . p r o j e c t - i n f o   l i   s p a n   { 
 
 	 f l o a t :   r i g h t ; 
 
 	 c o l o r :   # 3 d 5 1 6 9 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   p : l a s t - c h i l d   { 
 
 	 m a r g i n - b o t t o m :   0 
 
 } 
 
 
 
 / * = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       P R O J E C T   S T Y L E   O N E / T W O / D E T A I L S   C S S   ( M i g r a t e d ) 
 
 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = * / 
 
 
 
 / *   G L O B A L   H E L P E R S   * / 
 
 . s i t e - h e a d i n g   { 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 w i d t h :   6 0 % ; 
 
 	 m a r g i n :   0   a u t o   3 0 p x ; 
 
 } 
 
 
 
 . s i t e - h e a d i n g   h 4   { 
 
 	 f o n t - s i z e :   2 0 p x ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 c o l o r :   # F E 9 3 4 7 ; 
 
 	 l e t t e r - s p a c i n g :   1 p x ; 
 
 	 t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
 	 m a r g i n - b o t t o m :   1 0 p x ; 
 
 } 
 
 
 
 . s i t e - h e a d i n g   h 2   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 f o n t - s i z e :   3 7 p x ; 
 
 	 m a r g i n - b o t t o m :   2 0 p x ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 } 
 
 
 
 . s i t e - h e a d i n g   h 2   s p a n   { 
 
 	 d i s p l a y :   b l o c k 
 
 } 
 
 
 
 . f i n v e s - b t n   { 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 f o n t - w e i g h t :   6 0 0 ; 
 
 	 f o n t - s i z e :   1 7 p x ; 
 
 	 p a d d i n g :   1 0 p x   2 0 p x ; 
 
 	 b a c k g r o u n d :   # 6 8 6 1 B C   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o l o r :   # f f f ; 
 
 	 b o r d e r - r a d i u s :   5 p x ; 
 
 } 
 
 
 
 . s e c t i o n _ 7 0   { 
 
 	 p a d d i n g :   7 0 p x   0 ; 
 
 } 
 
 
 
 . f i n v e s - b r e a d c r o m b - a r e a   { 
 
 	 b a c k g r o u n d :   u r l ( a s s e t s / i m g / s e r v i c e _ b g . j p g )   n o - r e p e a t   f i x e d   0   0 / c o v e r ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 	 z - i n d e x :   1 ; 
 
 	 p a d d i n g :   1 0 0 p x   0 ; 
 
 } 
 
 
 
 . f i n v e s - b r e a d c r o m b - a r e a : a f t e r   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   0 ; 
 
 	 l e f t :   0 ; 
 
 	 w i d t h :   1 0 0 % ; 
 
 	 h e i g h t :   1 0 0 % ; 
 
 	 b a c k g r o u n d :   r g b a ( 8 ,   2 1 ,   4 0 ,   0 . 8 9 )   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 z - i n d e x :   - 1 ; 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   { 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   h 3   { 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 c o l o r :   r g b ( 2 5 5 ,   2 5 5 ,   2 5 5 ) ; 
 
 	 l e t t e r - s p a c i n g :   0 p x ; 
 
 	 m a r g i n - b o t t o m :   1 0 p x ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 f o n t - s i z e :   4 5 p x ; 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   l i   { 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 m a r g i n :   0   2 p x ; 
 
 	 c o l o r :   # f f f   ! i m p o r t a n t ; 
 
 	 f o n t - s i z e :   1 6 p x 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   l i   a   { 
 
 	 c o l o r :   # f f f 
 
 } 
 
 
 
 . b r e a d c r o m b - b o x   l i   i   { 
 
 	 c o l o r :   # F E 9 3 4 7 
 
 } 
 
 
 
 
 
 / *   2 1   -   P R O J E C T   S T Y L E   O N E   C S S   * / 
 
 
 
 . f i n v e s - p r o j e c t - a r e a   { 
 
 	 p a d d i n g - b o t t o m :   4 0 p x 
 
 } 
 
 
 
 . f i n v e s - p r o j e c t - a r e a   . s i t e - h e a d i n g   { 
 
 	 w i d t h :   5 0 % 
 
 } 
 
 
 
 . p r o j e c t - i m a g e   i m g   { 
 
 	 w i d t h :   1 0 0 % 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   { 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 m a r g i n - b o t t o m :   2 0 p x 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i   { 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 c o l o r :   # 1 1 1 ; 
 
 	 f o n t - w e i g h t :   5 0 0 ; 
 
 	 p a d d i n g :   5 p x   1 5 p x ; 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 c u r s o r :   p o i n t e r ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 	 - w e b k i t - t r a n s i t i o n :   a l l   0 . 4 s   e a s e   0 s ; 
 
 	 t r a n s i t i o n :   a l l   0 . 4 s   e a s e   0 s ; 
 
 	 b o r d e r :   2 p x   s o l i d   # 6 8 6 1 B C ; 
 
 	 m a r g i n :   0   5 p x ; 
 
 	 b o r d e r - r a d i u s :   5 p x 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i : a f t e r   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 w i d t h :   4 p x ; 
 
 	 h e i g h t :   1 5 p x ; 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   1 2 p x ; 
 
 	 l e f t :   - 2 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i : b e f o r e   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 w i d t h :   4 p x ; 
 
 	 h e i g h t :   1 5 p x ; 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   1 2 p x ; 
 
 	 r i g h t :   - 2 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i . a c t i v e   { 
 
 	 p o s i t i o n :   r e l a t i v e 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i . a c t i v e : a f t e r   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 w i d t h :   4 p x ; 
 
 	 h e i g h t :   1 5 p x ; 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   1 2 p x ; 
 
 	 l e f t :   - 2 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i . a c t i v e : b e f o r e   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 w i d t h :   4 p x ; 
 
 	 h e i g h t :   1 5 p x ; 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 t o p :   1 2 p x ; 
 
 	 r i g h t :   - 2 p x ; 
 
 } 
 
 
 
 . p o r t f o l i o - f i l t e r   l i : h o v e r , 
 
 . p o r t f o l i o - f i l t e r   l i . f i l t e r . a c t i v e   { 
 
 	 c o l o r :   # f f f ; 
 
 	 b a c k g r o u n d :   # 6 8 6 1 B C   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . p o r t f o l i o - w a r p   { 
 
 	 m a r g i n - t o p :   3 0 p x ; 
 
 } 
 
 
 
 . w o r k - i t e m   { 
 
 	 d i s p l a y :   b l o c k ; 
 
 	 m a r g i n - b o t t o m :   3 0 p x ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . p r o j e c t - i m g   i m g   { 
 
 	 m i n - w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . w o r k - i t e m   . p r o j e c t - i m g   { 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . w o r k - i t e m   . p r o j e c t - i m g : b e f o r e   { 
 
 	 b a c k g r o u n d :   r g b a ( 8 ,   2 1 ,   4 0 ,   0 . 8 9 )   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 c o n t e n t :   " " ; 
 
 	 h e i g h t :   1 0 0 % ; 
 
 	 l e f t :   0 ; 
 
 	 o p a c i t y :   0 ; 
 
 	 - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . A l p h a ( O p a c i t y = 0 ) " ; 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 t o p :   0 ; 
 
 	 - w e b k i t - t r a n s f o r m :   s c a l e ( 0 . 9 3 ) ; 
 
 	 t r a n s f o r m :   s c a l e ( 0 . 9 3 ) ; 
 
 	 - w e b k i t - t r a n s i t i o n :   a l l   0 . 3 s   e a s e   0 s ; 
 
 	 t r a n s i t i o n :   a l l   0 . 3 s   e a s e   0 s ; 
 
 	 w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . w o r k - i t e m : h o v e r   . p r o j e c t - i m g : b e f o r e   { 
 
 	 o p a c i t y :   1 ; 
 
 	 - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . A l p h a ( O p a c i t y = 1 0 0 ) " ; 
 
 } 
 
 
 
 . w o r k - i t e m   . c o n t e n t   { 
 
 	 l e f t :   0 ; 
 
 	 o p a c i t y :   0 ; 
 
 	 - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . A l p h a ( O p a c i t y = 0 ) " ; 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 r i g h t :   0 ; 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 t o p :   5 0 % ; 
 
 	 - w e b k i t - t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
 
 	 t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
 
 	 - w e b k i t - t r a n s i t i o n :   a l l   0 . 3 s   e a s e   0 s ; 
 
 	 t r a n s i t i o n :   a l l   0 . 3 s   e a s e   0 s ; 
 
 	 v i s i b i l i t y :   h i d d e n ; 
 
 	 p a d d i n g :   0   2 0 p x 
 
 } 
 
 
 
 . w o r k - i t e m   . c o n t e n t > h 3   { 
 
 	 b o r d e r - b o t t o m :   2 p x   s o l i d   # F E 9 3 4 7 ; 
 
 	 c o l o r :   # f f f ; 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 f o n t - s i z e :   1 8 p x ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 l e t t e r - s p a c i n g :   0 ; 
 
 	 l i n e - h e i g h t :   2 5 p x ; 
 
 	 m a r g i n - b o t t o m :   1 0 p x ; 
 
 	 p a d d i n g - b o t t o m :   1 0 p x ; 
 
 	 t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
 } 
 
 
 
 . w o r k - i t e m   . c o n t e n t   p   { 
 
 	 c o l o r :   # f f f ; 
 
 	 d i s p l a y :   b l o c k ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 } 
 
 
 
 . w o r k - i t e m : h o v e r   . c o n t e n t   { 
 
 	 o p a c i t y :   1 ; 
 
 	 - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . A l p h a ( O p a c i t y = 1 0 0 ) " ; 
 
 	 v i s i b i l i t y :   v i s i b l e ; 
 
 } 
 
 
 
 
 
 / *   2 2   -   P R O J E C T   S T Y L E   T W O   C S S   * / 
 
 
 
 . p r o j e c t - i t e m   { 
 
 	 m a r g i n - b o t t o m :   3 0 p x ; 
 
 	 b o x - s h a d o w :   7 p x   5 p x   3 0 p x   r g b a ( 7 2 ,   7 3 ,   1 2 1 ,   . 1 5 ) ; 
 
 } 
 
 
 
 . p r o j e c t - t e x t   { 
 
 	 p a d d i n g :   2 0 p x ; 
 
 } 
 
 
 
 . p r o j e c t - t e x t   h 3   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - s i z e :   2 1 p x ; 
 
 	 f o n t - w e i g h t :   6 0 0 ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 - w e b k i t - t r a n s i t i o n :   a l l   0 . 4 s   e a s e   0 s ; 
 
 	 t r a n s i t i o n :   a l l   0 . 4 s   e a s e   0 s ; 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 l i n e - h e i g h t :   3 1 p x ; 
 
 } 
 
 
 
 . p r o j e c t - t e x t   h 3 : h o v e r   { 
 
 	 c o l o r :   # F E 9 3 4 7 
 
 } 
 
 
 
 
 
 / *   2 3   -   P R O J E C T   D E T A I L S   C S S   * / 
 
 
 
 . p r o j e c t - d e t a i l s - l e f t   i m g   { 
 
 	 w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   { 
 
 	 m a r g i n - t o p :   3 0 p x ; 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   h 3   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - s i z e :   2 5 p x ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 m a r g i n - b o t t o m :   1 5 p x ; 
 
 	 p a d d i n g - b o t t o m :   1 0 p x ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   h 3 : a f t e r   { 
 
 	 p o s i t i o n :   a b s o l u t e ; 
 
 	 c o n t e n t :   " " ; 
 
 	 l e f t :   0 ; 
 
 	 w i d t h :   1 5 % ; 
 
 	 h e i g h t :   2 p x ; 
 
 	 b a c k g r o u n d :   # F E 9 3 4 7   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 b o t t o m :   - 1 p x ; 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   p   { 
 
 	 m a r g i n :   0   0   1 5 p x 
 
 } 
 
 
 
 . f i n v e s - a b o u t - p r o j e c t   { 
 
 	 b a c k g r o u n d :   # f 9 f 9 f 9   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 } 
 
 
 
 . d e t a i l s - p r o j e c t - t e x t   h 3   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - s i z e :   2 5 p x ; 
 
 	 f o n t - w e i g h t :   7 0 0 ; 
 
 	 t e x t - t r a n s f o r m :   c a p i t a l i z e ; 
 
 	 m a r g i n - b o t t o m :   1 5 p x ; 
 
 	 p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . s i n g l e - s i d e b a r . s o c i a l _ w i d g e t   { 
 
 	 b a c k g r o u n d :   # f f f   n o n e   r e p e a t   s c r o l l   0   0 ; 
 
 	 p a d d i n g :   0 ; 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   { 
 
 	 d i s p l a y :   i n l i n e - b l o c k 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i   { 
 
 	 d i s p l a y :   i n l i n e - b l o c k ; 
 
 	 m a r g i n - r i g h t :   5 p x 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i   a   { 
 
 	 d i s p l a y :   b l o c k ; 
 
 	 w i d t h :   4 0 p x ; 
 
 	 h e i g h t :   4 0 p x ; 
 
 	 l i n e - h e i g h t :   4 5 p x ; 
 
 	 t e x t - a l i g n :   c e n t e r ; 
 
 	 b o r d e r - r a d i u s :   5 0 % ; 
 
 	 c o l o r :   # f f f 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . f a c e b o o k   a   { 
 
 	 b a c k g r o u n d :   # 3 b 5 9 9 9   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . t w i t t e r   a   { 
 
 	 b a c k g r o u n d :   # 5 5 a c e e   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . g p   a   { 
 
 	 b a c k g r o u n d :   # d d 4 b 3 9   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . l i n k e d i n   a   { 
 
 	 b a c k g r o u n d :   # 0 0 7 7 b 5   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   u l   l i . p i n t e r e s t   a   { 
 
 	 b a c k g r o u n d :   # b d 0 8 1 c   n o n e   r e p e a t   s c r o l l   0   0 
 
 } 
 
 
 
 . s o c i a l _ w i d g e t   s p a n   { 
 
 	 c o l o r :   # 0 8 1 5 2 8 ; 
 
 	 f o n t - s i z e :   1 7 p x ; 
 
 	 f o n t - w e i g h t :   6 0 0 ; 
 
 	 p a d d i n g - r i g h t :   1 0 p x ; 
 
 	 m a r g i n - r i g h t :   1 0 p x ; 
 
 	 b o r d e r - r i g h t :   1 p x   s o l i d   # d d d ; 
 
 } 
 
 
 
 . p r o j e c t - i n f o   l i   { 
 
 	 m a r g i n :   1 0 p x   0 ; 
 
 	 c o l o r :   # 1 1 1 
 
 } 
 
 
 
 . p r o j e c t - i n f o   l i   i   { 
 
 	 m a r g i n - r i g h t :   5 p x ; 
 
 	 c o l o r :   # 6 8 6 1 B C ; 
 
 	 w i d t h :   2 0 p x 
 
 } 
 
 
 
 . p r o j e c t - i n f o   l i   s p a n   { 
 
 	 f l o a t :   r i g h t ; 
 
 	 c o l o r :   # 3 d 5 1 6 9 
 
 } 
 
 
 
 . p r o j e c t - d e t a i l s - i n n   p : l a s t - c h i l d   { 
 
 	 m a r g i n - b o t t o m :   0 
 
 } 
 
 
