:root {
    --fontfamily: 'Poppins', sans-serif;
    --fontfamilyGR: "Open Sans", sans-serif;
    --body-bg-color: #F4F5FA;
    --body-default-color: #707070; /*grey*/
    --primary-color: #FF645F; /*orange*/
    --primary-color-opacity: rgba(255, 100, 95, .23); /*orange*/
    --dark-color: #063171; /* dark blue*/
    --light-color: #98AFF5; /*light blue*/
    --xlight-color: #F0F2FA; /*extra light blue*/

    --white-color: #FFFFFF;
    --container-secondary-bg-color: #FFF8F8; /*light orange*/
    --border-radius: 10px; /*0.5rem*/
    interpolate-size: allow-keywords;
    --transition3s: 0.3s linear;
    --plyr-color-main: #1F497D;
    quotes: '“' '”' '‘' '’' '“' '”';
}

.bg_white {
    background: var(--white-color);
}

.bg_primary-color {
    background: var(--primary-color);
}

.bg_primary-light-color {
    background: var(--container-secondary-bg-color);
}

.is-rounded {
    border-radius: var(--border-radius) !important;
}

.box-border {
    border: 2px solid var(--primary-color);
}

.primary-color {
    color: var(--primary-color) !important;
}

.dark-color {
    color: var(--dark-color) !important;
}

.light-color {
    color: var(--light-color) !important;
}

.emphasis-text {
    color: var(--dark-color);
    font-weight: 700;
}

html,
body,
ul,
ol {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: auto;
}

body {
    background-color: var(--body-bg-color);
    font-family: var(--fontfamily);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--body-default-color);
}

body.el {
    font-family: var(--fontfamilyGR);
}

.body-container {
    padding: 0 20px 20px 20px;
}

@media (min-width: 1920px) {
    .body-container {
        max-width: 1880px;
        margin: auto;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

.content-spacing {
    padding-left: 20px;
    padding-right: 20px;
}

.mt-offset {
    margin-top: 60px;
}

.py-offset {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .mt-offset {
        margin-top: 80px;
    }

    .content-spacing {
        padding-left: 40px;
        padding-right: 40px;
    }

    .py-offset {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 1200px) {
    .content-spacing {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1481px) {
    .content-spacing {
        padding-left: 100px;
        padding-right: 100px;
    }
}


/*HEADINGS
===================== */
h1, .h1,
h2, .h2,
h3, .h3 {
    /*font-family: var(--fontfamily);*/
    font-weight: 700;
    color: var(--dark-color);
    word-wrap: break-word;
    line-height: 1.2;
    margin: 0px 0 30px;
}

.el h1, .el .h1,
.el h2, .el .h2,
.el h3, .el .h3 {
    font-weight: 800;
}

h1, .h1 {
    font-size: 54px;
    color: var(--light-color);
}

h2, .h2 {
    font-size: 34px;
    color: var(--dark-color);
}

h3, .h3 {
    font-size: 22px;
}

@media (min-width: 992px) {
    h1.smaller,
    .h1.smaller {
        font-size: 38px;
    }
}
@media (max-width: 1679px) {
     h1, .h1 {
        font-size: 48px;
    }
}
@media (max-width: 1399px) {
     h1, .h1 {
        font-size: 46px;
    }
}
@media (max-width: 991px) {
    h1, .h1 {
        font-size: 44px;
    }

    h2, .h2 {
        font-size: 26px;
    }

    h3, .h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    h1, .h1 {
        font-size: 36px;
    }
}

hr {
    border-top: 2px solid var(--light-color);
    opacity: .8;
}

.dark-color hr {
    border-top: 2px solid var(--dark-color);
    opacity: .8;
}

/*BUTTONS
===========================================*/

.btnEditor a,
.btn {
    font-size: 16px;
    font-weight: 700;
    /*padding:.6rem 1rem;*/
    padding: 10px 18px;
    /* border-radius: 0.5rem;*/
    border-radius: var(--border-radius) !important;
}

.el .btnEditor a,
.el .btn {
    font-weight: 800;
}

@media (max-width: 767px) {
    .btnEditor a,
    .btn {
        font-size: 14px;
    }
}

.btnEditor a {
    padding: 0;
    text-decoration: none;
}

.btnEditor a,
.btn-bordered {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    border-width: 2px !important;
}

.btnEditor a:hover,
.btnEditor a:active,
.btn-bordered:hover,
.btn-bordered:active {
    background: var(--container-secondary-bg-color);
}

.btnEditor.light a,
.btn-bordered.light {
    color: var(--light-color) !important;
    border-color: var(--light-color) !important;
    border-width: 2px !important;
}

.btnEditor.light a:hover,
.btnEditor.light a:active,
.btn-bordered.light:hover,
.btn-bordered.light:active {
    color: var(--primary-color) !important;
    background-color: var(--container-secondary-bg-color);
    border-color: var(--primary-color) !important;
}

.btn-filled {
    color: var(--white-color);
    background-color: var(--primary-color) !important;
    border: none !important;
}

.btn-filled:hover,
.btn-filled:active {
    color: var(--primary-color) !important;
    background-color: var(--primary-color-opacity) !important;
}

header .btn-bordered:hover,
header .btn-bordered:focus,
header .btn-bordered:active {
    color: var(--light-color) !important;
    border-color: var(--light-color) !important;
    border-width: 2px !important;
    background: var(--xlight-color) !important;
}



/*HEADER 
==============================*/
header {
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.el header {
    font-weight: 600;
}

.intro header:not(.place-fixed-top) {
    margin-bottom: 0px;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

header.place-fixed-top {
    background: var(--container-secondary-bg-color);
    position: fixed;
    top: 0;
    z-index: 1030;
    max-width: 1840px;
    width: calc(100% - 40px);
    margin-top: 0;
}

@media (min-width: 1920px) {
    header.place-fixed-top {
        max-width: 1880px;
        margin: auto;
    }
}

.place-logo {
}

@media (min-width: 1481px) {
    .right-side {
        width: 58.33333333%;
    }
}

@media (min-width: 1481px) and (max-width: 1679px) {
    header.place-fixed-top .right-side {
        width: 68.33333333%;
    }
}

@media (max-width: 575px) {
    .place-logo img {
        height: 50px;
    }
}

.place-fixed-top .logo-img,
.logo-img-icon {
    display: none;
}

.place-fixed-top .logo-img-icon {
    display: block;
}


.main-nav a {
    color: var(--dark-color);
    padding: 0 30px 0 0;
    text-shadow: 1px 0 0 rgba(6,49,113,0);
    font-size: 22px;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--dark-color);
    text-shadow: 1px 0 0 var(--dark-color);
}

@media (max-width: 1199px) {
    header {
        font-size: 18px;
    }

    .main-nav a {
        padding: 0 15px 0 0;
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .main-nav a {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    header .main-nav {
        display: none;
    }
}

header.place-fixed-top .main-nav a {
    color: var(--primary-color);
}

header.place-fixed-top .main-nav a.active,
header.place-fixed-top .main-nav a:hover {
    color: var(--primary-color);
    text-shadow: 1px 0 0 var(--primary-color);
}

.main-nav > li {
    position: relative;
}

.submenu {
    list-style: none;
    background: #fff;
    z-index: 3;
    padding: 0px 15px;
}

.submenu a {
    color: var(--light-color);
}

header.place-fixed-top .submenu {
    background: var(--container-secondary-bg-color);
}

.submenu a {
    text-shadow: 1px 0 0 rgba(6, 49, 113, 0);
    font-size: 18px;
    line-height: 1.2;
    display: inline-block;
    padding: 8px 0;
    text-decoration: none;
}


.submenu li:first-child a {
    padding: 16px 0 8px 0;
}

.submenu li:last-child a {
    padding: 8px 0 16px 0;
}

@media (min-width: 992px) {
    .main-nav .submenu {
        display: none;
        width: 240px;
    }

    .main-nav > li:hover .submenu {
        display: block;
        position: absolute;
    }
}


.lang-holder {
    margin-left: auto;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.el .lang-holder {
    font-weight: 800;
}

.lang-holder a {
    text-decoration: none;
    color: var(--primary-color);
    transition: font-size .2s ease-out;
}

.lang-holder:not(:hover) a.active {
    font-size: 20px;
}

header .btn-holder {
    margin-left: auto;
}

header:not(.place-fixed-top) .btn-holder,
header.place-fixed-top .lang-holder {
    display: none;
}

@media (min-width: 768px) {
    header .btn-holder a {
        font-size: 18px !important;
    }
}

@media (max-width: 991px) {
    header .right-side {
        padding-right: 60px;
    }
}

@media (max-width: 480px) {
    header .right-side {
        justify-content: end !important;
    }

    header .btn-holder a {
        width: 120px;
        line-height: 1.1;
        padding: 8px 10px;
    }
}

/*Mobile Menu
=============================*/
body.menu-open,
.site__body--noscroll {
    overflow: hidden;
}

@media (min-width: 992px) {
    .menuButton-placement,
    .main_navigation {
        display: none;
    }
}

.menuButton-placement {
    position: fixed;
    z-index: 9999;
    right: 60px;
    top: 52px;
    line-height: 1;
}

@media (max-width: 767px) {
    .menuButton-placement {
        right: 40px;
    }
}

.scrolled .menuButton-placement {
    top: 28px;
}

.nav_burger_icon {
    position: relative;
    display: block;
    vertical-align: middle;
}

.nav_burger_icon .bar {
    height: 3px;
    border-radius: 3px;
    width: 35px;
    display: block;
    margin: 7px auto;
    position: relative;
    background-color: var(--primary-color);
    transition: .5s cubic-bezier(.5, .2, .2, 1);
}

.nav_burger_icon .bar:last-child {
    margin-bottom: 0;
}

.nav_burger_text {
    display: none;
}
/*
.nav_burger_text {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: var(--primary-color);
    width: 40px;
}
.nav_burger_text:last-child, 
.menu-open .nav_burger_text {
    display: none;
}
.menu-open .nav_burger_text:last-child {
    display: inline-block;
}*/

.menu-open .nav_burger_icon .bar:first-of-type {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.menu-open .nav_burger_icon .bar:nth-of-type(2) {
    opacity: 0;
}

.menu-open .nav_burger_icon .bar:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.main_navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    transition: 0s;
    padding-top: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1035;
    transition: .5s;
    text-align: left;
    font-weight: 500;
}

.el .main_navigation {
    font-weight: 600;
}

.Blur {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    background: none;
    backdrop-filter: blur(10px);
    height: 100%;
    transition: .3s;
    -webkit-transform: translateX(0%) scaleX(0);
    -ms-transform: translateX(0%) scaleX(0);
    transform: translateX(0%) scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}

.menu-open .main_navigation .Blur {
    display: block;
    transition: .3s;
    -webkit-transform: translateX(0%) scaleX(1);
    -ms-transform: translateX(0%) scaleX(1);
    transform: translateX(0%) scaleX(1);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
}

.menu-open .main_navigation {
    transition: .5s;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

@media (min-width:992px) {
    .menu-open .main_navigation {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.main_navigation_inner {
    height: auto;
    min-height: 100%;
    width: 80%;
    right: 0;
    position: absolute;
    background-color: white;
    /*
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        */
}

.menu--main {
    position: relative;
    width: 100%;
    height: calc(100% - 180px);
    padding: 120px 60px 60px;
}

@media (min-width:768px) {
    .menu--main {
        padding: 100px 50px 50px;
        height: calc(100% - 150px);
    }
}

.main_navigation .main-nav {
    display: block;
}

/*TOP MEDIA
==========================*/
/*=== Carousel Slider
=====================================*/
#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
    height: calc(100vh - 240px);
}

.topMediaInner #bigCarousel .carousel-item,
.topMediaInner #bigCarousel {
    height: -moz-calc(100vh - 140px);
    height: -webkit-calc(100vh - 140px);
    height: calc(100vh - 140px);
    position: relative;
}

#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.contentOverSlider {
    position: absolute;
    z-index: 9;
    bottom: 0%;
    height: 50%;
    width: 100%;
    font-family: var(--fontfamily);
    font-weight: 300;
    color: var(--white-color);
    font-size: 54px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 1480px) {
    .contentOverSlider {
        height: 60%;
    }
}

@media (max-width: 1199px) {
    .contentOverSlider {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .contentOverSlider {
        height: 70%;
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .contentOverSlider {
        height: 90%;
        font-size: 28px;
    }
}

#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
    visibility: hidden;
}

#bigCarousel:hover .carousel-control-prev,
#bigCarousel:hover .carousel-control-next {
    visibility: visible;
}

#bigCarousel .carousel-control-next,
#bigCarousel .carousel-control-prev {
    width: auto;
    bottom: 40px;
    z-index: 12;
    top: unset;
    /* top: 50%; 
    transform: translateY(-50%); */
    left: unset;
}

#bigCarousel .carousel-control-prev {
    right: 120px;
}

#bigCarousel .carousel-control-next {
    right: 50px;
}

#bigCarousel .carousel-control-next-icon {
    background-image: url(../images/arrow-right-blue.svg) !important;
    filter: brightness(0) invert(1);
}

#bigCarousel .carousel-control-prev-icon {
    background-image: url(../images/arrow-right-blue.svg) !important;
    filter: brightness(0) invert(1);
    transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}

#bigCarousel .carousel-control-next-icon,
#bigCarousel .carousel-control-prev-icon {
    display: inline-block;
    width: 30px !important;
    height: 44px !important;
    background-size: 100%;
}

@media (max-width: 991px) {
    #bigCarousel .carousel-control-next-icon,
    #bigCarousel .carousel-control-prev-icon {
        width: 26px !important;
        height: 36px !important;
    }
}

#bigCarousel .carousel-control-next:hover,
#bigCarousel .carousel-control-prev:hover {
    opacity: 1;
}

@media screen and (max-width: 991px) {
    #bigCarousel .carousel-item,
    #bigCarousel {
        height: 500px !important;
    }
}

@media screen and (max-width: 575px) {
    #bigCarousel .carousel-item,
    #bigCarousel {
        height: 350px;
    }
}
/* Video
=================================== */
.mainVideoSlider {
    position: relative;
    height: 100vh;
}

.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}

@media screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}
/* YT Video
=================================== */
/*.YTvideo-placement {
  	height:calc(100vh - 240px);  
}
.plyr__video-embed iframe {
	height:100%;
}*/
.plyr__video-embed iframe {
    /*	top: -50%!important;
	height: 200%!important;*/
}

.YTvideo-placement .plyr__volume input[type=range],
.YTvideo-placement .plyr__controls__item.plyr__menu,
.YTvideo-placement .plyr--fullscreen-enabled [data-plyr=fullscreen] {
    display: none !important;
}

.YTvideo-placement .plyr--video .plyr__controls {
    max-width: 740px;
    margin: auto;
    bottom: 140px;
    background: transparent !important;
}

@media (max-width: 1199px) {
    .YTvideo-placement .plyr--video .plyr__controls {
        max-width: 90%;
        bottom: 40px;
    }
}

@media (max-width:767px) {
    .YTvideo-placement .plyr--video .plyr__controls {
        bottom: 20px;
    }
}

.YTvideo-placement .plyr--video.plyr--hide-controls .plyr__controls {
    opacity: 1 !important;
    pointer-events: none;
    transform: none !important;
}


/*MAIN CONTENT
========================*/
main.main-container {
    background-color: var(--body-bg-color);
    /* margin-bottom: 65vh;*/
    overflow: hidden;
    padding-bottom: 70px;
    z-index: 1;
}

/*FOOTER
========================*/
footer .holder {
    color: var(--primary-color);
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 14px;
    text-align: center;
}

footer .footer-logo {
    margin-top: 30px;
    margin-bottom: 50px;
}

footer .heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

footer a {
    color: var(--primary-color);
    font-weight: 700;
}

.el footer .heading,
.el footer a {
    font-weight: 800;
}

footer .social {
    text-align: center;
}

@media (max-width:767px) {
    .social-col {
        margin-top: 30px;
    }

    footer .social-col .heading,
    footer .social {
        text-align: left;
    }
}

.footer-logo,
.contact-col {
    text-align: left;
}

.social img {
    height: 26px;
    margin: 8px;
}

.copyright-container {
    margin-top: 50px;
    font-size: 12px;
    font-weight: 700;
}

.el .copyright-container {
    font-weight: 800;
}

.copyright-container .sm-nav {
    text-transform: uppercase;
    text-align: left;
}

.copyright-container .sm-nav a:hover,
.copyright-container.sm-nav a.active {
    text-decoration: none;
}

.copyright-container .sm-nav a:not(:last-child) {
    padding-right: 7px;
    margin-right: 7px;
    border-right: 1px solid var(--primary-color);
}

footer.fixed-bottom,
footer.fixed-top {
    z-index: 0 !important;
}
/*
@media (pointer: coarse) {
  footer {
      position: relative !important;
      z-index: 1 !important;
  }
  
  .main-container {
      margin-bottom: 0px !important;
  }
}*/

/*Newsletter
==================================*/
.newsletter {
    max-width: 560px;
    margin: auto;
}

.newsletter input {
    border-color: var(--primary-color);
    border-width: 2px;
    background-color: var(--container-secondary-bg-color);
    padding: 8px 18px;
    font-size: 14px;
}

.newsletter .submit .btn {
    font-size: 14px;
}

@media (min-width:576px) {
    .newsletter .submit {
        padding-left: .5rem;
    }
}

@media (min-width:768px) {
    .newsletter .submit {
        padding-left: 1.5rem;
    }
}
/*=========== To Top =========== */
.toTop {
    text-align: right;
}

a.scrollup {
    background: url(../images/back-to-top.svg) no-repeat center center;
    bottom: 30px;
    display: none;
    position: fixed;
    right: 40px;
    text-indent: -9999px;
    width: 33px;
    height: 40px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.scrollup.is-visible {
    display: inline;
    opacity: 1;
}


/* SWIPER gen
-------------------------------------------*/
.swiper-button-next,
.swiper-button-prev {
    background: url(../images/arrow-right-blue.svg) no-repeat center center !important;
    width: 24px;
    height: 29px;
    background-size: 100% 100% !important;
    /*filter: brightness(100) invert(1); */
}

.swiper-button-next.colored,
.swiper-button-prev.colored {
    background: url(../images/arrow-right.svg) no-repeat center center !important;
}

.swiper-button-prev {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    left: -35px;
}

.swiper-button-next {
    right: -35px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 18px;
        height: 23px;
    }
    /* .swiper-button-prev {
         left:-25px;
    }
    .swiper-button-next {
        right:-25px;
    }*/
}

.simpleGallerySwiper {
    padding-bottom: 20px;
}

.simpleGallerySwiper .swiper-pagination {
    bottom: 0px;
    display: flex;
    left: 20px;
    right: 20px;
    width: auto;
}

.simpleGallerySwiper .swiper-pagination-bullet {
    background-color: var(--dark-color) !important;
    opacity: 1;
    flex: 1 1 auto !important;
    border-radius: 9px;
    height: 5px;
    margin: 0 8px !important;
}

.simpleGallerySwiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}


/*SECTIONS
=================================*/
/* section services - carousel  && text tabs to carousel innerpages
-------------------------------------------*/
.carousel {
    cursor: pointer;
}

.services-tabs {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    padding-bottom: 50px;
    padding-top: 80px;
}

.section-accordion-tabs {
    margin-top: 50px;
}
/*as tabs min-width:992
--------------------------------*/
.services-tabs .slide,
.tabs-text-container .slide {
    display: none;
}

.services-tabs .slide.active,
.tabs-text-container .slide.active {
    display: block; /*flex*/
    cursor: pointer;
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    .tabs-text-container .slide {
        display: block;
    }
}

.custom-pagination {
    display: flex;
    justify-content: space-between;
    align-items: start;
    list-style: none;
}

@media (max-width:991px) {
    .custom-pagination {
        padding: 0;
    }
}
/*@media (min-width:768px) {*/
@media (min-width:992px) {
    .custom-pagination li {
        width: 16%;
    }
}

@media (min-width:1199px) {
    .custom-pagination li {
        width: 15%;
    }
}

@media (max-width:991px) {
    .custom-pagination {
        display: none;
    }
}

@media (max-width:991px) {
    .tabs-text-container .custom-pagination {
        display: none;
    }
}

.pagination-item {
    cursor: pointer;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
}

@media (max-width:1199px) {
    .pagination-item {
        font-size: 16px;
    }
}
/*
 @media (max-width:991px) {
    .pagination-item {
        font-size: .8rem;
    }
 }*/
.pagination-item:hover,
.pagination-item.active {
    color: var(--primary-color);
}

.pagination-item .line {
    border-radius: 9px;
    width: 100%;
    height: 5px;
    background-color: var(--dark-color);
    margin-bottom: 5px;
    transition: background-color 0.3s;
    position: relative;
}

.pagination-item .line:after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 90%;
    z-index: 1;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
    transition: background-position 0.5s;
    background-position: 100% 0;
}

.pagination-item:hover .line:after,
.pagination-item.active .line:after {
    background-position: 0 0;
}

.tabs-text-container .custom-pagination {
    flex-direction: column;
}

.tabs-text-container .pagination-item:not(:last-child) {
    margin-bottom: 20px;
}

.tabs-text-container .pagination-item:not(:hover):not(.active) {
    opacity: .3;
}

.tabs-text-container .collapsable .h1 {
    color: var(--primary-color);
}

/*
@media (max-width:1679px) {
     .pagination-item .line{
        width: 180px;
    }
}
@media (max-width:1399px) {
     .pagination-item .line{
        width: 150px;
    }
}
@media (max-width:1199px) {
     .pagination-item .line{
        width: 130px;
    }
  }
@media (max-width:991px) {
    .pagination-item .line{
        width:100px;
    }
}   */

.services-tabs .text-holder {
}

.services-tabs .img-holder {
    text-align: center;
}

@media (min-width:768px) {
    .services-tabs .img-holder {
        min-height: 460px;
    }
}

@media (max-width:767px) {
    .services-tabs .img-holder {
        padding: 30px;
    }

    .services-tabs .img-holder img {
        width: 70%;
    }
}

@media (max-width:575px) {
    .services-tabs .img-holder img {
        width: 80%;
    }
}

@media (max-width:991px) {
    .services-tabs .text-holder {
        order: 2 !important;
    }
}

.services-tabs h1 {
    color: var(--light-color);
    margin-bottom: 24px;
}

.services-tabs .text-holder h2,
.services-tabs .text-holder h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

@media (min-width:768px) {
    .services-tabs h1 {
        font-size: 22px;
    }

    .services-tabs .text-holder h2 {
        margin-bottom: 50px;
    }

    .services-tabs .text-holder .btn {
        margin-top: 30px;
    }
}

/*As accordion min-width:767
--------------------------------*/
.accordion-item {
    border: none;
    border-bottom: 2px solid var(--dark-color);
    border-radius: 0 !important;
}

.accordion-item .text-holder {
    padding-bottom: 50px;
}

.accordion-button {
    color: var(--dark-color);
    transition: color .3s ease;
    padding-left: 0px;
    font-size: 22px;
    font-weight: 600;
}

.el .accordion-button {
    font-weight: 700;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: inherit;
    box-shadow: none;
    color: var(--primary-color);
    transition: color .3s ease;
}

.accordion-button[aria-expanded="false"] {
    color: var(--dark-color) !important;
}

.accordion-button[aria-expanded="false"]::after {
    transform: rotate(0deg) !important;
}

@media (max-width: 991px) {
    .tabs-text-container .accordion-mobile {
        border: none;
        border-bottom: 2px solid var(--dark-color);
        border-radius: 0 !important;
        /* padding:1rem 1.25rem 1rem 0;*/
    }

    .tabs-text-container .accordion-button {
        background: transparent;
    }
}

/*Section heading
------------------------------------------*/
.section-heading {
    background-color: var(--dark-color);
    display: flex;
    padding-top: 35px;
    padding-bottom: 35px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -15px;
    z-index: 5;
    position: relative;
}

@media (max-width: 767px) {
    .section-heading {
        display: block;
    }

    .section-heading .btn {
        margin-top: 15px;
    }

    .section-heading div {
        text-align: right;
    }
}

.section-heading h1 {
    margin: 0px;
    color: var(--white-color);
    font-weight: 700;
}

@media (max-width: 992px) and (max-width: 1479px) {
    .section-heading h1 {
        font-size: 44px;
    }
}
/* SECTION about
-------------------------------------------*/
.section-about {
    color: var(--light-color);
    font-weight: 700;
}

.el .section-about {
    font-weight: 800;
}

.section-about h1 {
    display: none;
}

.section-about span {
    color: var(--primary-color);
}

.section-about .h1,
.section-about .h2 {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .section-about .img-holder {
        text-align: center;
    }

    .section-about .img-holder img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .section-about .img-holder img {
        width: 80%;
    }
}

.u-list,
.body-content ul {
    list-style-type: none;
    margin-bottom: 30px;
}

.u-list li,
.body-content ul li {
    background: url(/images/bullet.svg) no-repeat left 5px;
    padding-left: 35px;
    margin-bottom: 15px;
    background-size: 18px;
}

@media (min-width: 768px) {
    .section-about .btn-filled {
        font-size: 28px;
        border-radius: 0.8rem;
        padding: 16px 26px;
        margin-top: 15px;
    }
}

.body-content ol {
    margin-bottom: 30px;
    padding-left: 40px;
}

.body-content ol li::marker {
    color: var(--primary-color);
    font-weight: 700;
}

.ol-light-bigger {
    font-size: 22px;
    color: var(--light-color);
    font-weight: 700;
}

.ol-light-bigger ol li::marker {
    font-size: 22px;
    font-weight: 700;
}

@media (min-width: 1200px) {
    .ol-light-bigger,
    .ol-light-bigger ol li::marker {
        font-size: 36px;
    }
}

.el .body-content ol li::marker,
.el .ol-light-bigger {
    font-weight: 800;
}


/* SECTION reviews
-------------------------------------------*/
.section-reviews .heading {
    background: url(/images/icon-review.svg) no-repeat right top;
    background-size: auto 100%;
    min-height: 280px;
    align-items: end;
    display: flex;
    padding-right: 200px;
    color: var(--dark-color);
}

@media (max-width: 991px) {
    .section-reviews .heading {
        min-height: 200px;
    }
}

@media (max-width: 575px) {
    .section-reviews .heading {
        min-height: unset;
        background-size: auto 180px;
        padding-top: 180px;
        padding-right: 110px;
    }
}

@media (max-width: 575px) {
    .section-reviews .heading {
        padding-top: 110px;
    }
}

.reviews-carousel {
    padding-top: 30px;
}

.reviews-carousel .swiper-wrapper,
.users-carousel .swiper-wrapper {
    align-items: stretch;
}

.reviews-carousel .swiper-slide,
.users-carousel .swiper-slide {
    padding: 10px;
    height: auto;
}

.reviews-carousel .swiper-slide .box-border,
.users-carousel .swiper-slide .box-border {
    padding: 20px;
    height: 100%;
}

.reviews-carousel .title,
.users-carousel .title {
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.reviews-carousel .text,
.users-carousel .text {
    margin-bottom: 30px;
}

.reviews-carousel .name,
.reviews-carousel .from {
    font-size: 12px;
    font-weight: 700;
}

.el .reviews-carousel .title,
.el .users-carousel .title,
.el .reviews-carousel .name,
.el .reviews-carousel .from {
    font-weight: 800;
}

.reviews-carousel .from {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .section-reviews.content-spacing,
    .section-users.content-spacing {
        padding-right: 40px;
    }
}

/*TEAM - as boxes
 ========================*/
.users-as-flex > div {
    margin-bottom: 24px;
}

.m-more-less-content .m-show-more,
.m-more-less-content .m-show-less {
    color: var(--dark-color) !important;
    cursor: pointer;
    font-weight: 600;
}

.m-more-less-content span {
    display: inline;
}

.el .m-more-less-content .m-show-more:before {
    content: " ... περισσότερα";
}

.m-more-less-content .m-show-more:before {
    content: " ... more";
}

.m-more-less-content .m-show-less {
    display: none;
}

.el .m-more-less-content .m-show-less:before {
    content: " λιγότερα";
}

.m-more-less-content .m-show-less:before {
    content: " less";
}

.m-more-less-content .m-more-text {
    overflow: hidden;
    display: none;
}

.m-more-less-content.m-display-more .m-show-more {
    display: none;
}

.m-more-less-content.m-display-more .m-more-text,
.m-more-less-content.m-display-more .m-show-less {
    display: inline;
}


/* SECTION why
-------------------------------------------*/
.section-why {
    position: relative;
    overflow: hidden;
}

.section-why:after {
    content: "";
    width: 50%;
    background: url(/images/arrow-bg.svg) no-repeat right top;
    background-size: 90% 100%;
    align-items: end;
    display: flex;
    right: 0;
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
}

.col-bg-img img {
    border-radius: var(--border-radius) !important;
}

@media (min-width: 992px) {
    .col-bg-img {
        right: 0;
        position: absolute;
        height: 100%;
        top: 0;
    }

    .col-bg-img img {
        border-radius: var(--border-radius) !important;
        object-fit: cover;
        height: 100%;
    }
}

@media (max-width: 991px) {
    .section-why .row {
        position: relative;
        z-index: 1;
    }

    .section-why:after {
        width: 60%;
        background-size: 100% 100%;
        right: -115px;
        height: 200px;
        top: -60px;
        transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        -moz-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        -o-transform: rotate(-30deg);
    }
}

@media (max-width: 767px) {
    .section-why .h1 {
        padding-bottom: 30px;
    }

    .section-why:after {
        width: 50%;
        top: -50px;
        right: -90px;
        transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -webkit-transform: rotate(-20deg);
        -o-transform: rotate(-20deg);
    }
}

@media (max-width: 575px) {
    .section-why .h1 {
        padding-bottom: 70px;
    }

    .section-why:after {
        top: -20px;
        right: -70px;
        height: 280px;
        width: 70%;
        transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
    }
}


/* SECTION Clents &  Partner
-------------------------------------------*/
.section-clients .h1,
.section-logos-carousel .h1 {
    color: var(--dark-color);
}

.clients-carousel .swiper-slide,
.logos-swiper-holder .swiper-slide {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .section-logos-carousel,
    .clients-carousel.content-spacing {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.logos-swiper {
    padding-top: 40px;
    padding-bottom: 40px;
}


.section-clients .swiper-grid .swiper-wrapper,
.logos-swiper-holder .swiper-grid .swiper-wrapper {
    align-items: center;
}

.section-clients .swiper-slide a,
.logos-swiper-holder .swiper-slide a {
    display: block;
    height: inherit;
    width: 85%;
}

.section-clients .swiper-slide img {
    max-height: 70px;
}

.logos-swiper-holder .swiper-slide img {
    max-height: 80px;
}

.logos-swiper .logo-holder {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 576px) {
    .logos-swiper .logo-holder {
        height: 100px;
    }
}
/*
.logos-swiper .logo-holder img{
    height: 100%;
    max-height:none;
}*/
/* SECTION News
-------------------------------------------*/
.section-news .swiper-wrapper {
    align-items: stretch;
}

.section-news .swiper-slide {
    height: auto;
}

.section-news .news-card {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 0;
    height: 100%;
}

.section-news .news-card {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 2rem 0;
    height: 100%;
    flex-direction: column !important;
    display: flex !important;
}

.section-news .swiper-slide h2 {
    color: var(--dark-color);
    font-size: 26px;
    font-weight: 500;
}

.section-news .swiper-slide h2 a {
    color: var(--dark-color);
    text-decoration: none;
}

.section-news .swiper-slide h2 span {
    color: var(--light-color);
    font-size: 22px;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
}

.el .section-news .swiper-slide h2 {
    font-weight: 600;
}

.el .section-news .swiper-slide h2 span {
    font-weight: 800;
}

.section-news .swiper-slide .place-bottom {
    margin-top: auto;
}
/*SECTION -moto
-------------------------------------*/
.section-moto .moto-text {
    align-items: center;
    display: flex;
    padding-bottom: 30px;
}

.section-moto picture {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: -1;
    width: 56%;
}

.section-moto picture img {
    border-radius: var(--border-radius) !important;
    object-fit: cover;
    height: 100%;
}

.section-moto .svg-img-above {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: 50px;
    margin-right: 10%;
    width: 44%;
}

@media (max-width: 1399px) {
    .section-moto picture {
        margin-right: 45%;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .section-moto .moto-text h2 {
        font-size: 46px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .section-moto .moto-text h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .section-moto .moto-text {
        justify-content: center;
    }

    .section-moto .svg-img-above {
        margin-right: 0;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .section-moto .moto-text {
        align-self: end;
    }
}

@media (max-width: 575px) {
    .section-moto img {
        /*max-width:240px;
        margin-bottom:20px;*/
    }
}
/*
@media (max-width: 380px) {
    .section-moto img {
        max-width:80%;
    }
}*/

/*SECTIONS -awards
----------------------------------*/
.border-out {
    border: 2px solid var(--primary-color);
    padding: 20px 30px;
}

@media (min-width: 1200px) {
    .border-out {
        padding: 30px 50px;
    }
}

.section-awards .h1 {
    color: var(--primary-color) !important;
}

.section-awards .award-inline {
    padding: 20px 0;
    font-size: 16px;
}

.section-awards .awards-inline-list .award-inline:not(:last-child) {
    border-bottom: 2px solid var(--dark-color);
}

.award-inline span {
    color: var(--primary-color) !important;
}

.award-images {
    align-self: center;
    justify-content: center;
}

.award-images div {
    text-align: center;
    padding: 20px;
}

.award-images div {
    width: 50%;
}

.award-images div:nth-child(3n) {
    width: 100%;
}
/*SECTIONS -row
----------------------------------*/
/*
.row-section .text-holder{
    padding-right:50px;
}
.row-section .text-holder.revert {
    padding-left:50px;
    padding-right:50px;
}*/
@media (min-width: 992px) {
    .row-section .text-holder {
        max-width: 80%;
    }

    .row-section .text-holder.revert {
        padding-left: 100px;
        max-width: 90%;
    }
}

.row-section .text-holder h2 a {
    color: var(--dark-color) !important;
    text-decoration: none;
}

@media (min-width: 1480px) {
    .services-page .row-section img {
        max-width: 520px;
    }
}

@media (max-width: 1479px) {
    .services-page .row-section img {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .services-page .row-section img {
        max-width: 70%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .services-page .row-section img {
        max-width: 80%;
    }
}

/*SECTIONS -service box && BLOCK LISTS
----------------------------------*/
.bodyText-box {
    display: flex;
}

.bodyText-box .box-padding {
    padding: 8%;
    width: 100%;
}

.box-white {
    background: var(--white-color);
}

.box-white h2 {
    color: var(--light-color);
}

.section-boxes-layout .bodyText-box {
    padding-bottom: 25px;
}

.bodyText-box strong {
    color: var(--dark-color);
}

/*Block section row text
--------------------------------*/

.star-bg .h1 {
    padding-right: 40px;
}

.star-bg {
    background: url(/images/stars.svg) no-repeat;
    background-position: bottom 0px right 0px;
}

@media (min-width: 992px) {
    .star-bg {
        background-position: bottom 10px right 80px;
    }

    .star-bg.revert {
        background-position: top 0px right 80px;
    }

    .star-bg .h1 {
        padding-right: 100px;
    }

    .star-bg.revert .h1 {
        padding-right: unset;
        padding-left: 40px;
    }
}

.quote h2 {
    font-size: 38px;
}

.quote h2:before {
    content: open-quote;
    font-size: 100px;
    line-height: 1;
    display: block;
    height: 60px;
    left: 0px;
    position: relative;
}

@media (min-width: 992px) {
    .column-space-right {
        padding-right: 60px;
    }

    .quote .column-space-right {
        padding-top: 40px;
    }

    .quote .star-bg.revert .h1 {
        padding-right: 8%;
        padding-left: 8%;
    }

    .quote h2:before {
        font-size: 156px;
        height: 90px;
        margin-top: 20px;
        left: -40px;
    }
}

/*Block section row text-img
----------------------------------------*/
@media (min-width: 992px) {
    .simple-text-img-row:not(.revert) > div:nth-child(2),
    .simple-text-img-row.revert > div:nth-child(1) {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (max-width: 992px) {
    .simple-text-img-row .img-holder {
        padding-bottom: 30px;
    }

    .team-section .img-holder {
        text-align: right !important;
        padding-bottom: 0px;
    }

    .team-section img {
        max-height: 200px;
    }
}

/*Block section imgs-text &&& gallery section
------------------------------------------*/
.section-imgs-text img,
.imgs-collage img {
    border-radius: var(--border-radius) !important;
}

@media (max-width: 991px) {
    .section-imgs-text .colText {
        margin-top: 25px;
    }
}

.section-imgs div {
    margin-bottom: 25px;
}

.section-imgs .imgs-collage div:nth-child(4n), .section-imgs .imgs-collage div:nth-child(4n-1) {
    width: 52%;
}

.section-imgs .imgs-collage div:nth-child(4n-2), .section-imgs .imgs-collage div:nth-child(4n-3) {
    width: 24%;
}

.imgs-collage img {
    object-fit: cover;
    height: 100%;
}

.section-about .imgs-collage div {
    margin-bottom: 25px;
}

.section-about .imgs-collage div:nth-child(1),
.section-about .imgs-collage div:nth-child(6) {
    width: 52%;
}

.section-about .imgs-collage div:nth-child(2),
.section-about .imgs-collage div:nth-child(5) {
    width: 20%;
}

.section-about .imgs-collage div:nth-child(3),
.section-about .imgs-collage div:nth-child(4) {
    width: 28%;
}

@media (max-width: 575px) {
    .section-about .imgs-collage div:nth-child(1),
    .section-about .imgs-collage div:nth-child(6) {
        width: 100%;
    }

    .section-about .imgs-collage div:nth-child(2),
    .section-about .imgs-collage div:nth-child(5) {
        width: 50%;
    }

    .section-about .imgs-collage div:nth-child(3),
    .section-about .imgs-collage div:nth-child(4) {
        width: 50%;
    }
}
/*Block section row 2 text boxes
----------------------------------------*/
.row-two-boxes .bodyText-box {
    padding-bottom: 25px;
}

.row-two-boxes .bodyText-box .box-padding {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.row-two-boxes .bg_primary-color,
.row-two-boxes .bg_primary-color h2 {
    color: var(--white-color) !important;
}

.row-two-boxes .bg_primary-color .btn-bordered {
    color: var(--white-color) !important;
    border-color: var(--white-color) !important;
}

.row-two-boxes .bg_primary-color .btn-bordered:hover,
.row-two-boxes .bg_primary-color .btn-bordered:active {
    color: var(--primary-color) !important;
}

@media (min-width: 1481px) {
    .careers-box h2 {
        font-size: 72px;
    }
}


/*Block section text boxes - about > current situation page
----------------------------------------*/
.section-only-text-boxes .bg_white {
    padding: 10px;
    margin-bottom: 30px;
}

.section-only-text-boxes .box-padding {
    padding: 40px;
}

@media (max-width: 480px) {
    .section-only-text-boxes .box-padding {
        padding: 15px;
    }
}

.section-only-text-boxes .column-width {
    width: 100%;
}

@media (min-width: 992px) {
    .section-only-text-boxes .column-width:nth-child(1),
    .section-only-text-boxes .column-width:nth-child(4) {
        width: 33.33333333%;
    }

    .section-only-text-boxes .column-width:nth-child(2),
    .section-only-text-boxes .column-width:nth-child(5) {
        width: 66.66666667%;
    }

    .section-only-text-boxes .column-width:nth-child(3),
    .section-only-text-boxes .column-width:nth-child(6) {
        /*width: 41.66666667%;*/
        width: 66.66666667%;
    }
}

@media (min-width: 1481px) {
    .section-only-text-boxes .column-width:nth-child(3),
    .section-only-text-boxes .column-width:nth-child(6) {
        width: 50%;
    }
}

.section-only-text-boxes .subtitle {
    font-size: 14px;
    margin-top: 10px;
    color: var(--dark-color);
}

/*Block section text caroisel- about > current situation page
----------------------------------------*/
.section-text-carousel > div {
    margin-bottom: 30px;
}

.section-text-carousel .box-padding {
    padding: 40px 60px 40px 40px;
}

@media (min-width: 1481px) {
    .section-text-carousel .box-padding {
        padding: 60px 100px 60px 80px;
    }
}

.section-text-carousel .box-padding.img-holder {
    padding: 60px;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.swiper.simple-text .swiper-button-next {
    right: 20px;
}

@media (max-width: 1199px) {
    .section-text-carousel .h1 {
        font-size: 46px;
    }
}


/* BOX Logos with hover text: PROJECTS listing & Awards
=========================================================*/
.card-boxes-holder {
    /*justify-content: center !important;*/
}

.card-box {
    cursor: pointer;
    text-align: center;
    min-height: 220px;
    margin-bottom: 24px;
}

.card-boxes-holder.partners .card-box {
    cursor: unset;
}

.card-box-wrapped {
    padding: 10px;
    height: 100%;
}

.card-box-wrapped:hover {
    background: var(--container-secondary-bg-color);
}

.card-box-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.card-box-logo:not(.award) img {
    /*height:70px;*/
    max-width: 70%;
    max-height: 70px;
}

@media (min-width: 1481px) {
    .card-box-logo:not(.award) img {
        /*height:100px;*/
        max-width: 70%;
        max-height: 100px;
    }
}

.card-box-logo.award img {
    height: 70px;
}

@media (min-width: 1481px) {
    .card-box-logo.award img {
        height: 100px;
    }
}

.card-box-hover {
    opacity: 0;
    position: relative;
    z-index: 1;
    background: var(--container-secondary-bg-color);
    border: solid 2px var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.el .card-box-hover {
    font-weight: 800;
}

.card-box-hover .light-font {
    font-size: 16px;
    font-weight: 300;
}

.el .card-box-hover .light-font {
    font-weight: 00;
}

.card-box:hover .card-box-hover {
    opacity: 1;
    height: 100%;
}

.card-box .link-above {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.card-box .link-above span {
    display: none;
}
/*B2B List page
=========================*/
.card-boxes-holder.b2b .card-box {
    font-size: 16px;
}

.card-boxes-holder.b2b .card-box-wrapped {
    padding: 25px;
}

.card-boxes-holder.b2b .card-box img {
    height: 90px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .card-boxes-holder.b2b .card-box img {
        height: 80px;
    }
}

@media (min-width: 1481px) {
    .card-boxes-holder.b2b .card-box img {
        height: 100px;
    }
}

.card-boxes-holder.b2b .card-box .h3 {
    color: var(--primary-color);
}

.card-boxes-holder.b2b .card-box .btns {
    padding-top: 10px;
}

/*TEAM page
=========================*/
.organisation-chart {
    text-align: center;
    padding-top: 30px;
}

.organisation-chart {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

.organisation-chart li {
    background: none !important;
    padding: 0 !important;
    color: var(--white-color);
    font-size: 12px;
    margin-bottom: 0px !important;
}

.organisation-chart > li {
    width: 100%;
    font-size: 22px;
    margin-bottom: 20px !important;
}

@media (min-width: 768px) {
    .organisation-chart > li {
        width: 33.333%;
    }
}

@media (min-width: 992px) {
}

.organisation-chart li:first-child {
    width: 100%;
}

.organisation-chart li span {
    border-radius: 50rem !important;
    color: var(--white-color);
    background: var(--primary-color);
    padding: 6px 20px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 700;
}

.el .organisation-chart li span {
    font-weight: 800;
}

.organisation-chart > li:first-child span {
    background: var(--dark-color);
}

.organisation-chart li li span {
    background: var(--light-color);
}

.organisation-chart > li:last-child {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.organisation-chart > li:last-child span:last-child {
    border: var(--primary-color) solid 2px;
    background: transparent;
    color: var(--primary-color);
}

.person-header {
    align-items: center;
    margin-bottom: 30px;
}

.person-header span {
    width: 100px;
    display: block;
    margin-right: 20px;
}

.person-thumb img {
    border-radius: 50%;
}
/*.person-name {
    padding:15px 0;
}*/

/*Career page
=========================*/
.careers-list .h1 {
    color: var(--primary-color);
}

.careers-list .h1 span {
    display: block;
    color: var(--dark-color);
    font-size: 22px;
}

@media (max-width: 991px) {
    .careers-list .h1 span {
        font-size: 20px;
    }
}

.expandable-card {
    position: relative;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
}

.expandable-card .bg_white {
    padding: 10px;
    /* margin-bottom: 25px;*/
}
/*
.expandable-card:not(.expanded) {
    height: calc(100% - 25px);
}*/
.expandable-card .box-border {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.expandable-card > div {
    /*  padding: 30px;*/
}

.expandable-card .h3,
.expandable-card strong {
    color: var(--primary-color);
}

.el .expandable-card strong {
    font-weight: 800;
}

.expandable-card ul li {
    padding-left: 30px;
    margin-bottom: 8px;
}

.expandable-card .details {
    transition: height .5s ease;
    overflow: hidden;
}

.expandable-card .more-button-container {
    margin-top: auto;
}

.expandable-card:not(.expanded) .details,
.expandable-card:not(.expanded) .less-apply-container {
    display: none !important;
}


.abs {
    /*  position: absolute;
    width: calc(100% - 20px);
    z-index: 5;*/
}
/*
.abs:before {
    content: "";
    display: block;
    left: 10px;
    position: absolute;
    z-index: -1;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
        border: 2px solid var(--primary-color);
    border-radius: var(--border-radius) !important;
    
}
.expandable-card:not(.expanded) .abs {
     height:100%;
}*/
.expandable-card.expanded .more-button-container {
    display: none;
}

.expandable-card.expanded .less-apply-container {
    display: block;
}

ul.tags {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.tags .tag {
    background: none;
    background-color: var(--light-color);
    border-radius: 50rem !important;
    font-size: 11px;
    font-weight: 700;
    color: var(--white-color);
    padding: 8px 16px;
    display: inline-block;
    margin: 0 6px 10px 0;
    text-transform: uppercase;
}

.tags .tag a {
    color: var(--white-color);
    text-decoration: none;
}

.tags.colored .tag {
    background-color: var(--primary-color);
}

.more-button-container a,
.less-apply-container a,
.more-button,
.less-button {
    color: var(--dark-color);
    font-weight: 700;
    text-decoration: underline;
}

.el .tags .tag,
.el .more-button,
.el .less-button,
.el .more-button-container a,
.el .less-apply-container a {
    font-weight: 800;
}

@media (min-width: 1200px) {
    .career-form-place img {
        width: 50%;
        margin: 0 15% 10% 0;
    }
}

@media (max-width: 991px) {
    .career-form-place .img-holder {
        text-align: center !important;
    }

    .career-form-place img {
        margin: 50px 0 0 0;
    }
}

.expandable-card.not-expandable,
.expandable-card.not-expandable > div,
.expandable-card.not-expandable > div > div {
    height: 100%;
}

.place-btn {
    margin-top: auto;
}

/*PROJECT page
=========================*/
.project-page h1 {
    padding: 30px 0 50px 0;
}

.project-page .image-holder picture {
    position: relative;
    margin: 14px;
    display: block;
}

@media (min-width: 992px) {
    .project-page .image-holder picture {
        margin: 14px 50px 14px 14px;
    }
}

@media (max-width: 992px) {
    .project-page h1 {
        padding: 30px 0 0px 0;
    }

    .project-page .image-holder picture {
        margin-bottom: 30px;
    }
}

.project-page picture:after {
    content: "";
    border: solid 2px var(--primary-color);
    padding: 12px;
    position: absolute;
    z-index: 4;
    top: -14px;
    bottom: -14px;
    left: -14px;
    right: -14px;
    border-radius: var(--border-radius) !important;
}

.project-services {
    padding: 20px 0;
}

.project-services h2 {
    color: var(--light-color) !important;
    margin-bottom: 15px;
}

.project-services li {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

.el .project-services li {
    font-weight: 800;
}

.prevNextWrap {
    display: flex;
    padding-top: 30px;
    font-weight: 600;
}

.el .prevNextWrap {
    font-weight: 700;
}

.prevNextWrap a {
    color: var(--dark-color);
    text-decoration: none;
    text-transform: uppercase;
}

@media (min-width: 576px) {
    .prevNextWrap .next {
        margin-left: 30px;
    }
}

.hotel-lab-group {
    margin-top: 80px;
}

.hotel-lab-group a.pdf {
    display: block;
}

.hotel-lab-group a.pdf:after {
    content: "";
    background: url(/images/download.svg) no-repeat center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: 80px;
}

.hotel-lab-group .box-padding {
    padding: 40px;
    height: 100%;
}

.hotel-lab-row {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .hotel-lab-group .box-padding {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
}

@media (max-width: 480px) {
    .hotel-lab-group {
        margin-top: 50px;
    }

    .hotel-lab-group .box-padding {
        padding: 15px;
    }
}

.already-register {
    margin-top: 30px;
    text-decoration: underline;
    font-weight: bold;
    color: var(--primary-color) !important;
    cursor: pointer;
}

.unconfirmed-email {
    font-style: italic;
    padding-bottom: 30px;
    /*color: var(--dark-color);*/
}


/*BLOG
==========================================*/
.blog-posts-list h2 {
    word-wrap: unset;
    font-size: 1.8em;
}

.blog-posts-list .post-box-holder {
    margin-bottom: 25px;
}

.blog-posts-list .post-box {
    padding: 10px;
}

.blog-posts-list .box-border {
    padding: 20px;
}

.tags-group-title {
    /*  color: var(--primary-color) !important;*/
    font-weight: 700;
    font-family: var(--fontfamily);
    padding-bottom: 10px;
}

.el .tags-group-title {
    font-weight: 800;
}

.tags-group-title.smaller {
    font-size: 14px;
}

.blog-posts-list .post-box img {
    border-radius: var(--border-radius) !important;
}

.post-box .h3,
.post-box .h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

@media (min-width: 768px) {
    .post-box,
    .post-box .box-border {
        height: 100%;
    }

    .post-box .box-border {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .post-box .box-border .tags {
        margin-top: auto;
    }
}

.blog-posts-list .pagination ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    margin-top: 15px;
}

.blog-posts-list .pagination li {
    padding: 5px;
    background: none;
}

.blog-posts-list .pagination li a {
    text-decoration: none;
    color: var(--dark-color);
}

.blog-posts-list .pagination li a:hover {
    text-decoration: underline;
}

.blog-posts-list .pagination li.active a {
    color: var(--black) !important;
    text-decoration: underline;
}

@media (min-width: 1200px) {
    .blog-post-page > h2 {
        width: 80%;
    }
}

@media (min-width: 1480px) {
    .blog-post-page > h2 {
        width: 60%;
    }
}

.blog-post-page .date {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding-bottom: 15px;
}

.el .blog-post-page .date {
    font-weight: 800;
}

.blog-post-page strong {
    color: var(--dark-color);
}

.blog-post-page .box-padding {
    padding: 40px;
}

@media (max-width: 480px) {
    .blog-post-page .box-padding {
        padding: 15px;
    }
}

@media (min-width: 992px) {
    .place-left img {
        float: left;
        margin: 0 3rem 1.5rem 0;
        width: 50%;
    }
}

@media (max-width: 991px) {
    .place-left img {
        margin: 0 0 3rem 0;
    }
}

.blog-post-page .umb-block-list .section-imgs-text:not(:first-child),
.blog-post-page .umb-block-list .simple-text-row {
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .blog-post-page .umb-block-list .section-imgs-text .colText {
        margin-top: 30px;
    }
}

.blog-post-page ul li {
    /* display: flex;
    flex-direction: column;
    */
    display: flow-root;
}

.blog-post-page ol li {
    margin-bottom: 15px;
}

.blog-post-page ul,
.blog-post-page ol {
    list-style-position: inside;
    position: relative;
    left: 0;
    /*reset padding and margin so that fix is consistent*/
    /*remove to see what happens*/
    padding-left: 0;
    margin-left: 0;
}

.blog-post-page ul > ul,
.blog-post-page ol > ul,
.blog-post-page ul > ol,
.blog-post-page ol > ol {
    margin-top: 15px;
    margin-bottom: 15px;
    left: 1em;
}

.blog-post-page ul li ul,
.blog-post-page ol li ul,
.blog-post-page ul li ol,
.blog-post-page ol li ol {
    margin-top: 15px;
    margin-bottom: 15px;
}
/*
.blog-post-page ul li{
    background: url(/images/bullet.svg) no-repeat left 5px;
    padding-left: 35px;
    margin-bottom: 15px;
    background-size: 18px;
}
*/


/*404 page
============================================*/
.sitemap a {
    text-decoration: none;
    color: var(--dark-color);
}

.sitemap a:hover {
    text-decoration: underline;
}


/*CONTACT PAGE
============================================*/
.contact-page {
    color: var(--dark-color) !important;
}

@media (min-width: 1200px) {
    .contact-page {
        min-height: 800px;
    }

    .contact-page .text-holder {
        width: 80%;
    }
}


.contact-page::after {
    content: "";
    position: absolute;
    bottom: 5%;
    right: -20px;
    width: 50%;
    height: 100%;
    background: url(../images/arrow-bg2.svg) no-repeat bottom right;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

@media (min-width: 1400px) {
    .contact-page::after {
        width: 55%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .contact-page::after {
        transform: scaleX(-1);
        right: unset;
        left: -5px;
        width: 45%;
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .contact-page {
        padding-bottom: 160px;
    }

    .contact-page::after {
        bottom: 0%;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding-bottom: 120px;
    }
}

.contact-details .col-md-6 {
    width: 100% !important;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .contact-details {
        margin-top: 60px;
    }
}

.contact-details .h1 {
    color: var(--primary-color);
}

.contact-details .country {
    font-size: 22px;
    color: var(--light-color);
    font-weight: 700;
}

@media (max-width: 991px) {
    .contact-details .country {
        font-size: 20px;
    }
}

.contact-details a {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.el .contact-details .country,
.el .contact-details a {
    font-weight: 800;
}


/*
.contact-page .h2 {
    color: var(--dark-color);
}*/


/** CONTACT FORM
=======================================**/
.contactForm .form-control {
    background: transparent;
    border-radius: 0;
    border: none;
    font-size: 16px;
    background-color: var(--body-bg-color) !important;
    font-weight: 300;
    padding: 3px;
    color: var(--dark-color);
}

.el .contactForm .form-control {
    font-weight: 400;
}

.contactForm hr {
    border-color: var(--primary-color);
    border-width: 2px !important;
    margin: 1rem 0;
}

.contactForm label {
    color: var(--dark-color);
    font-size: 16px;
    padding: 3px;
    font-weight: 700;
    padding-right: 15px;
}

.el .contactForm label {
    font-weight: 800;
}

.contactForm .form-control::placeholder {
    color: var(--dark-color);
    opacity: .50;
}

.contactForm .form-control:active,
.contactForm .form-control:focus {
    border: none;
    box-shadow: none;
}
/*
.submit {
  position: relative;
  line-height: 1.2em;
}

.submit button {
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 20px;
  position: relative;
  font-size: 15px;
  letter-spacing: 2px;
  background: var(--main-color);
}
.submit button span {
  position: relative;
  z-index: 2;
}
.submit button:hover span {
  color: var(--white);
}
.submit button:after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 100%;
  z-index: 1;
  transition: all 0.5s ease;
  background: var(--black);
  color: var(--white);
}
.submit button:hover:after {
  width: 100%;
  left: 0;
  transition: width 0.5s ease;
}
*/
.field-validation-valid {
    display: none;
    color: red;
}

.field-validation-error {
    display: block;
    color: red;
    text-align: left;
    font-size: 12px;
}

.field-validation-error:empty {
    display: none;
}

.asterisk span {
    display: inline;
    font-size: 14px;
}

.form-agree label {
    display: inline;
}

.form-agree .field-validation-error {
    display: inline-block;
}

.form-agree a {
    text-decoration: underline;
    padding-bottom: 0px;
    border-bottom: 0px solid var(--main-color);
}

.form-agree a:hover {
    text-decoration: none;
}

#json-msg {
    padding-top: 20px;
}

.status-failure,
.status-busy {
    margin: 6px 0 0 0;
}

.status-busy img {
    height: 10px;
}

/*==============*/
.cookie-icon {
    position: fixed;
    left: 10px;
    bottom: 10px;
    opacity: 1;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
    padding: 6px;
    font-size: 8px;
    z-index: 2;
}

.twoColList {
    column-count: 2;
}

.scrollHeight > li {
    scroll-margin-top: 250px;
}

.truncated-tag {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    width: 150px;
    max-width: 150px;
    display: block;
    text-wrap: nowrap;
}
