* {
  box-sizing: border-box;
}

:root {
  font-size: 16px;
  color: #f8f6e7;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #180e1c;
}

h1, h2, h3, h4, p, span, div {
  margin: 0;
}

* {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.btn {
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
.btn__primary-solid {
  background-color: #3e607a;
  color: #f8e18c;
}
.btn__primary-solid:hover {
  background-color: #180e1c;
  color: #f8f6e7;
}
.btn__secondary-solid {
  background-color: #90c6d3;
  color: #101320;
}
.btn__secondary-solid:hover {
  background-color: #180e1c;
  color: #f8f6e7;
}

.content__container .btn {
  display: flex;
}

.header__container {
  box-sizing: border-box;
  padding: 1rem;
  background-color: #d80608;
  color: #f8f6e7;
  height: 96px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  background-color: #f8e18c;
  border-radius: 50%;
  max-width: 60px;
}

.logo-mutual {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar {
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem;
  height: 4.5rem;
  width: 100%;
  align-items: center;
}

.btn-toggle-menu {
  display: flex;
  flex-direction: column;
  max-width: 2.75rem;
  background-color: transparent;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.burger .bar {
  display: block;
  height: 5px;
  width: 28px;
  background-color: #fff;
  margin: 0.25rem 0;
  transition: 0.4s;
}

.burger-container {
  display: flex;
  align-items: center;
  border-bottom-left-radius: 0.5rem;
  gap: 3.75rem;
}

.ul-navbar {
  box-sizing: border-box;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  max-height: 19px;
  max-width: 426px;
}

.ul-navbar li a:hover {
  background-color: #3e607a;
  border: none solid;
  border-radius: 0.5rem;
  padding: 1rem;
}

.bnt-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}

.form-Header {
  display: flex;
  background-color: #d80608;
  border-radius: 1rem;
  gap: 0.5rem;
  align-items: center;
  padding: 0 7px;
}

.form-Header button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.form-H input[type=text], input[type=password], input[type=email], input[type=number] {
  width: 80%;
  padding: 0.5rem;
  border: 1px solid #f8f6e7;
  border-radius: 4px;
  background-color: #180e1c;
  color: #f8f6e7;
}

.A-nav {
  text-decoration: none;
  color: #f8f6e7;
}

@media (max-width: 1150px) {
  .header__container {
    height: 60px;
  }
  .logo-img {
    background-color: #f8e18c;
    border-radius: 50%;
    max-width: 45px;
    max-height: 45px;
  }
  .burger {
    display: flex;
    background-color: #5b4234;
    border-radius: 5px;
    padding: 0.5rem 2rem;
    max-width: 50px;
    align-items: center;
  }
  .burger .bar {
    display: flex;
    height: 5px;
    width: 40px;
    background-color: #fff;
    margin: 0.25rem 0;
    transition: 0.4s;
  }
  .burger-container {
    align-items: center;
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    max-width: 285px;
    height: 400px;
    top: 60px;
    right: 0;
    background-color: #5b4234;
  }
  .burger-container li:hover {
    background-color: #3e607a;
    display: flex;
    flex-direction: column;
    width: inherit;
    border-radius: 8px;
  }
  .burger-container.active {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 6rem;
    padding: 10px;
  }
  .ul-navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 10px;
  }
  .ul-navbar li a:hover {
    padding: 0.5rem;
  }
}
.layout-container {
  width: 100%;
  background-color: #180e1c;
  min-height: calc(100vh - 96px - 122px);
  margin-top: 96px;
  margin-bottom: 122px;
}

.slider-container {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #180e1c;
}

.viewport {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 400%;
  animation: slideAnimation 12s infinite ease-in-out;
}

.slider-track img {
  width: 25%; /* 100 / 4 */
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes slideAnimation {
  0%, 20% {
    transform: translateX(0);
  }
  25%, 45% {
    transform: translateX(-25%);
  }
  50%, 70% {
    transform: translateX(-50%);
  }
  75%, 95% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(0);
  }
}
.section-card {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem;
  background-color: #180e1c;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #f8e18c;
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  max-width: 298px;
}
.card:hover {
  background-color: #5b4234;
}

.card-description {
  margin-top: 0.6rem;
  color: #f8f6e7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  max-width: 200px;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.card span {
  font-size: x-small;
  color: #f8f6e7;
  text-align: center;
  margin-top: 0.5rem;
  max-width: 262px;
  max-height: 24px;
}

.form-altas {
  border-radius: 0.5rem;
  background-color: #d80608;
  margin: 3rem 14rem;
  padding: 0.5rem;
  max-width: 1065px;
  justify-self: center;
}

.Formhead {
  display: flex;
  background-color: #d80608;
  border-radius: 1rem;
  gap: 1.5rem;
}

.Formhead img {
  position: relative;
  max-height: 630px;
  max-width: 540px;
  border-radius: 0.5rem;
}

.formingres {
  position: relative;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.25rem;
  padding-bottom: 0;
  gap: 1rem;
}

.formingres div {
  max-height: 3.3rem;
}

.formingres button {
  display: flex;
  align-self: center;
  margin-bottom: 1rem;
}

.category {
  display: flex;
}

.formIngres {
  border-radius: 0.5rem;
  background-color: #d80608;
  margin: 3rem 14rem;
  padding: 0.5rem;
  max-width: 1025px;
  max-height: 470px;
  justify-self: center;
}

.form-H {
  display: flex;
  background-color: #d80608;
  border-radius: 1rem;
  gap: 1.5rem;
  align-items: start;
}

.form-H img {
  position: relative;
  max-height: 450px;
  max-width: 500px;
  border-radius: 8px;
}

.formIng {
  position: relative;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem;
  padding-bottom: 0;
  gap: 1.25rem;
}

input[type=text], input[type=password], input[type=email], input[type=number], input[type=checkbox] {
  max-width: 85%;
  padding: 0.5rem;
  border: 1px solid #f8f6e7;
  border-radius: 4px;
  background-color: #180e1c;
  color: #f8f6e7;
}

.about {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.about__us {
  display: flex;
  box-sizing: border-box;
  justify-content: space-around;
  background-color: #f8e18c;
  border-radius: 0.5rem;
  color: #180e1c;
  max-width: 100%;
  max-height: 400px;
  margin-bottom: 1rem;
}
.about__us img {
  border-radius: 8px;
}
.about__us p {
  padding: 1rem;
  font-family: cursive;
  font-size: x-large;
  align-self: center;
}
.about__stand-book {
  display: flex;
  justify-content: space-evenly;
  background-color: #f8e18c;
  border-radius: 0.5rem;
  color: #180e1c;
  max-width: 100%;
  max-height: 400px;
  margin-bottom: 1rem;
}
.about__stand-book img {
  border-radius: 8px;
}
.about__stand-book p {
  padding: 1rem;
  font-family: cursive;
  font-size: x-large;
  align-self: center;
}
.about__stand-pay {
  display: flex;
  justify-content: space-evenly;
  background-color: #f8e18c;
  border-radius: 0.5rem;
  color: #180e1c;
  max-width: 100%;
  max-height: 400px;
  margin-bottom: 1rem;
}
.about__stand-pay img {
  border-radius: 8px;
}
.about__stand-pay p {
  padding: 1rem;
  font-family: cursive;
  font-size: x-large;
  align-self: center;
}
.about__learning-space {
  display: flex;
  justify-content: space-evenly;
  background-color: #f8e18c;
  border-radius: 0.5rem;
  color: #180e1c;
  max-width: 100%;
  max-height: 400px;
  margin-bottom: 1rem;
}
.about__learning-space img {
  border-radius: 8px;
}
.about__learning-space p {
  padding: 1rem;
  font-family: cursive;
  font-size: x-large;
  align-self: center;
}
.about__team {
  display: flex;
  justify-content: space-evenly;
  background-color: #f8e18c;
  border-radius: 0.5rem;
  color: #180e1c;
  max-width: 100%;
  max-height: 400px;
  margin-bottom: 1rem;
}
.about__team img {
  border-radius: 8px;
}
.about__team p {
  padding: 1rem;
  font-family: cursive;
  font-size: x-large;
  align-self: center;
}

@media (max-width: 942px) {
  .layout-container {
    margin-top: 60px;
  }
  .img-a {
    display: none;
  }
  .formingres {
    max-width: 19.5rem;
    gap: 0.25rem;
  }
  .form-H {
    max-width: 300px;
    height: auto;
    justify-content: center;
  }
  .form-H input {
    max-width: 280px;
  }
  .form-H textarea {
    max-width: 280px;
  }
  input {
    font-size: 13px;
    max-width: 80%;
  }
  .about {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: space-between;
  }
  .about div {
    display: flex;
    flex-direction: column;
    padding: 2px;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .about p {
    font-size: x-small;
  }
}
@media (max-width: 1200px) {
  .about {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: space-between;
  }
  .about div {
    display: flex;
    padding: 2px;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .about p {
    font-size: large;
  }
}
@media (max-width: 1440px) {
  .formingres {
    align-items: normal;
  }
}
.footer-container {
  display: flex;
  justify-content: space-around;
  padding: 0.5rem;
  background-color: #101320;
  color: #f8f6e7;
  position: relative;
  width: 100%;
}

.section-links {
  gap: 1rem;
}

.section-links a {
  text-decoration: none;
  gap: 1rem;
}

@media (max-width: 600px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    gap: 1rem;
  }
}/*# sourceMappingURL=main.css.map */