@import url(/assets/Montserrat/Montserrat.css);
html *,
html ul,
html p {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  outline: none;
  font-family: "Montserrat", sans-serif;
  color: white;
  line-height: 1.5;
}
html a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
html a:hover {
  color: inherit;
  text-decoration: none;
}
html section {
  overflow: hidden;
}
html p {
  font-size: 16px;
  color: #ffffff;
}
html h1 {
  font-size: 48px;
  font-weight: 600;
}
html h2 {
  font-size: 32px;
  font-weight: 600;
}
html h3 {
  font-weight: 500;
  font-size: 20px;
}
html h4 {
  font-weight: 500;
  font-size: 18px;
}
html h5 {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}
html input::-webkit-outer-spin-button,
html input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html body {
  margin: 0;
}
html .btn-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 60px;
  border: 2px solid #EF2121;
  transition: all 0.5s ease;
}
html .btn-default:hover {
  color: black;
  background: #A0E5AF;
  border: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000000;
}
header .navigation {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  transition: all 0.3s ease;
}
header .navigation .logo {
  display: flex;
}
header .navigation .links {
  display: flex;
  justify-content: space-between;
  max-width: 670px;
  align-items: center;
  width: 100%;
}
header .navigation .links li a {
  transition: all 0.3s ease;
  font-weight: 700;
}
header .navigation .links li a:hover {
  color: #A0E5AF;
}
header .navigation .links li a.active {
  color: #A0E5AF;
}
header .navigation .mobile-btns {
  display: none;
}

main {
  background: #000;
  padding: 120px 100px 0;
}
main .subtitle {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 50px;
}
main .subtitle span {
  color: #A0E5AF;
}
main .introduction {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .introduction .info {
  width: 50%;
}
main .introduction .info h1 {
  font-size: 44px;
  font-weight: 700;
}
main .introduction .info h1 span {
  font-size: 55px;
  color: #A0E5AF;
}
main .introduction .info p {
  padding: 15px 0;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.8;
}
main .introduction .img {
  width: 40%;
  display: flex;
}
main .introduction .img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
main .services {
  padding-top: 100px;
}
main .services .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main .services .items .item {
  width: 30%;
  margin-bottom: 30px;
}
main .services .items .item .img {
  width: 100%;
}
main .services .items .item .img img {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}
main .services .items .item .text {
  border-radius: 0 0 20px 20px;
  width: 100%;
  height: 90px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -10px;
}
main .services .items .item .text h4 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
main .promotion {
  padding-top: 80px;
  padding-bottom: 100px;
}
main .promotion .accordion .accordion-item {
  margin-bottom: 20px;
  border-radius: 10px;
}
main .promotion .accordion .accordion-item .accordion-button {
  color: white;
  font-size: 20px;
  font-weight: 600;
}
main .tariffs .priceList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main .tariffs .priceList .price {
  width: 30%;
  background-color: #1c1c1c;
  border-radius: 10px;
  padding: 20px 15px 80px;
  margin-bottom: 30px;
  filter: drop-shadow(0 4px 4px 0 rgba(0, 0, 0, 0.3));
}
main .tariffs .priceList .price h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
main .tariffs .priceList .price h4 span {
  color: #A0E5AF;
  font-size: 40px;
  font-weight: 700;
}
main .tariffs .priceList .price ul li {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
main .tariffs .priceList .price ul li p {
  padding-left: 10px;
}
main .tariffs .priceList .price ul li img {
  width: 10px;
}

footer {
  width: 100%;
  padding: 50px 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #000;
}
footer .f-link {
  flex-basis: 20%;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
footer .f-link a {
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
  transition: all 0.3s ease;
}
footer .f-link a:hover {
  color: #A0E5AF;
}

@media (max-width: 1600px) {
  main .introduction .info {
    width: 65%;
  }
  main .introduction .info p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1px;
  }
  main .introduction .img {
    width: 30%;
  }
  main .promotion {
    padding: 30px 0 50px;
  }
}
@media (max-width: 1200px) {
  header .navigation {
    height: 60px;
    padding: 0px 30px;
  }
  header .navigation .logo {
    height: 40px;
  }
  header .navigation .links {
    padding-left: 20px;
  }
  main {
    padding: 60px 30px 0;
  }
  main .subtitle {
    font-size: 32px;
    padding-bottom: 30px;
  }
  main .introduction .info {
    width: 65%;
  }
  main .introduction .info h1 {
    font-size: 32px;
  }
  main .introduction .info h1 span {
    font-size: 40px;
  }
  main .introduction .info p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1px;
  }
  main .introduction .img {
    width: 30%;
  }
  main .services {
    padding-top: 50px;
  }
  main .services .items .item {
    width: 45%;
  }
  main .services .items .item .text h4 {
    font-size: 18px;
  }
  main .promotion {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  main .tariffs .priceList .price {
    width: 45%;
  }
  footer .f-link {
    flex-basis: 25%;
  }
}
@media (max-width: 800px) {
  html p {
    font-size: 14px;
  }
  header .navigation {
    padding: 20px;
  }
  header .navigation .logo {
    height: 35px;
    display: flex;
  }
  header .navigation .links {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 60px 20px 100px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background: #000000;
    transform: translateX(100%);
    transition: all 0.3s ease;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: unset;
  }
  header .navigation .links.active {
    transform: unset;
  }
  header .navigation .links li a {
    padding: 15px 0;
    display: flex;
  }
  header .navigation .mobile-btns {
    display: flex;
  }
  header .navigation .mobile-btns .hamburger {
    display: inline-block;
    height: 35px;
    width: 35px;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.5s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  header .navigation .mobile-btns .hamburger:hover {
    opacity: 0.7;
  }
  header .navigation .mobile-btns .hamburger.is-active:hover {
    opacity: 0.7;
  }
  header .navigation .mobile-btns .hamburger.is-active .hamburger-inner,
  header .navigation .mobile-btns .hamburger.is-active .hamburger-inner::before,
  header .navigation .mobile-btns .hamburger.is-active .hamburger-inner::after {
    background-color: white;
  }
  header .navigation .mobile-btns .hamburger-box {
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
  }
  header .navigation .mobile-btns .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  header .navigation .mobile-btns .hamburger-inner,
  header .navigation .mobile-btns .hamburger-inner::before,
  header .navigation .mobile-btns .hamburger-inner::after {
    width: 35px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
  header .navigation .mobile-btns .hamburger-inner::before,
  header .navigation .mobile-btns .hamburger-inner::after {
    content: "";
    display: block;
  }
  header .navigation .mobile-btns .hamburger-inner::before {
    top: -13px;
  }
  header .navigation .mobile-btns .hamburger-inner::after {
    bottom: -13px;
  }
  header .navigation .mobile-btns .hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header .navigation .mobile-btns .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.12s ease, opacity 0.1s ease;
  }
  header .navigation .mobile-btns .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.12s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header .navigation .mobile-btns .hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.2s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  header .navigation .mobile-btns .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.2s ease;
  }
  header .navigation .mobile-btns .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.2s cubic-bezier(0.2, 0.61, 0.355, 1);
  }
  main {
    padding: 60px 20px 0;
  }
  main .subtitle {
    font-size: 24px;
  }
  main .introduction {
    flex-wrap: wrap;
  }
  main .introduction .info {
    width: 100%;
  }
  main .introduction .info p {
    text-align: center;
    padding-bottom: 15px;
  }
  main .introduction .info h1 {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
  }
  main .introduction .info h1 span {
    font-size: 32px;
    font-weight: 500;
  }
  main .introduction .info h1 .dash {
    display: none;
  }
  main .introduction .img {
    width: 80%;
    margin: auto;
  }
  main .services {
    padding-top: 30px;
  }
  main .services .items .item {
    width: 80%;
    margin: auto;
    margin-bottom: 20px;
  }
  main .services .items .item .text {
    height: 60px;
  }
  main .services .items .item .text h4 {
    font-size: 18px;
  }
  main .promotion {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  main .promotion .accordion .accordion-item .accordion-button {
    font-size: 16px;
    font-weight: 500;
  }
  main .tariffs .priceList .price {
    width: 100%;
    padding: 20px;
  }
  main .tariffs .priceList .price h4 span {
    font-size: 32px;
  }
  main .tariffs .priceList .price ul li {
    justify-content: center;
  }
  main .tariffs .priceList .price ul li img {
    display: none;
  }
  main .tariffs .priceList .price ul li p {
    text-align: center;
  }
  footer {
    padding: 20px;
  }
  footer .f-link {
    flex-basis: 50%;
  }
}
@media (max-width: 500px) {
  main .services .items .item {
    width: 100%;
  }
  main .services .items .item .text {
    margin-top: 0;
  }
  main .introduction .img {
    display: none;
  }
  main .promotion .accordion .accordion-item .accordion-button {
    font-size: 16px;
    font-weight: 400;
  }
  footer .f-link {
    flex-basis: 100%;
  }
  footer .f-link img {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */