:root {
    /*--fontMain: "EB Garamond", serif;*/
    --fontMain: "Poppins", sans-serif;
    --white: #ffffff;
    --black: #2b2a29;
    --greyBgOpacity: rgba(232, 228, 224, 0.7);
    --secondaryColor: #cba790;
    --bodyBgGrey: #F6F6F6;
    --grey: #bcbcbc;
    --textColor: #161616;
     --transition3s: 0.3s linear;
    interpolate-size: allow-keywords;
}



html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:active{
outline: none;
border: none;
box-shadow: none !important;

}
button:focus {
  outline:none;
  box-shadow: none !important;
}
b, strong {
    font-weight: 700;
}
a, a:hover {
  text-decoration: none;
  opacity: .9;
  color: var(--secondaryColor);
}

.fit-img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}


/*=== MAX-width 
============================

.max-width {
  padding-left: 100px;
  padding-right: 100px;
}
@media (max-width: 1479px) {
	.max-width {
		padding-left: 70px;
        padding-right: 70px;
	} 
}
@media (max-width: 767px) {
	.max-width {
        padding-left: 15px;
        padding-right: 15px; 
  	}
}
@media (min-width: 1480px) {
    .max-xl-width {
        padding-left: 100px;
        padding-right: 100px;
    }
}
    */
    
html,
body {
  overflow-x: hidden;
}
body {
    font-family: var(--fontMain);
    color: var(--textColor);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
    background-color: var(--bodyBgGrey);
    letter-spacing: .2px;
}

h1, .h1,
h2, .h2,
h3 {
    font-family: var(--fontMain);
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
    word-wrap: break-word;
    line-height: 1.2;
    margin: 0px 0 30px;
    text-transform: uppercase;
}
h1, .h1 {
  font-size: 50px;
}
h2, .h2 {
  font-size: 36px;
}
h3 {
  font-size: 30px;
}
@media screen and (max-width: 1199px) {
  h1, .h1 {
    font-size: 44px;
  }
}
@media screen and (max-width: 991px) {
  h1, .h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 575px) {
  h1, .h1 {
    font-size: 32px;
  }
  h2, .h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }
}


.container-heading {
  padding-left: 0px;

}

.container-heading .svg-circle {
  position: absolute;
  left: -120px;
  top: -50px;
  transform: rotate(0deg);/*rotate(-270deg);*/
  z-index: -1;
}
.container-heading .svg-circle.aos-animate {
        transform: unset!important;
       transform: rotate(-90deg)!important;

}

.circleTitle {
  font-family: var(--fontPoppins);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1.6px;
  font-size: 16px;
  fill:var(--secondaryColor);
}
.el .circleTitle {
      letter-spacing: 1.2px;
}
@media screen and (max-width: 1199px) {
    .circle {
        padding-left: 70px;
    }
    .container-heading .svg-circle {
        left: -50px;
    }
}
@media screen and (max-width: 575px) {
    .circleTitle {
        /*font-size: 14px;*/
    }
}

    /*BUTTONS
=============================== */
    .underlineBtn,
    .button {
        font-family: var(--fontPoppins);
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 0px;
        position: relative;
        text-transform: uppercase;
        display: inline-block;
        cursor: pointer;
    }

    .button {
        border-radius: 25px;
        padding: 12px 45px;
        line-height: 1.2;
        color: var(--white);
        text-align: center;
        background-color: var(--secondaryColor);
    }

        .button span {
            display: inline-block;
            text-transform: uppercase;
            line-height: 1.2;
            transition: 0.35s cubic-bezier(0.5, -1, 0.5, 2);
            opacity: 0;
            transform: translate(0, 20px);
            backface-visibility: hidden;
        }

        .button:before {
            content: attr(data-text);
            position: absolute;
            padding: 12px 5px;
            top: 0;
            width: 100%;
            left: 0;
            transition: 0.35s cubic-bezier(0.5, -1, 0.5, 2);
            text-transform: uppercase;
            opacity: 1;
            transform: translate(0, 0px);
            backface-visibility: hidden;
        }

        .button:hover:before,
        .button:focus:before {
            opacity: 0;
            transform: translate(0, -20px);
            backface-visibility: hidden;
        }

        .button:hover span,
        .button:focus span {
            opacity: 1;
            color: var(--white);
            transform: translate(0, 0);
            backface-visibility: hidden;
        }

        .button:hover {
            color: var(--white);
        }

    .underlineBtn {
        color: var(--textColor);
    }

        .underlineBtn::after {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            top: 25px;
            width: 100%;
            transform: scale(0);
            height: 2px;
            background-color: var(--secondaryColor);
            transform-origin: left;
            transition: var(--transition3s);
        }

        .underlineBtn:hover,
        .underlineBtn.active {
            color: var(--secondaryColor);
        }

            .underlineBtn:hover::after,
            .underlineBtn.active::after {
                transform: scale(1);
            }

    /*SPACING
=============================== */
    .marginTop {
        margin-top: 100px;
    }

    @media screen and (max-width: 991px) {
        .marginTop {
            margin-top: 80px;
        }
    }

    /*SLIDER
=============================== */
    .noTopMedia {
        height: 120px;
    }

    @media (max-width: 767px) {
        .noTopMedia {
            height: 100px;
        }
    }

    @media (max-width: 480px) {
        .noTopMedia {
            height: 80px;
        }
    }

    .topMedia {
        height: 100%;
        position: relative;
    }

    #bigCarousel .carousel-item,
    #bigCarousel {
        position: relative;
        height: 100vh;
    }

        #bigCarousel .carousel-control-prev,
        #bigCarousel .carousel-control-next {
            visibility: hidden;
        }

        #bigCarousel:hover .carousel-control-prev,
        #bigCarousel:hover .carousel-control-next {
            visibility: visible;
        }

        #bigCarousel img {
            height: 100% !important;
            width: 100%;
            object-fit: cover;
        }

    .carousel-control-next, .carousel-control-prev {
        width: 10%;
    }

    #bigCarousel .carousel-control-next-icon {
        background-image: url(../images/arrow-carousel.svg) !important;
    }

    #bigCarousel .carousel-control-prev-icon {
        background-image: url(../images/arrow-carousel.svg) !important;
        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: 50px !important;
        height: 50px !important;
        background: no-repeat 50%/100% 100%;
    }

    @media screen and (max-width: 991px) {
        #bigCarousel .carousel-item,
        #bigCarousel {
            height: 550px !important;
        }
    }

    @media screen and (max-width: 575px) {
        #bigCarousel .carousel-item,
        #bigCarousel {
            height: 350px;
        }
    }

    .contentOverSlider {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        padding: 0px 20px;
        background: rgba(0,0,0,0.001);
        font-size: 54px;
        color: var(--white);
        font-weight: 100;
        line-height: 1.2;
        text-shadow: 1px 1px 2px #000000;
    }

    @media screen and (max-width: 1399px) {
        .contentOverSlider {
            font-size: 48px;
        }
    }

    @media screen and (max-width: 991px) {
        .contentOverSlider {
            font-size: 32px;
            line-height: 1.1;
        }
    }

    @media screen and (max-width: 575px) {
        .contentOverSlider {
            font-size: 26px;
        }
    }

    /** HEADER 
    ============================= */
    .header {
        background: rgba(29, 29, 29, 0.3);
        padding: 15px 80px;
    }
    .header.active {
        background: rgba(29, 29, 29, 0.7);
    }
    .header-logo {
        text-align:center;
    }
    .header-logo img {
        height: 85px; /*95px*/
        cursor: pointer;
        filter: brightness(0) invert(1);
    }
    .header-logo span {
        display:block;
        font-size:12px;
        letter-spacing:2px;
        padding-top:4px;
    }

    .left-header,
    .right-header{
        display:flex;
        color: var(--white);
    }
    .left-header .extra{
        padding-left:8px;
    }
    .right-header{
        align-items: flex-end !important;
        justify-content: flex-end !important;
    }
    
    @media screen and (max-width: 1199px) {
        .header {
            padding: 10px 20px 10px;
        }
        .header-logo img {
            height: 75px; /*85px*/
        }
        .right-header .button {
            padding: 12px 30px;
        }
    }
    @media screen and (max-width: 991px) {
        .header-logo img {
            height: 65px; /*75px*/
        }
        .right-header .button {
            padding: 12px 20px;
        }
    }

    @media screen and (max-width: 767px) {
        .header {
            padding: 10px 10px 10px;
        }
        .header-logo img {
            height: 50px; /*55px*/
        }
        .header-logo span {
            font-size: 10px;
            padding-top: 2px;
        }
        .right-header .button {
            font-size: 14px;
            padding: 12px 15px;
        }
    }
    @media screen and (max-width: 575px) {
        .right-header .button {
            font-size: 12px;
            padding: 12px 15px;
            width:95px;
        }  
        .header-logo span {
            letter-spacing: 1px;
        }
    }
    /*
    .header .underlineBtn {
        color: var(--white);
    }
 .header .underlineBtn::after {
        background-color: var(--white);
    }*/

    .header a {
        color: var(--white);
    }
.header .whatsup-btn img {
    width: 34px;
    height: 34px;
    margin: 0px 8px 4px 0;
}
@media screen and (max-width: 575px) {
    .header .whatsup-btn {
        position: absolute;
        left: 58px;
        top: 26px;
    }
}

    /**LANGUAGES**/
    .languagesDrop .dropdown-toggle {
        font-family: var(--fontPoppins);
        color: var(--white);
        border: none;
        background: transparent;
        font-weight: 600;
        transition: 0.3s linear;
    }

        .languagesDrop .dropdown-toggle::after {
            margin-left: 0;
        }

    .languagesDrop a {
        color: var(--white);
        text-decoration: none;
    }

    .languagesDrop .dropdown-menu {
        min-width: 40px;
        border-radius: 0;
        background: transparent;
        border: none;
        left: -10px !important;
        top: 22px !important;
    }

    .languagesDrop .dropdown-item {
        display: block;
        padding: 0px;
        text-align: center;
        padding: 0 5px;
        font-weight: 600;
        letter-spacing: 2px;
        font-size: 16px;
        color: var(--textColor);
    }

        .languagesDrop .dropdown-item:hover {
            background: none;
            color: var(--textColor);
        }

    .dropdown.active .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        position: absolute !important;
        display: block;
        border: 0px solid rgba(0, 0, 0, 0.15);
        background-color: var(--white);
        border-radius: 0;
        padding: 8px 10px;
        font-size: inherit;
        z-index: 1030;
        left: 20px;
        top: calc(100% - 2px);
        margin: 0;
        line-height: 1.4;
    }


    /*
    @media screen and (max-width: 1399px) {
        .languagesDrop .dropdown-toggle {
            font-size: 16px;
        }
    }
    */

    /** HEADER **/

    /**SECTIONS
============================**/
.row-greyBg-narrow {
    display: flex;
    position: relative;
    z-index: 1;
}
.row-greyBg-narrow::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 10%;
    bottom: 10%;
    display: block;
    background: var(--greyBgOpacity);
    z-index: -1;
}
.col-text {
    width: 40%;
}
.col-image-1 {
    width: 25%;
    margin-right: 1%;
}
.col-image-2 {
    width: 34%;
}
@media screen and (max-width: 1199px) {
    .col-text {
        width: 47%;
    }
    .col-image-1 {
        width: 22%;
        margin-right: 1%;
    }
    .col-image-2 {
        width: 30%;
    }    
}
@media screen and (max-width: 991px) {
    .row-greyBg-narrow {
        flex-wrap: wrap;
    }
    .col-text {
        width: 100%;
        margin-bottom: 50px;
    }
    .col-image-1 {
        width: 49%;
    }
    .col-image-2 {
        width: 50%;
    }
}
.block-sections .section-block:nth-child(1) .circleTitle{
        letter-spacing: 10px;
}
/*
@media screen and (min-width: 1200px) {
    .block-sections .section-block:nth-child(2) .container-heading .svg-circle {
        top: -180px;
    }
}*/
.block-sections .section-block:nth-child(2) .circleTitle {
    letter-spacing: 2px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .block-sections .section-block:nth-child(1) .container-heading .h1 {
        font-size: 36px;
    }
  /*  .block-sections .section-block:nth-child(1) .container-heading .svg-circle {
        left: -80px;
    }*/
    .block-sections .section-block:nth-child(1) .container-heading .circle {
      /*  padding-left: 40px;*/
    }
}

/*Section Bg
    ====================
*/
.row-greyBg  {
    background: var(--greyBgOpacity);
    padding:80px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .row-greyBg  {
        padding:40px;
    }    
}

.row-reviews .circleTitle{
    letter-spacing: .8px;
}

/* START OF SWIPER CAROUSELS 
====================================*/
.swiper-container  {
    padding-left:50px;
    padding-right:50px;
    position:relative;
}
.swiper-button-next,
.swiper-button-prev {
  top: 50% !important;
  color: var(--black);
      background:url(/images/arrow-right.svg) no-repeat center center;
}
.swiper-button-prev {
    transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;
}
.rTitle {
    font-weight:bold;
}
.rText {
    padding-top:10px;
}
.rName {
    font-style: italic;
}
/*FOOTER
==================== */
.row-footer {
    display:flex;
}
.left-footer {
    background: var(--greyBgOpacity);
    width: 70%;
    padding: 70px 50px;
}
.left-footer.fullwidth {
        width: 100%!important;
}
.left-footer.fullwidth .f-map {
    text-align:right;
}

.row-footer .right-footer {
  width: 30%;
}
@media screen and (max-width: 991px) {
  .row-footer {
    flex-wrap: wrap;
  }
  .row-footer .left-footer {
    width: 100%;
    padding: 50px 30px;
  }
  .row-footer .right-footer {
    width: 100%;
  }
}
footer h2 {
    color:var(--secondaryColor);
    font-size:32px;
}
footer .social img {
    height:25px;   
    margin:0 5px;
}
footer .social img:hover {
    filter: brightness(0) saturate(100%) invert(69%) sepia(52%) saturate(179%) hue-rotate(340deg) brightness(91%) contrast(88%);
}
.bottomMenu {
    background: var(--greyBgOpacity);
}
.bottomMenu ul li {
  margin: 0px 10px 10px;
}

.bottomMenu ul li a {
  text-transform: uppercase;
}

.bottomMenu ul li:last-child {
  margin-right: 0px;
}

.copyright{
  color: var(--black);
  font-size:14px;
}
.copyright a {
  text-decoration: none;
  color: var(--black);
}
copyright a:hover {
  text-decoration: underline;
}

.newsletterForm .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--mauro70);
  border-radius: 0px;
  font-style: italic;
  padding: 8px 15px;
}
.newsletterForm .underlineBtn {
  color: var(--portokali) !important;
  background:none!important;
  padding:0!important;
  font-weight: 400;
}
.newsletterForm .underlineBtn:hover::after {
  transform: scale(1)!important;
}
.form-agree {
    font-size:14px;   
}
.form-agree a{
    color: var(--mauro70);
}

/** SCROLL UP  **/
.scrollup {
  background: url(/images/arrow-up-top.svg) no-repeat center center;
  bottom: 0px;
  display: none;
  position: fixed;
  right: 30px;
  text-indent: -9999px;
  width: 40px;
  height: 50px;
  text-decoration: none;
  z-index: 1000;
  background-size: 100%;
}

.scrollup.is-visible {
	display: inline;
  	opacity: 1;
}

/** SCROLL UP  **/


    /*
.anime-from-bottom {
   // opacity: calc(var(--trig) + 10%);
    transform: translateY(calc(var(--trig)));
    transition: all ease-out 0.8s;
}

.fadeIn {
    opacity: 0;
}

    .fadeIn.trig {
        animation: fadeIn 1s normal forwards ease-in-out;
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
*/
    /** FOR TTTLE ANIMATIONS **/

@keyframes rectangle {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    95% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        clip-path: none;
    }
}

@-webkit-keyframes rectangle {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    95% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        clip-path: none;
    }
}

@-moz-keyframes rectangle {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    95% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        clip-path: none;
    }
}

@-o-keyframes rectangle {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    95% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        clip-path: none;
    }
}

.js-animate-clip {
    -o-animation-name: rectangle;
    -moz-animation-name: rectangle;
    -webkit-animation-name: rectangle;
    animation-name: rectangle;
    -o-animation-duration: 0.9s;
    -moz-animation-duration: 0.9s;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -o-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.js-animate-clip.js-do-animation {
    -o-animation-play-state: running;
    -moz-animation-play-state: running;
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

/** FOR TTTLE ANIMATIONS **/


.text-box ul,
.privacy-text ul{
    margin: 0 0px 20px 20px;
}