@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&amp;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap");

:root {
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
  user-select: none;
}

body {
  background-image: linear-gradient(
    to left bottom,
    #000212,
    #050719,
    #0b0c1f,
    #0e1025,
    #11132b
  );
  background-repeat: no-repeat;
  min-height: 100vh;
}

.trs_lg {
  transition: 0.4s ease;
}

.text_aines {
  font-family: "Russo One", sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text_aines text {
  text-transform: uppercase;
  animation: stroke 7s infinite alternate;
  stroke-width: 2;
  stroke: #365fa0;
}
@keyframes stroke {
  0% {
    fill: rgba(72, 138, 20, 0);
    stroke: #2e70da;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  70% {
    fill: rgba(72, 138, 20, 0);
    stroke: rgb(46, 112, 218);
  }
  80% {
    fill: rgba(72, 138, 20, 0);
    stroke: rgb(46, 112, 218);
    stroke-width: 3;
  }
  100% {
    fill: rgb(46, 112, 218);
    stroke: rgba(54, 95, 160, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}

.accordion {
  border-radius: 4px;
}

.accordion-item {
  border-bottom: 1px solid #94a3b888;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-title {
  background: transparent;
  border: none;
  padding: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.arrow {
  float: right;
}


.grid_content_m {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 30px;
    
}