/* USER VARIABLES SECTION */

:root {
	--accent: #006A32;
	--text: #3C3C3B;
	--regular-text: 18px;
	--lineheight: 22px;
	--userfont: "Segoe UI", sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--desktop: 100 / 1920;
	--mobile: 100 / 440;

}



/* FONTS LOAD SECTION */








/* GENERAL CSS SETTINGS */

.citrus-regular {
	font-family: "citrus-gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}

::placeholder { color: #C5D1FF; }
::selection { background-color: #E5FFE9; color: #000000; }
input, textarea { outline: none; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: normal;
	position: relative;
	box-sizing: border-box;
	margin: 0 auto;
	background: #fff;
	font-weight: 400;
	font-optical-sizing: auto;
  font-style: normal;
}


ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	padding: 0;
}

/* USER STYLES */

a {
	transition: .3s ease-in-out;
	text-decoration: none;
	color: #000;
}

a:hover {
	color: #000;
}

body {
	max-width: 100%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.video-container {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.video-container video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: .5;
  z-index: 2;
  width: 100%;
  height: 100%;
}

main {
  padding-top: 100px;
}


.container {
  max-width: 1420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.site-logo {
  max-width: 243px;
  width: 100%;
  display: block;
  margin-bottom: 120px;
  position: relative;
  z-index: 3;
}


.site-logo img {
  width: 100%;
}


.main-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  align-items: flex-end;
}


.basic-content p {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 25px;
}

.basic-content {
  max-width: 670px;
  width: 100%;
}

.basic-content p:last-child {
  margin-bottom: 0;
}


.mail-block {
  width: max-content;
  max-width: 100%;
}

.mail-block a {
  padding: 13px 42px 8px 42px;
  border-radius: 30px;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 22px;
  font-family: 'citrus-gothic', sans-serif;
  font-weight: 400;
}


figure {
  margin: 0;
  height: 100%;
}

.white-line {
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/line-bg.svg) no-repeat;
  background-size: contain;
  width: 427.22px;
  height: 429.04px;
  z-index: 4;
}

.white-line p {
  font-family: 'citrus-gothic', sans-serif;
  font-size: 42px;
  line-height: 42px;
  position: absolute;
  transform: rotate(45deg);
  top: 145px;
  right: 0;
}

body {
  overflow: hidden;
  height: 100vh;
}
main {
  height: 100vh;
}

@media (max-width: 1600px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .main-content {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  main {
    padding-top: 80px;
  }

  .site-logo {
    max-width: 173px;
    margin-bottom: 44px;
  }

  .basic-content p {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 22px;
  }

  .main-content {
    flex-direction: column;
    gap: 74px;
    align-items: center;
  }

  .white-line {
    height: 214px;
    width: 213px;
  }

  .white-line p {
    font-size: 20px;
    line-height: 20px;
    top: 76px;
  }

  body {
    overflow: auto;
  }
}
