:root {
	--primary-color : #4287f5;
	--secondary-color : #42BFDD;
	--third-color: #BBE6E4;
	--bg-light : #F0F6F6;
	--bg-dark : #000;
	--star : #084B83;
}

/*hero*/

.hero {
    position: relative;
	width: 100%;
	height: 100vh;
	background-image: url('https://dublinwebdesign.ie/assets/hero.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 1;
}

.hero:before {
	content: '';
	position: absolute;
	top : 0;
	left : 0;
	width: 100%;
	height: 100vh;
	background : rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.hero .navbar {
	padding: 20px 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 70px;
	background: #000;
	opacity: 0.7;
	position: fixed;
	top : 0;
}

.hero .navbar .logo {
	font-size: 2rem;

}

.hero .navbar .logo a {
	color :white;
	text-decoration: none;
}

.hero .navbar ul {
	display: flex;
	list-style: none;
}

.hero .navbar ul li {

}

.hero .navbar ul li a {
 text-decoration: none;
 padding: 20px 30px;
 font-size: 1.5rem;
 color : white;
}

.hero .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 850px;
	margin: 0 auto;
	height: 100%;
	padding: 20px;
}

.hero .content h1 {
	transform: translateY(0px);
	opacity: 0;
	color : white;
	font-weight: bolder;
	font-size: 5rem;
	text-align: center;
	padding-bottom: 20px;
	animation: anim 1s forwards ease-in-out;
}

@keyframes anim {
	to {
		opacity: 1;
		transform: translateY(10px);
	}
}

.hero .content p {
	transform: translateX(-1500px);
	color : white;
	font-size: 1.2rem;
	text-align: center;
	animation: textSlide 2s forwards ease-in-out;

}

@keyframes textSlide {
	to {
		transform: translateX(0);
	}
}

/*choose us scetion*/

.choose {
	padding: 30px;
}

.choose h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 100;
	margin-bottom: 20px;
}

.choose p {
	text-align: center;
	font-size: 1.1rem;
	padding: 20px 0;
}


/*about*/

.flex-columns .row .col h1 {
	font-size: 2rem;
	font-weight: 100;	
	margin-bottom: 15px;
}

.flex-columns .row .col p {
	font-size: 1.1rem;
	text-align: justify;
	font-weight: 100;	
}

.flex-columns .row .col ul {
	padding-top: 10px;
	list-style: none;
}

.flex-columns .row .col ul li{
	line-height: 1.5rem;
}

.flex-columns .row .col img{
	height: 100%;
}

.flex-items .row .col .star i{
	color : var(--star);
	background: var(--bg-light);
	padding: 10px;
}

/*[projects]*/


.flex-grid h1 {
	text-transform: uppercase;
	text-align: center;
	font-size: 2rem;
	font-weight: 100;
	margin-bottom: 20px;
	padding-top: 20px;
}

.flex-grid h4 {
	text-transform: uppercase;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 100;

	padding: 20px;
}

.flex-grid .row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.flex-grid .row .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex : 33%;
	max-width: 100%;
	padding: 10px;
}


/*pages*/

.hero-page {
    position: relative;
	width: 100%;
	height: 50vh;
	background-image: url('https://dublinwebdesign.ie/assets/hero.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 1;
}

.hero-page:before {
	content: '';
	position: absolute;
	top : 0;
	left : 0;
	width: 100%;
	height: 50vh;
	background : rgba(0, 0, 0, 0.5);
	z-index: -1;
}

.hero-page .navbar {
	padding: 20px 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 70px;
	background: #000;
	opacity: 0.7;
	position: fixed;
	top : 0;
}

.hero-page .navbar .logo {
	font-size: 2rem;

}

.hero-page .navbar .logo a {
	color :white;
	text-decoration: none;
}

.hero-page .navbar ul {
	display: flex;
	list-style: none;
}

.hero-page .navbar ul li {

}

.hero-page .navbar ul li a {
 text-decoration: none;
 padding: 20px 30px;
 font-size: 1.5rem;
 color : white;
}

.hero-page .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 850px;
	margin: 0 auto;
	height: 100%;
	padding: 20px;
}

.hero-page .content h1 {
	z-index: -1;
	color : white;
	opacity: 0;
	font-weight: bolder;
	font-size: 5rem;
	text-align: center;
	padding-bottom: 20px;
	animation: animPage 3s forwards ease-in-out;
}

.hero-page .content h3 {
	z-index: -1;
	opacity: 0;
	text-transform: uppercase;
	color : white;
	font-weight: 100;
	font-size: 2rem;
	text-align: center;
	padding-bottom: 20px;
	animation: animPageh3 4s forwards ease-in-out;
}

@keyframes animPage {
	to {
		opacity: 1;
		transform: translateY(10px);
	}
}

@keyframes animPageh3 {
	to {
		opacity: 1;
	}
}

.flex-page {
	padding: 20px;
}

.flex-page h1 {
	padding-top: 30px;
	padding-bottom: 20px;
	font-size: 3rem;
	text-transform: uppercase;
	text-align: center;
}

.flex-page h3 {
	padding-top: 20px;
	padding-bottom: 10px;
	font-weight: 700;
}

.flex-page .row {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	height: 100%;
	
}

.flex-page .row-reverse {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
}

.flex-page .row .col {
	display: flex;
	flex-direction: column;
	flex : 1;
	padding: 20px;
	max-width: 100%;
	height: 100%;
	
}



.flex-page .row .col-2 {
	padding: 20px;
}

/*form*/

.form-container {
	padding: 10px;
	
}

.form-container label {
	display: block;
}

.form-container input[type="text"], select, option {
	background: white;
	width: 100%;
	padding: 10px;
	margin: 15px 0;
	border-radius: 10px;
	border: 0;
}

.form-container input:focus {
	
	background: var(--bg-light);

	outline: none !important;
    border:1px solid var(--primary-color);
}

.form-container .btn-submit {
	border: 0;
	display: inline-block;
	width: 100%;
	margin-top: 10px;
	text-align: center;
	padding: 15px 25px;
	background: var(--primary-color);
	color : white;
	border-radius: 10px;
	font-size: 1rem;
	cursor: pointer;
}

.form-container .btn-submit:hover {
	background: orange;
	
}


/*projects*/

.projects {
	position: relative;
	width: 100%;
	height: 100vh;
	z-index: 1;
}


.projects.case-1{

	background-image: url('https://dublinwebdesign.ie/assets/szd.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 0

}
.projects.case-2{

	background-image: url('https://dublinwebdesign.ie/assets/fsms.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 0
}

.projects.case-3{

	background-image: url('https://dublinwebdesign.ie/assets/xzib.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 0
}

.projects:before {
	content: '';
	position: absolute;
	top :0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgb(0, 0, 0, 0.5);
	z-index: -1;
}

.projects .row-projects {

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 20px
}

.projects .row-projects .project-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height : 100%;
	margin: auto;
	
}

.project-padd {
	margin-top: 0px;
	padding: 70px 0px 50px 0px;
	z-index: 2;
}

.project-padd h1 {
	text-align: center;
	text-transform: uppercase;
	font-weight: 100;
}

.projects div {
	text-align: center;
}

.projects .project-content h1 {
	text-align: center;
	margin: auto;
	color : white;
	padding: 100px 0 20px 0;
	font-size: 2rem;
	font-weight: 100;
}

.projects .project-content p {
	color : white;
	font-size: 1.20rem;
	font-weight: 100;
	padding: 20px;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.projects .project-content .btn-project-next {
	display: inline-block;
	padding: 15px 25px;
	background: var(--primary-color);
	color : white;
	margin: 10px 15px;
	border-radius: 10px;
	text-decoration: none;
	text-transform: uppercase;
}

.projects .project-content .btn-project-prev {
	display: inline-block;
	padding: 15px 25px;
	background: var(--secondary-color);
	color : black;
	margin: 10px 15px;
	border-radius: 10px;
	text-decoration: none;
	text-transform: uppercase;
}

.projects .project-content .btn-project-prev:hover,
.projects .project-content .btn-project-next:hover {
	background: white;
	color : black;
}


/*footer*/


.flex-footer .row {
	padding: 20px;
	color : white;
	font-size: 100;
	display: flex;
	flex-direction: row;
	/*justify-content: center;
	align-items: center;*/
}

.flex-footer .row .col{
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex : 1;
	height: 100%;
}

.flex-footer .row .col h4{
	color : var(--primary-color);
	border-bottom: 1px sold white;
	margin-bottom: 20px;
	font-weight: 100;
	font-size: 1.30rem;

}

.flex-footer .row .col i{
	color : white;
	padding-right: 15px;

}

.flex-footer .row .col ul{
	list-style: none;
	line-height: 1.5rem;

}

.flex-footer .row .col a{
	color : var(--primary-color);
	text-decoration: none;

}


.footer-bottom {
	width: 100%;
	height: 50px;
	text-align: center;
	color: white;
	padding: 20px;
	background: #464746;
}



/*mobile*/


@media (max-width : 850px) {

.hero .navbar {
	display: flex;
	flex-direction: column;
	background: black;
	height: 170px;
}

.hero .content h1 {
	text-align: center;
	font-size: 3rem;
}

.hero .navbar ul li a {
	font-size: 1rem;
	padding : 5px 5px;
}

.hero-page .navbar {
	display: flex;
	flex-direction: column;
	background: black;
	height: 170px;
}

.hero-page .content h1 {
	text-align: center;
	padding-top: 150px;
	font-size: 2rem;
}

.hero-page .navbar ul li a {
	font-size: 1rem;
	padding : 5px 5px;
}


.flex-items .row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


.flex-items .row .col{
	border-bottom: 1px solid black;
}

.flex-columns .row {
	display: flex;
	flex-direction: column;
	/*justify-content: center;
	align-items: center;*/
}

.flex-footer .row {
	display: flex;
	flex-direction: column;

}
.flex-footer .row .col{
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex : 1;
	height: 100%;
}

.flex-footer .row .col p{
	text-align: center;
}

.flex-grid .row  {
	flex-direction: column;
}

.flex-grid .row {
	flex-wrap: nowrap;
}

.flex-grid .row .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex : 1;
	max-width: 100%;
	padding: 10px;

}

.flex-page .row-reverse,
.flex-page .row {
	flex-direction: column;
}


.projects {
	height: 100%;
}


}