/* 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;
  --deep-teal-blue: #255A7A;   /* closest CSS name: SteelBlue */
  --bright-aqua:    #64CECA;   /* closest CSS name: MediumTurquoise */
  --pale-aqua:      #A6E3E1;   /* closest CSS name: PaleTurquoise */
  --soft-mint:      #DBF2F2;   /* closest CSS name: Azure */
  --medium-teal:    #2EBEB8;   /* closest CSS name: LightSeaGreen */
}

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: 'Electrolux';
    src: url('../fonts/Electrolux\ Sans.otf') format("opentype");
    font-weight: 400;
    font-style: normal;
}

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

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


h1, .h1,
h2 {
    font-weight: 700;
}

/* colors */
.bg-deep-teal-blue {
    background-color: var(--deep-teal-blue);
}
.bg-pale-aqua {
    background-color: var(--pale-aqua);
}
.bg-soft-mint {
    background-color: var(--soft-mint);
}
.bg-bright-aqua{
    background-color: var(--bright-aqua);
}
.bg-medium-teal{
    background-color: var(--medium-teal);
}

.text-deep-teal-blue {
    color: var(--deep-teal-blue) !important;
}
.text-medium-teal {
    color: var(--medium-teal) !important;
}
.text-soft-mint {
    color: var(--soft-mint) !important;
}
.text-pale-aqua {
    color: var(--pale-aqua) !important;
}


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

header.fixed {
    background-color: var(--deep-teal-blue);
}
header #logo, header.fixed #logo-white{
    display: none;
}
header.fixed #logo{
    display: block;
}

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%;
}
header .small-icon{
    height: 25px;
}
.nav {
    font-weight: 700;
    font-size: 1rem;
}

.nav a {
    letter-spacing: initial;
    text-transform: uppercase;
    color: var(--deep-teal-blue);
}

header.fixed .nav a{
    color: var(--medium-teal)
}

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;
}
.large-site-width {
    max-width: var(--large-site-width) !important;
    margin: 0 auto;
}

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

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

.home-banner{
    background-image: url("../images/Pinewood\ Banner\ top.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    min-height: 90vh;
}

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

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

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

h3{
    font-size: 1.5rem;
    line-height: 2rem;
}
.what-we-do-icon{
    width: 150px !important;
    height: 150px !important;
    padding: 20px;
}
.values-icon{
    height: 120px;
    width: auto;
}
.btn{
    text-transform: uppercase;
    border-radius: 25px;
    font-weight: 700;
    padding: 10px 20px;
}

.btn.btn-primary{
    color: var(--deep-teal-blue);
    background-color: var(--medium-teal);
    border-color: var(--medium-teal);
}
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover{
    color: var(--deep-teal-blue);
    background-color:#FFF;
    border-color: #FFF;
}
.btn.btn-secondary{
    color: var(--soft-mint);
    background-color: var(--deep-teal-blue);
    border-color: var(--deep-teal-blue);
}
.btn.btn-secondary:active,
.btn.btn-secondary:focus,
.btn.btn-secondary:hover{
    color: var(--deep-teal-blue);
    background-color:var(--bright-aqua);
    border-color:var(--bright-aqua);
}

input.form-control,
textarea.form-control{
    border:1px solid var(--deep-teal-blue);
    background-color: transparent;
    padding:5px 10px 5px 20px;
    outline: none;
    border-radius: 25px;
    color: var(--deep-teal-blue);
}
input.form-control::-webkit-input-placeholder,
textarea.form-control::-webkit-input-placeholder{
    color: var(--deep-teal-blue);
}
textarea.form-control{
    resize: none;
}
.rounded-border{
    border-radius: 25px;
}

button[type=submit]{
    background: none;
    border:none;
}
#googleMap{
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}
#googleMap iframe{
    display: block;
}

.icon{
    max-height: 50px;
}
.list-style-disc li{
    list-style-type: disc;
    margin-left: 20px;
}
main{
    overflow-x: hidden;
}
#harmony-difference{
    background-image: url("../images/the-harmony-difference-banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    height: 70vh;
    min-height: 500px;
}
#harmony-info{
    background-image: url("../images/icon\ for\ location\ section.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    min-height: 500px;
    height: 50vh;
}

.apploi .search-job-container input{
    width: 80%;
}
.apploi .apploi-drop-down select{
    width: 100%;
}
.apploi #jobs-card-list{
    max-height: 320px;
    overflow-y: scroll;
}
/* curves */
.top-left-curve {
	border-top-left-radius: 250px;
}

.bottom-right-curve {
	border-bottom-right-radius: 250px;
}
.bottom-left-curve {
	border-bottom-left-radius: 250px;
}

.bottom-left-curve + .bg-pattern.bg-soft-mint::before{
    background-color: var(--soft-mint);
    background-image: url("../images/pattern-white.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% + 250px);
    top: -250px;
    left: 0;
    z-index: -1;
}
.bottom-left-curve + .bottom-right-curve::before{
	border-bottom-right-radius: 250px;
}
.bottom-right-curve + .bg-deep-teal-blue::before{
    content: '';
    position: absolute;
    top: -300px;
    background-color: var(--deep-teal-blue);
    left: 0;
    width: 100%;
    height: 310px;
    z-index: -1;
}

.bottom-right-curve + .bg-soft-mint::before{
    content: '';
    position: absolute;
    top: -300px;
    background-color: var(--soft-mint);
    left: 0;
    width: 100%;
    height: 310px;
    z-index: -1;
}


@media (max-width: 768px){    
    .top-left-curve {
        border-top-left-radius: 50px;
    }
    .bottom-right-curve {
        border-bottom-right-radius: 50px;
    }
    .bottom-left-curve {
        border-bottom-left-radius: 50px;
    }
    .bottom-right-curve + .bg-deep-teal-blue::before{
        top: -50px;
        height: 50px;
    }
}
/* end curves */


@media (max-width: 1500px){   
    .home-banner{
        min-height: 60vh;
    }
    h1, .h1{
        font-size: 4rem;
        line-height: 4.5rem;
    }
    #work-with-us > .container::after{
        right: -100px;
    }
}


@media screen and (orientation: portrait) {

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

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


@media (max-width: 1024px){    
    .home-banner{
        min-height: 60vh;
        background-image: linear-gradient(60deg, var(--deep-teal-blue), transparent), url("../images/Pinewood\ Banner\ top.jpg");
    }
    h1, .h1{
        font-size: 4rem;
        line-height: 4.5rem;
    }
    h2{
        font-size: 2.5rem;
        line-height: 3rem;
    }
    body{
        font-size: 1.3rem;
        line-height: 1.8rem;
    }
    
    #harmony-difference{
        background-image: linear-gradient(60deg, var(--deep-teal-blue), transparent), url("../images/the-harmony-difference-banner.png");
        height: 50vh;
        min-height: 400px;
    }

    #work-with-us > .container::after{
        content: none;
    }
}


@media (max-width: 992px){    
    h1, .h1{
        font-size: 3rem;
        line-height: 3.5rem;
    }
    h2, .h2{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    body{
        font-size: 1.2rem;
        line-height: 1.7rem;
    }
}

@media (max-width: 768px){    
    header .logo-container img.small {
        max-width: 140px;
    }

    footer img.logo{
        width: 170px;
    }
    .h3{
        font-size: 1.4rem;
        line-height: 1.8rem;
    }
    #harmony-info{
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 575px){    
    
    .home-banner h1, .h1{
        font-size: 2rem;
        line-height: 2.5rem;
        color: #FFF !important;
    }
}

