/*animations*/
@keyframes anim-1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes anim-2 {
  from {
    transform: translateY(5px);
  }
  to {
    transform: translateY(-5px);
  }
}
@keyframes anim-3 {
  0% {
    transform: scale(1) translate(0, 0);
    transform-origin: 84% 50%;
  }
  100% {
    transform: scale(1.25) translateX(20px);
    transform-origin: right;
  }
}
/*-animations*/
/*fonts*/
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GothicA1";
  src: url("../fonts/GothicA1-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.title-xl {
  display: block;
  font-weight: 700;
  font-size: 104px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #253640;
}

.title-x {
  display: block;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  text-transform: capitalize;
  color: #53AEE4;
}

.title-lg {
  display: block;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  color: #253640;
}

.title-l {
  display: block;
  font-weight: 500;
  font-size: 26px;
  line-height: 140%;
  color: #253640;
}

.text-xl {
  display: block;
  font-weight: 400;
  font-size: 41px;
  line-height: 120%;
  color: #253640;
}
.text-xl strong {
  font-weight: 400;
  color: #53AEE4;
}

.text-lg {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #959595;
}

.text-l {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #959595;
}

.content *:last-child {
  margin-bottom: 0px;
}
.content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #959595;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .title-xl {
    font-size: 80px;
  }

  .text-xl {
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .title-xl {
    font-size: 36px;
    line-height: 120%;
  }

  .title-x {
    font-size: 26px;
  }

  .title-l {
    font-size: 16px;
  }

  .text-xl {
    font-size: 16px;
    line-height: 140%;
  }
}
/*-fonts*/
/*options*/
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-thumb {
  background: #53AEE4;
}

body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

p {
  width: 100%;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  margin: 0px;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  opacity: 1;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
}
select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: "Montserrat", sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
}
textarea::-webkit-input-placeholder {
  color: #FFFFFF;
}
textarea::-moz-placeholder {
  color: #FFFFFF;
}
textarea:-ms-input-placeholder {
  color: #FFFFFF;
}
textarea:-moz-placeholder {
  color: #FFFFFF;
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
}
input::-webkit-input-placeholder {
  color: #FFFFFF;
}
input::-moz-placeholder {
  color: #FFFFFF;
}
input:-ms-input-placeholder {
  color: #FFFFFF;
}
input:-moz-placeholder {
  color: #FFFFFF;
}
input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

button {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
}
button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.section-one {
  padding: 170px 0px 75px 0px;
}

.section-two {
  padding: 75px 0px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 500px;
    padding: 0px 10px;
  }

  .section-one {
    padding: 100px 0px 40px 0px;
  }

  .section-two {
    padding: 40px 0px;
  }
}
/*-options*/
/*buttons*/
.btn-one {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 48px;
  padding: 0px 48px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #253640;
  transition: 0.2s;
}
.btn-one::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #253640;
  border-bottom: 1px solid #253640;
  transition: 0.4s;
}
.btn-one::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid #253640;
  border-top: 1px solid #253640;
  transition: 0.4s;
}

.btn-two {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 48px;
  padding: 0px 48px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF;
  transition: 0.2s;
}
.btn-two::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  transition: 0.4s;
}
.btn-two::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid #FFFFFF;
  border-top: 1px solid #FFFFFF;
  transition: 0.4s;
}

@media (min-width: 1200px) {
  .btn-one:hover {
    color: #53AEE4;
  }

  .btn-one:hover::after {
    width: 30px;
    height: 30px;
  }
  .btn-one:hover::before {
    width: 30px;
    height: 30px;
  }

  .btn-two:hover {
    color: #53AEE4;
  }

  .btn-two:hover::after {
    width: 30px;
    height: 30px;
  }
  .btn-two:hover::before {
    width: 30px;
    height: 30px;
  }
}
/*-buttons*/
/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  background: #FFFFFF;
}
.header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #53AEE4;
  transition: 0.7s;
}

.header.active:after {
  width: 100%;
}

.header-wrap {
  position: relative;
}

.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -320%);
  display: block;
  font-family: "GothicA1", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 100%;
  color: #253640;
  transition: color 0.15s, transform 1s;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.header-menu {
  display: flex;
  align-items: center;
}
.header-menu li {
  margin-right: 32px;
}
.header-menu a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #253640;
  transition: 0.15s;
}
.header-menu a:before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -5px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #53AEE4;
  border-bottom: 1px solid #53AEE4;
  transform: scale(0);
  transform-origin: left bottom;
  transition: 0.4s;
}

.header-burger {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 48px;
  height: 48px;
  padding: 18px 14px;
  background: #253640;
  border-radius: 50%;
}
.header-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 1200px) {
  .header-menu li {
    margin-right: 16px;
  }

  .header-logo {
    font-size: 22px;
  }
}
@media (max-width: 800px) {
  .header-nav {
    position: relative;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: #FFFFFF;
    padding: 150px 10px 48px 10px;
  }

  .header-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .header-menu li {
    margin-bottom: 32px;
  }
  .header-menu li:last-child {
    margin-bottom: 0px;
  }
  .header-menu a {
    font-size: 26px;
  }

  .header-btn {
    position: absolute;
    left: 10px;
    bottom: 48px;
    width: calc(100% - 20px);
  }

  .header-logo {
    position: relative;
    z-index: 2;
    left: auto;
    top: auto;
    transform: translate(0);
    font-size: 16px;
  }

  .header-wrap {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }

  .header-burger {
    display: flex;
  }
}
@media (min-width: 800px) {
  .header.active .header-logo {
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1200px) {
  .header-logo:hover {
    color: #53AEE4;
  }

  .header-menu a:hover:before {
    transform: scale(1);
  }
}
/*-header*/
/*footer*/
.footer {
  padding: 100px 0px 32px 0px;
  margin-top: 75px;
  background: #253640;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  display: block;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  text-transform: capitalize;
  color: #FFFFFF;
}

.footer-menu {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  margin-top: 48px;
}
.footer-menu a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF;
}
.footer-menu a:before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -5px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #53AEE4;
  border-bottom: 1px solid #53AEE4;
  transform: scale(0);
  transform-origin: left bottom;
  transition: 0.4s;
}

.footer-form {
  width: 570px;
}

.footer-form_title {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-form_descr {
  color: #FFFFFF;
  margin-bottom: 32px;
}

.footer-request {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.footer-request_input {
  width: 100%;
  margin-bottom: 10px;
}
.footer-request_input input {
  width: 100%;
  height: 56px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF;
  padding: 0px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}
.footer-request_input input:focus {
  border: 1px solid #FFFFFF;
}

.footer-request_police {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.footer-request_police input {
  position: absolute;
  z-index: -1;
  margin: 0px;
  padding: 0px;
  width: 0px;
  height: 0px;
}
.footer-request_police input:checked + .footer-request_cube {
  border: 1px solid #FFFFFF;
}

.footer-request_cube {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  min-width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}
.footer-request_cube::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #53AEE4;
}

.footer-request_text {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
}

.footer-request_btn {
  margin-top: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-info {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 72px;
  }

  .footer-menu a {
    text-align: center;
  }

  .footer-form {
    order: 1;
    width: 100%;
  }

  .footer-form_title {
    text-align: center;
  }

  .footer-form_descr {
    text-align: center;
  }
}
@media (max-width: 800px) {
  .footer {
    padding: 56px 0px 32px 0px;
    margin-top: 40px;
  }

  .footer-logo {
    font-size: 26px;
  }

  .footer-form_title {
    font-size: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-descr {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .footer-adress {
    font-size: 12px;
  }

  .footer-request_btn {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .footer-logo:hover {
    color: #53AEE4;
  }

  .footer-menu a:hover:before {
    transform: scale(1);
  }
}
/*-footer*/
/*start*/
.start-descr {
  max-width: 700px;
  margin-top: 32px;
}

.start-text {
  position: relative;
}

.start-btn {
  position: absolute;
  right: 0;
  bottom: -120px;
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: none;
}
.start-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../icons/elements/btn.svg") center no-repeat;
  background-size: contain;
  animation: anim-1 25s linear infinite;
}
.start-btn::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #253640;
  transition: 0.3s;
}
.start-btn svg {
  animation: anim-2 2s linear infinite alternate;
}

.start-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 640px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 72px;
}

@media (max-width: 1200px) {
  .start-img {
    background-attachment: scroll;
  }
}
@media (max-width: 800px) {
  .start-descr {
    margin-top: 16px;
  }

  .start-img {
    height: 220px;
    margin-top: 32px;
  }

  .start-btn {
    width: 60px;
    height: 60px;
    bottom: -60px;
  }
  .start-btn svg {
    width: 9px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .start-btn:hover:after {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
/*-start*/
/*about*/
.about-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-box {
  position: relative;
}

.about-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 570px;
  height: 640px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: anim-3 10s infinite linear alternate;
}

.about-text {
  width: 540px;
}

.about-sub {
  margin-top: 32px;
}

.about-content {
  margin-top: 32px;
}

.about-bg {
  position: absolute;
  z-index: 2;
  background: #53AEE4;
}

.about-bg.one {
  top: 63px;
  left: -78px;
  width: 212px;
  height: 2px;
  transform-origin: right;
}

.about-bg.two {
  top: 73px;
  left: -87px;
  width: 212px;
  height: 2px;
  transform-origin: right;
}

.about-bg.three {
  bottom: -78px;
  right: 68px;
  width: 2px;
  height: 112px;
  transform-origin: top;
}

.about-bg.three {
  bottom: -78px;
  right: 68px;
  width: 2px;
  height: 112px;
  transform-origin: top;
}

.about-bg.four {
  bottom: -78px;
  right: 58px;
  width: 2px;
  height: 112px;
  transform-origin: top;
}

.about-bg.five {
  bottom: -78px;
  right: 48px;
  width: 2px;
  height: 112px;
  transform-origin: top;
}

@media (max-width: 1200px) {
  .about-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .about-text {
    order: 1;
    width: 100%;
  }

  .about-box {
    order: 2;
    margin-top: 72px;
  }
}
@media (max-width: 800px) {
  .about-sub {
    margin-top: 16px;
  }

  .about-content {
    margin-top: 16px;
  }

  .about-box {
    width: 100%;
    margin-top: 48px;
  }

  .about-img {
    height: 400px;
    width: 100%;
  }

  .about-bg.one {
    top: -20px;
    left: -15px;
    width: 72px;
  }

  .about-bg.two {
    top: -10px;
    left: 0px;
    width: 72px;
  }

  .about-bg.three {
    height: 72px;
    bottom: -36px;
  }

  .about-bg.four {
    height: 72px;
    bottom: -36px;
  }

  .about-bg.five {
    height: 72px;
    bottom: -36px;
  }
}
/*-about*/
/*who*/
.who-top {
  display: flex;
  justify-content: space-between;
}

.who-title {
  width: 500px;
}

.who-text {
  width: 570px;
}

.who-content p {
  color: #253640;
}

.who-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 48px;
  grid-row-gap: 32px;
  margin-top: 48px;
}

.who-list_name {
  margin-top: 8px;
}

.who-author {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 74px;
  margin-top: 48px;
}

.who-author_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
}

.who-author_name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #53AEE4;
}

.who-author_descr {
  display: block;
  margin-top: 6px;
}

.who-slider {
  overflow: visible;
  margin-top: 72px;
}

.who-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}
.who-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-pagination {
  display: none;
}

.who-bg {
  position: absolute;
  z-index: 2;
  display: block;
}

.who-bg.one {
  left: -34px;
  bottom: 190px;
  width: 92px;
  height: 92px;
  border-left: 2px solid #53AEE4;
  border-bottom: 2px solid #53AEE4;
  transform-origin: left bottom;
}

.who-bg.two {
  left: -44px;
  bottom: 180px;
  width: 70px;
  height: 126px;
  border-left: 2px solid #53AEE4;
  border-bottom: 2px solid #53AEE4;
  transform-origin: left bottom;
}

@media (max-width: 1200px) {
  .who-top {
    display: block;
  }

  .who-text {
    width: 100%;
    margin-top: 32px;
  }

  .who-slide {
    width: 380px;
  }

  .who-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
  }
  .who-pagination .swiper-pagination-bullet {
    background: rgba(149, 149, 149, 0.2);
    opacity: 1;
  }
  .who-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: #53AEE4;
  }

  .who-bg.one {
    bottom: -24px;
    transform-origin: center;
  }

  .who-bg.two {
    bottom: -34px;
    transform-origin: center;
  }
}
@media (max-width: 800px) {
  .who-text {
    margin-top: 16px;
  }

  .who-list {
    grid-template-columns: 1fr;
    grid-row-gap: 32px;
  }

  .who-slider {
    margin-top: 48px;
  }

  .who-slide {
    width: 290px;
    height: 330px;
  }

  .who-bg.one {
    width: 2px;
    height: 126px;
    left: 10px;
    bottom: -33px;
  }

  .who-bg.two {
    width: 2px;
    height: 92px;
    left: 20px;
    bottom: -23px;
  }
}
@media (min-width: 1200px) {
  .who-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 30px;
    grid-column-gap: 30px;
  }

  .who-slide:nth-child(2) {
    margin-top: 225px;
  }
  .who-slide:nth-child(4) {
    margin-top: -225px;
  }
  .who-slide:nth-child(6) {
    margin-top: -225px;
  }
  .who-slide:nth-child(7) {
    margin-top: -225px;
  }
  .who-slide:nth-child(9) {
    margin-top: -225px;
  }
}
/*-who*/
/*criteria*/
.criteria-top {
  display: flex;
  justify-content: space-between;
}

.criteria-title {
  width: 500px;
}

.criteria-text {
  width: 570px;
}

.criteria-content {
  margin-top: 16px;
}

.criteria-wrap {
  position: relative;
}

.criteria-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 30px;
  margin-top: 72px;
}

.criteria-list_point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  border: 1px solid #959595;
  min-height: 222px;
}
.criteria-list_point::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #53AEE4;
  transition: 0.1s;
  opacity: 0;
}
.criteria-list_point img {
  width: 48px;
  height: 48px;
}

.criteria-list_title {
  margin-top: 16px;
}

.criteria-list_descr {
  margin-top: 8px;
}

.criteria-bg {
  position: absolute;
  display: block;
}

.criteria-bg.one {
  right: -34px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-right: 2px solid #53AEE4;
  border-bottom: 2px solid #53AEE4;
  transform-origin: right bottom;
}

.criteria-bg.two {
  right: -44px;
  bottom: -44px;
  width: 126px;
  height: 70px;
  border-right: 2px solid #53AEE4;
  border-bottom: 2px solid #53AEE4;
  transform-origin: right bottom;
}

@media (max-width: 1200px) {
  .criteria-top {
    display: block;
  }

  .criteria-text {
    width: 100%;
    margin-top: 32px;
  }

  .criteria-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .criteria-text {
    margin-top: 16px;
  }

  .criteria-list {
    grid-template-columns: 1fr;
    grid-row-gap: 16px;
    margin-top: 48px;
  }

  .criteria-list_point {
    min-height: 100%;
  }
}
@media (min-width: 1200px) {
  .criteria-list_point:hover:after {
    opacity: 1;
  }
}
/*-criteria*/