@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
:root{
	--orange : #FF6900;
	--dark : #3C3A3C;
	--cream : #FFF;
	--rem-one: 1rem;
	--font-15: 0.938rem;
}
body {
    position: relative;
    color: var(--dark);
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
    margin: 0;
	direction: ltr;
	min-width: 320px;
}
body,html{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-moz-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:focus {
    outline: none;
}
a {
    -webkit-transition: linear .25s;
    -o-transition: linear .25s;
    transition: linear .25s;
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    width: auto \9;
    height: auto;
    vertical-align: middle;
    border: 0;
    -ms-interpolation-mode: bicubic;
}
ul , ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
h1, h2, h3, h4, h5, h6 , p {
    margin: 0;
    font-weight: 300;
}
a,span{
	display: inline-block;
}
label {
    display: block;
}
::-webkit-scrollbar {
  width: .6rem;
}
::-webkit-scrollbar-track {
  background: #F1F1F1; 
}
::-webkit-scrollbar-thumb {
  background: var(--dark); 
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dark); 
}
form, input, textarea, button, fieldset, select {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    font-family: inherit;
	background-color: transparent;
}
.logo {
  display: block;
}
.post__letter {
	font-size: 1.063rem;
    text-align: center;
    padding: 5.5rem 1.25rem;
}
.post__letter > img, .post__letter > svg {
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 0.938rem;
}
.width__fit{
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.parent__space > *:not(:last-child) {
    margin-right: 1rem;
}
.mr__top {
    margin-top: 10rem;
}
.mr__top_2 {
    margin-top: 5rem;
}
.pd__top_2 {
    padding-top: 5rem;
}
.m__lr{
	margin-left: auto;
	margin-right: auto;
}
.orange{
	color: var(--orange);
}
.fat{
    font-weight: 700;
}
.pointer{
    cursor: pointer;
}
.d__flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.d__space{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.d__acenter{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.JV--p--abs{
    position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.background__image{
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.item__hover {
    position: relative;
    z-index: 1;
}
.item__hover:hover {
    color: var(--cream);
}
.item__hover:before {
    width: 0;
    height: 100%;
    background-color: var(--orange);
    -webkit-transition: width .35s ease-in-out;
    -o-transition: width .35s ease-in-out;
    transition: width .35s ease-in-out;
    z-index: -1;
}
.item__hover:hover::before {
    width: 100%;
}
.section__header {
    max-width: 43.75rem;
    margin: 0 auto 2.5rem;
    padding-left: 0.938rem;
    padding-right: 0.938rem;
    text-align: center;
}
.section__header h2 {
    font-size: 1.813rem;
    font-weight: 700;
    line-height: 2.625rem;
    margin-bottom: .75rem;
}
.section__header h2:after {
    background-color: var(--orange);
    width: 3.125rem;
    height: 0.063rem;
    display: block;
    content: '';
    margin: 0.5rem auto 0;
}
.section__header p {
    color: #6A7076;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 25rem;
    margin: 0 auto;
}
.pcb:before , .pca:after{
    position: absolute;
    content: '';
}
.tlb:before,.tla:after{
	top: 0;
    left: 0;
}
.header {
    position: relative;
	padding: 2.5rem 1.25rem 0 1.25rem;
}
.header .social {
    min-width: 11.313rem;
}
.veritas__client {
    position: relative;
    height: 100vh;
}
.veritas__message {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 35rem;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    opacity: 0;
}
.veritas__desc {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--dark);
    font-weight: 300;
    margin-top: -1rem;
}
.animate .veritas__message {
	-webkit-animation: w--logo 1.5s ease-in 1.5s forwards;
	animation: w--logo 1.5s ease-in 1.5s forwards;
}
@-webkit-keyframes w--logo {
	50% {opacity: .5;}
	75% {opacity: .75;}
	100% {opacity: 1;top: 42%;}
}
@keyframes w--logo {
	50% {opacity: .5;}
	75% {opacity: .75;}
	100% {opacity: 1;top: 42%;}
}
.email {
    background-color: var(--dark);
    color: var(--cream);
    letter-spacing: 0;
    font-size: 1rem;
    padding: 1rem 1rem;
    text-decoration: none;
    min-width: auto;
    border-radius: 3.125rem;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}
.email > svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: .5rem;
}
.email:hover {
    background-color: var(--orange);
}
.social > a {
    width: 2rem;
    height: 2rem;
}
.social > a:not(:last-child) {
    margin-right: 1.2rem;
}
.social a:hover {
    color: var(--orange);
}
.burger{
	display: none;
}
.menu{
	opacity: 0;
}
.animate .menu {
	-webkit-animation: w--menu--opacity 2s ease-in 0s forwards;
	animation: w--menu--opacity 2s ease-in 0s forwards;
}
@-webkit-keyframes w--menu--opacity {
  50% {
    opacity: .5;
  }
  100% {
	  opacity: 1;
  }
}
@keyframes w--menu--opacity {
  50% {
    opacity: .5;
  }
  100% {
	  opacity: 1;
  }
}
.menu li:not(:last-child) {
    margin-right: 2rem;
}
.menu li a {
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.063rem;
}
.menu li a:hover {
    color: var(--orange);
}
.menu li a:before {
    background-color: var(--orange);
    width: 0;
    height: 0.125rem;
    bottom: -0.313rem;
    left: 0;
    -webkit-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out;
}
.menu li a:hover::before {
    width: 50%;
}
.lang__switch {
    position: absolute;
    top: 60%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 1.063rem;
	margin-left: 1.25rem;
	opacity: 0;
}
.animate .lang__switch {
	-webkit-animation: switcher--top 1s ease-in 0s forwards;
	animation: switcher--top 1s ease-in 0s forwards;
}
@-webkit-keyframes switcher--top {
  100% {
    top: 50%;
    opacity: 1;
  }
}
@keyframes switcher--top {
  100% {
    top: 50%;
    opacity: 1;
  }
}
.lang__switch ul {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.lang__switch ul li {
    font-size: 1.188rem;
    font-weight: 700;
    text-align: center;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    border: 0.063rem solid var(--dark);
    text-transform: lowercase;
}
.lang__switch ul li:not(:last-child) {
	margin-bottom: 1rem;
}
.lang__switch ul li a:hover {
    color: var(--orange);
}
.lang__switch ul .lang-active {
    color: var(--orange);
    border-color: var(--orange);
}
.mouse {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
}
.mouse:before {
    content: '';
    position: relative;
    display: block;
    width: 0.063rem;
    height: 2.5rem;
    background-color: #9d9d9d;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.625rem;
}
.mouse span {
    position: relative;
    border: .125rem solid var(--dark);
    width: 2.5rem;
    height: 4.5rem;
    border-radius: 1.1875rem;
	-webkit-animation: m2 1s ease-in 0s infinite;
	animation: m2 1s ease-in 0s infinite;
}
@keyframes m2 {
  50% {
    transform: translateY(.5rem);
  }
  100% {
	transform: translateY(0);
  }
}
.mouse span:after {
    position: absolute;
    content: '';
    background-color: var(--orange);
    width: .5625rem;
    height: .5625rem;
    border-radius: .5625rem;
    top: .75rem;
    left: 50%;
    transform: translateX(-50%);
	-webkit-animation: m1 1s ease-in 0s infinite;
	animation: m1 1s ease-in 0s infinite;
}
@-webkit-keyframes m1 {
  50% {
    opacity: .75;
  }
  100% {
	opacity: 1;
  }
}
@keyframes m1 {
  50% {
    opacity: .75;
  }
  100% {
	  opacity: 1;
  }
}
.w__app {
    position: absolute;
    top: 60%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 1.25rem;
    opacity: 0;
    width: 5rem;
    height: 5rem;
}
.animate .w__app {
	-webkit-animation: switcher--top 1s ease-in 0s forwards;
	animation: switcher--top 1s ease-in 0s forwards;
}
/*
****company
*/
.company__inner {
    max-width: 68.75rem;
    margin: 0 auto;
}
.piece {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}
.piece__first {
    position: relative;
    background-image: url(/templates/veritas/icons/1467.jpg);
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
    background-color: var(--cream);
}
.piece__sec {
    background-color: var(--dark);
    padding: 4rem;
    -webkit-transition: background-color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
}
.piece__sec ul li:not(:last-child) {
    margin-right: 3.125rem;
}
.piece__sec ul li span,.piece__sec > p {
	color: var(--cream);
}
.piece__sec ul li span {
    font-size: 2.313rem;
    margin-bottom: 0.625rem;
}
.piece__first:before {
    background-color: rgba(0,0,0,.25);
    width: 100%;
    height: 100%;
	opacity: 0;
    -webkit-transition: opacity .25s ease-in-out;
    -o-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
}
.piece__sec:hover + .piece__first:before {
    opacity: 1;
}
.piece__sec ul li h4,.piece__sec > p {
    font-size: 0.938rem;
}
.piece__sec > p {
    font-weight: 300;
    line-height: 1.8;
    margin-top: 2.5rem;
}
.piece__sec > p + a {
    background-color: var(--cream);
    font-size: 1.063rem;
    margin-top: 2.125rem;
    padding: 0.625rem 1.25rem;
    display: inline-block;
}
/*
** map
*/
.map {
    background-color: #dfdfdf;
    padding: 9.375rem 1.25rem 3.75rem 1.25rem;
    margin-top: -6.25rem;
}
.map__inner {
    max-width: 61.25rem;
    margin: 0 auto;
}
.location {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-right: 3.125rem;
}
.office {
    margin-bottom: 1rem;
}
.office > lord-icon {
    width: 2.5rem;
    height: 2.5rem;
}
.office > h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-left: 0.5rem;
    letter-spacing: .05rem;
    margin-top: 0.3125rem;
}
.central__office {
    font-size: 1.0625rem;
    margin-bottom: 4rem;
}
.geo__code:before{
    position: relative;
    content: '';
    background-color: rgba(0,0,0,.5);
    width: 2rem;
    height: 0.00625rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
	transition: width .25s ease-out;
}
.geo__code:hover {
    color: var(--orange);
}
.geo__code:hover::before {
    width: 2.5rem;
    transition: width .25s ease-out;
}
.more__offices li {
    font-size: 1.0625rem;
}
.more__offices li:not(:last-child) {
    margin-bottom: 0.625rem;
}
.more__offices li a {
    display: inline-block;
}
.map__inner .greece {
	position: relative;
    width: 25rem;
}
.point {
	position: absolute;
	width: 3.125rem; 
	height: 3.125rem; 
	border-radius: 3.125rem; 
}
.point__1{
    top: 52%;
    left: 28%;
}
.point__2 {
    top: 52%;
    left: 49%;
}
.dot {
	position: absolute;
    width: 0.938rem;
    height: 0.938rem;
    background-color: var(--orange);
    border-radius: 0.625rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.ring {
    width: 3.125rem;
    height: 3.125rem;
    border: 0.125rem solid var(--orange);
    border-radius: 1.563rem;
    -webkit-animation: heart 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0;
}
@-webkit-keyframes heart {
    0% {-webkit-transform: scale(.1, .1); opacity: 0;}
    50% {opacity: 1;}
    100% {-webkit-transform: scale(1, 1); opacity: 0;}
}
/*team*/
.ground {
    max-width: 73.75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.person {
	-ms-flex-preferred-size: 32.333333%;
	flex-basis: 32.333333%;
	margin: 0.5%;
	background-color: #f9f9f9;
	padding: 3rem 1.5rem;
	border: 0.00625rem solid #d7d7d7;
}
.person lord-icon {
    width: 2.7rem;
    height: 2.7rem;
    margin-left: -0.5rem;
    margin-bottom: 0.625rem;
}
.person h2 {
    font-size: 1.313rem;
}
.person p {
    color: #6A7076;
    font-size: 0.938rem;
    line-height: 1.5;
    margin-top: 0.625rem;
    min-height: 5.625rem;
}
.person p + a {
    background-color: var(--cream);
    width: 12.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    margin-top: 1.25rem;
    padding-left: 0.625rem;
}
/*services*/
.swiper-pagination {
    width: 100%;
    margin-top: 2rem;
}
.swiper-pagination-bullet {
    background-color: var(--dark);
    width: 1rem;
    height: 1rem;
    opacity: .8;
}
.swiper-pagination-bullet:not(:last-child) {
    margin-right: .9rem;
}
.swiper-pagination-bullet-active {
    background-color: var(--orange);
}
.service__tree {
    max-width: 81.25rem;
    padding: 0 1.25rem;
}
.service__box {
	position: relative;
	background-color: var(--dark);
	color: var(--cream);
	padding: 4rem 1.9rem;
	text-align: center;
	border-radius: 0.375rem;
	-webkit-transition: background-color .25s ease-in-out;
	-o-transition: background-color .25s ease-in-out;
	transition: background-color .25s ease-in-out;
}
.service__box:hover {
    background-color: #1c1c1c;
}
.service__flex {
	-ms-flex-preferred-size: 31%;
	flex-basis: 31%;
	margin: 1%;
}
.service__box .point {
    top: 0.25rem;
    right: 0.25rem;
}
.service__front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.service__front span {
    background-color: var(--orange);
    font-size: 0.9375rem;
    width: 6.25rem;
    height: 1.875rem;
    line-height: 29px;
    margin: 0 auto;
    border-radius: 0.3125rem;
    -webkit-transition: background-color 500ms ease-in-out;
    -o-transition: background-color 500ms ease-in-out;
    transition: background-color 500ms ease-in-out;
}
.service__front h2 {
    color: var(--cream);
    font-size: 1.3125rem;
    line-height: 1.5;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    min-height: 3.938rem;
}
.service__front p {
    font-size: .9375rem;
    line-height: 1.35;
    min-height: 6.375rem;
}
.service__front a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--dark);
    color: var(--cream);
    font-size: 0.9375rem;
    margin: 3.125rem auto 0;
    padding: 0.5625rem 0.9375rem;
}
.dir__top__right {
    right: 0.5rem;
    top: 0.5rem;
}
@-webkit-keyframes heart {
    0% {-webkit-transform: scale(.1, .1); opacity: 0;}
    50% {opacity: 1;}
    100% {-webkit-transform: scale(1, 1); opacity: 0;}
}
/*
*** footer
*/
.foot__box , .foot__item {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}
.foot__box {
    padding: 5rem;
}
.foot__box__1 {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.foot__item svg {
    width: 2rem;
    height: 2rem;
}
.foot__box h2 {
    font-size: 2.313rem;
    margin-bottom: 1.25rem;
}
.foot__box__1 h2 {
    padding-left: 2.25rem;
}
.foot__box__2 h2 {
    color: var(--cream);
}
.foot__box__2 {
    background-color: var(--dark);
    background-image: url(../icons/line.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.foot__item {
    padding: 1.25rem 2.5rem;
}
.foot__item h3 {
    font-size: 1.063rem;
    letter-spacing: .15rem;
    margin-bottom: 1.25rem;
}
.foot__item h3 + ul li {
    font-size: 1rem;
    font-weight: 400;
}
.foot__item h3 + ul li a:hover , a.foot__item:hover {
    color: var(--orange);
}
.foot__item h3 + ul li:not(:last-child) {
    margin-bottom: 0.938rem;
}
.foot__item h3 + ul li a {
    display: inline-block;
}
.social ul li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 1rem;
}
/*
** subscribe
*/
.subscribe {
    margin-top: 5rem;
}
.subscribe form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.subscribe input, .subscribe label + button{
    color: var(--cream);
}
.subscribe input {
    font-size: 1.063rem;
    border: 0.063rem solid rgba(255,255,255,.35);
    padding: 1.063rem 1.25rem 1.063rem 1.25rem;
}
.letter__intro {
    color: var(--cream);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}
.letter__intro > span {
	display: inline-block;
}
.partner {
    font-size: 20px;
}
.partner a {
  color: #9facc7;
}
.partner a:hover {
  text-decoration: underline;
}
.subscribe form > label {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.subscribe form > label + button {
    width: 12.5rem;
    height: 2.813rem;
    font-size: 1.188rem;
    border: 0.063rem solid rgba(255, 255, 255, 0.15);
    border-radius: 1.875rem;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    letter-spacing: .05rem;
    font-weight: 300;
}
.subscribe label + button:hover {
    background-color: var(--cream);
    color: #191A1E;
}
.checkbox.style-e {
    display: inline-block;
    position: relative;
    padding-left: 3.125rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox.style-e input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox.style-e .checkbox__checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.375rem;
	width: 2.5rem;
	background-color: #cdced3;
	-webkit-transition: background-color 0.25s ease;
	-o-transition: background-color 0.25s ease;
	transition: background-color 0.25s ease;
	border-radius: 0.688rem;
	-webkit-box-shadow: inset -0.188rem 0 0.125rem -0.125rem rgb(0 0 0 / 30%);
	box-shadow: inset -0.188rem 0 0.125rem -0.125rem rgb(0 0 0 / 30%);
}
.checkbox.style-e .checkbox__checkmark:after {
    content: "";
    position: absolute;
    left: 0.188rem;
    top: 0.188rem;
    width: 1rem;
    height: 1rem;
    display: block;
    background-color: var(--orange);
    border-radius: 50%;
    -webkit-transition: left 0.25s ease;
    -o-transition: left 0.25s ease;
    transition: left 0.25s ease;
}
.checkbox.style-e .checkbox__body {
    color: var(--cream);
    line-height: 1.4;
    font-size: 0.938rem;
    -webkit-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
    transition: color 0.25s ease;
}
.checkbox__body > a {
    color: var(--color-1);
    display: inline-block;
}
.checkbox__body > a:hover {
    text-decoration: underline;
}
.checkbox.style-e input:checked ~ .checkbox__checkmark {
    background-color: #dfdfdf;
}
.checkbox.style-e input:checked ~ .checkbox__checkmark:after {
    left: 1.313rem;
    background-color: #4c9f4c;
}
.copyright {
    text-align: center;
    padding: 2rem;
}
.copyright a {
    display: inline-block;
    font-weight: 700;
    color: #35396a;
    text-decoration: underline;
}
.copyright a:hover {
    opacity: .7;
}