/* Varialbes */
:root {
	--font-default: 'Barlow', sans-serif;
	--font-heading: 'Barlow', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #120f12;
	--dark-secondary: #1a1a1a;
	--dark-optional: #313030;
	--dark-style-two: #1c1c1c;
	--white: #ffffff;
	--color-primary: #FFAE00;
	--color-secondary: #F54200;
	--color-heading: #04000b;
	--color-paragraph: #666666;
	--box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
	--box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #ECF0F3;
	--bg-gray-secondary: #F3F4F6;
	--bg-gradient: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

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

body,
html {
	height: 100%;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

.wrapper {
	height: 100%;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

label {
	display: inline-block;
	font-weight: normal;
	margin-bottom: 5px;
	max-width: 100%;
}

a {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

.bg-dark a {
	color: var(--white);
}

a img {
	border: none;
}

a:active {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
	opacity: 1;
}

a:focus {
	outline: none;
	text-decoration: none;
	color: var(--color-heading);
}

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

.secondary a:hover {
	color: var(--color-optional);
}

button {
	outline: medium none;
}

iframe {
	border: none;
}

hr {
	margin-top: 0;
	margin-bottom: 0;
	border: 0;
	border-top: 1px solid #eeeeee;
}

pre {
	display: block;
	margin: 0 0 30px;
	padding: 9.5px;
	word-wrap: break-word;
	word-break: break-all;
	color: #333333;
	border: 1px solid #ededed;
	border-radius: inherit;
	background-color: #f9f9f9;
	font-size: 13px;
	line-height: 1.42857143;
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	min-height: 50px;
}

input:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

textarea:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

select:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

ul {
	list-style-type: none;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

b {
	font-weight: 600;
}

strong {
	font-weight: 600;
}

.row {
	--bs-gutter-x: 30px;
}

.gutter-xl {
	--bs-gutter-x: 150px;
}

.row.gutter-none {
	--bs-gutter-x: 0;
}


/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
	font-family: var(--font-default);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	overflow-x: hidden;
	background-color: var(--bg-gray-secondary);
	color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-heading);
	font-weight: normal;
	line-height: 1.2;
	font-family: var(--font-heading);
	letter-spacing: 0;
	margin: 0;
	margin-bottom: 15px;
	font-weight: 600;
}

h1 {
	font-size: 40px;
	margin-bottom: 25px;
}

h2 {
	font-size: 36px;
	margin-bottom: 25px;
}

h3 {
	font-size: 27px;
	margin-bottom: 25px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}

a,
.btn,
button {
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	outline: medium none;
	text-decoration: none;
	font-weight: 600;
}

p {
	color: var(--color-paragraph);
	margin: 0 0 25px;
	text-transform: none;
	font-weight: 400;
	font-family: var(--font-default);
}


/* ============================================================== 
    # Helper CSS
=================================================================== */

@media only screen and (max-width: 767px) {
	.row {
		--bs-gutter-x: 1.5rem;
	}
}

.item-center {
	display: flex;
	align-items: center;
}

.bg-cover {
	background-position: center center !important;
	background-size: cover !important;
}

.bg-fixed {
	background-attachment: fixed !important;
	background-position: center center !important;
	background-size: cover !important;
}

.bg-fit {
	background-size: 100% 100% !important;
	background-position: center !important;
}

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

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

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

.bg-light {
	background-color: var(--white) !important;
}

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

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

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

.bg-gradient {
	background-color: var(--color-primary);
	background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
	background-color: var(--color-optional);
	background: var(--bg-gradient-reverse) !important;
}

.text-light {
	color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
	color: var(--white);
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
	position: relative;
}

.default-padding {
	padding-top: 120px;
	padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
	.default-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

@media only screen and (min-width: 1200px) {
	.align-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.relative {
	position: relative;
}

.overflow-hidden {
	overflow: hidden;
}

.border-top {
	border-top: 1px solid #e7e7e7;
}

.border-bottom {
	border-bottom: 1px solid #e7e7e7;
}

.border-left {
	border-left: 1px solid #e7e7e7;
}

.border-right {
	border-right: 1px solid #e7e7e7;
}

.heading {
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: -5px;
	font-size: 42px;
	line-height: 1.3;
}

.heading span {
	font-weight: 400;
}

.site-heading {
	margin-bottom: 60px;
}

.title {
	font-weight: 600;
	font-size: 55px !important;
	margin-top: -15px;
}

@media (max-width: 767px) {
	.title {
		font-size: 36px !important;
		margin-top: 0;
	}
}

.site-heading .title {
	margin-bottom: 0;
}

.bg-dark .site-heading .title {
	color: var(--white);
}

.sub-title {
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 700;
	background: var(--bg-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
	border: 1px solid #cccccc;
	padding: 8px 30px;
	border-radius: 30px;
	font-size: 18px;
}

@media (max-width: 767px) {
	.sub-title {
		margin-bottom: 15px;
	}
}

.site-heading p {
	margin-bottom: 0;
	margin-top: 25px;
	padding: 0 10%;
}

@media (max-width: 767px) {
	.site-heading p {
		padding: 0;
	}
}

@media only screen and (max-width: 767px) {
	.site-heading {
		margin-bottom: 40px;
		font-size: 36px;
		line-height: 1.2;
	}
}

/*header*/
nav.validnavs .container {
	position: relative;
}
nav.navbar.validnavs.navbar-box {
	position: absolute;
	left: 0;
	top: 30px;
	width: 100%;
	background: transparent;
	z-index: 100;
	padding: 10px 0;
}
nav.navbar.validnavs.navbar-box .nav-box {
	background: linear-gradient(0deg, var(--white) 0%, #ECF0F3 100%);
	border-radius: 10px;
	padding: 0 50px;
	box-shadow: 0px 0 67px 0 rgb(109 117 143 / 13%);
}
nav.navbar.validnavs.sticky-header {
	background: rgba(255, 255, 255, 0.85) !important;
	box-shadow: 0px 1px 3px 0px rgba(18, 20, 32, 0.14);
	padding: 0;
	position: fixed !important;
	padding: 0;
	animation: sticky 0.4s;
}
nav.navbar.validnavs.navbar-box.sticky-header .nav-box {
	background: transparent;
	box-shadow: none;
	padding: 0;
}
nav.navbar.validnavs.navbar-box.sticky-header {
	top: 0;
}
nav.navbar.validnavs.sticky-header::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(10px);
	z-index: -1;
}
@media (min-width: 1400px) {
	nav.navbar.validnavs.navbar-box .nav-box {
		max-width: 1296px;
	}
}
@keyframes sticky {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0%);
	}
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 7px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: none !important;
	font-size: 16px;
	letter-spacing: 0;
	padding: 13px 30px;
	background: #E7EDF8;
	position: relative;
	z-index: 1;
}

.btn:focus,
.btn.active {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	border: 2px solid transparent;
}

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

.btn.radius {
	border-radius: 6px;
}

button {
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 7px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	font-size: 16px;
	letter-spacing: 0;
	padding: 14px 40px;
	background: #E7EDF8;
	position: relative;
	z-index: 1;
	color: var(--white);
	border: none;
	background: var(--color-primary);
}

button::after {
	position: absolute;
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: -5%;
	content: "";
	height: 150px;
	width: 115%;
	z-index: -1;
	background-color: var(--dark);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-transform: translateY(-45%) skew(25deg) scale(0);
	transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
	margin-right: 4px;
}

.btn i {
	position: relative;
	top: 1px;
	margin-left: 5px;
}

@media only screen and (max-width: 767px) {
	.row {
		--bs-gutter-x: 1.5rem;
	}
}

/* ============================================================== 
     # Banner Style One
=================================================================== */
.banner-style-one-area,
.banner-style-one-area div {
	height: 100vh;
}

.banner-style-one-area div .row div {
	height: auto;
}

.banner-style-one-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	grid-column-gap: 200px;
	padding-top: 80px;
}

.banner-style-one-area {
	overflow: hidden;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom center;
	position: relative;
	z-index: 1;
}

.banner-style-one-area::after {
	position: absolute;
	left: 50%;
	top: 60px;
	bottom: 0;
	content: "";
	border-left: 2px solid #1c2d37;
	margin-left: -1px;
}

.banner-style-one-items .thumb {
	position: relative;
	z-index: 1;
	text-align: center;
	overflow: hidden;
	padding: 0 30px;
	border-radius: 20px;
}

.banner-style-one-items .thumb img:nth-child(2) {
	position: absolute;
	left: 0;
	z-index: -1;
	width: 100%;
	object-fit: cover;
	object-position: bottom;
	bottom: 0;
	height: 100%;
	top: 80px;
	border-radius: 20px;
}

.banner-style-one-items h1 {
	font-size: 70px;
	font-weight: 700;
	margin-bottom: 0;
}

.banner-style-one-items h2 {
	color: transparent;
	-webkit-text-stroke: 1px #625f65;
	font-size: 60px;
	margin-top: -10px;
}

.bg-dark .banner-style-one-items h2 {
	-webkit-text-stroke: 1px #9d9c9c;
}

.banner-style-one-items h2 b {
	font-weight: 700;
}

.btn-style-regular {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 13px 20px;
	color: var(--white);
	padding-right: 100px;
	text-transform: capitalize;
	background: transparent;
}

.btn-style-regular:hover {
	color: var(--color-heading);
}

.btn-style-regular:hover::after {
	transform: none;
}

.btn-style-regular.btn-border {
	padding: 13px 20px;
	padding-right: 92px;
	color: var(--color-heading);
}

.btn-style-regular.btn-border span {
	right: -10px;
}

.btn-style-regular::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: url(../img/shape/5.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
	border-radius: 5px;
	transform: none;
	background-color: transparent;
}

.btn-style-regular.button-dark::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: url(../img/shape/7.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
	border-radius: 5px;
}

.btn-style-regular.btn-border::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: url(../img/shape/6.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center left;
	z-index: -1;
	border-radius: 5px;
}

.btn-style-regular i {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	font-weight: 500;
	font-size: 16px;
}

.btn-style-regular span {
	position: relative;
	right: -20px;
}


/* ============================================================== 
     # About Style One
=================================================================== */
#about {
	padding-top: 80px;
}
.fun-fact-style-one-items {
	padding-bottom: 20px;
}
.fun-fact .counter {
	display: flex;
	align-items: center;
	line-height: 1;
}

.fun-fact-style-one-items .fun-fact .counter {
	font-size: 80px;
	background: var(--bg-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
}

.fun-fact .medium {
	display: block;
	margin-top: 5px;
}

.fun-fact-style-one-items .fun-fact {
	display: inline-block;
	margin-right: 80px;
}

.fun-fact-style-one-items .fun-fact:last-child {
	margin: 0;
}

/* ============================================================== 
     # Portfolio
=================================================================== */

.gallery-items.colums-3 .gallery-item {
	float: left;
	padding: 15px;
	width: 33.3333%;
}

.gallery-items.colums-2 .gallery-item {
	float: left;
	padding: 15px;
	width: 50%;
}

.gallery-items.colums-4 .gallery-item {
	float: left;
	padding: 15px;
	width: 25%;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
	.gallery-items.colums-2 .gallery-item,
	.gallery-items.colums-3 .gallery-item,
	.gallery-items.colums-4 .gallery-item {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
}


/* Max Wide Mobile Layout: 600px. */
@media only screen and (min-width: 768px) and (max-width: 1200px) {

	/* Portfolio */
	.gallery-items.colums-2 .gallery-item,
	.gallery-items.colums-3 .gallery-item,
	.gallery-items.colums-4 .gallery-item {
		width: 50%;
	}
}

.gallery-style-one {
	padding: 15px;
	background: linear-gradient(50deg, var(--white) 20%, #ECF0F3 100%);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 0 9px 0 rgb(109 117 143 / 5%);
	position: relative;
	transition: all 0.35s ease-in-out;
}

.gallery-style-one img {
	border-radius: 5px;
	margin-bottom: 30px;
}

.gallery-style-one .info {
	padding: 0 15px;
	padding-bottom: 15px;
}

.gallery-style-one .info h4 {
	margin: 0;
	margin-top: 15px;
	font-size: 30px;
}

.load-more-info p {
	margin: 0;
	font-weight: 600;
}

/* ============================================================== 
     # Pricing
=================================================================== */

.pricing-style-one {
	border: 1px solid #e6e2e2;
	border-radius: 30px;
	background: linear-gradient(0deg, var(--white) 10%, #ECF0F3 100%);
	padding: 50px;
	height: 100%;
}

.pricing-one-single:last-child {
	position: relative;
	left: -1px;
}

.pricing-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #e6e2e2;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.pricing-top h4 {
	margin-bottom: 10px;
}

.pricing-top p {
	margin: 0;
}

.pricing-style-one .price h2 {
	font-size: 60px;
	line-height: 1;
	margin-bottom: 15px;
}

.pricing-style-one .content ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.pricing-style-one .content ul li {
	float: left;
	width: 50%;
	padding: 0 20px;
	margin-top: 7px;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

.pricing-style-one .content ul li::after {
	position: absolute;
	left: 0;
	top: 9px;
	content: "";
	height: 10px;
	width: 10px;
	z-index: -1;
	background: var(--bg-gradient);
	border-radius: 50%;
}

.shape-right-top img {
	position: absolute;
	right: 5%;
	max-height: 150px;
	top: 250px;
	z-index: 1;
}

.pricing-style-one-area {
	background-repeat: no-repeat;
	background-position: right top;
}


/* ============================================================== 
     # Faq
=================================================================== */
.thumb-style-one {
	position: relative;
	z-index: 1;
	background: linear-gradient(130deg, var(--white) 20%, #ECF0F3 100%);
	border: 4px solid rgba(255, 255, 255, 0.8);
	border-radius: 30px;
	box-shadow: 0 0 9px 0 rgb(109 117 143 / 5%);
	transition: all 0.35s ease-in-out;
	margin-right: 120px;
}

.thumb-style-one img {
	border-radius: 25px;
}

.accordion-item.accordion-style-one {
	border-radius: 0;
	background: rgba(255, 255, 255, 0.7);
	border: none;
	margin-bottom: 15px;
	border-radius: 10px;
}

.accordion-item.accordion-style-one button.accordion-button {
	border-radius: 0;
	border: none;
	box-shadow: none;
	padding: 22px 40px;
	padding-right: 70px;
	font-size: 20px;
	background: transparent;
	transform: none;
	text-transform: none;
}

.accordion-item.accordion-style-one button.accordion-button::after {
	right: 25px;
	left: auto;
	position: absolute;
}

.accordion-item.accordion-style-one .accordion-body {
	border: none;
	padding: 0;
	margin: 40px;
	padding-bottom: 40px;
	margin-top: 0;
	padding-top: 30px;
	margin-bottom: 0;
}

.accordion-item.accordion-style-one:last-child {
	margin: 0;
}

.accordion-item.accordion-style-one button.accordion-button:not(.collapsed) {
	color: var(--white);
	background: var(--dark);
	border-radius: 10px 10px 0 0;
}

.accordion-item.accordion-style-one button.accordion-button::after {
	content: "\f067";
	font-family: "Font Awesome 5 Pro";
	font-weight: 100;
	font-size: 16px;
	position: absolute;
	top: 16px;
	right: 25px;
	background: var(--dark);
	color: var(--white);
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 31px;
	border-radius: 50%;
	transform: none;
}

.accordion-item.accordion-style-one button.accordion-button:not(.collapsed)::after {
	-webkit-transform: inherit;
	transform: inherit;
	content: "\f068";
}

.accordion-item.accordion-style-one button.accordion-button:not(.collapsed)::after {
	background: var(--white);
	color: var(--color-heading);
}

.accordion-item.accordion-style-one .accordion-body p:last-child {
	margin: 0;
}

/* ============================================================== 
     # Contact
=================================================================== */
#contact {
	padding-top: 40px;
}
.contact-style-one-items {
	border: 3px solid rgba(255, 255, 255, 0.6);
	border-radius: 30px;
	background: linear-gradient(90deg, var(--white) 20%, #ECF0F3 100%);
	padding: 120px 80px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	box-shadow: 0 0 9px 0 rgb(109 117 143 / 5%);
}

.contact-style-one-items .contact-illustration img {
	position: absolute;
	right: 80px;
	bottom: 0;
	height: 100%;
	padding-top: 100px;
}

.contact-style-one-items .contact-illustration img:nth-child(2) {
	height: auto;
	padding: 0;
	right: 60px;
	width: 44%;
	bottom: 5%;
}

h1.fixed-text {
	margin: 0;
	color: transparent;
	-webkit-text-stroke: 1px var(--color-secondary);
	font-size: 160px;
	position: absolute;
	top: 25px;
	z-index: -1;
	line-height: 1;
	left: 0;
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-weight: 700;
}

form.contact-form.contact-form input,
form.contact-form.contact-form textarea {
	background: linear-gradient(-90deg, var(--white) 20%, #ECF0F3 100%);
	border: 1px solid #e7e7e7;
	box-shadow: none;
	padding: 15px 20px;
}

form.contact-form.contact-form .form-group {
	margin-bottom: 15px;
}

form.contact-form.contact-form textarea {
	height: 180px;
}

form.contact-form.contact-form {
	margin-top: 120px;
}

.contact-style-one-items::after {
	position: absolute;
	right: 0;
	bottom: -100px;
	content: "";
	height: 500px;
	width: 500px;
	background: var(--bg-gradient);
	z-index: -1;
	border-radius: 50%;
	filter: blur(140px);
	opacity: 0.7;
}
#contact .checkbox {
	display: flex;
	align-items: flex-start;
	column-gap: 10px;
	margin-bottom: 10px;
	padding-left: 0;
}
#contact .checkbox input {
	position: relative;
	height: 20px;
	width: 20px;
	appearance: none;
	border-radius: 50%;
	border: 1px solid var(--color-secondary);
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	cursor: pointer;
	background: var(--color-secondary);
	padding: 0;
	min-height: auto;
	margin-top: 4px;
}
#contact .checkbox input::after {
	content: "";
	height: 20px;
	width: 20px;
}
#contact .checkbox input:checked::after {
	content: "";
	background: url(../img/check.svg) no-repeat center;
	background-size: 10px auto;
}
#contact .checkbox label {
	padding: 0;
}
#contact .checkbox label,
#contact .checkbox input {
	cursor: pointer;
}
#contact .checkbox a {
	color: var(--black);
	margin: 0 auto;
	transition: 0.3s;
}
#contact .checkbox a:hover {
	color: var(--color-secondary);
}

/* ============================================================== 
     # Footer
=================================================================== */
.footer-logot img {
	width: 100%;
	max-width: 300px;
	margin-bottom: 30px;
}

ul.foter-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.foter-menu li {
	display: inline-block;
}

ul.foter-menu li a {
	color: var(--color-heading);
	display: inline-block;
	text-transform: uppercase;
	margin: 0 15px;
	margin-top: 10px;
	font-size: 20px;
}

ul.foter-menu li a:hover {
	color: var(--color-secondary);
}

.footer-items p {
	margin: 0;
	margin-top: 30px;
	display: inline-block;
	border: 1px solid;
	border-radius: 30px;
	padding: 5px 30px;
	color: var(--color-heading);
	font-weight: 500;
	padding-bottom: 6px;
}

footer {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

footer::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: var(--bg-gradient);
	z-index: -1;
	opacity: 0.1;
}
.footer-items {
	padding-bottom: 20px;
}
.disclaimer-text {
	font-size: 14px;
}

@media (min-width: 1024px) {
	footer {
		max-width: 90%;
		margin: auto;
		border-radius: 50px 50px 0 0;
	}
}

/* ============================================================== 
    # Responsive CSS
=================================================================== */
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
	/* Banner */
	.banner-style-one-area,
	.banner-style-one-area div {
		height: auto;
	}

	.banner-style-one-items {
		grid-template-columns: 1.4fr 1fr;
		padding-top: 220px;
		padding-bottom: 150px;
	}

	.banner-style-one-items h1 {
		font-size: 50px;
	}

	.banner-style-one-items h2 {
		font-size: 40px;
		margin-top: 0;
	}

	.banner-style-one-items .thumb {
		max-width: 120%;
		margin-left: -20%;
	}

	/* About */
	.shape-style-one img:nth-child(2) {
		display: none;
	}

	.fun-fact-style-one-items {
		display: grid;
		grid-template-columns: 1fr 2fr;
		gap: 80px;
	}

	.fun-fact-style-one-items .fun-fact {
		margin: 0;
	}

	.fun-fact-style-one-items .fun-fact span.medium {
		color: var(--color-heading);
		margin-top: 10px;
		line-height: 1.5;
		font-weight: 400;
	}

	/* Skills */
	.fun-fact-style-two-items {
		grid-auto-columns: inherit;
		grid-auto-flow: inherit;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
	}

	.funfact-style-two-item {
		margin: 0;
		padding: 120px 37px;
	}

	/* Timeline */
	.timeline-header {
		display: block;
	}

	.timeline-header h4 {
		margin-bottom: 15px;
	}

	.timeline-header span {
		margin-top: 15px;
	}

	/* Partner */
	.partner-style-one-item {
		height: 200px;
		width: 200px;
	}

	/* Testimonila */
	.testimonial-style-one .item .thumb {
		height: 300px;
		width: 300px;
	}

	.testimonial-style-one .item .inner {
		height: 300px;
		width: 300px;
		min-width: 300px;
	}

	.testimonial-style-one .item .content>p {
		font-size: 20px;
	}

	/* Pricing */
	.pricing-style-one .content ul li {
		width: 100%;
	}

	/* Faq */
	.thumb-style-one {
		margin-right: 30px;
	}

	.thumb-style-one .chat-card {
		right: -79px;
	}

	/* Blog */
	.blog-area.home-blog {
		background: var(--white);
	}

	.bg-dark .blog-area.home-blog {
		background: var(--dark-secondary);
	}

	/* Contact */
	h1.fixed-text {
		font-size: 130px;
		top: 50px;
	}

	.contact-style-one-items .contact-illustration img {
		height: auto;
		max-width: 45%;
	}
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
	/* Banner */
	.banner-style-one-area,
	.banner-style-one-area div {
		height: auto;
	}

	.banner-style-one-items {
		grid-template-columns: 1fr;
		grid-column-gap: 0;
		grid-row-gap: 50px;
		padding-top: 150px;
		text-align: center;
	}

	.banner-style-one-items h1 {
		margin-bottom: 25px;
	}

	.banner-style-one-items .d-grid .circle-text-card {
		margin: 20px auto auto;
	}

	.banner-style-one-area div .flex-social {
		gap: 30px !important;
		margin-top: 30px;
	}

	.banner-style-one-items .thumb {
		margin-top: 30px;
	}

	.banner-style-one-area::after {
		display: none;
	}

	.banner-style-one-area {
		background-image: none !important;
	}

	.banner-style-one-items .d-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.about-style-one-bottom-info .row>div:nth-child(2) img {
		display: none;
	}

	.shape-style-one {
		display: none;
	}

	/* Skills */
	.fun-fact-style-two-items {
		grid-auto-columns: inherit;
		grid-auto-flow: inherit;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
	}

	.funfact-style-two-item {
		margin: 0;
	}

	/* Timeline */

	.time-style-one-items {
		margin-top: 30px;
		margin-bottom: 50px;
	}

	.timeline-style-one-item:last-child {
		margin-bottom: 0;
	}

	.timeline-area {
		padding-bottom: 70px;
	}

	/* Partner */
	.partner-style-one-items {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
		margin-top: 30px;
	}

	.partner-style-one-items:first-child {
		margin-top: 0;
	}

	.partner-style-one-item {
		height: 300px;
		width: 300px;
	}

	/* Project Details */
	.item-grid-colum {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.project-paginvation-items {
		padding-bottom: 0;
	}

	/* Testimonials */
	.shape-left-top {
		display: none;
	}

	.testimonial-style-one-items .testimonial-pagination {
		position: relative;
		top: auto;
		bottom: 0;
		right: auto;
		left: auto;
		margin-top: 50px;
	}

	.testimonial-style-one .item {
		display: block;
		text-align: center;
		padding: 80px 50px;
	}

	.testimonial-style-one .item .thumb {
		height: 280px;
		width: 280px;
		margin: auto auto 60px;
	}

	.testimonial-style-one .item .inner {
		height: 280px;
		width: 280px;
		min-width: 280px;
	}

	.testimonial-style-one .item::after {
		display: none;
	}

	.testimonial-style-one .item::before {
		display: none;
	}

	.tm-review .bottom {
		border-top: 1px solid #cccccc;
		padding-top: 20px;
		margin-top: 5px;
		justify-content: center;
	}

	.bg-dark .tm-review .bottom {
		border-color: rgba(255, 255, 255, 0.2);
	}

	.testimonial-style-one .item .content>p {
		font-size: 24px;
	}

	.tm-footer>span {
		display: none;
	}

	.tm-footer {
		justify-content: center;
	}

	.testimonial-style-one-area {
		text-align: center;
	}


	/* Service Details */

	.d-grid.colums-2 {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	/* Pricing */
	.shape-right-top {
		display: none;
	}

	.pricing-one-single {
		margin-top: 30px;
		left: 0;
	}

	.pricing-one-single:first-child {
		margin-top: 0;
	}

	/* Faq */
	.thumb-style-one .chat-card {
		right: 50px;
	}

	.thumb-style-one {
		margin: 0;
		margin-bottom: 50px;
	}

	/* Contact */
	h1.fixed-text {
		font-size: 90px;
		margin-bottom: 0;
		position: relative;
		top: 0;
	}

	.contact-style-one-items .contact-illustration img {
		position: relative;
		right: 0;
		left: 0;
		padding: 0;
		height: auto;
		margin-top: 50px;
	}

	.contact-style-one-items {
		padding-bottom: 0;
		padding-top: 80px;
	}

	.contact-style-one-items .contact-illustration img:nth-child(2) {
		position: absolute;
		width: 82%;
		left: 50%;
		transform: translateX(-50%);
	}

	form.contact-form.contact-form {
		margin-top: 40px;
	}

	/* Blog */
	.blog-area.home-blog {
		background: var(--white);
	}

	.bg-dark .blog-area.home-blog {
		background: var(--dark-secondary);
	}
}


/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
	/* Banner */
	.banner-style-one-area,
	.banner-style-one-area div {
		height: auto;
	}

	.banner-style-one-items {
		grid-template-columns: 1fr;
		grid-column-gap: 0;
		grid-row-gap: 50px;
		padding-top: 150px;
		text-align: center;
	}

	.banner-style-one-items h1 {
		font-size: 50px;
		line-height: 1.2;
		margin-bottom: 25px;
	}

	.banner-style-one-items h2 {
		font-size: 40px;
	}

	.banner-style-one-items .d-grid .circle-text-card {
		margin: 20px auto auto;
	}

	.banner-style-one-area div .flex-social {
		gap: 30px !important;
		margin-top: 30px;
	}

	.banner-style-one-items .thumb {
		margin-top: 30px;
	}

	.banner-style-one-area::after {
		display: none;
	}

	.banner-style-one-area {
		background-image: none !important;
	}

	.banner-style-one-items .d-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	/* About */
	.fun-fact-style-one-items .fun-fact {
		margin: 0;
	}

	.fun-fact-style-one-items .fun-fact .counter {
		font-size: 70px;
	}

	.fun-fact-style-one-items {
		display: grid;
		grid-template-columns: 1fr 1.4fr;
		gap: 20px;
	}

	.fun-fact-style-one-items .fun-fact .medium {
		font-size: 16px;
		line-height: 1.6;
		margin-top: 15px;
		color: var(--color-ehading);
	}

	.about-style-one-bottom-info .row>div:nth-child(2) img {
		margin-top: 30px;
	}

	.circle-text-item {
		animation: none;
	}

	/* Service */
	.shape-top-left img {
		z-index: -1;
		display: none;
	}

	/* Gallery */
	.magnific-mix-gallery {
		margin: 0;
	}

	ul.pf-tags li a {
		margin-bottom: 10px;
	}

	.load-more-info a {
		margin-top: 15px;
	}

	/* Skill */
	.fun-fact-style-two-items {
		grid-auto-columns: inherit;
		grid-template-columns: 1fr 1fr;
		grid-auto-flow: inherit;
		grid-row-gap: 30px;
	}

	.funfact-style-two-item {
		margin: 0;
		border-radius: 200px;
		padding: 100px 37px;
	}

	/* Timeline */
	.timeline-header {
		display: block;
	}

	.timeline-header span {
		margin-top: 15px;
	}

	.timeline-header h4 {
		margin-bottom: 15px;
	}

	.time-style-one-items {
		margin-top: 30px;
		margin-bottom: 50px;
	}

	.timeline-style-one-item:last-child {
		margin-bottom: 0;
	}

	.timeline-area {
		padding-bottom: 20px;
	}

	/* Partner */
	.partner-style-one-item {
		margin: auto;
		height: 200px;
		width: 200px;
	}

	.partner-style-one-items {
		display: grid;
		margin-top: 30px;
		grid-template-columns: 1fr 1fr;
		text-align: center;
	}

	.partner-style-one-items:first-child {
		margin-top: 0;
	}

	.partner-style-one-area {
		padding-bottom: 70px !important;
	}

	.shape-left-top {
		display: none;
	}

	/* Project Details */
	.project-thumb .row {
		gap: 30px;
	}

	.item-grid-colum {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.item-grid-container {
		gap: 0;
	}

	.item-grid-container img {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.project-paginvation-items {
		display: block;
		text-align: center;
		border: none;
		padding: 0;
	}

	.project-previous .icon {
		display: none;
	}

	.project-next .icon {
		display: none;
	}

	.project-paginvation-items>div {
		margin: 10px 0;
	}

	.project-paginvation-items>div a {
		display: block;
		text-align: center !important;
		background: var(--bg-gray-secondary);
		padding: 20px;
		border: 1px solid #dddddd;
		border-radius: 10px;
	}

	.bg-dark .project-paginvation-items>div a {
		background: var(--dark-optional);
	}

	.project-paginvation-items>div:first-child {
		margin-top: 0;
	}

	.project-paginvation-items .project-all i {
		border: none;
		font-size: 30px;
	}

	/* Service Details */
	.process-style-one {
		grid-template-columns: 1fr;
		padding-left: 75px;
		position: relative;
	}

	.process-style-one::after {
		height: 100%;
		width: 3px;
		border: none;
		border-left: 2px dashed #cccccc;
		left: 22px;
	}

	.process-style-one-item span {
		position: absolute;
		left: 0;
	}

	.d-grid.colums-2 {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	/* Testimonials */

	.testimonial-style-one-area .heading-left {
		text-align: center;
	}

	.shape-left-top {
		display: none;
	}

	.testimonial-style-one-items .testimonial-pagination {
		position: relative;
		top: auto;
		bottom: 0;
		right: auto;
		left: auto;
		margin-top: 30px;
	}

	.testimonial-style-one .item {
		display: block;
		text-align: center;
		padding: 80px 50px;
	}

	.testimonial-style-one .item .thumb {
		height: 280px;
		width: 280px;
		margin: auto auto 60px;
	}

	.testimonial-style-one .item .inner {
		height: 280px;
		width: 280px;
		min-width: 280px;
	}

	.testimonial-style-one .item::after {
		display: none;
	}

	.testimonial-style-one .item::before {
		display: none;
	}

	.tm-review .bottom {
		border-top: 1px solid #cccccc;
		padding-top: 20px;
		margin-top: 5px;
		justify-content: center;
	}

	.bg-dark .tm-review .bottom {
		border-color: rgba(255, 255, 255, 0.2);
	}

	.testimonial-style-one .item .content>p {
		font-size: 20px;
	}

	.tm-footer>span {
		display: none;
	}

	.tm-footer {
		justify-content: center;
	}

	/* Pricing */
	.shape-right-top {
		display: none;
	}

	.pricing-style-one .content ul li {
		width: 100%;
	}

	.pricing-one-single {
		margin-top: 30px;
	}

	.pricing-one-single:first-child {
		margin-top: 0;
	}

	/* Contact */
	h1.fixed-text {
		font-size: 32px;
		top: 50px;
	}

	.contact-style-one-items .contact-illustration img {
		position: relative;
		right: 0;
		left: 0;
		padding: 0;
		height: auto;
		margin-top: 50px;
	}

	.contact-style-one-items {
		padding: 50px 30px;
		padding-bottom: 0;
		padding-top: 75px;
		border: 1px solid rgba(255, 255, 255, 0.6);
	}

	.contact-style-one-items .contact-illustration img:nth-child(2) {
		display: none;
	}

	form.contact-form.contact-form {
		margin-top: 60px;
	}

	/* Fun Factor */
	.thumb-style-one {
		margin: 0;
		margin-bottom: 50px;
	}

	.thumb-style-one .chat-card {
		right: 0;
		position: absolute;
		top: auto;
		margin-top: 30px;
		bottom: 0;
		padding: 30px;
		display: none;
	}

	/* Promo Box */
	.promo-box-items h2 {
		font-size: 50px;
		margin-bottom: 20px;
	}

	.promo-box-items h4 a::after {
		display: none;
	}

	.promo-box-items h4 a {
		margin: 0;
		border: 1px solid var(--color-secondary);
		border-radius: 30px;
		padding: 5px 20px;
		padding-bottom: 7px;
		display: inline-block;
		margin-top: 15px;
		margin-left: 10px;
		margin-right: 10px;
	}

	/* Blog */
	.blog-area.home-blog {
		background: var(--white);
	}

	.bg-dark .blog-area.home-blog {
		background: var(--dark-secondary);
	}
}

@media only screen and (max-width: 480px) {
	/* Banner */
	.banner-style-one-items h2 {
		font-size: 36px;
	}

	.banner-style-one-area div .flex-social {
		display: block;
	}

	.banner-style-one-area div .flex-social ul.social-info {
		margin-top: 40px;
	}

	/* Pricing */
	.pricing-top {
		display: block;
	}

	.pricing-top .right {
		margin-bottom: 30px;
	}

	/* Partner */
	.partner-style-one-items {
		grid-template-columns: 1fr;
	}

	.partner-style-one-item {
		height: 300px;
		width: 300px;
	}

	/* Fun Factor */
	.funfact-style-two-item .icon {
		height: 80px;
		width: 80px;
	}

	.funfact-style-two-item {
		padding: 50px 30px;
	}

	.fun-fact-style-two-items {
		gap: 20px;
	}

	/* Testimonial */
	.testimonial-style-one .item .thumb {
		height: 220px;
		width: 220px;
	}

	.testimonial-style-one .item .inner {
		height: 220px;
		width: 220px;
		min-width: 220px;
	}

	.tm-review .bottom {
		display: block;
	}

	.tm-review .bottom img {
		height: 35px;
		margin: 0;
		margin-bottom: 15px;
	}

	.testimonial-style-one .item {
		padding: 50px;
		padding-top: 80px;
	}
}