/* mulish-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/mulish-v18-latin-900.woff2') format('woff2'); 
}
/* mulish-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/mulish-v18-latin-500.woff2') format('woff2'); 
}
/* mulish-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/mulish-v18-latin-600.woff2') format('woff2'); 
}
/* mulish-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/mulish-v18-latin-700.woff2') format('woff2'); 
}
/* mulish-800 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/mulish-v18-latin-800.woff2') format('woff2'); 
}
/* mulish-900 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/mulish-v18-latin-900.woff2') format('woff2'); 
}
:root {
  --white: #ffffff;
  --black: #000000;
  --grey: #666666;
  --darck-cyan:#1F1534;
  --blue:#458FF6;
  --white-grey:#7D7987;
}
::selection {
  background-color: var(--black);
  color: var(--white);
}
*,
*::before,
*::after {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: inline-block;
}
html {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  font-family: "Mulish";
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  height: 100%;
  line-height: 1.5;
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: 1366px;
  padding: 0 50px;
  margin: 0 auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.MyButton {
  width: 200px;
  height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;

  background: transparent;
  color: var(--blue);

  border: 2px solid var(--blue);
  border-radius: 55px;

  cursor: pointer;
  position: relative;
  overflow: hidden;

  transition: color .35s ease, border-color .35s ease;
}

.MySpan {
  position: relative;
  z-index: 2;
  line-height: 1;
}

.MyButton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;

  z-index: 1;
}

.MyButton:hover {
  color: var(--white);
}

.MyButton:hover::before {
  transform: scaleX(1);
}

.header {
  padding-top: 50px;
  padding-bottom: 50px;
    background-color: var(--white);
}
.header-container {
    padding-top: 20px ;
    padding-bottom:20px ;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-link-logo {
    transition: 200ms ease all;
}
.header-link-logo:active {
    transition: 200ms ease all;
    opacity: 0.5;
}
.header-logo-image {
    vertical-align: middle;
}
.header-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.header-links-texts {
    font-family: "Mulish";
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--darck-cyan);
     opacity: 50%;
    transition: 450ms ease all;
}
.header-links-texts:hover {
   transform: scale(1.2);
    transition: 450ms ease all;
     color: var(--darck-cyan);
    opacity: 100%;
}
.hero {
  padding: 80px 0;
  background-image: url("../icons/krugi.svg");
  background-repeat: no-repeat;
  background-position: left top;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-left-box {
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.hero-title {
  font-family: "Mulish";
  text-align: start;
  font-weight: 700;
  font-size: 50px;
  line-height: 56px;
  letter-spacing: 0%;
  color: var(--darck-cyan);
}
.hero-text {
  font-family: "Mulish";
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  color: var(--white-grey);
}
.ServicesWrapper {
    position: relative;
    overflow-x: hidden;
    z-index: 0;
}
.ServicesWrapper::before {
    content: "";
    position: absolute;
    top: 120px;
    left: -180px;
    width: 780px;
    height: 560px;
    background: url("/image/Vector.png") no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}
.ServicesWrapper::after {
    content: "";
    position: absolute;
    top: 260px;
    right: -80px;
    width: 130px;
    height: 115px;
    background: url("/icons/krugi.svg") no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}
.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 80px;
    margin-bottom: 72px;
}
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 10px 40px 50px rgba(229, 233, 246, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 40px 50px rgba(0, 0, 0, 0.1);
}
.service-card img {
    margin-bottom: 22px;
    width: 92px;
    height: 90px;
}
.service-card h5 {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 56px;
    color: var(--black);
    margin-bottom: 12px;
}
.service-card p {
    font-family: "Mulish", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: var(--white-grey);
    opacity: 0.8;
}
.Ourservices-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
    max-width: 952px;
    margin: 0 auto;
}
.Ourservices-titele {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 56px;
    color: var(--black);
    margin-bottom: 0;
}
.Ourservices-text {
    font-family: "Mulish", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: var(--white-grey);
    max-width: 952px;
}
.Ourservices-button-wrapper{
  display: flex;
  justify-content: center;
  margin-top: 72px;
  margin-bottom: 120px;
}
.leading {
   margin-top: 50px;
}
.leading-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
.leading-left-box {
   max-width: 480px;
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
   gap: 25px;
}
.leading-titele {
    font-family: "Mulish";
  font-weight: 700;
  font-size: 40px;    
  line-height: 56px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 11px;
}
.leading-line {
 display: block;
  align-self: flex-start;
  margin: 10px 0 20px; 
}
.leading-text {
  width: 454px;
   font-family: "Mulish";
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--white-grey);
  margin-bottom: 28px;
}
.download {
   margin-top: 30px;
   padding: 90px;
   background-image: url("../icons/krugi.svg");
  background-repeat: no-repeat;
  background-position: right top;
}
.download-container {
   display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.download-right-box {
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
   gap: 25px;
}
.download-titele {
  max-width: 300px;
   font-family: "Mulish";
  font-weight: 700;
  font-size: 40px;    
  line-height: 48px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 11px;
}
.download-text {
  width: 420px;
  font-family: "Mulish";
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--white-grey);
  opacity: 70%;
  margin-bottom: 28px;
}
.ServicesWrapper1 {
  position: relative;
  overflow: hidden;
}
.ServicesWrapper1::before {
  content: "";
  position: absolute;
  bottom: 0;           
  right: 0;            
  width: 778.73px;
  height: 557.40px;
  background: url("/image/Vector.png") no-repeat;
  background-size: contain;
  z-index: 0;          
  pointer-events: none;
  transform: scaleX(-1) rotate(-5deg) translateY(-30px); 
  transform-origin: center;
}
.check {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 30px;
}
.check-cards {
  display: flex;
  gap: 35px;
  margin-top: 60px;
  position: relative; 
  z-index: 2;
  padding-left: 50px;
  padding: 30px;
}
.check-textes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 33px;
}
.check-titele {
   font-family: "Mulish";
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 56px;
  letter-spacing: 0%;
  color: var(--black);
}
.check-boxes {
gap: -15px;
background-color: var(--white);
border-radius: 15px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
padding: 15px 6px;
}
.check-boxes:first-child {
  position: relative; 
  z-index: 1;
}
.check-boxes:first-child::before {
  content: "";
  position: absolute;
  top: -60px;   
  left: -20px;  
  width: 132px;
  height: 115px;
  background: url("/icons/krugi.svg") no-repeat;
  background-size: contain;
  z-index: -1; 
  pointer-events: none;
}
.check-boxes-titele{
  width: 300px;
  text-align: start;
  font-family: "Mulish";
  font-weight: 700;
  font-size: 21px;
  line-height:32px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 12px;
  margin-left: 25px;
}
.check-boxes-texts{
  width: 300px;
  font-family: "Mulish";
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--white-grey);
  opacity: 70%;
  margin-bottom: 28px;
margin-left: 25px;
}
.check-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.check-read-more-text {
  font-family: "Mulish";
  font-weight: 600;
  font-size: 18px;
  color: var(--blue);
   cursor: pointer;
  text-decoration: none;
  margin-left: 25px;
}
.check-read-more-Vpravor {
  width: 16px;
  height: auto;
  transition: transform 0.3s ease;
}
.check-read-more-Vpravor:hover{
  transform: translateX(6px);
}
.check-button-wrapper {
  display: flex;
  justify-content: center; 
  align-items: center;
  margin-top: 100px;        
}
.footer {
    background: linear-gradient(183.41deg, #67C3F3 -8.57%, #5A98F2 82.96%);
    color: var(--white);
    padding: 100px 0 80px;
    margin-top: 200px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-left-box {
    width: 30%;
    max-width: 300px;
}
.footer-links {
    width: 70%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.footer-column {
    flex: 1;
}
.footer-column-title {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 15px;
}
.footer-link {
    font-family: "Mulish", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}
.footer-link:hover {
    opacity: 1;
}
