@import url("https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&display=swap");

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles */
ul[role=list],
ol[role=list],
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove default button styles */
button,
input,
select,
textarea {
  font: inherit;
}

/* Prevent text overflows */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}

/* Remove default link styles */
a {
  color: inherit;
  text-decoration: none;
}

/* Create a root stacking context */
#root,
#__next {
  isolation: isolate;
}

body {
  font-family: "Blinker", sans-serif;
  color: #001090;
}

@media (max-width: 1199px) {
  body.opened-nav {
    overflow: hidden;
  }
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 960px) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 600;
}

a:hover {
  color: #FF6600;
}

section {
  margin: 2rem 0;
}

@media (min-width: 960px) {
  section {
    margin: 2.5rem 0;
  }
}

.btn {
  border-radius: 3.125rem;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  padding: 0.7rem 3rem;
  box-shadow: 2px 2px 20px 0px rgba(0, 16, 144, 0.2);
  text-transform: uppercase;
  font-weight: 600;
  border: 0;
  transition: all 0.25s ease;
  cursor: pointer;
}

@media (min-width: 960px) {
  .btn {
    padding: 0.85rem 4rem;
  }
}

.btn--primary {
  background: #FF6600;
  color: white;
}

.btn--primary:hover {
  background: #001090;
  color: white;
}

.btn--secondary {
  background: #001090;
  box-shadow: none;
  color: white;
}

.btn--secondary:hover {
  background: #FF6600;
  color: white;
}

input[type=text] {
  border-radius: 3.125rem;
  padding: 0.5rem 1rem;
  width: 100%;
  border: 0;
  border: 2px solid #8CABD9;
  outline: none;
}

input[type=text]::placeholder {
  color: #001090;
}

input[type=text]:focus {
  border-color: #FF6600;
}

.input-container {
  display: flex;
  position: relative;
}

.input-icon {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
}

.input--with-icon input {
  padding-left: 2rem;
}

.container {
  width: 100%;
  max-width: 58.75rem;
  margin: auto;
  padding: 0 0.5rem;
}

.header {
  box-shadow: 2px 2px 30px 0px rgba(0, 16, 144, 0.1490196078);
  margin-bottom: 2rem;
  padding: 0.5rem 0;
  height: 3.125rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1200px) {
  .header {
    height: 4.375rem;
    box-shadow: none;
  }
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: inline-flex;
  width: 9.375rem;
}

@media (min-width: 1200px) {
  .header-logo {
    width: 13.125rem;
  }
}

@media (max-width: 1199px) {
  .header__nav--main {
    position: fixed;
    overflow-y: auto;
    inset: 0;
    top: 3.125rem;
    background: white;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.2s ease-in-out;
    z-index: 5;
  }

  .header__nav--main.opened-nav {
    opacity: 1;
    transform: translateX(0);
  }

  .header__nav--main::before {
    content: "";
    display: block;
    width: 100%;
    height: 2.5rem;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 17, 144, 0.0431372549), transparent);
  }
}

@media (min-width: 1200px) {
  .header__nav--main {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 1rem;
  }
}

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

@media (min-width: 1200px) {
  .header__list--main {
    gap: 4px;
    flex-direction: row;
    align-items: center;
  }
}

.header__sublist {
  display: none;
  background: white;
  width: 100%;
}

@media (min-width: 1200px) {
  .header__sublist {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12.5rem;
  }
}

@media (max-width: 1199px) {
  .header__sublist.opened-sublist {
    display: block;
  }
}

.header__subitem {
  position: relative;
}

@media (min-width: 1200px) {
  .header__subitem {
    border-top: 1px solid #DAE8F3;
  }
}

.header__sublink {
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  color: #001090;
}

.header__sublink--active {
  color: #FF6600;
}

.header__sublist-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.header__sublist-btn svg {
  width: 1.5rem;
}

@media (min-width: 1200px) {
  .header__sublist-btn {
    padding: 0;
    width: 1rem;
  }
}

.header__sublist-btn.opened-sublist {
  transform: rotate(180deg);
}

.header__sublist-btn.opened-sublist svg {
  fill: white;
}

.header__item--main {
  border-bottom: 1px solid #DAE8F3;
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .header__item--main {
    flex-wrap: nowrap;
    border: 0;
  }

  .header__item--main:hover .header__sublist {
    display: block;
  }

  .header__item--main:hover .header__sublist-btn svg {
    transform: rotate(180deg);
    fill: #FF6600;
  }

  .header__item--main.header__item--active {
    background-color: #F0F6FA;
    padding: 0 0.5rem;
    position: relative;
  }

  .header__item--main.header__item--active::before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    background-color: #F0F6FA;
    top: -1rem;
    left: 0;
    height: 1rem;
  }

  .header__item--main.header__item--active::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    background-color: #F0F6FA;
    bottom: -1rem;
    left: 0;
    height: 1rem;
    border-radius: 0 0 1.875rem 1.875rem;
  }

  .header__item--main.header__item--active:hover {
    background: none;
  }

  .header__item--main.header__item--active:hover::before,
  .header__item--main.header__item--active:hover::after {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header__item--main:has(.opened-sublist) {
    background: #FF6600;
    color: white;
  }
}

.header__link--main {
  padding: 1rem;
  transition: background 0.2s ease-in-out;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  justify-content: center;
  font-weight: 600;
}

.header__link--main img {
  width: 1rem;
}

.header__link--main.active,
.header__sublink.active {
  color: #FF6600;
}

.header__link--main.active:has(+ .opened-sublist) {
  color: white;
}

@media (min-width: 1200px) {
  .header__link--main {
    padding: 12px 8px;
  }

  .header__link--main.active,
  .header__sublink.active {
    color: #FF6600;
  }
}

.header__link--main:hover {
  color: #FF6600;
}

.header__item--client {
  padding: 1rem;
}

@media (min-width: 1200px) {
  .header__item--client {
    order: 9998;
    padding: 0;
    margin-left: 1rem;
  }
}

.header__item--client a:hover {
  color: white;
}

.header__item--client .btn {
  padding-inline: 1rem;
  padding-block: 0.9rem;
  width: 100%;
}

@media (min-width: 520px) {
  .header__item--client .btn {
    width: auto;
  }
}

.header__item--lang {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .header__item--lang {
    order: 9999;
    padding: 0;
    margin-left: 0.5rem;
    flex-direction: column;
    gap: 0.3rem;
  }
}

.header__item--lang img {
  width: 1.25rem;
  border-radius: 0.3125rem;
  overflow: hidden;
  border: 1px solid #001090;
}

.header__nav-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 32px;
  padding: 0.2125rem 0;
  z-index: 20;
  position: relative;
  grid-area: nav;
  justify-self: end;
  background: none;
  border: 0;
}

@media (min-width: 1200px) {
  .header__nav-btn {
    display: none;
  }
}

.header__nav-btn span {
  display: block;
  width: 100%;
  height: 0.3125rem;
  background: #001090;
  transition: all 0.2s ease-in-out;
}

.header__nav-btn.opened-nav span:first-child {
  transform-origin: center;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
}

.header__nav-btn.opened-nav span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
  position: absolute;
}

.header__nav-btn.opened-nav span:last-child {
  transform-origin: center;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
}

.lang-item {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  opacity: 0.5;
}

.lang-item--active {
  opacity: 1;
}

.slider {
  position: relative;
}

.slide {
  position: relative;
  aspect-ratio: 350/555;
  max-height: 37.5rem;
  border-radius: 1.875rem;
  overflow: hidden;
  padding-bottom: 2rem;
}

@media (min-width: 680px) {
  .slide {
    max-height: 23.75rem;
  }
}

.slide-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.slide-text {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.slide-text--special {
  color: white;
}

@media (min-width: 760px) {
  .slide-text {
    padding: 2rem 2.5rem 1rem;
  }
}

.slide-main {
  padding: 0.5rem 1.5rem;
  position: relative;
}

.slide-main h2 {
  color: white;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

@media (min-width: 30rem) {
  .slide-main h2 {
    font-size: 2.8125rem;
  }
}

@media (min-width: 760px) {
  .slide-main h2 {
    font-size: 3.125rem;
    max-width: 31.25rem;
  }
}

.slide-main p {
  color: #FF6600;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
}

@media (min-width: 760px) {
  .slide-main p {
    font-size: 1.875rem;
    max-width: 31.25rem;
  }
}

.slide-main p.slide-text--special {
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 760px) {
  .slide-main p.slide-text--special {
    font-size: 3.125rem;
    max-width: none;
  }
}

.slide-corner {
  position: absolute;
  width: 1.875rem;
  height: 1.875rem;
  top: 0;
  left: 0;
}

.slide-check-form {
  margin-top: auto;
  position: absolute;
  z-index: 5;
  bottom: 3rem;
  left: 50%;
  width: 100%;
  max-width: 90%;
  transform: translateX(-50%);
}

@media (min-width: 760px) {
  .slide-check-form {
    max-width: 35.25rem;
    left: 2.5rem;
    transform: none;
  }
}

.slide-check-form p {
  text-align: center;
  color: white;
  font-weight: 600;
  padding: 0 1.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 760px) {
  .slide-check-form p {
    text-align: left;
  }
}

.slide-form {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

@media (min-width: 760px) {
  .slide-form {
    position: relative;
  }

  .slide-form input[type=text] {
    padding-block: 1rem;
  }

  .slide-form .btn {
    position: absolute;
    padding: 0.6rem 1rem;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

.swiper-pagination-bullet {
  width: 3.125rem;
  height: 0.625rem;
  border: 2px solid white;
  border-radius: 0.375rem;
  opacity: 1;
  background: none;
}

.swiper-pagination-bullet-active {
  background: white;
}

.types {
  color: #001090;
}

.types h2 {
  text-align: center;
}

.types-list1 {
  display: grid;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  width: 33.3%;
}

.types-list2 {
  display: grid;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  width: 66.6%;
}

.types-list3 {
  display: grid;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 760px) {
  .types-list1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 760px) {
  .types-list2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  .types-list3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.type-detail {
  max-width: 46.875rem;
  margin: auto;
}

@media (min-width: 960px) {
  .type-detail {
    display: flex;
    align-items: center;
  }
}

.type-detail .type-item {
  width: 100%;
}

@media (min-width: 960px) {
  .type-detail .type-item {
    flex-shrink: 0;
    width: 18.75rem;
  }
}

.type-detail .type-item__activate {
  margin-bottom: 0;
}

.type-detail__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #DAE8F3;
  border-top: 0;
  border-radius: 0 0 1.875rem 1.875rem;
  padding: 1.5rem;
  margin: 0 2rem;
}

@media (min-width: 960px) {
  .type-detail__content {
    border-top: 1px solid #DAE8F3;
    border-left: 0;
    margin: 0;
    border-radius: 0 1.875rem 1.875rem 0;
  }
}

.type-detail__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.type-detail__icon {
  width: 2.5rem;
  flex-shrink: 0;
}

.type-item {
  background: #F0F6FA;
  border-radius: 1.875rem;
  box-sizing: border-box;
  border: 4px solid white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #001090;
  text-align: center;
  width: 17.5rem;
}

@media (min-width: 760px) {
  .type-item {
    width: auto;
  }
}

.type-item:hover {
  background: #d0d6ee;
  cursor: pointer;
}

.type-item:hover .btn--primary {
  background: #001090;
}

.type-item__header {
  width: 100%;
  padding: 1rem;
  background: #001090;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: 1.6rem 1.6rem 0 0;
  position: relative;
  overflow: hidden;
}

.type-item__header .action {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 0.5rem;
  background: #FF6600;
  padding: 0.25rem 0.5rem;
  display: inline-block;
  width: 8rem;
  position: absolute;
  left: -2rem;
  text-align: center;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.type-item__content {
  padding: 1rem;
}

.type-item__speed {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.type-item__speed .speed {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.type-item__price {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.type-item__price .price {
  font-size: 4.125rem;
  font-weight: 600;
  line-height: 1;
  color: #FF6600;
}

.type-item__price .price-info {
  padding: 0 2rem;
}

.type-item__activate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.type-item__activate .activate-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.type-item__activate .activate-price {
  font-weight: 600;
}

.type-item__activate .activate-price--highlight {
  color: #FF6600;
}

.type-item--internet {
  padding: 0;
}

.type-icon {
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 0.5rem;
}

.type-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.type-description {
  margin-bottom: 1rem;
}

.services-list {
  display: grid;
  padding: 0 2.5rem;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 760px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}

.service-item {
  display: flex;
  width: 17.5rem;
  flex-direction: column;
  align-items: center;
  border: 1px solid #DAE8F3;
  border-radius: 1.875rem;
  padding: 0 1rem 2rem;
}

.service-img {
  width: 13.75rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #001090;
  margin-bottom: 1rem;
}

.service-link {
  color: #FF6600;
  text-transform: uppercase;
  font-weight: 600;
}

.service-item:hover .service-link {
  color: #001090;
}

.why {
  background: linear-gradient(180deg, rgba(240, 246, 250, 0) 0%, #F0F6FA 100%);
  border-radius: 1.875rem;
  max-width: 21.25rem;
  margin: auto;
}

@media (min-width: 760px) {
  .why {
    max-width: none;
  }
}

.why-inner {
  padding: 2.5rem;
}

@media (min-width: 760px) {
  .why-inner {
    display: grid;
    grid-template-columns: 1fr 18.75rem;
    gap: 2rem;
  }
}

.why .slide-corner {
  left: -1.5rem;
  top: -1rem;
}

.why h2 {
  position: relative;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.why h3 {
  font-size: 2.8125rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 760px) {
  .why h3 {
    margin-bottom: 1rem;
  }
}

.why-list {
  margin-block: 2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .why-list {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
  }
}

.why-item {
  display: grid;
  grid-template-columns: 3.125rem 1fr;
  gap: 0.5rem;
  font-weight: 600;
  align-items: center;
}

.why-icon {
  width: 2.8125rem;
  height: 2.8125rem;
  border-radius: 50%;
  background: #FF6600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-icon img {
  width: 2.5rem;
}

footer {
  color: white;
  background-color: #001090;
  background-image: url("../images/pattern.svg");
  background-size: 56px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 2rem 0 5rem;
}

footer .container {
  display: grid;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 760px) {
  footer .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

footer p {
  padding-left: 3.4rem;
  margin-bottom: 0.8rem;
  position: relative;
}

@media (min-width: 760px) {
  footer p {
    padding-left: 2rem;
  }
}

.footer-logo {
  width: 13.125rem;
}

.footer-col {
  width: 280px;
}

@media (min-width: 760px) {
  .footer-col {
    width: auto;
  }
}

.footer-icon {
  width: 1.125rem;
  height: 1.125rem;
  display: inline;
  vertical-align: middle;
  margin-left: -1.2rem;
}

.logo-claim {
  color: #FF6600;
  font-weight: 600;
  padding-left: 3.4rem;
  line-height: 1;
  font-size: 1.25rem;
}

.hero {
  position: relative;
  width: 100%;
  height: 34.6875rem;
  border-radius: 1.875rem;
  overflow: hidden;
  padding: 1.5rem;
  background: url("../images/hero-bg.jpg") no-repeat center center;
  background-size: cover;
  display: grid;
  grid-template-areas: "title" "image" "form";
}

@media (min-width: 680px) {
  .hero {
    aspect-ratio: 940/380;
    grid-template-areas: "image title" "image form";
  }
}

.hero--reverse {
  display: flex;
}

.hero--reverse .hero-text {
  flex-direction: column;
  height: 100%;
}

.hero--reverse .hero-text .slide-main {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero--reverse .hero-text .slide-main .slide-text--special {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero--reverse .hero-text .slide-main p:not(.slide-text--special) {
  margin-top: 1.5rem;
}

.hero--reverse .hero-text h2 {
  max-width: none;
}

@media (min-width: 680px) {
  .hero--reverse .hero-text {
    max-width: 42rem;
  }
}

.hero--reverse .hero__contacts {
  margin-top: auto;
}

.hero--reverse .hero__contacts p {
  margin: 0 !important;
}

@media (min-width: 960px) {
  .hero {
    max-height: 21.875rem;
    padding: 2rem 4rem 2rem 2rem;
  }
}

.hero h1 {
  position: relative;
}

.hero-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: image;
  width: 100%;
  margin: 1rem 0;
}

.hero-img img {
  height: 8.125rem;
}

@media (min-width: 680px) {
  .hero-img img {
    height: 15.5rem;
  }
}

.hero-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  grid-area: title;
}

.hero-text--special {
  color: white;
}

@media (min-width: 680px) {
  .hero-text {
    align-self: start;
    max-width: 33rem;
    margin-bottom: 1.5rem;
  }
}

.hero-check-form {
  grid-area: form;
}

.hero-check-form p {
  text-align: center;
  color: white;
  font-weight: 600;
  padding: 0 1.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

@media (min-width: 680px) {
  .hero-check-form p {
    text-align: left;
  }
}

@media (min-width: 680px) {
  .hero-check-form {
    max-width: 35.25rem;
  }
}

.hero__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

@media (max-width: 680px) {
  .hero__contacts {
    display: none;
  }
}

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

.hero__contact:first-child p {
  font-size: 2.5rem;
}

.hero__contact img {
  width: 1.5rem;
}

.hero__contact p {
  margin-bottom: 0;
}

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.title-corner {
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  position: relative;
  margin-right: -1rem;
  top: -0.5rem;
}

@media (min-width: 960px) {
  .net-form {
    margin-top: 2rem;
  }
}

.net-form .container {
  background: white;
  box-shadow: 2px 2px 60px 0px rgba(0, 16, 144, 0.1019607843);
  border-radius: 1.875rem;
  padding: 2rem;
  width: 100%;
  max-width: 46.875rem;
}

@media (min-width: 960px) {
  .net-form .container {
    padding: 4rem 0;
  }
}

.net-form__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 31.25rem;
  margin: auto;
}

.net-form__form input[type=text],
.net-form__form textarea {
  padding: 0.85rem 1.5rem;
}

.net-form__form input[type=text]::placeholder,
.net-form__form textarea::placeholder {
  color: #8CABD9;
}

.net-form__form textarea {
  border-radius: 1.875rem;
  padding: 1rem;
  width: 100%;
  border: 0;
  border: 2px solid #8CABD9;
  outline: none;
  min-height: 10rem;
}

.net-form__form .btn {
  max-width: 23.4375rem;
  margin: auto;
}

.input-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.net-services__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 760px) {
  .net-services__list {
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .net-services__list {
    gap: 2rem;
  }
}

.net-services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 21.25rem;
}

@media (min-width: 760px) {
  .net-services__item {
    width: 33.3%;
  }
}

.net-form__footer {
  margin-bottom: 1.5rem;
}

.content-inner {
  padding: 0 1.2rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FF6600;
  text-decoration: none;
}

.contact-link img {
  width: 1.25rem;
}

@media (min-width: 960px) {
  .support-time {
    margin-top: 2rem;
  }
}

.support-time__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.support-time__title img {
  width: 1.25rem;
}

.support-time__text {
  padding-left: 1.8rem;
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .contacts {
    margin: 4rem 0;
  }
}

.contacts-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 960px) {
  .contacts-inner {
    flex-direction: row;
  }
}

@media (min-width: 960px) {
  .contacts-content {
    width: 18.75rem;
    flex-shrink: 0;
  }
}

@media (min-width: 960px) {
  .contacts-map {
    margin-top: 0;
    flex: 1;
  }
}

.contacts-map iframe {
  width: 100%;
  height: 20rem;
}

@media (min-width: 960px) {
  .contacts-map iframe {
    height: 30rem;
  }
}

.support .container {
  display: grid;
  grid-template-areas: "title" "image" "content";
}

@media (min-width: 760px) {
  .support .container {
    grid-template-areas: "image title" "image content";
    grid-template-rows: auto 1fr;
  }
}

.support h2 {
  grid-area: title;
  text-align: center;
}

@media (min-width: 760px) {
  .support h2 {
    text-align: left;
    margin-top: 3rem;
  }
}

.support-content {
  grid-area: content;
}

.support-image {
  grid-area: image;
  flex-shrink: 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 960px) {
  .faq-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

.accordion-item {
  padding: 1rem 0;
}

.accordion-category {
  margin-bottom: 2rem;
  background: linear-gradient(180deg, rgba(240, 246, 250, 0) 0%, #F0F6FA 100%);
  border-radius: 0 0 1.875rem 1.875rem;
}

@media (min-width: 960px) {
  .accordion-category {
    flex: 1;
  }
}

.accordion-item:not(:last-child) {
  border-bottom: 1px solid #DAE8F3;
}

.category-summary {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 2px 2px 60px 0px rgba(0, 16, 144, 0.1019607843);
  border-radius: 1.875rem;
  padding: 1rem 1.5rem;
}

.category-summary svg.arrow-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  color: #FF6600;
}

.accordion-category[open] .category-summary svg.arrow-icon {
  transform: rotate(180deg);
}

.accordion-inner {
  padding: 0 1.5rem;
}

.accordion-summary {
  font-weight: bold;
  font-size: 1rem;
  color: #0018a8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-summary svg.arrow-icon {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.accordion-item[open] .accordion-summary {
  color: #ff7a00;
}

.accordion-item[open] .accordion-summary svg.arrow-icon {
  transform: rotate(180deg);
}

.accordion-content {
  color: #0018a8;
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.accordion-item[open] .accordion-content {
  height: auto;
  opacity: 1;
  margin-top: 8px;
}

.about .about-texts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: linear-gradient(180deg, rgba(240, 246, 250, 0) 0%, #F0F6FA 100%);
  border-radius: 1.875rem;
  padding: 1.5rem;
}

@media (min-width: 960px) {
  .about .about-texts {
    flex-direction: row;
    align-items: center;
  }
}

.about-text {
  padding: 0 1rem;
}

.about-text h2 {
  margin-left: -1rem;
}

@media (min-width: 960px) {
  .about-logo {
    width: 17.5rem;
    flex-shrink: 0;
  }
}

.about-logo img {
  max-width: 18.75rem;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 960px) {
  .about-points {
    flex-direction: row;
    margin-top: 0;
  }
}

.about-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

@media (min-width: 960px) {
  .timeline {
    margin: 4rem 0;
  }
}

.timeline .container {
  max-width: 28.125rem;
  margin: auto;
}

.timeline-list {
  margin: 0 1.5rem;
}

.timeline-start {
  display: block;
  width: 3.25rem;
  min-height: 2.875rem;
  background: url(../images/icon-timelineb.svg) no-repeat center center;
  flex-shrink: 0;
  position: relative;
}

.timeline-stop {
  display: block;
  width: 3.25rem;
  min-height: 2.875rem;
  background: url(../images/icon-timelines.svg) no-repeat center center;
  flex-shrink: 0;
  position: relative;
}

.timeline-separator {
  display: block;
  width: 3.25rem;
  min-height: 2.875rem;
  background: url(../images/icon-timeline.svg) no-repeat center center;
  flex-shrink: 0;
  position: relative;
}

/*

.timeline-separator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/separator-repeat.png) repeat-y center center;
  z-index: -1;
}

*/

.timeline-item {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.timeline-item h3 {
  color: #FF6600;
  font-family: monospace;
  font-size: 17px;
  font-weight: 600;
  align-self: center;
}

.timeline-item p {
  margin: 0;
  font-weight: 600;
  color: #001090;
  align-self: center;
}

.btn--inverse {
  background: #000A5C8C;
  color: white;
  border: 2px solid #FF6600;
}

.btn--inverse:hover {
  background: #FF6600;
  color: white;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.hero-text-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 680px) {
  .hero-text-btns {
    flex-direction: row;
  }
}

.error {
  text-align: center;
  color: red;
  padding: 10px 0;
}

.success {
  text-align: center;
  color: green;
  padding: 10px 0;
}

/* dokumenty */

.icon-doc {
  display: block;
  width: 15%;
  height: auto;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: 5%;
  margin-right: 10%;
}

.files-box ul li {
  float: left;
  width: 50%;
  padding: 0 30px;
  margin-bottom: 15px;
}

@media (max-width: 960px) {

  .files-box ul li {
    width: 100%;
  }
}

.files-box ul li a {
  display: block;
  font-size: 16px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0px 50px 0 69px;
  position: relative;
  overflow: hidden;
}

.files-box .icon-file {
  width: 50px;
  display: inline-block;
  border-right: 1px solid #e5e5e5;
  height: 100%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
}

.files-box .btn-download {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
}

/* vyjadreni k sitim */

.vyjadreni {
  display: block !important;
  padding: 30px;
}

.vyjadreni h2,
.vyjadreni h3 {
  color: #ff6600;
  margin-bottom: 1em;
}

.vyjadreni ul {
  margin: 10px;
  padding: 2px;
}

.vyjadreni li {
  margin: 10px;
  padding: 2px;
  list-style: disc;
  display: block;
  display: list-item;
}

.vyjadreni table {
  margin: 30px 0;
}

.vyjadreni table tr:nth-child(even) {
  background: #eeeeee;
}

.vyjadreni table td {
  padding: 12px 12px;
  border: 1px solid #ddd;
}

.vyjadreni a:hover {
  color: #ff6600;
}
