@charset "UTF-8";
/* CSS Document */
*,
*::before,
*::after 
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

 :root {
 /* Demonstration image from Unsplash by Paul Gilmore. For best results, replace this URL with your own high-quality background image.*/
	 --fsi-text-color: #ffffff;
	 --main-color: #142035;
	 --secondary-color: #b3c9e8;
}

body {	
	min-height: 100vh;
	display: flex;
	flex-direction: column;
    align-items: center;
	background: var(--main-color);
}

hr {
	border: 0;
	clear:both;
	display:block;
	width: 95vw;               
	background-color: var(--main-color);
	height: 1px;
	margin-bottom: 30px;
}

/* Typewriter effect 1 */
@keyframes typing {
  0.0000%, 27.3488% { content: ""; }
  1.1395%, 26.2093% { content: "d"; }
  2.2791%, 25.0698% { content: "de"; }
  3.4186%, 23.9302% { content: "dev"; }
  4.5581%, 22.7907% { content: "deve"; }
  5.6977%, 21.6512% { content: "devel"; }
  6.8372%, 20.5116% { content: "develo"; }
  7.9767%, 19.3721% { content: "develop"; }
  9.1163%, 18.2326% { content: "develope"; }
  10.2558%, 17.0930% { content: "developer"; }

  30.7674%, 51.2791% { content: ""; }
  31.9070%, 50.1395% { content: "d"; }
  33.0465%, 49.0000% { content: "de"; }
  34.1860%, 47.8605% { content: "des"; }
  35.3256%, 46.7209% { content: "desi"; }
  36.4651%, 45.5814% { content: "desig"; }
  37.6047%, 44.4419% { content: "design"; }
  38.7447%, 43.3019% { content: "designe"; }
  39.8847%, 42.1619% { content: "designer"; }

  54.6977%, 75.2093% { content: ""; }
  55.8372%, 74.0698% { content: "p"; }
  56.9767%, 72.9302% { content: "pr"; }
  58.1163%, 71.7907% { content: "pri"; }
  59.2558%, 70.6512% { content: "prin"; }
  60.3953%, 69.5116% { content: "print"; }
  61.5349%, 68.3721% { content: "printm"; }
  62.6749%, 68.3721% { content: "printma"; }
  63.7049%, 68.3721% { content: "printmak"; }
  64.8449%, 68.3721% { content: "printmake"; }
  65.9849%, 68.3721% { content: "printmaker"; }

  78.6279%, 96.8605% { content: ""; }
  79.7674%, 95.7209% { content: "h"; }
  80.9070%, 94.5814% { content: "hu"; }
  82.0465%, 93.4419% { content: "hum"; }
  83.1860%, 92.3023% { content: "huma"; }
  84.3256%, 91.1628% { content: "human"; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typewriter {
  --caret: currentcolor;
}

.typewriter::before {
  content: "";
  animation: typing 13.5s infinite;
}

.typewriter::after {
  content: "";
  border-right: 1px solid var(--caret);
  animation: blink 0.5s linear infinite;
}

.typewriter.thick::after {
  border-right: 1ch solid var(--caret);
}

.typewriter.nocaret::after {
  border-right: 0;
}


@media (prefers-reduced-motion) {
  .typewriter::after {
    animation: none;
  }
  
  @keyframes sequencePopup {
    0%, 100% { content: "developer"; }
    25% { content: "writer"; }
    50% { content: "reader"; }
    75% { content: "human"; }
  }

  .typewriter::before {
    content: "developer";
    animation: sequencePopup 12s linear infinite;
  }
}

.section {
	padding: 120px 20px 60px;
}

.container {
	max-width: 92vw;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 60px;
	padding: 60px;
	position: relative;
}

@media (max-width: 768px) {
	.container {
		flex-direction: column;
		margin-top: 10px;
		padding: 36px;
  }
}

/* Left image */
.image-wrapper {
	flex: 1;
	background: #b3c9e8;
	padding: 5px;
	margin-top: -120px; /* overlap */
	position: relative;
	z-index: 2;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

/* Right content */
.content {
	flex: 1;
	color: var(--main-color);
}

.content h1 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 15px;
}

@media (max-width: 700px) {
	.content h1 {
		font-size: 20px;
		font-weight: 700;
	} 
}

.content h2 {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: 800;
}

@media (max-width: 800px) {
  .content h2 {
    font-size: 36px;
  }
}

.content p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.content h5 {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Button */

.fsi-hero-cta {
	display: inline-block;
	background: transparent;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	padding: 0.8rem 2.2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-transform: uppercase;
}
.fsi-hero-cta:hover {
	background-color: var(--main-color);
	color: #ffffff;
}

/* RESUME BUTTON START */
.modal-window {
	position: fixed;
	inset: 0; /* replaces top/right/bottom/left */
	background: rgba(255, 255, 255, 0.25);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.3s;
}

.modal-window:target {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.modal-window > div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80vw;
	height: 70vh;
	padding: 2em;
	background: #fff;
	border-radius: .25rem;
}

.modal-window header {
	font-weight: bold;
}

.modal-window h1 {
	font-size: 150%;
	margin-bottom: 15px;
}

.modal-window div:not(:last-of-type) {
	margin-bottom: 15px;
}


/* Main Button */
.btn-modal {
	display: inline-block;
	background: transparent;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	padding: 0.8rem 2.2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-transform: uppercase;
}
.btn-modal:hover {
	background-color: var(--main-color);
	color: #ffffff;
}

/* Close button */
.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 70px;
	line-height: 50px;
	font-size: 90%;
	text-align: center;
	color: #aaa;
	text-decoration: none;
}

.modal-close:hover {
	color: #000;
}
/* RESUME BUTTON END */



/* CONTENT SECTION START */
.section-new {
	max-width: 92vw;
	padding: 40px 40px;
	margin-bottom: 60px;
	font-family: "Georgia", serif;
	background-color: #142035;
	color: #b3c9e8;
	display: grid;
	min-height: 75vh;
	border: 1px solid #fff;
}

.container-new {
	max-width: 90vw;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
}

/* LEFT COLUMN */
.pages {
	background: #ffffff;
	padding: 40px;
}

.pages h2 {
  margin-top: 0;
  font-size: 26px;
  border-bottom: 1px solid #142035;
  padding-bottom: 16px;
}

.pages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

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

.pages li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: thin solid #142035;
}

.pages li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f2a26;
  font-weight: bold;
}

/* RIGHT COLUMN */
.features {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feature {
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d8ccc3;
}

.feature:last-child {
  border-bottom: none;
}

.icon {
	width: 40px;
	height: 40px;
}

.icon-text-container {
	display: flex; /* Places items side-by-side */
	gap: 10px; /* Adds space between the icon and text */
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.feature p {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  color: #fff;
}


@media (max-width: 700px) {
	.container-new {
		grid-template-columns: 1fr; 
  }
}

/* For screens smaller than 500px, change to 1 column and stack them */
@media (max-width: 700px) {
  .pages-grid {
    grid-template-columns: 1fr; /* Stacks items vertically */
  }
}

/* CONTENT SECTION END */

input {
	line-height: normal;
}

textarea {
	overflow: auto;
}

#container {
	border: solid 3px #142035;
	max-width: 768px;
	margin: 60px auto;
	position: relative;
	background: #b3c9e8;
}

form {
	padding: 37.5px 37.5px 15px 37.5px;
	margin: 50px 0;
}

.text {
	color: #142035;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 7px;
	text-align: center;
	text-transform: uppercase;
	padding-top: 25px;
}

.underline {
	border-bottom: solid 2px #142035;
	margin: 1em auto;
	width: 80px;
}

.email {
	float: right;
	width: 45%;
}

input[type='text'], [type='email'], select, textarea {
	background: none;
	border: none;
	border-bottom: solid 2px #142035;
	color: #142035;
	font-size: 1.000em;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 0em 0 1.875em 0;
	padding: 0 0 0.875em 0;
	text-transform: uppercase;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

input[type='text']:focus, [type='email']:focus, textarea:focus {
	outline: none;
	padding: 0 0 0.875em 0;
}

.message {
	float: none;
}

.name {
	float: left;
	width: 45%;
}

select {
	background: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png') no-repeat right;
	outline: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

select::-ms-expand {
	display: none;
}

.subject {
	width: 100%;
}

.telephone {
	width: 100%;
}

textarea {
	line-height: 150%;
	height: 150px;
	resize: none;
	width: 100%;
}

::-webkit-input-placeholder {
	color: #142035;
}

:-moz-placeholder { 
	color: #142035;
	opacity: 1;
}

::-moz-placeholder {
	color: #142035;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #142035;
}

#form_button {
  background: none;
  border: solid 2px #142035;
  color: #142035;
  cursor: pointer;
  display: inline-block;
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 0.875em;
  font-weight: bold;
  outline: none;
  padding: 20px 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#form_button:hover {
  background: #142035;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  #container {
    margin: 20px auto;
    width: 95%;
  }
}

@media screen and (max-width: 480px) {
  .text {
    font-size: 26px;
  }
  
  .underline {
    width: 68px;
  }
  
  #form_button {
    padding: 15px 25px;
  }
}

@media screen and (max-width: 420px) {
  .text {
    font-size: 18px;
  }
  
  .underline {
    width: 53px;
  }
  
  input[type='text'], [type='email'], select, textarea {
    font-size: 0.875em;
  }
}







/* BASE */

