/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- About
- Services
- Details
- Projects
- Works
- Testimonials
- Questions
- Contact
- Footer 
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds, navbar - black #fff
- Backgrounds - light gray #f7f9fb
- Buttons, icons - blue #0b36a8
- Headings text - black #fff
- Body text - dark gray #a9adb8
******************************************/


/**************************/
/*     General Styles     */
/**************************/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body,
html {
	width: 100% !important;
	height: 100%;
	overflow-x: hidden !important;
}

body {
	background-color: #000;

}

body,
p {
	color: #fff;
	font-family: 'Playfair Display', serif;
	visibility:visible !important;
	font-size: 14px;
    line-height: 25px;


}

h1 {
	color: #fff;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: 'Playfair Display', serif;
	visibility:visible !important;
}

h2 {
	color: #fff;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: 'Playfair Display', serif;
	visibility:visible !important;
}

h3 {
	color: #fff;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: 'Playfair Display', serif;
	visibility:visible !important;
}

h4 {
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: 'Playfair Display', serif;
	visibility:visible !important;
}

h5 {
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: 'Playfair Display', serif;
	visibility:visible !important;
}

h6 {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: 'Playfair Display', serif;
	visibility:visible !important;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #a9adb8;
	text-decoration: underline;
}

a:hover {
	color: #a9adb8;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.blue {
	color: #2259ec;
}

.bg-gray {
	background-color: #000000;
}

.section-divider {
	display: block;
	height: 1px;
	margin: 0;
	border: none;
	background-color: #000000;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #0b36a8;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #0b36a8;
	/* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #0b36a8;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #0b36a8;
	/* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #fff;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #fff;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #fff;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.5rem;
	color: #7d838a;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.375rem;
	cursor: text;
	transition: all 0.2s ease;
}

.form-control-input:focus+.label-control,
.form-control-input.notEmpty+.label-control,
.form-control-textarea:focus+.label-control,
.form-control-textarea.notEmpty+.label-control {
	top: 0.125rem;
	color: #a9adb8;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block;
	/* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #a9adb8;
	font-size: 0.875rem;
	line-height: 1.875rem;
	transition: all 0.2s;
	-webkit-appearance: none;
	/* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3.25rem;
	color: #7d838a;
}

select {
	/* you should keep these first rules in place to maintain cross-browser behavior */
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	background-image: url('../images/down-arrow.png');
	background-position: 96% 50%;
	background-repeat: no-repeat;
	outline: none;
}

.form-control-textarea {
	display: block;
	/* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 14rem;
	/* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.5rem;
	padding-left: 1.3125rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #a9adb8;
	font-size: 0.875rem;
	line-height: 1.5rem;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none;
	/* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.checkbox {
	font-size: 0.75rem;
	line-height: 1.25rem;
}

input[type='checkbox'] {
	vertical-align: -10%;
	margin-right: 0.5rem;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #0b36a8;
	border-radius: 32px;
	background-color: #0b36a8;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #000000;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	box-shadow: 0px 0px 20px 0px #fff6e37d;
}

.navbar .navbar-brand {
	padding-top: 0.125rem;
	padding-bottom: 0.125rem;
}

.navbar .logo-image img {
	width: 100%;
	height: auto;
}

.navbar .logo-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem;
	/* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #000000;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 15px;
	text-transform: uppercase;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #fec544;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s;
	/* required for the fade animation */
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border: none;
	background-color: #000;
}

.navbar .dropdown-item {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #000;
	color: #9c9ead;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #505050;
}

/* end of dropdown menu */

.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #0b36a8;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #0b36a8;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
	/*margin-right: 230px;*/
}

/*@media screen and (max-width: 768px){*/
/*    .navbar{*/
/*        width: 68%;*/
/*    }*/
/*}*/


/******************/
/*     Header     */
/******************/
.header {
	/*padding-top: 17rem;*/
	/*padding-bottom: 7.5rem;*/
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/Hons Web Banner 03.mp4') center center no-repeat;
	background-size: cover;
}

.header .h1-large {
	margin-bottom: 1.75rem;
	color: #ffffff;
}

.header .btn-solid-lg:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.header .btn-outline-lg {
	padding: 1.625rem 1.625rem 1.625rem 1.625rem;
	border: none;
	color: #ffffff;
}

.header .btn-outline-lg:hover {
	background: transparent;
	color: #9c9ead;
	text-decoration: none;
}

.header .btn-outline-lg .fas {
	margin-right: 0.375rem;
}

.header p {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.6em;
	margin-bottom: 22px;
	color: #a0a0a0;
}
.st-hero-social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.st-hero-social-links .st-social-btn {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    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;
    font-size: 16px;
    margin: 0 10px;
	text-decoration: none;
}
.st-hero-social-links .st-social-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
}

/*****************/
/*     About     */
/*****************/
.basic-1 {
	padding-top: 5.75rem;
	padding-bottom: 0.25rem;
}

.basic-1 .text-container {
	margin-bottom: 3rem;
}

.basic-1 .time {
	margin-bottom: 0.5rem;
	color: #0b36a8;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.5rem;
	font-family: 'Playfair Display', serif;
}

.basic-1 h6 {
	margin-bottom: 0.125rem;
}


/********************/
/*     Services     */
/********************/
.basic-2 {
	padding-top: 0.75rem;
	padding-bottom: 5.25rem;
}

.basic-2 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.basic-2 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.basic-2 .text-box {
	margin-bottom: 3rem;
	padding: 3.5rem 1rem 2.125rem 1rem;
	border: 1px solid #cfd7de;
}

.basic-2 .fas,
.basic-2 .far {
	margin-bottom: 1.75rem;
	color: #0b36a8;
	font-size: 3.5rem;
}

.basic-2 h4 {
	letter-spacing: 1px;
}

.image-portfolio {
	position: relative;
	height: 250px;
	/* Fixed height for the background */
	display: flex;
	justify-content: center;
	align-items: center;
	/* Center the image vertically and horizontally */
	background-color: #f0f0f0;
}

.image-portfolio img {
	max-height: 100%;
	/* Ensures the image scales proportionally without exceeding container height */
	max-width: 100%;
	/* Ensures the image scales to fit the width */
	object-fit: contain;
}

.image-portfolio .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 71%);
	/* Semi-transparent dark overlay */
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 11px;
}

.image-portfolio .overlay a {
	color: #fff;
	font-size: 20px;
	text-decoration: none;
}

.image-portfolio .overlay a:hover {
	color: #fec544;
	/* Change color when hovering over the link icon */
}

.image-portfolio.second:hover .overlay {
	opacity: 1;
	/* Show the overlay on hover */
}


/*******************/
/*     Details     */
/*******************/
.split .area-1 {
	height: 430px;
	background: linear-gradient(to bottom right, rgba(25, 26, 29, 0.5), rgba(25, 26, 29, 0.5)), url('../images/details-background.jpg') center center no-repeat;
	background-size: cover;
}

.split .area-2 {
	padding-top: 7.75rem;
	padding-bottom: 7.75rem;
}

.split p {
	margin-bottom: 2.25rem;
}

.split .icons-container {
	margin-top: 3rem;
}

.split .icons-container img {
	width: 50px;
	margin-right: 0.625rem;
	margin-bottom: 0.75rem;
}


/********************/
/*     Projects     */
/********************/
.basic-3 {
	padding-top: 7.75rem;
	padding-bottom: 1rem;
}

.basic-3 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.basic-3 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.basic-3 .text-container {
	margin-bottom: 4rem;
}

.basic-3 .image-container {
	margin-bottom: 1rem;
}

/* Hover Animation */
.basic-3 .image-container {
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}

.basic-3 .image-container img {
	margin: 0;
	transition: all 0.2s;
}

.basic-3 .image-container:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/* end of hover animation */


/*****************/
/*     Works     */
/*****************/
.basic-4 {
	padding-bottom: 1rem;
}

.basic-4 .text-container {
	margin-bottom: 4rem;
}

.basic-4 .image-container {
	margin-bottom: 1rem;
}

/* Hover Animation */
.basic-4 .image-container {
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}

.basic-4 .image-container img {
	margin: 0;
	transition: all 0.2s;
}

.basic-4 .image-container:hover img {
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

/* end of hover animation */


/************************/
/*     Testimonials     */
/************************/
.cards-1 {
	padding-top: 5rem;
	padding-bottom: 0;
}

.cards-1 .h2-heading {
	margin-bottom: 3rem;
	text-align: center;
}

.cards-1 .card {
	margin-bottom: 4rem;
	border: none;
}

.cards-1 .card-body {
	padding: 0;
	text-align: center;
	background-color: #000;
}

.st-post-single.st-style1 .st-post-thumb {
	display: block;
	overflow: hidden;
}

.st-zoom {
	position: relative;
}

.st-zoom .st-zoom-in {
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.st-post-single.st-style1 .st-post-date {
	font-size: 14px;
	margin-top: 22px;
	margin-bottom: 9px;
}

.st-post-single.st-style1 .st-post-date .st-post-author,
.st-post-single.st-style1 .st-post-date .st-post-publish-date {
	color: #fec544;
}
.st-post-single.st-style1 .st-post-date .st-post-date-divider {
    margin-left: 4px;
    margin-right: 4px;
}
.st-post-single.st-style1 .st-post-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 0;
	
}
.st-post-title a{
	color: #fff;
	text-decoration: none;
}
.st-contact-text {
    margin-top: -6px;
    margin-bottom: 23px;
	text-align: left;
}
.st-single-contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 30px;
}
.st-single-contact-info i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.5px solid #3f4551;
    border-radius: 50%;
    background-color: #070d1b;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.st-single-info-details{
	text-align: left;
}
.st-single-info-details h4 {
    font-size: 20px;
    font-weight: 400;
    margin-top: -4px;
    margin-bottom: 6px;
	text-align: left;
}
.st-single-info-details a {
    display: block;
    margin-bottom: -2px;
	text-align: left;
    text-decoration: none;
}
.st-social-info .st-social-text {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 500;
    padding-top: 5px;
	text-align: left;
}
.st-social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.st-social-link .st-social-btn .st-social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.st-social-link .st-social-btn:hover .st-icon-name, .st-social-link .st-social-btn.active .st-icon-name {
    max-width: 180px;
}	
.st-social-link .st-social-btn .st-icon-name {
    font-weight: 600;
    color: #fdfeff;
    overflow: hidden;
    max-width: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.st-social-link .st-social-btn:hover {
    padding-right: 15px;
}
.st-social-link .st-social-btn:not(:last-child) {
    margin-right: 20px;
}
.st-social-link .st-social-btn {
    border-radius: 50px;
    background-color: #070d1b;
    border: 0.5px solid #3f4551;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	padding: 0px 10px;
	text-decoration: none;
}

.form-control-input,
.form-control-select {
	border: 1px solid #000000;
	background-color: #272727;
	color: #ffffff;
}

.form-control-textarea {
	border: 1px solid #000000;
	background-color: #272727;
	color: #ffffff;
}

.card-title {
	color: #fec544;
}

.cards-1 .testimonial-text {
	margin-bottom: 1.625rem;
	text-align: center;
}

.cards-1 img {
	display: inline-block;
	width: 60px;
	margin-bottom: 0.875rem;
	border-radius: 50%;
}

.cards-1 .text {
	margin-top: 0.375rem;
}

.cards-1 .testimonial-author {
	color: #fff;
}

.cards-1 .testimonial-author,
.cards-1 .occupation {
	font-size: 0.875rem;
	line-height: 1.375rem;
}


/*********************/
/*     Questions     */
/*********************/
.accordion-1 {
	padding-top: 7.75rem;
	padding-bottom: 6.75rem;
}

.accordion-1 .h2-heading {
	margin-bottom: 2.5rem;
	text-align: center;
}

.accordion-1 .card {
	margin-bottom: 1.75rem;
	border: none;
}

.accordion-1 .card-header {
	padding: 0;
	border: none;
	background-color: transparent;
}

.accordion-1 .card button {
	padding: 0;
	color: #fff;
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-family: 'Playfair Display', serif;
}

.accordion-1 .card button:hover {
	text-decoration: none;
}

.accordion-1 .card button:before {
	float: left;
	margin-right: 0.625rem;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f078";
	transition: all 0.2s;
}

.accordion-1 .card button.collapsed:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion-1 .card-body {
	padding: 0.75rem 1.5rem 0.5rem 1.5rem;
}


/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 7.75rem;
	padding-bottom: 7rem;
	text-align: center;
}

.form-1 .h2-heading {
	margin-bottom: 0.75rem;
	text-align: center;
}

.form-1 .p-heading {
	margin-bottom: 4rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.25rem;
	padding-bottom: 2rem;
	background-color: #fff;
	text-align: center;
}

.footer a {
	text-decoration: none;
}

.footer .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
	color: #0b36a8;
	transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
	color: #0b36a8;
}

.footer .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #000000;
	text-align: center;
}

.copyright .p-small {
	color: #9da6ac;
	text-align: center;
	font-size: 17px;

}

.copyright a {
	color: #9da6ac;
}


/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: #3a424d url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #0b36a8;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: #fff;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .media-body {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fb;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #0b36a8;
}

.ex-cards-1 .card .fa-stack-1x {
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .media-body {
	margin-left: 0.75rem;
}

.ex-cards-1 .card .list-unstyled .media-body h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.375rem;
}


/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		/*padding-top: 11rem;*/
		/*padding-bottom: 9rem;*/
	}

	/* end of header */


	/* Services */
	.basic-2 .text-box {
		padding-right: 2.125rem;
		padding-left: 2.125rem;
	}

	/* end of services */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}

	/* end of extra pages */
}

/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {

	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of general styles */


	/* Navigation */
	.navbar {
    padding-top: 0.75rem;
    background-color: #000000;
    box-shadow: none;
    transition: all 0.2s;
    box-shadow: 0px 0px 20px 0px #fff6e338;
}

	.navbar.top-nav-collapse {
		padding-top: 20px;
        padding-bottom: 20px;
		background-color: #000000;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}
	.navbar-nav li{
		margin-right: 20px;
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.625rem;
		padding-left: 0.625rem;
	}

	.navbar .dropdown-menu {
		margin-top: 0.25rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}

	/* end of navigation */


	/* Header */
	.header {
		/*padding-top: 15rem;*/
		/*padding-bottom: 14rem;*/
	}

	/* end of header */


	/* Details */
	.split {
		height: 760px;
	}

	.split .area-1 {
		height: 100%;
		width: 50%;
		display: inline-block;
	}

	.split .area-2 {
		height: 100%;
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}

	.split .text-container {
		width: 400px;
		margin-left: 3rem;
	}

	/* end of details */


	/* Testimonials */
	.card{
		background-color: #000;
	}
	.cards-1 .card {
		display: inline-block;
		width: 290px;
		vertical-align: top;
	}

	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1.5rem;
		margin-left: 1.5rem;
	}

	.cards-1 .card-body {
		text-align: left;
	}

	.cards-1 .details {
		display: flex;
		align-items: center;
		flex-direction: column;
		text-align: center;
	}

	.cards-1 .details .text {
		flex-direction: column;
	}

	.cards-1 .details img {
		margin-right: 1.125rem;
	}

	/* end of testimonials */


	/* Accordion */
	.accordion-1 .accordion {
		width: 730px;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of accordion */


	/* Contact */
	.form-1 form {
		margin-right: auto;
		margin-left: auto;
	}

	/* end of contact */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	/* end of extra pages */
}

/* end of min-width 992px */

.st-section-heading.st-style1 .st-section-heading-title {
		font-size: 24px;
		font-weight: 500;
		text-transform: uppercase;
		color: #fec544;
		position: relative;
		z-index: 10;
		letter-spacing: 1px;
	}

	.st-section-heading.st-style1 .st-section-heading-title::before {
		content: "";
		position: absolute;
		background-color: #3f4551;
		width: 170px;
		height: 2px;
		bottom: -16px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.st-section-heading.st-style1 .st-section-heading-title::after {
		content: "";
		position: absolute;
		background-color: #fec544;
		width: 70px;
		height: 2px;
		bottom: -16px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.first h4 {
    font-weight: 400;
    color: #fec544;
}
.st-section-heading.st-style1 {
    text-align: center;
    position: relative;
    margin-top: -5px;
    margin-bottom: 80px;
}
/* Min-width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.h1-large {
		font-size: 3.75rem;
		line-height: 4.625rem;
	}

	/* end of general styles */


	/* Navigation */
	.navbar .container {
		max-width: 1140px;
	}

	/* end of navigation */


	/* Header */
	.header {
		/*padding-top: 18.25rem;*/
		/*padding-bottom: 25.25rem;*/
	}

	/* end of header */


	/* About */
	.basic-1 .text-container.first {
		margin-right: 2rem;
	}

	.basic-1 .text-container.second {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	.second img {
		height: auto;
		width: 100%;
	}

	.first h4 {
		font-weight: 400;
		color: #fec544;
	}

	.st-mp0 {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.st-text-block-details li {
		margin-bottom: 14px;
	}

	.st-text-block-details li span:first-child {
		display: inline-block;
		width: 108px;
		margin-right: -5px;
	}

	.st-text-block-details li span:last-child {
		margin-left: 7px;
	}

	.st-text-block-btn {
		margin-top: 43px;
	}

	.st-btn.st-style1.st-color1 {
		background-color: #fec544;
		color: #070d1b;
		display: inline-flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		font-size: 16px;
		font-family: 'Playfair Display', serif;
		line-height: 1.5em;
		font-weight: 500;
		padding: 12px 1.5em;
		border-radius: 50px;
		min-width: 170px;
		border: none;
		outline: none;
		-webkit-transition: all 0.4s ease;
		transition: all 0.4s ease;
		text-transform: capitalize;
		text-decoration: none;
	}

	.st-section-heading.st-style1 {
		text-align: center;
		position: relative;
		margin-top: -5px;
		margin-bottom: 80px;
	}

	.st-section-heading.st-style1 .st-section-heading-title {
		font-size: 24px;
		font-weight: 500;
		text-transform: uppercase;
		color: #fec544;
		position: relative;
		z-index: 10;
		letter-spacing: 1px;
	}

	.st-section-heading.st-style1 .st-section-heading-title::before {
		content: "";
		position: absolute;
		background-color: #3f4551;
		width: 170px;
		height: 2px;
		bottom: -16px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.st-section-heading.st-style1 .st-section-heading-title::after {
		content: "";
		position: absolute;
		background-color: #fec544;
		width: 70px;
		height: 2px;
		bottom: -16px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.st-section-heading.st-style1 .st-section-heading-subtitle {
		text-transform: uppercase;
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		font-size: 90px;
		font-weight: 700;
		color: rgba(21, 27, 41, 0.5);
		margin: 0;
		margin-top: -17px;
		width: 100%;
	}

	.basic-1 .text-container.third {
		margin-left: 2rem;
	}

	/* end of about */


	/* Details */
	.split {
		height: 700px;
	}

	.split .text-container {
		width: 460px;
		margin-left: 5rem;
	}

	/* end of details */


	/* Testimonials */
	.cards-1 .card {
		width: 338px;
	}

	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.625rem;
		margin-left: 2.625rem;
	}

	/* end of testimonials */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}

	/* end of extra pages */
}

/* end of min-width 1200px */
@media screen and (max-width: 768px){
    video{
        padding-top: 17%;
    }
	.st-section-heading.st-style1 {
		text-align: center;
		position: relative;
		margin-top: -5px;
		margin-bottom: 35px;
	}
	.st-section-heading.st-style1 .st-section-heading-title {
		font-size: 24px;
		font-weight: 500;
		text-transform: uppercase;
		color: #fec544;
		position: relative;
		z-index: 10;
		letter-spacing: 1px;
	}
	.st-section-heading.st-style1 .st-section-heading-subtitle {
		text-transform: uppercase;
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		font-size: 90px;
		font-weight: 700;
		color: rgba(21, 27, 41, 0.5);
		margin: 0;
		margin-top: -17px;
		width: 100%;
	}
	.first h4 {
		font-weight: 400;
		color: #fec544;
	}
	.st-mp0 {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.st-text-block-details li {
		margin-bottom: 14px;
	}
	.st-text-block-details li span:first-child {
		display: inline-block;
		width: 108px;
		margin-right: -5px;
	}
	.st-btn.st-style1.st-color1 {
		background-color: #fec544;
		color: #070d1b;
		display: inline-flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		font-size: 16px;
		font-family: 'Playfair Display', serif;
		line-height: 1.5em;
		font-weight: 500;
		padding: 12px 1.5em;
		border-radius: 50px;
		min-width: 170px;
		border: none;
		outline: none;
		-webkit-transition: all 0.4s ease;
		transition: all 0.4s ease;
		text-transform: capitalize;
		text-decoration: none;
	}
	.basic-1 {
		padding-top: 0.75rem;
		padding-bottom: 0.25rem;
	}
	.navbar-toggler-icon{
		margin-right: 0px;
	}
	.cards-1 {
		padding-top: 2rem;
		padding-bottom: 0;
	}
	.card{
		background-color: #000;
	}
	.slick-slide-in{
		margin-top: 20px;
	}
	.contact-text{
		padding-top: 20px;
	}
	.copyright .p-small{
		font-size: 15px;
	}
	.header .h1-large{
		font-size: 35px;
	}
	body{
		overflow-x: hidden !important;
	}
	.video{
	    height: auto;
	}
	.image img{
	    margin-bottom: 25px;
	}
	.basic-3 {
    padding-top: 1.75rem;
    padding-bottom: 0px;
    margin-bottom: -17%;
    }
    .video {
    height: 100%;
    padding-top: 0px;
}
.basic-4 {
    padding-top: 10.75rem;
    padding-bottom: 0.25rem;
}
#about{
    padding-top: 2.75rem;
}
.first p{
    text-align: justify;
}
#achievement{
    margin-top: -1rem !important;
}
.testimonial{
    padding-top: 0px !important;
}
#journey p{
    text-align: justify;
}
#contact{
    padding-top: 0rem;
    padding-bottom: 3rem;
}
.form-1{
    padding-top: 0rem;
}
}
.basic-4 {
    padding-top: 5.75rem;
    padding-bottom: 0.25rem;
}
.image img{
    border-radius: 10px;
    box-shadow: 0px 0px 9px 3px #8b630d;
}

.basic-3{
    padding-top: 8.75rem;
    padding-bottom: 0px;
    /*margin-bottom: -14%;*/
}
#about .row {
    display: flex;
    align-items: center;
}

#about .text-container.first {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
#journey{
    padding-top: 4.75rem;
}
#journey .row {
    display: flex;
    align-items: center;
}

#journey .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/*testimonial slider start*/
.testimonial {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #14213d00;
	color: #14213d;
	padding-top: 95px;
  }
  
  .testimonial-slide {
	opacity: 0.5; /* Initially faded */
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transform: scale(0.9); /* Initially smaller */
	padding: 20px;
	padding-bottom: 50px;
  }
  .testimonial-slide.slick-center {
	opacity: 1; /* Full visibility for the center slide */
	transform: scale(1.1); /* Slightly larger for the center slide */
  }

  .testimonial-slide.active {
	opacity: 1;
	transform: scale(1.1);
  }
  .testimonial-slide.faded {
	opacity: 0.5;
	transform: scale(0.9);
  }
  .testimonial-slider {
	position: relative;
  }
  .testimonial_box {
	transition: all 0.3s ease-in-out;
  }
  .testimonial_box.slick-center {
	transform: scale(1.1); /* Increase size for active box */
  }
  
  .testimonial_box-top {
	background-color: #000000;
	padding: 30px;
	border-radius: 30px;
	display: flex;
	position: relative;
	border: 5px solid #36445e;
	transition: transform 0.3s ease-in-out;
  }
  .testimonial_box-top:hover {
	transform: scale(1.10); /* Slight zoom on hover */
  }
 
  
  .testimonial_box-icon {
    margin-top: -10px;
    padding-right: 20px;
    margin-bottom: -30px;
    z-index: 1;
    position: sticky;
    margin-left: 75%;
}
  
  .testimonial_box-icon i {
	font-size: 45px;
	color: #fec544;
  }
  
  .testimonial_box-text p {
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 0;
	font-family: math;
	text-align: center;
  }
  
  .testimonial_box-shape {
    position: absolute;
    bottom: -30px;
    left: 42%;
    width: 55px;
    height: 55px;
    background-color: #000000;
    transform: rotateZ(45deg);
    border: 5px solid #36445e;
    border-left: transparent;
    border-top: transparent;
    border-bottom-right-radius: 10px;
}
  
  .testimonial_box-bottom {
	padding-top: 35px;
	padding-left: 25px;
  }
  
  .testimonial_box-profile {
	display: flex;
  }
  
  .testimonial_box-img {
	display: flex;
	justify-content: center;
  }
  
  .testimonial_box-img img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 2px solid #e5e5e5;
    margin-left: 105px;
    margin-top: 2px;
}
.slick-dots {
    position: absolute;
    bottom: -55px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
  
  .testimonial_box-info {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-left: 20px;
  }
  
  .testimonial_box-name h4 {
	font-size: 20px;
	line-height: 25px;
	color: #e5e5e5;
	margin-bottom: 0;
  }
  
  .testimonial_box-job p {
	color: #e5e5e5;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 20px;
	font-weight: 300;
	margin-bottom: 0;
  }
  
  .slick-dots li button:before {
	font-size: 15px;
	color: #e5e5e5;
	background-color: #fff !important;
  }
  .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px !important;
    height: 15px !important;
    padding: 5px;
    cursor: pointer;
    color: #ffffff;
    border: 0;
    outline: none;
    background: #fec544 !important;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px !important;
    height: 15px !important;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #ffffff00 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.testimonial-img-img{
	width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease-in-out;
  float: right;
  margin-top: 20px;
}
.testimonial-img-img:hover{
	width: 85px; /* Increased size on hover */
  height: 85px; /* Increased size on hover */
  border-radius: 50px;
}
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px !important;
    height: 50px !important;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #000000 !important;
    border: none;
    outline: none;
    background: #ffffff !important;
    border-radius: 50% !important;
    z-index: 1;
}
/* Style for the previous arrow */
.slick-prev {
	position: absolute;
	top: 50%;
	left: -40px;
	transform: translateY(-50%);
	background: #fff;
	border: none;
	padding: 10px;
	border-radius: 50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
  }
  
  .slick-prev i {
	font-size: 20px;
	color: #000;
  }
  
  .slick-prev:hover {
	background-color: #fec544;
  }
  
  /* Style for the next arrow */
  .slick-next {
	position: absolute;
	top: 50%;
	right: -40px;
	transform: translateY(-50%);
	background: #fff;
	border: none;
	padding: 10px;
	border-radius: 50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
  }
  
  .slick-next i {
	font-size: 20px;
	color: #000;
  }
  
  .slick-next:hover {
	background-color: #fec544;
  }
  .slick-prev:before, .slick-next:before{
	display: none;
  }
  /* Container for image and overlay */
.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Image Styling */
.image-container img {
    width: 100%;
    display: block;
}

/* Overlay Styling */
.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Content in the Overlay */
.overlay-content {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

/* Show overlay on hover */
.image-container:hover .overlay {
    opacity: 1;
}

/*breadcrumb section start*/
.breadcrumb-section{
    padding: 160px 0px 100px;
    background-image: radial-gradient(circle at bottom center, #fec544 -110%, black 43%);
    text-align: center;
}
.breadcrumb-section h3{
    font-size: 40px;
}


.lightboxpreview {
   transition: all .3s linear;
padding-top:60%;
  cursor:pointer;
  background-size:cover;
}
   
.lightbox-content {
max-height:75vh;
  height:75vh;
  width:100%;
  max-width: 1000px;}

.lightbox-close { 
  cursor:pointer;
    margin-left: auto;
  position:absolute;
  right:-30px;
  top:-30px;
  color:white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;}
.modal_inner_image {
    min-height: 400px;
    z-index: 1000;}
.modal-content {
    width: 100%;}


.modalscale {transform:scale(0);
opacity:0;}

/* Container for image and overlay */
.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Image Styling */
.image-container img {
    width: 100%;
    display: block;
}

/* Overlay Styling */
.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

/* Content in the Overlay */
.overlay-content {
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

/* Show overlay on hover */
.image-container:hover .overlay {
    opacity: 1;
}


/*achievement style start*/
.container .card
{
    max-width: 300px;
    height: 190px;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgb(82 82 82 / 50%);
    transition: 0.3s ease-in-out;
    background-color: #202020;
    cursor: pointer;
}
.container .card:hover
{
    height: 319px;
}
.container .cardd:hover{
  height: 255px;

}

.content h4{
    font-size: 16px;
}
.container .cardd .imgContainer {
    position: relative;
    width: 266px;
    /* height: 250px; */
    top: -50px;
    left: 0px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
}

.container .cardd .imgContainer {
    position: relative;
    width: 266px;
    /* height: 250px; */
    top: -50px;
    left: 0px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
}
.container .cardd .imgContainer img
{
    max-width: 100%;
    border-radius: 4px;
    height: 194px;
   object-fit: cover !important;
    
}
.container .cardd .content
{
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color:#111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}
.container .cardd:hover .content
{
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}





.container .card .imgContainer {
    position: relative;
    width: 266px;
    /* height: 250px; */
    top: -50px;
    left: 0px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
}
.container .card .imgContainer img
{
    max-width: 100%;
    border-radius: 4px;
    height: 194px;
}
.container .card .content
{
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color:#111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}
.container .card:hover .content
{
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}
.header-desktop{
    display: block;
}
.header-mobile{
    display: none !important;
}

@media (max-width: 330px){
    .container .card .imgContainer{
        left: -2px;
    }
}
@media (max-width: 768px){
    .about-padding-0{
    padding-left: 0px;
    padding-right: 0px;
}
.header-desktop{
    display: none;
}
.header-mobile{
    display: block !important;
}
}

	

	
  
  