@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


:root {
    --grey: #F9FBFC;
    --blue: #32B3C5;
    --dark: #264145;
    --green: #207480;
    --lightBlue: #BCD7E3;
    --blueGrey: #EAF3F5;
    --buttonFontSize: 0.813rem;
    --curtain_full_width: 0%;
    --curtain_position_left: 0%;
    --curtain_transition: all .8s ease;
    --res_color: #EAF3F5;
    --comm_color: #BCD7E3;
    --manag_color: #207480;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
input, select, textarea {
    border-radius: 0;
}




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;
    font-family: "Lato";
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html {
    height: 100vh;
    width: 100vw;
}
body {
    line-height: 1;
    font-family: "Lato";
    background-color: white;
    height: 100vh;
    width: 100vw;
}
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;
}
button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
a, a:hover, a:visited, a:focus, a:active  {
    text-decoration: none;
    color: inherit;
    outline: 0;
}
input, input:active {
    border: none;
    outline: none;
}
:root {
    --grey: #F9FBFC;
    --blue: #32B3C5;
    --dark: #264145;
    --green: #207480;
    --lightBlue: #BCD7E3;
    --blueGrey: #EAF3F5;
    --buttonFontSize: 0.813rem;
    --headerFontSize: 1.188rem;
}

/*----------------- POSITIONING SETTINGS ------------------*/
.space-between-align-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*----------------- FLEX SET ------------------*/
.display-flex {
    display: flex;
    display: -webkit-flex;
}
.flex-shrink-one {
    flex-shrink: 1;
}
.display-none {
    display: none;
}
.space-between {
    justify-content: space-between;
}


/*----------------- BUTTONS ------------------*/

/* ***** BUTTON ***** */
.button {
    display: inline-block;
    box-sizing: border-box;
    font-size: var(--buttonFontSize);
    padding-bottom: 11px;
    cursor: pointer;
    margin-left: 20px;
    box-sizing: border-box;
    position: relative;
    padding-top: 11px;
    color: var(--dark);
    transition: .3s ease-out;
}
.button::before {
    content: "";
    height: 1px;
    width: calc(100%);
    background-color: var(--dark);
    position: absolute;
    top: 0;
    left: -20px;
    display: inline-block;
    box-sizing: border-box;
    transition: .3s ease-out;
}
.button::after {
    content: "";
    height: 1px;
    width: calc(100%);
    background-color: var(--blue);
    position: absolute;
    top: 32px;
    left: 20px;
    display: inline-block;
    box-sizing: border-box;
    transition: .3s ease-out;
}
body.hasHover .button:hover::before {
    top: 32px;
    left: 20px;
}
body.hasHover .button:hover::after {
    top: 0;
    left: -20px;
}
body.hasHover .button:hover {
    color: var(--blue);
}
/* ***** MENU BUTTON ***** */
.menu-button {
    cursor: pointer;
}
.menu-button p {
    font-size: var(--buttonFontSize);
    color: var(--dark);
    position: relative;
    transition: all .7s ease;
    width: 100%;
    overflow-wrap: normal;
}
.m-line {
    width: 30px;
    height: 1px;
    background-color: var(--blue);
}
.menu-button-lines {
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
    position: relative;
    transition: all .7s ease;
}
.menu-button-lines::before {
    content: '';
    width: 40px;
    height: 35px;
    top: -10px;
    left: -5px;
    position: absolute;
}
.m-line:nth-child(2) {
    opacity: 1;
    transition: all .3s ease;
}
.m-line:nth-child(1) {
    position: relative;
    top: 0;
    transition: all .7s ease;
}
.m-line:nth-child(3) {
    position: relative;
    bottom: 0;
    transition: all .7s ease;
}
/*----------------- TEXT SETTINGS ------------------*/
b {
    font-weight: normal;
}
h1 {
    line-height: 1.75rem;
}
h2 {
    font-size: 1.313rem;
    color: var(--green);
    padding-bottom: 35px;
    line-height: 1.563rem;
    font-weight: normal;
}
h5 {
    font-size: 1.05rem;
    color: var(--blue);
    padding-bottom: 10px;
    line-height: 1.55rem;
}
.paragraph {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5rem;
    font-weight: 300;
    transition: all .7s ease;
    opacity: 1;
}
.paragraph strong{
    font-weight: normal;
}
.paragraph p {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5rem;
    font-weight: 300;
}
.paragraph ol li {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5rem;
    font-weight: 300;
}
.paragraph ul li {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5rem;
    font-weight: 300;
}
h4 {
    font-size: 1.063rem;
    color: var(--green);
    margin-bottom: 70px;
    padding-right: 20px;
}
/* ----- link buttons ----- */
.green-menu-link {
    color: var(--green);
    font-size: 0.875rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.green-menu-link::before {
    content: "";
    position: absolute;
    background-color: var(--green);
    height: 1px;
    width: 0;
    top: 8px;
    left: 0;
    transition: all .7s ease;
}
body.hasHover .green-menu-link:hover::before {
    width: 20px;
}
.green-menu-link a{
    transition: all .7s ease;
    margin-left: 0;
    cursor: pointer;
    display: inline-block;
}
body.hasHover .green-menu-link a:hover{
    margin-left: 30px;
}
.green-menu-link p{
    position: relative;
    transition: all .7s ease;
    margin-left: 0;
    cursor: pointer;
    display: inline-block;
}
body.hasHover .green-menu-link p:hover{
    margin-left: 30px;
}
.green-menu-link p::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
body.hasHover .green-menu-link p:hover::before {
    left: -30px;
}
.green-menu-link a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
body.hasHover .green-menu-link a:hover::before {
    left: -30px;
}
.green-menu-link-active {
    color: var(--green);
    font-size: 0.875rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    cursor: inherit;
}
.green-sub-menu-link {
    color: var(--dark);
    z-index: 1;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}
.green-sub-menu-link::before {
    content: "";
    position: absolute;
    background-color: var(--dark);
    height: 1px;
    width: 0;
    top: 9px;
    left: 0;
    transition: all .7s ease;
}
body.hasHover .green-sub-menu-link:hover::before {
    width: 30px;
}
.green-sub-menu-link p {
    position: relative;
    transition: all .7s ease;
    margin-left: 0;
    cursor: pointer;
    display: inline-block;
}
body.hasHover .green-sub-menu-link p:hover {
    margin-left: 40px;
}
.green-sub-menu-link p::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    top: 0;
    left: 0;
    transition: all .7s ease;
}
body.hasHover .green-sub-menu-link p:hover::before {
    left: -40px;
    width: calc(100% + 40px);
}
.section-name-container {
    color: var(--blue);
    font-size: 30px;
    margin-left: 60px;
    padding-bottom: 75px;
    font-weight: 300;
    line-height: 32px;
}
.section-name-container p {
    /*padding-bottom: 2px;*/
    /*border-bottom: 1px solid var(--lightBlue);*/
    /*padding-top: 2px;*/
    padding-right: 120px;
    position: relative;
    padding-left: 15px;
}
.section-name-container p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--blue);
}
.section-name-container a {
    /*padding-bottom: 2px;*/
    /*border-bottom: 1px solid var(--lightBlue);*/
    /*padding-top: 2px;*/
    padding-right: 120px;
    position: relative;
    padding-left: 15px;
}
.section-name-container a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--blue);
}
.testimonials-header {
    font-size: 1.375rem;
    color: var(--dark);
    padding-bottom: 70px;
    font-style: italic;
    text-align: center;
}
.testimonials-text {
    font-size: 1.188rem;
    font-weight: 300;
    font-style: italic;
    color: var(--green);
    text-align: center;
    line-height: 1.813rem;
}
/*----------------- HEADER ------------------*/

.header-text {
    color: var(--dark);
    font-size: var(--headerFontSize);
}
.header-text h5 {
    color: var(--blue);
    font-size: var(--buttonFontSize);
    cursor: pointer;
    margin-left: 60px;
}
header {
    padding-bottom: 150px;
    padding-top: 90px;
}













/*----------------- LOADER ------------------*/
.loader-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 9999;
    transition: all 1.7s ease;
}
.l-loader-container {
    display: flex;
    height: inherit;
    width: 100%;
    background-color: var(--blueGrey);
}





.cursor-follower {
    position: absolute;
    background-color: var(--blue);
    width: 7px;
    height: 7px;
    /*border-radius: 100%;*/
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-2px, -34px);
}

html.has-scroll-smooth {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}


/*--- EXTRA SETTINGS FOR SMALL MOBILES ---*/

@media only screen and (max-width: 1640px) {
    .section-name-container p {
        padding-right: 60px;
    }
}
@media only screen and (max-width: 1280px) {
    header {
        padding-bottom: 150px;
    }
}
@media only screen and (max-width: 575px) {
    .section-name-container p {
        /*padding-right: 0;*/
    }
    h2 {
        padding-bottom: 30px;
    }
}






/* 4K SETTINGS */
@media only screen and (min-width: 1920px) {
    .top-bar-left-side {

    }
}

