* {
    margin: 0;
    padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #0C0E12;
}

header {
    width: 90%;
    margin: auto;
    padding-top: 18px;
}
.logo {
   max-width: 150px;
}
.bold {
  font-weight: 500;
}
  .navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
    padding: 15px 28px;
    z-index: 10;
    border-radius: 18px;
  }
  .menu-desk {
    display: flex;
    gap: 30px;
     align-items: center;
  }
  .menu-desk a {
    color: #2A3342;
    text-decoration: none;

  }

   .menu-desk a:hover, 
   .menu-desk a:active {
      color: #006BB3;
  }

  .burger {
    width: 35px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
  }

  .burger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

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

  .burger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .firstScreen {
    background: #09142B;
    color: #FFF;
    background-image: url('img/bg.svg');
    background-repeat: no-repeat;
    background-position: 900px center;
  }
  .wrap {
    width: 80%;
    margin: auto;
  }

  .menu-mob {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #fff;
    overflow: hidden;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid rgb(128, 126, 126);
  }

  .menu-mob.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding-bottom: 30px;
  }

  .menu-mob a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
    white-space: nowrap;
    margin: 30px 0;
  }
 .menu-mob a.extra-link {
      margin: 10px 0;
    }
 
  .line {
    background: #D5DAE1;
    border: none;
    width: 70%;
    margin: auto;
    height: 1px;
  }

  .accordion {
    overflow: hidden;
  }

  .accordion-header .arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
    cursor: pointer;
  }

  .accordion-header.active .arrow {
    transform: rotate(180deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-weight: 300;
  }

  .accordion-content.open {
    padding: 0 0 36px 0;
  }
.accordion-item {
    padding-right: 10px;
}

.contact-text a {
  text-decoration: none;
  color: #25A7FF;
}
  form {
    display: flex;
    flex-direction: column;
  }

h1 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
}
h2 {
  color: #2A3342;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.services {
  text-align: center;
  padding: 64px 0;
}
.main-text p {
  color: #FFF;
  margin-top: 32px;
}
.about p {
  margin-top: 32px;
}
.about {
  text-align: center;
  padding: 64px 0;
  position: relative;
}
.about::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #25A7FF 0%, rgba(22, 100, 153, 0.00) 100%);
}
p {
  color: #0C0E12;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.main-text {
  margin-left: 5%;
  max-width: 48%;
  margin-top: 170px;
}
.scroll {
  width: 20px;
  margin: auto;
  display: block;
  padding-bottom: 170px;
  padding-top: 80px;
}

.services {
  background: #F7F8F9;
}
.service-block {
  border-radius: 8px;
  border: 1px solid #D5DAE1;
  background: #FFF;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  width: 500px;
}
.service-block h3 {
  margin: 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: #2A3342;
}
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding-top: 32px;
}
.burger {
    display: none;
  }
.numbers {
  background: #09142B;
  padding: 64px 0;
}
.numbers h2 {
  color: #FFF;
  text-align: center;
}

.numbers p {
  color: #FFF;
}
.numbers h3 {
  font-size: 60px;
  font-weight: 700;
}
.blue {
  color: #25A7FF;
}
.flex {
  display: flex;
  margin-top: 32px;
  justify-content: space-around;
}
.block {
  flex: 1;
  position: relative;
  max-width: 200px;
}
.block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #25A7FF 0%, rgba(22, 100, 153, 0.00) 100%);
}
.faq {
  padding: 64px 0;
  background: #F7F8F9;
  position: relative;
}
.faq::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #25A7FF 0%, rgba(22, 100, 153, 0.00) 100%);
}
.faq .wrap {
  max-width: 580px;
  margin: auto;
}
.faq h2 {
  margin-bottom: 32px;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.accordion-header span {
  font-size: 20px;
  font-weight: 600;
}
.contact {
  padding: 64px 0;
}
.contact-block {
  display: flex;
  justify-content: space-between;
}
form button {
  border-radius: 6px;
  background: #25A7FF;
  box-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05);
  border: none;
  padding: 16px 0;
  width: 100%;
  color: #FFF;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  margin-top: 24px;
}
form button:hover {
  background: #006BB3;
  cursor: pointer;
}
form {
  position: relative;
  background: #F7F8F9;
  box-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.10);
  padding: 40px;
  border-radius: 18px;
  overflow: hidden;
  min-width: 460px;
}
form::after {
 content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #25A7FF 0%, rgba(22, 100, 153, 0) 100%);
  border-top-left-radius: 5px;
}
.contect .wrap {
  display: flex;

}
.contact-text {
  max-width: 500px;

}
.contact-text p {
  margin-top: 16px;
  margin-bottom: 20px;
}
label {
  font-size: 16px;
  font-weight: 300;
  color: #2A3342;
  margin-bottom: 5px;
}
::placeholder, textarea {
  font-family:  "Poppins", sans-serif;
}
input { 
  margin-bottom: 10px;
}
input, textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--Grey-200, #D5DAE1);

}
::placeholder {
  color:  #D5DAE1;
}
footer {
  background: #09142B;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
footer p {
  color: #FFF;
  font-size: 16px;
  flex: 1;
  text-align: center;
}
footer nav {
  justify-content: space-around;
  flex: 1; 
  text-align: end;
  display: flex;
  gap: 20px;
}
footer nav a {
  text-decoration: none;
  color: #667085;
  font-size: 14px;
}
.left {
  flex: 1;
}

.firstScreen-p {
  text-align: center;
}
.firstScreen-p h1 {
  padding: 30px 0 64px;
}
.flex-block {
  display: flex;
  width: 75%;
  margin: auto;
  justify-content: space-between;
  padding: 64px 0;
  gap: 40px;
}
.flex-block div {
  max-width: 500px;
}
.dark {
  background: #09142B;
  
}
.dark p {
  color: #FFF;
}
.dark h2 {
  color: #25A7FF;
}
.info-reverse {
  background: #F7F8F9;
  position: relative;
}

.info-reverse::before {
 content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #25A7FF 0%, rgba(22, 100, 153, 0) 100%);
  border-top-left-radius: 5px;
}
.info-reverse::after {
 content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #25A7FF 0%, rgba(22, 100, 153, 0) 100%);
  border-top-left-radius: 5px;
}
.info-last {
  position: relative;
}
.info-last::after {
 content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #25A7FF 0%, rgba(22, 100, 153, 0) 100%);
  border-top-left-radius: 5px;
}
.contact-flex {
  display: flex;
  gap: 16px;
}
.contact-flex.first {
  margin-bottom: 24px;
  align-items: center;
}
.hours p {
  margin: 0;
  text-align: left;
}
.contact-form {
  max-height: 300px;
}



@media screen and (max-width:1200px) {
  .main-text {
    max-width: 70%;
  }
.contact-block {
    flex-direction: column;
  }
  .contact-text {
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  form {
    margin: auto;
  }
  .left {
    display: none;
  }
  footer p {
    flex: none;
    margin-left: 25px;
  }
}
article {
  margin-top: 50px;
}
article p {
  margin-bottom: 20px;
}
article a {
  color: #25A7FF;
  text-decoration: none;
}

ol li, ul li {
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
  .firstScreen {
    background-position: center right;
  }
  .main-text {
    margin-left: 0;
    max-width: 100%;
  }
  h1 {
    font-size: 28px;
  }
  .flex {
    flex-direction: column;
  }
  .block {
    max-width: 100%;
    text-align: center;
  }
  .block::after {
    display: none;
  }
  footer nav {
    display: none;
  }
  .flex-block {
    flex-direction: column;
    padding: 60px 0;
    gap: 0;
  }
  .flex-block h2 {
    font-size: 24px;
    padding-bottom: 20px;
    text-align: center;
  }
  .dark {
    text-align: center;
  }
  .info-reverse .flex-block {
    flex-direction: column-reverse;
  }
  .img-block {
    text-align: center;
}
form {
  padding: 40px 16px;
  max-width: 90%;
}
.wrap {
  width: 90%;
}
.service-block {
  align-items: center;
}
.firstScreen-p h1 {
  padding: 40px 0 40px;
}
.flex-block {
  width: 90%;
}
.accordion-header span {
  max-width: 80%;
}
}

@media screen and (max-width: 600px) {
  .burger {
    display: flex;
  }
  .menu-desk {
    display: none;
  }
  .navbar {
    border-radius: 0;
  }
  header {
    width: 100%;
    padding-top: 0;
  }
  form {
    min-width: 320px;
  }
  .contact .wrap {
    width: 100%;
  }
  .main-text {
    text-align: center;
  }
  .firstScreen {
    background-position: 150px center;
  }
  .scroll {
    padding-top: 20px;
    padding-bottom: 80px;
  }
  h2 {
    font-size: 24px;
  }
  .about, .services, .numbers, .contact {
    padding: 60px 0;
  }
  .service-block {
    text-align: center;
  }
  .service-block img {
    margin: auto;
  }
  .numbers h3 {
    font-size: 40px;
  }
  .flex {
    margin-top: 20px;
  }
  .block {
    margin-bottom: 30px;
  }
  .faq {
    padding: 60px 0 40px;
  }
  .contact {
    padding: 60px 0 30px;
  }
  .faq h2 {
    text-align: center;
    line-height: 32px;
  }
  .contact-text {
    padding: 0 20px;
  }

}