*,
::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;
}
#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}
.output_message {
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 10px;
  
}
.error {
  background: #c41f1f;
}
.success{
  background: #4cc44c;
}
/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323 !important;
  height: 2px;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) translate(0, 0px);;
  
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-child(3)
{
  transform: rotate(-45deg) translate(0, 2px)
}
#menuToggle input:checked ~ span:nth-child(2)
{
  transform: rotate(45deg) translate(0, -4px)
}
#menuToggle input:checked ~ span:nth-child(1)
{
  transform: rotate(45deg) translate(0, 0);
}
/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  height: 100vh;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}
nav[role="navigation"] {
	display: none;
}
.btn {
color: #0d2f58;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  border-width: 2px;
  border-radius: 0px;
  background-color: #ffffff;
  background-position: center center;
  border-color: #dfa269;
  border-style: solid;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  box-shadow: 5px 0px 20px 0px rgba(223,162,105,0.2);
  padding: 10px 20px;
  max-width: 220px;
  text-align: center;
}
.btn:hover {
	background-color: #dfa269;
    background-image: none;
    border-color: #dfa269;
 	color: #fff;
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
	flex-direction: column;
    gap: 30px;
}
header {
	z-index: 2;
  position: relative;
}
header .wrapper {
	flex-direction: row;
	 max-width: 1200px;
	 gap: 100px;
}
.logo {
	display: flex;
}
.logo img {
	width: 150px;
}
.menu {
	display: flex;
  align-self: center;
}
.menu ul {
	display: flex;
	gap: 120px;
}
.heading {
	font-size: 75px;
  font-weight: 600;
}

.main_img_1,
.main_img_2,
.circle_1,
.circle_2,
.circle_3 {
	position: absolute;
}
.circle_1 {
	top: -300px;
	left: -50px;
}
.circle_2 {
	top: -614px;
  left: -332px;
}
.main_text {
	z-index: 1;
	width: 40%;
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 200px 150px;
}
.main_img_1,
.main_img_2 {
	z-index: 2;
}
.main_img_1 {
	max-width: 380px;
  top: -150px;
  right: 240px;
}
.main_img_2 {
	max-width: 356px;
  bottom: -80px;
  right: 200px;
}
.subtitle {
	font-size: 18px;
	line-height: 150%;
}
.features {
	margin: 150px 0;
}
.feature_item {
	display: flex;
	gap: 50px;
}
.feature_img img {
	width: 500px;
}
.feature_desc {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-self: center;
}
.feature_desc_title {
	color: #0d2f58;
  font-size: 40px;
  font-weight: 500;
  line-height: 120%;
}
.feature_desc_text {
		color: #0d2f58;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
.circle_3 {
	top: 50px;
	right: -150px;
}
.wheel {
	position: relative;
	display: flex;
  margin: auto;

}
.wheel_item_heading {
	color: #0d2f58;
  font-size: 50px;
  font-weight: 400;
}
.wheel_item_heading span {
	font-size: 31px;
}
.wheel_item,
.wheel_circle {
	position: absolute;
	z-index: 2;
}
.wheel_circle {
	top: 100px;
	left: 140px;
	transform: rotate(220deg);
}
.wheel_item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 230px;
}
.wheel_item:nth-child(1) {
	top: 120px;
	left: 0;
}
.wheel_item:nth-child(2) {
	top: 180px;
	right: -50px;
}
.wheel_item:nth-child(3) {
	left: 0;
	bottom: 150px;
}
.wheel_item:nth-child(4) {
	right: 0;
	bottom: 100px;
}
.section_title {
color: #0d2f58;
  font-size: 55px;
  font-weight: 600;
  margin-left: 100px;
  z-index: 2;
}
.more {
	padding-top: 100px;
}
.reverse {
	flex-direction: row-reverse;
}
.feature_desc_text p{
	margin-bottom: 15px;
	line-height: 120%;
}
.realization_circle {
	position: absolute;
	width:240px;
	left: 700px;
	top: -50px;
	z-index: 1;
}
.realiz_item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	margin: auto;
	padding: 60px;
}
.realiz_title {
	color: #0d2f58;
  font-size: 34px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}
.realize_text,
.realize_text p {
font-size: 20px;
font-weight: 400;
  line-height: 120%;
  
}
.realize_text {
	width: 55%;
}
.realize_text p {
	margin-bottom: 10px;
}
.bg_grey {
	 background: rgb(154,157,162);
background: linear-gradient(156deg, rgba(154,157,162,1) 0%, rgba(205,208,215,1) 100%); 
	border-bottom-right-radius: 100px;

}
.bg_grey .realiz_title,
.bg_grey .realize_text,
.bg_grey .realize_text p {
color: #fff;
}
.clients {
	margin: 150px 0;
}
.cilent_slider,
.cilent_slider img {
	width: 100%;
}
.cilent_slider {
	width: 90%;
	overflow: hidden;
	margin: auto;
}

.slider_btn {
	background-color: rgb(232, 232, 232);
	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: 150px;
}
.swiper-button-next {
	right: 150px;
}
.partners_grid {
display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  row-gap: 50px;
  width: 80%;
  margin: auto;

}
.patner_logo {
	display: flex;
	width: 100%;
	gap: 20px;
	align-self: center;
	justify-content: center;
	
}
.patner_logo img {
	max-width: 100%;
	object-fit: contain;
	max-height: 60px;
}

.patner_logo:nth-child(3) img,
.patner_logo:nth-child(7) img,
.patner_logo:nth-child(9) img,
.patner_logo:nth-child(11) img,
.patner_logo:nth-child(12) img,
.patner_logo:nth-child(19) img,
.patner_logo:nth-child(18) img

{
max-height: 80px;
}
.section_title {
	margin-bottom: 50px;
}
.section_title span {
	font-size: 28px;
	font-weight: 500;
}
.partners .realization_circle {
	left: 160px;
	top: -50px;
	transform: rotate(170deg);
	max-width: 174px;
}
.img_col,
.form_col {
	width: 50%;
	position: relative;
}
.form {
	display: flex;
	flex-direction: column;
}
.phone_img,
.form_circle1,
.form_circle2 {
	position: absolute;
	top: -100px;
	right: 0;
}

.form_circle1 {
	top: 120px;
	left: 260px;
}
.phone_img {
  left: -100px;
  z-index: 1;
  top: -100px;
  width: 100%;
}
.cols {
	display: flex;
	gap: 50px;
}
#form .section_title {
	max-width: 60%;
}
.fg {
	color: rgb(97, 97, 97);
  border: 1px solid rgb(13, 47, 88);
  background-color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  padding: 0px 20px;
}
.form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.form_col {
	padding: 100px 150px;
}

footer {
	 background: rgb(160,164,170);
background: linear-gradient(90deg, rgba(160,164,170,1) 0%, rgba(179,183,201,1) 100%); 
width: 98%;
padding: 100px;
border-top-right-radius: 80px;
}
.footer_contact {
	color: #ffffff;
  font-size: 23px;
  font-weight: 400
}
.footer_contact li {
	margin-bottom: 10px;
}

.pin {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.t-submit {
  color: #ffffff;
  border-radius: 0px;
  font-size: 14px;
  background-color: #dfa269;
  padding: 0px 15px;
  display: block;
  width: 160px;
  font-weight: 400;
  height: 40px;
}


@media (min-width:768px) and (max-width: 1024px) {
header {
	
	z-index: 4;
}
html,
body {
	overflow-x: hidden;
}
	.wrapper {
		max-width: 700px;
		margin: 0 auto;
	}
.main_img_1,
.main_img_2 {
	display: none;
}
.feature_img img {
	width: 300px;
}
.wheel_item:nth-child(2) {
   right: 0px;
}
.main_text {
	margin: 200px 100px;
}
.realize_text {
	width: 100%;
}
.swiper-button-prev {
  left: 300px;
  bottom: -70px;
  top: auto;
}
.swiper-button-next {
	  right: 300px;
  bottom: -70px;
  top: auto;
}
.partners_grid {
	width: 100%;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
.cols {
	flex-direction: column;
}
.img_col {
	display: none;
}
.form_col {
	width: 100%;
}
footer {
	padding: 50px;
}
#form .section_title {
	max-width: 100%;
	margin-bottom: 0;
}
}

@media (max-width:767.9px) { 
header {
	display: none;
	z-index: 4;
}
html,
body {
	overflow-x: hidden;
}
	.wrapper {
		max-width: 700px;
		margin: 0 auto;
	}

.feature_img img {
	width: 300px;
}
.wheel_item:nth-child(2) {
   right: 0px;
}
.main_text {
	margin: 200px 100px;
}
.realize_text {
	width: 100%;
}
.swiper-button-prev {
  left: 300px;
  bottom: -70px;
  top: auto;
}
.swiper-button-next {
	  right: 300px;
  bottom: -70px;
  top: auto;
}
.partners_grid {
	width: 100%;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
.cols {
	flex-direction: column;
}
.img_col {
	display: none;
}
.form_col {
	width: 100%;
}
footer {
	padding: 50px;
}
#form .section_title {
	max-width: 100%;
	margin-bottom: 0;
}
nav[role="navigation"] {
	display: block;
	position: relative;
	z-index: 999;
}
.main_text {
	margin: 300px 0 60px 0;
}
.main_text {
	width: 60%;
}
.heading {
  font-size: 33px
}
.subtitle {
	font-size: 10px;
}
.btn {
	font-size: 10px;
	max-width: fit-content;
}
#menuToggle {
	top: 30px;
  left: 10px;
}
#menuToggle span {
	height: 1px;
	background: #dfa269;
}
#menuToggle input:checked ~ span {
	width: 23px;
	background: #dfa269;
}
#menuToggle input:checked .backdrop{
	display: none;
}
.backdrop {
	position: absolute;
	width: 100%;
	height: 200vh;
	background-color: #0c0c0c96;
	top: -100px;
	left: -10px;
}
#menu {
	height: 200vh;
	padding-left: 70px;
}
#menuToggle a {
	font-size: 16px;
}
.logo img {
	width: 100px;
}
#menuToggle .backdrop {
	display: none;
}
#menuToggle input:checked ~ .backdrop {
	display: block;
}
#menu li {
	font-size: 16px;
}
.fixed-body {
	overflow: hidden !important;
}

.main_img_1 {
	max-width: 220px;
  top: -24px;
  right: -50px;
}
.main_img_2 {
  max-width: 230px;
  bottom: 0;
  right: -100px;
}
.main_text {
	z-index: 5;
}
.feature_img img {
	width: 180px;
}
.feature_desc_title {
	font-size: 12px;
}
.feature_desc_text {
	font-size: 10px;
}
.feature_item {
	gap: 20px;
}
.circle_3  {
	width: 145px;
  top: 12px;
  right: -49px;

}
.more {
  padding-top: 0px;
}
.section_title {
	font-size: 25px;
	margin-left: 0px;
}
.wheel {
	width: 100%;
}
.wheel_img  {
	width: 100%;
}
.wheel_item_heading {
	font-size: 22px;
}
.wheel_item_heading span {
	font-size: 17px;
}
.wheel_item_text {
	font-size: 8px;
	width: 60%;
}
.realization_circle {
  width: 113px;
  left: auto;
  top: -50px;
  right: 50px;
}
.realiz_title {
	font-size: 16px;
}
.realize_text p {
	font-size: 10px;
}
.realiz_item {
 
  gap: 10px;

  padding: 20px;
}
.bg_grey {
	border-bottom-right-radius: 50px;
}
.wheel_item:nth-child(1) {
top: 30px;
left: 41px;
}
.wheel_item:nth-child(2) {
right: -120px;
top: 100px;
}
.wheel_item:nth-child(4) {
right: -150px;
bottom: 65px;
}
.wheel_circle {
top: 20px;
left: 30px;
width: 280px;
}
.cilent_slider {
	width: 100%;
}
.swiper-button-prev {
left: 100px;
bottom: -70px;
top: auto;
}
.swiper-button-next {
right: 100px;
bottom: -70px;
top: auto;
}
.partners .realization_circle {
  left: -54px;
}
.partners_grid {
	grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 20px;
}
.section_title span {
  font-size: 16px;
 
}
.form_col {
	padding: 40px;
}
 .img_col {
    display: block;
	width: 100%;
}
.cols {
	flex-direction: column-reverse;
}
.img_col {
	height: 20vh;
}
.form_circle1 {
  top: 0;
  left: 123px;
  width: 300px;
}
.form_circle2  {
	width: 100%;
	  left: 80px;
}
.phone_img {
  left: 0px;
  z-index: 1;
  top: 0;
  width: 100%;
}
.form {
	margin-top: 100px;
}
footer {
	width: 100%;
	padding: 50px 0 10px 0px;
}
.footer_contact {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.t-submit {
	margin: auto;
}
}
@media (max-width: 376px) {
	.wrapper {
		max-width: 350px;
		margin: 0 auto;
	}
}

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