@import url("https://fonts.googleapis.com/css?family=Raleway|Open+Sans|Amaranth&display=swap");

/*--- 
theme colors: 
    black: #000000
    blue: #0048ba - absolute zero 
    red: #e51d23 - lust pink-red
    gray-text: #555555
    gray-background: #e3e4e5 - platinum
    gray-border: #b9babb
---*/

body { 
	background: transparent;
	font-family: 'Raleway', sans-serif;
	font-size: 0.875em;
	line-height: 1.5em;
	color: #000000;
    margin: 0;
    padding: 0;
    max-width: 95vw; /*1440px*/
}

ul, li { list-style: none; }

.fleft { float: left; }
.fright { float: right; }
.align-left{float:left;margin:0 1em .5em 0;max-width:50%}
.align-right{float:right;margin:0 0 .5em 1em;max-width:50%}
.align-center{display:block;margin:1.5em auto}

.clear { clear: both; }

.text-right { text-align: right; }
.text-center { text-align: center; }

@media only screen and (max-width: 477px){
    .alignleft,.alignright{ float:none;display:block;margin:25px auto;max-width:100%;width:auto}
    .cols .col2, .cols .col3,.cols .col4,.cols .col3x2{float:none;margin-right:0;width:100%}
}

/*===== images | figures =====*/
figure { 
    margin: 0;
    padding: 0;
}

img {
	max-width: 100%;
    height: auto;
    border:0;
	vertical-align:middle;
	text-align:left;
    pointer-events: none;
}

/*===== tables =====*/
table {width:100%}
table th {background:#e3e4e5;padding:.5em;border-right:.0625rem solid white}
table td {border-bottom:solid .0625rem #555555;padding:.5em}

/*===== txt, links, lines, titles =====*/
p { 
    margin-bottom: 1em;
}

a {
	color: #000000;
    outline: none;
	text-decoration: none;
}

    a:hover, a:active {
        color: #e51d23;
        text-decoration: none;
    }

/*--- titles ---*/
h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 2em;
	line-height: 1.2em;
	font-weight: normal;
	letter-spacing: -0.03125em;
	margin-bottom: 0.625em;
}

h1::after {
    width: 3em;
    height: 0.125em;
    content: "";
    background: #e51d23;
    position: relative;
    display: block;
    margin: 10px 0;
}

h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.75em;
	line-height: 1.2em;
	font-weight: normal;
	letter-spacing: -0.03125em;
	margin-bottom: 0.625em;
}
	h2 a {
	color: #000000;
	text-decoration: none;
	}
		h2 a:hover {
		color: #b87100;
        text-decoration: none;
		}

h3 {
	font-family: 'Open Sans', sans-serif;
    font-size: 1.5em;
	line-height: 1.2em;
	font-weight: normal;
	letter-spacing: -0.03125em;
	color: #0048ba;
	margin-bottom: 0.625em;
}
	h3 a {
		color: #0048ba;
		text-decoration: none;
	}
		h3 a:hover {
			color: #e51d23;
            text-decoration: none;
		}

h4 {
	font-family: 'Open Sans', sans-serif;
    font-size: 1.25em;
	color: #0048ba;
	line-height: 1.2em;
	margin-bottom: 0.625em;
}
	h4 a {
		color: #0048ba;
		text-decoration: none;
	}
        h4 a:hover {
            color: #e51d23;
            text-decoration: none;
        }

.wrapper { 
	width: 100%;
    max-width: 97vw;
    margin: 0 auto;
	overflow: hidden;
}

.container { 
	width: 100%;
    max-width: 97vw;
    margin: 0 auto;
}

/*===== header =====*/
header{
    background: transparent;
	font-family:'Raleway', 'Open Sans', sans-serif;
}

.header-top { 
	background: #e3e4e5;
    padding: 0.75em;
    position: fixed; /*- fixed menu -*/
    left: 0;
    top: 0;
    right: 0;
    border-bottom: 0.0625rem solid #b9babb;
    z-index: 5;
    display: table;
}

/*----- logo -----*/
.logo {
    display: table-cell;
    width: 40%;
    margin: 0.5em;
    padding: 0;
}

.logo img {
    width: 33%
}

/*----- menu ----*/
.menu-icon {
    display: none;
}

.menu-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0c9";
    color: #e51d23;
    margin-right: 0.5em;
}

.header-menu {
    display: table-cell;
    width: 60%;
    text-align: right;
}

.header-menu ul {
	margin: 0;
    padding: 0;
}
	.header-menu ul li {
		display:inline-block; /*- side by side -*/
	}
		.header-menu ul li a {
			display: block;
			padding: 0.5em 1em;
            transition: all 0.2s linear;
            border-radius: 0.5em;
			text-decoration: none;
			text-transform: capitalize;
			background: none;
		}
		.header-menu li a:hover {
            background: #e51d23;
            border-radius: 1em;
            color: white;
			text-decoration: none;
		}

/*----- cover header & slogan ----*/
.header-cover {
    background: url(../images/header-bg.png) no-repeat top/contain;
    height: 50vw;
    max-height: 720px;
    width: 100%;    
}

.header-logo {
    width: 40%;
}

.slogan {
    padding-top: 0%;
    padding-bottom: 0%;
    font-family: 'Amaranth', sans-serif;
    font-size: 3em;
    font-weight: 400;
    font-style: normal;
    line-height: 1em;
    letter-spacing: 0.125em;
    text-align: center;
    text-transform: capitalize;
}
    .slogan span {
        display: block;
        padding: 0.5rem;
    }
        .slogan span.style1 {
            color: #555555;
        }
        .slogan span.style2 {
            font-size: 2em;
            line-height: 1.25em;
            color: #e51d23;
        }
        .slogan span.style3 {
            color: #555555;
        }

@media only screen and (max-width: 768px) {
    .slogan { font-size: 2em; }
}

@media only screen and (max-width: 576px) {
    .slogan { font-size: 1.5em; letter-spacing: 0.0625em; }
    .slogan span { padding: 0.25rem; }
    .slogan span.style2 { font-size: 1.5em; line-height: 1em; }
}

/*===== main =====*/
main {
	width:100%;
	margin:0 auto;
	padding:1em;
}

main ul li {
	background:none;
    padding:0;
}

section {
    border-bottom: solid 0.0625rem #b9babb;
    border-top: solid 0.0625rem #b9babb;
}



/*===== about-us =====*/
.about-us {
    padding:1em;
}

.about-us p {
    text-align: justify;
}

.about-us .icon {
    margin: 0 auto;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.about-icon {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    border-radius: 5rem;
    background: #e3e4e5;
    border: solid .0625rem #b9babb;
    text-align: center;
}

.about-icon img {
    vertical-align: middle; 
    width: 65%;

}

/*===== services =====*/
#services {
    padding:1em;
}

/*----- portfolio -----*/
.portfolio {
    display: flex;
    position: relative;
    max-width: 1440px;
    width: 90vw;
    align-content: center;
    justify-content: center;
    margin: 1em auto;
    padding: 0;
    overflow: hidden;
}

.portfolio-slide {
    display: flex;
    transform: translate3d(0, 0, 0);
    transition: all 600ms;
    animation-name: sliding;
    animation-duration: 10s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

.portfolio-img {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 1em;
    width: 31.25%;
    border: 0.125em solid #b9babb;
	overflow: hidden;
    box-sizing: border-box;
    border-radius: 0.5em;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    transition: all 0.25s;
}

.portfolio-img:hover img {
    filter: blur(1.5px);
    transition: all 0.25s;
}

.portfolio-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.25s;
}

.portfolio-img:hover:before {
    background: #e3e4e5;
    opacity: 0.75;
    z-index: 2;
    transition: all 0.25s;
}

.portfolio-img::after {
    content: "";
    position: absolute;
    width: 75%;
    height: 0.15em;
    background: #e51d23;
    left: 12.5%;
    top: 25%;
    opacity: 0;
    transition: all 0.25s;
}

.portfolio-img:hover:after {
    opacity: 1;
    z-index: 2;
    transition: all 0.25s;
}

.portfolio-txt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.25s;
}

.portfolio-txt h4, .portfolio-txt p {
    margin: 0.5em;
    padding: 0.5em;
    position: relative;
    opacity: 0;
    text-align: center;
    transition: all 0.25s;
}

.portfolio-img:hover .portfolio-txt h4, .portfolio-img:hover .portfolio-txt p {
    opacity: 1;
    animation-delay: 0.25s;
    transition: all 0.25s;
}

@keyframes sliding {
    0% {transform: translate3d(calc(-100% * 0), 0, 0);}
    20% {transform: translate3d(calc(-100% * 0), 0, 0);}
    
    25% {transform: translate3d(calc(-100% * 1.0), 0, 0);}
    45% {transform: translate3d(calc(-100% * 1.0), 0, 0);}

    50% {transform: translate3d(calc(-100% * 2.0), 0, 0);}
    70% {transform: translate3d(calc(-100% * 2.0), 0, 0);}
    
    75% {transform: translate3d(calc(-100% * 3.0), 0, 0);}
    100% {transform: translate3d(calc(-100% * 3.0), 0, 0);}
}

/*----- services -----*/
.service-info { text-align:justify }
.service-info .icon { display:block }
.service-info .icon .service-icon { margin:0 auto }
.service-icon {
    width:10rem;
    height:10rem;
    line-height:10rem;
    border-radius:10rem;
    background:#e3e4e5;
    border:solid .0625rem #b9babb;
    text-align:center;
}
.service-icon img { 
    vertical-align: middle; 
    width: 75%;
}

ul.check-list {
    padding-left: 1em;
}

.check-list li {
	background: none;
    margin: 0;
    padding-left: 1.5em;
    display: flex;
    align-items: center;
    position: relative;
}
    .check-list li::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f00c";
        color: #0048ba;
        position: absolute;
        top: 0;
        left: 0;
    }

.icon-at-lg::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.33333em; /*-- size lg --*/
    line-height: 0.75em; /*-- size lg --*/
    vertical-align: -.0667em; /*-- size lg --*/
    content: "\f1fa";
    color: #e51d23;
    margin-right: 0.5em;
}

/*===== contact-us =====*/
#contact-us {
    padding:1em;
}

.form-container{
    background: white;
    width: 80%;
    height: auto;
    margin: 3em auto;
    display: flex;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 0 2em #e3e4e5;
}

/*----- contact info -----*/
.contact-info{
    width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../images/contact_info_bg.jpg');
    background-size: cover;
    background-position: center center;
}

.contact-info::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #0048ba;
    opacity: 0.9;
}

.info-title, .info-items{
    position: relative;
    z-index: 2;
    color: white;
}

.info-title {
    display: block;
    text-align: center;
    margin-bottom: 1em;
}

.info-title h2 {
    text-align: center;
}

.info-items p, .info-items a {
    color: white;
    display: flex;
    align-items: center;
    margin: 0.25em;
    padding: 0.25em;
}

.info-items a:hover {
    color: #b9babb;
    display: flex;
    align-items: center;
    margin: 0.25em;
    padding: 0.25em;
}

.info-items p:nth-child(1) span{
    font-size: 2em;
    margin-right: 1em;
}

.info-items p:nth-child(2) span{
    font-size: 3em;
    margin-right: 1em;
    margin-left: 0.25em;
}

/*----- contact form -----*/
form {
    width: 65%;
    padding: 1.5em;
}

form h2 {
	color: #000000;
	margin-bottom: 2em;
}

form ul li {
	background:none;
	padding:0;
}

form .user-info {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
}

input, textarea, select {
	font-family: 'Raleway', sans-serif;
	font-size: 1em;
	vertical-align: middle;
	font-weight: normal;
    width: 100%;
    padding: 0.5em 0;
    margin-bottom: 1.25em;
    border: none;
    border-bottom: 0.125em solid #b9babb;
	color: #555555;
}

textarea {
    max-width: 100%;
    min-width: 100%;
    height: 5em;
    max-height: 100em;
    resize: none;
}

input:focus, textarea:focus {
    outline: solid 0.125em #b9babb;
    border-color: #0048ba;
}

button {
	background: #0048ba;
	font-family: 'Raleway', sans-serif;
	font-size: 1em;
	font-weight: normal;
    color: white;
    width: 8em;
    margin: 0.5em 1em;
	padding: 0.5em;
	border: none;
	border-radius: 1.5em;
    align-self: flex-end;
    float: right;
	cursor: pointer;
}

button:hover {
    background: #4091ec;
}

@media only screen and (max-width: 991px){
    .form-container{ width: 100%; }
}

@media only screen and (max-width: 767px){
    .form-container{ display: table; }
    .contact-info{ width: 100%; flex-direction: row; }
    .info-title, .info-items{ font-size: 0.80em; }
    .info-title { display: table-cell; width: 50%; margin: 0.5em; }
    .info-items { display: table-cell; width: 50%; }
    .info-items p, .info-items a { margin: 0.25em; padding: 0.125em; }
    .info-items a:hover { margin: 0.25em; padding: 0.125em; }
}

/*===== footer =====*/
footer {
	background: #e3e4e5;
    height:2em;
    margin: 0 auto;
    width: 100%;
	padding:1rem;
    border-top: 0.0625rem solid #b9babb;
    display: table;
}
	footer a {
		color:#000000;
	}
	footer a:hover {
		color:#e51d23;
	}
	footer img {
		position: relative;
		top:-0.1875rem;
	}

.copyright{
    display:table-cell;
    width:50%;
    padding:1em 0;
}

.footer-menu{
    display:table-cell;
    width:50%;
    padding:1em 0;
    text-align:right;   
}
    .footer-menu ul,.footer-menu li{
        margin:0;
        padding:0;
        list-style:none;
        background:0;
    }
    .footer-menu ul li{
        display:inline-block
    }
    .footer-menu ul li::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f7a5";
        color: #e51d23;
        padding:0 1em;
    }
    .footer-menu ul li a {
        color: #000000;
    }
    .footer-menu ul li a:hover {
        color: #e51d23;
    }

@media only screen and (max-width: 767px){
    footer { display:block; height: auto; padding:1em 0 }
    footer .copyright,footer .footer-menu { display:block; width:100%; padding:0.5em 0; text-align:left }
}

/*==========================================*/

/*===== REPONSIVE =====*/

@media only screen and (max-width: 767px) {
    .menu-icon {
        display: block;
        text-align: center;
        cursor: pointer;
}
    .header-menu { width: 50% }
    .header-menu ul { display: none; }
    .header-menu ul.show { display: block; }
    .header-menu ul li { display: inline-block; }
        .header-menu ul li a { 
            display: block;
            padding: 0.5rem 1rem ; 
            text-decoration: none;
            text-transform: capitalize;
            background: none;
        }
        .header-menu li a:hover {
            background: none;
            color: #e51d23;
            text-decoration:none;
        }
}

/*
@media (hover: none) { }

.container{
    display: grid;   
    grid-auto-flow: column;
}
*/