ul,
ol {
  padding-left: 1.25rem;
}

.service-main-content {
  padding: 40px 0;
}

.service-top-links {
  padding: 0 10px 20px;
}

.service-top-links i {
  font-size: 12px;
}

.page-link a {
  font-size: 16px;
  color: #343333;
}

.service-desc-content {
  padding: 30px 0;
}

.service-desc-content h3 {
  font-size: 32px;
  color: #0947b1;
  letter-spacing: 0.5px;
}

.service-desc-content h4 {
  font-size: 28px;
  margin: 25px 0 10px;
  color: #0947b1;
  letter-spacing: 0.5px;
}

.service-desc-content p {
  font-size: 18px;
  /* letter-spacing: 0.5px; */
  line-height: 33px;
  color: #4b4949;
  font-weight: 400;
  text-align: justify;
}

.service-desc-content ul li,
.service-desc-content ol li {
  font-size: 17px;
  font-weight: 400;
  /* letter-spacing: 0.5px; */
  line-height: 30px;
  color: #464141;
  text-align: justify;
  padding-bottom: 12px;
}

/* sidebar  */

.sidebar-doc-details {
  border: 1px solid #d5e2fa;
}

.sidebar-doc-details {
  padding: 0 0 20px;
  border-radius: 15px;
  overflow: hidden;
}

.sidebar-doc-head {
  padding: 15px;
  background-color: #2a70ed;
}

.sidebar-doc-head h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
  margin: 0;
}

.sidebar-doc-details h4 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  margin-top: 15px;
  color: #0947b1;
}

/* form  */

.contact-left {
  margin-top: 30px;
  background: #003d8f;
  padding: 25px 20px;
  /* border-radius: 5px; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-heading {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .contact-left {
    padding: 30px 20px;
    margin: 40px 0 20px;
  }
}

.form-group {
  margin-bottom: 10px;
}

.form-group:nth-last-child(2) {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .form-group label {
    font-size: 12px;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  /* border-radius: 5px; */
  outline: none;
}

.form-group textarea {
  resize: vertical;
  height: 100px;
}

.form-group button {
  width: 173px;
  height: 48px;
  background: #fff;
  /* box-shadow: 0 4px 7px -1px rgba(0, 0, 0, .11), 0 2px 4px -1px rgba(0, 0, 0, .07); */
  /* border-radius: 4px; */
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  letter-spacing: -0.011em;
  color: #003d8f;
  border: 1px solid #fff;
  /* margin-top: 10px; */
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.form-group button:hover {
  background-color: #003d8f;
  color: #fff;
}

.inline-group {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .inline-group {
    display: block;
  }
}

.inline-group .form-group {
  flex: 1;
}

.jt-1 input {
  width: 50%;
  margin-left: 15px;
}

.wrapper {
  /* max-width: 700px; */
  width: 100%;
  margin: 60px auto;
  padding: 25px 30px 30px 30px;
  border-radius: 5px;
  background: #fff;
  /* box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); */
}

.wrapper header {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 20px;
}

.nav-content {
  display: flex;
  justify-content: center;
}

.wrapper nav {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}

.wrapper nav label {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #003d8f;
  font-weight: 600;
  font-size: 18px;
  border-radius: 5px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.wrapper nav label:hover {
  color: rgba(0, 61, 143, 0.6);
}

#home:checked ~ .nav-content nav label.home,
#blog:checked ~ .nav-content nav label.blog,
#code:checked ~ .nav-content nav label.code,
#help:checked ~ .nav-content nav label.help,
#about:checked ~ .nav-content nav label.about {
  color: #fff;
}

nav label i {
  padding-right: 7px;
}

nav .slider {
  position: absolute;
  height: 100%;
  width: 33%;
  left: 0;
  bottom: 0;
  z-index: 0;
  /* border-radius: 5px; */
  background: #003d8f;
  transition: all 0.3s ease;
}

nav .slider1 {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 0;
  /* border-radius: 5px; */
  background: #003d8f;
  transition: all 0.3s ease;
}

input[type="radio"] {
  display: none;
}

#blog:checked ~ .nav-content nav .slider {
  left: 33.33%;
}

#code:checked ~ .nav-content nav .slider {
  left: 67%;
}

#help:checked ~ .nav-content nav .slider {
  left: 60%;
}

#about:checked ~ .nav-content nav .slider {
  left: 80%;
}

.entity-tab-container {
  margin-top: 50px;
}

section .content {
  display: none;
  background: #fff;
}

#home:checked ~ section .content-1,
#blog:checked ~ section .content-2,
#code:checked ~ section .content-3,
#help:checked ~ section .content-4,
#about:checked ~ section .content-5 {
  display: block;
}

.doc-publication ul li {
  line-height: 27px;
  padding-bottom: 16px;
  text-align: justify;
  font-size: 17px;
  color: #000;
  a {
    font-size: 17px;
    color: #000;
  }
}
