@import url("grid.css");
@import url('../fonts/osans/osans.css');
@import url("../fonts/lineicons/LineIcons.css");
@import url("mmenu-light.css");
@import url("owl.carousel.min.css");
@import url("swiperSlider.css");

:root {
    --color-teal: #00AD9F;
    --color-teal-accessible: hsl(175, 100%, 32%);
    --color-teal-dark: #15847D;
    --color-teal-bright: #00E0CE;
    --color-teal-acid: #00DC9F;
    --color-pink: #FF6969;
    --color-pink-dark: #FF1154;
    --color-pink-accessible: #E8114E;
    --color-orange: #F86816;
    --color-orange-dark: #B74808;
    --color-blue: #43B4D8;
    --color-blue-dark: #146396;
    --color-blue-dark-b: #133857;
    --color-violet: #C57AA2;
    --color-violet-dark: #7C0C64;
    --color-gold: #F6BC00;
    --color-yellow: #FFAD43;
    --color-yellow-dark: #CC801F;
    --color-white: #fff;
    --color-black: #0e1e25;
    --color-gray-1: #2D3B41;
    --color-gray-2: #646E73;
    --color-gray-3: #757575;
    --color-gray-4: #BDBDBD;
    --color-gray-5: #E0E0E0;
    --color-gray-6: #F7F8F8;
    --color-gray-7: #FCFDFD
}
:root {--theme-background: var(--color-white);--theme-foreground: var(--color-black)}

::-moz-selection {
 /* Code for Firefox */
    background: var(--color-gold);
    color: var(--color-white);
}

::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes show-dropdown {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, -10px) scale(.95);
        transform: translate(0, -10px) scale(.95);
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0, 1px) scale(1);
        transform: translate(0, 1px) scale(1);
    }
}

@keyframes show-dropdown {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, -10px) scale(.95);
        transform: translate(0, -10px) scale(.95);
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0, 1px) scale(1);
        transform: translate(0, 1px) scale(1);
    }
}

html,
input,
button,
textarea,
select {
    font-family: "osans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #161513;
}

@supports (font-variation-settings: normal) {
    html,
    input,
    button,
    textarea,
    select {
        font-family: "osansVF", "osansVFCyGr", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    }
}

html {
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 62.5%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    color: var(--color-black);
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100% !important;
    height: auto;
}

@media (max-height: 770px), (max-width: 1344px) {
    html {
        font-size: 56%;
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    body {
        font-size: 1.85rem;
    }

    html {
        font-size: 50%;
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

a:hover {
    text-decoration: underline;
}

.container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    --bs-gutter-x: 1.5rem;
    padding-right: calc(var(--bs-gutter-x));
    padding-left: calc(var(--bs-gutter-x));
}

@media print {
    * {
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
}
#header {
    padding-top: 2rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 15;
}
#headerInside {
    border-radius: 4px;
    background-color: var(--color-gray-6);
    padding: 2rem;
}
#mainLogo {
    height: 50px;
    width: 100px;
    background-image: url("../img/logos/logo-dark.svg");
    background-size: contain;
    background-position: center;
    display: inline-block;
    text-indent: -3500px;
    background-repeat: no-repeat;
    margin-right: 3rem;
}
#mainMenu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}
@media (max-width: 992px) {
    #mainMenu{
        display: none;
    }
}
#mainMenu > li {
    display: flex;
    margin: 0;
    padding: 0;
}
#mainMenu > li > a{
    font-weight: 700;
    padding: 1rem 1.6rem;
    display: flex;
    font-size: 1.5rem;
    letter-spacing: -.5px;
    align-items: center;
}
#mainMenu > li > a > svg{
    margin-left: .5rem;
}
#mainMenu > li > .subMenu, #mainMenu > li > ul.miniMenu {
    display: none;
    position: absolute;
}
#mainMenu > li:hover>.miniMenu{
    display: block;
    left: 0;
    top: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px 0px;
    background: #fff;
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    z-index: 99;
}
#mainMenu > li:hover>.miniMenu li{
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
#mainMenu > li:hover>.miniMenu li a{
    font-weight: 400;
    display: block;
    transition: .2s;
    padding: 1rem 0;

}
#mainMenu > li:hover>.miniMenu li a:hover{

    text-decoration: none;
    background: var(--color-gray-6);
    font-weight: 700;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
#mainMenu > li:hover>.subMenu{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    align-items: start;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px 0px;
    background: #fff;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 99;

}
.subMenuTitles {
    padding: 2rem;
    flex: .3;
}
.subMenuTitles ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.subMenuTitles ul li{
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.subMenuTitles ul li a {
    display: block;
    font-weight: 400;
    padding: 1rem 0;
    transition: .2s;
}
.subMenuTitles ul li a:hover, .subMenuTitles ul li a.active{
    text-decoration: none;
    background: var(--color-gray-6);
    font-weight: 700;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.subMenuContents {
    padding: 2rem;
    flex: 1;
    background: var(--color-gray-6);
    border-radius: 0 8px 8px 0;
    align-self: stretch;
    min-height: 300px;

}
.subMenuContents ul, .subMenuContents ul li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.subMenuContents ul li a{
    white-space: normal;
    display: inline-block;
    text-overflow: ellipsis;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-bottom:dashed 1px transparent;
    transition: .15s;
}
.subMenuContents ul li a::after {
    content: "\ea1e";
    display: inline-block;
    font: normal normal normal 1em/1 'LineIcons';
    speak: none;
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: var(--color-gold);
    transition: .2s;
    opacity: .5;

}
.subMenuContents ul li a:hover {
    text-decoration: none;
    font-weight: 700;
    border-bottom-color: var(--color-gray-3);
}
.subMenuContents ul li a:hover::after {
    left: .6rem;
    opacity: 1;
}
.subMenuContents h3 {
    font-size: 3rem;
    margin:0
}
.subMenuContentDetails.hidden {
    display: none;
}
#titleV3 {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 2rem 0;
    background: var(--color-blue);
}
#titleV1 {
    padding: 14rem 0 1rem 0;
}
#titleV3 h1, #titleV1 h1 {
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: -1px;
    line-height: 1.1;
    margin:0 0 10px 0
}
#titleV1 h1 {
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: -1px;
    line-height: 1.1;
    margin:0;
    padding: 0;
}
#titleV3 h2 {
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: -.5px;
    line-height: 1.3;
    margin:0 0 10px 0
}
.breadcrumb {
    display: block;
    list-style-type: none;
    margin: 0 0 15px 0;
    padding: 0;
}
.breadcrumb li {
    display: inline-block;
}

.breadcrumb li a span, .breadcrumb li span {
    font-size: .7em;
    line-height: 2rem;
    position: relative;
    display: inline-block;
    padding: 0 3rem 0 0;
}

.breadcrumb li a span::after, .breadcrumb li span::after {
    position: absolute;
    right: 1.1rem;
    font: normal normal normal .8em 'LineIcons';
    content: "\ea5c";
    opacity: .5;
    font-weight: 900;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.globalUl {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    list-style: none;
    margin: 0 0 1.2rem 0;
    padding: 0;
}
@media (max-width:992px) {
    .globalUl {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .globalUl {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

.globalUl li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    color: rgb(60, 60, 60);
    font-weight: 300;
    padding-left: 1.2em;
    padding-top: 0.75em;
    margin-bottom: 0.75em !important;
    font-size: 1.6rem;
    position: relative;
}

.globalUl > li::before {
    position: absolute;
    display: block;
    width: .7em;
    content: '\00A0';
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9'%3E%3Cpath d='M2 4h5v1H2z'/%3E%3C/svg%3E");
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    top: 0.75em;
    left: 0;
    opacity: .6;
    font-size: inherit;
    line-height: inherit;
}
.rightHandedMenu{
    position: relative;
    display: inline-block;
}
.heroSpace {
    background: var(--color-yellow);
}
.heroMenu {
    position: absolute;
    right: 0;
    top: 100%;
    padding: 1rem 2rem;
    z-index: 17;
    display: none;
    border-radius: .3rem;

    margin: 0;
    text-align: left;
    background-color: var(--color-gray-1);

}
.heroMenu li {
    display: block;
    padding: 0;
    margin: 0;
    border-top: solid 1px rgba(255,255,255,.1);
}
.heroMenu li a{
    font-weight: 400;
    font-size: 1.2rem;
    padding: .7rem 0;
    color: #fff;
    display: inline-block;
}
.rightHandedMenu:hover > .heroMenu{
    display: block;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.menuHover {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: .4rem;
    font-weight: 700;
    font-size: 1.3rem;
    background-color: var(--color-gray-1);
    color: #fff;
}
.rightHandedMenu:hover > .menuHover{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.menuHover svg{
    margin-left:.5rem;
}
.section {
    padding: 5rem 0;
}
#footer {
    background-color: var(--color-gray-1);
    color: #fff;
    padding: 2rem 1rem;
}
.footerLogo {
    background-image: url("../img/logos/logo-white.svg");
    background-size: contain;
    background-position: center;
    width: 7.5rem;
    background-repeat: no-repeat;
    height: 2.5rem;
    display: inline-block;
}
.footerList, .footerList li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
.footerList li a {
    display: inline-block;
    padding: .5rem 0;
    font-size:1.3rem;
    opacity: .8;
}
#footer h4 {
    opacity: .5;
    font-size: 1.7rem;
    margin: 0 0 2rem 0;
    padding: 0 0 1rem 0;
    position: relative;
}
#footer h4::after {
    content: "\eb0d";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 100%;
    font: normal normal normal 1em/1 'LineIcons';
    font-weight: 900;
}
.itemLink {
    background-color: #fff;
    border-radius: 0 0 .7rem .7rem;
    display: block;
    transition: .2s;
}
.itemLink:hover {
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px 0px;
}
.itemLink p{
    padding: 0 3rem 2rem 3rem;
}
.itemLink p a, .pageLink{
    font-weight: 700;
    border: solid 1px var(--color-black);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: .4rem;
}
.itemHeader {
    display: block;
    border-radius: .7rem .7rem 0 0;
    padding: 5rem 3rem 3rem 3rem;
    background: #f7e0a1;
    color: var(--color-black);
    font-size: 2rem;
    font-weight: 700;
    min-height: 170px;
    position: relative;
}
.itemHeader span {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    display: inline-block;
}
.itemShort {
    display: block;
    padding: 3rem;
}
.swiperSame {
    overflow: hidden;
}
.darkContent, .whiteContent {
    padding: 5rem 1rem;
}
.whiteContent {
    color: #fff;
}
.bannerTitle {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.bannerShort{
    font-weight: 300;
    font-size: 2rem;
}
.subTitle {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    padding: 0;
}
.pageShort, .pageShort2 {
    margin-bottom: 2rem;
}
.contentImage {
    margin-bottom: 2rem;
}
.coloredContent {
    padding: 2rem;
    border-radius: .4rem;
    color: var(--color-black);
    background: var(--color-yellow);
}
.coloredContent a{
    color: var(--color-black);
    font-weight: 700;
    text-decoration: underline;
}
.homeSliderWrapper {
    overflow: hidden;
    position: relative;
}
.swiperItem {
    width: 100vw;
    height: 80vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
@media (max-width: 767px) and (orientation: landscape) {
    .swiperItem {
        height: 120vh;
    }
}
.swiperItem::after {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 40vh;
    content: "";
    display: inline-block;
    background-image: linear-gradient(0deg, rgba(0,0,0,.6) 20%, rgba(0,0,0,0) 80%);
}
.swiperItem::before {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    display: inline-block;
    background-image: linear-gradient(90deg, rgba(0,0,0,.6) 20%, rgba(0,0,0,0) 80%);
}
.bannerContent {
    position: absolute;
    bottom: 10vh;
    left: 0;
    z-index: 10;
    right: 0;
}
.bTitle {
    font-size: 6rem;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 700;
}
.bShort {
    font-size: 2rem;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 300;
}
.swiperBtns {
    position: absolute;
    bottom:3rem;
    right: 0;
    z-index: 56;
    left: 0;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamRotate180.active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.line {
    fill: none;
    -webkit-transition: stroke-dasharray .4s, stroke-dashoffset .4s, stroke .2s;
    -o-transition: stroke-dasharray .4s, stroke-dashoffset .4s, stroke .2s;
    transition: stroke-dasharray .4s, stroke-dashoffset .4s, stroke .2s;
    stroke: var(--color-black);
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham:hover > .line {
    stroke: #999999;
}

.ham1 .top {
    stroke-dasharray: 40 139;
}

.ham1 .bottom {
    stroke-dasharray: 40 180;
}

.ham1.active .top {
    stroke-dashoffset: -98px;
}

.ham1.active .bottom {
    stroke-dashoffset: -138px;
}
