@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: #000000;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 10px;
  width: 10px;
  padding: 6px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #FFFFFF;
  margin-left: 0;
  border: 1px solid #B4B4B4;
}
/* 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: #030733;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #030733;
}
* {
  box-sizing: border-box;
  font-family: Roboto;
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #070606;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #070606;
  list-style: none;
  font-size: 14px;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.team-development .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.team-development .buttons .btn-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #FF8D00;
  color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  outline: none;
  min-width: 150px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-development .buttons .btn-orange:hover {
  box-shadow: 0 0 4px #FFFFFF;
}
.team-development .buttons .btn-orange:hover::before,
.team-development .buttons .btn-orange:hover::after {
  height: 100%;
}
.team-development .buttons .btn-orange img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.team-development .buttons .btn-orange::after,
.team-development .buttons .btn-orange::before {
  content: '';
  background-color: #030733;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0%;
  top: 0;
  z-index: -1;
  transition: 1s ease;
  border-radius: 8px;
}
.team-development .buttons .btn-orange::after {
  opacity: 0.5;
  transition: 0.5s ease;
}
.team-development .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
}
.team-development .heading h2 {
  width: 100%;
}
.team-development .heading span {
  width: 123px;
  height: 4px;
  background-color: #B4B4B4;
  position: relative;
  margin-top: 0.5rem;
}
.team-development .heading span::before {
  content: '';
  position: absolute;
  width: 35px;
  height: 8px;
  bottom: -10px;
  background-color: #6b1134;
  border-radius: 20px;
  top: -2px;
  animation: move 5s linear infinite;
}
.team-development .heading p {
  margin-top: 1rem;
}
.team-development .center-heading {
  justify-content: center;
  align-items: center;
}
.team-development .center-heading h2,
.team-development .center-heading p {
  text-align: center;
}
.team-development .white-heading h2,
.team-development .white-heading p {
  color: #FFFFFF;
}
.team-development .white-heading span::before {
  background-color: #FFFFFF;
}
@keyframes move {
  0% {
    left: 0;
  }
  50% {
    left: 75px;
  }
  100% {
    left: 0;
  }
}
@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ring {
  0% {
    transform: translate(200px, 100px);
  }
  33% {
    transform: translate(400px, 400px);
  }
  66% {
    transform: translate(200px, 300px);
  }
  100% {
    transform: translate(200px, 100px);
  }
}
@keyframes spring {
  0% {
    top: 200px;
    right: 500px;
  }
  25% {
    top: 600px;
    right: 100px;
  }
  50% {
    top: 200px;
    right: 200px;
  }
  75% {
    top: 700px;
    right: 400px;
  }
  100% {
    top: 200px;
    right: 100px;
  }
}
.team-development .banner {
  flex-direction: column;
  background-image: url(/_public/images/team-development/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  background-attachment: fixed;
}
.team-development .banner .logo-container {
  display: flex;
  background-color: #FFFFFF;
  height: 100%;
}
.team-development .banner .logo-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.team-development .banner .tka-logo,
.team-development .banner .menu-logo {
  display: flex;
}
.team-development .banner .tka-logo {
  max-width: 215px;
}
.team-development .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.team-development .banner .menu-logo {
  width: 23px;
  height: 23px;
  margin-left: auto;
}
.team-development .banner .menu-logo img {
  width: 100%;
  height: 100%;
}
.team-development .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  z-index: 4;
}
.team-development .banner .menu-links .back img {
  height: 13px;
  margin-right: 0.3rem;
  width: 13px;
}
.team-development .banner ul .links-li {
  border-bottom: 1px dotted #000000;
  padding: 8px 0;
}
.team-development .banner ul .links-li:first-child {
  padding-top: 0;
}
.team-development .banner ul .links-li:nth-last-child(2) {
  padding-bottom: 0;
  border-bottom: 0;
}
.team-development .banner ul .links-li:last-child {
  display: none;
}
.team-development .banner .menu-logo.active + .menu-links {
  padding: 15px;
  width: 85%;
}
.team-development .banner .menu-logo.active + .menu-links .back {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.team-development .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 1s;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  height: auto;
}
.team-development .banner .sticky-down {
  top: -100px;
}
.team-development .banner .container {
  height: 100%;
}
.team-development .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  padding-top: 1.5rem;
}
.team-development .banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
}
.team-development .banner .banner-container .banner-content h1 {
  color: #FFFFFF;
  font-size: 25px;
}
.team-development .banner .banner-container .banner-content h1 img {
  height: 40px;
  width: 40px;
  margin-right: 0.5rem;
  transform: translateY(10px);
}
.team-development .banner .banner-container .banner-content h3,
.team-development .banner .banner-container .banner-content p {
  color: #FFFFFF;
}
.team-development .banner .banner-container .banner-content h3 {
  margin: 1rem 0;
  letter-spacing: 2px;
}
.team-development .banner .banner-container .banner-img {
  display: flex;
  flex-direction: column;
  border: 1px solid #FFFFFF;
  padding: 1rem;
  margin-top: 2rem;
  height: 100%;
}
.team-development .banner .banner-container .banner-img span {
  display: flex;
  height: 100%;
  width: 100%;
}
.team-development .banner .banner-container .banner-img span img {
  height: 100%;
  width: 100%;
}
.team-development .banner .banner-container .banner-img h3 {
  color: #FFFFFF;
  text-align: center;
  margin-top: 0.7rem;
}
.team-development .overview .overview-container,
.team-development .overview .overview-content,
.team-development .overview .course-content {
  display: flex;
  flex-direction: column;
}
.team-development .overview .overview-content {
  align-items: center;
}
.team-development .overview .overview-content p {
  text-align: center;
}
.team-development .overview .overview-content p:nth-last-child(2) {
  margin-top: 1rem;
}
.team-development .overview .course-content {
  margin-top: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid #070606;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  width: 272px;
  align-self: center;
  background-color: #FFFFFF;
}
.team-development .overview .course-content::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/team-development/course-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 127px;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 1s all;
  border-radius: 18px;
}
.team-development .overview .course-content:hover p,
.team-development .overview .course-content:hover h3 {
  color: #FFFFFF;
}
.team-development .overview .course-content:hover::before {
  height: 100%;
}
.team-development .overview .course-content span {
  display: flex;
  width: 80px;
  height: 66px;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 3rem;
}
.team-development .overview .course-content span img {
  width: 100%;
  height: 100%;
}
.team-development .overview .course-content h3,
.team-development .overview .course-content p {
  transition: 1s all;
}
.team-development .overview .course-content h3 {
  text-align: center;
  font-size: 18px;
}
.team-development .overview .course-content p {
  text-align: center;
  color: #B4B4B4;
  margin-top: 1.2rem;
}
.team-development .overview .course-content p:nth-last-child(2) {
  margin-top: 0.3rem;
}
.team-development .course {
  padding-top: 0;
}
.team-development .course .course-container,
.team-development .course .course-list,
.team-development .course .course-item {
  display: flex;
  flex-direction: column;
}
.team-development .course .heading {
  margin-bottom: 0;
}
.team-development .course .heading p {
  margin-bottom: 0.3rem;
  margin-top: 0;
}
.team-development .course .heading p strong {
  color: #030733;
}
.team-development .course .course-item {
  border: 1px solid #060505;
  padding: 0 1.5rem 1.5rem;
  align-items: center;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
  width: 272px;
  align-self: center;
  background-image: url(/_public/images/team-development/course-bg.png);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: 0.8s ease-out;
}
.team-development .course .course-item:hover {
  background-size: 100% 100%;
}
.team-development .course .course-item:hover span {
  background-color: #FFFFFF;
}
.team-development .course .course-item:hover span img:nth-child(2) {
  display: flex;
}
.team-development .course .course-item:hover span img:nth-child(1) {
  display: none;
}
.team-development .course .course-item:hover h3,
.team-development .course .course-item:hover p {
  color: #FFFFFF;
}
.team-development .course .course-item span {
  display: flex;
  height: 50px;
  width: 113px;
  background-color: #F5F5F5;
  padding: 0.5rem;
  border-radius: 0 0 5px 5px;
}
.team-development .course .course-item span img {
  height: 100%;
  width: 100%;
}
.team-development .course .course-item span img:nth-child(1) {
  display: flex;
}
.team-development .course .course-item span img:nth-child(2) {
  display: none;
}
.team-development .course .course-item h3,
.team-development .course .course-item p {
  transition: 0.8s all;
}
.team-development .course .course-item h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 17px;
  text-align: center;
  width: 100%;
}
.team-development .course .course-item p {
  color: #B4B4B4;
  text-align: center;
}
.team-development .course .course-item .buttons {
  min-width: 130px;
  margin-top: 1rem;
}
.team-development .course .course-item .buttons img {
  height: 17px;
  width: 17px;
}
.team-development .method {
  background-image: url(/_public/images/team-development/method-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.team-development .method .method-container,
.team-development .method .method-list,
.team-development .method .method-item,
.team-development .method .method-info {
  display: flex;
  flex-direction: column;
}
.team-development .method .heading {
  margin-bottom: 0;
}
.team-development .method .method-item {
  margin-top: 1.8rem;
  width: 272px;
  height: 310px;
  align-self: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid #FFFFFF;
  position: relative;
  overflow: hidden;
  transition: 1s all;
}
.team-development .method .method-item:hover .method-info {
  bottom: 25px;
}
.team-development .method .method-item:first-child {
  background-image: url(/_public/images/team-development/classroom.png);
}
.team-development .method .method-item:nth-child(2) {
  background-image: url(/_public/images/team-development/online.png);
}
.team-development .method .method-item:nth-child(3) {
  background-image: url(/_public/images/team-development/paced.png);
}
.team-development .method .method-item:last-child {
  background-image: url(/_public/images/team-development/onsite.png);
}
.team-development .method .method-info {
  position: absolute;
  bottom: -110px;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  transition: 1s ease-in-out;
}
.team-development .method .method-info p,
.team-development .method .method-info h3 {
  color: #FFFFFF;
  transition: 1s all;
}
.team-development .method .method-info h3 {
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.team-development .method .method-info p {
  transition: 1s all;
  line-height: 1.5;
  min-height: 105px;
}
.team-development .skills .skills-container,
.team-development .skills .skills-content,
.team-development .skills .skills-img,
.team-development .skills .pro-item {
  display: flex;
  flex-direction: column;
}
.team-development .skills .pro-item {
  margin-top: 1.3rem;
}
.team-development .skills .pro-item .bar {
  display: flex;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background-color: #F5F5F5;
}
.team-development .skills .pro-item .bar span {
  border-radius: 10px;
  width: 0%;
  background-color: #030733;
  transition: 2s all;
  position: relative;
  z-index: 1;
}
.team-development .skills .pro-item .bar span::before {
  content: '';
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 14px solid #030733;
  position: absolute;
  right: 5px;
  top: 16px;
  z-index: -1;
}
.team-development .skills .pro-item .bar span p {
  position: absolute;
  right: 0;
  top: -25px;
  font-weight: 500;
  width: auto;
}
.team-development .skills .pro-item h3 {
  font-size: 15px;
  margin-top: 0.3rem;
  width: 75%;
}
.team-development .skills .skills-img {
  margin-top: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
  height: 100%;
}
.team-development .skills .skills-img .image {
  display: flex;
  height: 100%;
}
.team-development .skills .skills-img .image img {
  width: 100%;
  height: 100%;
}
.team-development .benefits {
  background-color: #F5F5F5;
}
.team-development .benefits .benefits-container,
.team-development .benefits .benefits-content {
  display: flex;
  flex-direction: column;
}
.team-development .benefits .benefits-img {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.team-development .benefits .benefits-img img {
  width: 100%;
  height: 100%;
}
.team-development .outline .outline-container,
.team-development .outline .outline-list,
.team-development .outline .form,
.team-development .outline .content,
.team-development .outline .input-list,
.team-development .outline .toggle-item {
  display: flex;
  flex-direction: column;
}
.team-development .outline .outline-content {
  background-image: url(/_public/images/team-development/outline-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 1.5rem;
  border-radius: 30px;
  border-top: 3px solid #030733;
}
.team-development .outline .outline-content .heading {
  margin-bottom: 0;
}
.team-development .outline .outline-content .toggle-item {
  margin-top: 1.5rem;
  padding: 0.7rem;
  cursor: pointer;
  background-color: #56305A;
  border: 1px solid #FFFFFF;
}
.team-development .outline .outline-content .toggle-item .ques {
  display: flex;
  justify-content: space-between;
}
.team-development .outline .outline-content .toggle-item .ques h4 {
  display: flex;
  align-self: center;
  color: #FFFFFF;
  width: calc(100% - 35px);
  font-size: 15px;
}
.team-development .outline .outline-content .toggle-item .ques img {
  height: 25px;
  width: 25px;
  transition: 0.7s ease-in-out;
}
.team-development .outline .outline-content .toggle-item .ans {
  display: none;
}
.team-development .outline .outline-content .toggle-item .ans ul li {
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  padding-left: 1.3rem;
  color: #FFFFFF;
}
.team-development .outline .outline-content .toggle-item .ans ul li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  left: 0;
  top: 6px;
  z-index: -1;
}
.team-development .outline .outline-content .active .ques img {
  transform: rotate(180deg);
  transition: 0.7s ease-in-out;
}
.team-development .outline .outline-content ul li {
  margin-top: 0.7rem;
  position: relative;
  z-index: 1;
  padding-left: 1.3rem;
}
.team-development .outline .outline-content ul li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  left: 0;
  top: 6px;
  z-index: -1;
}
.team-development .outline .form {
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  align-items: center;
  margin-bottom: 0;
  border-radius: 30px;
  border-top: 5px solid #030733;
}
.team-development .outline .form label {
  display: flex;
  align-items: center;
  width: 96%;
  font-size: 11px;
  margin-left: 5px;
}
.team-development .outline .input-list {
  width: 100%;
}
.team-development .outline .input-container {
  border: 2px solid transparent;
  padding: 0.5rem 0.7rem;
  background-color: #F5F5F5;
  margin-bottom: 1rem;
}
.team-development .outline .input-container input,
.team-development .outline .input-container textarea {
  border: none;
  background-color: transparent;
  width: 100%;
  outline: none;
  padding: 0;
}
.team-development .outline .input-container textarea {
  resize: none;
  overflow: auto;
}
.team-development .outline .input-error {
  border: 2px solid #ff0000;
}
.team-development .outline .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.team-development .outline .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.team-development .outline .form-consent {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 0.4rem;
  width: 100%;
}
.team-development .outline .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.team-development .outline .form-consent a {
  font-weight: 500;
  color: #FF8D00;
}
.team-development .outline .form-consent p {
  font-size: 11px;
}
.team-development .outline .consent-error {
  width: 100%;
}
.team-development .outline .consent-error p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.team-development .outline .buttons .btn-orange {
  min-width: 120px;
}
.team-development .packages .packages-container,
.team-development .packages .package-list,
.team-development .packages .package-item,
.team-development .packages .package-name {
  display: flex;
  flex-direction: column;
}
.team-development .packages .heading {
  margin-bottom: 0;
}
.team-development .packages .package-item {
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
  padding: 1.5rem;
}
.team-development .packages .package-item li {
  position: relative;
  margin-top: 1rem;
  padding-left: 2rem;
}
.team-development .packages .package-item li:last-child {
  padding-bottom: 0;
}
.team-development .packages .package-item li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/team-development/tick.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  left: 0px;
  height: 18px;
  width: 18px;
  top: 3px;
}
.team-development .packages .package-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #FF8D00;
  padding-bottom: 1rem;
  width: 100%;
}
.team-development .packages .package-head span {
  display: flex;
  background-color: #F5F5F5;
  border-radius: 4px;
  padding: 0.7rem;
  width: 75px;
  height: 70px;
}
.team-development .packages .package-head span img {
  width: 100%;
  height: 100%;
}
.team-development .packages .package-head .package-name {
  width: calc(100% - 95px);
}
.team-development .packages .package-head .package-name h3 {
  margin-bottom: 0.5rem;
  font-size: 17px;
}
.team-development .packages .package-head .package-name p {
  font-weight: 600;
  font-size: 16px;
}
.team-development .facts {
  background-image: url(/_public/images/team-development/fact-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.team-development .facts .facts-container,
.team-development .facts .fact-list,
.team-development .facts .fact-content {
  display: flex;
  flex-direction: column;
}
.team-development .facts .fact-list {
  width: 272px;
  align-self: center;
}
.team-development .facts .facts-container .heading {
  margin-bottom: 0;
}
.team-development .facts .facts-container .fact-item {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  width: 100%;
}
.team-development .facts .facts-container .fact-item .image {
  display: flex;
  width: 85px;
  height: 85px;
  border: 1px solid #FFFFFF;
  padding: 1.5rem;
  border-radius: 50%;
}
.team-development .facts .facts-container .fact-item .image img {
  width: 100%;
  height: 100%;
}
.team-development .facts .facts-container .fact-item .fact-content {
  width: calc(100% - 100px);
  margin-left: 1rem;
}
.team-development .facts .facts-container .fact-item .fact-content .facts-count {
  display: flex;
  color: #FF8D00;
}
.team-development .facts .facts-container .fact-item .fact-content .facts-count h3,
.team-development .facts .facts-container .fact-item .fact-content .facts-count span {
  font-size: 32px;
  font-weight: 600;
}
.team-development .facts .facts-container .fact-item .fact-content p {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: #FFFFFF;
}
.team-development .stages .stages-container,
.team-development .stages .stages-content {
  display: flex;
  flex-direction: column;
}
.team-development .stages .stages-content p:nth-child(3) {
  margin-top: 1rem;
}
.team-development .stages .stages-content ul li {
  position: relative;
  padding-left: 1.7rem;
  margin-top: 0.8rem;
}
.team-development .stages .stages-content ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-image: url(/_public/images/team-development/circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  animation: circle 5s linear infinite;
}
.team-development .stages .stages-img {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.team-development .stages .stages-img img {
  width: 100%;
  height: 100%;
}
.team-development .choose {
  padding-top: 0;
}
.team-development .choose .choose-container,
.team-development .choose .choose-list,
.team-development .choose .choose-content,
.team-development .choose .choose-item,
.team-development .choose .better-content,
.team-development .choose .content {
  display: flex;
  flex-direction: column;
}
.team-development .choose .heading {
  margin-bottom: 0;
}
.team-development .choose .choose-item {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 4px solid #F5F5F5;
  border-radius: 8px;
}
.team-development .choose .choose-item h3 {
  font-size: 16px;
  margin: 1.5rem 0 1rem;
}
.team-development .choose .choose-item span {
  display: flex;
  background-color: #030733;
  width: 65px;
  height: 60px;
  border-radius: 4px;
  padding: 0.6rem;
}
.team-development .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.team-development .choose .better-content {
  padding: 1.5rem;
  margin-top: 2rem;
  background-image: url(/_public/images/team-development/choose-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.team-development .choose .better-content .image {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}
.team-development .choose .better-content .heading span {
  display: none;
}
.team-development .choose .better-content p {
  color: #FFFFFF;
  margin-top: 0.5rem;
}
.team-development .testimonial {
  background-color: #030733;
}
.team-development .testimonial .testimonial-container,
.team-development .testimonial .testimonial-content,
.team-development .testimonial .testimonial-list,
.team-development .testimonial .testimonial-item,
.team-development .testimonial p,
.team-development .testimonial span {
  display: flex;
  flex-direction: column;
}
.team-development .testimonial .heading {
  margin-bottom: 2rem;
}
.team-development .testimonial .testimonial-item {
  width: 95%;
  margin: auto;
  background-color: #FFFFFF;
  position: relative;
  margin-bottom: 3.5rem;
  border-radius: 5px;
}
.team-development .testimonial .testimonial-item p {
  padding: 1.5rem;
  padding-bottom: 2rem;
}
.team-development .testimonial .testimonial-item p img {
  width: 35px;
  height: 35px;
  margin-bottom: 0.5rem;
}
.team-development .testimonial .testimonial-item h3 {
  font-size: 16px;
  color: #FFFFFF;
  width: calc(100% - 85px);
  margin-top: 0.7rem;
}
.team-development .testimonial .testimonial-item .info {
  display: flex;
  padding: 1rem 1.5rem;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: -68px;
  align-items: center;
}
.team-development .testimonial .testimonial-item span {
  width: 72px;
  height: 72px;
  border-radius: 50px;
  padding: 0.8rem;
  background-color: #F5F5F5;
}
.team-development .testimonial .testimonial-item span img {
  width: 100%;
  height: 100%;
}
.team-development .testimonial .owl-nav {
  display: flex;
  justify-content: space-between;
  align-self: center;
  width: 105px;
  margin-top: 1.5rem;
}
.team-development .testimonial .owl-nav .owl-prev,
.team-development .testimonial .owl-nav .owl-next {
  display: flex;
  background-image: url(/_public/images/team-development/left-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  outline: 0;
  width: 38px;
  height: 38px;
  opacity: 0.5;
}
.team-development .testimonial .owl-nav .owl-next {
  transform: rotate(180deg);
}
.team-development .testimonial .owl-nav .btn-active {
  opacity: 1;
}
.team-development .faq .faq-container,
.team-development .faq .faq-list,
.team-development .faq .toggle-item {
  display: flex;
  flex-direction: column;
}
.team-development .faq .heading {
  margin-bottom: 0.5rem;
}
.team-development .faq .toggle-item {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-top: 1.5rem;
  cursor: pointer;
}
.team-development .faq .ques {
  display: flex;
  padding: 0.8rem 1.2rem;
  justify-content: space-between;
  width: 100%;
}
.team-development .faq .ques span {
  display: flex;
  width: 22px;
  height: 22px;
}
.team-development .faq .ques span img {
  width: 100%;
  height: 100%;
}
.team-development .faq .ques span img:first-child {
  display: flex;
}
.team-development .faq .ques span img:last-child {
  display: none;
}
.team-development .faq .ques h3 {
  align-self: center;
  font-size: 14px;
  width: 88%;
}
.team-development .faq .ans {
  padding: 0.8rem 1.2rem;
  display: none;
}
.team-development .faq .ans p,
.team-development .faq .ans li {
  font-size: 13px;
}
.team-development .faq .ans ul {
  padding-left: 1rem;
}
.team-development .faq .ans ul li {
  list-style: disc;
}
.team-development .faq .active .ques {
  background-color: #030733;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.team-development .faq .active .ques h3 {
  color: #FFFFFF;
}
.team-development .faq .active .ques span img:first-child {
  display: none;
}
.team-development .faq .active .ques span img:last-child {
  display: flex;
}
.team-development .footer {
  background-image: url(/_public/images/team-development/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.team-development .footer .footer-container,
.team-development .footer .footer-list,
.team-development .footer .footer-content {
  display: flex;
  flex-direction: column;
}
.team-development .footer .footer-item {
  display: flex;
  justify-content: space-between;
}
.team-development .footer .footer-item:last-child {
  margin-top: 1rem;
}
.team-development .footer .footer-item span {
  display: flex;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  padding: 0.6rem;
  background-color: #113052;
}
.team-development .footer .footer-item span img {
  width: 100%;
  height: 100%;
}
.team-development .footer .footer-content {
  width: calc(100% - 55px);
}
.team-development .footer .footer-content h3,
.team-development .footer .footer-content a {
  color: #FFFFFF;
}
.team-development .footer .footer-content h3 {
  font-size: 15px;
  margin-bottom: 4px;
}
.team-development .footer .footer-content a {
  font-size: 14px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .team-development .buttons .btn-orange {
    font-size: 16px;
  }
  .team-development .banner .logo-container .container {
    padding: 1rem 2rem;
  }
  .team-development .banner .logo-container .container .menu-logo.active + .menu-links {
    width: 50%;
  }
  .team-development .banner .banner-container {
    padding: 3rem 2rem;
  }
  .team-development .banner .banner-container .banner-img {
    display: none;
  }
  .team-development .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .team-development .overview .overview-content {
    width: 50%;
    align-items: flex-start;
  }
  .team-development .overview .overview-content .heading {
    align-items: flex-start;
  }
  .team-development .overview .overview-content .heading h2 {
    text-align: left;
  }
  .team-development .overview .overview-content p {
    text-align: left;
  }
  .team-development .overview .course-content {
    width: 42%;
    margin-top: 0;
    position: sticky;
    align-self: flex-start;
    top: 60px;
  }
  .team-development .course .course-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .team-development .course .course-item {
    width: 45%;
    margin-right: 2rem;
  }
  .team-development .course .course-item h3 {
    min-height: 46px;
  }
  .team-development .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .team-development .method .method-list {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .team-development .method .method-item {
    width: 48%;
  }
  .team-development .method .method-info {
    bottom: -81px;
  }
  .team-development .method .method-info p {
    min-height: 84px;
  }
  .team-development .skills .skills-container {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
  }
  .team-development .skills .skills-content {
    width: 48%;
  }
  .team-development .skills .skills-img {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .team-development .benefits .benefits-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .team-development .benefits .benefits-content {
    width: 50%;
  }
  .team-development .benefits .benefits-img {
    margin-top: 0;
    position: sticky;
    top: 60px;
    width: 45%;
  }
  .team-development .outline .outline-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .team-development .outline .outline-content {
    width: 48%;
  }
  .team-development .outline .outline-list {
    overflow-y: scroll;
    max-height: 488px;
    padding-right: 1rem;
    margin-top: 2rem;
  }
  .team-development .outline .toggle-item:first-child {
    margin-top: 0;
  }
  .team-development .outline .form {
    width: 48%;
    margin-top: 0;
  }
  .team-development .packages .package-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .team-development .packages .package-item {
    width: 45%;
  }
  .team-development .packages .package-item ul {
    min-height: 195px;
  }
  .team-development .facts .facts-container .fact-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 85%;
  }
  .team-development .facts .facts-container .fact-item {
    width: 45%;
  }
  .team-development .stages .stages-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .team-development .stages .stages-content {
    width: 50%;
  }
  .team-development .stages .stages-img {
    position: sticky;
    top: 60px;
    width: 45%;
    margin-top: 0;
  }
  .team-development .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .team-development .choose .choose-item {
    width: 32%;
  }
  .team-development .choose .choose-item h3 {
    min-height: 42px;
  }
  .team-development .choose .better-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    margin: 2rem auto 0;
  }
  .team-development .choose .better-content .image {
    margin-bottom: 0;
  }
  .team-development .choose .better-content .content {
    width: 58%;
  }
  .team-development .choose .better-content .content h3 {
    margin-top: 0px;
  }
  .team-development .choose .better-content .buttons {
    width: 26%;
    justify-content: flex-end;
    margin-top: 0px;
  }
  .team-development .testimonial .testimonial-item p {
    min-height: 385px;
  }
  .team-development .faq .faq-list {
    justify-content: space-between;
    flex-flow: wrap;
    align-items: flex-start;
  }
  .team-development .faq .toggle-item {
    width: 48%;
  }
  .team-development .footer {
    background-size: 100% 100%;
  }
  .team-development .footer .heading {
    display: none;
  }
  .team-development .footer .footer-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .team-development .footer .footer-list {
    width: 60%;
    flex-direction: row;
    justify-content: space-between;
  }
  .team-development .footer .footer-item {
    width: 63%;
  }
  .team-development .footer .footer-item:last-child {
    width: 34%;
    margin-top: 0;
  }
  .team-development .footer .buttons {
    width: 39%;
    margin-top: 0;
    justify-content: flex-end;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .team-development .heading h2 {
    font-size: 28px;
  }
  .team-development .banner {
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  .team-development .banner::before,
  .team-development .banner::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
  }
  .team-development .banner::before {
    width: 50px;
    height: 50px;
    background-image: url(/_public/images/team-development/ring.png);
    top: 0;
    left: 0;
    animation: ring 30s infinite linear;
    opacity: 0.2;
  }
  .team-development .banner::after {
    width: 50px;
    height: 75px;
    background-image: url(/_public/images/team-development/spring.png);
    right: 0;
    bottom: 30px;
    animation: spring 50s infinite linear;
    opacity: 0.4;
  }
  .team-development .banner .logo-container .container .menu-logo {
    display: none;
  }
  .team-development .banner .logo-container .container .menu-links {
    width: 77%;
    display: flex;
    position: relative;
    box-shadow: none;
  }
  .team-development .banner .logo-container .container .menu-links .back {
    display: none;
  }
  .team-development .banner .logo-container .container ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .team-development .banner .logo-container .container ul .links-li {
    margin-right: 1.5rem;
    border-bottom: none;
    font-weight: 700;
    padding: 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
  }
  .team-development .banner .logo-container .container ul .links-li::before {
    content: "";
    position: absolute;
    right: 0;
    height: 2px;
    bottom: -3px;
    width: 0%;
    background-image: linear-gradient(45deg, #6b1134, #FF8D00);
    transition: 0.3s;
  }
  .team-development .banner .logo-container .container ul .links-li:hover::before {
    width: 100%;
    left: 0;
  }
  .team-development .banner .logo-container .container ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .team-development .banner .logo-container .container ul .links-li:last-child::before {
    content: none;
  }
  .team-development .banner .logo-container .container ul .links-li .btn-transparent {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    margin-right: 1.5rem;
    cursor: pointer;
    padding: 8px 10px;
    min-width: 45px;
    height: 40px;
    border-radius: 8px;
  }
  .team-development .banner .logo-container .container ul .links-li .btn-transparent img {
    width: 17px;
    height: 17px;
  }
  .team-development .banner .logo-container .container ul .links-li .btn-orange {
    height: 40px;
  }
  .team-development .banner .banner-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .team-development .banner .banner-container .banner-content {
    width: 50%;
  }
  .team-development .banner .banner-container .banner-content h1 {
    font-size: 40px;
  }
  .team-development .banner .banner-container .banner-content h1 img {
    height: 50px;
    width: 50px;
    margin-right: 1rem;
  }
  .team-development .banner .banner-container .banner-content h3 {
    margin: 1.2rem 0;
  }
  .team-development .banner .banner-container .banner-img {
    display: flex;
    width: 40%;
    margin-top: 0;
  }
  .team-development .overview .overview-container {
    background-color: #F5F5F5;
    padding: 2.5rem;
  }
  .team-development .overview .overview-content {
    width: 60%;
  }
  .team-development .overview .course-content {
    width: 34%;
  }
  .team-development .course .course-item {
    width: 30%;
  }
  .team-development .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .team-development .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .team-development .method .method-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  .team-development .method .heading {
    width: 80%;
  }
  .team-development .method .buttons {
    margin-top: 0;
    justify-content: flex-end;
    width: 18%;
  }
  .team-development .method .method-list {
    width: 100%;
    justify-content: space-between;
  }
  .team-development .method .method-item {
    width: 23%;
    margin-top: 3rem;
  }
  .team-development .method .method-info {
    bottom: -123px;
  }
  .team-development .method .method-info p {
    min-height: 126px;
  }
  .team-development .method .method-info h3 {
    min-height: 48px;
  }
  .team-development .skills .skills-container {
    align-items: center;
  }
  .team-development .skills .skills-img {
    position: static;
    width: 46%;
  }
  .team-development .benefits .benefits-container {
    align-items: center;
  }
  .team-development .benefits .benefits-img {
    position: static;
  }
  .team-development .outline .outline-container {
    position: relative;
    justify-content: flex-end;
  }
  .team-development .outline .outline-content {
    position: absolute;
    left: 0;
    width: 53%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 470px;
  }
  .team-development .outline .outline-list {
    max-height: 315px;
  }
  .team-development .outline .form {
    padding-left: 2rem;
  }
  .team-development .outline .input-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .team-development .outline .input-list .input-container {
    width: 48%;
  }
  .team-development .outline .input-list .input-container:last-child {
    width: 100%;
  }
  .team-development .packages .package-item {
    width: 31%;
  }
  .team-development .packages .package-item ul {
    min-height: 230px;
  }
  .team-development .facts .facts-container .heading p {
    width: 85%;
    align-self: center;
  }
  .team-development .facts .facts-container .fact-list {
    width: 100%;
  }
  .team-development .facts .facts-container .fact-item {
    width: 22%;
  }
  .team-development .stages .stages-img {
    position: static;
    align-self: center;
  }
  .team-development .choose .choose-item h3 {
    min-height: auto;
  }
  .team-development .testimonial {
    background-image: url(/_public/images/team-development/testimonial-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    background-attachment: fixed;
  }
  .team-development .testimonial .testimonial-list {
    width: 90%;
    margin: auto;
  }
  .team-development .testimonial .testimonial-item {
    width: 90%;
  }
  .team-development .testimonial .testimonial-item p {
    min-height: 350px;
  }
  .team-development .testimonial .owl-nav {
    position: absolute;
    top: 38%;
    left: -5%;
    width: calc(100% + 10%);
    margin-top: 0;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .team-development .heading h2 {
    font-size: 32px;
  }
  .team-development .banner .logo-container .container {
    padding: 1rem 0;
  }
  .team-development .banner .banner-container {
    padding: 4rem 0rem !important;
  }
  .team-development .overview .overview-content {
    width: 65%;
  }
  .team-development .overview .course-content {
    width: 30%;
    position: relative;
    top: 0;
    align-self: center;
  }
  .team-development .course .course-item {
    width: 23%;
  }
  .team-development .course .course-item:nth-child(3n) {
    margin-right: 2rem;
  }
  .team-development .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .team-development .method .method-container {
    position: relative;
  }
  .team-development .method .method-container::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/team-development/deli-grid.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: -48px;
    right: -71px;
    width: 135px;
    height: 106px;
  }
  .team-development .method .method-info {
    bottom: -105px;
  }
  .team-development .method .method-info p {
    min-height: 105px;
  }
  .team-development .skills .skills-img .image {
    width: 85%;
    align-self: center;
  }
  .team-development .outline .outline-content {
    max-height: 460px;
  }
  .team-development .outline .outline-list {
    max-height: 290px;
  }
  .team-development .packages .package-item ul {
    min-height: 205px;
  }
  .team-development .facts .facts-container .fact-list {
    justify-content: space-between;
  }
  .team-development .facts .facts-container .fact-item {
    width: auto;
  }
  .team-development .stages .stages-container .stages-img {
    width: 36%;
  }
  .team-development .choose .choose-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .team-development .choose .choose-content {
    width: 67%;
  }
  .team-development .choose .choose-content .heading {
    align-items: flex-start;
  }
  .team-development .choose .choose-content .heading h2,
  .team-development .choose .choose-content .heading p {
    text-align: left;
  }
  .team-development .choose .choose-item h3 {
    min-height: auto;
  }
  .team-development .choose .better-content {
    flex-direction: column;
    width: 29%;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .team-development .choose .better-content .image {
    margin-bottom: 1rem;
  }
  .team-development .choose .better-content .content {
    width: 100%;
  }
  .team-development .choose .better-content .content h3 {
    margin-top: 1rem;
  }
  .team-development .choose .better-content .buttons {
    margin-top: 1.5rem;
    width: auto;
  }
  .team-development .testimonial .testimonial-list p {
    min-height: 300px;
  }
  .team-development .footer .footer-list {
    width: 45%;
  }
}
