* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  scroll-behavior:smooth;
  

}

body {
    display: flex;
    flex-direction: column;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden; 
}

main {
  flex: 1;
}

.navContainer {
  width: 100%;
  margin: 0 auto;
}

/* --- Navbar --- */
.navbar {
  width: 100%;
  height: 75px;
  display: flex;
    align-items: center;
    justify-content: center;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-size: 16px;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  border-bottom: 1px solid #0c47a0;
 
}

.nav-wrap {
    position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo img {
  width: 250px;
  height: auto;
}
.menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  list-style: none;
  display: flex;
  gap: 25px;
  
}

.menu li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
  

}

.menu li a:hover {
  color: #b81d1b;
}

/* --- Burger --- */
.hamb {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  margin-right: 10px;
}

.hamb span {
  height: 3px;
  width: 100%;
  background: #10469c;
  border-radius: 2px;
  transition: 0.3s;
}

.hamb.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamb.active span:nth-child(2) {
  opacity: 0;
}

.hamb.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* --- Hero --- */

.hero {
    width: 100%;
    height: 100vh;
    background-image: url('hero.avif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-top: 50px;
}
.hero-content{ 
    display: flex;
    flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
     height: 100vh;
     width: 100%;    
   
}
.hero-content h1 {
  font-size: 50px;
  font-family: "PT Sans", sans-serif;
    margin-bottom: 20px;
  color:white;
}

.hero-content p {
  font-size: 38px;
  margin-bottom: 30px;
  font-family: "PT Sans", sans-serif;
  color: #fff;
}
.btn {
    display: inline-flex;   /* 🔥 лучше, чем flex + inline-block */
  align-items: center;
  justify-content: center;
  background: #b81d1b;
  width: 150px;
    height: 50px;
  color: white;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  font-family: "PT Sans", sans-serif;
}

.btn:hover {
  background: #ee3330;
  color: #000;
}
.btnMain{
   display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b81d1b;
  width: 550px;
  height: 60px;
  color: white;
  font-size: 18px;
  text-decoration: none;
  font-family: "PT Sans", sans-serif;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  position: fixed;
  bottom: 60px;        
  left: 50%;           
  transform: translateX(-50%); 
  z-index: 1000;      
}

.btnMain:hover{
      background: #ee3330;
  color: #000;
}

.hero .number, .column.one .number{
    color: #5faffa;
    font-size: 30px;
}
.content .number{
       color: #5faffa;
    font-size: 35px;
}
.heroSm .number{
    color: #5faffa;
    font-size: 30px;
    text-transform: uppercase;
}
a{
    color: white;
    text-decoration: none;
}
/* --- Secciones generales --- */
section {
  padding: 100px 0;
}

section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #901E3E;
}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "PT Sans", sans-serif;
    height: auto;
}
.column{
    height: auto;
    padding: 50px;
    font-family: "PT Sans", sans-serif;
}
.column.one{
   color: #0449a0;
   font-size: 38px;
   font-weight: 600;
   text-transform: uppercase;
   width: 50%;
}
.column.two{
    color: black;
    font-size: 18px;
    width: 50%;
}  
.container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "PT Sans", sans-serif;
  
}
/* --- Servicios --- */
#services  {
    background-color: white;
    color: #393E46;
}
.service-grid {
 display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
  width: 30%;
  height: 250px;
}
.card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transform: translateY(-5px);
  transition: 0.3s;
  border: 1px solid #a3a1a1;
}

.card img {
  width: 60px;
  margin-top: 20px;
  object-fit: cover;
}

.card h3 {
  margin-top: 15px;
  font-size: 28px;
  color: #414141
;
}

.card p {
  margin: 10px 20px;
  color: #555;
}
.blueBg{
    background-color: #0c47a0;
    color: white;
}
h4{
    color: white;
   font-size: 38px;
   font-weight: 400;
   text-transform: uppercase;
}
h5{
    color: white;
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
}
h6{
    color: black;
    font-size: 20px;
    text-transform: none;
    font-weight: bold;
    margin-top: 20px;
}
.black, .pWhite{
    font-size: 24px;
    margin-top: 30px;
    font-family: "PT Sans", sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.black{
    color: black;
}
.pWhite{
    color: white;
}
 .white{
    color: white;
    
}
.textBlue, .textWhite{
    font-size: 45px;
    text-transform: uppercase;
}
.textWhite{
    color: white;
}
.textBlack{
    font-size: 18px;
    color: black;
}
.textBlue{
    color: #0c47a0;
}
.column.two.white{
    width: 65%;
}
.checkMarkBlock{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.checkMarks{
  display: flex;
  flex-direction: column;
  align-items: flex-start;  
}
.check, .checkWhite{
    font-size: 16px;
    text-decoration: none;
    text-transform: none;
    margin-left: 30px;
    text-align: left;
    font-family: "PT Sans", sans-serif;
    font-weight: 100;
    line-height: 35px;
}
.check{
    color: black;
}
.checkWhite{
    color: white;
}
.checkMark{
   padding-bottom: 8px;
}
.imgContent{
    width: 600px;
}
.imgContentTwo{
    width: 650px;
    padding-right: 20px;
}
.contentTwo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "PT Sans", sans-serif;
    width: 100%;
    height: 100vh;
    margin-top: 50px;
    margin-bottom: 50px;
}
.allMarks{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 80px;
    margin-bottom: 80px;
    width: 90%;

}
.oneMark{
    display: flex;
    flex-direction: row;
     flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin-left: 50px;
    margin-right: 50px;
    width: auto;
   
}
.oneMap{
 display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;          /* 🔥 растягивается по колонке */
 
  
}
.checkAllMarks{
    font-size: 24px;
    text-decoration: none;
    text-align: left;
    font-family: "PT Sans", sans-serif;
    font-weight: 100;
    color: black;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;  
    white-space: nowrap;  
}
h2{
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0c47a0;
    width: 75%;
    text-align: center;
    flex-wrap: wrap;
    font-family: "PT Sans", sans-serif;
}
.heroSm{
    width: 100%;
    height: 70vh;
    background-image: url('heroSmOC.PNG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-top: 50px;
}
.hero-contentSmall{ 
    display: flex;
    flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
     height: 70vh;
     width: 100%;    
     padding: 50px 20px;
    color: white;
}
.hero-contentSmall h2{
    font-size: 49px;
    font-family: "PT Sans", sans-serif;
    margin-bottom: 20px;
    color:white;
    width: 60%;
}
.hero-contentSmall p {
  font-size: 28px;
  margin-bottom: 30px;
  font-family: "PT Sans", sans-serif;
  color: #fff;
}
#reviews{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
}
#reviews h2{
    color: #0c47a0;
    margin-bottom: 20px;
}
.reviews{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.reviewCard{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 30%;
    height: 380px;
    padding: 35px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}
.imgReview{
    width: 100px;
    margin-top: 10px;
}
.reviewCard p{
    margin-top: 10px;
    font-size: 18px;
    color: black;
    font-family: "PT Sans", sans-serif;
    font-weight: 100;
   
}
.reviewCard h5{
    margin-top: 20px;
    font-size: 20px;
    color: #0c47a0;
    font-family: "PT Sans", sans-serif;
    font-weight: 600;
}
.reviewText{
    height: 50%;
}
#aboutSmall{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #10469c;
    color: white;
    width: 100%;
     font-family: "PT Sans", sans-serif;
}
.aboutQuick-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.aboutQuick{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 30%;
    height: 450px;
    padding: 25px;
}

h3{
    font-size: 95px;
    font-weight: 700;
    color: #b81d1b;
}
#aboutSmall h2{
    color: white;
    font-size: 55px;
    text-transform: uppercase;
}
.aboutQuick p{
    color: white;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 30px;
}
.aboutQuick h5{
    color: white;
    font-size: 18px;
    text-transform: none;
    font-weight: 100;
    margin-top: 20px;
}
.aboutQuick-info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aboutQuick-stats{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contentLuster{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "PT Sans", sans-serif;
 height: auto;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}
.lusterAll{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 20px;
    width: 100%;
}
.contentLuster h2{
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0c47a0;
    width: 75%;
    text-align: center;
    flex-wrap: wrap;
    font-family: "PT Sans", sans-serif;
    margin-bottom: 30px;
    margin-top: 50px;
}
.contentLuster p{
    color:black;
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: none;
    font-weight: 400;
    width: 70%;
    text-align: center;
}
.lusterMedPick{
    width: 600px;
}
.checkMark{
      width: 25px;
  flex-shrink: 0; 
}
.oneMap .checkAllMarks{
  text-transform: uppercase;
  font-size: 18px;
  text-align: left;
  
}

/* --- Footer --- */
.footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  background: white;
  color: black;
  text-align: center;
  padding: 20px;
  margin-bottom: 0;
  border-top: 1px solid #0c47a0;
}
.smallest{
    font-size: 10px;
    font-weight: bold;
    margin-top: 10px;
    color: black;
}
.phone{
    font-size: 30px;
}

/* ---------- 1200px ---------- */
@media (max-width: 1200px) {
    .hero {
    height: 70vh;
}
.hero-content{ 

     height: 70vh;
      
   
}
  .hero-content h1 { font-size: 40px; }
  .hero-content p { font-size: 26px; }

  .card { width: 45%; }

  .imgContent,
  .imgContentTwo {
    width: 100%;
  }
  .column.two.white{
    width: 50%;
}
.heroSm{
    height: 50vh;
}
  .hero-contentSmall h2 {
    width: 80%;
    font-size: 40px;
  }
  .hero-contentSmall{ 
     height: 50vh;
}
  .contentTwo{
    height: 40vh;
    margin-top: 20px;
    margin-bottom: 20px;
}
.imgContentTwo{
    width: 450px;
    padding-right: 10px;

}
  .reviewCard h5{
    margin-top: 55px; 
}
  .lusterMedPick{
    width: 300px;
   
    margin-bottom: 20px;
}
}


/* ---------- 992px ---------- */
@media (max-width: 992px) {

  /* NAVBAR */
  .menu {
    display: none;
  }

  .hamb {
    display: flex;
  }

  .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 0;
    background: white;
    width: 100%;
    padding: 20px 0;
    align-items: center;
    gap: 20px;
  }

  /* HERO */
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 22px; }

  /* CONTENT BLOCKS */
  .content {
    flex-direction: column;
  }

  .column.one,
  .column.two {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
.column.two.white{
    width: 100%;
}
.imgContent{
    width: 500px;
}
 .imgContentTwo{
    padding-right: 0;
}
h3{
    font-size: 75px;
    font-weight: 700;
}
#aboutSmall h2{
    font-size: 45px;
    text-transform: uppercase;
}
.aboutQuick p{
    font-size: 25px;
    font-weight: 500;
}
.columns{
    width: 32%;
}
.checkAllMarks{
    font-size: 20px;
}
  /* SERVICES */
  .card {
    width: 80%;
  }

  /* REVIEWS */
 

  .reviewCard {
    width: 30%;
    height: auto;
  }

  /* ABOUT STEPS */
  .aboutQuick-container {
    flex-direction: column;
  }

  .aboutQuick {
    width: 90%;
    height: auto;
  }
  .reviewCard h5{
    margin-top: 20px;
    font-size: 18px;
}
.LusterMedium{
    display: none;
}
.allMarks{
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;

}
}


/* ---------- 768px ---------- */
@media (max-width: 768px) {

  section {
    padding: 60px 0;
  }

  h2 {
    font-size: 32px;
    width: 90%;
  }

  .textBlue,
  .textWhite {
    font-size: 32px;
  }

  .hero-contentSmall h2 {
    font-size: 32px;
    width: 90%;
  }

  .hero-contentSmall p {
    font-size: 22px;
  }

  

  .lusterMedPick {
    width: 90%;
  }
  
  .oneMap {
    width: 100%;
  }
}


/* ---------- 576px ---------- */
@media (max-width: 576px) {

  /* LOGO */
  .logo img {
    width: 180px;
  }

  /* HERO */
  .hero {
    height: auto;
     padding-left: 15px;
    padding-right: 15px;
}
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 18px;
  }
.content{
    height: auto;
    margin-top: 20px;
      padding-left: 15px;
    padding-right: 15px;
}
.contentTwo{
      padding-left: 15px;
    padding-right: 15px;
}
.imgContentTwo{
    width: 300px;
    margin-top: 10px;
}
  .btn {
    width: 140px;
    height: 45px;
    font-size: 16px;
  }

  /* CONTENT */
  .card {
  width: 90%;
  height: auto;
}
.card img {
  width: 40px;
  margin-top: 10px;
}

.card h3 {
  margin-top: 10px;
  font-size: 24px;
}

.card p {
  margin: 10px;
}
.column{
    padding: 10px;
}
.blueBg{
    flex-direction: column-reverse;
      padding-left: 15px;
    padding-right: 15px;
}
.column.one{
   font-size: 30px;
   font-weight: 500;
   height: auto;
 
}
.column.two{
    height: auto;
    margin-top: 10px;
}
h4{
   font-size: 28px;
   font-weight: 300;
}
h5{
    margin-top: 10px;
    margin-bottom: 20px;
}
  .textBlue,
  .textWhite {
    font-size: 30px;
    font-weight: 600;
  }

.imgContent{
    width: 350px;
}

.checkAllMarks{
    font-size: 14px;
}

.imgContentTwo{
   width: 350px;
}
  
  .checkWhite {
    font-size: 14px;
    margin-left: 0;
    text-align: center;
  }
  .pWhite{
    margin-left: 0;
    text-align: left;
    font-size: 22px;
  }
.black{
    font-size: 22px;
}
  /* --- Общий блок --- */
  .checkMarkBlock{
    display: grid;
    grid-template-columns: 25px 1fr;
    column-gap: 12px;
    row-gap: 10px;
    justify-content: start;
    align-items: start;
    margin-top: 15px;
    width: 100%;
  }

  /* --- Колонка с иконками --- */
  .checkMarks{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* --- Колонка с текстом --- */
  .checkMarksP{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* --- Иконка --- */
  .checkMark{
    width: 20px;
    padding: 0;
  }

  /* --- Текст --- */
  .check,
  .checkWhite{
    font-size: 14px;
    line-height: 1.4;
    margin: 0;              /* 🔥 убираем левый margin */
    text-align: left;
  }
#aboutSmall h2{
    font-size: 35px;
}
h3{
    font-size: 45px;
}
#content{
    padding-left: 10px;
    padding-right: 10px;
}

    /* --- Секция --- */
  #reviews{
    padding: 60px 15px;
    align-items: stretch;
  }

  #reviews h2{
    font-size: 26px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }

  #reviews > p{
    width: 100%;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }

  /* --- Контейнер карточек --- */
  .reviews{
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: stretch;
  }

  /* --- Карточка --- */
  .reviewCard{
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 20px 15px;
    margin-top: 0;
    align-items: stretch;   /* 🔥 важно */
    text-align: center;       /* читаемее на мобиле */
  }

  /* --- Звёзды --- */
  .imgReview{
    width: 80px;
    margin: 0 auto 10px auto;
    display: block;
  }

  /* --- Текст отзыва --- */
  .reviewText{
    width: 100%;
    height: auto;          /* 🔥 убираем 50% */
    margin-bottom: 10px;
    
  }

  .reviewText p{
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  /* --- Имя --- */
  .reviewCard h5{
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
  }

  /* --- Подпись (Homeowner) --- */
  .reviewCard > p{
    width: 100%;
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
  }

  /* BRANDS */
  .oneMark {
    margin: 0;
  }

  .lusterAll{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
}
.lusterAll p{
    font-size: 14px;
}

.oneMap .checkAllMarks{
  text-transform: uppercase;
  font-size: 14px;
  text-align: left;
  
}
.contentLuster h2{
    font-size: 30px;
    font-weight: 600;
    width: 75%;
    margin-bottom: 20px;
    margin-top: 20px;
}
.phone{
    margin-bottom: 20px;
}
.btnMain{
    width: 90%;
    height: 55px;
    margin-bottom: 50px;
}
  /* FOOTER */
  .footer p {
    font-size: 14px;
  }
  .smallest{
    font-size: 8px;
    font-weight: 100;
 
}
}
