/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.fullwidth {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/static/font/Inter-Regular.ttf') format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/static/font/Inter-Bold.ttf') format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('/static/font/Inter-Light.ttf') format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  src: url("/static/font/Inter-Medium.woff2") format("woff2");
}
/* Toastr custom style */
#toast-container > .toast {
  background-image: none !important;
  border-radius: 0 !important;
}
#toast-container > .toast:before {
  position: fixed;
  font-family: "Font Awesome 6 Pro";
  font-size: 24px;
  line-height: 24px;
  float: left;
  color: #FFF;
  padding-right: 0.5em;
  margin: auto 0.5em auto -1.5em;
}
#toast-container > .toast-warning:before {
  content: "\f0e7";
}
#toast-container > .toast-error:before {
  content: "\f071";
}
#toast-container > .toast-info:before {
  content: "\f005";
}
#toast-container > .toast-success:before {
  content: "\f00C";
}
#toast-container > div {
  -moz-box-shadow: 0 0 3px #999;
  -webkit-box-shadow: 0 0 3px #999;
  box-shadow: 0 0 3px #999;
  opacity: .9;
  -ms-filter: alpha(opacity=90);
  filter: alpha(opacity=90);
}
#toast-container > :hover {
  -moz-box-shadow: 0 0 4px #999;
  -webkit-box-shadow: 0 0 4px #999;
  box-shadow: 0 0 4px #999;
  opacity: 1;
  -ms-filter: alpha(opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
.toast {
  background-color: #003652;
}
.toast-success {
  background-color: #003652;
  opacity: 1 !important;
}
.toast-error {
  background-color: #ed5565;
}
.toast-info {
  background-color: #23c6c8;
}
.toast-warning {
  background-color: #f8ac59;
}
.toast-top-full-width {
  margin-top: 20px;
}
.toast-bottom-full-width {
  margin-bottom: 20px;
}
/*header
{
    width: 100%;
    z-index: 100;
    
    @media( min-width: @xl )
    {
        height: 115px;
    }
    
    .header-inner
    {
        width: 100%;
        z-index: 100;
        border-bottom: 5px solid @gray;
        background-color: @primary_color;
        @media( min-width: @xl )
        {
            position: fixed;
            top: 0;
            left: 0;
        }
    }
    
    nav.navigation
    {
        font-size: 24px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        max-width: @max-width;
        margin: 0 auto;
        position: relative;
        .transition( 0.3s );
        
        .nav-item
        {
            text-transform: uppercase;
            padding: 5px 10px 5px 10px;
            
            a
            {
                color: @background_color;
            }
            
            span.far
            {
                float: right;
                .transition( 0.3s );
            }
    
            &.open-nav-item span.far
            {
                transform: rotate( -180deg );
            }
            
            @media( min-width: @xl )
            {
                display: flex;
                position: relative;
                padding: 5px 10px 5px 10px;
                transition: 0.3s ease-out background-color, 0.3s ease-out padding;
           
                & > div
                {
                    display: flex;
                    align-items: center;
                }
                
                > a::after
                {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 1px;
                    background-color: @background_color;
                    transform: scaleX( 0 );
                    bottom: 1px;
                    transition: transform 250ms cubic-bezier(0.57,-0.54, 0.87, 0.55);
                    left: 0;
                }
                
                > a:hover::after, > a:focus::after
                {
                    transition-timing-function: cubic-bezier(0.11, 0.93, 0.64, 1.38);
                    transform: scale( 1 );
                }
    
                span.far
                {
                    display: none;
                }
            }

            span
            {
                margin-left: 3px;
            }
            
            @keyframes showSecondLevel
            {
                0% { transform: scale(0); opacity: 0; }
                1% { transform: scale(1) translateY(-10px); opacity: 0; }
                100% { transform: scale(1) translateY(0px); opacity: 1; }
            }
    
            @keyframes hideSecondLevel
            {
                0% { transform: scale(1) translateY(0px); opacity: 1; }
                99% { transform: scale(1) translateY(-10px); opacity: 0; }
                100% { transform: scale(0); opacity: 0; }
            }
            
            .nav-second-level
            {
                &.nav-collapse
                {
                    height: 0;
                    overflow: hidden;
                    opacity: 0;
                    .transition( 0.4s, ease-out, opacity );
                    
                    &.open
                    {
                        height: auto;
                        opacity: 1;
                    }
                }
                
                @media( min-width: @xl )
                {
                    position: absolute;
                    top: 35px;
                    padding-top: 17px;
                    left: 0;
                    .transition( 0.3s );
        
                    &.nav-collapse
                    {
                        display: none;
                        opacity: 0;
                        transform: scale(0);
                        animation-name: hideSecondLevel;
                        animation-duration: 0.4s;
                        transform-origin: 50% 0;
            
                        &.open
                        {
                            display: flex;
                            opacity: 1;
                            transform: scale(1);
                            animation-name: showSecondLevel;
                            animation-duration: 0.4s;
                        }
                    }
    
                    !*&::before
                    {
                        content: '';
                        position: absolute;
                        top: 8px;
                        left: 60px;
                        z-index: 10;
                        width: 20px;
                        height: 20px;
                        transform: rotate( 45deg );
                        background-color: @background_color;
                        box-shadow: -1px -1px 0;
                        .transition( 0.3s );
                    }*!
                    
                    > div
                    {
                        padding: 0;
                    }
        
                    a
                    {
                        display: block;
                        padding: 5px 30px;
                        color: @title_color;
                        .transition( 0.3s );
            
                        &:hover, &:focus
                        {
                            background-color: @nav_hover_color;
                        }
                    }
                }
            }
            
            .nav-second-level > .row
            {
                flex-flow: column;
                padding-left: 30px;
                
                @media( min-width: @xl )
                {
                    background-color: @background_color;
                    border: 1px solid;
                    padding: 15px 0;
                    margin: 0;
                    width: max-content;
                    
                    > div
                    {
                        padding: 0;
                    }
                }
            }
            
            .nav-third-level
            {
                flex-flow: column;
                margin: 0;
                .transition( 0.3s );
    
                > div
                {
                    padding: 0;
                }
                
                a
                {
                    display: block;
                    padding-left: 30px;
                }
                
                @media( min-width: @xl )
                {
                    a
                    {
                        display: block;
                        padding-left: 80px;
                    }
                }
            }
        }
        
        .nav-icon
        {
            display: none;
            
            
            @media( min-width: @xl )
            {
                display: inline-block;
                .transition(0.3s);
    
                height: 25px;
                width: 25px;
                object-fit: contain;
            }
        }
        
        .nav-logo
        {
            height: 50px;
            margin: 30px 0;
            display: block;
    
            .transition( 0.3s );
            
            .st0
            {
                fill: @background_color;
            }
        }
    
        //Navigation wird kleiner wenn gescrollt wird
        @media( min-width: @xl )
        {
            &.nav-scroll
            {
                font-size: 18px;
            
                .nav-icon
                {
                    height: 20px;
                    width: 20px;
                    object-fit: contain;
                }
            
                .nav-logo
                {
                    height: 40px;
                    margin: 16px 0;
                }
                
                .nav-second-level
                {
                    top: 27px;
                    padding-top: 20px;
    
                    &::before
                    {
                        left: 44px;
                        width: 17px;
                        height: 17px;
                        top: 13px;
                    }
                }
                
                .nav-third-level a
                {
                    padding-left: 67px;
                }
            }
        }
    
        .navigation-toggle
        {
            width: 51px;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
    
            .burger-icon, .burger-icon:before, .burger-icon:after
            {
                position: absolute;
                width: 51px;
                height: 7px;
                transition-duration: .22s;
                background-color: @background_color;
            }
    
            .burger-icon
            {
                &::before
                {
                    content: '';
                    left: 0;
                    top: -13px;
                }
        
                &::after
                {
                    content: '';
                    left: 0;
                    bottom: -13px;
                }
            }
    
            .burger-icon
            {
                transition-duration: 0.22s;
                transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        
                &::before
                {
                    transition: top 0.1s 0.25s ease-in,
                    opacity 0.1s ease-in;
                }
        
                &::after
                {
                    transition: bottom 0.1s 0.25s ease-in,
                    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
                }
            }
    
            &.is-active
            {
                .burger-icon
                {
                    transform: rotate(225deg);
                    transition-delay: 0.12s;
                    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            
                    &::before
                    {
                        top: 0;
                        opacity: 0;
                        transition: top 0.1s ease-out,
                        opacity 0.1s 0.12s ease-out;
                    }
            
                    &::after
                    {
                        bottom: 0;
                        transform: rotate(-90deg);
                        transition: bottom 0.1s ease-out,
                        transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
                    }
                }
            }
        }
        
        .mobile-nav
        {
            display: none;
            
            @media ( min-width: @xl )
            {
                display: flex;
            }
        }
    }
}*/
header {
  width: 100%;
  z-index: 100;
  margin-bottom: 3rem;
}
@media (min-width: 1200px) {
  header {
    height: 10rem;
  }
}
header .uppper-navigation {
  height: 6rem;
  max-width: 1500px;
  margin: 0 auto;
}
header .nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
header .nav-item a {
  color: #222 !important;
  text-transform: none !important;
  font-size: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
}
header .nav-item:hover {
  background-color: #fff;
  cursor: pointer;
}
header .nav-item.active {
  background-color: #fff;
}
header .lower-col-1 {
  height: 4rem;
}
header .lower-col-1.expand {
  height: 10rem;
  padding-left: 14px !important;
}
header .lower-col-1.expand .nav-item {
  height: unset;
  padding: 10px;
}
header .lower-col-2 {
  height: 4rem;
}
header .lower-col-2.expand {
  height: 7rem;
  padding-top: 10px;
}
header .lower-col-2.expand .nav-item {
  height: unset;
  padding: 10px;
}
header .lowwer-navigation {
  background-color: #F2F2F2;
}
header .lowwer-navigation .lower-row-div {
  max-width: 1500px;
  margin: 0 auto;
}
header .header-inner {
  width: 100%;
  z-index: 100;
  border-bottom: none;
  background-color: #FCD133;
}
@media (min-width: 1200px) {
  header .header-inner {
    position: fixed;
    top: 0;
    left: 0;
  }
}
header .upper-nav {
  max-width: 1500px;
  margin: 0 auto;
  height: 6rem;
}
header .lower-nav {
  background-color: #F2F2F2;
  height: 4rem;
}
header .lower-nav .lower-col {
  max-width: 1500px;
  margin: 0 auto;
  font-size: 0.875rem;
}
header .lower-nav .lower-col .nav-item {
  padding: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: none;
  color: #222;
  font-size: 1rem;
}
header .lower-nav .lower-col .nav-item:hover {
  background-color: #fff;
  cursor: pointer;
}
header .lower-nav .lower-col .nav-item:not(:last-child) {
  border-right: 1px solid #fff;
}
header .lower-nav .lower-col .nav-item i {
  padding-right: 0.5rem;
}
header .lower-nav .lower-col .nav-item a {
  color: #222 !important;
}
header nav.navigation {
  font-size: 24px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  max-width: unset;
  margin: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header nav.navigation .nav-item {
  text-transform: uppercase;
  padding: 5px 10px 5px 10px;
}
header nav.navigation .nav-item i {
  font-size: 18px;
  font-weight: 300 !important;
}
header nav.navigation .nav-item .fa-fw {
  width: unset !important;
  padding-right: 0.2rem;
}
header nav.navigation .nav-item a {
  color: #ffffff;
}
header nav.navigation .nav-item span.far {
  float: right;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header nav.navigation .nav-item.open-nav-item span.far {
  transform: rotate(-180deg);
}
@media (min-width: 1200px) {
  header nav.navigation .nav-item {
    display: flex;
    position: relative;
    padding: 5px 10px 5px 10px;
    transition: 0.3s ease-out background-color, 0.3s ease-out padding;
  }
  header nav.navigation .nav-item > div {
    display: flex;
    align-items: center;
  }
  header nav.navigation .nav-item > a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    bottom: 1px;
    transition: transform 250ms cubic-bezier(0.57, -0.54, 0.87, 0.55);
    left: 0;
  }
  header nav.navigation .nav-item > a:hover::after,
  header nav.navigation .nav-item > a:focus::after {
    transition-timing-function: cubic-bezier(0.11, 0.93, 0.64, 1.38);
    transform: scale(1);
  }
  header nav.navigation .nav-item span.far {
    display: none;
  }
}
header nav.navigation .nav-item span {
  margin-left: 3px;
}
@keyframes showSecondLevel {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  1% {
    transform: scale(1) translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@keyframes hideSecondLevel {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  99% {
    transform: scale(1) translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
header nav.navigation .nav-item .nav-second-level.nav-collapse {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out;
  -moz-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}
header nav.navigation .nav-item .nav-second-level.nav-collapse.open {
  height: auto;
  opacity: 1;
}
@media (min-width: 1200px) {
  header nav.navigation .nav-item .nav-second-level {
    position: absolute;
    top: 35px;
    padding-top: 17px;
    left: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    /*&::before
                    {
                        content: '';
                        position: absolute;
                        top: 8px;
                        left: 60px;
                        z-index: 10;
                        width: 20px;
                        height: 20px;
                        transform: rotate( 45deg );
                        background-color: @background_color;
                        box-shadow: -1px -1px 0;
                        .transition( 0.3s );
                    }*/
  }
  header nav.navigation .nav-item .nav-second-level.nav-collapse {
    display: none;
    opacity: 0;
    transform: scale(0);
    animation-name: hideSecondLevel;
    animation-duration: 0.4s;
    transform-origin: 50% 0;
  }
  header nav.navigation .nav-item .nav-second-level.nav-collapse.open {
    display: flex;
    opacity: 1;
    transform: scale(1);
    animation-name: showSecondLevel;
    animation-duration: 0.4s;
  }
  header nav.navigation .nav-item .nav-second-level > div {
    padding: 0;
  }
  header nav.navigation .nav-item .nav-second-level a {
    display: block;
    padding: 5px 30px;
    color: #000000;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header nav.navigation .nav-item .nav-second-level a:hover,
  header nav.navigation .nav-item .nav-second-level a:focus {
    background-color: #f3f3f3;
  }
}
header nav.navigation .nav-item .nav-second-level > .row {
  flex-flow: column;
  padding-left: 30px;
}
@media (min-width: 1200px) {
  header nav.navigation .nav-item .nav-second-level > .row {
    background-color: #ffffff;
    border: 1px solid;
    padding: 15px 0;
    margin: 0;
    width: max-content;
  }
  header nav.navigation .nav-item .nav-second-level > .row > div {
    padding: 0;
  }
}
header nav.navigation .nav-item .nav-third-level {
  flex-flow: column;
  margin: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header nav.navigation .nav-item .nav-third-level > div {
  padding: 0;
}
header nav.navigation .nav-item .nav-third-level a {
  display: block;
  padding-left: 30px;
}
@media (min-width: 1200px) {
  header nav.navigation .nav-item .nav-third-level a {
    display: block;
    padding-left: 80px;
  }
}
header nav.navigation .nav-icon {
  display: none;
}
@media (min-width: 1200px) {
  header nav.navigation .nav-icon {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    height: 25px;
    width: 25px;
    object-fit: contain;
  }
}
header nav.navigation .nav-logo {
  width: 8rem;
  margin: 0;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header nav.navigation .nav-logo .st0 {
  fill: #ffffff;
}
@media (min-width: 1200px) {
  header nav.navigation.nav-scroll {
    font-size: 18px;
  }
  header nav.navigation.nav-scroll .nav-icon {
    height: 20px;
    width: 20px;
    object-fit: contain;
  }
  header nav.navigation.nav-scroll .nav-second-level {
    top: 27px;
    padding-top: 20px;
  }
  header nav.navigation.nav-scroll .nav-second-level::before {
    left: 44px;
    width: 17px;
    height: 17px;
    top: 13px;
  }
  header nav.navigation.nav-scroll .nav-third-level a {
    padding-left: 67px;
  }
}
header nav.navigation .navigation-toggle {
  width: 51px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
header nav.navigation .navigation-toggle .burger-icon,
header nav.navigation .navigation-toggle .burger-icon:before,
header nav.navigation .navigation-toggle .burger-icon:after {
  position: absolute;
  width: 51px;
  height: 7px;
  transition-duration: .22s;
  background-color: #ffffff;
}
header nav.navigation .navigation-toggle .burger-icon::before {
  content: '';
  left: 0;
  top: -13px;
}
header nav.navigation .navigation-toggle .burger-icon::after {
  content: '';
  left: 0;
  bottom: -13px;
}
header nav.navigation .navigation-toggle .burger-icon {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
header nav.navigation .navigation-toggle .burger-icon::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
header nav.navigation .navigation-toggle .burger-icon::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
header nav.navigation .navigation-toggle.is-active .burger-icon {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
header nav.navigation .navigation-toggle.is-active .burger-icon::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
header nav.navigation .navigation-toggle.is-active .burger-icon::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header nav.navigation .mobile-nav {
  display: none;
}
@media (min-width: 1200px) {
  header nav.navigation .mobile-nav {
    display: flex;
  }
}
.login-modal {
  display: none;
  font-size: 15px;
  padding: 10px 15px 10px 20px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 1200px) {
  .login-modal {
    position: absolute;
    top: 80px;
    right: 116px;
    max-width: 364px;
    border: 1px solid #cccbcb;
    color: #000000;
    background-color: #ffffff;
    z-index: 1000;
  }
}
.login-modal label {
  margin-bottom: 0;
}
.login-modal a {
  font-size: 15px;
}
.login-modal .form-group {
  margin-bottom: 10px;
}
.login-modal input[type='text'],
.login-modal input[type='password'] {
  height: 38px;
  border: 1px solid #cccbcb;
  color: #cccbcb;
  font-size: 15px;
  margin: 0;
  width: 100%;
}
@media (min-width: 1200px) {
  nav.nav-scroll .login-modal {
    top: 57px;
  }
}
* {
  font-family: 'Inter';
  line-height: 1.5;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding-bottom: 0px;
  word-break: break-word;
  color: #6a6a6a;
  font-size: 18px;
}
a {
  color: #000000;
}
h3 {
  font-size: 22px;
}
a:focus,
a:hover {
  color: #000000;
  outline: none;
  text-decoration: none;
}
.page-container {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
main {
  height: 8rem;
}
.page {
  padding-left: 1rem;
  padding-right: 1rem;
  height: 100%;
}
@media (min-width: 1200px) {
  main.page {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
main.page section {
  max-width: 1500px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  padding-top: 0px;
  margin-bottom: 100px;
}
main.page section.section-top-0-padding {
  padding-top: 0;
}
/* transition */
.carousel .item img {
  -webkit-transition: all 20s;
  -moz-transition: all 20s;
  -o-transition: all 20s;
  transition: all 20s;
}
/* start status */
.carousel .item img,
.carousel .item.active.inactiveUntilOnLoad img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/* end status */
.carousel .item.active img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.carousel-inner .item {
  overflow: hidden;
}
form .input-group {
  margin-bottom: 40px;
}
form .input-group .input-group-text {
  background-color: #ffffff;
  border: 1px solid #707070;
  border-radius: 0;
  padding: 0 13px;
  color: #000000;
}
form .input-group i.fas {
  font-size: 22px;
}
form input[type='text'],
form input[type='email'],
form input[type='tel'],
form input[type='password'],
form input[type='number'],
form select,
form input[type='date'] {
  border: 1px solid #707070;
  border-radius: 0 !important;
  padding: 10px;
  height: 50px;
  font-size: 22px;
  display: block;
  margin: 0 auto 10px;
  color: #000000 !important;
}
.select2 {
  margin: 5px;
}
.select2 .select2-selection {
  border: 1px solid #707070;
  border-radius: 0;
  padding: 10px;
  margin: 0 auto;
  font-size: 14px;
  height: inherit;
}
.select2 .select2-selection .select2-selection__rendered {
  font-size: inherit;
  padding: 0;
}
.select2 .select2-selection .select2-selection__rendered,
.select2 .select2-selection .select2-selection__rendered * {
  line-height: 30px;
  height: 30px;
}
.select2 .select2-selection__arrow {
  height: 33px;
}
.select2 .select2-selection__arrow b {
  border-width: 8px 6px 0;
  margin-left: -9px;
  margin-top: -4px;
}
.select2 .select2-selection__placeholder {
  color: #aaaaaa;
  font-size: 16px;
}
.btn {
  text-decoration: none;
}
.btn-default {
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: 1px;
  width: auto;
  border: none;
  line-height: 1.5;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  white-space: normal;
  padding: 15px 20px;
  color: white;
  background-color: #6fa2be;
}
.btn-default:active,
.btn-default:hover,
.btn-default:link,
.btn-default:focus {
  background-color: #6fa2be;
  color: white;
}
.btn-default:hover {
  background-color: #4e8bac;
}
.btn-default:active:hover {
  background-color: #3e6e89;
  color: white;
}
.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover {
  background-color: #92b9ce;
}
.button {
  display: flex;
  font-size: 26px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  background-color: #6fa2be;
  color: #000000;
  border: 2px solid #6fa2be;
  padding: 5px 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  white-space: normal;
}
.button:hover,
.button:focus {
  text-decoration: none;
  border: 2px solid #000000;
}
.button:disabled {
  background-color: #aaaaaa;
  border: 1px solid #aaaaaa;
}
.button-fullwidth {
  width: 100%;
}
@media (min-width: 576px) {
  .button-fullwidth {
    width: auto;
  }
}
.button-regist {
  width: 220px;
  height: 70px;
  margin-bottom: 50px;
  border: 2px solid #000000;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.button-regist:hover,
.button-regist:focus,
.button-regist:active {
  background-color: #ffffff;
}
.button-fixed-props {
  height: 70px;
  width: 360px;
  margin-top: 32px;
  margin-bottom: 20px;
}
ul {
  padding-left: 40px;
  list-style: square;
}
ul.with_bullet_point li:before {
  content: "> ";
}
ul.dark_font {
  color: initial;
}
ul:not(:last-child) {
  margin-bottom: 27px;
}
ul.center li {
  text-align: center;
}
ul.with-checks {
  list-style: none;
  padding: 0;
}
ul.with-checks li {
  padding-left: 1.3em;
}
ul.with-checks li:before {
  content: "\f00c";
  /* FontAwesome Unicode */
  font-family: "Font Awesome 6 Pro";
  display: inline-block;
  margin-left: -1.3em;
  /* same as padding-left set on li */
  width: 1.3em;
  /* same as padding-left set on li */
}
.banner {
  margin-bottom: 80px;
  max-width: 100%;
}
.uppercase {
  text-transform: uppercase;
}
.bold {
  font-weight: bold;
}
.error_message {
  color: red;
}
.background-color-primary {
  background-color: #6fa2be;
}
.background-background-color {
  background-color: #ffffff;
}
.background-light-gray {
  background-color: #f6f6f6;
}
.background-dark-gray {
  background-color: #424242;
}
.background-black-gray {
  background-color: #313131;
}
.title {
  color: #000000;
  font-size: 45px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.color-title {
  color: #000000;
}
.layout-header {
  color: #000000;
  font-weight: bold;
  font-style: italic;
}
.margin-center {
  margin-left: auto;
  margin-right: auto;
}
.font-size-120 {
  font-size: 120px;
}
.font-size-24 {
  font-size: 24px;
}
.font-size-22 {
  font-size: 22px;
}
.padding-top-50 {
  padding-top: 50px;
}
.padding-top-78 {
  padding-top: 78px;
}
@media (min-width: 1200px) {
  .padding-side-xl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
.padding-top-bottom-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.padding-top-bottom-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
@media (min-width: 1200px) {
  .padding-side-xl-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}
@media (min-width: 1200px) {
  .padding-side-xl-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 1200px) {
  .padding-side-xl-100-50 {
    padding-left: 100px !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-100-50 {
    padding-left: 100px !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 768px) {
  .padding-side-md-100-50 {
    padding-left: 100px !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 1200px) {
  .padding-side-xl-50-100 {
    padding-left: 50px !important;
    padding-right: 100px !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-50-100 {
    padding-left: 50px !important;
    padding-right: 100px !important;
  }
}
@media (min-width: 768px) {
  .padding-side-md-50-100 {
    padding-left: 50px !important;
    padding-right: 100px !important;
  }
}
@media (min-width: 768px) {
  .padding-side-md-100-0 {
    padding-left: 100px !important;
    padding-right: 0px !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-100-0 {
    padding-left: 100px !important;
    padding-right: 0px !important;
  }
}
@media (min-width: 768px) {
  .padding-side-md-0-100 {
    padding-left: 0px !important;
    padding-right: 100px !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-0-100 {
    padding-left: 0px !important;
    padding-right: 100px !important;
  }
}
@media (min-width: 1200px) {
  .padding-side-xl-0-50 {
    padding-left: 0 !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-0-50 {
    padding-left: 0 !important;
    padding-right: 50px !important;
  }
}
@media (min-width: 1200px) {
  .padding-side-xl-50-0 {
    padding-left: 50px !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .padding-side-lg-50-0 {
    padding-left: 50px !important;
    padding-right: 0 !important;
  }
}
.margin-horizontal-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.margin-horizontal-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
.margin-bottom-25 {
  margin-bottom: 25px;
}
.flex-helper {
  flex-grow: 1;
  flex-basis: 0;
}
@media (min-width: 1200px) {
  .anchor {
    position: relative;
    top: -140px;
    visibility: hidden;
  }
}
@media (min-width: 1200px) {
  .fadeInRightBigOwn {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
  }
  .fadeOutRightBigOwn {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
  }
}
.text-error {
  /* error in translation or parts of the text */
  color: red;
  font-weight: bold;
}
.cookie-accept-banner {
  width: 100%;
  background-color: #6fa2be;
  color: #000000;
  position: fixed;
  bottom: 0;
  display: none;
  z-index: 1001;
  box-shadow: 0 0px 10px;
}
.cookie-accept-banner .cookie-accept-content {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}
.cookie-accept-banner .cookie-accept-content span {
  display: block;
}
@media (min-width: 1200px) {
  .cookie-accept-banner .cookie-accept-content span {
    display: inline;
  }
}
.cookie-accept-banner .cookie-accept-content a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-size: 17px;
  font-weight: 700;
  margin: 0 22px;
}
#back-to-top {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-color: #424242;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  #back-to-top {
    right: 100px;
  }
}
@keyframes toTheTop {
  0% {
    top: 0;
  }
  25% {
    top: -3px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: -3px;
  }
  100% {
    top: 0;
  }
}
#back-to-top:hover .fa-chevron-up {
  position: relative;
  animation-name: toTheTop;
  animation-duration: 1s;
}
.chatbot-container {
  position: fixed;
  right: 15px;
  bottom: 0px;
  line-height: 0;
  width: 60px;
  height: 78px;
  transition: width 0.3s 0.7s, height 0.3s 0.4s, background-color 0.3s 0.1s;
}
.chatbot-container svg {
  width: 60px;
}
.chatbot-container svg .st0 {
  fill: #FFFFFF;
}
.chatbot-container svg .st1 {
  fill: #1D1D1B;
}
.chatbot-container svg .st2 {
  fill: #FFED00;
}
.chatbot-container svg .st3 {
  fill: #FF0000;
}
.chatbot-container svg .st4 {
  fill: #FDEBB4;
}
.chatbot-container svg .st5 {
  fill: #940230;
}
.chatbot-container svg .st6 {
  fill: #D7E9E8;
}
.chatbot-container svg .st7 {
  fill: #6B0429;
}
.chatbot-container svg .st8 {
  fill: #ACC1BF;
}
.chatbot-container svg .st9 {
  fill: #353534;
}
.chatbot-container svg .st10 {
  fill: #543E1E;
}
.chatbot-container svg .st11 {
  fill: #EFDC9D;
}
.chatbot-container svg .st12 {
  fill: #4A4A49;
}
.chatbot-container svg .st0,
.chatbot-container svg .st1 {
  transition: opacity 0.3s 0.3s;
}
.chatbot-container svg .st2 {
  transition: fill 0.3s 0.3s;
}
.chatbot-container svg .st3 {
  opacity: 0;
}
.chatbot-container.chatbot-new-message svg .st3 {
  opacity: 1;
}
.chatbot-container.chatbot-open {
  width: 300px;
  height: 300px;
  background-color: white;
  transition: width 0.3s 0.1s, height 0.3s 0.4s, background-color 0.3s 0.7s;
}
.chatbot-container.chatbot-open svg .st0,
.chatbot-container.chatbot-open svg .st1 {
  transition: opacity 0.3s 0.7s;
  opacity: 0;
}
.chatbot-container.chatbot-open svg .st2 {
  transition: fill 0.3s 0.7s;
  fill: #FFFFFF;
}
figure {
  position: relative;
  margin: 0;
  height: 100%;
}
figure img {
  width: 100%;
  object-fit: cover;
}
figure figcaption {
  font-size: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  color: white;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  padding: 2px;
}
img.image-left {
  float: left;
  margin: 20px 20px 20px 0;
}
img.image-right {
  float: right;
  margin: 20px 0 20px 20px;
}
footer {
  color: #bababa;
  font-size: 15px;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 1500px;
  margin: 0 auto;
}
footer a {
  color: #bababa;
}
footer a:hover,
footer a:focus,
footer a:active {
  color: #bababa;
}
footer .footer-items {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 74px;
}
footer .footer-items li {
  display: inline;
}
footer .footer-items li:not( :last-child ) {
  margin-right: 28px;
}
@keyframes tree {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes plant-1 {
  from {
    transform: translate(356px, 434px) scale(0);
  }
  to {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes plant-2 {
  from {
    transform: translate(368px, 394px) scale(0);
  }
  to {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes plant-3 {
  from {
    transform: translate(363px, 406px) scale(0);
  }
  to {
    transform: translate(0, 0) scale(1);
  }
}
footer .co2-container {
  line-height: 0;
}
footer .co2-container .co2-plant {
  height: 85px;
}
footer .co2-container .co2-plant svg * {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
footer .co2-container .co2-plant .tree {
  transform: translate(0, 100px);
}
footer .co2-container .co2-plant .plant-1 {
  transform: translate(356px, 434px) scale(0);
}
footer .co2-container .co2-plant .plant-2 {
  transform: translate(368px, 394px) scale(0);
}
footer .co2-container .co2-plant .plant-3 {
  transform: translate(363px, 406px) scale(0);
}
footer .co2-container .co2-plant.build-plant .tree {
  animation-name: tree;
  animation-duration: 2.3s;
  animation-fill-mode: forwards;
}
footer .co2-container .co2-plant.build-plant .plant-1 {
  animation-name: plant-1;
  animation-delay: 2.2s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
footer .co2-container .co2-plant.build-plant .plant-3 {
  animation-name: plant-3;
  animation-delay: 2.6s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
footer .co2-container .co2-plant.build-plant .plant-2 {
  animation-name: plant-2;
  animation-delay: 3s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
footer .co2-header {
  padding-left: 25px;
  font-size: 40px;
  color: #000000;
  font-weight: 200;
}
footer {
  font-family: 'Inter';
  background-color: #F2F2F2;
  color: #222;
  font-size: 0.875rem;
  padding: 0;
  height: 4rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  max-width: unset;
}
footer .footer-items {
  height: 4rem;
  display: flex;
  align-items: center;
  color: #222;
  margin-right: 0 !important;
  padding-left: 10px;
}
footer .footer-items li {
  margin: 0 !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}
footer .footer-items li:not(:last-child) {
  border-right: 1px solid #fff;
}
footer .footer-items li:hover {
  cursor: pointer;
  background-color: #fff;
}
footer .footer-items .nav-label {
  color: #222;
}
@media (max-width: 915px) {
  .page {
    padding-left: 1rem;
    padding-right: 1rem;
    height: 100%;
    margin-bottom: 8rem;
  }
  footer {
    height: 8rem;
  }
  footer .footer-lower-row {
    border-top: 1px solid #fff;
    width: 100%;
  }
  footer .footer-lower-row .footer-items {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  footer .footer-lower-row li {
    border-right: 1px solid #fff;
  }
}
@media (max-width: 513px) {
  .page {
    padding-left: 1rem;
    padding-right: 1rem;
    height: 100%;
    margin-bottom: 22rem;
  }
  footer {
    height: 20rem;
  }
  footer .footer-row-upper {
    border-top: 1px solid #fff;
    width: 100%;
  }
  footer .footer-lower-row {
    width: 100%;
    order: -1;
    height: 100%;
    border-top: 1px solid #fff;
  }
  footer .footer-lower-row .footer-items {
    flex-direction: column;
    margin-left: 0 !important;
    padding-left: 0 !important;
    height: 100%;
  }
  footer .footer-lower-row li {
    width: 100%;
    border: none !important;
    border-top: 1px solid #fff!important;
    padding: 15px;
  }
}
.mceContentBody a {
  color: red !important;
  /* FF requires a important here */
}
.content-image img {
  width: 100%;
}
.navigation-in-footer {
  /*border-top: 5px solid @black_gray;*/
  padding-top: 27px;
  padding-bottom: 27px;
}
@media (min-width: 768px) {
  .navigation-in-footer .col-md-auto:not(:last-child) {
    padding-right: 60px;
  }
}
.navigation-in-footer span {
  color: #000000;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
}
.social-content {
  margin-top: 18px;
  text-align: center;
}
.social-content a:not(:last-child) {
  margin-right: 25px;
}
section {
  text-align: center;
}
@media (min-width: 768px) {
  section .social-content {
    text-align: center;
  }
}
section .social-content .social-info {
  padding-bottom: 26px;
}
section .social-content .social-icons a {
  margin: 5px;
  text-decoration: none;
}
.error-section svg {
  margin: 100px 0;
  width: 100%;
}
.error-section svg .cls-1 {
  fill: #fff;
}
.error-section svg .cls-2 {
  fill: #ffe504;
}
.error-section svg .cls-3 {
  font-size: 45px;
  fill: #000000;
}
@keyframes fliegerAnimation;
/*forces default text background*/
.force-text-bg {
  background-color: #ffffff !important;
}
.home-padding-10 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}
.grey-background {
  background-color: #ccc;
}
.home-container {
  background-color: #fff;
}
.home-container h1 {
  font-size: 1.875rem;
  color: #222;
  margin-bottom: 2rem;
}
.home-container h3 {
  font-size: 1rem;
  color: #222;
}
.home-container .btn-yellow-login {
  background-color: #FCD133;
  height: 3rem;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 0;
  width: 150px;
  color: #222;
  font-weight: bold;
  padding: 0;
  padding-right: 1rem;
  font-size: 1.5em;
  width: 300px;
  height: 4rem;
}
.home-container .btn-yellow-login i {
  padding-right: 1rem;
  padding-left: 1rem;
  font-weight: 500;
}
.home-container .btn-extern {
  background-color: #fff;
  border: 1px solid #000;
  height: 3rem;
  display: flex;
  align-items: center;
  border-radius: 0;
  width: 150px;
  color: #222;
  font-weight: bold;
  padding: 0;
  padding-right: 1rem;
  font-size: 0.875rem;
}
.home-container .btn-extern i {
  padding-right: 1rem;
  padding-left: 1rem;
  font-weight: 500;
}
.home-footer {
  background-color: transparent;
  color: #222;
  font-size: 0.875rem;
  padding: 0;
  height: 8rem;
  width: 100%;
  position: absolute;
  bottom: 0 !important;
  max-width: unset;
}
.home-footer .background-footer {
  background-color: #F2F2F2;
}
.home-footer .footer-lower-row {
  width: 100%;
}
.home-footer .footer-lower-row .footer-items {
  margin-right: 0;
}
.home-footer .footer-items {
  height: 4rem;
  display: flex;
  align-items: center;
  padding-left: 10rem;
  padding-left: 8.5rem;
  color: #222;
}
.home-footer .footer-items li {
  margin: 0 !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.home-footer .footer-items li:not(:last-child) {
  border-right: 1px solid #fff;
}
.home-footer .footer-items li:hover {
  cursor: pointer;
  background-color: #fff;
}
.home-footer .footer-items .nav-label {
  color: #222;
}
.home-footer .footer-items:last-child {
  border-top: 1px solid #fff;
}
.home-full-footer {
  background-color: #F2F2F2;
  color: #222;
  font-size: 0.875rem;
  padding: 0;
  height: 4rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  max-width: unset;
}
.home-full-footer .footer-items {
  height: 4rem;
  display: flex;
  align-items: center;
  color: #222;
}
.home-full-footer .footer-items li {
  margin: 0 !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.home-full-footer .footer-items li:first-child {
  padding-left: 0;
}
.home-full-footer .footer-items li:not(:last-child) {
  border-right: 1px solid #fff;
}
.home-full-footer .footer-items li:hover {
  cursor: pointer;
  background-color: #fff;
}
.home-full-footer .footer-items .nav-label {
  color: #222;
}
.main-container {
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 1470px) {
  .home-padding-10 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .home-footer .footer-items {
    padding-left: 2rem !important;
    padding-right: 0 !important;
  }
  .page {
    height: 100%;
    /*margin-bottom: 8rem;*/
  }
  .home-footer {
    height: 8rem;
  }
  .home-footer .footer-lower-row {
    width: 100%;
  }
  .home-footer .footer-lower-row .footer-items {
    margin-left: 0 !important;
  }
  .home-footer .footer-lower-row li {
    border-right: 1px solid #fff;
  }
}
@media (max-width: 610px) {
  .page {
    height: 100%;
    margin-bottom: 20rem;
  }
  .home-footer {
    height: 20rem;
  }
  .home-footer .footer-row-upper {
    border-top: none;
    width: 100%;
  }
  .home-footer .footer-row-upper .footer-items {
    padding-left: 15px !important;
    width: 100%;
  }
  .home-footer .footer-row-upper .footer-items li {
    padding-left: 0;
  }
  .home-footer .footer-lower-row {
    width: 100%;
    order: -1;
    height: 100%;
    border-top: 1px solid #fff;
  }
  .home-footer .footer-lower-row .footer-items {
    flex-direction: column;
    margin-left: 0 !important;
    height: 100%;
    padding-left: 0 !important;
    width: 100%;
  }
  .home-footer .footer-lower-row li {
    width: 100%;
    border: none !important;
    border-top: 1px solid #fff!important;
    padding: 15px !important;
  }
}
.custom-file {
  height: 3rem;
}
.custom-modal-error {
  color: #DD3B41;
  font-size: 0.875rem;
  padding-left: 20px;
}
/*Validation*/
.parsley-errors-list {
  margin-top: 4px;
  padding: 0;
}
.parsley-errors-list li {
  padding: 0;
  list-style: none;
  color: #cc0000;
}
.parsley-error {
  border-color: #cc0000 !important;
}
.invalid-attachment-title,
.invalid-attachment-category,
#fileuploaderror {
  display: none;
  color: #cc0000;
}
.loginscreen {
  height: 100%;
  width: 327px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 327px;
  z-index: 100;
  margin: 0 auto;
  padding-bottom: 40px;
}
.loginscreen * {
  font-family: 'Lato', sans-serif;
  color: white;
  text-shadow: none;
}
.loginscreen .logo {
  margin-bottom: 30px;
}
.loginscreen .logo img {
  width: 100%;
}
.loginscreen .welcome {
  width: 100%;
  height: 100%;
}
.loginscreen .welcome h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 0;
  color: #222;
}
.loginscreen form.login-form {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.loginscreen form.login-form label {
  text-align: left;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  color: dimgrey;
}
.loginscreen form.login-form input {
  width: 100%;
  height: 39px !important;
  border-radius: 4px !important;
  border: 1px solid #DEDEDF !important;
  margin-bottom: 20px !important;
  font-size: 1rem;
}
.loginscreen form.login-form input:focus {
  border-color: #6FA3C0 !important;
  outline: none;
}
.loginscreen form.login-form input.error,
.loginscreen form.login-form input.parsley-error {
  border-color: #F84300 !important;
}
.loginscreen form.login-form input:last-child {
  margin-bottom: 9px;
}
.loginscreen form.login-form .error-frame {
  min-height: 15px;
  display: flex;
  justify-content: space-between;
  margin: auto;
  margin-bottom: 13px;
  align-self: stretch;
  opacity: 0;
  transition: 250ms;
}
.loginscreen form.login-form .error-frame .error-img {
  height: 14px;
  width: 16px;
  min-width: 16px;
}
.loginscreen form.login-form .error-frame .error-img img {
  height: 100%;
  width: 100%;
  display: none;
  padding-right: 5px;
  padding-top: 2px;
}
.loginscreen form.login-form .error-frame span {
  font-size: 15px;
  font-style: italic;
  font-weight: bold;
  color: #F84300;
}
.loginscreen form.login-form .error-frame.has-error,
.loginscreen form.login-form .error-frame.parsley-error {
  opacity: 1;
}
.loginscreen form.login-form .error-frame.has-error img,
.loginscreen form.login-form .error-frame.parsley-error img {
  display: inline-block;
  padding-right: 5px;
}
.loginscreen form.login-form a,
.loginscreen form.login-form button {
  align-self: flex-end;
}
.loginscreen form.login-form .btn-login {
  background-color: white;
  color: #6FA3C0;
  height: 36px;
  width: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 20px;
  transition: 200ms;
  border: 1px solid whitesmoke;
}
.loginscreen form.login-form .btn-login span {
  color: #6D98AC;
}
.loginscreen form.login-form .btn-login:focus {
  border: 2px solid #6FA3C0;
}
.loginscreen form.login-form .btn-login #loader-frame {
  position: relative;
  display: none;
}
.loginscreen form.login-form .btn-login #loader-frame span {
  margin-left: 12px;
}
.loginscreen form.login-form .btn-login #loader-frame .ld-ring {
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
  color: inherit;
  display: inline-block;
  box-sizing: content-box;
  animation: ld-cycle 1s infinite linear;
}
.loginscreen form.login-form .btn-login #loader-frame .ld-ring:after {
  content: " ";
  display: block;
  width: 2em;
  height: 2em;
  box-sizing: border-box;
  transform-origin: 0em 0em;
  transform: translateZ(0) scale(0.5);
  backface-visibility: hidden;
  border-radius: 50%;
  border: 0.3em solid #6FA3C0;
  border-left-color: transparent;
}
@keyframes ld-cycle {
  0% {
    animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loginscreen form.login-form .btn-login.loading {
  opacity: 0.5;
}
.loginscreen form.login-form .btn-login.loading > span {
  display: none;
}
.loginscreen form.login-form .btn-login.loading #loader-frame {
  display: flex;
}
.loginscreen form.login-form .forgot-link {
  padding-right: 10px;
  color: dimgrey;
}
.loginscreen form.login-form .forgot-link:hover,
.loginscreen form.login-form .forgot-link:focus {
  color: dimgrey;
  text-decoration: underline;
  padding-right: 10px;
}
.login-box {
  border-radius: 25px;
  background-color: rgba(243, 243, 244, 0.85);
  padding: 50px;
  width: 500px;
}
body {
  font-size: 13px;
}
#viewport {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(180deg, #497fa5 0%, #92c6de 100%);
}
.cloud-bg-row {
  height: 23%;
  width: 6000px;
  animation: slide linear infinite;
  animation-duration: 200s;
}
.cloud-bg-row:last-child {
  height: 8%;
}
.cloud-bg-row .cloud-frame {
  height: 100%;
  display: flex;
}
.cloud-bg-row:nth-child(2) {
  animation-duration: 600s;
}
.cloud-bg-row:nth-child(3) {
  animation-duration: 1000s;
}
.cloud-bg-row:nth-child(4) {
  animation-duration: 1400s;
}
@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(2000px, 0, 0);
  }
}
#world {
  height: 100%;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  display: flex;
}
#world div {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
}
.cloudGroup {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
.cloudBase {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.cloudLayer {
  position: absolute;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
}
@media (max-width: 500px) {
  #viewport {
    display: none;
  }
  .loginscreen {
    max-width: none;
    width: 100%;
    justify-content: start;
    padding-bottom: 0;
  }
  .login-box {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
    height: 100%;
  }
  .login-box .btn-login {
    width: 100% !important;
    margin-top: 10px !important;
    height: 39px !important;
  }
  .login-box .forgot-link {
    order: 1;
  }
}
.template-page-download-section {
  clear: both;
  margin-top: 20px !important;
}
.template-page-download-section .file-description {
  font-weight: bold;
}
.template-page-download-section .download-element {
  margin-top: 20px;
}
.header-image {
  position: relative;
}
.header-image.without-block {
  margin-bottom: 0;
}
.header-image figure {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
  height: 400px;
}
@media (min-width: 992px) {
  .header-image figure {
    height: 500px;
  }
}
.header-image figure > img,
.header-image figure > div {
  height: 100%;
  position: relative;
}
.header-image .header-image-content {
  position: relative;
  max-width: 1200px;
  background-color: #ffffff;
  border: 1px solid;
  padding: 10px 15px;
  margin-left: auto;
  margin-right: auto;
  top: -124px;
  margin-bottom: -124px;
  text-align: center;
}
.header-image .header-image-content .header-icon {
  position: absolute;
  top: -62px;
  width: 71px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .header-image .header-image-content {
    padding: 70px 150px;
  }
  .header-image .header-image-content .header-icon {
    top: -84px;
    width: 102px;
  }
}
.point-list-3 p {
  font-size: 15px;
}
.point-list-3 .icon {
  margin-bottom: 28px;
  height: 40px;
}
.point-list-3 .icon img {
  width: auto;
}
.number-info {
  text-align: center;
  background-color: white;
}
.number-info .icon img {
  height: 55px;
  width: auto;
}
@media (min-width: 992px) {
  .number-info .number-info-head {
    padding: 0 150px;
  }
}
.number-info .number-info-list {
  margin-top: 60px;
}
.number-info .number-info-list h3 {
  font-size: 40px;
  margin-top: 8px;
}
.number-info .number-info-list p {
  color: #000000;
  font-size: 15px;
}
.statement-block .statement-image {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .statement-block .statement-image {
    margin-bottom: 0;
  }
}
.statement-block .statement-image img {
  max-width: 250px;
  max-height: 350px;
}
.statement-block .statement-logo img {
  max-width: 250px;
  max-height: 150px;
}
.statement-block .statement-header {
  margin-left: 20px;
}
.statement-block .statement-text {
  background-color: #ffffff;
  padding: 20px 20px 20px 40px;
  margin-left: -35px;
  border: 1px solid;
}
.testimonial-block {
  padding-left: 0px !important;
  padding-right: 0px !important;
  color: #ffffff;
}
.testimonial-block .testimonial-entry {
  position: relative;
  margin-top: 20px;
  margin-bottom: 40px;
}
.testimonial-block .testimonial-image img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  position: absolute;
}
.testimonial-block .testimonial-content {
  background-color: #6fa2be;
  margin-left: 100px;
  border-radius: 10px;
  box-shadow: 0 0 6px #404040;
  position: relative;
}
.testimonial-block .testimonial-content > div {
  background-color: #6fa2be;
  position: relative;
  padding: 15px;
  border-radius: 10px;
}
.testimonial-block .testimonial-content::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 65px;
  background-color: #6fa2be;
  width: 100px;
  height: 60px;
  transform: skewX(51deg);
  box-shadow: 0 0 6px #404040;
}
.testimonial-block .slick-dots li button:before {
  opacity: .50;
  color: #6fa2be;
}
.testimonial-block .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #6fa2be;
}
.background-image {
  min-height: 200px;
}
.background-image > div {
  height: 100%;
}
@media (min-width: 768px) {
  .col-count-3 {
    column-count: 3;
    column-gap: 40px;
  }
}
.images-text-3 figure {
  height: auto;
}
.images-text-3 figure img {
  height: 450px;
}
.images-text-3 figure p {
  font-size: 15px;
}
@media (min-width: 992px) {
  .icon-header-content {
    width: 900px;
  }
}
.icon-header-content .icon-image {
  margin: 0 auto;
}
.icon-image {
  width: 100px;
}
.number-icon-text-content {
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .number-icon-text-content {
    text-align: left;
  }
}
.number-icon-text-content .text-content {
  max-width: 300px;
  margin-top: 1rem;
}
.quotation-content .quotation-text {
  padding-left: 0;
  padding-bottom: 10px;
}
.quotation-content .quotation-text .quotation {
  font-size: 28px;
  padding: 50px 10px 30px 50px;
}
.quotation-content .quotation-text .author {
  text-align: right;
}
.quotation-content .quotation-image {
  flex-basis: 260px;
  flex-grow: 0;
  padding-right: 0px;
}
#home-slider .slick-arrow {
  z-index: 100;
  color: white;
}
#home-slider .slick-arrow.slick-prev {
  padding-left: 5px;
}
#home-slider .slick-arrow.slick-next {
  padding-right: 5px;
}
#home-slider .slick-slide {
  margin: 0 !important;
  position: relative;
  height: 600px;
}
#home-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}
#home-slider .slick-slide .slider-button {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
#home-slider .slick-slide .slider-button .hero-image-header .h2 {
  color: black;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}
#home-slider .slick-slide .slider-button a {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background-color: #6fa2be;
  padding: 11px 15px;
  border: 1px solid #6fa2be;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}
#home-slider .slick-slide .slider-button a:hover {
  box-shadow: 0 0 20px 0 #ffffff;
  text-decoration: none;
}
.main-section {
  padding: 60px 0;
}
.home-newsletter-section .newsletter-title {
  margin-top: 0;
  margin-bottom: 26px;
}
.home-newsletter-section .newsletter-info {
  margin-top: 0;
  margin-bottom: 26px;
}
.home-newsletter-section .newsletter-input-button {
  display: flex;
}
.home-newsletter-section .newsletter-input-button .newsletter-input-frontend {
  padding: 15px 15px 15px 20px;
  margin: 0;
  border-radius: 10px 0 0 10px;
  border: 1px solid #424242;
  width: 60%;
  font-size: 18px;
}
.home-newsletter-section .newsletter-input-button .newsletter-send-button {
  padding: 15px;
  text-transform: none;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #6fa2be;
  background-color: #6fa2be;
  color: #ffffff;
  transition: 0.5s all;
  font-size: 18px;
}
.newsletter-error-msg {
  padding: 10px 0;
}
.hidden-thanks-newsletter-registration {
  color: #00cc00;
  display: none;
}
.hidden-error-newsletter-registration,
.hidden-email-was-in-newsletter-registration,
.hidden-email-was-in-newsletter-request {
  color: #cc0000;
  display: none;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3) rotate(0.01deg);
    /* Rotate fixes shaking animation in some browsers. http://stackoverflow.com/questions/28992549/internet-explorer-and-css-transform-value-of-scale-on-keyframes */
  }
}
.home-slider button.slick-prev {
  z-index: 20;
  position: absolute;
  left: 0;
  height: 100%;
  width: 165px;
  max-width: 45%;
  color: white;
}
.home-slider button.slick-prev:hover {
  background-image: -webkit-linear-gradient(-180deg, transparent, rgba(0, 0, 0, 0.5));
  background-image: -moz-linear-gradient(-180deg, transparent, rgba(0, 0, 0, 0.5));
  background-image: -ms-linear-gradient(-180deg, transparent, rgba(0, 0, 0, 0.5));
  background-image: -o-linear-gradient(-180deg, transparent, rgba(0, 0, 0, 0.5));
  background-image: linear-gradient(270deg, transparent, rgba(0, 0, 0, 0.5));
}
.home-slider button.slick-next {
  z-index: 20;
  position: absolute;
  right: 0;
  height: 100%;
  width: 165px;
  max-width: 45%;
  color: white;
}
.home-slider button.slick-next:hover {
  background-image: -webkit-linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.5));
  background-image: -moz-linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.5));
  background-image: -ms-linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.5));
  background-image: -o-linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.5));
  background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5));
}
.home-slider .slick-slide {
  overflow: hidden;
  margin: 0;
}
.hidden-contact-success-message {
  display: none;
  color: #009500;
}
.hidden-contact-error-message {
  display: none;
  color: #970820;
}
.contact-form-button-holder {
  text-align: right;
  padding-top: 20px;
}
.team-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px -15px 0 -15px;
}
.team-content .team-item {
  margin-bottom: 46px;
  padding: 0 15px;
  width: 330px;
}
.team-content .team-item .team-image {
  width: 300px;
  height: 200px;
  margin-bottom: 10px;
}
.team-content .team-item .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-content .team-item .team-info {
  font-weight: 400;
  font-size: 16px;
}
.partner-content {
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.partner-content .partner-item {
  margin: 20px 0 36px 0;
  flex-flow: column;
  display: flex;
  align-items: center;
}
@media (min-width: 576px) {
  .partner-content .partner-item {
    flex-flow: row;
  }
}
.partner-content .partner-item .partner-image {
  height: 100px;
  flex-shrink: 0;
  vertical-align: center;
  margin-right: 10px;
}
@media (min-width: 576px) {
  .partner-content .partner-item .partner-image {
    flex-basis: 162px;
  }
}
.partner-content .partner-item .partner-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.partner-content .partner-item .partner-info {
  font-weight: 400;
}
.partner-content .partner-item .partner-info .partner-item-header {
  font-weight: 600;
  font-size: 16px;
  color: #424242;
  text-align: left;
}
.partner-content .partner-item .partner-info .partner-link {
  text-align: right;
}
.sitemap-main-nav-entry {
  display: block;
  width: fit-content;
  font-weight: bold;
  font-size: 16px;
}
.sitemap-footer-nav-entry {
  display: block;
  width: fit-content;
  font-weight: normal;
  font-size: 14px;
  margin-left: 12px;
}
.landing-page-heading {
  font-size: 45px;
  word-wrap: break-word;
}
.faq-product-header {
  width: 100%;
  height: 110px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .faq-product-header {
    padding-left: 98px;
    padding-right: 98px;
  }
}
.faq-product-header .faq-product-image svg {
  height: 70px;
}
.faq-product-header .faq-product-image svg .prod-fill {
  fill: #e3e3e3;
}
.faq-product-header .faq-product-image svg .prod-fill-black {
  fill: #000;
}
.faq-product-header .faq-product-name {
  font-size: 22px;
  color: #000;
  font-weight: bold;
}
.faq-container {
  background-color: white;
  padding-bottom: 110px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .faq-container {
    padding-left: 98px;
    padding-right: 98px;
  }
}
.faq-back-button-area {
  background-color: white;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .faq-back-button-area {
    padding-left: 98px;
    padding-right: 98px;
  }
}
.faq-back-button-area a {
  color: #2d6b8e;
}
.faq-back-button-area a:hover {
  text-decoration: underline;
}
.faq-landing-page {
  padding-top: 100px !important;
  color: #000;
}
.faq-landing-page .faq-search-area {
  padding-top: 44px;
  padding-bottom: 67px;
}
.faq-landing-page .faq-product-item {
  margin-top: 25px;
  margin-left: 98px;
  margin-right: 98px;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
}
.faq-landing-page .faq-product-item .faq-product-image-holder img,
.faq-landing-page .faq-product-item .faq-product-image-holder svg {
  height: 98px;
}
.faq-landing-page .faq-product-item .faq-product-image-holder img .prod-fill,
.faq-landing-page .faq-product-item .faq-product-image-holder svg .prod-fill {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  fill: white;
}
.faq-landing-page .faq-product-item .faq-product-image-holder img .prod-fill-black,
.faq-landing-page .faq-product-item .faq-product-image-holder svg .prod-fill-black {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  fill: #6a6a6a;
}
.faq-landing-page .faq-product-item .faq-product-title {
  margin-top: 22px;
  font-size: 20px;
  color: #6a6a6a;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.faq-landing-page .faq-product-item:hover .faq-product-title {
  color: #000;
}
.faq-landing-page .faq-product-item:hover .faq-product-image-holder img .prod-fill,
.faq-landing-page .faq-product-item:hover .faq-product-image-holder svg .prod-fill {
  fill: #6fa2be;
}
.faq-landing-page .faq-product-item:hover .faq-product-image-holder img .prod-fill-black,
.faq-landing-page .faq-product-item:hover .faq-product-image-holder svg .prod-fill-black {
  fill: #000;
}
.faq-landing-page .faq-container {
  padding-top: 0px;
}
.faq-landing-page .faq-top-three-heading {
  margin-top: 92px;
}
.faq-landing-page .faq-image-holder {
  margin-top: 92px;
}
.faq-landing-page .faq-image-holder img {
  width: 100%;
  max-height: 240px;
  min-height: 0;
  max-width: 100%;
}
.faq-search-area h3 {
  padding-bottom: 48px;
  color: #000;
  font-weight: bold;
}
.faq-search-area .faq-quick-search-input {
  height: 48px;
  border: solid 1px #7E7E7E;
  padding: 15px;
  width: 100%;
}
.faq-search-area .faq-quick-search-input:focus {
  border: 2px solid #81A1B2;
}
.faq-search-area .faq-quick-search-button-custom {
  height: 48px;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .faq-search-area .faq-quick-search-button-custom {
    margin-top: 0;
    margin-left: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1540px) {
  .faq-list-holder {
    padding-right: 10px;
  }
}
@media (min-width: 1540px) {
  .faq-list-holder {
    padding-right: 83px;
  }
}
.faq-image-holder {
  margin-top: 81px;
}
@media (min-width: 1200px) {
  .faq-image-holder {
    margin-top: 0;
  }
}
.faq-image-holder img {
  max-width: 100%;
  min-height: 435px;
  max-height: 435px;
  object-fit: cover;
}
.faq-top-three-heading {
  margin-top: 48px;
}
.faq-top-three-heading .faq-top-three-heading-panel {
  font-size: 22px;
  color: #000;
  font-weight: bold;
  background-color: #6fa2be;
  height: 69px;
  border-bottom: solid 7px #959595;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
@media (min-width: 992px) {
  .faq-list-left {
    padding-right: 49px;
  }
}
@media (min-width: 1200px) and (max-width: 1540px) {
  .faq-list-left {
    padding-right: 10px;
  }
}
@media (min-width: 1540px) {
  .faq-list-left {
    padding-right: 49px;
  }
}
@media (min-width: 992px) {
  .faq-list-right {
    padding-left: 49px;
  }
}
@media (min-width: 1200px) and (max-width: 1540px) {
  .faq-list-right {
    padding-left: 10px;
  }
}
@media (min-width: 1540px) {
  .faq-list-right {
    padding-left: 49px;
  }
}
.faq-top-three-list-entry {
  background-color: #e8e8e8;
  min-height: 82px;
  margin-bottom: 7px;
  padding-left: 15px;
  padding-top: 13px;
}
.faq-top-three-list-entry:hover {
  background-color: #6fa2be;
  cursor: pointer;
  transition: 0.3s ease-out background-color, 0.3s ease-out padding;
}
.faq-top-three-list-entry .faq-entry-top-text {
  font-weight: bold;
  font-style: italic;
  font-size: 15px;
  color: #6a6a6a;
  display: flex;
  justify-content: space-between;
  padding-right: 15px;
}
.faq-top-three-list-entry .faq-entry-bottom-text {
  text-align: right;
  padding-right: 15px;
  padding-top: 8px;
  font-size: 15px;
}
.faq-button-holder {
  margin-top: 44px;
}
.faq-ask-us {
  margin-top: 64px;
  color: #000;
}
.faq-paging .faq-list-page-counter-holder {
  display: none;
}
.faq-paging .faq-list-page-counter-holder .faq-paging-entries-label {
  display: none;
}
@media (min-width: 1315px) {
  .faq-paging .faq-list-page-counter-holder .faq-paging-entries-label {
    display: inline-block;
  }
}
@media (min-width: 576px) {
  .faq-paging .faq-list-page-counter-holder {
    display: block;
  }
}
.faq-paging .faq-list-page-counter-holder .faq-list-page-counter {
  flex: 1 0 auto;
}
.faq-paging .button-holder {
  width: 100%;
  margin-bottom: 10px;
  margin-left: 7px;
  margin-right: 7px;
  height: 42px;
}
@media (min-width: 576px) {
  .faq-paging .button-holder {
    width: 80px;
    margin-bottom: 0;
  }
}
.faq-paging .button-holder .button {
  height: 42px;
}
.faq-paging .button-holder .disabled {
  background-color: #e8e8e8;
  border-color: #e8e8e8;
  cursor: not-allowed;
}
.faq-paging .button-holder:first-of-type {
  margin-left: 0;
}
.faq-paging .button-holder:last-of-type {
  margin-right: 0;
}
.paging-top {
  margin-top: 48px;
  margin-bottom: 40px;
}
.paging-bottom {
  margin-bottom: 48px;
  margin-top: 40px;
}
.faq-list-entry-holder {
  margin-bottom: 7px;
  font-size: 15px;
}
.faq-list-entry-holder.active .faq-entry-top-text {
  color: #000 !important;
}
.faq-list-entry-holder.active .faq-list-entry,
.faq-list-entry-holder.active .faq-type-entry {
  background-color: #6fa2be !important;
}
.faq-list-entry-holder:hover .faq-entry-top-text {
  color: #000 !important;
}
.faq-list-entry-holder:hover .faq-list-entry,
.faq-list-entry-holder:hover .faq-type-entry {
  color: #000;
  background-color: #6fa2be;
  cursor: pointer;
  transition: 0.3s ease-out background-color, 0.3s ease-out padding;
}
.faq-list-entry-holder .faq-list-entry {
  background-color: #e8e8e8;
  min-height: 82px;
  padding-left: 15px;
  padding-top: 13px;
}
.faq-list-entry-holder .faq-list-entry.active {
  background-color: #6fa2be !important;
}
.faq-list-entry-holder .faq-list-entry.active .faq-entry-top-text {
  color: #000 !important;
}
.faq-list-entry-holder .faq-list-entry .faq-entry-top-text {
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  color: #6a6a6a;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
}
.faq-list-entry-holder .faq-list-entry .faq-entry-bottom-text {
  text-align: right;
  padding-right: 15px;
  padding-top: 8px;
  font-size: 16px;
}
.faq-list-entry-holder .faq-type-entry {
  background-color: #e8e8e8;
  min-height: 82px;
  font-size: 30px;
  font-weight: bold;
}
.faq-list-entry-holder .faq-type-entry.active {
  color: #000;
  background-color: #6fa2be !important;
}
.faq-list-entry-holder .faq-entry-description-text {
  border-left: solid 14px #6fa2be;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 15px;
  background-color: white;
  font-size: 15px;
}
.faq-list-entry-holder .faq-helpful-button {
  width: 80px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
}
.faq-list-entry-holder .faq-is-helpful-row {
  padding-top: 15px;
  color: #000;
  font-size: 18px;
}
@media (min-width: 576px) {
  .faq-list-entry-holder .faq-is-helpful-row {
    font-size: 22px;
  }
}
#faq-question-heading {
  height: 68px;
  color: #000;
  font-weight: bold;
}
.faq-question-thanks-holder {
  display: none;
}
.faq-thanks-text {
  margin-top: 0;
}
@media (min-width: 1200px) {
  .faq-thanks-text {
    margin-top: 130px;
  }
}
.faq-thanks-back-button {
  margin-top: 20px;
}
.faq-no-entries-found {
  background-color: #e8e8e8;
  padding-top: 15px;
  padding-bottom: 15px;
}
.faq-search-expression {
  height: 17px;
  margin-bottom: 48px;
  font-size: 22px;
  color: #000;
}
.faq-list-page-counter {
  font-size: 30px;
  color: #000;
}
.faq-list-page-counter .faq-paging-entries-label {
  font-size: 22px;
}
.faq-back-button-holder {
  margin-bottom: 15px;
}
