/* CSS RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1, h2, h3, h4, p, li, a, strong, span {
    font-family: 'Titillium Web', sans-serif;
}
/* STYLES */

body {
    overflow-x: hidden;
}

p {
    line-height: 20px;
}

h3 {
    color: #0C1878;
    font-weight: 600;
    font-size: 24px;
    margin: 30px 0;
}

.heading-white {
    color: #fff;
    margin: 10px 0;
}

strong {
    color: #0C1878;
    font-weight: 600;
}

.page-top {
    background: url('../assets/top-banner.jpg') no-repeat;
    background-size: cover;
    min-height: 500px;
    background-position: right;
}

.page-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}

.page-nav {
    transition: 0.3s ease-in transform;
    
}




.nav-ul {
    list-style-type: none;
    display: flex;
    margin-top: 50px;
}

.nav-li {
    padding: 0 10px;
}

.nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    transition: 0.2s all;
}

.nav-link:hover,
.active-link {
    border-bottom: 4px solid #0C1878;
    color: #fff;
}

.mobile-nav {
    background: #0C1878;
    position: absolute;
    right: 0;
    padding: 50px 100px;
    height: 100vh;
    z-index: 2;
    transform: translateX(1000px);
    display: block;
}

.show-menu {
    transform: translateX(0);
}

.mobile-ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

.mobile-li {
    padding: 10px 0;
}

.mobile-a:hover, .mobile-a.active-link  {
    color: #455aff;
}



.mobile-a {
    font-size: 24px;
}

.logo {
    background: #fff;
    padding: 30px;
    box-sizing: border-box;
    max-width: 200px;
    border-radius: 0px 0px 30px 30px;
    top: -300px;
    position: absolute;
}

.page-title {
    width: 100%;
    height: 100%;
    position: relative;
}

.page-title h1 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: absolute;
    right: 1500px;
    top: 80px;
   
}

.hamburger {
    position: absolute;
    top: 40px;
    right: 20px;
    display: none;
    z-index: 3;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after,
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger:focus {
    outline: none;
}
  
.hidden {
    display: none;
}


.features {
    text-align: center;
    margin-top: -50px;
}

.features .col-md-4 {
    padding: 20px;
}

.feature-box {
    background: #fff;
    border-radius: 25px;
    padding: 20px;
    box-shadow:1px 1px 17px 7px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0C1878;
    margin-top: 30px;
    margin-bottom: 10px;
}


.map {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
}


.costs {
    border-radius: 25px;
    background-color:#E31E24;
    background-image: url('../assets/money.svg');
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: right;
    padding: 30px;
    color: #fff;
    margin: 50px 20px 0px 20px;
}

.page-footer {
    background: #0C1878;
    padding: 50px 0;
    color: #fff;
    margin-top: 50px;
    text-align: center;
}

.phone::before {
    content: '';
    height: 30px;
    width: 30px;
    display: block;
    background: url('../assets/phone.svg') no-repeat;
    background-repeat: no-repeat;
}

.phone {
    font-weight: 600;
    font-size: 24px;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.copyright {
    background: #E31E24;
    padding: 20px 0;
    color: #fff;
    font-size: 14px;
}

.copyright .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;;
    text-align: center;
}

.copyright a {
    color: #fff;
}

.gallery img {
    border-radius: 30px;
    margin-top: 30px;
}





@media(min-width: 768px) {
    .features {
        margin-top: -100px;
    }
    
    .feature-box {
        min-height: 300px;
    }

    .page-title h1 {
        text-align: left;
        margin-right: -200px;
    }

    .page-title {
        width: 50%;
    }

    .costs {
        margin: 0;
    }

}

@media(min-width: 480px) {
    .page-title h1 {
        font-size: 66px;
        margin-top: 80px;
    }

    .page-top {
        min-height: 700px;
    }



    .logo {
        max-width: 300px;
    }
    
}

@media(min-width: 992px) {
    .page-nav li {
        padding: 0 10px;
    }

    .feature-box {
        padding: 50px;
    }

    .copyright .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .page-title h1 {
        text-align: left;
        margin-right: 0;
        margin-top: 0px;
    }
    
}