:root {
  --main: rgba(2, 29, 98, 1);
}

body {
  margin: 0;
  padding: 0;
  color: #191717;
  font-size: 18px;
  line-height: 1.25;
  background-color: #f8f8f8;
  font-family: "TT Ramillas Trl", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
}

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

a {
  color: inherit;
  display: inline-block;
}

ul {
  list-style: none;
}

video {
  width: 100%;
}

.form {
  padding: 20px;
  background-color: transparent;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

input {
  width: 100%;
}

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

.row {
  display: flex;
  flex-direction: row;
}

.row_r {
  display: flex;
  flex-direction: row-reverse;
}

.column {
  display: flex;
  flex-direction: column;
}

.column_r {
  display: flex;
  flex-direction: column-reverse;
}

.j_end {
  justify-content: end;
}

.j_start {
  justify-content: start;
}

.j_center {
  justify-content: center;
}

.j_between {
  justify-content: space-between;
}

.a_start {
  align-items: start;
}

.a_end {
  align-items: end;
}

.a_center {
  align-items: center;
}

.a_stretch {
  align-items: stretch;
}

.white_color {
  color: #fff;
}

.white_bg {
  background-color: #fff;
}

@media screen and (max-width: 900px) {
  .desc {
    display: none;
  }

  .m\:column {
    display: flex;
    flex-direction: column;
  }

  .m\:row {
    display: flex;
    flex-direction: row;
  }

  .m\:j_end {
    justify-content: end;
  }

  .m\:j_start {
    justify-content: start;
  }

  .m\:j_center {
    justify-content: center;
  }

  .m\:j_between {
    justify-content: space-between;
  }

  .m\:a_start {
    align-items: start;
  }

  .m\:a_end {
    align-items: end;
  }

  .m\:a_center {
    align-items: center;
  }

  .m\:a_stretch {
    align-items: stretch;
  }
}

@media screen and (min-width: 901px) {
  .mob {
    display: none;
  }
}
