/** START OF GENERAL SETTINGS **/
:root {
  --fontGeologica: "Geologica", sans-serif;
  --white: #ffffff;
  --whiteDark: #f1f1f1;
  --black: #191a28;
  --darkGrey: #45545a;
  --darkGreyText: #2f5665;
  --mediumGray: #939da2;
  --lightGrey: #e0e2e5;
  --yellow: #fbbd39;
  --orange: #f99300;
  --transition3s: 0.3s linear;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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:focus,
a:focus {
  box-shadow: none !important;
  outline: none;
}

a,
a:hover {
  text-decoration: none;
  color: var(--darkGreyText);
  transition: var(--transition3s);
}

ul {
  list-style-position: inside;
}

picture {
  display: block;
  height: 100%;
  width: 100%;
}

/* picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
} */
input[type="checkbox"],
a[type="submit"] {
  -webkit-appearance: none !important;
  border-radius: 0;
  border: none;
  -webkit-border: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.form-control:focus,
.form-select:focus,
.form-check-input {
  outline: none;
  box-shadow: none;
}

/** END OF GENERAL SETTINGS **/
/* START OF BODY */
body {
  font-family: var(--fontGeologica);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--darkGreyText);
  text-align: left;
  background: linear-gradient(to right, #f1f1f1 26%, #ffffff 26%);
}

@media screen and (min-width: 1680px) {
  body {
    background: linear-gradient(to right, #f1f1f1 22%, #ffffff 22%);
  }
}
@media screen and (max-width: 991px) {
  body {
    background: var(--white);
    font-size: 16px;
    padding-top: 70px;
  }
}
/* END OF BODY  */
/* START OF HEADINGS  */
h1,
.h1,
.heading1,
h2,
.h2,
.heading2,
h3,
.h3,
.heading3,
h4,
.h4,
.heading4 {
  font-family: var(--fontGeologica);
  font-weight: 600;
  text-align: start;
  background: rgba(0, 0, 0, 0.005);
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

h1,
.h1,
.heading1 {
  font-size: 40px;
  color: var(--orange);
}

h2,
.h2,
.heading2 {
  font-size: 30px;
  color: var(--darkGreyText);
}

h3,
.h3,
.heading3 {
  color: var(--orange);
  font-size: 26px;
}

h4,
.h4,
.heading4 {
  font-size: 20px;
  color: var(--darkGreyText);
}

@media screen and (max-width: 1399px) {
  h1,
  .h1,
  .heading1 {
    font-size: 34px;
  }
  h2,
  .h2,
  .heading2 {
    font-size: 26px;
  }
  h3,
  .h3,
  .heading3 {
    font-size: 20px;
  }
  h4,
  .h4,
  .heading4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  h1,
  .h1,
  .heading1 {
    font-size: 28px;
    color: var(--white);
  }
  h2,
  .h2,
  .heading2 {
    font-size: 22px;
  }
  h3,
  .h3,
  .heading3 {
    font-size: 18px;
  }
  h4,
  .h4,
  .heading4 {
    font-size: 17px;
  }
}
/* END OF HEADINGS  */
/* START OF MARGINS  */
.marginTop {
  margin-top: 100px;
}

.paddingTop {
  padding-top: 120px;
}

@media screen and (max-width: 991px) {
  .marginTop {
    margin-top: 70px;
  }
}
/* END OF MARGINS  */
/* START OF BUTTONS */
.eyeButton {
  font-family: var(--fontGeologica);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--darkGreyText);
  letter-spacing: 1.8px;
  padding-bottom: 10px;
  height: 35px;
  text-align: left;
  position: relative;
  transition: var(--transition3s);
}

.whiteButton {
  color: var(--white) !important;
}

.eyeButton::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  max-width: 70px;
  height: 2.5px;
  display: block;
  background-color: var(--darkGrey);
  transition: 0.3s ease;
}

.eyeButton.whiteButton::after {
  background-color: var(--white);
}

.eyeButton.orangeButton::after {
  background-color: var(--orange);
}

.orangeButton {
  color: var(--orange);
}

.orangeButton:hover {
  color: var(--orange);
}

.eyeButton:hover::after {
  left: 105%;
  transform: translate(-100%);
}

@media screen and (max-width: 991px) {
  .eyeButton {
    height: 30px;
    font-size: 15px;
  }
}
/* END OF BUTTONS */
/* START OF LOADER  */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--yellow);*/
  background: var(--whiteDark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#loader-logo {
  height: 160px;
  opacity: 0;
  animation: glowBreath 3s ease-in-out infinite, fadeOut 1s ease forwards 2.8s;
}

@media screen and (max-width: 991px) {
  #loader-logo {
    height: 120px;
  }
}
@keyframes glowBreath {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.hidden {
  opacity: 0;
}

.fade-in {
  animation: fadeInContent 1.5s ease forwards;
}

#content {
  position: relative;
  z-index: 1;
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
/* END OF LOADER  */
/* START OF PROGRESS BAR */
#progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--mediumGray);
  z-index: 9999;
}

#progress-bar {
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 0.1s ease;
}

/* START SCROLL TO TOP  */
.toTop {
  text-align: right;
}

a.scrollup {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: url("../media/sl4dhy2n/scrollup.svg") no-repeat top center;
  width: 19px;
  height: 30px;
  z-index: 10000;
  display: none;
}

.scrollup.is-visible {
  display: inline;
  opacity: 1;
}

@media screen and (max-width: 991px) {
  a.scrollup {
    bottom: 18px;
  }
}
/* END SCROLL TO TOP  */
/* START OF HEADER 
    ======================     */
.header-logo {
  /* width: 26%;
  padding: 30px 0px 30px 60px;*/
  width: 26%;
  padding: 30px 60px 30px 50px;
  background: var(--whiteDark);
  z-index: 100;
}

.header-logo img,
.headerMenu .menuLogo img {
  height: 180px;
}

@media screen and (min-width: 1680px) {
  .header-logo {
    width: 22%;
  }
}
@media screen and (max-width: 1399px) {
  .header-logo img,
  .headerMenu .menuLogo img {
    height: 160px;
  }
  .header-logo {
    padding: 30px 0px 30px 50px;
  }
}
@media screen and (max-width: 1199px) {
  .header-logo img,
  .headerMenu .menuLogo img {
    height: 140px;
  }
  .header-logo {
    padding: 30px 0px 30px 30px;
    width: 23%;
  }
}
@media screen and (max-width: 991px) {
  .top-header {
    background: var(--white);
    z-index: 1030;
  }
  .header-logo {
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: auto;
  }
  .header-logo img {
    height: 50px;
  }
}
.callToAction {
  background: var(--whiteDark);
  /* width: 25%;
      padding: 30px 0px 60px 50px;*/
  width: 26%;
  padding: 30px 60px 30px 50px;
  z-index: 100 !important;
  bottom: 25px;
}

@media screen and (min-width: 1680px) {
  .callToAction {
    width: 22%;
  }
}
@media screen and (max-width: 1199px) {
  .callToAction {
    padding: 30px 0px 40px 20px;
    width: 24%;
  }
}
@media screen and (max-width: 991px) {
  .callToAction {
    width: 100%;
    padding: 15px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bottom-header .callToAction {
    background: var(--darkGrey);
    z-index: 1000 !important;
    bottom: 0;
  }
  .bottom-header .callToAction .eyeButton {
    color: var(--white);
  }
  .bottom-header .callToAction .eyeButton::after {
    background: var(--white);
  }
}
.header .menuButton,
.main-menu .menuButton {
  padding-top: 50px;
  padding-right: 70px;
}

.header .menuButton,
.header .languagesDrop {
  left: unset;
  right: 0;
}

.main-menu .menuButton {
  position: absolute;
  right: 0;
  z-index: 1000;
}

@media screen and (max-width: 991px) {
  .header .menuButton,
  .main-menu .menuButton {
    padding-top: 25px;
    padding-right: 20px;
  }
  /* .main-menu .menuButton {
      padding-top: 30px;
      padding-right: 50px;
  }*/
  .main-menu .menuButton {
    position: absolute;
  }
}
/* @media screen and (max-width: 575px) {
    .main-menu .menuButton {
        padding-right: 25px;
    }
}*/
/*
    .menu {
        padding-right: 80px;
    }*/
/* LANGUAGES  
-----------------------*/
.languagesDrop {
  padding-bottom: 30px;
  padding-right: 50px;
}

.languagesDrop .dropdown-toggle,
.languagesDrop .dropdown-menu a {
  color: var(--orange);
  font-weight: 400;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  transition: var(--transition3s);
  background: rgba(0, 0, 0, 0.005);
}

.languagesDrop .dropdown-toggle::after {
  display: none !important;
}

.languagesDrop .dropdown-menu {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 40px;
  border-radius: 0;
  padding: 5px 0px;
  border: 0;
}

.languagesDrop .dropdown-menu a {
  background-color: var(--white);
  color: var(--orange);
  text-align: left;
  padding: 0;
}

/* END OF HEADER  */
/* START OF MAIN MENU  
    ======================= */
.main-menu {
  height: 0;
  opacity: 0;
  transition: height 0.5s ease, opacity 0.5s ease;
  position: relative;
  visibility: hidden;
}

.main-menu.open {
  height: 100vh;
  position: fixed;
  opacity: 1;
  z-index: 1050 !important;
  width: 100%;
  background: var(--whiteDark);
  left: 0;
  top: 0;
  visibility: visible;
  overflow-y: scroll;
}

.main-menu .headerMenu {
  top: 0;
  padding-left: 50px;
}

.main-menu .footerMenu {
  bottom: 0;
  padding: 0 80px 30px;
}

@media (min-width: 992px) {
  .main-menu .headerMenu,
  .main-menu .footerMenu {
    position: absolute;
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1399px) {
  .main-menu .headerMenu {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .main-menu .headerMenu {
    padding-left: 0px;
  }
}
.main-menu .menuLogo {
  padding-top: 30px;
}

@media screen and (max-width: 991px) {
  .main-menu .menuLogo {
    padding-top: 20px;
  }
  .headerMenu .menuLogo img {
    height: 100px;
  }
}
@media screen and (max-width: 575px) {
  .headerMenu .menuLogo img {
    height: 80px;
  }
}
.main-menu .menu-container {
  height: 100%;
}

.main-menu .menu-links {
  padding-left: 40px;
  background: var(--whiteDark);
  width: 60%;
}

.main-menu .menu-links ul {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: wrap !important;
  justify-content: center;
  margin: auto 0;
}

@media (min-width: 992px) {
  .main-menu .menu-links ul {
    flex-direction: row !important;
    justify-content: start;
  }
}
.main-menu .menu-links li {
  margin-right: 80px;
}

.main-menu .menu-links li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1599px) {
  .main-menu .menu-links {
    padding-left: 35px;
  }
  .main-menu .menu-links li {
    margin-right: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .main-menu .menu-links li {
    margin-right: 40px;
  }
}
@media screen and (max-width: 991px) {
  .main-menu .menu-container {
    height: calc(100% - 120px);
    flex-direction: column !important;
  }
  .main-menu .menu-links {
    padding-left: 0px;
    padding-top: 60px;
    padding-bottom: 40px;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: auto;
  }
  .main-menu .menu-links ul {
    margin: auto;
  }
  .main-menu .menu-links li {
    padding: 15px 0;
    margin: 0px;
  }
}
.main-menu .menu-links a {
  font-size: 25px;
  font-weight: 700;
  color: var(--darkGreyText);
  background: rgba(0, 0, 0, 0.005);
}

.main-menu .menu-links a:hover,
.main-menu .menu-links a.active {
  color: var(--orange);
}

@media screen and (max-width: 1199px) {
  .main-menu .menu-links a {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .main-menu .menu-links a {
    font-size: 22px;
  }
}
.main-menu .menuCallToAction,
.main-menu .menuContactDetails {
  width: 20%;
}

@media screen and (max-width: 1199px) {
  .main-menu .menuCallToAction,
  .main-menu .menuContactDetails {
    width: 25%;
  }
}
@media screen and (max-width: 991px) {
  .main-menu .menuCallToAction,
  .main-menu .menuContactDetails {
    width: 100%;
    padding: 20px;
  }
}
.main-menu .menuCallToAction {
  background: var(--darkGrey);
}

.main-menu .menuContactDetails {
  background: var(--orange);
}

.main-menu .menuCallToAction a,
.main-menu .menuContactDetails ul:first-child {
  align-self: center;
}

.main-menu .menuContactDetails a {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 0, 0, 0.005);
}

.headerSocialMedia li {
  margin-bottom: 20px;
}

.headerSocialMedia li:last-child {
  margin-bottom: 0;
}

.main-menu .footerMenu .languagesDrop .dropdown-menu,
.main-menu .footerMenu .languagesDrop .dropdown-menu a {
  background-color: var(--whiteDark);
}

.main-menu .languagesDrop {
  position: absolute;
  bottom: 0;
  left: 40px;
}

@media screen and (max-width: 991px) {
  .main-menu .languagesDrop {
    top: 25px;
    left: 30px;
    bottom: unset;
  }
}
.main-menu .social {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

@media screen and (max-width: 991px) {
  .main-menu .menuButton img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(94%) saturate(482%)
      hue-rotate(357deg) brightness(100%) contrast(106%);
  }
  .menuContactDetails ul:first-child li {
    margin: 5px 10px;
  }
  .menuContactDetails .headerSocialMedia li {
    margin: 5px 20px;
  }
}
@media screen and (max-width: 575px) {
  .menuContactDetails .headerSocialMedia li {
    margin: 5px 12px;
  }
}
/* END OF MAIN MENU  */
/* START OF FOOTER  
    ===========================  */
.footer {
  background: var(--lightGrey);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 80px 80px 30px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  margin-top: -40px;
  z-index: 101;
}

.footer-left {
  width: 26%;
}

.footer-right {
  width: 74%;
}

footer h4,
footer .h4,
footer .heading4,
.newsLetterText,
.footerCopyright {
  color: var(--darkGrey);
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 60px 30px 80px;
  }
  .footer-left,
  .footer-right {
    width: 100%;
  }
  .footer-right {
    margin-top: 50px;
  }
  .footer-left img {
    height: 70px;
  }
}
.newsLetterRow {
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .newsLetterRow {
    margin-bottom: 50px;
  }
}
.newsLetterForm .form-control {
  border: 2px solid var(--darkGrey);
  background: var(--lightGrey);
}

.newsLetterForm .form-control::-moz-placeholder {
  font-size: 16px;
  font-weight: 700;
  color: var(--mediumGray);
}

.newsLetterForm .form-control::placeholder {
  font-size: 16px;
  font-weight: 700;
  color: var(--mediumGray);
}

.newsLetterForm .field-validation-error {
  padding-top: 5px;
  padding-left: 18px;
  display: inline-block;
}

.newsLetterForm .form-agree {
  padding-left: 5px;
}

.newsletterform .v-no {
  display: none;
}

.footerContact-details .footerMenu li,
.footerDetails p {
  margin-bottom: 10px;
}

.footerContact-details .footerMenu li:last-child,
.footerDetails p:last-child {
  margin-bottom: 0;
}

.footerContact-details .footerMenu li a,
.footerDetails,
.footerDetails p a {
  color: var(--darkGrey);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footerContact-details .footerMenu li a:hover,
.footerDetails p a:hover {
  color: var(--orange);
}

.footerSocial img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(6%) saturate(1294%)
    hue-rotate(152deg) brightness(97%) contrast(86%);
}

.footerSocial li {
  margin-right: 30px;
}

.footerSocial li:last-child {
  margin-right: 20px;
}

.footerCopyright {
  margin-top: 80px;
  font-size: 12px;
  font-weight: 700;
}

/* END OF FOOTER  */
.heroSection,
.firstScreen {
  height: 100vh;
}

.projectsPage .firstScreen,
.contactPage .firstScreen,
.firstScreen {
  height: auto;
}

.leftBody {
  width: 26%;
  padding: 0px 60px 0px 50px;
}

.firstScreen .leftBody {
  display: flex;
  align-items: end;
  padding-bottom: 160px;
  height: 100vh;
}

.rightBody {
  display: flex;
  width: 74%;
  padding: 10px 0px 70px 0px;
}

@media screen and (min-width: 1680px) {
  .leftBody {
    width: 22%;
  }
  .rightBody {
    width: 78%;
  }
}
@media screen and (max-width: 1199px) {
  .leftBody {
    padding: 0px 20px 0px 20px;
  }
}
@media screen and (max-width: 991px) {
  .leftBody,
  .firstScreen .leftBody {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 15px 10px 15px;
    margin: auto;
    background: var(--orange);
  }
  .mobileTitle {
    display: none;
  }
  .rightBody {
    width: 100%;
    padding: 0px 0px 0px;
  }
}
.plainText {
  padding: 0px 60px 0px 0px;
}

@media screen and (max-width: 1199px) {
  .plainText {
    padding: 0px 0px 0px;
  }
}
/* @media screen and (max-width: 991px) {
  .plainText {
    padding: 12px 20px 0px;
  }
} */
@media screen and (max-width: 991px) {
  .colImg img {
    max-height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .colImg img {
    max-height: 200px;
  }
}
/*INTRO BOXES */
@media (min-width: 992px) {
  .bigBanner {
    margin-top: 120px;
  }
}
.bigBannerBox {
  text-align: center;
  padding: 30px 30px;
}

.bigBannerBox .number {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.005);
  color: var(--white);
}

.bigBannerBox .text {
  text-align: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.005);
}

.bigBanner .bigBannerCol:nth-child(1) {
  background: var(--mediumGray);
  color: var(--white);
}

.bigBanner .bigBannerCol:nth-child(2) {
  background: var(--darkGrey);
  color: var(--white);
}

.bigBanner .bigBannerCol:nth-child(3) {
  background: var(--orange);
  color: var(--white);
}

.bigBanner .bigBannerCol:nth-child(4) {
  background: var(--lightGrey);
  color: var(--orange);
}

.bigBanner .bigBannerCol:nth-child(4) .number,
.bigBanner .bigBannerCol:nth-child(4) .text {
  color: var(--orange);
}

.bigBannerBlock {
  background: var(--lightGrey);
  padding: 40px;
  position: absolute;
  width: 600px;
  left: 25px;
  top: 180px;
}

@media screen and (max-width: 1399px) {
  .bigBannerBox {
    padding: 25px 10px;
  }
  .bigBannerBox .number {
    font-size: 50px;
  }
  .bigBannerBox .text {
    font-size: 19px;
  }
  .bigBannerBlock {
    padding: 20px;
    width: 410px;
    top: 130px;
  }
}
/*SWIPERS INIT
    =====================    */
/*
.swiper-button-next:after,
.swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    color: var(--orange);
}*/
.swiper-button-next,
.swiper-button-prev {
  color: var(--orange);
}

.swiper-button-next svg,
.swiper-button-prev svg {
  fill: var(--orange);
}

.swiper.arrow-topRight .swiper-button-next,
.swiper.arrow-topRight .swiper-button-prev {
  top: 22px;
}

.swiper.arrow-topRight .swiper-button-next {
  right: 20px;
}

.swiper.arrow-topRight .swiper-button-prev {
  left: unset;
  right: 70px;
}

.homeServicesSwiper .heading2 {
  color: var(--orange);
}

.homeServicesSwiper img {
  width: 50%;
}

/* .homeServicesSwiper .swiper-wrapper {
  align-items: center;
} */

.homeServicesSwiper .swiper-button-next {
  right: -5px;
}

.homeServicesSwiper .swiper-button-prev {
  left: -5px;
}

@media screen and (min-width: 1200px) {
  .homeServicesSwiper .swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .homeServicesSwiper .swiper-slide .heading3,
  .homeServicesSwiper .swiper-slide {
    text-align: center;
  }
  .homeServicesSwiper {
    padding-bottom: 60px;
  }
  .homeServicesSwiper img {
    max-height: unset;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .homeServicesSwiper img {
    width: 60%;
  }
}


.homeWhy .number,
.homeWhy .subtitle {
  font-size: 22px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.005);
}

.homeWhy .title {
  font-size: 28px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.005);
}

.homeWhy .homeWhyCol:nth-of-type(2) {
  background: var(--mediumGray);
  color: var(--white);
}

.homeWhy .homeWhyCol:nth-of-type(2) .title {
  color: var(--darkGreyText);
}

.homeWhy .homeWhyCol:nth-of-type(3) {
  background: var(--darkGrey);
  color: var(--white);
}

.homeWhy .homeWhyCol:nth-of-type(3) .title {
  color: var(--orange);
}

.homeWhyBox {
  padding: 30px 0px;
  /* height: 230px; */
}

.homeWhyCol:nth-of-type(2),
.homeWhyCol:nth-of-type(3) {
  padding: 30px 40px;
}

@media screen and (max-width: 1399px) {
  .homeWhyCol:nth-of-type(2),
  .homeWhyCol:nth-of-type(3) {
    padding: 20px 20px;
  }
  .homeWhyBox {
    margin: 60px 0px;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .homeWhyBox {
    margin: 25px 0px;
  }
}
/*INTRO SECTION - our projects*/
.filters {
  margin-bottom: 20px;
}

.homeProjectSectionSwiper .swiper {
  width: 100%;
  /* height: 100%; */
}
/* 
.homeProjectSectionSwiper .swiper-slide {
  height: 280px;
} */

.homeProjectSectionSwiper .swiper-slide picture img {
  height: 250px;
}

.homeProjectSectionSwiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1) !important;
}

/* .homeProjectSectionSwiper .swiper-slide-active {
  height: 510px;
} */

.homeProjectSectionSwiper .swiper-slide-active  {
  /* height: 100%; */
  width: 50% !important;
  transition: all linear;
}

/* .homeProjectSectionSwiper .swiper-slide-prev {
  height: 0;
  transition: height 0.9s ease-in-out 0.2s;
} */
/* 
.homeProjectSectionSwiper .project-name {
  width: 200px;
} */

.homeProjectSectionSwiper .swiper-slide-active picture img,
.homeProjectSectionSwiper .swiper-slide-prev picture img {
  height: 400px;
}

.homeProjectSectionSwiper {
  display: none; /* αρχικά κρυμμένα */
  opacity: 0;
  transform: translateY(20px);
  padding: 0px 0px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.homeProjectSectionSwiper.active {
  display: flex !important;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

.homePortfolioSection .swiper-slide picture img {
  display: block;
  width: 100%;
  /* height: 100%; */
  -o-object-fit: cover;
  object-fit: cover;
}

.homePortfolioSection .websiteLogo {
  max-height: 50px;
  max-width: unset;
}

.homePortfolioSection.swiper {
  width: 100%;
  height: 0px;
  margin-left: auto;
  margin-right: auto;
}

.homePortfolioSection .swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: all 0.8s cubic-bezier(0.45, 0, 0.55, 1) !important;
}

.thumbSwiper {
  height: 20%;
  padding: 10px 0;
  z-index: 0;
}

.thumbSwiper .swiper-slide {
  width: 25%;
  height: 250px;
}

.thumbSwiper .swiper-slide-thumb-active {
  display: none;
}
/* 
.projectsSwiper .swiper-button-next {
  right: unset;
  left: 45%;
} */

/*Blog Section*/
.homeBlog .colBoxText,
.colBox .heading3 {
  color: var(--white);
  background: rgba(0, 0, 0, 0.005);
}

.homeBlog .col:nth-child(1) {
  background: var(--mediumGray);
}

.homeBlog .col:nth-child(2) {
  background: var(--darkGrey);
}

.homeBlog .col:nth-child(3) {
  background: var(--orange);
}

@media (min-width: 1200px) {
  .homeBlog .col:nth-child(1) {
    width: 40%;
  }
  .homeBlog .col:nth-child(2) {
    width: 28%;
  }
  .homeBlog .col:nth-child(3) {
    width: 32%;
  }
}
.homeBlog h3 a,
.homeBlog .h3 a {
  color: var(--white);
}

.colBox .eyeButton {
  background: rgba(0, 0, 0, 0.005);
}

.colBox {
  padding: 50px 50px 90px;
}

.colBoxImage img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1399px) {
  .homeBlog {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .colBox {
    padding: 50px 25px 90px;
  }

  .homeProjectSectionSwiper .swiper-slide-active {
    width: 60% !important;
  }
}
@media screen and (max-width: 991px) {
  .colBox {
    padding: 50px 20px 100px;
  }
  .colBoxImage img {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .homeProjectSectionSwiper .swiper-slide-active {
    width: 85% !important;
  }
}
/* START OF ABOUT PAGE 
    =======================  */
.rightBodyNo {
  padding: 0;
}

.partners-section .heading2 {
  color: var(--white);
}

.leftPartners,
.rightPartners {
  padding: 60px 50px;
}

.leftPartners {
  background: var(--darkGrey);
  color: var(--white);
}

.rightPartners {
  background: var(--lightGrey);
  display: flex;
  align-items: center;
}

.partners .partner {
  margin: 20px 18px;
}

.partner img {
  height: 54px;
}

@media (max-width: 991px) {
  .leftPartners,
  .rightPartners {
    padding: 50px 25px;
  }
}
@media screen and (max-width: 575px) {
  .partners .partner {
    width: 40%;
  }
}
/*AWARDS*/
.badgeOrganization {
  color: var(--darkGrey);
  font-size: 20px;
  font-weight: 700;
}

.badgeCategory {
  font-size: 28px;
  color: var(--orange);
  font-weight: 700;
  display: inline-block;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media screen and (max-width: 1199px) {
  .badges {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .badgeCategory {
    font-size: 25px;
  }
  .badgeOrganization {
    font-size: 18px;
  }
}
/*PLAIN TEXT - right col big text*/
.bigText {
  font-size: 48px;
  font-weight: 700;
  color: var(--mediumGray);
}

@media screen and (max-width: 1399px) {
  .bigText {
    font-size: 30px;
  }
}
.services h3,
.services .h3 {
  color: var(--darkGreyText);
}

/* END OF ABOUT PAGE */
.colImgBig img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 100%;
  min-height: 700px;
  height: 100%;
}

@media (max-width: 991px) {
  .colImgBig img {
    min-height: 300px;
    height: 300px;
  }
}
/* SERVICE PAGE 
============================*/
.colImgBig .heading4 {
  color: var(--white);
  background: rgba(0, 0, 0, 0.005);
  position: absolute;
  top: 50px;
  left: 40px;
  z-index: 1000;
}

.whatBoxes {
  background: var(--mediumGray);
  color: var(--white);
  padding: 50px 40px;
  align-items: center;
}

.whatBox {
  margin: 8px 20px;
  width: calc(50% - 40px);
}

.whatBox .number {
  color: var(--darkGreyText);
  background: rgba(0, 0, 0, 0.005);
  font-size: 22px;
  margin-bottom: 8px;
}

.whatBox .whatText {
  background: rgba(0, 0, 0, 0.005);
}

@media (max-width: 991px) {
  .whatBoxes {
    padding: 50px 0px;
  }
}
/*Service - Pricing Tables*/
.pricing-table {
  overflow-y: hidden;
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.pricing-table th,
.pricing-table td {
  border: 2px solid var(--orange);
  padding: 10px;
}

.pricing-table .dot {
  color: var(--orange);
  font-weight: bold;
  font-size: 16px;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  width: 30%;
  font-weight: 500;
}

.titles-row th {
  background-color: var(--whiteDark);
  color: var(--darkGreyText);
  font-weight: 700;
  font-size: 24px;
  padding: 30px 10px;
}

.prices-row {
  background-color: var(--orange);
  color: var(--white);
  font-size: 27px;
  font-weight: 700;
  padding: 12px;
  display: none;
}

.prices-row td {
  background: rgba(0, 0, 0, 0.005);
}

@media screen and (max-width: 1399px) {
  .titles-row th {
    font-size: 20px;
  }
  .prices-row th {
    font-size: 22px;
  }
}
.bottom-row {
  background-color: var(--orange);
  border-color: var(--orange);
  padding: 20px 15px;
}

.buttonInterested {
  background: rgba(0, 0, 0, 0.005);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .titles-row th {
    font-size: 18px;
  }
  .prices-row th {
    font-size: 20px;
  }
  .buttonInterested,
  .pricing-table th,
  .pricing-table td {
    font-size: 15px;
  }
}
/*Section extra services*/
.projectServicesSwiper,
.projectsWhy {
  padding-top: 50px;
}

.projectServicesSwiper .swiper-slide {
  padding: 80px 40px;
  width: 30%;
  height: auto;
}

.projectsWhy .swiper-slide {
  padding: 30px 0px 80px;
  width: 30%;
  height: auto;
}

.projectsWhy .swiper-slide .box .heading2 {
  background: var(--white);
  color: var(--darkGreyText);
  min-height: 250px;
  padding: 30px;
}

.projectsWhy .swiper-slide .boxText {
  padding: 30px;
}

.projectsWhy .swiper-slide .boxText p {
  background: rgba(0, 0, 0, 0.005);
}

.projectServicesSwiper .swiper-slide:nth-of-type(1),
.projectsWhy .swiper-slide:nth-of-type(1),
.projectServicesSwiper .swiper-slide:nth-of-type(5),
.projectsWhy .swiper-slide:nth-of-type(5) {
  background: var(--lightGrey);
  width: 40%;
}

.projectServicesSwiper .swiper-slide:nth-of-type(2),
.projectsWhy .swiper-slide:nth-of-type(2) {
  background: var(--mediumGray);
  color: var(--white);
}

.projectServicesSwiper .swiper-slide:nth-of-type(3),
.projectsWhy .swiper-slide:nth-of-type(3) {
  background: var(--darkGrey);
  color: var(--white);
}

.projectServicesSwiper .swiper-slide:nth-of-type(4),
.projectsWhy .swiper-slide:nth-of-type(4) {
  background: var(--orange);
  color: var(--white);
  width: 40%;
}

.projectsWhy .swiper-slide:nth-of-type(1),
.projectsWhy .swiper-slide:nth-of-type(4) {
  width: 30%;
}

.projectServicesSwiper ul {
  margin-top: 50px;
  list-style: circle;
  padding-left: 35px;
}

.projectServicesSwiper ul li {
  background: rgba(0, 0, 0, 0.005);
  margin-bottom: 20px;
}

.projectServicesSwiper ul li:last-child {
  margin-bottom: 0px;
}

.projectServicesSwiper .swiper-slide:nth-of-type(2) .heading2,
.projectServicesSwiper .swiper-slide:nth-of-type(3) .heading2,
.projectServicesSwiper .swiper-slide:nth-of-type(4) .heading2 {
  color: var(--white);
  background: rgba(0, 0, 0, 0.005);
}

.scrollMore {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 50px;
  color: var(--orange);
  display: block;
  position: absolute;
  right: 40px;
  top: -50px;
}

@media screen and (max-width: 1399px) {
  .projectServicesSwiper .swiper-slide {
    padding: 50px;
    width: 40%;
  }
  .projectsWhy .swiper-slide .box .heading2 {
    min-height: 180px;
  }
  .projectsWhy .swiper-slide .boxText {
    padding: 30px;
  }
  .projectServicesSwiper .swiper-slide:nth-of-type(4),
  .projectsWhy .swiper-slide:nth-of-type(4) {
    background: var(--orange);
    color: var(--white);
    width: 50%;
  }
  .projectsWhy .swiper-slide:nth-of-type(1),
  .projectsWhy .swiper-slide:nth-of-type(4) {
    width: 40%;
  }
  .projectServicesSwiper .swiper-slide:nth-of-type(1),
  .projectsWhy .swiper-slide:nth-of-type(1) {
    background: var(--lightGrey);
    width: 50%;
  }
}
@media screen and (max-width: 1199px) {
  .whyBox .whyText {
    font-size: 20px;
  }
  .projectsWhy .swiper-slide {
    width: 60% !important;
  }
}
@media (max-width: 991px) {
  .projectServicesSwiper .swiper-slide,
  .projectsWhy .swiper-slide {
    width: 60% !important;
  }
}
@media screen and (max-width: 575px) {
  .projectServicesSwiper .swiper-slide,
  .projectsWhy .swiper-slide {
    width: 90% !important;
  }
}
/* START OF PROJECTS PAGE 
======================  */
.filtersProject {
  position: relative;
  z-index: 1000;
}

.filter-buttons {
  margin: 20px 0;
}

.filter-btn {
  color: var(--orange);
  margin-right: 80px;
  margin-bottom: 20px;
}

.filter-btn.eyeButton::after {
  opacity: 0;
}

.filter-btn.eyeButton.active::after {
  opacity: 1;
  background: var(--orange);
}

.filter-btn:last-child {
  margin-right: 0px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin: 0 auto;
}

.project {
  margin-bottom: 30px;
  border-radius: 8px;
  display: none; /* αρχικά κρυμμένα */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.project.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.loadMoreBtn {
  color: var(--darkGreyText);
  background: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: underline;
  margin: auto;
}

.loadMoreBtn:hover {
  color: var(--orange);
}

.project-name {
  color: var(--darkGreyText);
}

.project-location {
  font-size: 16px;
  color: var(--mediumGray);
}

.project-photo img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1499px) {
  .projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  .projects {
    display: flex;
    flex-wrap: wrap;
    z-index: unset;
  }
  .project {
    width: calc(50% - 15px);
  }
  .filtersProject {
    z-index: unset;
  }
  .filter-btn {
    margin-right: 60px;
  }
}
@media screen and (max-width: 575px) {
  .project {
    width: 100%;
  }
}
/*
.project-link {
    flex-wrap:wrap;
}*/
.websiteLogo {
  max-height: 40px;
  max-width: 50%;
}

/* END OF PROJECTS PAGE */
/* START OF CONTACT PAGE  */
.contactForm .form-control {
  border: 2px solid var(--darkGrey);
  padding: 8px 15px;
}

form .form-check-input {
  border: 2px solid var(--darkGrey) !important;
}

.form-check-label {
  font-weight: 400;
  font-size: 14px;
  display: inline;
  width: 80%;
  padding: 0px 0px 0px 10px;
}

.contactForm .form-control::-moz-placeholder {
  font-size: 16px;
  font-weight: 700;
  color: var(--mediumGray);
}

.contactForm .form-control::placeholder {
  font-size: 16px;
  font-weight: 700;
  color: var(--mediumGray);
}

.field-validation-valid {
  display: none;
  color: red;
}

.field-validation-error {
  display: block;
  color: red;
  text-align: left;
  font-size: 12px;
  padding-top: 5px;
  padding-left: 18px;
}

.field-validation-error:empty {
  display: none;
}

.asterisk span {
  display: inline;
  font-size: 14px;
}

.form-agree label {
  display: inline;
  color: var(--black);
  text-transform: unset;
}

.form-agree .field-validation-error {
  display: inline-block;
}

.form-agree a {
  text-decoration: underline;
  padding-bottom: 0px;
}

.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;
}

/* END OF CONTACT PAGE  */
/* START OF LANDING PAGE  
=============================*/
.landingServices ul,
.landingSelectionWebsite ul {
  padding-left: 0;
  list-style: none;
}

.landingServices ul li {
  margin-bottom: 15px;
  color: var(--mediumGray);
}

.landingServices ul li:last-child {
  margin-bottom: 15px;
}

.landingSelectionWebsite h3,
.landingSelectionWebsite .h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.landingSelectionWebsite .firstRow {
  background: var(--mediumGray);
  color: var(--white);
  padding: 60px 30px;
}

.landingSelectionShine .firstRow {
  background: var(--mediumGray);
  color: var(--darkGreyText);
  padding: 120px 50px 120px;
}

.landingSelectionShine .whyBox {
  height: 180px;
  margin-bottom: 50px;
}

.landingSelectionWebsite .secondRow {
  background: var(--darkGreyText);
  color: var(--white);
  padding: 60px 30px;
}

.landingSelectionShine .secondRow {
  background: var(--darkGreyText);
  color: var(--orange);
  padding: 120px 50px 120px;
}

.landingSelectionWebsite .ThirdRow picture img,
.landingSelectionShine .ThirdRow picture img,
.ThirdRow picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.landingSelectionWebsite ul li {
  margin-bottom: 15px;
  background: rgba(0, 0, 0, 0.005);
}

.landingSelectionWebsite ul li:last-child {
  margin-bottom: 0;
}

.whyBox .number {
  color: var(--white);
  background: rgba(0, 0, 0, 0.005);
  margin-bottom: 10px;
}

.whyBox .whyText {
  font-size: 28px;
  background: rgba(0, 0, 0, 0.005);
}

@media (max-width: 1199px) {
  .landingSelectionWebsite .ThirdRow picture img,
  .landingSelectionShine .ThirdRow picture img {
    height: 300px;
  }
  .landingSelectionShine .firstRow,
  .landingSelectionShine .secondRow {
    padding: 60px 50px 0px;
  }
  .landingSelectionShine .whyBox {
    height: 120px;
    margin-bottom: 30px;
  }
  .landingSelectionShine .whyBox .whyText {
    font-size: 20px;
  }
}

.landingTextOnly ol {
        list-style-position: inside;
}
.landingTextOnly .number {
    color: var(--orange);
    background: rgba(0, 0, 0, 0.005); 
    font-size: 18px;
}
@media (min-width: 768px) {
    .listAsBoxes {
        display:flex;
        flex-wrap:wrap;
    }
    .listAsBoxes .list-item{
        width:50%;
        font-size: 24px;
    }
}
@media (max-width: 767px) {
       .listAsBoxes {
        text-align:center   
       }
}
.boxes {
	text-align:center;
	}
.boxes .box {
	margin-top:20px;
	margin-bottom:20px;
}
@media (min-width: 576px) {
    .boxes {
        display:flex;
        flex-wrap:wrap;
    }
    .boxes .box {
        width:50%;
    }
}
@media (min-width: 992px) {
    .boxes .box {
        width:33.333%;
    }
}

.icon {	
	margin:auto;
	padding:20px;
	text-align:center;
	width:100px;		
	height:100px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px; /* future proofing */
	-khtml-border-radius: 50px; /* for old Konqueror browsers */					
	background-color:var(--orange);
    display: flex;
    align-items: center;
    margin-bottom:8px;
}
.icon img {
	margin:auto;
    filter: brightness(0) invert(1);
        height: 50px;
}
/* END OF LANDING PAGE  
===================================*/
/* START  */
.CareersList h3,
.CareersList .h3,
.CareersList .heading3 {
  color: var(--darkGreyText);
}

.jobPositionBox img {
  height: 50px;
}

/* === POPUP === */
#popupModal .modal-dialog {
  max-width: 550px;
  width: 90%;
  margin: 20px auto;
}

#popupModal .modal-content {
  border-radius: 0;
  background-color: var(--whiteDark);
}

#popupModal .img {
  height: 300px;
}

.modal-header {
  border: none;
}

.pageNotFound a {
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
}

/*BLOG
    =================    */
@media screen and (min-width: 1400px) {
  .blog-posts-list h2,
  .blog-posts-list .h2 {
    font-size: 24px;
  }
}
.post-box .img-holder {
  margin-bottom: 10px;
}

.post-box .date,
.blog-post-page .date {
  font-size: 14px;
  font-style: italic;
}

.blog-post-page .date {
  margin-bottom: 30px;
}

ul.tags {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.tags .tag {
  background: none;
  background-color: var(--lightGrey);
  border-radius: 50rem !important;
  font-size: 12px;
  font-weight: 500;
  color: var(--darkGrey);
  padding: 8px 16px;
  display: inline-block;
  margin: 0 6px 10px 0;
}

/*categories*/
ul.tags.colored {
  margin-top: 20px;
  margin-bottom: 50px;
}

.tags.colored .tag {
  background-color: var(--orange);
}

.blog-posts-list .tags.colored .tag {
  font-size: 16px;
}

.tags.colored:not(.asMenu) .tag a {
  color: var(--white);
}

.tags-group-title {
  font-weight: 600;
  padding-bottom: 10px;
}

.tags-group-title.smaller {
  font-size: 14px;
}

/*categories asMenu*/
.tags.asMenu .tag {
  background: none;
  border-radius: 0px;
  padding: 0px;
  margin: 0 40px 10px 0;
  position: relative;
  font-family: var(--fontGeologica);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--darkGrey);
  letter-spacing: 1.8px;
  padding-bottom: 8px;
  height: auto;
  text-align: left;
  position: relative;
  transition: var(--transition3s);
}

.tags.asMenu .tag a {
  color: var(--orange);
}

.tags.asMenu .tag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
  background-color: var(--orange);
  transition: 0.3s ease;
}

.tags.asMenu .tag.active::after,
.tags.asMenu .tag:hover::after {
  left: 0;
  transform: translate(0);
  opacity: 1;
  width: 70%;
}

.sidebar-categories .tags.asMenu .tag {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .blog-post-page .leftBody .heading1 {
    position: fixed;
  }
}
.blog-post-page h3,
.blog-post-page .h3 {
  color: var(--darkGreyText);
}

.blog-post-page ul {
  margin-bottom: 20px;
}

.blog-post-page .colImg {
  padding-bottom: 15px;
}

.blog-post-page .post-categories {
  margin-top: 40px;
}

.blog-post-page .post-categories .tags {
  margin-top: 0px;
}
.blog-posts-list .pagination ul {
  list-style: none;
  display: flex;
  gap: 7px;
}
.blog-posts-list .pagination ul li.active a {
  color: var(--mediumGray);
  text-decoration: underline;
}

.prevNextWrap {
  display: flex;
  padding-top: 30px;
  font-weight: 600;
}

.prevNextWrap a {
  color: var(--dark-color);
  text-decoration: none;
  /*  text-transform: uppercase;*/
  display: flex;
}

.prevNextWrap .next:after,
.prevNextWrap .prev:before {
  content: "";
  position: relative;
  width: 20px;
}

.prevNextWrap .next:after {
  background: url(/images/arrow-right.svg) no-repeat right center;
  padding-right: 20px;
}

.prevNextWrap .prev:before {
  background: url(/images/arrow-right.svg) no-repeat right center;
  padding-left: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

@media (min-width: 576px) {
  .prevNextWrap .next {
    margin-left: 50px;
  }
}