:root {
  --main-font: 'Poppins', sans-serif;

  --dark-green-color: #13241e;
  --green-color: #013420;
  --light-green-color: #327653;
  --lime-color: #6bcd83;
  --white-color: #f1f1f1;
  --black-color: #2d2d2d;
}


*,*::after,*::before {
  box-sizing: border-box;
}

html {
  font-family: var(--main-font);
  font-size: 1.5625vw;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white-color);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media screen and (min-width: 1100px) {
  html {
    font-size: 0.694444vw
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 0.57vw
  }
}

body {
  background: var(--black-color);
  font-size: 1.6rem;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
}

img {
  width: 100%;
  height: 100%;
}

a {
  color: var(--lime-color);
  text-decoration: none;
}

[hidden], .hidden {
	display: none;
}

.container {
  display: block;
  max-width: 81.94444vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }
}

.btn {
  padding: 1rem 2rem;
  border: 1px solid var(--lime-color);
  border-radius: 6rem;
  transition: background .4s, color .4s;
}
.btn:hover {
  background: var(--lime-color);
  color: var(--white-color);
}

.custom-color {
  color: var(--lime-color)
}

/* Header start */
header {
  transition: background .4s, position .4s;
}
header.active {
  background: var(--white-color);
  width: 100%;
  position: fixed;
  top: 0;
  padding: 1rem 0;
  z-index: 50;
}
header.fixed {
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-size: 3rem;
  font-weight: bold;
}
.header-left {
  flex-basis: 50%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3rem;
}
.header-burger {
  width: 100%;
  max-width: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  cursor: pointer;
  z-index: 150;
}
.header-burger span {
  background: var(--light-green-color);
  width: 100%;
  height: 2px;
}
.header-burger.active span {
  transition: transform .4s, opacity .4s;
}
.header-burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.header-burger.active span:nth-child(2) {opacity: 0;}
.header-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}
.header-menu {
  background: var(--black-color);
  position: fixed;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: opacity .4s, z-index .4s;
}
.header-menu.active {
  opacity: 1;
  z-index: 100;
}
.header-menu .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 100%;
}
@media only screen and (max-width: 768px) {
    .header-menu .container {
        flex-direction: column;
    }
}
.menu-list {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  border-right: 1px solid var(--white-color);
  height: 100%;
}
@media only screen and (max-width: 768px) {
    .menu-list {
        border-right: none;
    }
}
.menu-list a {
  width: max-content;
  position: relative;
  font-size: 4rem;
  font-weight: bold;
}
.menu-list a::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--light-green-color);
  transition: width .4s;
}
.menu-list a:hover::after {
  width: 100%;
}
.address-list {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
}
.address-list .item-address {
  width: 100%;
  max-width: 50rem;
  padding: 3rem 5rem;
}
/* Header end */


/* Hero start */
.s-hero {
  width: 100%;
  height: 100vh;
  padding: 4rem 0 0 0;
}
@media only screen and (max-width: 768px) {
    .s-hero {
       height: max-content;
    }
}
.s-hero .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-title {
  font-size: 6rem;
  text-align: center;
  color: var(--lime-color);
}
.hero-dsc {
  position: relative;
  font-size: 2rem;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}
.hero-dsc::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;bottom: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: var(--white-color);
}
.hero-dsc.end::after {
  display: none;
}
.hero-img {
  position: relative;
  display: flex;
}
.hero-img .dod {
  position: absolute;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--white-color);
  animation: dodInit 1.5s linear 1;
}
@keyframes dodInit {
  0% {
    width: 25rem;
    height: 25rem;
    opacity: 1;
  }
  50% {
    width: 10rem;
    height: 10rem;
    opacity: .5;
  }
  100% {
    width: .5;
    height: .5;
    opacity: .3;
  }
}
.hero-img .dod::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-color);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  opacity: 0.3;
  transition: width .4s, height .4s, opacity .4s;
  animation: pulse 1.5s infinite cubic-bezier(0.93, 0.22, 0.29, 0.92);
}
@keyframes pulse {
  0% {
    width: .5rem;
    height: .5rem;
    opacity: 0;
  }
  50% {
    width: .7rem;
    height: .7rem;
    opacity: .4;
  }
  100% {
    width: 1rem;
    height: 1rem;
    opacity: .8;
  }
}
.hero-img .dod.vienna {
  top: 39%;
  left: 52.1%;
}
.hero-img .dod.lviv {
  top: 35.7%;
  left: 52.8%;
}
.hero-img .dod.berlin {
  top: 34.6%;
  left: 49.8%;
}
.hero-img img {
  object-fit: contain;
  object-position: top;
  max-height: 85vh;
  filter: hue-rotate(295deg);
}
/* Hero end */

/* Who we start */
.s-who-we {
  height: 100vh;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .s-who-we {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .s-who-we {
    height: max-content;
  }
}
.who-we__left {
  background: var(--white-color);
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: var(--black-color);
}
@media only screen and (max-width: 991px) {
  .who-we__left {
    padding: 3rem 0;
  }
}
.who-we__title {
  width: 100%;
  max-width: 40rem;
  font-size: 2rem;
  text-align: left;
}
.who-we__sub-title {
  width: 100%;
  max-width: 40rem;
  font-size: 2.5rem;
  font-weight: 500;
}
.who-we__dsc {
  width: 100%;
  max-width: 40rem;
}
.who-we__right {
  position: relative;
  flex-basis: 60%;
  background: linear-gradient(320deg, var(--dark-green-color), var(--lime-color));
}

.who-we__right-icon {
  width: 100%;
  height: 100%;
  display: flex;
}
.who-we__right-icon svg {
  width: 100%;
  height: 100%;
}
.who-we__right-icon.animation svg circle {
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
  animation: SvgAnimation 2s forwards;
}
@keyframes SvgAnimation {
  0% {
    stroke-dashoffset: 2000;
    stroke-dasharray: 2000;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0;
  }
}
/* Who we end */

/* What we do start */
.s-we-do {
  position: relative;
  height: max-content;
  padding: 15rem 0 5rem 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .s-we-do {
    padding: 10rem 0 5rem 0;
  }
}
.we-do__circle {
  position: absolute;
  top: -55%;
  left: -40%;
  width: 100%;
  height: 100%;
  background: linear-gradient(20deg, #34a853, #1e1e1e);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  opacity: .5;
}
.we-do__circle::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background-color: var(--black-color);
  border-radius: 50%;
  z-index: 0;
}
.we-do__circle-next {
  position: absolute;
  top: -80%;
  left: 30%;
  width: 100%;
  height: 100%;
  background: linear-gradient(20deg, #34a853, #1e1e1e);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  opacity: .5;
}
.we-do__circle-next::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background-color: var(--black-color);
  border-radius: 50%;
  z-index: 0;
}
.we-do__wrap {
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 991px) {
  .we-do__wrap {
    flex-direction: column;
    gap: 10rem;
  }
}
.we-do__left {
  flex-basis: 40%;
}
@media only screen and (max-width: 991px) {
  .we-do__left {
    display: flex;
    justify-content: center;
  }
}
.we-do__area {
  position: relative;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.we-do__title {
  width: max-content;
  background: var(--light-green-color);
  font-size: 4rem;
  font-weight: bold;
}
.we-do__right {
  position: relative;
  flex-basis: 60%;
  z-index: 5;
}
.we-do__register {
  display: flex;
  gap: 1rem;
}
.we-do__register span {
  font-weight: bold;
}
.we-do__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
}
.we-do__grid .grid-item {
  background: #eee;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1rem;
  color: var(--dark-green-color);
}
.we-do__grid .item-title {
  position: relative;
  font-size: 2.5rem;
  z-index: 1;
}
.we-do__grid .item-dsc {
  position: relative;
  z-index: 1;
}
/* What we do end */

/* Career start */
.s-career {
  position: relative;
  height: max-content;
  padding: 10rem 0;
}
.career-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10rem;
}
.career-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.career-area__lines {
  flex-basis: auto;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.career-area__text {
  flex: 2;
  max-width: 50rem;
}
.career-line,
.career-line__next {
  position: relative;
  width: 5rem;
  height: 20rem;
  background: linear-gradient(20deg, #34a853, #1e1e1e);
  border-radius: 50%;
}
.career-title {
  font-size: 4rem;
  font-weight: bold;
}
.career-line__next {
  transform: translateX(5px) translateY(10px) rotate(-30deg);
}
/* Career end */


/* Footer start */
.footer {}
.footer-wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 2rem;
}
.footer-area {
  display: grid;
}
@media only screen and (max-width: 991px) {
  .footer-area {
    flex-direction: column;
    gap: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer-area {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.footer-area__menu {
  grid-template-rows: auto 1fr;
  grid-gap: 2rem;
}
.footer-area__address {
  grid-template-columns: repeat(2,1fr);
  grid-gap: 2rem;
}
.footer-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.footer-logo {
  grid-column: span 2;
}
.footer-logo a {
  font-size: 6rem !important;
  font-weight: bold;
}
.footer-item a {
  font-size: 1.4rem;
  transition: color .4s;
}
.footer-item a:hover {
  color: var(--white-color);
}
.item-address {
  padding: 2rem;
  border: 1px solid var(--light-green-color);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.item-address:first-child {
  grid-column: span 2;
}
@media only screen and (max-width: 991px) {
  .item-address {
    width: 100%;
  }
}
.item-address:hover {
  background: var(--light-green-color);
  color: #fff;
  transition: background .4s, color .4s;
}
.item-address .city {
  font-size: 2rem;
  font-weight: bold;
}
.footer-copyright {
  padding: 2rem 0 1rem 0;
  margin: 1rem 0 0 0;
  border-top: 1px solid var(--light-green-color);
  font-size: 1.4rem;
}
/* Footer end */

/* Custom Modal */
#modal-container {
	background: var(--black-color);
	border-radius: 2rem;
	border: none;
	padding: 2rem;
  left: -100%;
}
#modal-container form label {
	font-size: 1.6rem;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
}
#modal-container input,
#modal-container textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
}
#modal-container textarea {
	max-height: 8rem;
}
#modal-container input[type="submit"] {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	background: var(--light-green-color);
	color: #fff;
	padding: 1.5rem 2.4rem;
	border-radius: 1rem;
	cursor: pointer;
	border: none;
	transition: background .4s, transform .4s, border-color .4s;
}
#modal-container input[type="submit"]:hover {
	transform: scale(0.9);
}
#modal-close {
	background-color: transparent;
    filter: invert(1);
}