* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --gold: #c9b698;
  --blue: #49516f;
  --blueLight: #6279b8;
}

body {
  background-image: url(./../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.glass {
  background-color: var(--blue);
  color: var(--gold);
  border-radius: 20px;
  backdrop-filter: blur(1px);
  border: 2px solid #868686b0;
  box-shadow: 0 0 19px 0px #00000057;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.location {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
  border: 2px solid var(--gold);
  padding: 3px 15px;

  & img {
    width: 20px;
  }

  & h4 {
    font-size: 18px;
    color: var(--gold);
    font-weight: 300;
  }
}

.header {
  background-color: var(--blue);
  color: #000;
  position: relative;
  padding: 10PX 0;
  color: var(--gold);
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: var(--gold);
}

.nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin-top: 30px;
}

.logo {
  & h1 {
    font-weight: 400;
    font-size: 38px;
    text-transform: uppercase;
  }
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;

  & a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
  }
}

.hero {
  margin: 40px 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.hero-img {
  width: 100%;
  border-radius: 40px;
}

.hero-title {
  font-size: 24px;
}

.hero-blogs {
  display: grid;
  align-items: center;
  gap: 20px;
}

.hero-blog {
  height: 100%;
  background-color: red;
  padding: 50px 100px;
  border-radius: 20px;

  & h1 {
    font-weight: 700;
    color: blue;
  }
}

.tariffs {
  margin-bottom: 40px;
}

.tariffs-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.tariffs-item {
  padding: 70px 15px;
  border-radius: 20px;
  display: grid;
  gap: 20px;
  flex-grow: 1;
}

.tariffs-item.active {
  border: 4px solid #1e0072;
}

.rotate180 {
  transform: rotate(180deg);
}

.tarrif-border {
  padding: 8px;
  border-radius: 20px;
  border: 2px solid #fff;
}

.tarrifs-line {
  background-color: var(--blueLight);
  color: var(--gold);
  text-align: center;
  padding: 3px 20px 3px 10px;
  font-size: 10px;
  height: fit-content;
}

.tarrifs-name {
  font-size: 24px;
  color: var(--gold);
}

.tarrifs-stats ul {
  list-style-type: none;
  display: grid;
  gap: 20px;

  & li {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  & li.blue {
    color: blue;
  }

  & li img {
    width: 40px;

  }

  & .tarrif-content {
    display: grid;
  }
}

.tarrifs-button {
  padding: 10px;
  background-color: var(--blueLight);
  border: 2px solid var(--blueLight);
  border-radius: 7px;
  color: #fff;
}

.tarrifs-price {
  display: grid;

  & h4 {
    font-size: 24px;
    text-align: center;
    color: var(--gold);
    margin: 20px 0;
  }

  & span {
    color: var(--gold);
    font-weight: 300;
  }
}

.blog-1 {
  background-image: url(../img/blog1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-2 {
  background-image: url(../img/blog2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


















.tariffs-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 550px;
}

.tariffs-item-small {
  width: 300px;
  height: 270px;
  border-radius: 20px;
  padding: 16px;

  & h4 {
    font-size: 24px;
    color: #000;
  }
}

.advertising {
  margin-bottom: 40px;
}

.advertising-wrap {
  border-radius: 20px;
  width: 100%;
  height: 200px;
  padding: 10px;
  text-align: center;
  display: flex;
  gap: 20px;
  flex-direction: column;

  & button {
    padding: 10px;
    background-color: rgb(255, 102, 0);
    border: 2px solid rgb(255, 102, 0);
    border-radius: 7px;
    color: #fff;
    width: 250px;
    margin: 0 auto;
  }
}

.footer {
  margin-bottom: 20px;
}

.footer-img {
  height: 250px;
  width: 700px;
  border-radius: 20px;
  background-color: var(--blue);
  color: #fff;
}

.footer-wrap {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  align-items: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 20px;
}

.num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  & img {
    width: 35px;
  }

  & span {
    font-size: 32px;
    color: blue;
    font-weight: 600;

    & a {
      color: rgb(33, 12, 224);
    }
  }
}

.num-info {
  & span {
    font-weight: 100;
  }
}


.footer-btn {
  background-color: var(--blue);
  color: var(--gold);
  font-size: 16px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 15px 40px;
}

.wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.lang ul {
  display: flex;
  gap: 15px;
  list-style: none;

  & li {
    cursor: pointer;
    padding: 3px 15px;
    color: var(--gold);
    border: 2px solid var(--gold);
  }
}

.footer-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.footer-licence {
  border-radius: 10px;
  width: 150px;
  height: 210px;
}

.footer-social {
  text-align: right;
  align-content: space-between;
}

.footer-social ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;

  & li a img {
    width: 50px;
  }
}

@media(max-width: 768px) {
  .tariffs-wrap {
    flex-wrap: wrap;
    justify-content: center;
    flex-grow: 1;
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
  }

  .wrap {
    justify-content: center;
  }

  .footer-wrap {
    gap: 10px;
  }
}


@media(max-width: 640px) {
  .tariffs-item {
    width: 100%;
  }

  .tariffs-box {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    height: 270px;
  }

  .tariffs-item-small {
    width: 100%;
  }
}












.tabs {
  margin: 20px;
}

.tabs__nav {
  display: flex;
}

.tabs-nav__item {
  padding: 2px 5px 5px 5px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.tabs-nav__item.show {
  border-bottom: 2px solid var(--gold);
}

.tabs-content {
  display: none;
  margin: 20px 0px;
}

.tabs-content.show {
  display: block;
}

.tabs-content img {
  width: 400px;
  object-fit: cover;
  object-position: bottom;
  border-radius: 20px;
}

.hero-title {
  color: var(--gold);
}

.tab-3 img {
  object-position: center;
}

.blog-img {
  width: 400px;
  height: 200px;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1d1d1d86;
}

.modal-content {
  display: grid;
  gap: 10px;
  text-align: center;
  background-color: var(--blue);
  border: 4px solid var(--gold);
  color: #fff;
  padding: 10px 60px;
  border-radius: 20px;
  position: relative;

  & form {
    display: grid;
    gap: 20px;
    width: 100%;

    & div {
      text-align: left;
      display: grid;
      gap: 10px;

      & input {
        padding: 10px 25px;
        font-size: 18px;
        outline: none;
        border: 2px solid var(--gold);
        border-radius: 5px;
        font-weight: 500;
        background-color: var(--blue);
        color: #fff;
      }

    }
  }
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}