/**
 * Theme Name:  My app
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0;	font-size: 100%;	font: inherit; vertical-align: baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';	content: none;}
table {border-collapse: collapse;	border-spacing: 0;}
.clear {clear:both;}
html, body, #mapContact, #mapFooter {width: 100%; height: 100%; padding: 0; margin: 0;}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {display: block; }* {
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #07070d;
  --surface: #0f0f1a;
  --surface2: #16161f;
  --accent: #c8f53c;
  --text: #ededf5;
  --muted: #52526a;
  --border: rgba(255,255,255,0.07);
  --blue: #5E94EE;
  --gray: #787878;
}
html {
  scroll-behavior: smooth;
}
body{
  background-color: #fff;

  font-family: "Manrope", sans-serif;
}
header ul{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;




}
header{
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1700px;
 margin: 0 auto;
  padding: 40px 0;
}
@media (max-width: 768px) {
  header nav{ display: none; }
}

header nav{margin: 0  auto; display: flex; align-items: center}
.logo{
  color: var(--blue);
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
}
header li a{
  color: var(--gray);
  font-size: 1.1rem;
  text-decoration: none;
}
.headline {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: var(--blue);
  padding: 40px 0 0;

  opacity: 0;
  transform: translateY(30px);

  transition: opacity 1.2s ease,
  transform 1.2s ease;
}

.heroDescription{
  color: var(--gray);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 20px 0;
  text-align: center;
}
.headline.show {
  opacity: 1;
  transform: translateY(0);
  padding: 3rem 0 0;
}
@media (max-width: 480px) {

  .headline {
    font-size: 2.2rem;
  }

  .logo {
    font-size: 1rem;
  }

  .heroDescription {
    font-size: 0.95rem;
  }

}
.buttonHeadline{
  background-color: var(--blue);
  transition-duration: 0.5s;
  box-sizing: border-box;
  border: none;
  border-radius: 30px;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition-duration: 0.5s;
}
.buttonHeadlineTwo{
  background-color: #fff;
  box-sizing: border-box;
  border: solid  1px var(--blue);
  border-radius: 30px;
  padding: 1.3rem 3rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  cursor: pointer;
  transition-duration: 0.5s;
  text-decoration: none;
  text-align: center;
}
.buttonHeadline:hover {opacity: 0.8}
.buttonHeadlineTwo:hover {opacity: 0.8}
.wrapperButton{
  gap: 20px;
  display: flex;
 margin: 4rem auto;
  width: fit-content;

}
.stackWrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
  width: fit-content;
}
.stack{
  font-size: 1rem;
  padding: 10px 20px;
  color: var(--gray);
  background-color: #F5F5F5;
  border-radius: 10px;
}


@media (max-width: 768px) {
  body{
    font-size: 14px;
  }
  .logo{
    font-size: 0.7rem;
  }
  header {
    width: 90%;
    padding: 20px 0;
  }

  header nav {
    display: none;
  }

  .headline {
    font-size: 2.3rem;
    line-height: 1.1;
    padding: 40px 0 20px
  }

  .heroDescription {
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
    padding: 15px;
  }

  .wrapperButton {
    flex-direction: column;
    width: 90%;
    margin: 5px auto;
    gap: 12px;
  }

  .buttonHeadline,
  .buttonHeadlineTwo {
    width: 100%;
    padding: 16px;
  }

  .stackWrapper {
    width: 90%;
    justify-content: center;
    margin: 10px auto;
  }

  .stack {
    font-size: 0.9rem;
    padding: 8px 14px;
  }


  .heroDescription{font-size: 1rem; padding: 5px}

}
.portfolio {
  width: 90%;
  max-width: 1600px;
  margin: 120px auto;
}

.sectionTitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 40px;
}

.portfolioGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {

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

}
.portfolioCard {
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: .3s;
}

.portfolioCard:hover {
  transform: translateY(-2px);
}

.portfolioCard img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
}

.portfolioInfo {
  padding: 20px;
}

.portfolioInfo h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.portfolioInfo p {
  color: var(--gray);
}

.footer{
  color: gray;
  text-align: center;
  margin-top: 10px;

}

.footer{
  margin-top: 120px;
  padding: 60px 0 30px;

  border-top: 1px solid #E5E7EB;
}

.footerContent{
  width: 90%;
  max-width: 1600px;

  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footerInfo{
  max-width: 350px;
}

.footerLogo{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);

  margin-bottom: 15px;
}

.footerInfo p{
  color: var(--gray);
  line-height: 1.7;
}

.footerLinks,
.footerContacts{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerLinks h4,
.footerContacts h4{
  color: var(--blue);
  margin-bottom: 10px;
}

.footer a{
  color: var(--gray);
  text-decoration: none;
  transition: .3s;
}

.footer a:hover{
  color: var(--blue);
}

.footerBottom{
  width: 90%;
  max-width: 1200px;

  margin: 50px auto 0;
  padding-top: 20px;

  border-top: 1px solid #F1F1F1;

  text-align: center;
  color: var(--gray);
}
.about{
  width: 90%;
  max-width: 1600px;
  margin: 60px auto;
}

.aboutContent{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.aboutLabel{
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 40px;
}
.aboutLeft{margin-bottom: 40px}

.aboutTitle{
  font-size: 3rem;
  font-weight: 800;
  margin-top: 15px;
  color: #111;
  line-height: 1.2;
}

.aboutText{
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.aboutStats{
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .advantages{
    flex-direction: column;
    gap: 16px;
  }


}
.advantages{
  display: flex;
  gap: 20px;
  margin-top: 60px;
}

.advantageCard{
  flex: 1;

  background: linear-gradient(135deg, #77a6ff, #5d93f5);

  border-radius: 28px;

  padding: 35px;

  color: #fff;

  transition: .3s;
}



.advantageCard span{
  font-size: 3rem;
  font-weight: 800;
  display: block;
}

.advantageCard h3{
  margin-top: 20px;
  font-size: 1.3rem;
}

.advantageCard p{
  margin-top: 15px;
  line-height: 1.7;
  opacity: .9;
}







