/*!
Theme Name: Girish Khullar
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: girish-khullar
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Girish Khullar is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
- Normalize
- Box sizing
# Base
- Typography
- Elements
- Links
- Forms
## Layouts
# Components
- Navigation
- Posts and pages
- Comments
- Widgets
- Media
- Captions
- Galleries
# plugins
- Jetpack infinite scroll
# Utilities
- Accessibility
- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
========================================================================== */

/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/


/* Resets */

:root {

	/* primary colors */
	--p-dark-grey: #110E0D;
	--p-light-grey: #3E3836;
	--p-orange: #D67C68;
	--p-light-orange: #FCF0ED;


	/* secondary colors */
	--s-black: #000000;
	--s-white: #ffffff;
	--s-grey: #333333;
	--s-light-grey: #666666;

	/* other colors */
	--o-brown: #C1A49C;
	--o-light-brown: #F1EDED;
	--o-light-grey: #4B4B4B;

	/* font weights */
	--regular-weight: 400;
	--medium-weight: 500;
	--semi-bold-weight: 600;
	--bold-weight: 700;
	--black-weight: 900;

}

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

html, body {
	overflow-x: hidden;
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}

p {
	line-height: 25px;
}

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

ul li {
	text-decoration: none;
	list-style: none;
}

button:focus {
	outline: none;
	outline-color: transparent;
	box-shadow: none;
}

a, a:hover, a:focus {
	text-decoration: none;
	outline: none;
	cursor: pointer;
	box-shadow: none;
	transition: all ease-in-out .3s;
	-moz-transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3s;
	-o-transition: all ease-in-out .3s;
}

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

/* fonts classes */

.poppins-black {
	font-family: "Poppins", sans-serif;
	font-weight: var(--black-weight);
	font-style: normal;
}

.poppins-bold {
	font-family: "Poppins", sans-serif;
	font-weight: var(--bold-weight);
	font-style: normal;
}

.poppins-semibold {
	font-family: "Poppins", sans-serif;
	font-weight: var(--semi-bold-weight);
	font-style: normal;
}

.poppins-medium {
	font-family: "Poppins", sans-serif;
	font-weight: var(--medium-weight);
	font-style: normal;
}

.poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: var(--regular-weight);
	font-style: normal;
} 

/* Custom Classes */

.btn-dark > a {
	font-size: 16px;
	font-weight: var(--bold-weight);
	line-height: 18px;
	color: var(--s-white);
	background-color: var(--p-light-grey);
	display: block;
	min-width: max-content;
	border-radius: 10px;
	padding: 16px 36px;
	border: 1px solid var(--p-light-grey);
	text-align: center;
}

.btn-dark > a:hover {
	border-color: var(--p-orange);
	background-color: var(--p-orange);
}

.btn-light {
	font-size: 16px;
	font-weight: var(--bold-weight);
	line-height: 18px;
	color: var(--s-white);
	background-color: var(--p-orange);
	display: block;
	max-width: max-content;
	border-radius: 10px;
	padding: 16px 36px;
	border: 1px solid var(--p-orange);
	text-align: center;
}

.btn-light:hover {
	color: var(--p-orange);
	background-color: transparent;
}

.sec-padd {
	padding: 100px 0;
}

.container {
	width: 100%;
	padding-right: 16px;
	padding-left: 16px;
	margin-right: auto;
	margin-left: auto;
}

.img-fluid {
	max-width: 100%;
	width: 100%;
}

/* randon colors */

.bg-light-red {
	background-color: #F2DDDC;
}
.bg-sage-green {
	background-color: #E1EEED;
}
.bg-light-brown {
	background-color: #E8E4E1;
}
.bg-light-green {
	background-color: #DAF2E7;
}
.bg-light-yellow {
	background-color: #F9F7E2;
}


/*==============================
index page
================================*/

/* header */

header {
	background-color: var(--p-dark-grey);
	border-bottom: 1px solid var(--o-light-grey);
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	gap: 50px;
}

.logo a {
	display: block;
	max-width: 300px;
	width: 100%;
	line-height: 0;
}

nav ul {
	display: flex;
	align-items: center;
	gap: 50px;
}

nav ul li:not(:last-child) a {
	font-size: 16px;
	color: var(--s-white);
	line-height: 30px;
	font-weight: var(--medium-weight);
}

nav ul li:not(:last-child) a:hover {
	color: var(--p-orange);
}

.mobile-menu-btn {
	display: none;
}

/* banner */

.banner-wrap {
	background-color: var(--p-dark-grey);
}

.banner-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
	padding-top: 50px;
}

.banner-img-wrap {
	max-width: 532px;
	width: 100%;
	height: 100%;
	position: relative;
}

.banner-img-wrap img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}

.banner-img-wrap::before {
	content: '';
	background-image: url(./images/banner-abstract-image.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: -10px;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.banner-text-wrap h1 {
	font-size: 32px;
	font-weight: var(--bold-weight);
	line-height: 32px;
	color: var(--p-orange);
	margin-bottom: 20px;
}

.banner-text-wrap h2 {
	font-size: 62px;
	font-weight: var(--black-weight);
	line-height: 62px;
	color: var(--s-white);
	margin-bottom: 20px;
}

.banner-text-wrap h3 {
	font-size: 32px;
	font-weight: var(--regular-weight);
	line-height: 35px;
	color: var(--p-orange);
	margin-bottom: 20px;
}

.banner-text-wrap p {
	font-size: 14px;
	line-height: 28px;
	letter-spacing: -0.2px;
	color: var(--s-white);
	margin-bottom: 32px;
}

/* expertise */

.sec-head {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.sec-head h2 {
	font-size: 42px;
	font-weight: var(--semi-bold-weight);
	color: var(--s-black);
	line-height: 54px;
	text-align: center;
	margin-bottom: 12px;
}

.sec-head p {
	font-size: 20px;
	color: var(--s-grey);
	text-align: center;
	line-height: 30px;
	letter-spacing: -0.2px;
}

.expertise-slider {
	margin-top: 48px;
}

.expertise-slider-inner {
	display: flex;
	align-items: center;
	gap: 60px;
}

.expertise-slider-inner .text-wrap h3 {
	font-size: 30px;
	font-weight: var(--semi-bold-weight);
	color: var(--s-black);
	line-height: 54px;
	margin-bottom: 12px;
}

.expertise-slider-inner .text-wrap p {
	font-size: 14px;
	line-height: 25px;
	letter-spacing: -0.2px;
	color: var(--s-light-grey);
}

.expertise-slider-inner .img-wrap {
	max-width: 397px;
	width: 100%;
}

.slider .owl-dots {
	margin-top: 46px;
	text-align: center;
}

.slider .owl-dots.disabled {
	display: block;
}

.slider .owl-dots .owl-dot {
	display: inline-block;
}

.slider .owl-dots .owl-dot span {
	background-color: var(--p-light-orange);
	width: 14px;
	height: 14px;
	border-radius: 10px;
	display: inline-block;
	margin: 0 7px;
	transition: all ease-in-out .3s;
	-moz-transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3s;
	-o-transition: all ease-in-out .3s;
}

.slider .owl-dots .owl-dot.active span {
	background-color: var(--p-orange);
	width: 42px;
}

/* metrics */

.metrics-wrap {
	background-color: var(--p-light-orange);
	padding: 70px 0;
}

.metrics-inner {
	display: flex;
	justify-content: center;
}

.metrics-inner .metrics-single:not(:last-child) {
	border-right: 1px solid #C1A49C;
}

.metrics-single {
	padding: 10px 7%;
}

.metrics-single h3 {
	font-size: 42px;
	font-weight: var(--semi-bold-weight);
	line-height: 54px;
	text-align: center;
	color: var(--s-black);
	margin-bottom: 10px;
}

.metrics-single p {
	font-size: 16px;
	font-weight: var(--medium-weight);
	text-align: center;
	color: var(--p-orange);
	min-width: max-content;
}

/* CTA */

.cta-wrap {
	padding: 80px 24px;
	background-color: var(--p-dark-grey);
	background-image: url(./images/cta-abstract-bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.cta-inner {
	text-align: center;
}

.cta-inner h2, .cta-inner p {
	color: var(--s-white);
}

.cta-inner .btn-light {
	margin: 20px auto 0;
}

/* engagements/clients */

.clients-wrap {
	padding: 80px 0;
}

.clients-inner {
	max-width: 955px;
	width: 100%;
	margin: 0 auto;
}

.clients-inner .sec-head {
	margin-bottom: 38px;
}

.clients-inner .sec-head h2 {
	margin-bottom: 0;
}

.clients-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	row-gap: 38px;
	column-gap: 75px;
	flex-wrap: wrap;
}

/* services */

.services {
	max-width: 1240px;
	width: 100%;
	margin: 62px auto 0;
}

.services-wrap {
	background-color: var(--o-light-brown);
}

.sec-head span.orange-text {
	color: var(--p-orange);
	text-transform: uppercase;
}

.services .services-row:nth-child(1) {
	display: grid;
	grid-template-columns: 2fr 1.2fr;
	gap: 30px;
	margin-bottom: 30px;
}

.services .services-row:nth-child(2) {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 30px;
}

.service-single {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--s-white);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	min-height: 320px;
}

.service-single h3 {
	font-size: 30px;
	font-weight: var(--semi-bold-weight);
	line-height: 40px;
	color: var(--s-black);
	margin-bottom: 10px;
}

.service-single p {
	font-size: 14px;
	line-height: 25px;
	letter-spacing: -0.2px;
	color: var(--s-light-grey);
}

.service-1 .service-single-text {
	max-width: 366px;
	width: 100%;
}

.service-1 .service-single-img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 46px;
}

.service-single-img img {
	width: 100%;
}

.service-2 .service-single-text {
	max-width: 232px;
	width: 100%;
}

.service-2 .service-single-img {
	display: flex;
	position: absolute;
	bottom: 0;
	right: 28px;
}

.service-3 .service-single-text {
	max-width: 220px;
	width: 100%;
}

.service-3 .service-single-img {
	display: flex;
	position: absolute;
	bottom: 0;
	right: 28px;
}

.service-4 .service-single-text {
	max-width: 340px;
	width: 100%;
}

.service-4 .service-single-img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 46px;
}

.services .book-btn {
	margin-top: 52px;
	text-align: center;
}

.services .book-btn .btn-light {
	margin: 0 auto;
}

/* certificates */

.certificates-list {
	margin-top: 62px;
}

.certificates-list-inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 25px;
}

.certificate-single {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	min-height: 350px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.img-overlay {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 30px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 80%);
	border-radius: 20px;
	transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-webkit-transition: all ease-in-out .2s;
	-o-transition: all ease-in-out .2s;
}

.certificate-single:hover .img-overlay {
	opacity: 1;
}

.certificate-single:hover .img-overlay-text h3 {
	color: var(--p-orange);
}

.img-overlay-text {
	width: 100%;
	border-bottom: 1px solid #848484;
	padding: 0 0 16px;
	margin-bottom: 60px;
}

.img-overlay-text h3 {
	font-size: 18px;
	font-weight: var(--bold-weight);
	line-height: 25px;
	letter-spacing: -0.2px;
	color: var(--s-white);
	text-align: left;
	margin-bottom: 5px;
	transition: all ease-in-out .3s;
	-moz-transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3s;
	-o-transition: all ease-in-out .3s;
}

.img-overlay-text p {
	font-size: 18px;
	font-weight: var(--regular-weight);
	line-height: 25px;
	letter-spacing: -0.2px;
	color: var(--s-white);
	text-align: left;
}

.slider-nav .owl-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: flex-end;
	margin-top: 38px;
}

.slider-nav .owl-nav .owl-prev, .slider-nav .owl-nav .owl-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--p-orange) !important;
}

.certificates-list.slider .owl-dots {
	margin-top: -37px;
}

/* ---lightbox--- */

.lightbox {
	max-width: fit-content;
	margin: 0 auto;
	left: 0;
	right: 0;
}

.lightbox .lb-details {
	display: none;
}

.lightbox .lb-nav {
	display: none !important;
}

.lightbox  .lb-dataContainer {
	position: absolute;
	top: -20px;
	right: -20px;
}

.lightbox .lb-data .lb-close {
	width: 50px;
	height: 50px;
	opacity: 1;
	background-size: 100% 100%;
}

/* Recommendations/Reviews */

.reviews-wrap {
	background-color: var(--p-light-orange);
}

.reviews-list {
	margin-top: 120px;
}

.review-single {
	background-color: var(--p-dark-grey);
	border-radius: 20px;
	padding: 100px 90px 50px;
	text-align: center;
}

.review-img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 7px solid var(--p-light-orange);
	text-align: center;
	margin: -180px auto 0;
}

.review-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.review-text {
	margin-top: 16px;   
}

.review-text p {
	font-size: 14px;
	line-height: 24px;
	letter-spacing: -0.2px;
	color: var(--s-white);
	text-align: center;
}

.review-text p:not(:last-child) {
	margin-bottom: 24px;
}

.review-detail {
	margin-top: 10px;
}

.review-detail h3 {
	font-size: 24px;
	line-height: 34px;
	font-weight: var(--semi-bold-weight);
	color: var(--p-orange);
	text-align: center;
	margin-bottom: 10px;
}

.review-detail span {
	font-size: 16px;
	line-height: 24px;
	color: var(--s-white);
}

.reviews-list-inner.owl-carousel .owl-stage-outer {
	overflow: visible;
}

.reviews-list-inner.owl-carousel .owl-item {
	opacity: 0;
}

.reviews-list-inner.owl-carousel .owl-item.active {
	opacity: 1;
}

.reviews-list-inner.slider-nav .owl-nav {
	position: absolute;
	top: 44%;
	margin: 0;
	justify-content: space-between;
	width: 100%;
}

.reviews-list-inner.slider-nav .owl-nav .owl-prev {
	position: absolute;
	top: 0;
	left: -25px;
}

.reviews-list-inner.slider-nav .owl-nav .owl-next {
	position: absolute;
	top: 0;
	right: -25px;
}

.reviews-list-inner.slider .owl-dots {
	display: none;
}

/* contact */

.contact-details-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
	width: 100%;
	margin: 60px auto 0;
}

.form-field input, .form-field textarea {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: var(--medium-weight);
	color: var(--s-grey);
	padding: 16px 0;
	width: 100%;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #D6D6D6;
	resize: none;
}

.form-field input:focus, .form-field textarea:focus {
	border-color: var(--p-orange);
}

.form-field textarea {
	min-height: 90px;
}

.form-btn {
	margin-top: 17px;
}

.form-btn button {
	width: 100%;
	max-width: 100%;
	cursor: pointer;
	transition: all ease-in-out .3s;
	-moz-transition: all ease-in-out .3s;
	-webkit-transition: all ease-in-out .3s;
	-o-transition: all ease-in-out .3s;
}

.contact-details {
	background-color: var(--p-dark-grey);
	border-radius: 20px;
	padding: 24px 50px;
}

.contact-details ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.contact-details li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 0;
}

.contact-details li:not(:last-child) {
	border-bottom: 1px solid #353535;
}

.contact-details i {
	font-size: 24px;
	color: var(--p-orange);
	min-width: 24px;
}

.contact-details li, .contact-details a {
	font-size: 14px;
	color: #e7e7e7;
	line-height: 21px;
	word-break: break-all;
}

.contact-details a:hover {
	color: var(--p-orange);
}

/* footer */

footer {
	background-color: var(--p-dark-grey);
	padding: 22px 16px;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 24px;
}

.footer-social i {
	font-size: 14px;
	color: var(--s-white);
}

.footer-social i:hover {
	color: var(--p-orange);
}

.copyrights p {
	font-size: 14px;
	line-height: 21px;
	color: var(--s-white);
}