/* Reset CSS
 * --------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

table {
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

strong {
    font-weight: bold;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

caption,
th {
    text-align: left;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

/* GENERAL CSS
 * --------------------------------------- */

:root {
    --site-width: 1300px;
    --navy: #223970;
    --gray: #D6D7D9;
    --silver: #9EB0C2;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

img {
    max-width: 100%;
}

/** animated **/

.animated {
    opacity: 0;
}

.animatedParent {
    overflow: hidden;
}

@media (max-width: 590px) {
    .animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        opacity: 1;
    }
}

/** no break **/

.nobr,
.nobr-small {
    white-space: nowrap;
}

/* general */

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/ManropeMedium.otf') format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/ManropeBold.otf') format("opentype");
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0em;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
}


h1,
h2 {
    font-weight: 700;
}

/* colors */
.bg-navy {
    background-color: var(--navy);
}

.bg-gray{
    background-color: var(--gray);
}

.text-navy {
    color: var(--navy) !important;
}
.text-silver {
    color: var(--silver) !important;
}

/** header **/
header.container-fluid {
    padding: 0;
    transition: all 0.5s ease;
    z-index: 14;
    background: #FFF;
}

header.fixed {
    top: 0;
    position: fixed;
}

header .menu-container {
    min-height: 90px;
}

header.fixed .menu-container {
    min-height: 80px;
}

header .logo-container img {
    max-width: 300px;
    max-height: 100%;
}

header .logo-container img.small {
    max-width: 200px;
}

header .logo-container a {
    display: inline-block;
    padding: 1%;
    height: 100%;
}

.nav {
    font-weight: 700;
    font-size: 1rem;
}

.nav a {
    letter-spacing: initial;
    text-transform: uppercase;
}

header .nav-pills .nav-link {
    position: relative;
    margin-right: 10px;
    border-radius: 0px;
    text-transform: none;
}

header .fa-bars {
    font-size: 1.4rem;
}

#mobile-navbar ul li {
    padding: 10px;
    text-align: left;
}

#mobile-navbar ul li a {
    position: relative;
}

#mobile-navbar ul li i {
    float: right;
}

#header-content>div {
    max-height: 100%;
}

/** top nav **/
.top-navigation {
    z-index: 15;
    padding-bottom: 10px;
    min-height: 70px;
}

header.fixed .top-navigation {
    min-height: 60px;
}

.top-navigation .nav-pills .show>.nav-link {
    background-color: inherit;
}

/* site width */
.site-width {
    max-width: var(--site-width) !important;
    margin: 0 auto;
}

.text-underline{
    text-decoration: underline;
}

.bg-pattern{
    background-image: url("../images/pattern.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-banner{
    background-image: url("../images/header\ pic.png?v=1");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left top;
    min-height: 90vh;
}

h1{
    font-size: 5rem;
    line-height: 5.5rem;
}

h2{
    font-size: 3rem;
    line-height: 3.5rem;
}

h3{
    font-size: 1.5rem;
    line-height: 2rem;
}
.service-icon{
    width: 55px !important;
    max-width: unset;
}

input.form-control,
textarea.form-control{
    border:none;
    border-bottom: var(--navy) 1px solid;
    padding:2px;
    outline: none;
    border-radius: 0;
}
textarea.form-control{
    resize: none;
}

.btn-primary{
    background-color: var(--silver);
    border-color: var(--silver);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
    background-color: var(--navy);
    border-color: var(--navy);
}

.rounded-border{
    border-radius: 25px;
}
@media (max-width: 1500px){   
    .home-banner{
        min-height: 60vh;
    }
    h1{
        font-size: 4rem;
        line-height: 4.5rem;
    }
}


@media screen and (orientation: portrait) {

    .home-banner{
        min-height: 50vh;
    }
}

@media (max-width: 1200px){    
    h1{
        font-size: 4rem;
        line-height: 4.5rem;
    }
}


@media (max-width: 1024px){    
    .home-banner{
        min-height: 50vh;
    }
    h1{
        font-size: 4rem;
        line-height: 4.5rem;
    }
}


@media (max-width: 992px){    
    .home-banner{
        min-height: 30vh;
    }
    h1{
        font-size: 3rem;
        line-height: 3.5rem;
    }
    body{
        font-size: 1.2rem;
        line-height: 1.7rem;
    }
}

@media (max-width: 768px){    
    header .logo-container img.small {
        max-width: 140px;
    }
    .home-banner{
        background-image: url("../images/headermobile.png");
        min-height: 50vh;
        background-size: cover;
        background-position: top right;
    }
    h2{
        font-size: 2rem;
        line-height: 2.5rem;
    }

    footer img.logo{
        width: 170px;
    }
}

@media (max-width: 575px){    
    .home-banner{
        min-height: 35vh;
    }
    h1{
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

