@charset "utf-8";

/* ==============================
   Common styles
   ============================== */
:root{
    --font-global: "quincy-cf", serif;
    --font-global-alt: "elido", sans-serif;

}
html, body{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;    
}

a, b, div, ul, li{
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
    -webkit-tap-highlight-color: transparent; 
    -moz-outline-: none;
}

img:not([draggable]), embed, object, video{
    height: auto;
}

.min-height-100vh{
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}
.align-center{ text-align:center !important; }
.opacity-085{ opacity: .85; }

.no-animate{    
    -webkit-transition-property: none !important;
    -moz-transition-property: none !important;
    -o-transition-property: none !important;
    transition-property: none !important; 
}

/* ==============================
   Page loader
   ============================== */

.page-loader{
    display:block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fefefe;
    z-index: 100000; 
}

.loader{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 1px solid rgba(0,0,0, 0.15);
    border-right: 1px solid rgba(0,0,0, 0.15);
    border-bottom: 1px solid rgba(0,0,0, 0.15);
    border-left: 1px solid rgba(0,0,0, .55);
  
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  
    -webkit-animation: spinner 700ms infinite linear;
    -moz-animation: spinner 700ms infinite linear;
    -ms-animation: spinner 700ms infinite linear;
    -o-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
    
    will-change: transform;
  
    z-index: 100001;
}

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

a{
    color: #111;
    text-decoration: underline;
    -webkit-transition: color 0.1s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: color 0.1s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
b, strong{
    font-weight: 600;
}

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6{
    margin-bottom: 1em;
    line-height: 1.2; 
    font-family: var(--font-global);
}

h1, .h1{
    margin-bottom: 0.5em;
    font-size: 3.25rem;
    letter-spacing: 0.13em;
}
h2, .h2{
    margin-bottom: 0.5em;
    font-size: 2.25rem
}
h3, .h3{
    margin-bottom: 0.7em;
    font-size: 2rem !important
}
h4, .h4{
    font-size: 1.5rem !important
}
h5, .h5{
    font-size: 1.25rem;
}
h6, .h6{
    font-size: 1rem;
    font-weight: 700;
}
p{
    margin: 0 0 1.5em 0;
}


ul, ol{
    margin: 0 0 1.5em 0;
}
blockquote {
    padding: 140px 0;
}
blockquote p{
    font-style: normal;
    font-size: 46px;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0);
    font-family: var(--font-global);
    margin: 0;
}
blockquote p strong{
    font-weight: 400;
    line-height: 1.196;
    letter-spacing: 0;
    color: rgba(0, 0, 0);
    font-family: var(--font-global-alt);
    font-size: 15px;
        margin: 0;
}
blockquote p a strong {
    position: relative;
    display: inline-block;
    color: rgba(0, 0, 0);
    text-decoration: none;
        margin: 0;
}
blockquote p a strong::after {
  content: "";
  position: absolute;
  top: 100%;
  height: 1px !important;
  width: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.4s ease-out all .1s;
  left:0
}
blockquote p a strong:hover::after {
  width: 90%;
  transition: 0.5s ease all;
}

/* ==============================
   Buttons
   ============================== */
.btn-mod,
a.btn-mod{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3px 13px 4px;
    color: #fff;
    background: rgba(17,17,17, .9);
    border: 2px solid transparent;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .065em;
    border-radius: 0;
    box-shadow: none;
    -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.btn-mod.btn-large{
    height: auto;
    padding: 0;
    background: #bbd8de;
    line-height: 1;
    border-radius: 8px 30px 30px 8px;
        -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    transition: all .5s;
    text-align: left;
} 
.btn-mod.btn-large:hover {
    transition: all .5s;
    transform: translateX(30px);
}
.btn-mod.btn-large-pale{
    background: #ddecee;
}
.btn-large a {
    padding: 0 20px;
    line-height: 45px;
    text-decoration:none;
    font-family: var(--font-global);
    font-weight: 100;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #485d7f;
}
.btn-large a:hover {
    color: #485d7f;
    opacity:0.5
}
.button-circle{
    display: block;
    width: 50px;
    height: 50px !important;
    text-decoration: none;
    opacity: 1;
    -webkit-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
    transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);     
    font-size: 2.5rem;
    color: var(--bs-body-color);
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    float:right;
    margin-right: -6px;
}
ul li a .button-circle{
    margin-right: -23px;
    margin-left: 20px;
}
.button-circle-inner {
    background-color: #fff;
    border-radius: 50%;
    border: solid 1px #001239;
    width:80%;
    height:80% !important;
    margin:auto
}
.button-circle-icon {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    z-index: 2;
    font-size: 16px;
    color: #485d7f;
    transform: translate(-50%, -50%);
}


/* ==============================
   Home sections
   ============================== */

.home-section{
    width: 100%;
    display: block;    
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin:auto;
    border-left: 20px solid #fff;
    border-right: 20px solid #fff;
}
.home-section::after {
    content: " ";
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 0px;
    left: 0;
    background-color: #fff;
    z-index: 1500;
}
@media only screen and (max-height: 700px) and (orientation: landscape){ 
    .home-section {
        overflow-y:visible !important
    }
    .home-section::after {
        height: 0px;
    }
}

/* Home content */

.home-content-home{
    text-align: center;
    padding-top: 300px;
    width: 50%;
    position: absolute;
    z-index: 1300;
}
.home-content{
    text-align: center;
    padding-top: 70px;
    padding-bottom: 20px
}
.typed-cursor {
    opacity: 0 !important;
}
/*
 * Scroll down icon
 */
.scroll-down-wrap {
    position: absolute;
    bottom: 13px;
    left: 25%;
    width: 48px;
    height: 48px;
    margin-left: -24px;
    z-index: 3500;
}

@-webkit-keyframes scroll-down-anim {
    0%{ -webkit-transform: translateY(-3px); }
    50%{ -webkit-transform: translateY(3px); }
    100%{ -webkit-transform: translateY(-3px); }
}
@keyframes scroll-down-anim {
    0%{ transform: translateY(-3px); }
    50%{ transform: translateY(3px); }
    100%{ transform: translateY(-3px); }
}

.scroll-down-video-wrap {
    position: absolute;
    bottom: 20%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin-left: -24px;
    z-index: 999;
}
.scroll-down-video-icon{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    font-size: 18px;
    color: #485d7f;
    transform: translate(-50%, -50%);
}

.scroll-down{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    opacity: 1;
    -webkit-transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
    transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);    
    -webkit-animation: scroll-down-anim 1.15s infinite;
    animation: scroll-down-anim 1.15s infinite; 
    font-size: 2.5rem;
    color: var(--bs-body-color);
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
}
@media only screen and (max-height: 700px) and (orientation: landscape){ 
.scroll-down{
    display: none;
    }
}
.scroll-down-circle {
    background-color: #fff;
    border-radius: 50%;
    border: solid 1px #001239;
    width:80%;
    height:80%;
    margin:auto
}
.scroll-down-icon{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    font-size: 18px;
    color: #485d7f;
    transform: translate(-50%, -50%);
}
/* 
 * Headings styles
 */

.hs-line-4{
    font-size: 10em;
    line-height: .8;
    font-weight: 200;
    letter-spacing:0;
    color:var(--bs-body-color)
}
.hs-line-5{
    margin: 0;
    font-size: 5em;
    line-height: .8;
    font-weight: 100;
    letter-spacing:0;
    color:var(--bs-body-color);
    font-family: var(--font-global);
    display: block;
}
.hero-text p {
    font-family: var(--font-global-alt);
    font-size: 19px;
    letter-spacing: 0;
    width: 80%;
    margin: auto;
}
.hero-text p a {
    position: relative;
    display: inline-block;
    color: var(--bs-body-color) !important;
    text-decoration: none;
}
.hero-text p a::after {
  content: "";
  position: absolute;
  top: 90%;
  height: 1px !important;
  width: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.4s ease-out all .1s;
  left:0
}
.hero-text p a:hover::after {
  width: 90%;
  transition: 0.5s ease all;
}
@media only screen and (max-height: 450px) and (orientation: landscape){
    .hero-text {
        top: 170px !important;
    }
}
@media only screen and (max-height: 700px) and (orientation: landscape){
    .hero-text {
        top: 35%;
    position: absolute;
    text-align: center;
    width: 50%;
    }
.hs-line-4{
    font-size: 6em;
}
}
.hs-line-5-home{
    height:90px
}
.hs-line-5 h1{
    margin: 0;
    font-size: 5rem;
    line-height: 1;
    font-weight: 100;
    letter-spacing:0;
    color:var(--bs-body-color);
    padding-bottom: 0;
}
.hs-line-5 em {
    font-weight:100
}
.hs-line-6{
    margin: 0;
    font-size: 4em;
    font-weight: 100;
    line-height: .75;
    letter-spacing: 0;
    color:var(--bs-body-color)
}
.hs-line-6 h2{
    margin: 0;
    font-size: 4rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0;
    color:var(--bs-body-color);
    padding-bottom: 30px;
}
.hs-line-7{
    margin-top: 0;
    font-size: 7.5em;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0;
    color:var(--bs-body-color);
    padding-left: 50px;
}
.hs-line-8{
    margin-top: 0;
    font-size: 3.75em;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0;
    color:var(--bs-body-color);
    padding-left: 150px;
}

/*
 * Extra styles for animate.css
 */

.wow,
.wow-menubar,
.wow-p{
    opacity: 0.01;    
}
html:not(.mobile) .wow,
html:not(.mobile) .wow-menubar,
html:not(.mobile) .wow-p{
    will-change: opacity, transform;
}
.appear-animate .wow.scaleOutIn{
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.appear-animate .wow.animated,
.appear-animate .wow.scaleOutIn.animated,
.appear-animate .wow-p.amimated,
.appear-animate .wow-menubar.animated,
.mobile .appear-animate .wow,
.mobile .appear-animate .wow-menubar,
.mobile .appear-animate .wow-p{
    opacity: 1;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}
@media (prefers-reduced-motion:reduce), print{
    .wow,
    .wow.scaleOutIn,
    .wow-menubar,
    .wow-p{
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
        -webkit-animation: none !important;
        animation: none !important;
    }
}
.fadeInDownShort, .fadeInUpShort, .scalexIn, .fadeScaleIn, 
.fadeScaleOutIn, .fadeScaleOutInShort,
.backInDown, .backInLeft, .backInRight, .backInUp,
.bounceIn, .bounceInDown, .bounceInLeft, .bounceInRight, .bounceInUp, 
.fadeIn, .fadeInDown, .fadeInDownBig, .fadeInLeft, .fadeInLeftBig, 
.fadeInRight, .fadeInRightBig, .fadeInUp, .fadeInUpBig, .fadeInTopLeft,
.fadeInTopRight, .fadeInBottomLeft, .fadeInBottomRight, .flipInX, .flipInY,
.lightSpeedInRight, .lightSpeedInLeft, .rotateIn, .rotateInDownLeft,
.rotateInDownRight, .rotateInUpLeft, .rotateInUpRight, .jackInTheBox, 
.rollIn, .zoomIn, .zoomInDown, .zoomInLeft, .zoomInRight, .zoomInUp{
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;    
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
@keyframes fadeInDownShort{
    0%{
        opacity: 0;
        -webkit-transform: translate3d(0,-37px,0);
        transform: translate3d(0,-37px,0)
    }
    to{
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}
.fadeInDownShort{
    -webkit-animation-name: fadeInDownShort;
    animation-name: fadeInDownShort
}
@keyframes fadeInUpShort{
    0%{
        opacity: 0;
        -webkit-transform: translate3d(0,37px,0);
        transform: translate3d(0,37px,0);
    }
    to{
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}
.fadeInUpShort{
    -webkit-animation-name: fadeInUpShort;
    animation-name: fadeInUpShort;
    
}
@keyframes scalexIn{
    0%{
        opacity: 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        transform-origin: left center;        
    }
    to{
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
.scalexIn{
    -webkit-animation-name: scalexIn;
    animation-name: scalexIn;
}
@keyframes fadeScaleIn{
    0%{
        opacity: 0;
        -webkit-transform: scale(.975) rotate(0.1deg);
        transform: scale(.975) rotate(0.1deg);   
    }
    to{
        opacity: 1;
        -webkit-transform: scale(1.001) rotate(0);
        transform: scale(1.00) rotate(0);
    }
}
.fadeScaleIn{
    -webkit-animation-name: fadeScaleIn;
    animation-name: fadeScaleIn;
}
@keyframes scaleOutIn{
    0%{
        -webkit-transform: scale(1.2);
        transform: scale(1.2);      
    }
    to{
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
.scaleOutIn{
    -webkit-animation-name: scaleOutIn;
    animation-name: scaleOutIn;
}
@keyframes fadeScaleOutIn{
    0%{
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);      
    }
    to{
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.fadeScaleOutIn{
    -webkit-animation-name: fadeScaleOutIn;
    animation-name: fadeScaleOutIn;
}
@keyframes fadeScaleOutInShort{
    0%{
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);      
    }
    to{
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.fadeScaleOutInShort{
    -webkit-animation-name: fadeScaleOutInShort;
    animation-name: fadeScaleOutInShort;
}

.demo-821 .text-effect, .demo-822 .text-effect, .demo-823 .text-effect, .demo-824 .text-effect, .demo-825 .text-effect, .demo-826 .text-effect {
  margin: auto;
  padding-bottom:30px
}

.demo-821 .text-effect.no-js .background:before, .demo-822 .text-effect.no-js .background:before, .demo-823 .text-effect.no-js .background:before, .demo-824 .text-effect.no-js .background:before, .demo-825 .text-effect.no-js .background:before, .demo-826 .text-effect.no-js .background:before {
  transform: none;
}

.demo-821 .background, .demo-822 .background, .demo-823 .background, .demo-824 .background, .demo-825 .background, .demo-826 .background {
  position: relative;
}

.demo-821 .background:before, .demo-822 .background:before, .demo-823 .background:before, .demo-824 .background:before, .demo-825 .background:before, .demo-826 .background:before {
  position: absolute;
  content: '';
  z-index: -1;
  top: -2px;
  left: -3px;
  right: -3px;
  bottom: -2px;
  background-color: rgba(187, 216, 222, .5);
  transform-origin: 0;
  transform: scaleX(0);

  animation-name: background-out;
  animation-duration: .8s;
  animation-iteration-count: 1;
}

.demo-821 .text-effect.in-view .background:before, .demo-822 .text-effect.in-view .background:before, .demo-823 .text-effect.in-view .background:before, .demo-824 .text-effect.in-view .background:before, .demo-825 .text-effect.in-view .background:before, .demo-826 .text-effect.in-view .background:before {
  animation-name: background;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}



@keyframes background {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes background-out {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
    
    .question {
    margin-top: 0px;
}

/*
 * Logo (in navigation panel)
 */

.logo,
a.logo:hover{
    font-size: 18px;
    font-weight: 600 !important;
    text-decoration: none;
    color: rgba(0,0,0, .9);
}

/*
 * Desktop nav
 */

.main-nav{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    z-index: 1030;
    border-radius: 0px 0px 30px 0px;
    -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

/* ==============================
   Sections styles
   ============================== */

/*
 * Common
 */

.page-section,
.small-section,
.zero-section{
    width: 100%;
    display: block;    
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    padding: 140px 0;
}
.small-section{
    padding: 80px 0;
}
.zero-section{
    padding: 0px 0;
}

.bg-turquoise { 
    background: rgba(187, 216, 222, .5);
}
.bg-pale { 
    background: #Ede6df;
    border-left: solid 20px #fff;
    border-right: solid 20px #fff;
}
.bg-video { 
    background: #bbd8de;
    border-left: solid 20px #fff;
    border-right: solid 20px #fff;
}
.bg-video p {
    width:70%;
    margin:auto
}


/* Breadcrumbs */
.mod-breadcrumbs{
    margin-top: -5px;
    font-family: var(--font-global-alt);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    position:absolute;
    z-index:1100;
    width:100%
}
.mod-breadcrumbs ul {
    padding-left: 0;
}

.mod-breadcrumbs a{
    text-decoration: none;
    color: var(--bs-body-color);
    opacity: 0.5;
}
.mod-breadcrumbs a:hover{
    text-decoration: none;
    color: inherit;
    opacity: 1;
}


/* ==============================
   Features
   ============================== */
.features-text {
    width:50%;
    margin: auto;
}
.col-lg-6 .features-text {
    width:70%;
    margin: auto;
}
.features-title{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600; 
}
.features-title a {
    color:inherit;
    text-decoration:none
}
.features-title a:hover {
    opacity:0.5;
    color:inherit
}
.features-descr{
    font-family: var(--font-global-alt);
    font-size: 18px;
    font-weight: 300; /*500*/ 
    opacity: 1;
}
.features-descr p a {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
}
.features-descr p a::after {
  content: "";
  position: absolute;
  top: 90%;
  height: 1px !important;
  width: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.4s ease-out all .1s;
  left:0
}
.features-descr p a:hover::after {
  width: 90%;
  transition: 0.5s ease all;
}
.history-date{
    font-family: var(--font-global);
    margin-top: 20px;
    font-size: 32px;
    font-weight: 100; 
}
.process{
    font-family: var(--font-global);
    margin-top: 20px;
    font-size: 110px;
    font-weight: 100; 
}
.process-descr{
    font-family: var(--font-global-alt);
    font-size: 19px;
    font-weight: 300; /*500*/ 
    opacity: 1;
}

/* ==============================
   Banner section
   ============================== */

.banner-section{
    overflow: visible;
    border-bottom: 1px solid transparent;
}

.banner-heading{
    margin-top: 0;
    margin-bottom:1em;
    font-weight: 400;
    line-height: 1.196;
    letter-spacing: 0;
    color:var(--bs-body-color)
}
.banner-description p{
    font-family: var(--font-global-alt);
    font-size: 19px;
    color:var(--bs-body-color);
    letter-spacing: 0;
}
.banner-description-page p{
    padding-right:80px
}

.banner-description p a, .banner-description ul li a, table td a, .CTA-wrap p a, .process-descr p a {
    position: relative;
    display: inline-block;
    color: var(--bs-body-color) !important;
    text-decoration: none;
}
.banner-description p a::after, .banner-description ul li a::after, table td a::after, .CTA-wrap p a::after, .process-descr p a::after {
  content: "";
  position: absolute;
  top: 90%;
  height: 1px !important;
  width: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.4s ease-out all .1s;
  left:0
}
.banner-description p a:hover::after, .banner-description ul li a:hover::after, table td a:hover::after, .CTA-wrap p a:hover::after, .process-descr p a:hover::after {
  width: 90%;
  transition: 0.5s ease all;
}
.banner-description ul li .btn a::after {
  height: 0px !important;
}

.banner-description ul li {
    font-family: var(--font-global-alt);
    font-size: 19px;
    color: var(--bs-body-color);
    letter-spacing: 0;
}
.banner-description-uploads ul {
    list-style-type: none;
}
.banner-description img {
    width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
	margin-bottom: 20px;
}
img[style*="float: left"] {
  margin-right: 1em;
}

img[style*="float: right"] {
  margin-left: 1em;
}
.summary p img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin-top: 10px;
    float:left;
    margin:10px 20px 20px 0
}
.summary p:first-child {
    margin-bottom: 1rem;
}
.summary p:last-child {
  margin-bottom: 100px;
}
.banner-image-1 img{
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 40px;
}
.banner-image-1 ul {
    list-style-type: none;
}
.banner-image-1 ul li {
    margin-left:-40px;
}
.banner-image-1 ul li:nth-child(2n) {
    margin-left:140px;
    margin-top:-50px
}
.banner-image-2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-top: 40px;
}

.banner-accreditations img{
    height: 150px;
    width: auto;
    margin: 0 20px;
}

/* ==============================
   Footer
   ============================== */

.footer{
    text-align: left;
    background-color: #f6f7f9;
    width: 100%;
    padding: 20px 0 0;
    border-left: solid 20px #fff;
    border-right: solid 20px #fff;
    border-bottom: solid 20px #fff;
}
.footer-text {
    margin:20px 20px 0 20px;
    text-align: left;
}
.footer-text-links {
    margin:0px 20px 0 20px;
    text-align: left;
}
.footer p{
    font-size: 14px; 
    color:#001139;
    line-height: 1.2;
    letter-spacing: 0;
    font-family: "elido", sans-serif;
    font-weight: 300;
}
.footer-logo {
    margin-bottom:20px
}
.footer-logo p {
    font-family: canto, serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}
.footer-logo span {
    font-family: "elido", sans-serif;
    letter-spacing: 0.1em;
    font-size: 11px;
    color: #485d7f;
}
.footer-logo img {
    width:80px;
    margin-bottom: 0px;
}
.footer ul {
    padding-left:0
}
.footer ul li {
    list-style-type: none;
    padding-bottom: 5px;
}
.footer p a, .footer-credits a {
    position: relative;
    display: inline-block;
    color: #485d7f !important;
    text-decoration: none;
}
.footer p a::after, .footer-credits a::after {
  content: "";
  position: absolute;
  top: 100%;
  height: 1px !important;
  width: 50%;
  background-color: rgba(72, 93, 127, 0.6);
  transition: 0.4s ease-out all .1s;
  left:0
}
.footer p a:hover::after, .footer-credits a:hover::after {
  width: 90%;
  transition: 0.5s ease all;
}
.footer .socials {
    display: inline-block;
    margin: 0px auto 20px;
    position: relative;
    right: auto;
}
.footer-credits {
    padding:0px 0px 20px 20px;
}
.footer-credits a{
    text-align: left;
    text-decoration: none;    
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);   
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    font-size: 14px; 
    line-height: 1.196;
    letter-spacing: 0;
    font-family: "elido", sans-serif;
    font-weight: 300;
}

/*
 * Owl Carousel
 */
#owl-schools .owl-prev {
    left: 8%
}
#owl-schools .owl-next {
    right: 8%
}
#owl-schools .owl-prev,
#owl-schools .owl-next {
    background-color: #fff;
    border-radius:50%;
    width:40px;
    height:40px;
    font-size: 14px !important;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    transition: all .5s;
    top: 28%;
}
#owl-schools .owl-prev:hover {
    opacity:0.3;
    transition: 0.5s;
    left:7%
}

#owl-schools .owl-next:hover {
    opacity:0.3;
    transition: 0.5s;
    right:7%
}

#owl-schools .owl-prev::before,
#owl-schools .owl-next::before {
    content: " ";
    border:solid 1px #000;
    border-radius:50%;
    width:34px;
    height:34px;
    position:absolute;
    top:3px;
    left:3px
}

#owl-motto .owl-prev, #owl-character .owl-prev {
    left: -3%
}
#owl-motto .owl-next, #owl-character .owl-next {
    right: -3%
}
#owl-motto .owl-prev,
#owl-motto .owl-next, #owl-character .owl-prev,
#owl-character .owl-next {
    background-color: #fff;
    border-radius:50%;
    width:40px;
    height:40px;
    font-size: 14px !important;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    transition: all .5s;
    top: 28%;
}
#owl-motto .owl-prev:hover, #owl-character .owl-prev:hover {
    opacity:0.3;
    transition: 0.5s;
    left:-4%
}

#owl-motto .owl-next:hover, #owl-character .owl-next:hover {
    opacity:0.3;
    transition: 0.5s;
    right:-4%
}

#owl-motto .owl-prev::before,
#owl-motto .owl-next::before, #owl-character .owl-prev::before,
#owl-character .owl-next::before {
    content: " ";
    border:solid 1px #000;
    border-radius:50%;
    width:34px;
    height:34px;
    position:absolute;
    top:3px;
    left:3px
}

#owl-news .owl-prev {
    left: 30%
}
#owl-news .owl-next {
    right: 30%
}
#owl-news .owl-prev,
#owl-news .owl-next {
    background-color: #fff;
    border-radius:50%;
    width:40px;
    height:40px;
    font-size: 14px !important;
    top:80%;
    color: #485d7f;
}
#owl-news .owl-prev:hover {
    opacity:0.3;
    transition: 0.5s;
    left:29%
}

#owl-news .owl-next:hover {
    opacity:0.3;
    transition: 0.5s;
    right:29%
}

#owl-news .owl-prev::before,
#owl-news .owl-next::before {
    content: " ";
    border:solid 1px #485d7f;
    border-radius:50%;
    width:34px;
    height:34px;
    position:absolute;
    top:3px;
    left:3px
}

.owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    z-index: 1500;
    transform: translate(-50%, 85%);
    top: 0%;
    left: 50%;
}
.owl-buttons{
    position: static;
}
.owl-prev,
.owl-next{
    display: block;
    position: absolute;
    top: 90%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 27px;
    height: 57px;
    padding: 11px;
    box-sizing: content-box;
    font-size: 38px !important;
    text-align: center;
    color: inherit;
    opacity: .8;
    z-index: 6;
    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.owl-prev:hover,
.owl-next:hover{
    opacity: 1;
}

.owl-prev{
    left: 3%
}
.owl-next{
    right: 5%
}
.owl-theme .owl-nav {
    margin-top:0 !important
}
.owl-carousel .owl-stage-outer .hero {
    max-height: 100%;
    height: 100vh;
}
.owl-carousel .owl-item .hero img {
    width: auto !important;
    height: 100vh;
}
.owl-carousel .owl-item .hero-home img {
    margin-left:-6px
}
#owl-hero-home .owl-prev{
    left: 53%
}
#owl-hero-home .owl-next{
    right: 5%
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

/* ==============================
   Skip to Content Link
   ============================== */
  
.skip-to-content{
    position: absolute;
    top: 3px;
    left: 3px;
    padding: 20px 40px;
    color: #ffffff;
    background: #111;
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    transform: translateY(-150%);
    z-index:100000;
}
