*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: 'Outfit', sans-serif;
}

a {
  color: #039bfc;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

picture {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.title {
  font-family: 'Outfit';
  font-weight: 700;
  font-size: 36px;
  color: #0d2a5b;
}

.app {
  position: relative;
}

.gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1110px;
  z-index: -1;
  background: -webkit-linear-gradient(
    180deg,
    rgba(77, 187, 255, 0.3) 0%,
    rgba(77, 187, 255, 0) 100%
  );
  background: -moz-linear-gradient(
    180deg,
    rgba(77, 187, 255, 0.3) 0%,
    rgba(77, 187, 255, 0) 100%
  );
  background: -o-linear-gradient(
    180deg,
    rgba(77, 187, 255, 0.3) 0%,
    rgba(77, 187, 255, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(77, 187, 255, 0.3) 0%,
    rgba(77, 187, 255, 0) 100%
  );
}

.swiper__btn {
  cursor: pointer;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: color 0.5s linear;
  -moz-transition: color 0.5s linear;
  -o-transition: color 0.5s linear;
  transition: color 0.5s linear;
}
.swiper__btn:disabled {
  cursor: auto;
}

.swiper__btn:focus-visible {
  outline: 2px solid #1a68c4;
}

@media (hover: hover) {
  .swiper__btn:not(:disabled):hover {
    color: #0f4194;
    -webkit-transition: color 0.1s linear;
    -moz-transition: color 0.1s linear;
    -o-transition: color 0.1s linear;
    transition: color 0.1s linear;
  }
}

header.header.sticky {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 100;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

main.sticky {
  margin-top: 99px;
}

@media (max-width: 1199px) {
  .title {
    font-size: clamp(22px, 2.865vw, 36px);
  }
  .main.sticky {
    margin-top: 68px;
  }

  .swiper__btn {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 639px) {
  .swiper__btn {
    width: 32px;
    height: 32px;
  }
  .title {
    font-size: 24px;
  }
	
}
