/*======= Common =======*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
	--color-primary: #c48f56;
	--color-secondary: #222429;
	--color-body: #555555;
	--color-white: #fff;
	--color-black: #000000;
	--color-grey: #fafafa;
	--font-oswald: "Oswald", sans-serif;
	--font-roboto: "Roboto", sans-serif;
}

body {
	color: var(--color-body);
	font-family: var(--font-roboto);
	font-weight: normal;
	font-size: 16px;
	line-height: 1.9;
	overflow-x: hidden !important;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.slick-slide img {
	display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-oswald);
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-secondary);
	margin: 0px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: var(--color-secondary);
}

ul,
ol {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

p {
	margin: 0px;
}

a {
	color: var(--color-primary);
	display: inline-block;
	-webkit-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

a:hover {
	color: var(--color-secondary);
	text-decoration: none;
}

a:focus {
	text-decoration: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

a,
span {
	display: inline-block;
}

.slick-initialized .slick-slide:focus {
	text-decoration: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*======= Input Fields =======*/
::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
}

::placeholder {
	color: inherit;
	opacity: 1;
}

input,
textarea,
select {
	width: 100%;
	height: 60px;
	border-radius: 0;
	border: 1px solid var(--color-secondary);
	padding: 0px 20px;
	font-size: 16px;
	color: var(--color-body);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
	border-radius: 0;
	outline: none;
	color: var(--color-secondary);
}

textarea {
	height: 185px;
	padding-top: 15px;
	display: block;
}

/*======= Common Spacing =======*/
.section-gap {
	padding-top: 120px;
	padding-bottom: 120px;
}

.section-gap-top {
	padding-top: 120px;
}

.section-gap-bottom {
	padding-bottom: 120px;
}

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

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

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

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-50 {
	margin-bottom: 50px;
}

/*======= Color & Bg =======*/
.bg-black-color {
	background-color: var(--color-black);
}

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

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

/*======= Main Button =======*/
.main-btn {
	border: none;
	line-height: 1;
	color: var(--color-black);
	background-color: var(--color-primary);
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
	font-family: var(--font-roboto);
	padding: 20px 30px;
	position: relative;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 30px, calc(100% - 25px) 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 30px, calc(100% - 25px) 100%, 0 100%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.main-btn:hover {
	background-color: var(--color-secondary);
	color: var(--color-white);
}

/*======= Template Header =======*/
.template-header {
	background-color: #181717;
	padding: 35px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.template-header.scroll-on {
	padding: 25px 0;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.template-header .container-fluid {
	max-width: 1800px;
}

.template-header .navbar {
	padding: 0;
}

.template-header .navbar-brand {
	padding: 0;
	display: block;
	font-size: unset;
	line-height: 1;
}

.template-header .navbar-nav .nav-link {
	color: var(--color-white);
	padding: 5px 10px;
	font-size: 16px;
	text-transform: uppercase;
}

.template-header .navbar-nav .nav-item.active a,
.template-header .navbar-nav .nav-link:focus,
.template-header .navbar-nav .nav-link:hover {
	opacity: 1;
	color: var(--color-primary);
}

.template-header .navbar-nav .nav-item {
	margin-left: 20px;
}

.template-header .navbar-toggler {
	border: none;
	padding: 0;
	opacity: 1;
	border: 1px solid var(--color-white);
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 45px;
	height: 40px;
	margin-left: auto;
}

.template-header .navbar-toggler:active,
.template-header .navbar-toggler:focus {
	outline: none;
}

.template-header .navbar-toggler-icon {
	width: 25px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #fff;
	-webkit-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}

.template-header .navbar-toggler-icon:after,
.template-header .navbar-toggler-icon:before {
	width: 25px;
	position: absolute;
	height: 1px;
	background-color: #fff;
	top: 0;
	left: 0;
	content: "";
	z-index: 2;
	-webkit-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}

.template-header .navbar-toggler-icon:after {
	top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	-webkit-transform: translateY(8px) rotate(-45deg);
	-ms-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}

.language-dropdown {
	margin-left: 50px;
	padding-left: 60px;
	position: relative;
}

.language-dropdown::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	height: 16px;
	width: 2px;
	background-color: #4e4c4c;
}

.selected-flag img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}

.selected-flag i {
	font-size: 20px;
	color: var(--color-white);
	margin-left: 20px;
}

.selected-flag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.language-list {
	position: absolute;
	right: 0;
	width: 170px;
	top: 200%;
	background-color: #000;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}

.language-list.show-list {
	visibility: visible;
	opacity: 1;
	top: 175%;
}

.language-list li a {
	padding: 10px 20px;
	font-size: 15px;
	color: var(--color-white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.language-list li a img {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 10px;
}

.language-list li:not(:last-child) {
	border-bottom: 1px solid #ffffff1f;
}

/*======= Section Title =======*/
.section-heading .tagline {
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-oswald);
	color: var(--color-black);
	margin-bottom: 5px;
	line-height: 1;
	text-transform: uppercase;
}

.section-heading .title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
}

.section-heading.heading-white .tagline,
.section-heading.heading-white .title {
	color: var(--color-white);
}

/*======= Hero Section =======*/
.hero-section {
	background-color: #111111;
	height: 1035px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: relative;
	z-index: 1;
}

.hero-text {
	padding-bottom: 330px;
}

.hero-text .hero-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--color-white);
	text-transform: uppercase;
	line-height: 1.4;
	margin-bottom: 30px;
}

.hero-text .hero-title span {
	position: relative;
	z-index: 1;
}

.hero-text .hero-title span::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 12px;
	height: 12px;
	width: 100%;
	background-color: var(--color-primary);
	z-index: -1;
}

.hero-text p {
	font-size: 23px;
	color: var(--color-white);
	line-height: 1.4;
}

.hero-text p b {
	font-weight: normal;
}

.hero-text .main-btn {
	margin-top: 60px;
}

.hero-text .main-btn:hover {
	background-color: var(--color-white);
	color: var(--color-secondary);
}

.hero-image-wrapper {
	text-align: right;
	margin-right: -95px;
	margin-left: auto;
	position: relative;
	z-index: 1;
}

.hero-section .social-links {
	position: absolute;
	right: 65px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-text-orientation: mixed;
	text-orientation: mixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 2;
}

.hero-section .social-links a {
	color: #fff;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: capitalize;
}

.hero-section .social-links a i {
	font-size: 20px;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-bottom: 10px;
}

.hero-section .social-links li:not(:last-child) {
	margin-bottom: 30px;
	padding-bottom: 30px;
	position: relative;
}

.hero-section .social-links li:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	background-color: var(--color-primary);
	border-radius: 50%;
}

.hero-big-text {
	position: absolute;
	z-index: -1;
	left: 120px;
	font-size: 107px;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 700;
	top: 50%;
	color: var(--color-white);
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px var(--color-white);
	opacity: 0.04;
	-webkit-transform: translateX(-50%) rotate(-89.79deg);
	-ms-transform: translateX(-50%) rotate(-89.79deg);
	transform: translateX(-50%) rotate(-89.79deg);
}

/*======= About =======*/
.about-gallery .img-one {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.about-gallery .img-one .img-inner {
	position: relative;
	z-index: 1;
}

.about-gallery .img-one .img-inner::before {
	content: "";
	position: absolute;
	top: 0;
	height: 245px;
	width: 40%;
	z-index: -1;
	background-color: var(--color-primary);
	left: -30px;
}

.about-gallery .img-two {
	text-align: right;
	position: relative;
	z-index: 2;
	margin-top: -130px;
}

.about-gallery .img-two img {
	border: 13px solid #f0f0f0;
}

.about-text {
	padding-left: 70px;
}

.about-text .about-list {
	margin-top: 5px;
}

.about-text .about-list li {
	padding-left: 25px;
	margin-top: 20px;
	position: relative;
}

.about-text .about-list li::after {
	position: absolute;
	content: "";
	top: 12px;
	left: 0;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background-color: var(--color-primary);
}

/*======= Skills =======*/
.single-skill-item .title {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-white);
	text-transform: uppercase;
	line-height: 1.5;
	margin-top: 25px;
	width: 200px;
	text-align: center;
}

.single-skill-item .chart {
	width: 200px;
	height: 200px;
	position: relative;
}

.single-skill-item .chart span {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 84px;
	font-weight: 700;
	color: #282828;
}

.skill-section {
	position: relative;
	z-index: 1;
	background-color: var(--color-black);
	padding: 120px 0;
	background-size: cover;
	background-position: center;
}

.skill-section .skill-img {
	position: absolute;
	z-index: -1;
	right: 60px;
	bottom: 0;
	max-width: 576px;
}

/*======= Services =======*/
.single-service-box {
	position: relative;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.single-service-box .thumbnail {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 40px;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-service-box .thumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.single-service-box .title {
	position: absolute;
	left: 45px;
	right: 45px;
	bottom: 0;
	padding: 25px 0;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	background-color: var(--color-white);
	color: var(--color-black);
	-webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.07);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-service-box .hover-content {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 40px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-white);
	background-color: rgba(17, 17, 17, 0.8);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-service-box .content-inner {
	padding: 0 45px;
	text-align: center;
}

.single-service-box .content-inner h5 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--color-white);
}

.single-service-box .content-inner a {
	color: var(--color-white);
}

.single-service-box:hover .thumbnail {
	bottom: 0;
}

.single-service-box:hover .hover-content {
	visibility: visible;
	opacity: 1;
	bottom: 0;
}

.single-service-box:hover .title {
	opacity: 0;
	bottom: -40px;
}

/*======= Resume =======*/
.resume-header {
	width: 160px;
	height: 160px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	border: 2px solid var(--color-secondary);
	border-radius: 50%;
	line-height: 1;
	margin: 0 auto 45px;
}

.resume-header span {
	display: block;
	font-family: var(--font-oswald);
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-secondary);
	margin-top: 10px;
}

.resume-loop .single-resume-item {
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 0 20px;
}

.resume-loop .single-resume-item:not(:last-child) {
	padding-bottom: 70px;
	margin-bottom: 25px;
}

.resume-loop .single-resume-item:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1px;
	height: 45px;
	background-color: #bdbdbf;
}

.resume-loop .single-resume-item .title {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 5px;
	line-height: 1.4;
}

.resume-loop .single-resume-item .duration {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: 20px;
}

.resume-line {
	height: 370px;
	max-height: 90%;
	width: 1px;
	background-color: #bdbdbf;
	margin: auto auto 80px;
}

.resume-wrapper {
	position: relative;
}

.resume-wrapper::before {
	content: "";
	position: absolute;
	top: 80px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 1px;
	width: 420px;
	background-color: #bdbdbf;
}

/*======= Counter =======*/
.counter-section {
	padding-top: 75px;
	padding-bottom: 30px;
}

.counter-item {
	margin-bottom: 45px;
	text-align: center;
}

.counter-item .counter-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
	color: var(--color-white);
	font-family: var(--font-oswald);
	font-weight: 500;
	font-size: 60px;
}

.counter-item .title {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-white);
	margin-top: 18px;
}

/*======= Projects =======*/
.project-filter {
	margin-bottom: 15px;
	overflow: hidden;
}

.project-filter ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -7.5px;
}

.project-filter ul li {
	font-size: 16px;
	line-height: 1.5;
	text-transform: capitalize;
	color: var(--color-secondary);
	background-color: #f6f6f6;
	border: 1px solid #e1e1e1;
	margin: 7.5px;
	padding: 7px 20px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.project-filter ul li:hover,
.project-filter ul li.active {
	background-color: var(--color-secondary);
	color: var(--color-white);
	border-color: transparent;
}

.project-loop .project-item {
	position: relative;
	margin-top: 30px;
	z-index: 1;
	cursor: pointer;
}

.project-loop .project-item img {
	width: 100%;
}

.project-loop .project-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: #111111;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}

.project-loop .project-item .title {
	position: absolute;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: var(--color-white);
	font-size: 20px;
	font-weight: 400;
	font-family: var(--font-roboto);
	line-height: 1.6;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: transparent;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
}

.project-loop .project-item .title span {
	position: relative;
	padding: 8px 15px;
}

.project-loop .project-item .title span::before,
.project-loop .project-item .title span::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 1px;
	width: 0;
	background-color: var(--color-white);
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.project-loop .project-item .title span::after {
	left: auto;
	right: 0;
	top: auto;
	bottom: 0;
}

.project-loop .project-item:hover::before {
	opacity: 0.8;
	visibility: visible;
}

.project-loop .project-item:hover .title {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.project-loop .project-item:hover .title span::before,
.project-loop .project-item:hover .title span::after {
	width: 100%;
}

/*======= Testimonial =======*/
.testimonial-box .content {
	background-color: #f6f6f6;
	border: 1px solid #e1e1e1;
	padding: 30px;
}

.testimonial-box .author {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 30px;
	padding-left: 30px;
	line-height: 1;
	position: relative;
}

.testimonial-box .author::before {
	content: "";
	position: absolute;
	top: 0;
	left: 47.5px;
	width: 20px;
	height: 20px;
	background-color: #e1e1e1;
	-webkit-clip-path: polygon(0 0, 50% 50%, 100% 0);
	clip-path: polygon(0 0, 50% 50%, 100% 0);
}

.testimonial-box .author .photo {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 55px;
	flex: 0 0 55px;
	width: 55px;
	margin-right: 20px;
}

.testimonial-box .author .photo img {
	width: 55px;
	height: 55px;
	border-radius: 50%;
}

.testimonial-box .author .name {
	font-size: 20px;
	font-weight: 700;
	font-family: var(--font-oswald);
	color: var(--color-secondary);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.testimonial-box .author .title {
	color: #555555;
	font-size: 16px;
	text-transform: capitalize;
}

/*======= Latest Blog Post =======*/
.single-latest-post .thumbnail {
	overflow: hidden;
}

.single-latest-post .thumbnail img {
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-latest-post .post-meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	line-height: 1;
	padding: 18px 15px;
}

.single-latest-post .post-meta a {
	color: var(--color-secondary);
}

.single-latest-post .post-meta a i {
	margin-right: 8px;
}

.single-latest-post .title {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 30px;
	line-height: 1.5;
	padding: 20px 15px;
	border-top: 1px solid #e0e0e1;
	border-bottom: 1px solid #e0e0e1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.single-latest-post:hover .thumbnail img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.single-latest-post:hover .title {
	border-bottom-color: var(--color-secondary);
}

/*======= Template Footer =======*/
.template-footer {
	padding-top: 130px;
	padding-bottom: 50px;
	background-color: var(--color-secondary);
	text-align: center;
	position: relative;
	z-index: 1;
}

.template-footer::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 10px;
	height: 100%;
	background-color: var(--color-primary);
}

.template-footer,
.template-footer a {
	color: var(--color-white);
}

.footer-content .mail-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px;
}

.footer-content .mail {
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}

.footer-content .social-links {
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer-content .social-links li {
	margin: 0 7px;
}

.footer-content .social-links a {
	width: 55px;
	height: 55px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #2b2d32;
	border-radius: 50%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.footer-content .social-links a:hover {
	background-color: var(--color-primary);
	color: var(--color-secondary);
}

.footer-copyright {
	margin-top: 80px;
	font-weight: 500;
	line-height: 1.4;
}

@media (max-width: 1599.98px) {
	.skill-section .skill-img {
		max-width: 500px;
		right: 10px;
	}

	.hero-image-wrapper {
		margin-right: 0;
	}

	.hero-big-text {
		left: 100px;
		font-size: 100px;
	}
}

@media (max-width: 1599.98px) {
	.hero-image-wrapper {
		text-align: left;
	}

	.hero-section .social-links {
		right: 40px;
	}

	.hero-big-text {
		display: none;
	}
}

@media (max-width: 1199.98px) {
	.hero-text .hero-title {
		font-size: 42px;
	}

	.hero-text {
		padding-bottom: 220px;
	}

	.hero-section {
		height: 820px;
	}

	.about-text {
		padding-left: 30px;
	}

	.single-skill-item .chart {
		margin: auto;
	}

	.single-skill-item .title {
		text-align: center;
	}

	.single-service-box .title {
		left: 25px;
		right: 25px;
	}

	.single-service-box .content-inner {
		padding: 0 20px;
	}

	.single-latest-post .title {
		font-size: 18px;
	}
}

@media (max-width: 991.98px) {
	.template-header {
		padding: 25px 0;
	}

	.template-header.scroll-on {
		padding: 20px 0;
	}

	.template-header .navbar-toggler {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.template-header .navbar-nav .nav-item {
		margin-left: 0;
	}

	.template-header .navbar-nav .nav-item .nav-link {
		padding: 4px 10px 4px 0;
	}

	.navbar-nav {
		margin-top: 30px;
	}

	.language-dropdown {
		margin-left: 30px;
		padding-left: 30px;
	}

	.language-list.show-list {
		top: 164%;
	}

	.hero-image-wrapper {
		display: none;
	}

	.hero-section {
		height: 730px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.hero-text {
		padding-top: 100px;
		padding-bottom: 0;
	}

	.about-text {
		padding-left: 0;
		padding-top: 60px;
	}

	.resume-wrapper::before {
		width: 185px;
	}

	.resume-loop .single-resume-item {
		padding: 0;
	}

	.project-filter ul {
		margin: -5px;
	}

	.project-filter ul li {
		font-size: 15px;
		margin: 5px;
		padding: 7px 15px;
	}
}

@media (max-width: 767.98px) {
	.resume-wrapper::before {
		display: none;
	}

	.resume-line {
		width: 80%;
		height: 1px;
		margin: 60px auto;
	}

	.hero-section .social-links li:not(:last-child) {
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.hero-text .hero-title {
		font-size: 38px;
	}

	.hero-section .social-links {
		right: 30px;
	}

	.hero-section {
		height: 700px;
	}

	.hero-section .social-links a {
		font-size: 15px;
	}

	.hero-section .social-links a i {
		font-size: 18px;
	}
}

@media (max-width: 575.98px) {
	.hero-section .social-links {
		display: none;
	}

	.hero-text .hero-title {
		font-size: 32px;
	}

	.hero-section {
		height: 560px;
	}

	.section-heading .title {
		font-size: 32px;
	}

	.about-gallery .img-one .img-inner {
		max-width: 80%;
	}

	.about-gallery .img-one .img-inner::before {
		right: -15px;
	}

	.footer-content .mail-title {
		font-size: 18px;
	}

	.footer-content .mail {
		font-size: 24px;
	}

	.footer-content .social-links {
		margin-top: 30px;
	}
}

@media (max-width: 424.98px) {
	.single-skill-item .chart span {
		font-size: 62px;
	}

	.counter-item .counter-wrap {
		font-size: 42px;
	}

	.single-latest-post .title {
		font-size: 18px;
	}

	.language-dropdown {
		margin-left: 20px;
		padding-left: 20px;
	}

	.selected-flag img {
		width: 25px;
		height: 25px;
	}

	.selected-flag i {
		margin-left: 10px;
		font-size: 15px;
	}
}


/* inner  page css  */


.breadcrumbs-section {
	background: linear-gradient(103.3deg, rgba(150, 87, 246, 0.35) 2.43%, rgba(0, 235, 172, 0.1) 46.64%, rgba(255, 147, 14, 0.1) 100%) !important;
	padding: 220px 0 110px !important;
}

.breadcrumbs-section .page-title {
	text-align: center;
}

.breadcrumbs-section .page-title h1 {
	margin-bottom: 20px;
}

.breadcrumbs-section .page-title ul.breadcrumbs-link li {
	display: inline-block;
}

.breadcrumbs-section .page-title ul.breadcrumbs-link li:last-child:after {
	display: none;
}

.breadcrumbs-section .page-title ul.breadcrumbs-link li:after {
	content: "";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	margin-left: 10px;
	margin-right: 7px;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a {
	color: var(--color-secondary);
}
.sidebar-widget-area .widget.categories-widget ul.widget-link li.active a{
	color: var(--color-primary);
}
