@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
  font-size: 9px;
}

input[type="checkbox"]:checked:before {
  content: '\2713';
}

input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  min-width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 2px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=checkbox] {
  border: 1px solid #000000;
  background-color: transparent;
}

input[type=checkbox]:before,
input[type=checkbox]:checked:before {
  color: #000000;
}

::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}

::-webkit-scrollbar-track {
  background: #F68F1D;
}

::-webkit-scrollbar-thumb {
  background: #E4ECF9;
}

body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  font-family: 'Poppins';
}

ul,
li,
p {
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  font-size: 14px;
}

ul,
li {
  padding: 0;
  list-style: none;
}

p strong,
p b {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h2 {
  font-weight: 800;
  font-style: normal;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: 100%;
}

section {
  display: flex;
  padding: 3rem 1.5rem;
}

.agile .heading {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1.5rem;
}

.agile .heading h2 {
  font-size: 22px;
  width: 100%;
}

.agile .heading h2 b {
  color: #0E67D8;
}

.agile .heading p {
  margin-top: 1rem;
}

.agile .center-heading {
  justify-content: center;
  align-items: center;
}

.agile .center-heading h2,
.agile .center-heading p {
  text-align: center;
}

.agile .white-heading h2,
.agile .white-heading p {
  color: #ffffff;
}

.agile .buttons {
  display: flex;
  margin-top: 1.5rem;
}

.agile .buttons .btn-orange,
.agile .buttons .btn-white,
.agile .buttons .btn-grey {
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-radius: 8px;
  font-weight: 500;
  padding: 10px 15px;
  z-index: 1;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.agile .buttons .btn-orange::before,
.agile .buttons .btn-white::before,
.agile .buttons .btn-grey::before,
.agile .buttons .btn-orange::after,
.agile .buttons .btn-white::after,
.agile .buttons .btn-grey::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: -1;
  transition: all 500ms ease;
  background-repeat: no-repeat;
}

.agile .buttons .btn-orange::before,
.agile .buttons .btn-white::before,
.agile .buttons .btn-grey::before {
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 103%, 400% 0, 100% 100%, 0% 100%, 0 0);
  transition: all 500ms ease;
}

.agile .buttons .btn-orange::after,
.agile .buttons .btn-white::after,
.agile .buttons .btn-grey::after {
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: 0.8s all;
  opacity: 0;
}

.agile .buttons .btn-orange:hover::after,
.agile .buttons .btn-white:hover::after,
.agile .buttons .btn-grey:hover::after {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  opacity: 1;
}

.agile .buttons .btn-orange img,
.agile .buttons .btn-white img,
.agile .buttons .btn-grey img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.agile .buttons .btn-orange {
  background-image: linear-gradient(90deg, #F68F1D 0%, #ffd000 100%);
  color: #ffffff;
  transition: 0.3s ease-out;
}

.agile .buttons .btn-orange:hover {
  box-shadow: 0px 0px 3px #ffffff;
}

.agile .buttons .btn-orange::before {
  background-image: linear-gradient(90deg, #0E67D8 50%, #191a72 200%);
}

.agile .buttons .btn-orange::after {
  background-image: linear-gradient(90deg, #0E67D8 50%, #191a72 200%);
}

.agile .buttons .btn-grey {
  background-color: #EBEBEB;
  color: #000000;
}

.agile .buttons .btn-grey::before {
  background-image: linear-gradient(90deg, #F68F1D 50%, #ffd000 200%);
}

.agile .buttons .btn-grey::after {
  background-image: linear-gradient(90deg, #F68F1D 50%, #ffd000 200%);
}

.agile .buttons .btn-grey:hover {
  color: #ffffff;
}

.agile .buttons .btn-white {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
}

.agile .buttons .btn-white::after {
  background-image: linear-gradient(90deg, #0E67D8 50%, #191a72 200%);
}

.agile .buttons .btn-white::before {
  background-image: linear-gradient(90deg, #0E67D8 50%, #191a72 200%);
}

.agile .buttons .btn-white:hover {
  color: #ffffff;
  border: 1px solid transparent;
  transition: 1s all;
}

.agile .buttons .btn-white:hover img {
  filter: brightness(100) !important;
}

@keyframes underline {
  0% {
    background-size: 0%;
    background-repeat: no-repeat;
  }

  100% {
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

@keyframes scroll {
  100% {
    background-position: -35000px 0;
  }
}

.agile .banner {
  flex-direction: column;
  background-image: url(/_public/images/agile-new/banner-bg.png);
  background-size: cover;
  background-position: center;
  padding: 0;
}

.agile .banner .logo-container,
.agile .banner .tka-logo,
.agile .banner .menu,
.agile .banner .menu-toggle {
  display: flex;
}

.agile .banner .logo-container {
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.07);
}

.agile .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
}

.agile .banner .logo-container .tka-logo img,
.agile .banner .logo-container .menu img {
  height: 100%;
  width: 100%;
}

.agile .banner .logo-container .tka-logo {
  max-width: 210px;
}

.agile .banner .logo-container .menu {
  height: 23px;
  width: 23px;
}

.agile .banner .logo-container .active+.menu-links {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.agile .banner .logo-container .menu-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 80%;
  top: 0;
  right: 0;
  background-color: #ffffff;
  transition: 0.5s all;
  z-index: 5;
  padding: 1rem;
  transform: translateX(100%);
  transition: 1s all;
}

.agile .banner .logo-container .menu-links .menu-toggle {
  align-items: center;
  justify-content: flex-end;
}

.agile .banner .logo-container .menu-links .menu-toggle img {
  width: 13px;
  height: 13px;
  margin-right: 0.2rem;
}

.agile .banner .logo-container .menu-links .links-li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed #000000;
  font-weight: 500;
}

.agile .banner .logo-container .menu-links .links-li:first-child {
  padding-top: 0;
}

.agile .banner .logo-container .menu-links .links-li:nth-of-type(5) {
  padding-bottom: 0;
  border-bottom: 0;
}

.agile .banner .logo-container .buttons {
  display: none;
}

.agile .banner .logo-container .active+.menu-links {
  transform: translateX(0);
}

.agile .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10 !important;
  transition: 1s;
  height: auto;
  border-bottom: none;
}

.agile .banner .sticky-down {
  top: -100px;
}

.agile .banner .banner-container,
.agile .banner .banner-content,
.agile .banner .banner-detail,
.agile .banner .graph,
.agile .banner .methodology,
.agile .banner .progress {
  display: flex;
  flex-direction: column;
}

.agile .banner .banner-container {
  padding: 3rem 1.5rem;
}

.agile .banner .banner-content {
  align-items: center;
}

.agile .banner .banner-content h1 {
  text-align: center;
  font-size: 28px;
}

.agile .banner .banner-content h1 b {
  color: #0E67D8;
}
.agile .banner .banner-content ul li{
list-style: disc;
}
.agile .banner .banner-content ul{
  padding-left: 1rem;
}

.agile .banner .banner-content strong {
  margin-top: .5rem;
}

.agile .banner .banner-content h1 img {
  width: 34px;
  height: 34px;
  margin-right: 0.6rem;
  transform: translateY(8px);
}

.agile .banner .banner-content p {
  margin-top: 1rem;
  line-height: 27px;
  text-align: center;
}

.agile .banner .banner-content .buttons {
  margin-top: 1.8rem;
}

.agile .banner .banner-content .banner-text {
  font-size: 16px !important;
}

.agile .banner .banner-content .banner-text a {
  border-bottom: 2px solid #0E67D8;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  color: #0E67D8;
}

.agile .banner .banner-info {
  margin-top: 2rem;
  padding: 1.2rem;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.agile .banner .banner-detail,
.agile .banner .progress,
.agile .banner .graph {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.agile .banner .banner-detail {
  padding: 0.8rem;
  width: 45%;
  margin-top: 0;
  background-image: url(/_public/images/agile-new/orange-graph-new.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto;
}

.agile .banner .banner-detail strong {
  font-size: 12px;
  font-weight: 500;
}

.agile .banner .banner-detail p {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  font-size: 10px;
  padding-bottom: 5px;
}

.agile .banner .banner-detail p b {
  font-size: 9px;
  font-weight: 400;
  color: #F79B8D;
}

.agile .banner .banner-detail:nth-child(2) {
  background-image: url(/_public/images/agile-new/blue-graph-new.png);
}

.agile .banner .banner-detail:nth-child(2) b {
  color: #4CBD5C;
  display: flex;
  align-items: center;
}

.agile .banner .banner-detail:nth-child(2) b::after {
  content: '';
  background-image: url(/_public/images/agile-new/up-arrow.svg);
  background-size: 100% 100%;
  width: 6px;
  height: 6px;
  margin-left: 5px;
}

.agile .banner .progress {
  padding: 0.8rem;
  width: 100%;
}

.agile .banner .progress h3 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.agile .banner .progress span {
  display: flex;
}

.agile .banner .progress span img {
  width: 100%;
  height: 100%;
}

.agile .banner .progress p {
  line-height: 21px;
  width: 53%;
}

.agile .banner .methodology {
  background-color: #F6F6F6;
  border-radius: 5px;
  padding: 1.2rem;
  width: 100%;
  margin-top: 1rem;
}

.agile .banner .methodology h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.agile .banner .methodology ul li {
  font-size: 12px;
  margin-top: 0.6rem;
  list-style: disc;
  margin-left: 1rem;
}

.agile .banner .methodology ul li:first-child {
  margin-top: 0;
}

.agile .banner .graph span {
  display: flex;
  padding: 1.2rem 1.5rem 1rem;
}
.agile .banner .graph h3{
  font-size: 14px;
    padding: 1.2rem 1.5rem 0;
}

.agile .banner .graph span img {
  width: 100%;
  height: 100%;
}

.agile .banner .graph .graph-content {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #D7D7D7;
  padding: 0.6rem 1.5rem;
}

.agile .banner .graph .graph-content p {
  font-size: 9px;
  width: 29%;
  display: flex;
  flex-direction: column;
}

.agile .banner .graph .graph-content p b {
  font-size: 12px;
  font-weight: 500;
}

.agile .course {
  padding-top: 1rem;
}

.agile .course .course-container,
.agile .course .course-certification,
.agile .course .course-content,
.agile .course .course-list,
.agile .course .info,
.agile .course .course-item,
.agile .course .course-form,
.agile .course .offer,
.agile .course .objective,
.agile .course .objective-list,
.agile .course .objective-item,
.agile .course .contact{
  display: flex;
  flex-direction: column;
}

.agile .course .course-certification .heading {
  margin-bottom: 2.8rem;
}

.agile .course .course-content .course-heading {
  display: flex;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  padding: 0.7rem 1rem 0.7rem 3.8rem;
  position: relative;
}

.agile .course .course-content .course-heading::before {
  content: "";
  border-bottom: 10px solid #191a72;
  border-right: 8px solid transparent;
  position: absolute;
  top: -10px;
  left: 47px;
}

.agile .course .course-content .course-heading span {
  width: 47px;
  height: 47px;
  background-image: linear-gradient(90deg, #0E67D8 0%, #191A72 100%);
  border-bottom-left-radius: 10px;
  padding: 10px;
  position: absolute;
  top: -10px;
  left: 0;
}

.agile .course .course-content .course-heading span img {
  width: 100%;
  height: 100%;
}

.agile .course .course-content .course-heading p {
  font-size: 18px;
  font-weight: 500;
}

.agile .course .course-content .course-list {
  margin: 1.3rem 0 2.5rem 0;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
}

.agile .course .course-content .course-list b {
  font-weight: 600;
  padding: 1rem 1.5rem;
  background-color: #f6f6f6;
  border-radius: 10px 10px 0 0;
}

.agile .course .course-content .course-list .course-item {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px dashed #D7D7D7;
}

.agile .course .course-content .course-list .course-item:last-child {
  border-radius: 0 0 10px 10px;
  border-bottom: none;
}

.agile .course .course-content .course-list .course-item .buttons {
  margin-top: 1rem;
}

.agile .course .course-content .course-list .course-item .buttons .btn-grey {
  min-width: 140px;
}

.agile .course .course-content .course-list h3 {
  font-size: 14px;
  font-weight: 500;
}

.agile .course .course-content .course-list p {
  margin-top: 8px;
  color: #8E8E8E;
  font-size: 12px;
}

.agile .course .course-content .course-list p strong {
  font-weight: 600;
}

.agile .course .objective {
  margin-bottom: 2rem;
}

.agile .course .objective .heading {
  margin-bottom: 0.6rem;
}

.agile .course .objective .objective-item {
  margin-top: 1.5rem;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  padding: 1rem 1.2rem;
  border-radius: 7px;
  border: 1px solid transparent;
}

.agile .course .objective .objective-item.active {
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #0E67D8 0%, #191A72 100%);
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.agile .course .objective .objective-item.active .ques {
  position: relative;
}

.agile .course .objective .objective-item.active .ques::after {
  transform: rotate(-90deg);
  transition: transform 0.5s ease-in-out;
}

.agile .course .objective .objective-item .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.agile .course .objective .objective-item .ques h3 {
  font-size: 16px;
  font-weight: 500;
  width: calc(100% - 35px);
}

.agile .course .objective .objective-item .ques::after {
  content: '';
  background-image: url(/_public/images/agile-new/arrow.svg);
  background-size: 100% 100%;
  width: 10px;
  height: 15px;
  margin-top: 5px;
}

.agile .course .objective .objective-item .ans {
  display: none;
  margin-top: 15px;
}

.agile .course .objective .objective-item .ans p {
  width: 95%;
}
.agile .course .certification {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

.agile .course .contact {
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #0E67D8 0%, #191A72 100%);
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.agile .course .contact form,
.agile .course .contact .input-list {
  display: flex;
  flex-direction: column;
}

.agile .course .contact form {
  margin-bottom: 0;
}

.agile .course .contact form .mob {
  display: flex;
  position: relative;
  width: calc(100% - 30px);
}

.agile .course .contact form .mob .phonecode-field {
  display: flex;
  align-items: center;
}

.agile .course .contact form .mob .phonecode-field span {
  font-size: 14px;
  min-width: 45px;
  color: #EBEBEB;
  padding-right: 5px;
  border-left: 1px solid #A7A7A7;
  padding-left: 15px;
}

.agile .course .contact form .mob .phonecode-field .country-code {
  width: 44px;
  border: none;
  margin-right: 0.5rem;
  outline: 0;
  font-size: 14px;
  color: #A7A7A7;
  background-color: transparent;
}

.agile .course .contact form .mob .phonecode-field .country-code option {
  color: #EBEBEB;
}

.agile .course .contact form .mob .phonecode-field input {
  border: none;
  padding: 0;
  margin-top: 0;
}

.agile .course .contact form .mob .phonecode-field .hidden-field {
  z-index: -1;
  width: 0;
  height: 0;
  pointer-events: none;
  overflow: hidden;
}

.agile .course .contact form .mob .phonecode-field .hidden-field input {
  border: none;
  padding: 0;
}

.agile .course .contact form .input-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 5px;
  border: 1px solid #D7D7D7;
}

.agile .course .contact form .input-container:last-child {
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.agile .course .contact form .input-container span {
  display: flex;
  width: 18px;
  height: 18px;
}

.agile .course .contact form .input-container span img {
  width: 100%;
  height: 100%;
}

.agile .course .contact form .input-container span img:last-child {
  display: none;
}

.agile .course .contact form .input-container input,
.agile .course .contact form .input-container textarea {
  border: none;
  padding: 0;
  outline: 0;
  font-size: 14px;
  width: calc(100% - 30px);
}

.agile .course .contact form .input-container .checkbox {
  width: 14px;
  height: 14px;
}

.agile .course .contact form .input-container textarea {
  resize: none;
  overflow: auto;
  height: 70px;
}

.agile .course .contact form .input-container:nth-of-type(6) {
  align-items: flex-start;
  margin-bottom: 0;
}

.agile .course .contact form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #8E8E8E;
}

.agile .course .contact form .input-container :-ms-input-placeholder {
  /* Firefox */
  color: #8E8E8E;
}

.agile .course .contact form .input-container ::placeholder {
  /* Chrome */
  font-size: 13px;
  font-weight: 500;
  color: #8E8E8E;
}

.agile .course .contact form .input-error {
  border: 1px solid #ff0000;
}

.agile .course .contact form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}

.agile .course .contact form .input-error :-ms-input-placeholder {
  /* Firefox */
  color: #ff0000;
}

.agile .course .contact form .input-error ::placeholder {
  /* Chrome */
  color: #ff0000;
}

.agile .course .contact form .input-error span img:first-child {
  display: none;
}

.agile .course .contact form .input-error span img:last-child {
  display: flex;
}

.agile .course .contact form .form-consent {
  display: flex;
  margin-bottom: 0.7rem;
}

.agile .course .contact form .form-consent:nth-child(9) {
  margin-bottom: 0;
}

.agile .course .contact form .form-consent label {
  display: flex;
  width: auto;
  align-self: center;
  margin-left: 0.3rem;
  font-size: 11px;
  cursor: pointer;
  color: #000000;
}

.agile .course .contact form .form-consent p {
  font-size: 11px;
}

.agile .course .contact form .form-consent p a {
  font-weight: 800;
  color: #F68F1D;
}

.agile .course .contact form .consent-error {
  display: none;
  margin-bottom: 0.7rem;
}

.agile .course .contact form .consent-error p {
  color: #ff0000;
  font-size: 11px;
}

.agile .course .contact form .buttons .btn-orange {
  min-width: 140px;
}

.agile .course .offer {
  padding: 2rem;
  background-color: #E4ECF9;
  border-radius: 15px;
}

.agile .course .offer .heading {
  margin-bottom: 0;
  position: relative;
}

.agile .course .offer .heading::before {
  content: "";
  background-image: url(/_public/images/agile-new/rise.svg);
  background-size: 100% 100%;
  width: 35px;
  height: 35px;
  position: absolute;
  left: -22px;
  top: -20px;
}

.agile .course .offer .heading p {
  margin-top: 0.8rem;
}

.agile .course .offer .buttons {
  margin-top: 1.2rem;
}

.agile .course .offer .buttons .btn-white {
  min-width: 130px;
}

.agile .method {
  padding-top: 1rem;
}

.agile .method .method-container,
.agile .method .method-head,
.agile .method .method-content,
.agile .method .content,
.agile .method .content-info {
  display: flex;
  flex-direction: column;
}

.agile .method .heading {
  margin-bottom: 2rem;
}

.agile .method ul {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1.8rem;
  counter-reset: counter;
  position: relative;
}

.agile .method ul::before {
  content: '';
  position: absolute;
  border-left: 3px solid #f8f8f8;
  border-radius: 3px;
  height: calc(100% - 50px);
  left: 64px;
}

.agile .method ul li {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  line-height: 24px;
  cursor: pointer;
}

.agile .method ul li:first-child {
  margin-top: 1.8rem;
}

.agile .method ul li:last-child {
  margin-bottom: 1.5rem;
}

.agile .method ul li::before,
.agile .method ul li::after {
  transition: 1s all;
}

.agile .method ul li::before {
  content: counter(counter, decimal-leading-zero);
  counter-increment: counter;
  color: #e0e0e0;
  margin-right: 2.8rem;
}

.agile .method ul li::after {
  content: '';
  position: absolute;
  left: 35px;
  height: 0;
  width: 3px;
  border-radius: 3px;
  background-color: #F68F1D;
}

.agile .method ul li.active::before {
  color: #F68F1D;
}

.agile .method ul li.active::after {
  height: 55px;
}

.agile .method .method-content {
  background-image: linear-gradient(90deg, #0E67D8 0%, #191A72 100%);
  padding: 2rem 1.2rem;
  margin-top: 2rem;
}

.agile .method .content .image {
  display: none;
}

.agile .method .content-info {
  align-items: center;
  text-align: center;
}

.agile .method .content-info h3,
.agile .method .content-info p {
  color: #ffffff;
}

.agile .method .content-info span {
  display: flex;
  width: 65px;
  height: 65px;
}

.agile .method .content-info span img {
  height: 100%;
  width: 100%;
}

.agile .method .content-info h3 {
  font-size: 18px;
  margin: 10px 0 8px;
  font-weight: 600;
}

.agile .method .content-info .buttons {
  margin-top: 2rem;
}

.agile .method .content-info .buttons .btn-orange img {
  margin: 0 0 0 10px;
  width: 13px;
  height: 13px;
}

.agile .lifecycle {
  padding-top: 1rem;
}

.agile .lifecycle .lifecycle-container,
.agile .lifecycle .lifecycle-content {
  display: flex;
  flex-direction: column;
}

.agile .lifecycle .lifecycle-content {
  align-items: center;
}

.agile .lifecycle .lifecycle-content p {
  text-align: center;
}

.agile .lifecycle .lifecycle-info {
  display: flex;
  margin-top: 2rem;
}

.agile .lifecycle .lifecycle-info img {
  height: 100%;
  width: 100%;
}

.agile .fact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.agile .fact .fact-container,
.agile .fact .fact-content {
  display: flex;
  flex-direction: column;
}

.agile .fact .fact-content p {
  text-align: center;
}

.agile .fact .fact-content p:last-child {
  margin-top: 1rem;
}

.agile .fact .fact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.agile .fact .fact-item {
  display: flex;
  flex-wrap: wrap;
  width: 45%;
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

.agile .fact .fact-item strong {
  font-size: 22px;
}

.agile .fact .fact-item p {
  width: 100%;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 13px;
}

.agile .process {
  display: none;
}

.agile .principle {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.agile .principle .principle-container,
.agile .principle .principle-list,
.agile .principle .principle-item {
  display: flex;
  flex-direction: column;
}

.agile .principle .heading {
  margin-bottom: 0;
}

.agile .principle .principle-item {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  padding: 1.5rem 1.2rem;
  align-items: center;
}

.agile .principle .principle-item h3 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.agile .principle .principle-item p {
  text-align: center;
  margin-top: 10px;
}

.agile .principle .principle-item p::after {
  content: '';
  display: flex;
  background-image: url(/_public/images/agile-new/spring.svg);
  background-size: 100% 100%;
  width: 87px;
  height: 13px;
  margin: 1.2rem auto 2rem;
}

.agile .principle .principle-item span {
  display: flex;
  width: 46px;
  height: 46px;
}

.agile .principle .principle-item span img {
  width: 100%;
  height: 100%;
}

.agile .discount-agile {
  background-image: url(/_public/images/agile-new/discount-bg.png);
  background-size: cover;
}

.agile .discount-agile .discount-container {
  display: flex;
  flex-direction: column;
}

.agile .discount-agile .discount-container .heading h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin-top: 1.2rem;
}

.agile .discount-agile .discount-container .buttons {
  margin-top: 0;
}

.agile .discount-agile .discount-container .buttons .btn-orange img {
  margin: 0 0 0 10px;
}

.agile .overview .overview-container,
.agile .overview .overview-content,
.agile .overview .overview-info {
  display: flex;
  flex-direction: column;
}

.agile .overview .overview-info {
  margin-top: 2rem;
}

.agile .overview .overview-info .heading {
  margin: 1.5rem 0 0;
}

.agile .overview .overview-info span {
  display: flex;
}

.agile .overview .overview-info span img {
  width: 100%;
  height: 100%;
}

.agile .overview .overview-content .heading h2 {
  font-size: 20px;
}

.agile .overview .overview-content p {
  text-align: center;
}

.agile .overview .overview-content .buttons {
  justify-content: center;
}

.agile .choose {
  padding-top: 1rem;
}

.agile .choose .choose-container,
.agile .choose .choose-list,
.agile .choose .choose-item {
  display: flex;
  flex-direction: column;
}

.agile .choose .heading {
  margin-bottom: 0;
}

.agile .choose .choose-list {
  counter-reset: choose-section;
}

.agile .choose .choose-item {
  align-items: center;
  margin-top: 2rem;
}

.agile .choose .choose-item span {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  position: relative;
}

.agile .choose .choose-item span::after {
  counter-increment: choose-section;
  content: counter(choose-section, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: #ffffff;
  width: 38px;
  height: 38px;
  font-size: 14px;
  font-weight: 600;
  color: #0E67D8;
  border-radius: 50px;
  box-shadow: 0 0 22px rgba(14, 85, 232, 0.11);
  top: 5px;
  right: 0;
}

.agile .choose .choose-item span img {
  width: 100%;
  height: 100%;
}

.agile .choose .choose-item h3 {
  font-size: 16px;
  margin: 30px 0 5px;
  text-align: center;
}

.agile .choose .choose-item p {
  text-align: center;
}

.agile .benefit {
  padding-top: 1rem;
}

.agile .benefit .heading p {
  margin-top: 1.5rem;
}

.agile .benefit .benefit-container,
.agile .benefit .benefit-list {
  display: flex;
  flex-direction: column;
}

.agile .benefit .heading {
  margin-bottom: 0;
}

.agile .benefit li {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.agile .benefit li span {
  display: flex;
  background: #F6F6F6;
  border-radius: 10px;
  height: 54px;
  min-width: 54px;
  padding: 0.7rem;
  margin-right: 1rem;
}

.agile .benefit li span img {
  height: 100%;
  width: 100%;
}

.agile .benefit .benefit-info {
  display: none;
}

.agile .team {
  background-image: url(/_public/images/agile-new/layer-bg.png);
  background-size: cover;
  background-position: center;
}

.agile .team .heading {
  margin-bottom: 0;
}

.agile .team .heading p {
  margin-top: 14px;
}

.agile .team .team-container,
.agile .team .team-item {
  display: flex;
  flex-direction: column;
}

.agile .team .team-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.agile .team .team-item {
  width: 133px;
  padding: 1.5rem 1rem;
  border-radius: 15px;
  align-items: center;
  margin-top: 1.5rem;
  backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.149);
}

.agile .team .team-item span {
  display: flex;
  width: 67px;
  height: 42px;
}

.agile .team .team-item span img {
  width: 100%;
  height: 100%;
}

.agile .team .team-item p {
  text-align: center;
  color: #ffffff;
  margin-top: 0.5rem;
  font-size: 12px;
}

.agile .client .heading {
  margin-bottom: 0;
}

.agile .client .client-container,
.agile .client .client-content,
.agile .client .company,
.agile .client .client-item,
.agile .client .info {
  display: flex;
  flex-direction: column;
}

.agile .client .company {
  margin-bottom: 3rem;
}

.agile .client .company h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.agile .client .company-list {
  display: flex;
  background-image: url(/_public/images/agile-new/partners.png);
  animation: 1000s scroll infinite linear;
  background-size: auto 100%;
  min-height: 54px;
}

.agile .client .client-item {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1.5rem 3.7rem;
  margin: 3.3rem 1rem 4.3rem;
  position: relative;
}

.agile .client .client-item::before {
  content: '';
  background-image: url(/_public/images/agile-new/stars.svg);
  background-size: 100% 100%;
  width: 105px;
  height: 20px;
  margin-bottom: 1.2rem;
}

.agile .client .client-item>p {
  border-top: 1px solid #D7D7D7;
  padding-top: 1.2rem;
  line-height: 27px;
}

.agile .client .owl-nav {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: calc(100% - 147px);
  margin: 0 auto;
}

.agile .client .owl-nav .owl-prev,
.agile .client .owl-nav .owl-next {
  display: flex;
  width: 13px;
  height: 13px;
  background-image: url(/_public/images/agile-new/black-arrow.svg);
  background-size: 100% 100%;
  opacity: 0.5;
}

.agile .client .owl-nav .owl-prev.btn-active,
.agile .client .owl-nav .owl-next.btn-active {
  opacity: 1;
}

.agile .client .owl-nav::before {
  content: '';
  height: 2px;
  width: calc(100% - 53px);
  background-color: #D7D7D7;
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  margin: 0 auto;
}

.agile .client .owl-nav::after {
  content: '';
  background-color: #0E67D8;
  width: calc(100% - 108px);
  height: 3px;
  position: absolute;
  left: 26px;
  bottom: 5px;
}

.agile .client .owl-nav .owl-prev {
  transform: rotate(181deg);
}

.agile .client .owl-dots {
  counter-reset: slides-num;
  width: 52px;
  position: absolute;
  right: 6px;
  bottom: -5px;
}

.agile .client .owl-dots::after {
  content: counter(slides-num, decimal-leading-zero);
  font-size: 12px;
  font-weight: 600;
  padding-left: 2.3rem;
  color: #D7D7D7;
}

.agile .client .owl-dot {
  counter-increment: slides-num;
  margin-right: 5px;
}

.agile .client .owl-dot.active::before {
  content: counter(slides-num, decimal-leading-zero) " /";
  position: absolute;
  left: -2px;
  top: 22px;
  font-size: 18px;
  font-weight: 600;
}

.agile .client .author {
  display: flex;
  justify-content: space-between;
  background-color: #E4ECF9;
  border-radius: 0 30px 30px 0;
  padding: 8px 8px 8px 25px;
  width: 270px;
  position: absolute;
  bottom: -31px;
  left: 0px;
}

.agile .client .author span {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.agile .client .author img {
  width: 100%;
  height: 100%;
}

.agile .client .info {
  width: calc(100% - 67px);
}

.agile .client .info strong {
  font-weight: 600;
  margin-bottom: 2px;
}

.agile .client .info p {
  color: #999696;
}

.agile .faq {
  padding-bottom: 4rem;
}

.agile .faq .faq-container,
.agile .faq .faq-list,
.agile .faq .faq-item {
  display: flex;
  flex-direction: column;
}

.agile .faq .heading {
  margin-bottom: 2rem;
}

.agile .faq .faq-item {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border: 1px solid #D7D7D7;
  border-radius: 10px;
}

.agile .faq .faq-item:first-child {
  margin-top: 0;
}

.agile .faq .faq-item.active {
  background-color: #E4ECF9;
  border: 1px solid transparent;
}

.agile .faq .faq-item.active .ques::after {
  background-image: url(/_public/images/agile-new/minus.svg);
  background-color: #0E67D8;
}

.agile .faq .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.agile .faq .ques::after {
  content: '';
  background-image: url(/_public/images/agile-new/plus.svg);
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: #f6f6f6;
  margin-top: 4px;
}

.agile .faq .ques h3 {
  width: calc(100% - 50px);
  font-size: 15px;
  font-weight: 600;
}

.agile .faq .ans {
  display: none;
  margin-top: 0.8rem;
}

.agile .footer {
  background-image: url(/_public/images/agile-new/footer-bg.png);
  background-size: cover;
}

.agile .footer .footer-container,
.agile .footer .footer-list,
.agile .footer .footer-info {
  display: flex;
  flex-direction: column;
}

.agile .footer .heading {
  flex-direction: row;
}

.agile .footer .heading h2 {
  width: fit-content;
}

.agile .footer .heading a {
  background-color: #F68F1D;
  padding: 0.6rem;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin-left: 1rem;
  transform: rotate(-45deg);
}

.agile .footer .heading a img {
  height: 100%;
  width: 100%;
}

.agile .footer .footer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.8rem;
}

.agile .footer .footer-item:last-child .footer-info span {
  display: none;
}

.agile .footer .footer-item span {
  display: flex;
  width: 30px;
  height: 30px;
}

.agile .footer .footer-item span img {
  width: 100%;
  height: 100%;
}

.agile .footer .footer-info {
  width: calc(100% - 60px);
  align-items: flex-start;
  position: relative;
}

.agile .footer .footer-info::before {
  content: "";
  position: absolute;
  left: -15px;
  background-color: #a7a7a7;
  width: 1px;
  height: 100%;
  transform: rotate(7deg);
}

.agile .footer .footer-info b {
  font-weight: 600;
}

.agile .footer .footer-info a {
  font-size: 15px;
  font-weight: 500;
  margin-top: 5px;
}

.agile .footer .footer-info .star-info {
  display: none;
}

@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }

  .heading h2 b {
    position: relative;
  }

  .heading h2 b::after {
    content: '';
    background-image: url(/_public/images/agile-new/curve.svg);
    background-size: 100% 100%;
    animation: underline 0.4s 1.5s ease-in both;
    width: 100%;
    height: 20px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -18px;
  }

  .agile .banner .logo-container .container {
    padding: 1.2rem 2rem;
  }

  .agile .banner .logo-container .menu-links {
    width: 50%;
  }

  .agile .banner .banner-container {
    padding: 3rem 2rem;
  }

  .agile .banner .banner-detail {
    width: 22%;
  }

  .agile .banner .methodology {
    width: 47%;
  }

  .agile .banner .graph {
    width: 50%;
  }

  .agile .banner .progress {
    width: 50%;
    margin-top: 0;
  }

  .agile .course .course-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .agile .course .course-content .course-heading {
    width: fit-content;
  }

  .agile .course .course-certification {
    width: 48%;
  }

  .agile .course .objective {
    margin-bottom: 0;
    margin-top: 1.3rem;
  }

  .agile .course .course-form {
    width: 48%;
    position: sticky;
    top: 70px;
  }

  .agile .method .method-head {
    flex-direction: row;
    justify-content: space-between;
  }

  .agile .method ul {
    width: 330px;
  }

  .agile .method .method-content {
    width: 48%;
    margin-top: 0;
  }

  .agile .method .content-info {
    align-items: flex-start;
    text-align: left;
  }

  .agile .lifecycle .lifecycle-container {
    align-items: center;
  }

  .agile .lifecycle .lifecycle-info {
    width: 75%;
  }

  .agile .fact .fact-list {
    margin-top: 0;
  }

  .agile .fact .fact-item {
    margin-top: 2rem;
    width: 21%;
  }

  .agile .process {
    padding-bottom: 2rem;
  }

  /* .agile .process .process-container {
    display: flex;
    flex-direction: column;
  } */

  .agile .process .heading {
    margin-bottom: 2rem;
  }

  .agile .process .process-info {
    display: flex;
    padding: 2rem;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
  }

  .agile .process .process-info img {
    width: 100%;
    height: 100%;
  }

  .agile .principle .principle-list {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .agile .principle .principle-item {
    width: 48%;
  }

  .agile .principle .principle-item:nth-child(4) p {
    min-height: 198px;
  }

  .agile .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .agile .overview .overview-content {
    width: 54%;
  }

  .agile .overview .overview-content h2,
  .agile .overview .overview-content p {
    text-align: left;
  }

  .agile .overview .overview-content .buttons {
    justify-content: flex-start;
  }

  .agile .overview .overview-info {
    width: 43%;
    margin-top: 0;
  }

  .agile .choose {
    padding-top: 1.5rem;
  }

  .agile .choose .heading {
    width: 72%;
    margin: auto;
  }

  .agile .choose .choose-list {
    flex-direction: row;
    justify-content: space-between;
  }

  .agile .choose .choose-item {
    width: 30%;
  }

  .agile .choose .choose-item h3 {
    min-height: 50px;
  }

  .agile .benefit .heading {
    width: 80%;
    margin: 0 auto 2rem;
  }

  .agile .benefit .heading h2,
  .agile .benefit .heading p {
    text-align: center;
  }

  .agile .benefit .benefit-list {
    flex-direction: row;
    justify-content: space-between;
  }

  .agile .benefit ul {
    width: 46%;
  }

  .agile .benefit ul li:first-child {
    margin-top: 0;
  }

  .agile .benefit ul:first-child li {
    flex-direction: row-reverse;
  }

  .agile .benefit ul:first-child li span {
    margin: 0 0 0 1rem;
  }

  .agile .team .team-list {
    justify-content: space-between;
  }

  .agile .client .client-item {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
    width: 90%;
  }

  .agile .client .client-item>p {
    min-height: 236px;
  }

  .agile .client .owl-nav {
    width: calc(100% - 400px);
  }

  .agile .client .owl-dots {
    right: 18%;
  }

  .agile .faq .faq-list {
    counter-reset: faq-section;
  }

  .agile .faq .faq-item {
    justify-content: center;
    position: relative;
  }

  .agile .faq .faq-item::before {
    content: '';
    border-left: 1px solid #D7D7D7;
    position: absolute;
    left: 50px;
    height: calc(100% - 30px);
  }

  .agile .faq .faq-item .ques::after {
    margin-top: 0;
  }

  .agile .faq .faq-item .ques h3 {
    display: flex;
    align-self: center;
    font-size: 16px;
  }

  .agile .faq .faq-item .ques h3::before {
    counter-increment: faq-section;
    content: "> "counter(faq-section);
    font-size: 16px;
    margin-right: 1.5rem;
  }

  .agile .faq .faq-item .ans {
    margin-left: 2.8rem;
  }

  .agile .footer .footer-list {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .agile .footer .footer-item {
    width: 49%;
  }

  .agile .footer .footer-item:last-child {
    width: 100%;
  }

  .agile .footer .footer-item:last-child .footer-info span {
    display: flex;
    height: 17px;
    width: 105px;
    margin-top: 0.7rem;
  }

  .agile .footer .footer-item:last-child .footer-info span img {
    height: 100%;
    width: 100%;
  }
}

@media (min-width : 1024px) {

  p,
  li {
    line-height: 1.8;
  }

  .agile .heading h2 {
    font-size: 28px;
  }

  .agile .buttons .btn-orange,
  .agile .buttons .btn-white,
  .agile .buttons .btn-grey {
    font-size: 16px;
  }

  .agile .banner .logo-container .menu,
  .agile .banner .logo-container .menu-toggle {
    display: none;
  }

  .agile .banner .logo-container .tka-logo {
    max-width: 242px;
  }

  .agile .banner .logo-container .menu-links {
    position: relative;
    width: auto;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    transform: translateX(0);
  }

  .agile .banner .logo-container .menu-links ul {
    display: flex;
    align-items: center;
  }

  .agile .banner .logo-container .menu-links .links-li {
    border-bottom: 0;
    padding: 0;
    margin-right: 1.5rem;
    position: relative;
  }

  .agile .banner .logo-container .menu-links .links-li::after {
    content: "";
    position: absolute;
    background-color: #0E67D8;
    height: 2px;
    width: 0;
    right: 0;
    left: 0;
    bottom: -2px;
    margin: auto;
    transition: 1s all;
  }

  .agile .banner .logo-container .menu-links .links-li:hover::after {
    width: 30px;
  }

  .agile .banner .logo-container .menu-links .links-li:nth-of-type(3) {
    display: none;
  }

  .agile .banner .logo-container .menu-links .links-li .btn-orange,
  .agile .banner .logo-container .menu-links .links-li .btn-white {
    height: 46px;
  }

  .agile .banner .logo-container .menu-links .links-li:last-child {
    display: flex;
    margin: 0;
  }

  .agile .banner .logo-container .menu-links .links-li:last-child .btn-white {
    min-width: 46px;
    margin-right: 1.5rem;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
  }

  .agile .banner .logo-container .menu-links .links-li:last-child .btn-white img {
    margin-right: 0;
    filter: brightness(0);
  }

  .agile .banner .logo-container .menu-links .links-li:last-child:hover::after {
    content: none;
  }

  .agile .banner .banner-container {
    align-items: center;
  }

  .agile .banner .banner-info {
    width: 70%;
    margin-top: 2rem;
  }

  .agile .banner .banner-content h1 {
    font-size: 35px;
  }

  .agile .banner .banner-content h1 img {
    width: 46px;
    height: 46px;
    transform: translateY(10px);
  }

  .agile .course .course-certification {
    width: 59%;
  }

  .agile .course .course-content .course-list .course-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }

  .agile .course .course-content .course-list .course-item .buttons {
    margin-top: 0;
    padding: 0 1.5rem;
  }

  .agile .course .course-content .info {
    width: 67%;
    border-right: 1px dashed #D7D7D7;
    padding: 1.2rem 2.1rem 1.2rem 1.5rem;
  }

  .agile .course .offer .heading h2 {
    font-size: 25px;
  }

  .agile .course .course-form {
    width: 36%;
    top: 97px;
  }

  .agile .course .contact {
    padding: 1.8rem;
  }

  .agile .method .method-content {
    width: 62%;
    padding: 2.3rem;
  }

  .agile .lifecycle {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .agile .lifecycle .heading h2 {
    text-align: left;
  }

  .agile .lifecycle .lifecycle-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .agile .lifecycle .lifecycle-content {
    width: 45%;
    align-items: flex-start;
  }

  .agile .lifecycle .lifecycle-content p {
    text-align: left;
  }

  .agile .lifecycle .lifecycle-info {
    width: 50%;
    margin-top: 0;
  }

  .agile .fact {
    padding-top: 3rem;
  }

  .agile .fact .fact-container {
    align-items: center;
  }

  .agile .fact .fact-list {
    width: 90%;
  }

  .agile .fact .fact-item {
    justify-content: flex-start;
    text-align: left;
    position: relative;
  }

  .agile .fact .fact-item::before {
    content: '';
    width: 2px;
    height: 87px;
    background-color: #D7D7D7;
    background-image: linear-gradient(90deg, #0E67D8 0%, #191A72 100%);
    background-size: 100% 50%;
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    left: -25px;
  }

  .agile .fact .fact-item strong {
    font-size: 35px;
  }

  .agile .fact .fact-item p {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .agile .process .heading {
    margin-bottom: 3rem;
  }

  .agile .principle {
    padding-bottom: 6rem;
  }

  .agile .principle .principle-item {
    align-items: flex-start;
  }

  .agile .principle .principle-item p {
    text-align: left;
    min-height: 174px !important;
  }
  .agile .principle .principle-item h3{
    text-align: start;
  }

  .agile .principle .principle-item p::after {
    margin: 1.2rem 0 2.6rem;
  }

  .agile .discount-agile {
    position: relative;
  }

  .agile .discount-agile::before {
    content: "";
    background-image: url(/_public/images/agile-new/speaker.png);
    background-size: 100% 100%;
    height: 125px;
    width: 154px;
    position: absolute;
    left: 0;
  }

  .agile .discount-agile .discount-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 83%;
    margin-left: auto;
  }

  .agile .discount-agile .heading {
    width: 72%;
    margin-bottom: 0;
  }

  .agile .overview {
    padding-top: 6rem;
  }

  .agile .overview .overview-content .heading h2 {
    font-size: 28px;
  }

  .agile .benefit {
    padding-bottom: 4rem;
  }

  .agile .benefit .benefit-list {
    align-items: center;
  }

  .agile .benefit ul {
    width: 27%;
  }

  .agile .benefit li {
    margin-top: 3rem;
  }

  .agile .benefit .benefit-info {
    display: flex;
    width: 360px;
  }

  .agile .benefit .benefit-info img {
    height: 100%;
    width: 100%;
  }

  .agile .benefit .company-container {
    margin-top: 6rem;
  }

  .agile .team .heading {
    width: 62%;
    margin: 2rem auto 0;
  }

  .agile .team .team-container {
    flex-direction: column-reverse;
    width: 92%;
    margin: 3.5rem auto 0.8rem auto;
    background-image: url(/_public/images/agile-new/dotted-line.png);
    background-size: 100% 86%;
    background-repeat: no-repeat;
  }

  .agile .team .team-item {
    margin-top: 0;
    width: 150px;
    justify-content: center;
  }

  .agile .team .team-item p {
    font-size: 14px;
  }

  .agile .team .team-item:first-child {
    transform: translate(-30px, 185px) rotate(-50deg);
  }

  .agile .team .team-item:nth-child(2) {
    transform: translate(-68px, 1px) rotate(-34deg);
  }

  .agile .team .team-item:nth-child(3) {
    transform: translateY(-55px);
  }

  .agile .team .team-item:nth-child(4) {
    transform: translate(45px, 0px) rotate(30deg);
  }

  .agile .team .team-item:last-child {
    transform: translate(27px, 193px) rotate(55deg);
  }

  .agile .client {
    padding-top: 4rem;
  }

  .agile .client .client-item {
    width: 92%;
  }

  .agile .client .client-item>p {
    min-height: 155px;
  }

  .agile .client .owl-nav {
    width: calc(100% - 689px);
  }

  .agile .client .owl-dots {
    right: 28%;
  }

  .agile .faq {
    padding-bottom: 5rem;
  }

  .agile .faq .faq-container {
    width: 80%;
    margin: 0 auto;
  }

  .agile .footer .heading {
    margin-bottom: 2.5rem;
    justify-content: center;
  }

  .agile .footer .footer-item {
    margin-top: 0;
  }

  .agile .footer .footer-item:first-child {
    width: 17%;
  }

  .agile .footer .footer-item:nth-child(2) {
    width: 35%;
  }

  .agile .footer .footer-item:last-child {
    width: 40%;
  }
}

@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }

  section {
    padding: 4rem 0;
  }

  .agile .heading h2 {
    font-size: 32px;
  }

  .agile .banner {
    position: relative;
  }

  .agile .banner::before {
    content: '';
    background-image: url(/_public/images/agile-new/circle.png);
    background-size: 100% 100%;
    min-width: 115px;
    height: 98px;
    position: absolute;
    top: 53px;
  }

  .agile .banner::after {
    content: '';
    background-image: url(/_public/images/agile-new/sphere2.png);
    background-size: 100% 100%;
    width: 355px;
    height: 650px;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .agile .banner .logo-container {
    z-index: 1;
  }

  .agile .banner .logo-container .container {
    padding: 0.8rem 0;
  }

  .agile .banner .logo-container .menu-links .links-li:nth-child(3) {
    display: flex;
  }

  .agile .banner .banner-container {
    padding: 6.2rem 0 6rem;
    flex-direction: row;
    justify-content: space-between;
  }

  .agile .banner .banner-content {
    width: 47%;
    align-items: flex-start;
  }

  .agile .banner .banner-content h1 {
    font-size: 40px;
    position: relative;
    text-align: left;
  }

  .agile .banner .banner-content h1::before {
    content: '';
    background-image: url(/_public/images/agile-new/rays.svg);
    background-size: 100% 100%;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -20px;
    left: -32px;
  }

  .agile .banner .banner-content h1::after {
    content: '';
    background-image: url(/_public/images/agile-new/element.svg);
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 12px;
  }

  .agile .banner .banner-content p {
    text-align: left;
  }

  .agile .banner .banner-info {
    z-index: 1;
    margin-top: 0;
    width: 48%;
  }

  .agile .banner .banner-detail {
    padding: 1.3rem;
    /* background-size: 100% 25%; */
  }

  .agile .banner .graph {
    width: 60%;
    align-self: center;
  }

  .agile .banner .graph .graph-content {
    padding: 0.6rem 1rem;
  }

  .agile .banner .methodology {
    width: 36%;
  }

  .agile .course {
    padding-top: 6rem;
  }

  .agile .course .course-certification {
    counter-reset: counter;
  }

  .agile .course .course-content {
    position: relative;
    padding-left: 3rem;
  }

  .agile .course .course-content::before {
    content: counter(counter, decimal-leading-zero);
    counter-increment: counter;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #0E67D8 0%, #191a72 100%);
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50px;
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 12px;
  }

  .agile .course .course-content::after {
    content: "";
    background-image: url(/_public/images/agile-new/line.png);
    background-size: 100% 100%;
    height: 100%;
    width: 6px;
    position: absolute;
    top: 0;
    left: 13px;
    z-index: -1;
  }

  .agile .course .course-content .info {
    width: 73%;
  }

  .agile .course .objective .objective-item .ques h3 {
    font-size: 18px;
  }

  .agile .course .offer p {
    font-size: 16px;
  }

  .agile .method .heading {
    width: 60%;
    margin: 0 auto 3.3rem;
  }

  .agile .method .method-content {
    width: 70%;
  }

  .agile .method .content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .agile .method .content .image {
    display: flex;
    width: 258px;
    height: 324px;
  }

  .agile .method .content .image img {
    width: 100%;
    height: 100%;
  }

  .agile .method ul li {
    width: 78%;
  }

  .agile .method .content-info {
    width: calc(100% - 292px);
  }

  .agile .method .content-info h3 {
    font-size: 25px;
  }

  .agile .lifecycle {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .agile .fact {
    padding-bottom: 3rem;
  }

  .agile .fact .heading h2 b::after {
    left: 32px;
    width: 138px;
  }

  .agile .fact .fact-container {
    width: 94%;
    margin: 0 auto;
  }

  .agile .process .heading h2 b::after {
    width: 144px;
    height: 24px;
    left: 32px;
    bottom: -25px;
  }

  .agile .process .process-container {
    width: 87%;
    margin: 0 auto;
  }

  .agile .principle .heading {
    width: 65%;
    margin: 0 auto 1rem;
  }

  .agile .principle .heading p {
    margin-top: 2rem;
  }

  .agile .principle .principle-list {
    flex-flow: wrap;
    align-items: flex-start;
    counter-reset: counter;
  }

  .agile .principle .principle-item {
    width: 23%;
    position: relative;
  }

  .agile .principle .principle-item p {
    min-height: auto !important;
  }

  .agile .principle .principle-item::before {
    content: counter(counter, decimal-leading-zero) '.';
    counter-increment: counter;
    color: #D7D7D7;
    font-size: 25px;
    font-weight: 600;
    position: absolute;
  }

  .agile .principle .principle-item::after {
    content: '';
    width: 66px;
    height: 1px;
    position: absolute;
    background-color: #D7D7D7;
  }

  .agile .principle .principle-item:nth-child(1)::before,
  .agile .principle .principle-item:nth-child(3)::before {
    bottom: -60px;
    left: 85px;
  }

  .agile .principle .principle-item:nth-child(1)::after,
  .agile .principle .principle-item:nth-child(3)::after {
    bottom: -40px;
    left: 6px;
  }

  .agile .principle .principle-item:nth-child(2),
  .agile .principle .principle-item:nth-child(4) {
    margin-top: 5.3rem;
  }

  .agile .principle .principle-item:nth-child(2)::before,
  .agile .principle .principle-item:nth-child(4)::before {
    top: -56px;
    left: 90px;
  }

  .agile .principle .principle-item:nth-child(2)::after,
  .agile .principle .principle-item:nth-child(4)::after {
    top: -40px;
    left: 6px;
  }

  .agile .discount-agile .discount-container {
    width: 90%;
  }

  .agile .overview {
    padding-bottom: 5rem;
  }

  .agile .overview .overview-content {
    width: 47%;
  }

  .agile .overview .overview-content .heading h2 {
    font-size: 32px;
  }

  .agile .overview .overview-info {
    width: 48%;
  }

  .agile .choose .choose-container {
    width: 93%;
    margin: auto;
  }

  .agile .choose .choose-list {
    background-image: url(/_public/images/agile-new/choose-bg.png);
    background-size: 1035px 166px;
    background-position: left 57% top 30%;
    background-repeat: no-repeat;
  }

  .agile .choose .choose-item {
    width: 26%;
    position: relative;
  }

  .agile .choose .choose-item::after {
    content: '';
    background-image: url(/_public/images/agile-new/dots.svg);
    background-size: 100% 100%;
    width: 50px;
    height: 8px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -30%;
  }

  .agile .choose .choose-item:last-child::after {
    content: none;
  }

  .agile .choose .choose-item span {
    background-color: #ffffff;
  }

  .agile .benefit {
    padding-bottom: 6rem;
  }

  .agile .benefit ul {
    width: 22.5%;
  }

  .agile .benefit .benefit-list {
    width: 94%;
    margin: auto;
  }

  .agile .benefit .heading {
    width: 62%;
  }

  .agile .benefit .benefit-info {
    width: 580px;
  }

  .agile .team {
    padding-bottom: 0;
  }

  .agile .team .heading {
    margin-top: 3rem;
  }

  .agile .team .team-container {
    width: 81%;
    margin: 4rem auto;
  }

  .agile .client {
    padding-top: 6rem;
  }

  .agile .client .company {
    margin-bottom: 6.2rem;
  }

  .agile .client .client-content {
    width: 95%;
    margin: 0 auto;
  }

  .agile .client .owl-nav {
    width: calc(100% - 869px);
  }

  .agile .client .owl-nav::before {
    width: calc(100% - 38px);
  }

  .agile .client .owl-nav::after {
    left: 19px;
  }

  .agile .client .owl-dots {
    right: 32%;
  }

  .agile .faq .heading {
    margin-bottom: 3rem;
  }

  .agile .footer {
    background-size: 100% 100%;
  }

  .agile .footer .footer-list {
    background: linear-gradient(90deg, #E4ECF9 0%, rgba(255, 255, 255, 0.55) 100%);
    border: 1px solid #D1E1F7;
    border-radius: 10px;
    padding: 2rem 3.5rem;
  }

  .agile .footer .footer-item:last-child {
    width: 35%;
  }

  .agile .footer .footer-info a {
    font-size: 18px;
  }
}

@media (min-width : 1500px) {

  .agile .banner::before,
  .agile .banner::after {
    content: none;
  }

  .agile .discount-agile::before {
    content: none;
  }

  .agile .discount-agile .discount-container {
    margin: auto;
  }
}