/* FOR GRID  */

.services-container {
  margin-top: 50px;
  display: grid;
  grid-template-areas: "menu content";
  grid-template-columns: 1fr 3fr;
}

.side-bar {
  grid-area: menu;
}

.services-content {
  grid-area: content;
}

@media (max-width: 768px) {
  .services-container {
    grid-template-areas: "content content";
  }
}

/* ### START SIEDE BAR ### */

.side-bar ul {
  margin: 0;
  padding: 0;
}

.side-bar li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  list-style: none;
  cursor: pointer;
}

.side-bar li.active {
  color: var(--color-accent);
  list-style: "- ";
}

@media (max-width: 768px) {
  .side-bar {
    display: none;
  }
}

/* ### // END SIEDE BAR ### */

/* ### content ### */

/* ### START Getting started ### */

.getting-started {
  display: block;
}

.getting-started .head {
  padding: 0;
  margin-top: 0;
  font-size: 35px;
  font-weight: 500;
}

.getting-started .dis {
  font-size: 22px;
  font-weight: 500;
}

.getting-started-cards {
  display: flex;
  gap: 51px;
}

.getting-started-cards .card {
  background-color: var(--color-black-light);
  padding: 26px 30px;
  border-radius: 10px;
}

.getting-started-cards .card-head {
  display: flex;
  gap: 36px;
  justify-content: flex-start;
  align-items: center;
}

.getting-started-cards .card-head img {
  width: 66px;
}

.getting-started-cards .card-head p {
  font-size: 25px;
  font-weight: 500;
}

.getting-started-cards .card-dis {
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .getting-started .head {
    font-size: 32px;
  }

  .getting-started .dis {
    font-size: 18px;
  }

  .getting-started-cards .card-head img {
    display: none;
  }

  .getting-started-cards .card-head p {
    font-size: 22px;
  }

  .getting-started-cards .card-dis {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .getting-started .head {
    font-size: 22px;
  }

  .getting-started .dis {
    font-size: 16px;
  }

  .getting-started-cards {
    flex-direction: column;
  }
}

/* ### // END Getting started ### */

/* ### START OneKeyVPN Services ### */

.vpn-services {
  display: none;
}

.vpn-services p {
  margin: 32px 0;
}

.vpn-services .head {
  padding-top: 0;
  margin-top: 0;
  font-size: 35px;
  font-weight: 500;
}

.vpn-services .head2 {
  font-size: 30px;
  font-weight: 600;
}

.vpn-services .head3 {
  font-size: 24px;
  font-weight: 600;
}

.vpn-services .text {
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .vpn-services .head {
    font-size: 32px;
  }

  .vpn-services .head2 {
    font-size: 30px;
  }

  .vpn-services .head3 {
    font-size: 24px;
  }

  .vpn-services .text {
    font-size: 16px;
    line-height: 32px;
  }
}

@media (max-width: 430px) {
  .vpn-services .head {
    font-size: 22px;
  }

  .vpn-services .head2 {
    font-size: 22px;
  }

  .vpn-services .head3 {
    font-size: 20px;
  }
}
/* ### // END OneKeyVPN Services ###  */

/* ### START Connection ###  */

.connection {
  display: none;
}

.connection .head {
  margin-top: 0;

  font-size: 35px;
  font-weight: 500;
}

.connection .head2 {
  font-size: 30px;
  font-weight: 500;
}

.connection .text {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.connection .text a {
  color: #279fda;
}

@media (max-width: 768px) {
  .connection .head {
    font-size: 32px;
  }

  .connection .head2 {
    font-size: 32px;
  }

  .connection .text {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .connection .head {
    font-size: 22px;
  }

  .connection .head2 {
    font-size: 22px;
  }
}

/* ### // END Connection  ### */

/* ### START Step-by-step setup ### */

.step-setup {
    display: none;
}

.step-setup p {
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 0;
}

.step-setup .head {
  padding: 0;
  margin-top: 0;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 32px;
}

.step-setup .text {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 32px;
}

.setup-cards {
  display: flex;
  gap: 51px;
  flex-wrap: wrap;
}

.setup-cards .card {
  width: 45%;
  background-color: var(--color-black-light);
  padding: 26px 30px;
  border-radius: 10px;
}

.setup-cards .card-head {
  display: flex;
  gap: 36px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 22px;
}

.setup-cards .card-head img {
  width: 66px;
}

.setup-cards .card-head p {
  font-size: 25px;
  font-weight: 500;
}

.setup-cards .dis-card {
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .step-setup .head {
    font-size: 32px;
  }

  .step-setup .text {
    font-size: 18px;
  }

  .setup-cards {
    gap: 44px;
  }

  .setup-cards .card-head img {
    display: none;
  }

  .setup-cards .card-head p {
    font-size: 22px;
  }

  .setup-cards .dis-card {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .step-setup .head {
    font-size: 22px;
  }

  .step-setup .text {
    font-size: 16px;
  }

  .setup-cards .card {
    width: 100%;
  }
}

/* ### // END Step-by-step setup ###  */

/* ### START Services FAQ ### */

.services-faq {
  margin-top: 0;
  padding-top: 0;
  display: none;
}

.services-faq .faq-header {
  margin-top: 0;
}

/* ### // END Services FAQ ### */

/* ### START Services CONNECT FORM ### */

.services-form {
  max-width: 100%;
  display: none;
}

.services-form .form-subtitle {
  width: 100%;
}

@media (min-width: 769px) {
  .services-form .submit-btn {
    width: 270px;
  }
}

/* ### // END Services CONNECT FORM ### */

/* ### START Services ad ### */

.services-ad {
  box-sizing: border-box;
  margin-top: 60px;
  margin-bottom: var(--margin-top);
  padding: 26px 30px;
  border: 2px var(--color-accent) solid;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.services-ad img {
  width: 66px;
  margin-right: 36px;
}

.services-ad .head {
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
}

.services-ad .text {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 35px;
  line-height: 28px;
}

@media (max-width: 768px) {
  .services-ad .head {
    font-size: 22px;
    line-height: 32px;
  }

  .services-ad .text {
    font-size: 16px;
  }

  .services-ad a {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .services-ad img {
    display: none;
  }
}

/* ### // END Services ad ### */
