/*!
Theme Name: Apoge Website
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: apoge-website
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.

Apoge Website 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
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	transition: all 0.3s ease;
	letter-spacing: -0.02em;
}
:root{
	--primary-color: #0a1015;
	--secondary-color: #cecfd0;
	--border-color:#3a3a3a;
	--hover-color: #fff;
}
html,body{
	font-family: 'Inter', sans-serif;
	font-size: 15px;
}
h1,h2,h3,h4,h5,h6,p,a,li,span{
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Playfair Display', serif;
	letter-spacing: -0.02em;
}
a{
	text-decoration: none;
	&:hover{
		text-decoration: none;
	}
}
ul,ol{
	list-style: none;
	margin: 0;
	padding: 0;
}
.siteBtn{
	color: var(--primary-color);
	border: 1px solid var(--border-color);
	padding: 10px 32px;
	border-radius: 30px;
	font-weight: 500;
	color: var(--secondary-color);
	&:hover{
		background-color: var(--secondary-color);
		color: var(--primary-color);
		border: 1px solid var(--secondary-color);
	}
	&.whiteBtn{
		background-color: var(--secondary-color);
		color: var(--primary-color);
		border: 1px solid var(--secondary-color);
		&:hover{
			background-color: transparent;
			color: var(--secondary-color);
			border: 1px solid var(--border-color);
		}
	}
}
.siteHeader {
	background-color: var(--primary-color);
	color: var(--secondary-color);
	text-align: center;
	background-image: url(./assets/linesvg.svg);
	border-bottom: 1px var(--border-color) solid;
	.row{
		background-color: var(--primary-color);
		border-left: 1px var(--border-color) solid;
		border-right: 1px var(--border-color) solid;
	}
	img{
		max-width: 85px;
		object-fit: contain;
		object-position: left;
	}
	ul{
		display: flex;
		justify-content: center;
		gap: 30px;
		li{
			a{
				text-decoration: none;
				color: var(--secondary-color);
			}
		}
	}
}

/* Banner Section Home */

.bannerSec{
	background-color: var(--primary-color);
	color: var(--secondary-color);
	text-align: center;
	.row{
		background-color: var(--primary-color);
		border-left: 1px var(--border-color) solid;
		border-right: 1px var(--border-color) solid;
		padding: 200px 0;
		
	}
	h1{
		font-size: 48px;
		font-weight: 700;
		margin-bottom: 20px;
		margin-bottom: 32px;
	}
	.descriptionBox{
		max-width: 767px;
		margin: 0 auto;
	}
	p{
		font-size: 16px;
		margin-bottom: 30px;

	}
	
}
p.subTitle{
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 10px;
	color: var(--secondary-color);
	padding: 14px 32px 12px;
	background-color: #161f27;
	backdrop-filter:  blur(10px);
	display: inline-block;
	margin:0 auto;
	margin-bottom: 20px;
	border-radius: 30px;
	line-height: 1.2;
	a{
		color: var(--secondary-color);
		text-decoration: none;
		font-weight: 500;
		padding-left: 10px;
		margin-left: 7px;
		border-left: 1px solid var(--border-color);
		&:hover{
			color: var(--hover-color);
		}
	}
}
.gap-10{
	gap: 10px;
}
/* Features */
.featuresSec{
			background-color: var(--primary-color);

	.bgPattern{
			background-image: url(./assets/linesvg.svg);
	border-bottom: 1px var(--border-color) solid;
	border-top: 1px var(--border-color) solid;
	}
		.row{
		background-color: var(--primary-color);
	border-left: 1px var(--border-color) solid;
		border-right: 1px var(--border-color) solid;
	}
	.featureListInnerWrapper{
		border-left: 1px var(--border-color) solid;
		border-right: 1px var(--border-color) solid;
				padding: 16px 0;

	}
	.featureListInner{
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
		justify-content: center;
		color: var(--secondary-color);
	}
}