/* Block_1 */
.block_1 {
  font-family: "Open Sans", sans-serif;
  padding: 60px 0;
  background-color: rgb(27, 129, 197);
  color: #fff;
  width: 100%;
  margin: 0;
  min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: left;
}

.block_1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/pattern_1.png');
  background-repeat: repeat;
  opacity: 0.9;
  z-index: -1;
}

.block_1-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  gap: 70px;
  flex-direction: row;
}

.text-block_1 {
  color: #302f2e;
  flex: 1;
  max-width: 600px;
  padding-left: 1px;
}

.block_1_h {
  text-decoration: underline;
  font-size: 30px;
  font-weight: 700;
  line-height: 54px;
  color: white;
  margin-bottom: 3px;
}

.highlight {
  font-weight: 800;
color: white;

}

.block_1_h::first-letter {
  font-size: 40px;
  font-weight: bold;
  color: white;
}


.block_1_p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px;
  border-radius: 5px;
  font-weight: bold;
}

.block_1_p2 {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  margin-top: 15px;
  color: #f2f2f2;
  line-height: 1.5;
  padding-left: 0;
}

.btn_block_1 {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: rgb(42, 42, 42);
  color: #fff;
  padding: 20px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin: 70px auto 0;
  margin-top: 60px;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 0.3s ease;
  box-shadow: rgb(14, 14, 14) 0 5px 0 0;
}

.btn_block_1:hover {
  transform: scale(1.05);
}

.btn_block_1:active {
  background-color: rgb(32, 32, 32);
  transform: translateY(2px);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.image-content img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
  border-radius: 8px;
}



/* Block_2 */
.block_services {
  display: inline;
  margin: 0 auto;
  padding: 0 20px;
  }

  .block_services_container_title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: 30px;
  color: #333;
  margin-top: 45px;
  margin-bottom: 20px;
  margin-right: 980px;
  line-height: 54px;
  white-space: nowrap;
  }

  .underline {
    display: inline-block;
    border-bottom: 3px solid #333;
    padding-bottom: 4px;
  }

  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    max-width: 1160px;
    margin: 0 auto;
  }

  .services_block {
    flex: 0 1 calc(33.33% - 20px);
    padding: 15px;
    flex-direction: column;
    text-align: center;
    position: relative;
    margin-bottom: 5px;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .services_block:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.5);
  }

  .services_block_img img{
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 250px;
    margin-top: 20px;
    border-radius: 5px;
    object-fit: contain;
  }

  .services_block_title {
    font-family: "Roboto Condensed", sans-serif;
    text-align: left;
    text-decoration: underline;
    margin: 15px 0;
    color: #004085;
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
    text-decoration-color: #004085;
  }

  .services_block_title:hover {
    color: rgb(51, 51, 51);
    text-decoration: none;
  }

  .custom a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .custom a:visited {
    color: inherit;
  }

  .custom a:active {
    color: inherit;
  }

  .custom a:hover {
    color: rgb(51, 51, 51);
    text-decoration: none;
  }

  .services_block_text {
    font-family: Roboto, sans-serif;
    text-align: left;
    color: rgb(85, 85, 85);
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
  }

  .block_2-button {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    width: fit-content;
    padding: 20px 25px;
    font-weight: 500;
    background-color: #004085;
    color: #fff;
    text-align: center;
    border: none;
    margin: 40px auto;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: rgb(14, 14, 14) 0 4px 0 0;
    white-space: nowrap;
    background-image: url('images/pattern_1.png');
    margin-top: 50px;
  }

  .block_2-button:hover {
    transform: scale(1.05);
    background-color: #004085;
  }

  .block_2-button:active {
    background-color: #004085;
    transform: translateY(2px);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
  }


/* Block_mobile */
.block_mobile {
  height: fit-content;
  position: relative;
  width: 100%;
  min-height: 23vh;
  overflow: hidden;
  background-color: white;
  background-image: url('img/block-3.jpg');
  background-size: cover;
  background-position: center;
  margin: 30px 0;
  padding-bottom: 40px;
}

.block_mobile-container {
  height: fit-content;
  position: relative;
  max-width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.block_3-image {
  display: none;
}

.block_mobile h2,
.block_mobile h3 {
  font-family: Roboto, sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 39px;
  margin-bottom: 12px;
  color: white;
  border-radius: 50px;
  padding: 40px 30px 3px;
  text-transform: uppercase;
  text-align: center;
}

 .block_mobile-button {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  background-color: rgb(22, 105, 160);
  color: #fff;
  padding: 18px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin: 70px auto 0;
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 0.3s ease;
  box-shadow: rgb(15, 2, 75) 0 3px 0 0;
}

.ph-icon {
  width: 23px;
  height: auto;
  margin-right: 10px;
  filter: invert(1);
}

.block_mobile-button:hover {
  transform: scale(1.05);
}

.block_mobile-button:active {
  transform: translateY(2px);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}



/* Block_4 */
.block_wh_garant {
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  }

.block3_pattern_1 {
  background-color: rgb(85, 85, 85);
  background-image: url('images/pattern_2.png');
  opacity: 0.9;
  background-repeat: repeat;
}

.wh_garant_container {
width: 100%;
max-width: 1160px;
margin: 0 auto;
padding: 20px 0;
}

.wh_garant_text {
font-family: Roboto, sans-serif;
margin-bottom: 30px;
font-size: 16px;
font-weight: 400;
line-height: 30px;
text-align: left;
}

.title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
}

.services_block_img img:hover {
  width: 100%;
  max-height: 250px;
  margin-top: 20px;
  opacity: 0.5;
  border-radius: 5px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.block_wh_garant_title {
font-weight: 700;
font-style: normal;
text-align: left;
font-size: 30px;
margin: 0 0 10px;
color: #333;
margin-bottom: 60px;
}

.why-choose-us {
flex: 1;
background-color: #f9f9f9;
padding: 40px 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.reason {
  flex: 1 1 calc(25% - 30px);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.reason_title {
  margin-top: 3px;
  margin-left: 45px;
  margin-bottom: 25px;
}

.reason span {
border-radius: 3px;;
position: absolute;
top: 0;
left: 0;
width: 32px;
height: 32px;
color: white;
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
padding: 1px;
transition: all 0.9s ease;
background-color: rgb(0, 64, 133);
}

.step-content span {
  font-size: 30px;
  color: #004085;
  margin-right: 20px;
}

.reason:hover span {
transform: rotateY(-180deg);
color: white;
background-color: black;
}

.reason h3 {
font-size: 20px;
color: #333;
margin: 0;
text-align: left;
}

.reason p {
font-size: 16px;
color: #555;
line-height: 1.5;
text-align: left;
width: 100%;
margin-top: 5px;
}


/* Block */
.line_m {
  height: 50px;
  background-color: rgb(27, 129, 197);
}


/* Block_5 */
.how-we-work {
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.block5_pattern_1 {
  position: relative;
  background-image: url('img/block-5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.block5_pattern_1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/pattern_2.png');
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
  z-index: 1;
  opacity: 0.9;
}

.how-we-work-container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.step-description {
  font-family: Roboto, sans-serif;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

.how-we-work-title {
  font-weight: 700;
  font-style: normal;
  text-align: left;
  font-size: 30px;
  margin: 0 0 10px;
  color: #333;
  margin-bottom: 60px;
}

.how-we-work-section {
  flex: 1;
  background-color: #f9f9f9;
  padding: 40px 20px 5px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.how-we-work-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.how-we-work-step {
  flex: 1 1 calc(25% - 30px);
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}

.step-content {
  display: flex;
  align-items: center;
}

.step-description h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.step-description p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  margin-top: 5px;
}

.how-we-work-steps .how-we-work-step .fa-1,
.how-we-work-steps .how-we-work-step .fa-2,
.how-we-work-steps .how-we-work-step .fa-3,
.how-we-work-steps .how-we-work-step .fa-4,
.how-we-work-steps .how-we-work-step .fa-5,
.how-we-work-steps .how-we-work-step .fa-6,
.how-we-work-steps .how-we-work-step .fa-7 {
  background: none;
  color: #004085;
  font-weight: bold;
  font-size: 55px;
  transform: none;
}

.how-we-work-steps .how-we-work-step .fa-1:hover,
.how-we-work-steps .how-we-work-step .fa-2:hover,
.how-we-work-steps .how-we-work-step .fa-3:hover,
.how-we-work-steps .how-we-work-step .fa-4:hover,
.how-we-work-steps .how-we-work-step .fa-5:hover,
.how-we-work-steps .how-we-work-step .fa-6:hover,
.how-we-work-steps .how-we-work-step .fa-7:hover {
  transform: scale(1.1);
}



/* Block_6 */
.page_description {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page_description h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: rgb(0, 64, 133);
  text-align: left;
  align-self: flex-start;
  margin: 50px 0 30px;
}

.page_description h3 {
  margin-bottom: 25px;
}

.page_description h4 {
  margin: 20px 0 10px;
}

.page_description p {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 15px;
  width: 100%;
  line-height: 2;
}

.page_description ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  margin-bottom: 15px;
  color: black;
}

.page_description ul li {
  font-size: 15px;
  line-height: 2.4;
}

.page_description ul li::marker {
  font-size: 1.2em;
  color: rgb(0, 64, 133);
}

