@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
  margin: 0;
  padding: 0;
}
input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  padding: 7px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
  border: 1px solid #707070;
  margin-left: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* scroll */
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #000032;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #000032;
}
.nlp-main * {
  box-sizing: border-box;
  font-family: Roboto;
}
.nlp-main p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  color: #070707;
}
.nlp-main p strong,
.nlp-main p b {
  font-weight: 700;
}
.nlp-main a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.nlp-main h1,
.nlp-main h2,
.nlp-main h3,
.nlp-main h4 {
  margin: 0;
}
.nlp-main h2 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}
.nlp-main ul,
.nlp-main li {
  padding: 0;
  margin: 0;
  color: #070707;
  list-style: none;
}
.nlp-main .container {
  width: 100%;
}
.nlp-main .flex-container {
  display: flex;
  margin: auto;
}
.nlp-main .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.nlp-main .buttons img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.nlp-main .buttons .btn-red,
.nlp-main .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  text-decoration: none;
  outline: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.23);
  min-width: 150px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.nlp-main .buttons .btn-red::before,
.nlp-main .buttons .btn-white::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-size: 100% 800%;
  background-repeat: repeat-y;
  animation: btn-ani 10s infinite linear;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.nlp-main .buttons .btn-red {
  background-color: #FF0000;
}
.nlp-main .buttons .btn-red::before {
  background-image: linear-gradient(to bottom, #FF0000, #9999b3, #73738F, #FF0000);
}
.nlp-main .buttons .btn-white {
  border: 2px solid #FFFFFF;
  background-color: #000032;
}
.nlp-main .buttons .btn-white::before {
  background-image: linear-gradient(to bottom, #4c4c6f, #c0c0c3, #a6a6a6, #4c4c6f);
}
.nlp-main .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
}
.nlp-main .heading h2 {
  width: fit-content;
  z-index: 1;
  background: linear-gradient(90deg, #5C5C82, #000032);
  background-repeat: no-repeat;
  background-size: 70%;
  animation: animated 3s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.63);
}
.nlp-main .center-heading {
  align-items: center;
}
.nlp-main .center-heading h2 {
  text-align: center;
  width: 100%;
}
.nlp-main .white-heading h2 {
  -webkit-text-fill-color: #ffffff;
}
@keyframes btn-ani {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 112.5%;
  }
}
@keyframes animated {
  0% {
    background-position: -100%;
  }
  50% {
    background-position: 200%;
  }
  100% {
    background-position: -100%;
  }
}
@keyframes beat {
  0%,
  20%,
  50%,
  100% {
    transform: scale(0.8);
  }
  10%,
  30%,
  75% {
    transform: scale(0.9);
  }
}
@keyframes move {
  0% {
    transform: translate(0, 0) scale(1, 1);
  }
  4% {
    transform: translate(280px, 0) scale(9, 1);
  }
  5% {
    transform: translate(350px, 0) scale(1, 1);
  }
  6% {
    transform: translate(420px, 0) scale(0.5, 1);
  }
  8% {
    transform: translate(450px, 0) scale(1, 0.9);
  }
  10% {
    transform: translate(580px, 0) scale(1, 1);
  }
  19% {
    transform: translate(580px, 91px) scale(0.4, 1);
  }
  21% {
    transform: translate(580px, 91px) scale(0.4, 0.1);
  }
  22% {
    transform: translate(580px, 90px) scale(1, 1);
  }
  24% {
    transform: translate(580px, 89px);
  }
  25% {
    transform: translate(520px, 89px) scale(1, 1) rotate(-45deg);
  }
  27%,
  29% {
    transform: translate(500px, 89px) scale(1, 1) rotate(-90deg);
  }
  33% {
    transform: translate(480px, 89px) scale(1, 1) rotate(-135deg);
  }
  35%,
  38% {
    transform: translate(450px, 89px) scale(1, 1) rotate(-180deg);
  }
  42% {
    transform: translate(450px, 89px) scale(1, 1) rotate(-225deg);
  }
  44% {
    transform: translate(250px, 89px) scale(1, 1) rotate(-270deg);
  }
  46% {
    transform: translate(250px, 89px) scale(1, 1) rotate(-270deg);
  }
  49% {
    transform: translate(230px, 89px) scale(1, 1) rotate(-315deg);
  }
  51% {
    transform: translate(200px, 89px) scale(1, 1) rotate(-360deg);
  }
  53% {
    transform: translate(200px, 89px) scale(1, 1) rotate(-360deg);
  }
  56% {
    transform: translate(150px, 89px) scale(1, 1) rotate(-405deg);
  }
  58% {
    transform: translate(100px, 89px) scale(1, 1) rotate(-450deg);
  }
  58.1% {
    transform: translate(50px, 89px) scale(1, 0.7) rotate(-450deg);
  }
  60% {
    transform: translate(0px, 89px) scale(0.7, 0.7) rotate(-450deg);
  }
  75% {
    transform: translate(0, 91px) scale(1, 1) skew(0, 0);
  }
  80% {
    transform: translate(0, 91px) scale(1, 1) skew(0, 1deg);
  }
  85% {
    transform: translate(0, 0) scale(1, 1) skew(0, 30deg);
  }
  85.1% {
    transform: translate(0, 0) scale(1, 1) skew(0, 0);
  }
  86% {
    transform: translate(0, 0px) scale(1, 0.3) skew(0, 0);
  }
  90% {
    transform: translate(0, 2px) scale(0.9, 1) skew(0, 0);
  }
  95% {
    transform: translate(0, 0) scale(1, 1);
  }
}
@keyframes buzz {
  50% {
    transform: translateX(1px) rotate(2deg);
  }
  100% {
    transform: translateX(-1px) rotate(-2deg);
  }
}
@keyframes colons {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dot {
  0% {
    border: 2px solid #000032;
  }
  50% {
    background-color: #000032;
  }
}
@keyframes move3 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(150px, 40px);
  }
  50% {
    transform: translate(320px, 110px);
  }
  75% {
    transform: translate(150px, -80px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes move4 {
  0% {
    transform: translate(0px, 0px);
  }
  30% {
    transform: translate(460px, 45px);
  }
  60% {
    transform: translate(100px, 55px);
  }
  100% {
    transform: translate(0px, 0);
  }
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes box {
  0% {
    transform: translate(0, -20px) rotate(0deg);
  }
  50% {
    transform: translate(0, -260px) rotate(180deg);
  }
  100% {
    transform: translate(0, -20px) rotate(360deg);
  }
}
@keyframes around {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(150px, 40px) rotate(180deg);
  }
  50% {
    transform: translate(300px, -15px) rotate(180deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
  }
}
@keyframes move2 {
  25% {
    transform: translate(0px, 0) rotate(360deg);
  }
  50% {
    transform: translate(300px, 35px);
  }
  75% {
    transform: translate(100px, 40px);
  }
  100% {
    transform: translate(0px, 0);
  }
}
.nlp-main .banner {
  flex-direction: column;
  background-color: #000032;
}
.nlp-main .banner .logo-container {
  display: flex;
  padding: 1rem 1.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  height: 100%;
}
.nlp-main .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
}
.nlp-main .banner .logo-container .blue-logo {
  display: flex;
}
.nlp-main .banner .logo-container .white-logo {
  display: none;
}
.nlp-main .banner .logo-container .tka-logo {
  display: flex;
  max-width: 200px;
}
.nlp-main .banner .logo-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.nlp-main .banner .logo-container .menu {
  display: flex;
  z-index: 1;
  margin-left: auto;
}
.nlp-main .banner .logo-container .menu img {
  width: 22px;
  height: 23px;
}
.nlp-main .banner .logo-container .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.nlp-main .banner .logo-container .menu-links .menu-toggle {
  color: #000032;
}
.nlp-main .banner .logo-container .menu-links .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.nlp-main .banner .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #000032;
}
.nlp-main .banner .logo-container ul .links-li:nth-last-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}
.nlp-main .banner .logo-container ul .links-li:first-child {
  padding-top: 0;
}
.nlp-main .banner .logo-container ul .links-li:last-child {
  padding-bottom: 0;
}
.nlp-main .banner .logo-container ul .links-li .link {
  font-size: 14px;
  color: #000032;
}
.nlp-main .banner .logo-container ul .buttons {
  display: none;
}
.nlp-main .banner .logo-container .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.nlp-main .banner .logo-container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.nlp-main .banner .logo-container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nlp-main .banner .sticky {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 1s;
  background-color: #5C5C82;
  height: auto;
}
.nlp-main .banner .sticky .container {
  padding: 0;
  box-shadow: none;
}
.nlp-main .banner .sticky .container .blue-logo {
  display: none;
}
.nlp-main .banner .sticky .container .white-logo {
  display: flex;
}
.nlp-main .banner .sticky-up {
  top: -100px;
}
.nlp-main .banner .sticky-down {
  z-index: 4;
}
.nlp-main .banner .container {
  height: 100%;
}
.nlp-main .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  padding-top: 2rem;
}
.nlp-main .banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nlp-main .banner .banner-container .banner-content h1 {
  display: flex;
  margin-bottom: 0.8rem;
  align-items: flex-start;
  color: #FFFFFF;
  font-size: 24px;
  width: 100%;
}
.nlp-main .banner .banner-container .banner-content h1 img {
  width: 43px;
  height: 37px;
  margin-right: 8px;
}
.nlp-main .banner .banner-container .banner-content P {
  color: #FFFFFF;
  width: 100%;
}
.nlp-main .banner .banner-container .banner-content .timer-content {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.3rem;
  width: 100%;
  background-color:#41416b;
  border-radius: 20px;
  margin-top: 1.3rem;
}
.nlp-main .banner .banner-container .banner-content .timer-content h3 {
  display: flex;
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-size: 18px;
}
.nlp-main .banner .banner-container .banner-content .timer-content h3 img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  animation: buzz 0.2s linear infinite;
}
.nlp-main .banner .banner-container .banner-content .timer-content .timer-list {
  display: flex;
}
.nlp-main .banner .banner-container .banner-content .timer-content .timer-list .time {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 68px;
  z-index: 1;
}
.nlp-main .banner .banner-container .banner-content .timer-content .timer-list .time::before {
  position: absolute;
  content: '';
  background-image: url(/_public/images/nlp/colons.svg);
  background-repeat: no-repeat;
  background-size: 50% 100%;
  width: 6px;
  height: 10px;
  left: -2px;
  top: 10px;
  z-index: -1;
  animation: colons 2s linear infinite;
}
.nlp-main .banner .banner-container .banner-content .timer-content .timer-list .time:first-child::before {
  content: none;
}
.nlp-main .banner .banner-container .banner-content .timer-content .timer-list .time span {
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
}
.nlp-main .banner .banner-container .banner-content .timer-content .timer-list .time p {
  text-align: center;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.4;
}
.nlp-main .banner .banner-container .banner-content .buttons {
  margin-top: 1.5rem;
}
.nlp-main .banner .banner-container .banner-content .buttons .btn-white::before {
  border-bottom: 3px solid #5C5C82;
  border-left: 3px solid #5C5C82;
}
.nlp-main .banner .banner-container .banner-content .buttons .btn-white::after {
  border-top: 3px solid #5C5C82;
  border-right: 3px solid #5C5C82;
}
.nlp-main .banner .banner-container .banner-img {
  display: flex;
  margin-top: 2rem;
  width: 272px;
  height: 100%;
  align-self: center;
  position: relative;
  z-index: 1;
}
.nlp-main .banner .banner-container .banner-img::after {
  content: '';
  position: absolute;
  z-index: -1;
  height: 57%;
  width: 60%;
  background-image: url(/_public/images/nlp/brain.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 59px;
  left: 25px;
  animation: beat 4s linear infinite;
}
.nlp-main .banner .banner-container .banner-img img {
  width: 100%;
  height: 100%;
}
.nlp-main .delivery {
  padding: 3rem 1.5rem;
  padding-bottom: 0;
}
.nlp-main .delivery .delivery-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .delivery .delivery-container .heading {
  margin-bottom: 2rem;
}
.nlp-main .delivery .delivery-container .delivery-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 13px 15px 5px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #707070;
  width: 230px;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: 0.8s ease;
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item .stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex ;
  background: url(/_public/images/nlp/stars.png) repeat top center;
  z-index: -1;
  background-color: transparent;
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item::before {
  content: '';
  z-index: -1;
  position: absolute;
  background-repeat: no-repeat !important;
  background-size: 65% 65% !important;
  background-position: center !important;
  height: 100%;
  width: 100%;
  transition: 0.8s ease-in-out;
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:nth-child(1)::before {
  background: url(/_public/images/nlp/classroom.svg);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:nth-child(2)::before {
  background-image: url(/_public/images/nlp/instructor.svg);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:nth-child(3)::before {
  background-image: url(/_public/images/nlp/self.svg);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:nth-child(4)::before {
  background-image: url(/_public/images/nlp/onsite.svg);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:hover {
  background: radial-gradient(#5C5C82, #000032);
  color: #FFFFFF;
  transition: 0.8s ease;
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.2);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:hover:nth-child(1)::before {
  background: url(/_public/images/nlp/classroom-white.svg);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:hover:nth-child(2)::before {
  background-image: url(/_public/images/nlp/instructor-white.svg);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:hover:nth-child(3)::before {
  background-image: url(/_public/images/nlp/self-white.svg);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:hover:nth-child(4)::before {
  background-image: url(/_public/images/nlp/onsite-white.svg);
}
.nlp-main .delivery .delivery-container .delivery-list .delivery-item:last-child {
  margin-bottom: 0;
}
.nlp-main .overview {
  padding: 3rem 1.5rem;
}
.nlp-main .overview .overview-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .overview .overview-container .overview-content {
  display: flex;
  flex-direction: column;
}
.nlp-main .overview .overview-container .overview-content p {
  text-align: center;
}
.nlp-main .overview .overview-container .overview-content p:nth-child(2) {
  margin-bottom: 0.5rem;
}
.nlp-main .overview .overview-container .package-content {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 25px 25px 0 0;
  margin-top: 2rem;
  width: 272px;
  align-self: center;
  position: relative;
  z-index: 1;
}
.nlp-main .overview .overview-container .package-content::before {
  content: '';
  position: absolute;
  z-index: -1;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #000032;
  transition: 1s;
}
.nlp-main .overview .overview-container .package-content:hover::before {
  height: 100%;
  border-radius: 25px 25px 0 0;
}
.nlp-main .overview .overview-container .package-content:hover p,
.nlp-main .overview .overview-container .package-content:hover h3 {
  transition: 2s all;
  color: #FFFFFF;
}
.nlp-main .overview .overview-container .package-content:hover ul li {
  color: #FFFFFF;
  transition: 1s all;
}
.nlp-main .overview .overview-container .package-content:hover ul li::before {
  background-color: #FFFFFF;
}
.nlp-main .overview .overview-container .package-content p {
  margin: 0.5rem 0 1rem;
  font-weight: 700;
}
.nlp-main .overview .overview-container .package-content ul li {
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  padding-left: 1.2rem;
  transition: 1s all;
}
.nlp-main .overview .overview-container .package-content ul li:last-child {
  margin-bottom: 0;
}
.nlp-main .overview .overview-container .package-content ul li::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #000032;
  transform: rotate(45deg);
  border-radius: 2px;
  left: 0px;
  top: 4px;
  z-index: -1;
  animation: rotate 6s linear infinite;
}
.nlp-main .overview .overview-container .package-content .buttons {
  justify-content: flex-start;
}
.nlp-main .techniques {
  display: none;
}
.nlp-main .course {
  padding: 3rem 1.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.nlp-main .course .course-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .course .course-container .heading {
  margin-bottom: 2rem;
}
.nlp-main .course .course-container .heading p {
  text-align: center;
  margin-top: 5px;
}
.nlp-main .course .course-container .heading p span {
  color: #FF0000;
  font-weight: 600;
}
.nlp-main .course .course-container .course-list {
  display: flex;
  flex-direction: column;
}
.nlp-main .course .course-container .course-list .course-item {
  display: flex;
  flex-direction: column;
  background-color: #EBEBEB;
  margin-bottom: 2rem;
  padding: 1.5rem;
  padding-top: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(#5C5C82, #000032);
  background-repeat: no-repeat;
  background-size: 100% 0%;
  transition: 1s all;
  width: 272px;
  align-self: center;
}
.nlp-main .course .course-container .course-list .course-item:last-child {
  margin-bottom: 0;
}
.nlp-main .course .course-container .course-list .course-item .course-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.nlp-main .course .course-container .course-list .course-item .course-name h3 {
  width: calc(100% - 100px);
  transition: 1s all;
}
.nlp-main .course .course-container .course-list .course-item .course-name span {
  width: 70px;
  height: 70px;
  display: flex;
  background-color: #FFFFFF;
  padding: 0.8rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transform: rotate(45deg);
  border-radius: 5px;
  position: relative;
  left: -12px;
}
.nlp-main .course .course-container .course-list .course-item .course-name span img {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
}
.nlp-main .course .course-container .course-list .course-item .course-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  padding: 1rem;
}
.nlp-main .course .course-container .course-list .course-item .course-content p {
  text-align: center;
}
.nlp-main .course .course-container .course-list .course-item:hover {
  background-size: 100% 100%;
}
.nlp-main .course .course-container .course-list .course-item:hover .course-name h3 {
  color: #FFFFFF;
  transition: 1s all;
}
.nlp-main .works {
  padding: 3rem 1.5rem;
}
.nlp-main .works .works-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .works .works-container .works-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nlp-main .works .works-container .works-content p {
  text-align: center;
  width: 100%;
}
.nlp-main .works .works-container .works-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.nlp-main .works .works-container .works-img {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.nlp-main .works .works-container .works-img img {
  width: 100%;
  height: 100%;
}
.nlp-main .choose {
  padding: 3rem 1.5rem;
  background-color: #F5F5F5;
}
.nlp-main .choose .choose-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .choose .choose-container p {
  text-align: center;
}
.nlp-main .choose .choose-container .choose-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nlp-main .choose .choose-container .choose-list .choose-item {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  margin-top: 2rem;
  width: 295px;
  align-items: center;
  align-self: center;
  background-image: url(/_public/images/nlp/choose-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.nlp-main .choose .choose-container .choose-list .choose-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  padding: 0.6rem;
  background-color: #000032;
  position: relative;
  z-index: 1;
}
.nlp-main .choose .choose-container .choose-list .choose-item span::after {
  content: '';
  position: absolute;
  width: 81px;
  height: 76px;
  background-image: url(/_public/images/nlp/choose-circle.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  left: -11px;
  top: -6px;
}
.nlp-main .choose .choose-container .choose-list .choose-item span img {
  width: 100%;
  height: 100%;
}
.nlp-main .choose .choose-container .choose-list .choose-item h3 {
  margin: 1rem 0 0.4rem;
  text-align: center;
  font-size: 16px;
}
.nlp-main .choose .choose-container .choose-list .choose-item p {
  line-height: 1.4;
  width: 89%;
}
.nlp-main .help {
  padding: 3rem 1.5rem;
}
.nlp-main .help .help-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .help .help-container .help-content {
  display: flex;
  flex-direction: column;
}
.nlp-main .help .help-container .help-content p {
  text-align: center;
}
.nlp-main .help .help-container .help-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.nlp-main .help .help-container .help-content .heading h2 {
  text-align: center;
}
.nlp-main .help .help-container .help-image {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  height: 100%;
}
.nlp-main .help .help-container .help-image .image-objects {
  display: flex;
  height: 100%;
}
.nlp-main .help .help-container .help-image .image-objects img {
  width: 100%;
  height: 100%;
}
.nlp-main .testimonial {
  padding: 3rem 1.5rem;
  background-image: radial-gradient(#5C5C82, #000032);
  position: relative;
  z-index: 1;
}
.nlp-main .testimonial .boxes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.nlp-main .testimonial .boxes li {
  position: absolute;
  display: flex;
  list-style: none;
  width: 20px;
  height: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid rgba(255, 255, 255, 0.3);
  animation: animate 15s linear infinite;
  bottom: -150px;
}
.nlp-main .testimonial .boxes li:nth-child(1) {
  left: 25%;
  width: 10px;
  height: 10px;
  animation-delay: 0s;
}
.nlp-main .testimonial .boxes li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.nlp-main .testimonial .boxes li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.nlp-main .testimonial .boxes li:nth-child(4) {
  left: 40%;
  width: 5px;
  height: 5px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.nlp-main .testimonial .boxes li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.nlp-main .testimonial .boxes li:nth-child(6) {
  left: 75%;
  width: 10px;
  height: 10px;
  animation-delay: 3s;
}
.nlp-main .testimonial .boxes li:nth-child(7) {
  left: 35%;
  width: 15px;
  height: 15px;
  animation-delay: 7s;
}
.nlp-main .testimonial .boxes li:nth-child(8) {
  left: 50%;
  width: 20px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.nlp-main .testimonial .boxes li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.nlp-main .testimonial .boxes li:nth-child(10) {
  left: 85%;
  width: 15px;
  height: 15px;
  animation-delay: 0s;
  animation-duration: 11s;
}
.nlp-main .testimonial .testimonial-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .testimonial .testimonial-container .testimonial-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.nlp-main .testimonial .testimonial-container .testimonial-heading .heading h2 {
  text-align: center;
}
.nlp-main .testimonial .testimonial-container .testimonial-heading p {
  text-align: center;
  color: #FFFFFF;
}
.nlp-main .testimonial .testimonial-container .testimonial-list {
  display: flex;
  flex-direction: column;
}
.nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: #FFFFFF;
  margin: 0 0.5rem;
  align-items: center;
}
.nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item .review {
  text-align: center;
  margin-bottom: 0.5rem;
  width: 100%;
}
.nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item img {
  height: 20px;
  width: 100px;
}
.nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item h3 {
  margin-top: 5px;
}
.nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item .designation {
  color: #FF0000;
}
.nlp-main .testimonial .testimonial-container .testimonial-list .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 90px;
  margin: 0 auto;
  margin-top: 1rem;
}
.nlp-main .testimonial .testimonial-container .testimonial-list .owl-nav .owl-prev,
.nlp-main .testimonial .testimonial-container .testimonial-list .owl-nav .owl-next {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
  width: 40px;
  height: 40px;
  outline: none;
}
.nlp-main .testimonial .testimonial-container .testimonial-list .owl-nav .owl-prev {
  background-image: url(/_public/images/nlp/left-arrow.svg);
}
.nlp-main .testimonial .testimonial-container .testimonial-list .owl-nav .owl-next {
  background-image: url(/_public/images/nlp/right-arrow.svg);
}
.nlp-main .testimonial .testimonial-container .testimonial-list .owl-nav .btn-active {
  opacity: 1;
}
.nlp-main .levels {
  padding: 3rem 1.5rem;
}
.nlp-main .levels .levels-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .levels .levels-container .levels-content {
  display: flex;
  flex-direction: column;
}
.nlp-main .levels .levels-container .levels-content ul li {
  margin-top: 10px;
  font-size: 14px;
  padding-left: 1.3rem;
  position: relative;
  z-index: 1;
}
.nlp-main .levels .levels-container .levels-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px    ;
  height: 7px;
  width: 7px;
  border-radius: 50px;
  border: 2px solid #000032;
  z-index: -1;
  animation: dot 3s linear infinite;
}
.nlp-main .levels .levels-container .levels-content .buttons {
  justify-content: flex-start;
}
.nlp-main .levels .levels-container .advantages-content {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  height: 100%;
}
.nlp-main .levels .levels-container .advantages-content .advantages {
  display: flex;
  height: 100%;
}
.nlp-main .levels .levels-container .advantages-content .advantages img {
  width: 100%;
  height: 100%;
}
.nlp-main .limited {
  padding: 3rem 1.5rem;
  padding-top: 0;
}
.nlp-main .limited .limited-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .limited .limited-container .budget {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  align-self: center;
  background-image: radial-gradient(#5C5C82, #000032);
  border-radius: 12px;
  width: 100%;
}
.nlp-main .limited .limited-container .budget .budget-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.nlp-main .limited .limited-container .budget .budget-content h2,
.nlp-main .limited .limited-container .budget .budget-content p,
.nlp-main .limited .limited-container .budget .budget-content li {
  color: #FFFFFF;
}
.nlp-main .limited .limited-container .budget .budget-content h2 {
  margin-bottom: 5px;
}
.nlp-main .limited .limited-container .budget .budget-content ul li {
  font-size: 14px;
  padding-left: 1.3rem;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.nlp-main .limited .limited-container .budget .budget-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  background-image: url(/_public/images/nlp/polygon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  width: 18px;
  z-index: -1;
  animation: rotate 5s linear infinite;
}
.nlp-main .limited .limited-container .budget .budget-content .counter {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 16px;
}
.nlp-main .limited .limited-container .budget .budget-content .buttons {
  justify-content: flex-start;
}
.nlp-main .limited .limited-container .budget .training {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #FFFFFF;
}
.nlp-main .limited .limited-container .budget .training p {
  margin-top: 5px;
  line-height: 1.5;
}
.nlp-main .limited .limited-container .form {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border: 1px solid #000032;
  padding: 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}
.nlp-main .limited .limited-container .form .form-input {
  display: flex;
  flex-direction: column;
}
.nlp-main .limited .limited-container .form .input-container {
  display: flex;
  margin-bottom: 1rem;
  justify-content: space-between;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  width: 100%;
}
.nlp-main .limited .limited-container .form .input-container input,
.nlp-main .limited .limited-container .form .input-container textarea {
  width: 90%;
  border: none;
  outline: 0;
  font-weight: 500;
}
.nlp-main .limited .limited-container .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.nlp-main .limited .limited-container .form .input-container span {
  display: flex;
  width: 18px;
  height: 20px;
}
.nlp-main .limited .limited-container .form .input-container span img {
  width: 100%;
  height: 100%;
}
.nlp-main .limited .limited-container .form .input-container span .gray-img {
  display: flex;
}
.nlp-main .limited .limited-container .form .input-container span .red-img {
  display: none;
}
.nlp-main .limited .limited-container .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #AFAFAF;
}
.nlp-main .limited .limited-container .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #AFAFAF;
}
.nlp-main .limited .limited-container .form .input-error {
  box-shadow: 0 0 8px #FF0000;
}
.nlp-main .limited .limited-container .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #FF0000;
}
.nlp-main .limited .limited-container .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #FF0000;
}
.nlp-main .limited .limited-container .form .input-error span .gray-img {
  display: none;
}
.nlp-main .limited .limited-container .form .input-error span .red-img {
  display: flex;
}
.nlp-main .limited .limited-container .form .form-consent {
  display: flex;
  font-size: 12px;
  margin-bottom: 0.4rem;
}
.nlp-main .limited .limited-container .form .form-consent:last-child {
  margin-bottom: 0;
}
.nlp-main .limited .limited-container .form .form-consent label {
  margin-left: 0.3rem;
  width: 97%;
  display: flex;
  align-self: center;
}
.nlp-main .limited .limited-container .form .form-consent p {
  color: #000;
  line-height: 1.4;
  font-size: 12px;
}
.nlp-main .limited .limited-container .form .form-consent a {
  color: #FF0000;
  font-weight: bold;
}
.nlp-main .limited .limited-container .form .consent-error,
.nlp-main .limited .limited-container .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.nlp-main .limited .limited-container .form .consent-error p,
.nlp-main .limited .limited-container .form .consent-error-other p {
  color: #FF0000;
  line-height: 1.4;
  font-size: 12px;
}
.nlp-main .offer {
  padding: 3rem 1.5rem;
  background-image: radial-gradient(#5C5C82, #000032);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.nlp-main .offer .offer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nlp-main .offer .offer-container .offer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.nlp-main .offer .offer-container .offer-content span {
  display: flex;
  width: 100px;
  height: 90px;
  margin-bottom: 1rem;
}
.nlp-main .offer .offer-container .offer-content span img {
  width: 100%;
}
.nlp-main .offer .offer-container .offer-content .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.nlp-main .offer .offer-container .offer-content .content .heading {
  margin-bottom: 0.5rem;
}
.nlp-main .offer .offer-container .offer-content .content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  width: 100%;
}
.nlp-main .offer .offer-container .offer-content .content p,
.nlp-main .offer .offer-container .offer-content .content h2 {
  text-align: center;
  color: #FFFFFF;
}
.nlp-main .faq {
  padding: 3rem 1.5rem;
}
.nlp-main .faq .faq-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .faq .faq-container .heading {
  margin-bottom: 1.5rem;
}
.nlp-main .faq .faq-container .faq-list {
  display: flex;
  flex-direction: column;
}
.nlp-main .faq .faq-container .faq-list .faq-item {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}
.nlp-main .faq .faq-container .faq-list .faq-item:last-child {
  margin-bottom: 0;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ques {
  display: flex;
  align-items: center;
  padding: 0.8rem;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ques:hover {
  cursor: pointer;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ques h3 {
  font-size: 14px;
  width: 85%;
  line-height: 1.5;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ques span {
  display: flex;
  align-self: flex-start;
  width: 24px;
  height: 24px;
  margin-right: 0.6rem;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ques span img {
  width: 100%;
  height: 100%;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ques span .up {
  display: none;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ques span .down {
  display: flex;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ans {
  display: none;
  padding: 0.8rem;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ans p {
  font-size: 13px;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ans ul {
  padding-left: 1rem;
}
.nlp-main .faq .faq-container .faq-list .faq-item .ans ul li {
  font-size: 13px;
  list-style: disc;
}
.nlp-main .faq .faq-container .faq-list .faq-item.active .ques {
  background-image: radial-gradient(#5C5C82, #000032);
  color: #FFFFFF;
}
.nlp-main .faq .faq-container .faq-list .faq-item.active .ques span .up {
  display: flex;
}
.nlp-main .faq .faq-container .faq-list .faq-item.active .ques span .down {
  display: none;
}
.nlp-main .footer {
  padding: 3rem 1.5rem;
  background: radial-gradient(#5C5C82, #000032);
}
.nlp-main .footer .footer-container {
  display: flex;
  flex-direction: column;
}
.nlp-main .footer .footer-container .query-content {
  display: none;
}
.nlp-main .footer .footer-container .footer-content {
  display: flex;
  flex-direction: column;
}
.nlp-main .footer .footer-container .footer-content .contact-info {
  display: flex;
  flex-direction: column;
}
.nlp-main .footer .footer-container .footer-content .contact-info .contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.nlp-main .footer .footer-container .footer-content .contact-info .contact:last-child {
  margin-bottom: 0;
}
.nlp-main .footer .footer-container .footer-content .contact-info .contact p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
}
.nlp-main .footer .footer-container .footer-content .contact-info .contact a {
  color: #FFFFFF;
  font-size: 14px;
}
.nlp-main .footer .footer-container .footer-content .buttons {
  justify-content: flex-start;
}
@media  (min-width: 320px)  and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nlp-main .delivery .delivery-container .delivery-list .delivery-item::before {
    background-size: 40% 75% !important;
    top: 0;
    left:0;
  } 
}
@media (min-width : 768px) {
  .nlp-main .buttons .btn-red,
  .nlp-main .buttons .btn-white {
    font-size: 16px;
  }
  .nlp-main .banner .logo-container {
    padding: 1rem 2rem;
  }
  .nlp-main .banner .logo-container .menu.active + .menu-links {
    width: 45%;
  }
  .nlp-main .banner .banner-container {
    padding: 3rem 2rem;
    padding-top: 2rem;
  }
  .nlp-main .banner .banner-container .banner-content .timer-content {
    flex-direction: row;
    width: fit-content;
    border-radius: 40px;
  }
  .nlp-main .banner .banner-container .banner-content .timer-content h3 {
    width: 50%;
    margin-bottom: 0;
    align-items: center;
  }
  .nlp-main .banner .banner-container .banner-content .timer-content .timer-list {
    width: 50%;
  }
  .nlp-main .banner .banner-container .banner-content .timer-content .timer-list .time {
    width: 75px;
  }
  .nlp-main .banner .banner-container .banner-img {
    display: none;
  }
  .nlp-main .delivery {
    padding: 3rem 2rem;
  }
  .nlp-main .delivery .delivery-container .heading {
    display: none;
  }
  .nlp-main .delivery .delivery-container .delivery-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .nlp-main .delivery .delivery-container .delivery-list .delivery-item {
    width: 22%;
    margin-bottom: 0;
    text-align: center;
  }
  .nlp-main .delivery .delivery-container .delivery-list .delivery-item:nth-child(3) {
    margin-bottom: 0;
  }
  .nlp-main .overview {
    padding: 3rem 2rem;
    padding-top: 1rem!important;
  }
  .nlp-main .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nlp-main .overview .overview-container .overview-content {
    width: 50%;
  }
  .nlp-main .overview .overview-container .overview-content .heading {
    align-items: flex-start;
  }
  .nlp-main .overview .overview-container .overview-content .heading h2 {
    text-align: left;
  }
  .nlp-main .overview .overview-container .overview-content p {
    text-align: left;
  }
  .nlp-main .overview .overview-container .overview-content .buttons {
    justify-content: flex-start;
  }
  .nlp-main .overview .overview-container .package-content {
    margin-top: 0;
    width: 45%;
    align-self: flex-start;
    height: fit-content;
    position: sticky;
    top: 67px;
  }
  .nlp-main .techniques {
    padding: 3rem 2rem;
    display: flex;
    background: radial-gradient(#5C5C82, #000032);
    position: relative;
    z-index: 1;
  }
  .nlp-main .techniques canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.06;
    z-index: -1;
  }
  .nlp-main .techniques .techniques-container {
    display: flex;
  }
  .nlp-main .techniques .techniques-container img {
    width: 100%;
  }
  .nlp-main .course {
    padding: 3rem 2rem;
  }
  .nlp-main .course .course-container .course-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nlp-main .course .course-container .course-list .course-item {
    margin-right: 3rem;
    margin-bottom: 3rem;
  }
  .nlp-main .course .course-container .course-list .course-item .course-name h3 {
    min-height: 78px;
  }
  .nlp-main .course .course-container .course-list .course-item:nth-child(2),
  .nlp-main .course .course-container .course-list .course-item:nth-child(4),
  .nlp-main .course .course-container .course-list .course-item:last-child {
    margin-right: 0;
  }
  .nlp-main .works {
    padding: 3rem 2rem;
  }
  .nlp-main .works .works-container .works-img {
    width: 60%;
    align-self: center;
  }
  .nlp-main .choose {
    padding: 3rem 2rem;
  }
  .nlp-main .choose .choose-container .choose-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .nlp-main .choose .choose-container .choose-list .choose-item {
    width: 46%;
  }
  .nlp-main .choose .choose-container .choose-list .choose-item p {
    min-height: 77px;
    
  }
  .nlp-main .help {
    padding: 3rem 2rem;
  }
  .nlp-main .help .help-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nlp-main .help .help-container .help-content {
    width: 52%;
    align-items: flex-start;
  }
  .nlp-main .help .help-container .help-content P {
    text-align: left;
    width: 100%;
  }
  .nlp-main .help .help-container .help-content .heading {
    align-items: flex-start;
  }
  .nlp-main .help .help-container .help-content .heading h2 {
    text-align: left;
  }
  .nlp-main .help .help-container .help-image {
    width: 45%;
    margin-top: 0;
    top: 63px;
    height: fit-content;
    position: sticky;
  }
  .nlp-main .testimonial {
    padding: 3rem 2rem;
  }
  .nlp-main .testimonial .testimonial-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-heading {
    width: 30%;
    margin-bottom: 0;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-heading .heading {
    align-items: flex-start;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-heading .heading h2 {
    text-align: left;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-heading p {
    text-align: left;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-list {
    width: 60%;
    position: relative;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item {
    align-items: flex-start;
    min-height: 348px;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item .review {
    text-align: left;
    min-height: 220px;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-list .owl-nav {
    position: absolute;
    left: -68%;
    bottom: 0;
    margin-top: 0;
  }
  .nlp-main .levels {
    padding: 3rem 2rem;
  }
  .nlp-main .levels .levels-container .advantages-content .advantages {
    width: 80%;
    align-self: center;
  }
  .nlp-main .limited {
    padding: 3rem 2rem;
    padding-top: 0;
  }
  .nlp-main .limited .limited-container {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .nlp-main .limited .limited-container::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/nlp/circles.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 110px;
    height: 110px;
    z-index: -1;
    bottom: 0;
    left: 0px;
    animation: move2 12s linear infinite;
  }
  .nlp-main .limited .limited-container .budget {
    width: 45%;
  }
  .nlp-main .limited .limited-container .form {
    width: 50%;
    margin-top: 0;
    padding: 2rem;
  }
  .nlp-main .offer {
    padding: 3rem 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .nlp-main .offer .offer-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nlp-main .offer .offer-container .offer-content {
    width: 60%;
    flex-direction: row;
    justify-content: space-between;
  }
  .nlp-main .offer .offer-container .offer-content span {
    margin-bottom: 0;
  }
  .nlp-main .offer .offer-container .offer-content .content {
    align-items: flex-start;
    width: 70%;
  }
  .nlp-main .offer .offer-container .offer-content .content p,
  .nlp-main .offer .offer-container .offer-content .content h2 {
    text-align: left;
  }
  .nlp-main .offer .offer-container .buttons {
    margin-top: 0;
    width: 26%;
    justify-content: flex-end;
  }
  .nlp-main .faq {
    padding: 3rem 2rem;
    padding-bottom: 2rem!important;
  }
  .nlp-main .faq .faq-container .faq-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .nlp-main .faq .faq-container .faq-list .faq-item {
    width: 48%;
  }
  .nlp-main .faq .faq-container .faq-list .faq-item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .nlp-main .footer {
    padding: 3rem 2rem;
    padding-bottom: 2rem;
    padding-top: 0;
    background: transparent;
    background-image: url(/_public/images/nlp/footer-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 70%;
    background-position: bottom;
  }
  .nlp-main .footer .footer-container .query-content {
    width: 58%;
    align-self: flex-end;
    bottom: -22px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background-color: #FFFFFF;
    box-shadow: 0 10px 5px #ffffff47;
    border-top: 3px solid #000032;
  }
  .nlp-main .footer .footer-container .query-content p,
  .nlp-main .footer .footer-container .query-content h2 {
    text-align: center;
  }
  .nlp-main .footer .footer-container .query-content p {
    margin-top: 5px;
    line-height: 1.4;
  }
  .nlp-main .footer .footer-container .footer-content {
    margin-top: 0;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .nlp-main .footer .footer-container .footer-content .heading {
    width: 100%;
  }
  .nlp-main .footer .footer-container .footer-content .contact-info {
    flex-direction: row;
    width: 40%;
  }
  .nlp-main .footer .footer-container .footer-content .contact-info .contact {
    width: 60%;
  }
  .nlp-main .footer .footer-container .footer-content .contact-info .contact:first-child {
    margin-bottom: 0;
  }
  .nlp-main .footer .footer-container .footer-content .buttons {
    width: 39%;
    justify-content: flex-end;
    margin-top: 0;
  }
}
@media  (min-width: 768px)  and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nlp-main .delivery .delivery-container .delivery-list .delivery-item {
    font-size: 14px;
    min-height: 134px;
  }
}
@media (min-width : 1024px) {
  .nlp-main p {
    line-height: 1.8;
  }
  .nlp-main .heading h2 {
    font-size: 28px;
  }
  .nlp-main .banner {
    background-color: transparent;
    background-image: url(/_public/images/nlp/banner-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
  .nlp-main .banner .logo-container {
    background-image: url(/_public/images/nlp/header-bg.png);
    background-repeat: no-repeat;
    background-size: 25% 100%;
    background-position: top left;
    background-color: transparent;
    box-shadow: none;
  }
  .nlp-main .banner .logo-container .menu {
    display: none;
  }
  .nlp-main .banner .logo-container .container .tka-logo .blue-logo {
    display: none;
  }
  .nlp-main .banner .logo-container .container .tka-logo .white-logo {
    display: flex;
  }
  .nlp-main .banner .logo-container .menu-links {
    width: 77%;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
    background-color: transparent;
  }
  .nlp-main .banner .logo-container .menu-links .menu-toggle {
    display: none;
  }
  .nlp-main .banner .logo-container ul {
    display: flex;
    align-items: center;
  }
  .nlp-main .banner .logo-container ul .links-li {
    margin-right: 1rem;
    padding: 0;
    border-bottom: none;
    position: relative;
    z-index: 1;
  }
  .nlp-main .banner .logo-container ul .links-li::before,
  .nlp-main .banner .logo-container ul .links-li::after {
    position: absolute;
    content: '';
    z-index: -1;
    transition: 0.6s all;
  }
  .nlp-main .banner .logo-container ul .links-li::before {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    bottom: -8px;
    transform: scale(0);
  }
  .nlp-main .banner .logo-container ul .links-li::after {
    width: 0px;
    height: 0px;
    border-radius: 2px;
    background-color: #FF0000;
    transform: rotate(45deg);
    bottom: -12px;
    left: 40%;
  }
  .nlp-main .banner .logo-container ul .links-li:hover::before {
    transform: scale(1);
  }
  .nlp-main .banner .logo-container ul .links-li:hover::after {
    width: 10px;
    height: 10px;
  }
  .nlp-main .banner .logo-container ul .links-li:last-child {
    margin-top: 0;
    margin-right: 0 !important;
  }
  .nlp-main .banner .logo-container ul .links-li:last-child::before,
  .nlp-main .banner .logo-container ul .links-li:last-child::after {
    content: none;
  }
  .nlp-main .banner .logo-container ul .links-li .link {
    font-weight: 600;
    transition: none;
    padding-bottom: 0;
    color: #FFFFFF;
  }
  .nlp-main .banner .logo-container ul .buttons {
    display: flex;
  }
  .nlp-main .banner .logo-container ul .buttons .btn-white {
    margin-right: 1rem;
    min-width: 155px;
  }
  .nlp-main .banner .logo-container ul .buttons .btn-red {
    min-height: 41px;
    min-width: 155px;
  }
  .nlp-main .banner .sticky {
    background-image: none;
    background-color: #5C5C82;
  }
  .nlp-main .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 5rem;
  }
  .nlp-main .banner .banner-container .banner-content {
    width: 59%;
  }
  .nlp-main .banner .banner-container .banner-img {
    display: flex;
    margin-top: 0;
    width: 38%;
  }
  .nlp-main .banner .banner-container .banner-img::after {
    height: 63%;
    top: 61px;
    left: 32px;
  }
  .nlp-main .overview .overview-container .overview-content {
    width: 65%;
  }
  .nlp-main .overview .overview-container .package-content {
    width: 30%;
    position: relative;
    top: 0;
  }
  .nlp-main .course .course-container {
    position: relative;
    z-index: 1;
  }
  .nlp-main .course .course-container::before,
  .nlp-main .course .course-container::after {
    content: '';
    position: absolute;
    background-image: url(/_public/images/nlp/dots-box.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 70px;
    width: 70px;
    bottom: -15px;
    z-index: -1;
    animation: box 5s linear infinite;
    opacity: 0.3;
  }
  .nlp-main .course .course-container::before {
    left: 0px;
  }
  .nlp-main .course .course-container::after {
    right: 0px;
  }
  .nlp-main .course .course-container .course-list .course-item {
    width: 30%;
  }
  .nlp-main .course .course-container .course-list .course-item .course-name h3 {
    min-height: 52px;
  }
  .nlp-main .course .course-container .course-list .course-item:nth-child(3) {
    margin-right: 0;
  }
  .nlp-main .course .course-container .course-list .course-item:nth-child(2),
  .nlp-main .course .course-container .course-list .course-item:nth-child(4) {
    margin-right: 3rem;
  }
  .nlp-main .course .course-container .course-list .course-item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .nlp-main .works .works-container {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .nlp-main .works .works-container::before {
    content: '';
    width: 62px;
    height: 63px;
    position: absolute;
    bottom: 0px;
    left: 20px;
    background-image: url(/_public/images/nlp/triangles.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
    animation: around 8s linear infinite;
  }
  .nlp-main .works .works-container .works-content {
    width: 48%;
    align-items: flex-start;
    order: 2;
  }
  .nlp-main .works .works-container .works-content .heading {
    align-items: flex-start;
  }
  .nlp-main .works .works-container .works-content .heading h2 {
    text-align: left;
  }
  .nlp-main .works .works-container .works-content p {
    text-align: left;
  }
  .nlp-main .works .works-container .works-img {
    width: 38%;
    margin-top: 0;
    order: 1;
    margin-right: auto;
  }
  .nlp-main .choose .choose-container {
    width: 80%;
    margin: auto;
  }
  .nlp-main .choose .choose-container .choose-list .choose-item {
    width: 43%;
  }
  .nlp-main .help .help-container .help-image {
    position: static;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-heading p {
    line-height: 1.6;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item {
    min-height: 285px;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item .review {
    line-height: 1.6;
    min-height: 154px;
  }
  .nlp-main .levels .levels-container {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .nlp-main .levels .levels-container::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    bottom: 0px;
    left: 5px;
    background-image: url(/_public/images/nlp/star-circle.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    animation: move3 15s linear infinite;
    z-index: -1;
    opacity: 0.6;
  }
  .nlp-main .levels .levels-container .levels-content {
    width: 49%;
    order: 2;
  }
  .nlp-main .levels .levels-container .advantages-content {
    width: 47%;
    margin-top: 0;
    order: 1;
    margin-right: auto;
  }
  .nlp-main .levels .levels-container .advantages-content .advantages {
    width: 100%;
  }
  .nlp-main .limited .limited-container .budget .budget-content {
    padding: 2rem;
  }
  .nlp-main .offer {
    background-image: url(/_public/images/nlp/offer-bg.png);
    background-size: 27% 100%;
    background-repeat: no-repeat;
    padding: 1rem 2rem;
  }
  .nlp-main .offer .offer-container {
    width: 72%;
    margin: auto;
  }
  .nlp-main .offer .offer-container .offer-content .content h2 {
    -webkit-text-fill-color: rgba(0, 0, 0, 0.63);
    color: #000000;
  }
  .nlp-main .offer .offer-container .offer-content .content p {
    color: #070707;
  }
  .nlp-main .footer .footer-container .query-content {
    width: 50%;
    bottom: -32px;
  }
  .nlp-main .footer .footer-container .footer-content .contact-info .contact {
    width: 43%;
  }
}
@media  (min-width: 1024px)  and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nlp-main .course .course-container .course-list .course-item{
    width: 29%;
  }
  .nlp-main .delivery .delivery-container .delivery-list .delivery-item {
    font-size: 16px;
    min-height: auto;
  }
}
@media (min-width : 1366px) {
  .nlp-main .container {
    width: 1200px;
    margin: 0 auto;
  }
  .nlp-main .heading h2 {
    font-size: 32px;
  }
  .nlp-main .buttons .btn-red,
  .nlp-main .buttons .btn-white {
    font-size: 18px;
  }
  .nlp-main .banner .logo-container {
    padding: 1rem 0;
    background-size: 32% 100%;
  }
  .nlp-main .banner .logo-container .menu-links ul .links-li {
    margin-right: 1.5rem;
  }
  .nlp-main .banner .logo-container .menu-links ul .links-li .btn-red {
    min-height: 44px;
    min-width: 169px;
  }
  .nlp-main .banner .banner-container {
    padding: 4rem 0rem;
    padding-top: 3rem;
  }
  .nlp-main .banner .banner-container .banner-img::after {
    top: 96px;
  }
  .nlp-main .delivery {
    padding: 4rem 0rem;
  }
  .nlp-main .delivery .delivery-container .delivery-list {
    justify-content: space-evenly;
  }
  .nlp-main .delivery .delivery-container .delivery-list .delivery-item {
    width: 18%;
  }
  .nlp-main .overview {
    padding: 4rem 0rem;
  }
  .nlp-main .overview .overview-container .package-content {
    width: 28%;
  }
  .nlp-main .techniques {
    padding: 4rem 0rem;
  }
  .nlp-main .course {
    padding: 4rem 0rem;
  }
  .nlp-main .course .course-container .course-list .course-item {
    width: 26%;
  }
  .nlp-main .works {
    padding: 4rem 0rem;
  }
  .nlp-main .works .works-container::before {
    content: none;
  }
  .nlp-main .choose {
    padding: 4rem 0rem;
  }
  .nlp-main .choose .choose-container {
    width: 100%;
  }
  .nlp-main .choose .choose-container .choose-list {
    justify-content: space-between;
  }
  .nlp-main .choose .choose-container .choose-list .choose-item {
    width: 25%;
  }
  .nlp-main .choose .choose-container .choose-list .choose-item p{
    min-height: 95px;
  }
  .nlp-main .help {
    padding: 4rem 0rem;
  }
  .nlp-main .help .help-container .help-content {
    width: 56%;
  }
  .nlp-main .help .help-container .help-image {
    width: 32%;
  }
  .nlp-main .testimonial {
    padding: 4rem 0rem;
  }
  .nlp-main .testimonial .testimonial-container {
    align-items: flex-start;
  }
  .nlp-main .testimonial .testimonial-container .testimonial-list .testimonial-item .review {
    min-height: 270px;
  }
  .nlp-main .levels {
    padding: 4rem 0rem;
  }
  .nlp-main .levels .levels-container:before {
    animation: move4 12s linear infinite;
  }
  .nlp-main .limited {
    padding: 4rem 0rem;
    padding-top: 0;
  }
  .nlp-main .limited .limited-container .form {
    width: 45%;
  }
  .nlp-main .offer {
    padding: 4rem 0rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .nlp-main .faq {
    padding: 4rem 0rem;
  }
  .nlp-main .footer {
    padding: 4rem 0rem;
    background-size: 100% 75%;
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .nlp-main .footer .footer-container .query-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FF0000;
    opacity: 0.2;
    animation: move 10s linear infinite;
  }
}
@media (min-width : 1500px) {
  .nlp-main .offer {
    background-image: none;
    background: radial-gradient(#5C5C82, #000032);
  }
  .nlp-main .offer .offer-container .offer-content .content h2 {
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
  }
  .nlp-main .offer .offer-container .offer-content .content p {
    color: #FFFFFF;
  }
}
@media (min-width : 1600px) {
  .nlp-main .banner .logo-container {
    background-size: 37% 100%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nlp-main .heading h2{
    background: 0 0;
  }
  .nlp-main .heading .white-heading h2{
    color: #FFFFFF;
  }
}
