/* 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;
    --large-site-width: 1600px;
    --light-steel-blue-tint: #D7E2ED;  /* closest CSS name: LightSteelBlue */
    --deep-teal-navy:        #13445F;  /* closest CSS name: MidnightBlue */
    --medium-azure-blue:     #3376A6;  /* closest CSS name: SteelBlue */
    --frost-white:           #EAF0F7;  /* closest CSS name: AliceBlue */
    --medium-steel-blue:   #3276A6;  /* closest CSS name: SteelBlue */
    --purple: #7E69AF;
}

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;
}

textarea.form-control {
    resize: none;
}

@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;
}

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

@font-face {
    font-family: 'SharpSans';
    src:  url('../fonts/Sharp\ Sans\ Medium.otf') format("opentype");
    font-weight: 400;
}
@font-face {
    font-family: 'SharpSans';
    src:  url('../fonts/Sharp\ Sans\ Extrabold.otf') format("opentype");
    font-weight: 700;
}
/* specifics */
body {
    font-family: 'SharpSans', sans-serif;
    color: var(--deep-teal-navy);
    text-align: center;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.1rem;
}

.font-serif{
    font-family: 'adelle', serif;
}

header .nav-item a, .nav a{
    color: var(--deep-teal-navy);
    text-decoration: none;
}
header .nav-item.active a,
header .nav-item a:hover,
header .nav-item a:active,
header .nav-item a:focus{
    border-bottom: 1px solid var(--deep-teal-navy);
}
.text-underline{
    text-decoration: underline;
}

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

header.fixed {
	background: #FFF;
	top: 0;
}

h1{
    font-size: 4rem;
    line-height: 4.5rem;
}
.h2{
    font-size: 3rem;
    line-height: 3.5rem;
}

.h3{
    font-size: 2.5rem;
    line-height: 3rem;
}
.h5{
    font-size: 1rem;
    line-height: 1.5rem;
}
.h6{
    font-size: 0.8rem;
}

.btn{
    padding: .5rem 1.5rem;
    border-radius: 25px;
}

.btn-outline-primary{
    border-color: var(--deep-teal-navy);
    color: var(--deep-teal-navy);
}

.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:hover{
    background-color: var(--deep-teal-navy) !important;
    color: #FFF !important;
    border-color: var(--deep-teal-navy) !important;
}

.btn-outline-secondary{
    border-color: var(--purple);
    color: var(--purple);
}

.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary:hover{
    background-color: var(--purple) !important;
    color: #FFF !important;
    border-color: var(--purple) !important;
}

input.form-control, textarea.form-control{
    border: none;
    outline: none;
    border-radius: 0;
    border-bottom: 1px solid var(--medium-steel-blue);
    background:transparent;
    resize: none;
}
input.form-control::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder{
    color: var(--medium-steel-blue);
}
.dropdown-toggle::after{
    content: none;
}
.nav-item .nav-link.dropdown-toggle{
    border-bottom: none;
}

footer nav a{
    display: block;
}

.text-blue{
    color: var(--medium-steel-blue);
}
.text-purple{
    color: var(--purple);
}
.bg-deep-teal-navy{
    background-color: var(--deep-teal-navy);
}
.bg-frost-white{
    background-color: var(--frost-white);
}

.banner{
    background-image: url("../images/gradient_background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 850px;
    height: 100vh;
}

.banner-img-container{
    padding-top: 110px;
    padding-bottom: 20px;
}


.banner .banner-img{
    width: 100%;
    max-width: 700px;
}


#where-we-operate{
    background-image: url("../images/where-we-operate.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.icon{
    height: 100px;
    width: auto;
}
.small-icon{
    height: 50px;
    width: auto;
}
.quote-box {
  position: relative;
}

/* Opening ornament quote */
.quote-box::before {
  content: "“";
  position: absolute;
  top: 2rem;      /* farther above */
  left: -5rem;     /* farther left */
  font-size: 12rem; /* oversized */
  color: var(--medium-azure-blue);
  font-family: sans-serif;
  pointer-events: none;
}

/* Closing ornament quote */
.quote-box::after {
  content: "”";
  position: absolute;
  bottom: -4rem;   /* farther below */
  right: -4rem;    /* farther right */
  font-size: 12rem; /* oversized */
  color: var(--medium-azure-blue);
  font-family: sans-serif;
  pointer-events: none;
}
.bg-dots{
    position: relative;
}
.bg-dots::before{
    background-image: url("../images/dots\ pattern\ background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    z-index: -1;
    content: '';
    position: absolute;
    top: -350px;
    left: 0;
    height: calc(100% + 350px);
    width: 100%;
}
.bg-dots.flipped::before{
  top: 0;
  left: unset;
  right: 0;
  transform: scale(-1, -1);
}

.border-deep-teal-navy{
    border: 1px solid var(--medium-azure-blue);
}

.rounded-border{
    border-radius: 25px;
}
.dot-list{
    list-style: disc;
    margin-left: 1.5rem;
}

@media (max-width: 1700px){   
    .site-width {
        max-width: var(--site-width) !important;
    }
}

@media (max-width: 1600px){
    .bg-dots::before{
        top: -250px;
        height: calc(100% + 250px);
    }
}


@media (max-width: 1024px){

    h1{
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .banner {
        height: 40vh;
        min-height: 500px;
    }
    .banner .banner-img{
        max-width: 70%;
    }
    .banner-img-container{
        padding-top: 70px;
        padding-bottom: 10px;
    }
}

@media (max-width: 992px){
    body {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    header .logo{
        max-height: 100px;
    }
    header.fixed .logo{
        max-height: 70px;
    }
    .h2{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .h3{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .h4{
        font-size: 1.2rem;
        line-height: 1.7rem;
    }

    .banner h1{
        color: #FFF;
        text-shadow: 2px 2px var(--deep-teal-navy);
    }
    .banner h2{
        text-shadow: 1px 1px var(--deep-teal-navy);
    }
    .bg-dots::before{
        top: -150px;
        height: calc(100% + 150px);
    }
    .banner{
        position: relative;
        min-height: auto;
        height: auto;
    }

    .banner .banner-text{
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 768px){
    h1, .h2{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .h3{
        font-size: 1.4rem;
        line-height: 2rem;
    }

    footer .logo{
        max-width: 150px;
    }

    .quote-box::before {
        top: 0;      /* farther above */
        left: -0;     /* farther left */
        font-size: 8rem; /* oversized */
        z-index: 22;
    }

    /* Closing ornament quote */
    .quote-box::after {
        bottom: -4rem;   /* farther below */
        right: 0;    /* farther right */
        font-size: 8rem; /* oversized */
    }
    .dot-list{
        list-style: disc inside;
        margin-left: 0;
    }

    .circle-of-dots{
        max-width: 40px;
    }
    .font-sm-small{
        font-size: 1rem;
    }
    .icon {
        height: 70px;
    }
    .home-page .bg-dots::before{
        background-image: url("../images/home\ pattern\ mobile.png");
    }
    .banner h1{
        color: var(--deep-teal-navy);
        text-shadow: none;
    }

}

@media (max-width: 500px){
    .h2 {
        font-size: 1.6rem;
        line-height: 2.1rem;
    }
}