*,
::after,
::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased !important;
    -webkit-tap-highlight-color: transparent;
    outline: 0 !important;
}
html {
     font-family: "Montserrat", sans-serif;
	 scroll-behavior: smooth;
	 color: #0d2f58;

}
body {
	scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-size: 1em;
}
a,
body,
div,
form,
h1,
h2,
h3,
h4,
h5,
li,
p,
ul {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
    line-height: 1;
}
button,
input,
textarea {
    outline: 0 !important;
    -webkit-transition: 0.125s;
    -o-transition: 0.125s;
    transition: 0.125s;
    font-family: inherit;
}
input:active,
input[type="checkbox"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="text"]:focus {
    outline: 0 !important;
}
::-webkit-input-placeholder {
    color: #222;
}
::-moz-placeholder {
    color: #222;
}
:-moz-placeholder {
    color: #222;
}
:-ms-input-placeholder {
    color: #222;
}
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #0C0C0C;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #FECD04;
} 
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
path,
svg {
    -webkit-transition: 0.125s;
    -o-transition: 0.125s;
    transition: 0.125s;
}
a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 125ms;
    -o-transition: 125ms;
    transition: 125ms;
}
a:focus,
a:hover {
    text-decoration: none !important;
}
li,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
i {
    line-height: 100%;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
button {
    cursor: pointer;
    border: none;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.225s ease-out;
    -o-transition: 0.225s ease-out;
    transition: 0.225s ease-out;
    background-color: inherit;
    font-size: 1em;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 30px;
}
section {
	margin-bottom: 100px;
	position: relative;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



.rotating {
  -webkit-animation: rotating 10s linear infinite;
  -moz-animation: rotating 10s linear infinite;
  -ms-animation: rotating 10s linear infinite;
  -o-animation: rotating 10s linear infinite;
  animation: rotating 10s linear infinite;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
  z-index: 999999;
  position: absolute;
  top: 50px;
  right: 185px;
  
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: #ffffff;
  
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #ffffff;
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.backdrop {
  display: none;
	position: absolute;
	width: 100%;
	height: 200vh;
	background-color: #0c0c0c96;
	top: -100px;
	left: -10px;
  z-index: 999;
}
.menu-list {
  top: 0;
  right: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 100px 20px;
  margin: 0;
  background: #bbc9b1;
  list-style-type: none;
  transform: translateX(100%);
  transition: .3s;
  width: 250px;
  height: 100%;
  z-index: 9999;
}
.menu-item {
  display: block;
  padding: 8px;
  color: white;
  font-size: 18px;
  text-decoration: none;
}
.menu-item:hover {
  background: rgba(255,255,255,.2)
}
.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}

.fixed-body {
	overflow: hidden !important;
}
.output_message {
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 10px;
  border-radius: 20px;
}
.error {
  background: #c41f1f;
}
.success{
  background: #4cc44c;
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
	flex-direction: column;
    gap: 30px;
}

.logo {
	display: flex;
  width: fit-content;
}
.logo img {
	width: 220px;
}
.main {
  height: 100vh;
  position: relative;
  margin-bottom: 0;
}
.main video {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.logo,
.main_text {
  z-index: 3;
}
.subtitle {
  font-size: 18px;
  color: #fff;
  line-height: 150%;
}
.heading {
  font-size: 65px;
  color: #bbc9b1;
   font-family: "Playfair Display", serif;
   margin-bottom: 50px;
}
.main_text {
  padding-left: 150px;
}
.button {
  position: absolute;
  bottom: 2%;
  z-index: 20;
  right: 20%;
}
.arrow_down {
  position: absolute;
  left: 45%;
  top: 30%;
}
.sreda {
  
  background: url(/img/benefits.svg);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
  padding: 150px;
  background-position: bottom;
  background-repeat: no-repeat;

  padding: 150px;
}
.sreda_title {
  color: #bbc9b1;
  font-size: 42px;
  font-weight: 500;
  text-transform: uppercase;
  width: fit-content;
  line-height: 150%;
  
}
.sreda_title span {
  color: #2222229f;
   font-family: "Playfair Display", serif;
   font-size: 42px;
   font-weight: 200;
}
.sreda_items {
  display: flex;

}
.sreda_item {
display: flex;
width: 25%;
gap: 25px;
flex-direction: column;
  align-self: center;
  align-items: center;
}
.sreda_txt {
  text-align: center;
  line-height: 150%;
}

.sreda_img {
  width: 150px;
}
.sreda_img img {
width: 100%;
}
.usl_title {
color: #698f4b;
  font-size: 50px;
  font-family: 'Montserrat',Arial,sans-serif;
  line-height: 1.55;
  font-weight: 600;
  text-transform: uppercase;
}
.serv {
  background: url(/img/serv.svg);
  background-position: bottom;
  background-repeat: no-repeat;
}
.cilent_slider img {
	width: 100%;
}

.cilent_slider {
	width: 80%;
	overflow: hidden;
	margin: auto;
  padding: 50px;
  object-fit: cover;
  position: relative;
}

.slider_btn {
	background-color:transparent;
	color: #000;
	font-size: 20px;
	padding: 25px;
	border-radius: 50%;

}
.swiper-button-next::after, 
.swiper-button-prev::after {
	font-size: 20px;
}
.swiper-button-prev {
	left: 0px;
}
.swiper-button-next {
	right: 0px;
}
.proj {
  
  background: url(/img/proj_bg.svg);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
  padding: 150px;
  background-position: bottom;
  background-repeat: no-repeat;

  padding: 150px;
}
.proj .wrapper {
  max-width: 1100px;
}
.porject_grid {
  display: flex;
  flex-wrap: wrap;
}
.project {
  display: flex;
  width: 50%;
  padding: 15px;
  position: relative;
}
.project img {
  width: 100%;
}
.proj_title {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.55;
  font-weight: 400;
}
.proj_subtitle {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 400;
}
.proj_text {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.project:nth-child(1) {
  width: 40%;
}
.project:nth-child(2) {
  width: 60%;
}
.project:nth-child(3) {
  width: 60%;
}
.project:nth-child(4) {
  width: 40%;
}
.more {
  text-align: center;
}

.team {
  background: url(/img/team_bg.svg);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
  padding: 150px;
  background-position: bottom;
  background-repeat: no-repeat;
margin-bottom: 0;
  padding: 150px;
}
.team_item {
  display: flex;
  gap: 50px;
}
.team_item:nth-child(1) .name {
right: -100px !important;
}
.photo {
  max-width: 450px;
  position: relative;
}
.photo img {
  width: 100%;
}
.reverse {
  flex-direction: row-reverse;
}
.name {
  max-width: 200px;
  position: absolute;
  bottom: -100px;
  right: 0;
}
.reverse .name {
  right: auto;
  left: -100px;
}
.duty {
  color: #bbc9b1;
  font-size: 30px;
  line-height: 1.55;
  font-weight: 400;
  align-self: center;
}
.form_col {
	width: 50%;
	position: relative;
}
.more2 img {
  max-width: 130px;
}
#form {
  background: url(/img/contacts_bg.svg);
  background-color: #bbc9b1;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 100px;
  margin-bottom: 0;
}
.form {
	display: flex;
	flex-direction: column;
}
.cols {
	display: flex;
	gap: 50px;
}
#form .section_title {
	max-width: 60%;
}
.fg {
	color: #fff;
  border: 1px solid rgb(105, 143, 75);
  background-color: rgb(105, 143, 75);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  height: 52px;
  padding: 0 20px;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.form_col {
	padding: 100px 150px;
}


.footer_contact {
    display: flex;
	color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  gap: 50px;
  justify-content: center;
  
}
.footer_contact li {
	display: flex;
}

.t-submit {
  color: #fff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-family: Montserrat;
  cursor: pointer;
  background-color: transparent;
  padding: 15px;
  max-width: 200px;
  font-size: 18px;
  font-weight: 600;
}
.section_title {
  font-size: 42px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 120%;
  margin-left: 50px;
}
.section_title span {
   color: #2222229f;
   font-family: "Playfair Display", serif;
   font-size: 42px;
   font-weight: 200;
}
.fg::placeholder {
  color: #fff;
}
@media (min-width:768px) and (max-width: 1024px) {

html,
body {
	overflow-x: hidden;
}
.wrapper {
	max-width: 700px;
	margin: 0 auto;
}
.form_col {
	width: 100%;
}
.sreda_item {
  width: 46%;
}
.sreda_items {
  gap: 20px;
  flex-wrap: wrap;
}
.cilent_slider {
  width: 100%;
}
.team,
.proj {
  padding: 0;
}
.team_list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
#form .section_title {
max-width: 100%;

}
.footer_contact {
  flex-direction: column;
  gap: 20px;
}
}

@media (max-width:767.9px) { 

html,
body {
	overflow-x: hidden;
}
.wrapper {
	max-width: 700px;
	margin: 0 auto;
}
.logo img {
	width: 150px;
}
.main_text {
  padding-top: 100px;
   padding-left: 0;
 
}
.heading {
  font-size: 35px;

}
.subtitle {
  font-size: 13px;
}
.cap_garder_round  {
  max-width: 100px;
}
.arrow_down {
  width: 12px;
}
.sreda {
  padding: 0;
  padding-top: 50px;
}
.sreda_title span,
.sreda_title {
  font-size: 20px;
}
.sreda_items {
  flex-wrap: wrap;
  gap: 50px;
}
.sreda_item {
  width: 100%;
}
.usl_title  {
  font-size: 25px;
}
.cilent_slider {
  padding: 0;
  width: 100%;
  overflow: visible;
}
.slider_btn {
  top: auto;
  bottom: -50px;
}
.swiper-button-prev {
  left: 100px;
}
.swiper-button-next {
  right: 100px;
}
.proj {
  padding: 0;
}
.project:nth-child(1),
.project:nth-child(2),
.project:nth-child(3),
.project:nth-child(4) {
  width: 100%;
}
.more img {
  max-width: 100px;
}
.team {
  padding: 0;
  padding-bottom: 50px;
}
.duty {
    font-size: 12px;
  }
  .team_list {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
.name {
  max-width: 90px;
  bottom: -40px;
}
.team_item:nth-child(1) .name {
  right: -44px !important;
}
.reverse .name {
  left: -44px;
}
.more2 img {
  max-width: 80px;
}
#form {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.form_col {
  padding: 0;
  width: 100%;
}
.form {
  width: 100%;
  padding: 0 20px;
}
#form .section_title {
  padding: 0;
  margin: 0;
  font-size: 20px;
  max-width: 100%;
  margin-left: 20px;
}
.section_title span {
font-size: 20px;
}
.fg {
  height: 46px;
}
.footer_contact {
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer_contact li {
  justify-content: center;
}
.t-submit {
  font-size: 14px;
  text-transform: uppercase;
  margin: auto;
}
}




@media (max-width: 376px) {
	.wrapper {
		max-width: 350px;
		margin: 0 auto;
	}
}

@media (max-width: 330px) {
	.wrapper {
		max-width: 310px;
		margin: 0 auto;
	}
}