.p_2_s331 .docMain {
  padding: 80px 0px;
  background-color: var(--themeBg1);
}
.p_2_s331 .line {
  width: 4px;
  height: 17px;
  display: inline-block;
  background-color: var(--themeColor1);
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.p_2_s331 .line::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent var(--themeColor1);
  content: "";
  animation: zump 1.5s linear infinite;
}
@keyframes zump {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.p_2_s331 .abtHead {
  font-size: 22px;
  letter-spacing: 2.2px;
  margin-bottom: 16px;
  font-family: var(--o1Font);
  color: var(--themeColor1);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  line-height: 1em;
}
.p_2_s331 .abtSubHead {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--themeColor3);
  padding-bottom: 20px;
}
.p_2_s331 .abtPara {
  color: var(--paragraphColorBlack);
  line-height: 30px;
  margin-bottom: 30px;
}
.p_2_s331 .docCard {
  background-color: var(--themeColor2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.06);
}
.p_2_s331 .cardImg {
  height: 250px;
  overflow: hidden;
}
.p_2_s331 .cardImg img {
  object-fit: cover;
  height: 100%;
  filter: grayscale();
  transition: 0.3s;
}
.p_2_s331 .docCard:hover .cardImg img {
  filter: none;
  transform: scale(1.05);
}
.p_2_s331 .cardInnerSec {
  padding: 20px 30px 30px;
}
.p_2_s331 .cardHead {
  font-size: 25px;
  font-weight: 600;
  color: var(--headingColor1);
}
.p_2_s331 .cardPara {
  margin-top: 10px;
  font-size: 15px;
  color: var(--paragraphColorBlack);
  line-height: 25px;
}
.p_2_s331 .view,
.p_2_s331 .feedback {
  margin-top: 20px;
  cursor: pointer;
  width: -webkit-fill-available;
  padding: 10px 0px;
  font-size: 18px;
  background-color: var(--btnColor);
  border-radius: 40px;
  border: none;
  font-weight: 700;
  color: var(--btnTextColor);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--o1Font);
}
.p_2_s331 .view::after,
.p_2_s331 .feedback::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 5%;
  background: var(--btnHoverColor);
  content: "";
  z-index: -1;
  transition: 0.5s;
}
.p_2_s331 .view:hover::after,
.p_2_s331 .feedback:hover::after {
  width: 100%;
}
.p_2_s331 .view:hover,
.p_2_s331 .feedback:hover {
  color: var(--btnHoverTextColor);
}
.p_2_s331 .popUpFormInner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: #00000080;
  z-index: 9999;
}
.p_2_s331 .popUpForm {
  width: 400px;
  border-radius: 20px;
  background-color: var(--themeBg2);
  padding: 20px;
}
.p_2_s331 .formTop {
  margin-bottom: 10px;
}
.p_2_s331 .inputMainSec {
  margin-bottom: 10px;
}
.p_2_s331 .inputMainSec label {
  font-size: 13px;
  font-weight: 500;
  color: #00000080;
  line-height: 23px;
}
.p_2_s331 .inputMainSec label span {
  color: red;
}
.p_2_s331 .inputMainSec input,
.p_2_s331 .inputMainSec textarea,
.p_2_s331 .inputMainSec select {
  width: calc(100% - 20px);
  padding: 10px 10px;
  border: none;
  outline: none;
  background-color: var(--themeBg1);
  border-radius: 5px;
}
.p_2_s331 .inputMainSec select {
  width: 100%;
}
.p_2_s331 .inputMainSec input[type="file"] {
  cursor: pointer;
}
.p_2_s331 .inputMainSec input[type="checkbox"] {
  width: auto;
  padding: 0px;
  vertical-align: middle;
}
.p_2_s331 .inputMainSec textarea {
  resize: none;
}
.p_2_s331 .mainHeading {
  font-size: 20px;
  font-weight: 600;
}
.p_2_s331 .formGrid {
  grid-template-columns: 1fr 50px;
}
.p_2_s331 .crossIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--themeBg1);
  cursor: pointer;
}
.p_2_s331 .popUpFormMain {
  display: none;
}
.p_2_s331 .btn {
  padding: 10px 20px;
  border: none;
  background-color: var(--btnColor);
  color: var(--btnTextColor);
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}
.p_2_s331 .rowGap {
  column-gap: 10px;
}
.p_2_s331 .note {
  font-size: 12px;
  color: red;
  line-height: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .p_2_s331 .abtSubHead {
    font-size: 25px;
    line-height: 35px;
    padding-bottom: 10px;
  }
  .p_2_s331 .feedback {
    margin-top: 0px;
  }
  .p_2_s331 .popUpForm {
    padding: 20px;
    width: calc(90% - 40px);
  }
  .p_2_s331 .docMain {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 900px) {
  .p_2_s331 {
    background-attachment: scroll;
  }
}
.p_2_s332 .docMain {
  padding: 80px 0px;
  background-color: var(--themeBg1);
}
.p_2_s332 .line {
  width: 4px;
  height: 17px;
  display: inline-block;
  background-color: var(--themeColor1);
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.p_2_s332 .line::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent var(--themeColor1);
  content: "";
  animation: zump 1.5s linear infinite;
}
@keyframes zump {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.p_2_s332 .abtHead {
  font-size: 22px;
  letter-spacing: 2.2px;
  margin-bottom: 16px;
  font-family: var(--o1Font);
  color: var(--themeColor1);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  line-height: 1em;
}
.p_2_s332 .abtSubHead {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--themeColor3);
  padding-bottom: 20px;
}
.p_2_s332 .abtPara {
  color: var(--paragraphColorBlack);
  line-height: 30px;
  margin-bottom: 30px;
}
.p_2_s332 .docCard {
  background-color: var(--themeColor2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.06);
}
.p_2_s332 .cardImg {
  height: 250px;
  overflow: hidden;
}
.p_2_s332 .cardImg img {
  object-fit: cover;
  height: 100%;
  filter: grayscale();
  transition: 0.3s;
}
.p_2_s332 .docCard:hover .cardImg img {
  filter: none;
  transform: scale(1.05);
}
.p_2_s332 .cardInnerSec {
  padding: 20px 30px 30px;
}
.p_2_s332 .cardHead {
  font-size: 25px;
  font-weight: 600;
  color: var(--headingColor1);
}
.p_2_s332 .cardPara {
  margin-top: 10px;
  font-size: 15px;
  color: var(--paragraphColorBlack);
  line-height: 25px;
}
.p_2_s332 .view,
.p_2_s332 .feedback {
  margin-top: 20px;
  cursor: pointer;
  width: -webkit-fill-available;
  padding: 10px 0px;
  font-size: 18px;
  background-color: var(--btnColor);
  border-radius: 40px;
  border: none;
  font-weight: 700;
  color: var(--btnTextColor);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--o1Font);
}
.p_2_s332 .view::after,
.p_2_s332 .feedback::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 5%;
  background: var(--btnHoverColor);
  content: "";
  z-index: -1;
  transition: 0.5s;
}
.p_2_s332 .view:hover::after,
.p_2_s332 .feedback:hover::after {
  width: 100%;
}
.p_2_s332 .view:hover,
.p_2_s332 .feedback:hover {
  color: var(--btnHoverTextColor);
}
.p_2_s332 .popUpFormInner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: #00000080;
  z-index: 9999;
}
.p_2_s332 .popUpForm {
  width: 400px;
  border-radius: 20px;
  background-color: var(--themeBg2);
  padding: 20px;
}
.p_2_s332 .formTop {
  margin-bottom: 10px;
}
.p_2_s332 .inputMainSec {
  margin-bottom: 10px;
}
.p_2_s332 .inputMainSec label {
  font-size: 13px;
  font-weight: 500;
  color: #00000080;
  line-height: 23px;
}
.p_2_s332 .inputMainSec label span {
  color: red;
}
.p_2_s332 .inputMainSec input,
.p_2_s332 .inputMainSec textarea,
.p_2_s332 .inputMainSec select {
  width: calc(100% - 20px);
  padding: 10px 10px;
  border: none;
  outline: none;
  background-color: var(--themeBg1);
  border-radius: 5px;
}
.p_2_s332 .inputMainSec select {
  width: 100%;
}
.p_2_s332 .inputMainSec input[type="file"] {
  cursor: pointer;
}
.p_2_s332 .inputMainSec input[type="checkbox"] {
  width: auto;
  padding: 0px;
  vertical-align: middle;
}
.p_2_s332 .inputMainSec textarea {
  resize: none;
}
.p_2_s332 .mainHeading {
  font-size: 20px;
  font-weight: 600;
}
.p_2_s332 .formGrid {
  grid-template-columns: 1fr 50px;
}
.p_2_s332 .crossIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--themeBg1);
  cursor: pointer;
}
.p_2_s332 .popUpFormMain {
  display: none;
}
.p_2_s332 .btn {
  padding: 10px 20px;
  border: none;
  background-color: var(--btnColor);
  color: var(--btnTextColor);
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}
.p_2_s332 .rowGap {
  column-gap: 10px;
}
.p_2_s332 .note {
  font-size: 12px;
  color: red;
  line-height: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .p_2_s332 .abtSubHead {
    font-size: 25px;
    line-height: 35px;
    padding-bottom: 10px;
  }
  .p_2_s332 .feedback {
    margin-top: 0px;
  }
  .p_2_s332 .popUpForm {
    padding: 20px;
    width: calc(90% - 40px);
  }
  .p_2_s332 .docMain {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 900px) {
  .p_2_s332 {
    background-attachment: scroll;
  }
}
.p_2_s333 .docMain {
  padding: 80px 0px;
  background-color: var(--themeBg1);
}
.p_2_s333 .line {
  width: 4px;
  height: 17px;
  display: inline-block;
  background-color: var(--themeColor1);
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.p_2_s333 .line::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent var(--themeColor1);
  content: "";
  animation: zump 1.5s linear infinite;
}
@keyframes zump {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.p_2_s333 .abtHead {
  font-size: 22px;
  letter-spacing: 2.2px;
  margin-bottom: 16px;
  font-family: var(--o1Font);
  color: var(--themeColor1);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  line-height: 1em;
}
.p_2_s333 .abtSubHead {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--themeColor3);
  padding-bottom: 20px;
}
.p_2_s333 .abtPara {
  color: var(--paragraphColorBlack);
  line-height: 30px;
  margin-bottom: 30px;
}
.p_2_s333 .docCard {
  background-color: var(--themeColor2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.06);
}
.p_2_s333 .cardImg {
  height: 250px;
  overflow: hidden;
}
.p_2_s333 .cardImg img {
  object-fit: cover;
  height: 100%;
  filter: grayscale();
  transition: 0.3s;
}
.p_2_s333 .docCard:hover .cardImg img {
  filter: none;
  transform: scale(1.05);
}
.p_2_s333 .cardInnerSec {
  padding: 20px 30px 30px;
}
.p_2_s333 .cardHead {
  font-size: 25px;
  font-weight: 600;
  color: var(--headingColor1);
}
.p_2_s333 .cardPara {
  margin-top: 10px;
  font-size: 15px;
  color: var(--paragraphColorBlack);
  line-height: 25px;
}
.p_2_s333 .view,
.p_2_s333 .feedback {
  margin-top: 20px;
  cursor: pointer;
  width: -webkit-fill-available;
  padding: 10px 0px;
  font-size: 18px;
  background-color: var(--btnColor);
  border-radius: 40px;
  border: none;
  font-weight: 700;
  color: var(--btnTextColor);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--o1Font);
}
.p_2_s333 .view::after,
.p_2_s333 .feedback::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 5%;
  background: var(--btnHoverColor);
  content: "";
  z-index: -1;
  transition: 0.5s;
}
.p_2_s333 .view:hover::after,
.p_2_s333 .feedback:hover::after {
  width: 100%;
}
.p_2_s333 .view:hover,
.p_2_s333 .feedback:hover {
  color: var(--btnHoverTextColor);
}
.p_2_s333 .popUpFormInner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: #00000080;
  z-index: 9999;
}
.p_2_s333 .popUpForm {
  width: 400px;
  border-radius: 20px;
  background-color: var(--themeBg2);
  padding: 20px;
}
.p_2_s333 .formTop {
  margin-bottom: 10px;
}
.p_2_s333 .inputMainSec {
  margin-bottom: 10px;
}
.p_2_s333 .inputMainSec label {
  font-size: 13px;
  font-weight: 500;
  color: #00000080;
  line-height: 23px;
}
.p_2_s333 .inputMainSec label span {
  color: red;
}
.p_2_s333 .inputMainSec input,
.p_2_s333 .inputMainSec textarea,
.p_2_s333 .inputMainSec select {
  width: calc(100% - 20px);
  padding: 10px 10px;
  border: none;
  outline: none;
  background-color: var(--themeBg1);
  border-radius: 5px;
}
.p_2_s333 .inputMainSec select {
  width: 100%;
}
.p_2_s333 .inputMainSec input[type="file"] {
  cursor: pointer;
}
.p_2_s333 .inputMainSec input[type="checkbox"] {
  width: auto;
  padding: 0px;
  vertical-align: middle;
}
.p_2_s333 .inputMainSec textarea {
  resize: none;
}
.p_2_s333 .mainHeading {
  font-size: 20px;
  font-weight: 600;
}
.p_2_s333 .formGrid {
  grid-template-columns: 1fr 50px;
}
.p_2_s333 .crossIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--themeBg1);
  cursor: pointer;
}
.p_2_s333 .popUpFormMain {
  display: none;
}
.p_2_s333 .btn {
  padding: 10px 20px;
  border: none;
  background-color: var(--btnColor);
  color: var(--btnTextColor);
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}
.p_2_s333 .rowGap {
  column-gap: 10px;
}
.p_2_s333 .note {
  font-size: 12px;
  color: red;
  line-height: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .p_2_s333 .abtSubHead {
    font-size: 25px;
    line-height: 35px;
    padding-bottom: 10px;
  }
  .p_2_s333 .feedback {
    margin-top: 0px;
  }
  .p_2_s333 .popUpForm {
    padding: 20px;
    width: calc(90% - 40px);
  }
  .p_2_s333 .docMain {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 900px) {
  .p_2_s333 {
    background-attachment: scroll;
  }
}
.p_2_s334 .docMain {
  padding: 80px 0px;
  background-color: var(--themeBg1);
}
.p_2_s334 .line {
  width: 4px;
  height: 17px;
  display: inline-block;
  background-color: var(--themeColor1);
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.p_2_s334 .line::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent var(--themeColor1);
  content: "";
  animation: zump 1.5s linear infinite;
}
@keyframes zump {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.p_2_s334 .abtHead {
  font-size: 22px;
  letter-spacing: 2.2px;
  margin-bottom: 16px;
  font-family: var(--o1Font);
  color: var(--themeColor1);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  line-height: 1em;
}
.p_2_s334 .abtSubHead {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--themeColor3);
  padding-bottom: 20px;
}
.p_2_s334 .abtPara {
  color: var(--paragraphColorBlack);
  line-height: 30px;
  margin-bottom: 30px;
}
.p_2_s334 .docCard {
  background-color: var(--themeColor2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.06);
}
.p_2_s334 .cardImg {
  height: 250px;
  overflow: hidden;
}
.p_2_s334 .cardImg img {
  object-fit: cover;
  height: 100%;
  filter: grayscale();
  transition: 0.3s;
}
.p_2_s334 .docCard:hover .cardImg img {
  filter: none;
  transform: scale(1.05);
}
.p_2_s334 .cardInnerSec {
  padding: 20px 30px 30px;
}
.p_2_s334 .cardHead {
  font-size: 25px;
  font-weight: 600;
  color: var(--headingColor1);
}
.p_2_s334 .cardPara {
  margin-top: 10px;
  font-size: 15px;
  color: var(--paragraphColorBlack);
  line-height: 25px;
}
.p_2_s334 .view,
.p_2_s334 .feedback {
  margin-top: 20px;
  cursor: pointer;
  width: -webkit-fill-available;
  padding: 10px 0px;
  font-size: 18px;
  background-color: var(--btnColor);
  border-radius: 40px;
  border: none;
  font-weight: 700;
  color: var(--btnTextColor);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--o1Font);
}
.p_2_s334 .view::after,
.p_2_s334 .feedback::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 5%;
  background: var(--btnHoverColor);
  content: "";
  z-index: -1;
  transition: 0.5s;
}
.p_2_s334 .view:hover::after,
.p_2_s334 .feedback:hover::after {
  width: 100%;
}
.p_2_s334 .view:hover,
.p_2_s334 .feedback:hover {
  color: var(--btnHoverTextColor);
}
.p_2_s334 .popUpFormInner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: #00000080;
  z-index: 9999;
}
.p_2_s334 .popUpForm {
  width: 400px;
  border-radius: 20px;
  background-color: var(--themeBg2);
  padding: 20px;
}
.p_2_s334 .formTop {
  margin-bottom: 10px;
}
.p_2_s334 .inputMainSec {
  margin-bottom: 10px;
}
.p_2_s334 .inputMainSec label {
  font-size: 13px;
  font-weight: 500;
  color: #00000080;
  line-height: 23px;
}
.p_2_s334 .inputMainSec label span {
  color: red;
}
.p_2_s334 .inputMainSec input,
.p_2_s334 .inputMainSec textarea,
.p_2_s334 .inputMainSec select {
  width: calc(100% - 20px);
  padding: 10px 10px;
  border: none;
  outline: none;
  background-color: var(--themeBg1);
  border-radius: 5px;
}
.p_2_s334 .inputMainSec select {
  width: 100%;
}
.p_2_s334 .inputMainSec input[type="file"] {
  cursor: pointer;
}
.p_2_s334 .inputMainSec input[type="checkbox"] {
  width: auto;
  padding: 0px;
  vertical-align: middle;
}
.p_2_s334 .inputMainSec textarea {
  resize: none;
}
.p_2_s334 .mainHeading {
  font-size: 20px;
  font-weight: 600;
}
.p_2_s334 .formGrid {
  grid-template-columns: 1fr 50px;
}
.p_2_s334 .crossIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--themeBg1);
  cursor: pointer;
}
.p_2_s334 .popUpFormMain {
  display: none;
}
.p_2_s334 .btn {
  padding: 10px 20px;
  border: none;
  background-color: var(--btnColor);
  color: var(--btnTextColor);
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}
.p_2_s334 .rowGap {
  column-gap: 10px;
}
.p_2_s334 .note {
  font-size: 12px;
  color: red;
  line-height: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .p_2_s334 .abtSubHead {
    font-size: 25px;
    line-height: 35px;
    padding-bottom: 10px;
  }
  .p_2_s334 .feedback {
    margin-top: 0px;
  }
  .p_2_s334 .popUpForm {
    padding: 20px;
    width: calc(90% - 40px);
  }
  .p_2_s334 .docMain {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 900px) {
  .p_2_s334 {
    background-attachment: scroll;
  }
}
.p_2_s335 .docMain {
  padding: 80px 0px;
  background-color: var(--themeBg1);
}
.p_2_s335 .line {
  width: 4px;
  height: 17px;
  display: inline-block;
  background-color: var(--themeColor1);
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.p_2_s335 .line::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent var(--themeColor1);
  content: "";
  animation: zump 1.5s linear infinite;
}
@keyframes zump {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.p_2_s335 .abtHead {
  font-size: 22px;
  letter-spacing: 2.2px;
  margin-bottom: 16px;
  font-family: var(--o1Font);
  color: var(--themeColor1);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  line-height: 1em;
}
.p_2_s335 .abtSubHead {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--themeColor3);
  padding-bottom: 20px;
}
.p_2_s335 .abtPara {
  color: var(--paragraphColorBlack);
  line-height: 30px;
  margin-bottom: 30px;
}
.p_2_s335 .docCard {
  background-color: var(--themeColor2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.06);
}
.p_2_s335 .cardImg {
  height: 250px;
  overflow: hidden;
}
.p_2_s335 .cardImg img {
  object-fit: cover;
  height: 100%;
  filter: grayscale();
  transition: 0.3s;
}
.p_2_s335 .docCard:hover .cardImg img {
  filter: none;
  transform: scale(1.05);
}
.p_2_s335 .cardInnerSec {
  padding: 20px 30px 30px;
}
.p_2_s335 .cardHead {
  font-size: 25px;
  font-weight: 600;
  color: var(--headingColor1);
}
.p_2_s335 .cardPara {
  margin-top: 10px;
  font-size: 15px;
  color: var(--paragraphColorBlack);
  line-height: 25px;
}
.p_2_s335 .view,
.p_2_s335 .feedback {
  margin-top: 20px;
  cursor: pointer;
  width: -webkit-fill-available;
  padding: 10px 0px;
  font-size: 18px;
  background-color: var(--btnColor);
  border-radius: 40px;
  border: none;
  font-weight: 700;
  color: var(--btnTextColor);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--o1Font);
}
.p_2_s335 .view::after,
.p_2_s335 .feedback::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 5%;
  background: var(--btnHoverColor);
  content: "";
  z-index: -1;
  transition: 0.5s;
}
.p_2_s335 .view:hover::after,
.p_2_s335 .feedback:hover::after {
  width: 100%;
}
.p_2_s335 .view:hover,
.p_2_s335 .feedback:hover {
  color: var(--btnHoverTextColor);
}
.p_2_s335 .popUpFormInner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: #00000080;
  z-index: 9999;
}
.p_2_s335 .popUpForm {
  width: 400px;
  border-radius: 20px;
  background-color: var(--themeBg2);
  padding: 20px;
}
.p_2_s335 .formTop {
  margin-bottom: 10px;
}
.p_2_s335 .inputMainSec {
  margin-bottom: 10px;
}
.p_2_s335 .inputMainSec label {
  font-size: 13px;
  font-weight: 500;
  color: #00000080;
  line-height: 23px;
}
.p_2_s335 .inputMainSec label span {
  color: red;
}
.p_2_s335 .inputMainSec input,
.p_2_s335 .inputMainSec textarea,
.p_2_s335 .inputMainSec select {
  width: calc(100% - 20px);
  padding: 10px 10px;
  border: none;
  outline: none;
  background-color: var(--themeBg1);
  border-radius: 5px;
}
.p_2_s335 .inputMainSec select {
  width: 100%;
}
.p_2_s335 .inputMainSec input[type="file"] {
  cursor: pointer;
}
.p_2_s335 .inputMainSec input[type="checkbox"] {
  width: auto;
  padding: 0px;
  vertical-align: middle;
}
.p_2_s335 .inputMainSec textarea {
  resize: none;
}
.p_2_s335 .mainHeading {
  font-size: 20px;
  font-weight: 600;
}
.p_2_s335 .formGrid {
  grid-template-columns: 1fr 50px;
}
.p_2_s335 .crossIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--themeBg1);
  cursor: pointer;
}
.p_2_s335 .popUpFormMain {
  display: none;
}
.p_2_s335 .btn {
  padding: 10px 20px;
  border: none;
  background-color: var(--btnColor);
  color: var(--btnTextColor);
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}
.p_2_s335 .rowGap {
  column-gap: 10px;
}
.p_2_s335 .note {
  font-size: 12px;
  color: red;
  line-height: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .p_2_s335 .abtSubHead {
    font-size: 25px;
    line-height: 35px;
    padding-bottom: 10px;
  }
  .p_2_s335 .feedback {
    margin-top: 0px;
  }
  .p_2_s335 .popUpForm {
    padding: 20px;
    width: calc(90% - 40px);
  }
  .p_2_s335 .docMain {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 900px) {
  .p_2_s335 {
    background-attachment: scroll;
  }
}
.p_2_s336 .docMain {
  padding: 80px 0px;
  background-color: var(--themeBg1);
}
.p_2_s336 .line {
  width: 4px;
  height: 17px;
  display: inline-block;
  background-color: var(--themeColor1);
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.p_2_s336 .line::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent var(--themeColor1);
  content: "";
  animation: zump 1.5s linear infinite;
}
@keyframes zump {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(-5px);
  }
}
.p_2_s336 .abtHead {
  font-size: 22px;
  letter-spacing: 2.2px;
  margin-bottom: 16px;
  font-family: var(--o1Font);
  color: var(--themeColor1);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  line-height: 1em;
}
.p_2_s336 .abtSubHead {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  color: var(--themeColor3);
  padding-bottom: 20px;
}
.p_2_s336 .abtPara {
  color: var(--paragraphColorBlack);
  line-height: 30px;
  margin-bottom: 30px;
}
.p_2_s336 .docCard {
  background-color: var(--themeColor2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.06);
}
.p_2_s336 .cardImg {
  height: 250px;
  overflow: hidden;
}
.p_2_s336 .cardImg img {
  object-fit: cover;
  height: 100%;
  filter: grayscale();
  transition: 0.3s;
}
.p_2_s336 .docCard:hover .cardImg img {
  filter: none;
  transform: scale(1.05);
}
.p_2_s336 .cardInnerSec {
  padding: 20px 30px 30px;
}
.p_2_s336 .cardHead {
  font-size: 25px;
  font-weight: 600;
  color: var(--headingColor1);
}
.p_2_s336 .cardPara {
  margin-top: 10px;
  font-size: 15px;
  color: var(--paragraphColorBlack);
  line-height: 25px;
}
.p_2_s336 .view,
.p_2_s336 .feedback {
  margin-top: 20px;
  cursor: pointer;
  width: -webkit-fill-available;
  padding: 10px 0px;
  font-size: 18px;
  background-color: var(--btnColor);
  border-radius: 40px;
  border: none;
  font-weight: 700;
  color: var(--btnTextColor);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--o1Font);
}
.p_2_s336 .view::after,
.p_2_s336 .feedback::after {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 5%;
  background: var(--btnHoverColor);
  content: "";
  z-index: -1;
  transition: 0.5s;
}
.p_2_s336 .view:hover::after,
.p_2_s336 .feedback:hover::after {
  width: 100%;
}
.p_2_s336 .view:hover,
.p_2_s336 .feedback:hover {
  color: var(--btnHoverTextColor);
}
.p_2_s336 .popUpFormInner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: #00000080;
  z-index: 9999;
}
.p_2_s336 .popUpForm {
  width: 400px;
  border-radius: 20px;
  background-color: var(--themeBg2);
  padding: 20px;
}
.p_2_s336 .formTop {
  margin-bottom: 10px;
}
.p_2_s336 .inputMainSec {
  margin-bottom: 10px;
}
.p_2_s336 .inputMainSec label {
  font-size: 13px;
  font-weight: 500;
  color: #00000080;
  line-height: 23px;
}
.p_2_s336 .inputMainSec label span {
  color: red;
}
.p_2_s336 .inputMainSec input,
.p_2_s336 .inputMainSec textarea,
.p_2_s336 .inputMainSec select {
  width: calc(100% - 20px);
  padding: 10px 10px;
  border: none;
  outline: none;
  background-color: var(--themeBg1);
  border-radius: 5px;
}
.p_2_s336 .inputMainSec select {
  width: 100%;
}
.p_2_s336 .inputMainSec input[type="file"] {
  cursor: pointer;
}
.p_2_s336 .inputMainSec input[type="checkbox"] {
  width: auto;
  padding: 0px;
  vertical-align: middle;
}
.p_2_s336 .inputMainSec textarea {
  resize: none;
}
.p_2_s336 .mainHeading {
  font-size: 20px;
  font-weight: 600;
}
.p_2_s336 .formGrid {
  grid-template-columns: 1fr 50px;
}
.p_2_s336 .crossIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--themeBg1);
  cursor: pointer;
}
.p_2_s336 .popUpFormMain {
  display: none;
}
.p_2_s336 .btn {
  padding: 10px 20px;
  border: none;
  background-color: var(--btnColor);
  color: var(--btnTextColor);
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}
.p_2_s336 .rowGap {
  column-gap: 10px;
}
.p_2_s336 .note {
  font-size: 12px;
  color: red;
  line-height: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (max-width: 900px) {
  .p_2_s336 .abtSubHead {
    font-size: 25px;
    line-height: 35px;
    padding-bottom: 10px;
  }
  .p_2_s336 .feedback {
    margin-top: 0px;
  }
  .p_2_s336 .popUpForm {
    padding: 20px;
    width: calc(90% - 40px);
  }
  .p_2_s336 .docMain {
    padding: 20px 0px;
  }
}
@media only screen and (max-width: 900px) {
  .p_2_s336 {
    background-attachment: scroll;
  }
}
