/* ===================================
    Custom fonts
====================================== */  

@font-face {
    font-family: 'larsseitthin';
    src: url('../woff2/larsseit-thin-webfont.woff2') format('woff2'),
         url('../woff/larsseit-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'larsseitthin_italic';
    src: url('../woff2/larsseit-thinitalic-webfont.woff2') format('woff2'),
         url('../woff/larsseit-thinitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'larsseitlight';
    src: url('../woff2/larsseit-light-webfont.woff2') format('woff2'),
         url('../woff/larsseit-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'larsseitlight_italic';
    src: url('../woff2/larsseit-lightitalic-webfont.woff2') format('woff2'),
         url('../woff/larsseit-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'larsseitregular';
    src: url('../woff2/larsseit-webfont.woff2') format('woff2'),
         url('../woff/larsseit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'larsseitmedium';
    src: url('../woff2/larsseit-medium-webfont.woff2') format('woff2'),
         url('../woff/larsseit-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'larsseitmedium_italic';
    src: url('../woff2/larsseit-mediumitalic-webfont.woff2') format('woff2'),
         url('../woff/larsseit-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'larsseitbold';
    src: url('../woff2/larsseit-bold-webfont.woff2') format('woff2'),
         url('../woff/larsseit-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'larsseit_boldbold_italic';
    src: url('../woff2/larsseit-bolditalic-webfont.woff2') format('woff2'),
         url('../woff/larsseit-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'larsseitextrabold';
    src: url('../woff2/larsseit-extrabold-webfont.woff2') format('woff2'),
         url('../woff/larsseit-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'larsseitextrabold_italic';
    src: url('../woff2/larsseit-extrabolditalic-webfont.woff2') format('woff2'),
         url('../woff/larsseit-extrabolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

:root{
    /*--Colours--*/
    --green: #44a0b0;
    --dark-blue: #101C3D;
    --medium-gray:#A1A1A1;
    --light-green: #69b3bf;
    --light-grey: #E4F1F3;
    --white-lilac-grey: #F3F3F5;
    --white: #fff;
    
    --black: #33475b; 
    /*--Fonts--*/
    --font-primary-thin: 'larsseitthin', sans-serif;
    --font-primary-light: 'larsseitlight', sans-serif;
    --font-primary: 'larsseitregular', sans-serif;  
    --font-primary-medium: 'larsseitmedium', sans-serif;
    --font-primary-bold: 'larsseitbold', sans-serif; 
    --font-primary-extrabold: 'larsseitextrabold', sans-serif;  
    /*--Text Sizing--*/
    --font-large: 3.75rem;
    --font-med-large: 3.125rem;
    --font-medium: 2.5rem;
    --font-small: 1.5rem;


    
    --font-base: 1.6rem;
}

body{
    box-sizing: border-box;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--medium-gray);
}

html {
    color: #000; 
    line-height:auto;
    box-sizing: border-box;
}

div{
    box-sizing: border-box;
}
.uk-container-large {
    max-width: 1266px;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
textarea {
    resize: vertical;
}

/* ===================================
    Custom
====================================== */

.ani{
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.ani:hover{
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
.section{
    padding: 60px 0px;
}
.section-grey,.cta-strip.section-grey{
    background: var(--light-grey);
}
.section-dark-blue{
    background: var(--dark-blue);
}

/* ===================================
    Typography
====================================== */

h1{
    font-family: 'larsseitlight';
    color: var(--dark-blue); 
    font-size: var(--font-large);
    line-height: 4.5rem;
}
h1 span {
        font-family:var(--font-primary-medium); 
}
h2 {
    font-family: var(--font-primary-light);
    color: var(--dark-blue);
    font-size: var(--font-med-large);
    line-height: 4.375rem;
    margin-bottom: 60px !important; 
}
h3{
    font-family: var(--font-primary-light);
    color: var(--dark-blue);
    font-size: var(--font-medium);
    line-height: 3.5rem;
    margin-bottom: 60px !important;
}
h3 span {
        font-family:var(--font-primary-medium); 
        color: var(--green);
}
h5 {
    font-size: var(--font-small);
    font-family:var(--font-primary-medium); 
    color: var(--dark-blue);
    line-height: 32px;
}
h6{
    font-family: var(--font-primary);
    color: var(--dark-blue);
    font-size: 18px;
    line-height: 21px;
}



/*-- Fonts color --*/

p, a{ 
    color: var(--medium-gray);
    text-decoration: none; 
}
ul {
    padding:0 ;
    margin: 0;
    list-style: none;
}
a:hover {
    color: var(--green);
    text-decoration: none;
}
em.green, span.green{
    color: var(--green);
}
em.yellow, span.yellow{
    color: var(--yellow);
}
em.green, span.green{
    color: var(--green);
}
p.large{
    font-size: var(--font-medium);
}
p a{
    display: inline;
    border-bottom: 2px solid var(--green);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
p a:hover{
    background: rgba(232, 60, 155, 0.05);
    text-decoration: none;
    color: var(--green);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.text-white {
    color: var(--white);
}
.text-black {
    color: var(--black);
}
.bg-white {
    background-color: var(--white);
}
.bg-light-grey {
    background-color: var(--light-grey);
}
.bg-white-lilac-grey {
    background-color: var(--white-lilac-grey);
}

/* ===================================
    Header
====================================== */
.mobile-img {
    display: none;
}
.desktop-img {
    display: block;
}
.mini-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    left: 0;
    z-index: 9;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    background-color: #101C3D;
    padding: 11px 0;
}
.mini-header ul {
    font-size: 14px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mini-header ul li a {
    color: var(--white);
    display: flex;
    align-items: center;
}
.mini-header ul li a svg {
    margin-right: 10px;
}
.mini-header ul li:not(:last-child) {
    margin-right: 40px;
}
.header{
    position: fixed;
    padding: 20px 0px;
    z-index: 9999;
    top: 40px !important;
    left: 0;
    width: 100%;
    background-color: rgba(228, 241, 243, 0.1);
}
.uk-sticky-placeholder{
    display: none;
}
.header.uk-active{
    background: var(--white);
    box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
    top: 40px !important;
}
.header.uk-active .button-white{
    background: var(--green);
    color: var(--white);
}
header .svg-logo-words {
    fill: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
header.uk-active .svg-logo-words, footer .svg-logo-words {
    fill: var(--dark-blue);
}

/* ===================================
    Slider navigation
====================================== */
.uk-dotnav {
    justify-content: center;
    margin-top: 40px;
}
.uk-dotnav>*>* {
    height: 18px;
    width: 18px;
    border: 1px solid #E4F1F3;
    background-color: #E4F1F3;
}
.uk-dotnav>.uk-active>* {
    background-color: #101C3D;
    border-color: #101C3D;
}

/* ===================================
    Buttons
====================================== */

.button{
    padding: 15px 40px;
    background: var(--black);
    color: var(--white);
    border-radius: 50px;
    display: inline-block;
    box-sizing: border-box;
    font-size: 16px;
    font-family: var(--font-primary-medium);
}
.button .icon {
    margin-right: 6px;
}
.button.large{
    padding:29px 60px; 
    display: inline-block;
    font-size: 16px;
    box-sizing: border-box;
}
.button:hover{
    text-decoration: none;
    color: inherit;
}

/*Green*/
.button-green{
    background: var(--green);
    color: var(--white);
}
.button-green:hover{
    background: #317A86;
    color: var(--white);
}

/*White*/
.button-white{
    background: var(--white);
    color: var(--green);
}
.button-white:hover{
    background: #317A86;
    color: var(--white) !important;
}
.button-white:hover .icon path { 
    fill:var(--white); 
}

 

/*-- Hero Banner ---*/

.section-hero{
    padding-top: 220px;
    padding-bottom: 75px;
    position: relative;
    background-size: cover;
    background-position: center center;
}
.section-hero .overlay-bg {
    position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
    z-index: 1;
}
.section-hero .overlay{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--dark-blue);
	opacity: 0.6;
}

.hero-content h1 {
    color: var(--white);
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 11%;
}
.hero-content h1::after {
    width: 66%;
    height: 2px;
    content: ""; 
    display: inline-block;
    background-color: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/*-- list style ---*/
.list-style li { 
    position: relative; 
    font-size: 20px;
    line-height: 26px; 
    display: flex; 
    text-align: left;
    margin-bottom: 25px;
    min-height: 55px;
}
.list-style li:last-child {
    margin-bottom: 0;
}
.list-style li .icon-check {
    width: 37px;
    height: 37px;
    border-radius: 100%;
    margin-right: 15px;
    margin-top: -6px;
    flex-shrink: 0;
    line-height: 37px;
    text-align: center;
}
 
/*-- client logo ---*/
.client-logo-slider {
    position: relative;
    z-index: 9;
    margin-top: 65px;
}
.client-logo-slider .uk-slider-items {
    align-items: center;
    justify-content: center;
}

/*-- icon with text block ---*/
.icon-with-text-block .uk-grid+.uk-grid-medium {
    margin-top: 0 !important;
}
.icon-with-text-block {
    padding: 110px 0;
}
.icon-with-text-block .icon-with-text {
    display: flex;
}
.icon-with-text .icon {
    margin-right: 25px;
    width: 60px;
}
.icon-with-text .text {
    flex: 1;
}
.icon-with-text .text h4 {
    font-size: 20px;
    font-family: var(--font-primary-medium);
    color: var(--dark-blue);
    margin-bottom: 6px;
    display: block; 
}
.icon-with-text .text p {
    font-size: 14px;
    margin:0; 
    width: 85%;
}
.icon-with-text-block .mb-50px {
    margin-bottom: 50px;
}
.icon-with-text-block.second-block .text p {
    width: 88%;
}

/*-- process step block ---*/
.process-step-block {
    padding:0 0 120px;
}
.process-step {
    padding: 0 30px;
}
.process-step .number-box {
    position: relative;
}
.process-step .number-box:before {
    content: ""; 
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px dashed var(--dark-blue);
    position: absolute;
    left: 78%;
    height: auto;
    width: 76%;
} 
.process-step-block .uk-active:last-child .process-step .number-box:before {
    opacity: 0;
}
.process-step .number {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--dark-blue); 
    font-family: var(--font-primary-bold);
    background-color: var(--light-grey);
    margin: 0 auto 25px;
}
.process-step h6 {
    margin: 0 0 15px;
    display: block;
}
.process-step p {
    font-size: 14px;
    margin:0;
    line-height: 21px;
}
.process-step-block .uk-grid+.uk-grid-large {
    margin-top: 0 !important;
}

/*-- cta block ---*/
.cta-strip {
    overflow: hidden;
    display: block;
    padding: 100px 0 90px;
    background: var(--dark-blue); 
} 
.cta-strip h2{  
    margin-bottom: 0 !important; 
    color: var(--white);
} 
.cta-strip h3{  
    margin-bottom: 0 !important; 
    color: var(--white);
} 
.cta-strip h6{
    font-size: 18px;
    line-height: 27px;
    color: var(--white);
    margin-bottom: 45px;
} 
.cta-strip h5{
    margin-bottom: 15px;
}

/*-- content block ---*/
.content-block {
    padding: 120px 0;
}
.content-block h3 {
    margin-bottom: 40px !important;
}
.content-block p {
    margin:0 0 25px !important;
}
.content-block .list-style {
    margin-top: 45px;
}
.content-block .list-style li {
    min-height: 1px;
    margin-bottom: 20px;
    font-size: 16px;
}
.content-block h3 {
    margin-bottom: 25px !important;
}
.content-block .content .button {
    margin-top: 15px;
}
.content-block .list-style li:last-child {
    margin-bottom: 0;
}
.content-block .content {
    justify-content: space-between;
}
.content-block .image-right-global {
    margin-right: -5vw;
}
.content-block .image-left-global {
    margin-left: -5vw;
}
.content-block .image-right-global img, .content-block .image-left-global img {
    width: 100%;
}
.data-powered-logo .client-slider-img img {
    max-height: 60px;
}
.data-powered-logo .uk-slider-items:not(.uk-grid) {
    align-items: center;
}
.our-client-logo h3 {
    margin-bottom: 30px !important;
}

/*-- blockquote block ---*/
.blockquote-block {
    padding: 120px 0;
}
.blockquote-block h1 {
    width: 75%;
    margin: 0 auto;
}
.blockquote-box {
    position: relative;
    display: inline-block;
    width: 100%;
    margin:120px 0 20px; 
    padding-top: 75px;
}
.blockquote-box .box-img {
    position: absolute;
    left: 0;
    top: 0;
}
.blockquote-block h6 {
    color: var(--medium-gray);
    font-family:var(--font-primary-medium);
}
.blockquote-box .box {
   background: var(--light-grey);
   padding: 130px 110px 130px 220px; 
   width: 75%;
   float: right; 
}
.blockquote-box .box:last-child {
    margin-bottom: 0;
}
.blockquote-box .box img {
    max-height: 65px;
    margin-bottom: 25px;
}
.blockquote-box .box blockquote {
    margin:0;
    font-family:var(--font-primary-light);
    color: var(--dark-blue);
    font-size: 24px;
    line-height: 34px;
    font-style: normal;
    position: relative;
}
.blockquote-box .box blockquote:before {
    content: "“";
    font-size: 50px;
    line-height: 30px;
    display: block;
    position: absolute;
    left: -30px;
    font-family:var(--font-primary-bold);
    top: 5px;
}
.blockquote-box .box blockquote:after {
    content: "”";
    position: relative;
    right: -10px;
    bottom: -30px;
    font-size: 50px;
    font-family:var(--font-primary-bold);
    line-height: 0;
}
.blockquote-box .box .sub-title {
    font-size: 18px;
    line-height: 26px;
}
.blockquote-box.right .box {
    float: left; 
    padding:  130px 220px 130px 130px; 
}
.blockquote-box.right .box-img {
    right: 0;
    left: inherit;
}


/*-- FAQs ---*/
.section-faq {
    padding: 0 0 120px;
}
.section-faq h3 {
    margin-bottom: 0 !important;
}
.faqs{
    margin: 0px;
    padding: 0px;
}
.faqs li{  
    border-radius: 0px;
    border: none; 
    position: relative;
    border-bottom:1px solid #e7e8eb; 
    transition: border .3s ease-in-out,left .3s ease-in-out,right .3s ease-in-out;
}
.faqs li:last-child {
    margin-bottom: 0;
}
.faqs li a.uk-accordion-title{
    font-size: 20px;
    font-family: var(--font-primary);
    padding: 14px 35px 14px 0;
    color: var(--dark-blue);
}
.faqs li .uk-accordion-content{
    padding: 10px 70px 30px 0;
    margin-top: 0; 
} 
.uk-accordion-title::before {
    background-image: url(../svg/plus-2.svg);
    margin-right: -20px;
    background-size: 21px;
}
.uk-open>.uk-accordion-title::before {
    background-image: url(../svg/minus-2.svg);
    margin-right: -20px;
}
.uk-accordion>:nth-child(n+2) {
    margin-top: 0;
}

/*-- Footer --*/

footer {
    padding: 38px 0;
    border-top: 12px solid var(--dark-blue);
}
footer p {
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}
footer p a {
    color: var(--dark-blue);
    text-decoration: none;
    border-bottom: 0;
    font-size: 12px;
}
footer .logo {
    display: block;
}
footer p a:hover {
    background-color: transparent;
}
footer .link a {
   color: var(--dark-blue);
   font-size: 16px;
   font-family:var(--font-primary-bold); 
   margin-right: 30px;
}
footer .link a:last-child {
    margin-right: 0;
}
footer .link a:hover {
    color: var(--green);
}

/*-- Form --*/

#form-primary{
    padding-top: 150px;
}

#form-wrapper .fserv-container{
    border: 8px solid var(--green);
}
#form-wrapper .fserv-container input,
#form-wrapper .fserv-container textarea{
    padding: 20px !important;
    height: auto !important;
    font-size: var(--font-base) !important;
    border-radius: 5px;
    border: 1px solid #e8e8e8;;
    background: var(--light-grey) !important;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
#form-wrapper .fserv-container input::-webkit-input-placeholder {
    color: var(--dark-grey);
}
#form-wrapper .fserv-container input:-moz-placeholder {
    color: var(--dark-grey);
    opacity: 1;
}
#form-wrapper .fserv-container input::-moz-placeholder {
    color: var(--dark-grey);
    opacity: 1;
}
#form-wrapper .fserv-container input:-ms-input-placeholder {
    color: var(--dark-grey);
}
#form-wrapper .fserv-container input::-ms-input-placeholder {
    color: var(--dark-grey);
}
#form-wrapper .fserv-container input::placeholder {
    color: var(--dark-grey);
}
#form-wrapper .fserv-container .fserv-button-submit{
    width: 100% !important;
    border-radius: 50px !important;
    padding: 15px 0px !important;
    height: auto !important;
    font-family: var(--font-body) !important;
    font-size: var(--font-small) !important;
    background-color: var(--green) !important;
    color: var(--white) !important;
    cursor: pointer;
    border-color: var(--green);
    webkit-transition: all 0.3s;
    transition: all 0.3s;
}
#form-wrapper .fserv-container .fserv-button-submit:hover {
    background-color: var(--light-green) !important;
    color: var(--white) !important;
    border-color: var(--light-green);

}
#form-wrapper .fserv-container .powered-by{
    display: none !important;
}

#form-wrapper .fserv-container{
    font-family: Inherit !important;
    background-color: #FFFFFF !important;
    width: 100% !important;
}
.fserv-form {
    margin-bottom: 10px!important;
    display: flex;
    flex-wrap: wrap;
    padding:0 15px;
}
.fserv-form-name {
    font-size: 28px!important;
    margin: 0 0 15px;
    padding: 0 20px;
    text-align: center!important;
}
.fserv-container {
    background-color: var(--form-bg-color);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 1px 5px 5px rgb(156 156 156 / 7%);
    margin: 0 auto 30px;
    padding: 40px 0 20px 0;
    position: relative;
    max-width: 850px;
}
.fserv-field {
    padding: 0 10px;
    width: 50%;
}
.fserv-field.field-textarea {
    width: 100%;
}
.fserv-field {
    margin-top: 30px;
}
.fserv-field.last {
    width: 100%;
}
.fserv-label, .fserv-container .fserv-label, .fserv-container button {
    font-size: 17px !important;
    display: block;
    font-weight: 500;
    padding-bottom: 8px;
    text-align: left!important;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}
.fserv-input-text {
    display: block!important;
    height: 40px;
    line-height: 1!important;
}
.fserv-input-text, .fserv-select, .fserv-select-multiple, .fserv-textarea, #form-wrapper .fserv-container textarea {
    background-image: none!important;
    border: 1px solid #e8e8e8;
    width: 100%!important;
    box-sizing: border-box;
}
.fserv-container div.fserv-required label.fserv-label:after {
    content: " *";
    color: red;
}
.submit-button {
    border-top: 1px solid #e5e5e5;
    margin-top: 25px;
    padding: 30px 10px 10px;
    text-align: right;
    width: 100%;
}
.inputerror {
    border-color: #ff0202 !important;
}
.fserv-container .fserv-hidden {
    display: none;
}
.fserv-form-wrap {
    padding: 30px 22px 0 30px;
}

/*-- Thank you page ---*/

.thankyou{
    padding-top: 150px;
    padding-bottom: 150px;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
    display: none !important;
}
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}
.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}
.invisible {
    visibility: hidden;
}
.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}
.clearfix::after {
    clear: both;
}


/* ===================================
    media query responsive
====================================== */

@media only screen and (max-width: 1500px) {
    .content-block .image-right-global {
        margin-right: 0;
    }
    .content-block .image-left-global {
        margin-left: 0;
    }
}

@media only screen and (max-width: 1366px) {

    #cta-box .inner .button{
        font-size: 2.2rem;
    }

    #cta-box{
        padding: 35px;
    }
    h1 {
        font-size: 50px;
        line-height: 56px;
    }
    .hero-content h1 { 
        margin-bottom: 8%;
        padding-bottom: 30px;
    }
    .list-style li {
        margin-bottom: 20px;
    }

}


@media only screen and (max-width: 1199px) {
    .header {
        background-color: var(--white);
    }
    header .svg-logo-words {
        fill: var(--dark-blue);
    }
    .icon-with-text .text p {
        width: 100%;
    }
    .icon-with-text .icon {
        margin-right: 20px;
        width: 55px;
    }
    .icon-with-text-block.second-block .text p {
        width: 95%;
    }
    .process-step .number-box:before {
        width: 65%;
    }
    .content-block .image-right-global {
        margin-right: 0;
    }
    .content-block .image-left-global {
        margin-left: 0;
    }
    .blockquote-block h1 {
        width: 100%;
    }
    .blockquote-box .box {
        background: var(--light-grey);
        padding: 80px 50px 80px 150px;
        width: 75%;
        float: right;
    }
    .blockquote-box .box-img { 
        width: 320px;
    }
    .blockquote-box {
        margin: 80px 0 0; 
    }
    .blockquote-box.right .box {
        float: left;
        padding: 80px 150px 80px 50px;
    }
    
}

@media only screen and (max-width: 959px) {
    .hide-ipad {
        display: none;
    }
    .mini-header {
        position: absolute;
    }
    .header {
        background-color: rgba(228, 241, 243, 0.1);
        position: absolute;
    }
    header .svg-logo-words {
        fill: var(--white);
    }
    .section-hero {
        padding-top: 170px;
    }
    h1 {
        font-size: 40px;
        line-height: 50px;
    } 
    h3 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 40px !important;
    }
    footer .logo {
        margin: 0 auto;
    }
    .hero-content h1 {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
    .icon-with-text-block,
    .blockquote-block {
        padding: 80px 0;
    }
    .icon-with-text-block .icon-with-text{
        margin-bottom: 40px;
    }
    .icon-with-text-block .uk-grid+.uk-grid-medium div:last-child .icon-with-text{
        margin-bottom: 0;
    } 
    .icon-with-text .text p {
        width: 75%;
    }
    .process-step-block .uk-active:last-child .process-step .number-box:before {
        opacity: 1;
    }
    .process-step-block {
        padding: 0 0 80px;
    }
    .cta-strip {
        padding: 60px 0 60px;
        text-align: center;
    }
    .cta-strip .hide-ipad {
        display: none;
    }
    .button.large {
        padding: 15px 40px;
    }
    .content-block {
        padding: 80px 0;
    }
    .content-block .image-right-global {
        margin-bottom: 30px;
    }
    .blockquote-box .box-img {
        width: 280px;
    }
    .section-faq {
        padding-bottom: 80px;
    }
}


@media only screen and (max-width: 769px) {
    .hide-tab{
        display: block;
    }

    .hide-mob{
        display: none;
    }

     

}

@media only screen and (max-width: 767px){
    .mobile-img {
        display: block;
    }
    .desktop-img {
        display: none;
    }
    .uk-container {
        padding-left: 35px;
        padding-right: 35px;
    }
    h1, h2, .cta-strip h3 {
        font-size: 24px;
        line-height: 36px;
    }
    h3, h5 {
        font-size: 20px;
        line-height: 30px;
    } 
    h6 {
        font-size: 16px;
        line-height: 21px;
    }
    .header {
        padding: 12px 0;
        top: 37px !important;
    }
    .logo {
        width: 150px !important;
    }
    .header .button-row .button.button.large {
        font-size: 12px;
        padding: 10px 20px;
    }
    .header .button-row .button .icon svg {
        width: 16px;
    }
    .mini-header ul li a {
        font-size: 0;
    }
    .mini-header ul li a svg {
        margin-right: 0;
    }
    .mini-header ul li a svg.mail-icon {
        width: 15px;
    }
    .mini-header ul li a svg.phone-icon {
        width: 13px;
    }
    .mini-header ul li:not(:last-child) {
        margin-right: 10px;
    }
    .section-hero {
        overflow: hidden;
    }
    .section-hero .client-logo-slider {
        margin-left: -20vw;
        margin-right: -20vw;
    }
    .hero-content h1 {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 22px;
        margin-bottom: 25px;
    }
    .client-logo-slider {
        margin-top: 55px;
    }
    .icon-with-text .text h4 {
        font-size: 18px;
    }
    .cta-strip h6 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 35px;
    }
    .blockquote-box .box-img {
        width: 260px;
    }
    .blockquote-box .box-img {
        left: -35px;
    }
    .blockquote-box .box {
        padding: 290px 50px 40px 50px;
        width: calc(100% + 35px);
        margin-right: -35px;
    }
    .blockquote-box.right .box {
        padding: 310px 50px 40px 50px;
    }
    .blockquote-box.right .box-img {
        right: -35px;
    }
    .blockquote-box {
        margin: 60px 0 0;
        padding-top: 45px;
    }
    .blockquote-box .box blockquote {
        font-size: 18px;
        line-height: 27px;
    }
    .blockquote-box .box .sub-title {
        font-size: 16px;
        line-height: 26px;
        margin-top: 12px;
        display: block;
    }
    .blockquote-box .box img {
        max-height: 32px;
    }
    .blockquote-block h1 {
        font-size: 20px;
        line-height: 30px;
    }
    .content-block .list-style {
        margin-top: 35px;
    }
    .blockquote-block h6 {
        font-family: var(--font-primary-regular);
        margin-top: 15px;
        padding: 0 25px;
    }
    .content-block .image-left-global {
        margin-right: -35px;
    }
    .cta-strip-top {
        padding: 80px 0 80px;
    }
    .content-block.content-block-ordering .content-img {
        order: -1;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .content-block-bottom .content {
        margin-top: 0   ;
    }
    .content-block-bottom .content p:last-child {
        margin-bottom: 0 !important;
    }
    .content-block-bottom {
        padding-bottom: 60px;
    }
    .icon-with-text-block.second-block .text p,
    .icon-with-text .text p {
        width: 100%;
    }
    .faqs li a.uk-accordion-title {
        font-size: 16px;
        line-height: 23px;
    }
    .faqs li a.uk-accordion-title::before {
        width: 15px;
        height: 15px;
    }
    .faqs li .uk-accordion-content {
        padding-top: 0;
        padding-right: 35px;
    }
    .cta-strip-top .uk-container,
    .our-client-logo .uk-container {
        padding: 0;
    }
    .cta-strip-top .uk-slider,
    .our-client-logo .uk-container {
        margin:0 -25vw 0 -30vw;
    }
    .list-style li {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 20px;
        min-height: 20px;
    }
    .list-style li .icon-check {
        width: 26px;
        height: 26px;
        line-height: 26px;
        margin-top: -2px;
    }
    .list-style li .icon-check svg {
        width: 15px;
    }
    .content-block .image-right-global {
        margin-right: -35px;
    }
    .icon-with-text-block h3 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 50px !important;
    }
    .icon-with-text-block .mb-50px {
        margin-bottom: 10px;
    }
    .section-faq h3 {
        font-size: 24px;
        line-height: 36px;
        padding: 0 30px;
    }
    footer .link {
        margin-top: 13px !important;
    } 
    footer .link a {
        display: block;
        margin: 0 0 6px 0;
    }
    footer .link a:last-child {
        margin-bottom: 0;
    }
    .footer-address {
        order: 5;
    }
    .footer-address p {
        margin: 0 !important;
    }
    .footer-address > p {
        padding: 0 55px;
    }
    footer {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 374px) {
    .head-logo{
        max-width: 120px;
    }  
    .logo {
        width: 130px !important;
    } 
    .header .button-row .button.button.large {
        font-size: 11px;
        padding: 10px 14px;
    }

}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

