@import url("https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap");
html,
body {
	margin: 0;
	padding: 0;
	font-family: "RocknRoll One", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1vw;
}
header {
}
main {
}
h1 {
	width: 250px;
	background-color: #fff;
	border-radius: 1vw;
	padding: 0 2vw;
	margin: 1vw;
}
h2 {
	font-size: 2.5em;
	width: 100%;
	min-height: 4vw;
	text-align: center;
}
h3 {
	font-size: 1.7em;
	border-bottom: solid 5px #1a2a6c;
	display: inline-block;
	padding: 0 2vw;
	margin-bottom: 2vw;
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border: none;
}
p {
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
nav ul {
	gap: 0.5vw 1.2vw;
}
nav li {
	text-align: center;
	border-bottom: solid 3px #1a2a6c;
}
section {
	padding: 3vw 0;
}
.inner {
}
.flex {
	display: flex;
	align-items: center;
}
.space-between {
	justify-content: space-between;
}
.flex-end {
	justify-content: flex-end;
}
.width100 {
	width: 100%;
}
.header {
	padding: 1.5vw;
}
.header-logo {
	width: 250px;
}
.header-nav {width: min(500px, 50%);}
.hero {
	position: relative;
	height: 84vh;
	background-image: url("../images/top_back.webp");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	overflow: hidden;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 30, 60, 0.6);
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 90%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: start;
}
.subTitle {
	font-size: 1.5em;
	min-height: 2.2vw;
}
.hero_cta {
	z-index: 2;
	background-color: #fff;
	color: #1a2a6c;
	position: absolute;
	bottom: 3vw;
	font-size: 1.8em;
	padding: 0.3vw 4vw;
	border-radius: 2vw;
}
.hero_cta:hover {
	background-color: #1a2a6c;
	color: #fff;
	transition: all 0.3s ease-in-out;
}
.nav-menu{
	flex-wrap: wrap;
}

/*============================
cta
============================*/
.cta{
	background-color: #1a2a6c;
	color: #fff;
	text-align: center;
}
.inner{
}
.cta a{
	background-color: #fff;
	color: #1a2a6c;
	padding: 1vw 2vw;
	border-radius: 2vw;
	font-size: 1.3em;
	transition: all 0.3s ease-in-out;
}
.cta a:hover{
	background-color: #1a2a6c;
	color: #fff;
}

/*============================
#hero-text
============================*/
#hero-text1,
#hero-text2 {
	font-size: 1.9em;
	min-height: 2.8vw;
}

/*============================
services
============================*/
#services.services {
}
.inner {
	max-width: min(1200px, 90%);
	margin: auto;
}
.services,.portfolio {
	background: #f8f9fa;
}
.services h2 {
	text-align: center;
	font-size: 2rem;
	color: #001f3f;
}
.service-intro h3 {
	font-size: 1.5rem;
	color: #001f3f;
	margin: 1vw 0;
	border-left: 6px solid #001f3f;
	padding-left: 12px;
}
.service-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	list-style: none;
	padding: 0;
}
.service-list li {
	background: #fff;
	border-radius: 16px;
	padding: 1vw;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	text-align: center;
}
.service-list li:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.service-list i {
	font-size: 32px;
	color: #001f3f;
	margin-bottom: 12px;
	display: block;
}
.service-list h4 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 8px;
}
.service-list p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.6;
	text-align: left;
}

/*============================
profile
============================*/
.profile {
	background-color: #ffffff;
}
.profile h2 {
	text-align: center;
	font-size: 2rem;
	color: #001f3f;
}
.profile h3 {
	font-size: 1.3rem;
	margin: 20px 0 12px;
	color: #001f3f;
	border-left: 6px solid #001f3f;
	padding-left: 12px;
}
.skill-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
	gap: 16px;
	margin-bottom: 32px;
}
.skill-list li {
	background: #f2f4f8;
	padding: 0.8vw;
	border-radius: 0.5vw;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.6vw;
}
.skill-list i {
	font-size: 24px;
	color: #001f3f;
}
.bio p {
	font-size: 1rem;
	line-height: 1.8;
	color: #333;
	background: #f9f9f9;
	padding: 20px;
	border-radius: 12px;
}

/*============================
portfolio
============================*/
.portfolio h2 {
	text-align: center;
	font-size: 2rem;
	color: #001f3f;
}
.portfolio-preview {
	margin-top: 40px;
}
.portfolio-preview h3 {
	font-size: 1.3rem;
	margin-bottom: 16px;
	color: #001f3f;
	border-left: 6px solid #001f3f;
	padding-left: 12px;
}
.portfolio-list {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	padding: 0;
	list-style: none;
}
.portfolio-list li {
	border-radius: 12px;
	padding: 1vw;
}
.portfolio-list img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}
.portfolio-list img:hover {
	transform: scale(1.05);
}
.portfolio-link {
	text-align: center;
	margin-top: 1vw;
}
.btn {
	display: inline-block;
	background-color: #001f3f;
	color: #fff;
	padding: 10px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease;
}
.btn:hover {
	background-color: #003366;
}

/*============================
footer
============================*/
footer {
	background-color: #001f3f;
	color: #fff;
	padding: 40px 0;
	text-align: center;
}
.footer-nav {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.footer-nav li {
	border: none;
}

/*============================
portfolio-page
============================*/
.portfolio-grid{
	display: flex;
	flex-wrap: wrap;
	gap: 3vw;
	justify-content: flex-start;
	margin-top: 3vw;
}
.portfolio-content{
	width: 20%;
}
.portfolio-title{
	font-size: 1em;
	padding: 0;
	width: 100%;
	border: none;
	margin: 0;
	min-height: 2.9em;
	color: #1a2a6c;
	display: flex;
	align-items: center;
}
.portfolio-img{
	display: block;
	transition: all 0.3s ease;
	box-shadow: 0.5vw 0.5vw 0.5vw #aaa;
}
.portfolio-img:hover {
	transform: translateY(0.5vw);
	box-shadow: none;
}
.pager{
	display: flex;
	justify-content: center;
	gap: 1vw;
	margin-top: 3vw;
	font-size: 1.2em;
	color: #1a2a6c;
}
.page-numbers{
	display: flex;
}
.page-numbers li{
	margin: 0 0.3vw;
}
.page-numbers .page-numbers{
	border: solid 1px #1a2a6c;
	border-radius: 0.5vw;
	min-width: 1.5em;
	display: flex;
	justify-content: center;
}
.page-numbers .current{
	background-color: #1a2a6c;
	color: #fff;
}
.page-numbers .prev, .page-numbers .next{
	border: none;
}

/*============================
portfolio-content
============================*/
#portfolio-content{}
#portfolio-content h2{}
.portfolio-single-content{}
.portfolio-single-content .portfolio-images{
	display: flex;
	justify-content: center;
}
.portfolio-single-content .portfolio-images img{
	max-height: 600px;
	width: auto;
}
.portfolio-single-content .portfolio-table{
    width: 50%;
    margin: 2vw auto;
}
.portfolio-single-content .portfolio-table tr{}
.portfolio-single-content .portfolio-table th{
    border-bottom: solid 2px;
    padding: 0.6vw 1vw;
    text-align: left;
}
.portfolio-single-content .portfolio-table td{
    border-bottom: solid 2px;
    padding: 0 1vw;
}
.portfolio-back{
	display: flex;
	justify-content: center;
}

/*============================
contact
============================*/
.full-width {
	margin: 0 calc(50% - 50vw);
	padding: 5em calc(50vw - 50%);
}
.wpcf7-form p {
	margin-bottom: 0;
}
section.contact {
}
.wpcf7 .contactForm {
	max-width: 700px;
	margin: 0 auto;
}
.wpcf7 .contact_item {
	margin-bottom: 1rem;
}
.wpcf7 .label {
	display: block;
	font-size: 1.5rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
.wpcf7 .label_tag {
	font-size: 1.1rem;
	color: #ffffff;
	border-radius: .3rem;
	margin-right: 1rem;
	padding: 5px 10px;
}
.wpcf7 .label_must {
	background-color: #C84772;
}
.wpcf7 .label_option {
	background-color: #888988;
}
.wpcf7 .inputs {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.wpcf7 input[type="text"],.wpcf7 input[type="email"] {
	border: solid 1px #707070;
	padding: .5rem;
	font-size: 1.8rem;
	max-width: 100%;
}
.wpcf7 textarea{
	border: solid 1px #707070;
	width: 100%;
	padding: .5rem;
	font-size: 1.5rem;
}
.wpcf7 textarea.form-control {
	border: solid 1px #707070;
	padding: .5rem;
	height: 207px;
	font-size: 1.8rem;
}
.btnArea {
	text-align: center;
}
.wpcf7 input[type="submit"]{
	background: #001f3f;
	border: solid 2px #001f3f;
	width: 20vw;
	color: #ffffff;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: .5em;
	text-indent: .5em;
	font-weight: bold;
	padding: 1.4rem 0;
	margin-top: 1rem;
	cursor: pointer;
	border-radius: 1rem;
	transition: all .3s;
}
.wpcf7 input[type="submit"]:hover {
	color: #001f3f;
	background-color: #ffffff;
	border-color: #001f3f;
}
.wpcf7 .ajax-loader {
	display: block;
	margin: 0 auto;
}
@media screen and (max-width: 480px) {
	.wpcf7 .contact_item {
		margin-bottom: 1.6rem;
	}
	.wpcf7 .label {
		font-size: 1.5rem;
		margin-bottom: .4rem;
	}
	.wpcf7 .label_tag {
		font-size: 1.1rem;
	}
	.wpcf7 input[type="text"],.wpcf7 input[type="email"] {
		padding: .4rem;
		font-size: 1.5rem;
	}
	.wpcf7 textarea {
		padding: .4rem;
		font-size: 1.5rem;
	}
	.wpcf7 input[type="submit"]{
		font-size: 1.5rem;
	}
}