@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: #FFFFFF;
  font-weight: 700;
  font-size: 11px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFFFFF;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #191919;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #191919;
  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: #191919;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.sales .buttons {
  display: flex;
  margin-top: 1.5rem;
  transition: 1s all;
}
.sales .buttons .btn-gradient,
.sales .buttons .btn-transparent {
  display: flex;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  justify-content: center;
  outline: 0;
  border-radius: 50px;
  align-items: center;
  min-width: 160px;
  overflow: hidden;
  position: relative;
  transition: 1s all;
  z-index: 1;
}
.sales .buttons .btn-gradient::before,
.sales .buttons .btn-transparent::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #5B49A0;
  z-index: -1;
  transition: 1s all;
  border-radius: 30px;
}
.sales .buttons .btn-gradient:hover,
.sales .buttons .btn-transparent:hover {
  box-shadow: 0 0 5px #FFFFFF;
}
.sales .buttons .btn-gradient:hover::before,
.sales .buttons .btn-transparent:hover::before {
  height: 100%;
  bottom: auto;
  top: 0;
}
.sales .buttons .btn-gradient img,
.sales .buttons .btn-transparent img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.sales .buttons .btn-transparent {
  border: 1px solid #FFFFFF;
}
.sales .buttons .btn-gradient {
  background-image: linear-gradient(180deg, #CE9216, #EBC24E);
  color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.sales .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.sales .heading p {
  margin-top: 1rem;
}
.sales .heading h2 {
  width: 100%;
}
.sales .center-heading {
  justify-content: center;
  align-items: center;
}
.sales .center-heading h2,
.sales .center-heading p {
  text-align: center;
}
.sales .white-heading h2,
.sales .white-heading p {
  color: #FFFFFF;
}
@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.sales .banner {
  flex-direction: column;
  padding: 0;
}
.sales .banner .logo-container,
.sales .banner .tka-logo,
.sales .banner .menu,
.sales .banner .menu-toggle {
  display: flex;
}
.sales .banner .logo-container {
  height: 100%;
  padding: 1rem 1.5rem;
  background-color: #35237A;
  box-shadow: 0px 0px 6px #FFFFFF;
}
.sales .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.sales .banner .logo-container ul .links-li {
  padding: 8px 0;
  color: #FFFFFF;
  border-bottom: 1px dotted #FFFFFF;
  font-weight: 600;
}
.sales .banner .logo-container ul .links-li:first-child {
  padding-top: 0;
}
.sales .banner .logo-container ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.sales .banner .logo-container ul .links-li:last-child {
  display: none;
}
.sales .banner .tka-logo {
  max-width: 182px;
}
.sales .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.sales .banner .menu {
  margin-left: auto;
}
.sales .banner .menu img {
  width: 22px;
  height: 23px;
}
.sales .banner .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: #35237A;
  box-shadow: 0px 0px 6px #FFFFFF;
}
.sales .banner .menu-toggle {
  font-weight: 500;
  color: #FFFFFF;
}
.sales .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.sales .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.sales .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.sales .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
}
.sales .banner .sticky .container {
  border-radius: 0px;
}
.sales .banner .sticky-down {
  top: -100px;
}
.sales .banner .container {
  height: 100%;
}
.sales .banner .banner-container,
.sales .banner .fact-list,
.sales .banner .banner-content,
.sales .banner .form,
.sales .banner .input-list {
  display: flex;
  flex-direction: column;
}
.sales .banner .banner-container {
  padding: 1.5rem 1.5rem 3rem;
  align-items: flex-start;
}
.sales .banner .banner-content {
  width: 100%;
}
.sales .banner .banner-content h1 {
  width: 100%;
  font-size: 23px;
  margin-bottom: 1.5rem;
  color: #35237A;
}
.sales .banner .banner-content h1 span {
  font-weight: 500;
  color: #DCA931;
  border-bottom: 2px solid;
  text-shadow: none;
}
.sales .banner .banner-content h1 img {
  width: 40px;
  height: 40px;
  transform: translateY(10px);
  margin-right: 0.2rem;
}
.sales .banner .banner-content ul li {
  display: flex;
  margin-top: 0.5rem;
  align-items: center;
}
.sales .banner .banner-content ul li span {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  margin-right: 0.8rem;
}
.sales .banner .banner-content ul li span img {
  width: 100%;
  height: 100%;
}
.sales .banner form {
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  margin-top: 2rem;
  background-color: #35237A;
}
.sales .banner form h2 {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  margin-bottom: 1.5rem;
  font-size: 18px;
}
.sales .banner form h2::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/sales-training/box.png);
  background-size: 100% 100%;
  width: calc(100% + 20px);
  height: 100%;
  left: -25px;
  top: -8px;
  z-index: -1;
}
.sales .banner form .input-list .input-error {
  border: 1px solid #ff0000;
}
.sales .banner form .input-list .input-error ::-webkit-input-placeholder {
  color: #ff0000;
}
.sales .banner form .input-list .input-error :-ms-input-placeholder {
  color: #ff0000;
}
.sales .banner form .input-list .input-error ::placeholder {
  color: #ff0000;
}
.sales .banner form .input-list .input-error span .white {
  display: none;
}
.sales .banner form .input-list .input-error span .red {
  display: flex;
}
.sales .banner form .buttons .btn-gradient {
  min-width: 130px;
  font-size: 14px;
}
.sales .banner form .buttons img {
  width: 16px;
  height: 16px;
}
.sales .banner .input-container {
  display: flex;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1rem;
  background-color: #5B49A0;
  justify-content: space-between;
  border: 1px solid #c7c7c7;
}
.sales .banner .input-container input,
.sales .banner .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  color: #FFFFFF;
}
.sales .banner .input-container textarea {
  resize: none;
  overflow: auto;
  min-height: 50px;
}
.sales .banner .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.sales .banner .input-container span img {
  width: 100%;
  height: 100%;
}
.sales .banner .input-container span .white {
  display: flex;
}
.sales .banner .input-container span .red {
  display: none;
}
.sales .banner .input-container ::-webkit-input-placeholder {
  color: #c7c7c7;
}
.sales .banner .input-container :-ms-input-placeholder {
  color: #c7c7c7;
}
.sales .banner .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.sales .banner .form-consent:nth-last-child(3) {
  margin-bottom: 0;
}
.sales .banner .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  font-size: 11px;
  width: 90%;
  color: #FFFFFF;
}
.sales .banner .form-consent p {
  font-size: 11px;
  color: #FFFFFF;
}
.sales .banner .form-consent a {
  font-weight: 600;
  color: #FFFFFF;
}
.sales .banner .consent-error p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.sales .banner .fact-list {
  background-color: #35237A;
  padding: 1rem;
  margin-top: 2rem;
  align-self: center;
}
.sales .banner .fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  width: 255px;
}
.sales .banner .fact-item .image {
  display: flex;
  width: 80px;
  height: 80px;
  padding: 1rem;
  border-radius: 50%;
  background-image: linear-gradient(180deg, #CE9216, #EBC24E);
  background-size: 100% 100%;
}
.sales .banner .fact-item .image img {
  width: 100%;
  height: 100%;
}
.sales .banner .fact-item:first-child {
  margin-top: 0;
}
.sales .banner .fact-count {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 95px);
}
.sales .banner .fact-count h4,
.sales .banner .fact-count span,
.sales .banner .fact-count p {
  color: #FFFFFF;
}
.sales .banner .fact-count h4,
.sales .banner .fact-count span {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.4;
}
.sales .banner .fact-count p {
  font-weight: 500;
  line-height: 1.6;
}
.sales .success {
  padding-top: 0;
}
.sales .success .success-container {
  display: flex;
  flex-direction: column;
}
.sales .success .info {
  display: flex;
  width: 100%;
  height: 100%;
}
.sales .success .info img {
  width: 100%;
  height: 100%;
}
.sales .growth {
  background-color: #35237A;
}
.sales .growth .growth-container {
  display: flex;
  flex-direction: column;
}
.sales .growth .heading {
  margin-bottom: 0;
}
.sales .growth .growth-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sales .growth .growth-item {
  display: flex;
  flex-direction: column;
  width: 45%;
  align-items: center;
  margin-top: 1.5rem;
}
.sales .growth .growth-item p {
  margin-bottom: 1rem;
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
}
.sales .growth .growth-item:nth-child(2) .graph-circle::after {
  content: '67%';
}
.sales .growth .growth-item:nth-child(3) .graph-circle::after {
  content: '40%';
}
.sales .growth .growth-item:nth-child(4) .graph-circle::after {
  content: '20%';
}
.sales .growth .growth-item:nth-child(5) .graph-circle::after {
  content: '87%';
}
.sales .growth .growth-item:nth-child(6) .graph-circle::after {
  content: '62%';
}
.sales .growth .graph-circle {
  width: 116px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.sales .growth .graph-circle::after {
  content: '74%';
  position: absolute;
  font-size: 22px;
  font-weight: 600;
  top: 35px;
  left: 30px;
  color: #fff;
}
.sales .growth .progress-ring {
  width: 110px;
  height: 110px;
}
.sales .growth .progress-ring__circle {
  transition: 3s stroke-dashoffset;
  transform: rotate(-90deg);
  transform-origin: 43% 43%;
  stroke-width: 8px;
  stroke: #CE9216 !important;
  background-color: transparent;
}
.sales .growth .circle-default {
  stroke: #FFFFFF !important;
  stroke-width: 3px;
}
.sales .course .course-container,
.sales .course .course-list {
  display: flex;
  flex-direction: column;
}
.sales .course .heading {
  margin-bottom: 0;
}
.sales .course .heading p {
  margin-top: 0;
  margin-bottom: 0.2rem;
}
.sales .course .heading p strong {
  color: #35237A;
}
.sales .course .course-item {
  display: flex;
  flex-flow: wrap;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(180deg, #CE9216, #EBC24E);
  background-size: 100% 3px;
  background-repeat: no-repeat;
  padding: 1rem 1rem 1.5rem;
  margin-top: 1.5rem;
  width: 272px;
  align-self: center;
  transition: 1s all;
}
.sales .course .course-item h3 {
  font-size: 13px;
  width: calc(100% - 70px);
  margin-bottom: 0.5rem;
}
.sales .course .course-item span {
  display: flex;
  width: 70px;
  height: 65px;
  padding: 0.8rem 1rem;
  background-color: #F5F5F5;
  transform: translateX(16px);
  transition: 1s all;
}
.sales .course .course-item span img {
  width: 100%;
  height: 100%;
}
.sales .course .course-item span img:last-child {
  display: none;
}
.sales .course .course-item p {
  font-size: 12px;
  color: rgba(7, 6, 6, 0.5);
}
.sales .course .course-item:hover {
  background-color: #35237A;
}
.sales .course .course-item:hover h3,
.sales .course .course-item:hover p {
  color: #FFFFFF;
}
.sales .course .course-item:hover span {
  background-color: #5B49A0;
}
.sales .course .course-item:hover span img:first-child {
  display: none;
}
.sales .course .course-item:hover span img:last-child {
  display: flex;
}
.sales .course .course-item:hover .buttons .btn-gradient {
  background-image: none;
  background-color: #FFFFFF;
  color: #191919;
}
.sales .course .course-item:hover .buttons .btn-gradient::after,
.sales .course .course-item:hover .buttons .btn-gradient::before {
  content: none;
}
.sales .course .course-item:hover .buttons .btn-gradient img:first-child {
  display: none;
}
.sales .course .course-item:hover .buttons .btn-gradient img:last-child {
  display: flex;
}
.sales .course .buttons {
  margin-top: 1rem;
}
.sales .course .buttons .btn-gradient {
  min-width: 120px;
  font-size: 14px;
  padding: 8px 14px;
}
.sales .course .buttons .btn-gradient img {
  width: 17px;
  height: 17px;
}
.sales .course .buttons .btn-gradient img:last-child {
  display: none;
}
.sales .method {
  background-color: #35237A;
}
.sales .method .method-container,
.sales .method .method-item {
  display: flex;
  flex-direction: column;
}
.sales .method .heading {
  margin-bottom: 0;
}
.sales .method .method-container {
  counter-reset: number;
}
.sales .method .method-item {
  margin-top: 2rem;
  position: relative;
}
.sales .method .method-item::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number;
  color: #FFFFFF;
  position: absolute;
  top: 75px;
  left: 0px;
  font-size: 13px;
  font-weight: 500;
}
.sales .method .method-item .image {
  width: 55px;
  height: 55px;
}
.sales .method .method-item h3 {
  color: #FFFFFF;
  margin: 3rem 0 0.5rem;
  font-size: 16px;
  transition: 1s all;
}
.sales .method .method-item p {
  color: #FFFFFF;
  font-size: 13px;
}
.sales .method .method-item a {
  display: flex;
  width: 20px;
  height: 20px;
  margin-top: 0.5rem;
}
.sales .method .method-item a img {
  width: 100%;
  height: 100%;
}
.sales .method .method-item:hover h3 {
  background: -webkit-linear-gradient(90deg, #CE9216, #EBC24E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sales .skill .skill-container,
.sales .skill .list,
.sales .skill .item {
  display: flex;
  flex-direction: column;
}
.sales .skill .heading {
  margin-bottom: 0px;
}
.sales .skill .item {
  margin-top: 1.5rem;
}
.sales .skill .item h3 {
  font-size: 19px;
  margin-bottom: 0.3rem;
}
.sales .skill .item p {
  line-height: 1.6;
}
.sales .award {
  background-color: #FAFAFA;
}
.sales .award .award-container,
.sales .award .award-info,
.sales .award .award-list,
.sales .award .award-data,
.sales .award .data-list,
.sales .award .award-content {
  display: flex;
  flex-direction: column;
}
.sales .award .award-item {
  width: 95%;
  margin: 1rem auto;
}
.sales .award .award-info {
  padding: 1rem;
  margin-top: 1.5rem;
  align-items: center;
}
.sales .award .award-info img {
  width: 35px;
  height: 35px;
}
.sales .award .award-info h3 {
  font-size: 12px;
  text-align: center;
  margin-top: 0.5rem;
}
.sales .award .award-info:nth-child(odd) {
  background-color: #F5F5F5;
}
.sales .award .award-info:nth-child(even) {
  background-color: #E9FFED;
}
.sales .award .award-content {
  margin-bottom: 1rem;
}
.sales .award .award-content .heading {
  margin-bottom: 0;
}
.sales .award .image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
.sales .award .image img {
  width: 120px;
  height: auto;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  margin-top: 1.5rem;
}
.sales .award .image img:first-child {
  margin-right: 1.2rem;
}
.sales .award .owl-nav {
  display: flex;
  justify-content: space-between;
  width: 77px;
  margin: 1.5rem auto 0;
}
.sales .award .owl-nav .owl-prev,
.sales .award .owl-nav .owl-next {
  display: flex;
  background-image: url(/_public/images/sales-training/nav-arrow.svg);
  background-size: cover;
  background-position: center;
  width: 33px;
  height: 33px;
  opacity: 0.5;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
}
.sales .award .owl-nav .owl-prev {
  transform: rotate(180deg);
}
.sales .award .owl-nav .btn-active {
  opacity: 1;
}
.sales .element {
  padding-bottom: 0;
}
.sales .element .element-container,
.sales .element .content,
.sales .element .info {
  display: flex;
  flex-direction: column;
}
.sales .element .element-container {
  align-items: flex-start;
}
.sales .element .content {
  width: 100%;
}
.sales .element .content ul li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
.sales .element .content ul li::before {
  position: absolute;
  content: '';
  background-image: linear-gradient(180deg, #CE9216, #EBC24E);
  width: 10px;
  height: 10px;
  left: 0;
  top: 5px;
  transform: rotate(45deg);
  animation: turn 4s linear infinite;
}
.sales .element .info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.sales .element .info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.sales .element .info span img {
  width: 100%;
  height: 100%;
}
.sales .proud .proud-container {
  display: flex;
  flex-direction: column;
}
.sales .proud .heading {
  margin-bottom: 0;
}
.sales .proud .proud-list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.sales .proud span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
  padding: 0.8rem 1.2rem;
  width: 115px;
  height: 70px;
  margin-top: 1.5rem;
  margin-right: 1.5rem;
}
.sales .proud span img {
  width: auto;
  height: auto;
  max-width: 70px;
  max-height: 50px;
}
.sales .proud span:nth-child(2n) {
  margin-right: 0;
}
.sales .onsite {
  padding-top: 1rem;
}
.sales .onsite .onsite-container,
.sales .onsite .onsite-content,
.sales .onsite .onsite-info {
  display: flex;
  flex-direction: column;
}
.sales .onsite .onsite-container {
  align-items: flex-start;
}
.sales .onsite .onsite-content {
  width: 100%;
}
.sales .onsite .onsite-content ul li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
.sales .onsite .onsite-content ul li::before {
  position: absolute;
  content: '';
  background-image: linear-gradient(180deg, #CE9216, #EBC24E);
  width: 10px;
  height: 10px;
  left: 0;
  top: 4px;
  transform: rotate(45deg);
  animation: turn 4s linear infinite;
}
.sales .onsite .onsite-content p:nth-child(4) {
  margin-top: 0.5rem;
}
.sales .onsite .onsite-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.sales .onsite .onsite-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.sales .onsite .onsite-info span img {
  width: 100%;
  height: 100%;
}
.sales .client {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.sales .client .client-container,
.sales .client .client-content,
.sales .client .client-info {
  display: flex;
  flex-direction: column;
}
.sales .client .client-container {
  align-items: flex-start;
}
.sales .client .client-content {
  width: 100%;
}
.sales .client .client-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin-right: auto;
}
.sales .client .client-item img {
  width: 70px;
  height: 70px;
}
.sales .client .client-item p {
  margin-bottom: 1.5rem;
}
.sales .client .client-item h3 {
  font-size: 16px;
  margin-bottom: 0.2rem;
}
.sales .client .client-item h4 {
  font-size: 13px;
  font-weight: 500;
}
.sales .client .client-info {
  width: calc(100% - 86px);
}
.sales .client .client-info img {
  width: 100px;
  height: 16px;
}
.sales .client .owl-dots {
  display: flex;
  margin-top: 1.5rem;
}
.sales .client .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border: 3px solid #FFFFFF;
  border-radius: 50px;
  margin-right: 0.5rem;
  box-shadow: 0 0 0 1px #F6A263;
}
.sales .client .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.sales .client .owl-dots .owl-dot.active {
  background-color: #F6A263;
}
.sales .client .info {
  display: flex;
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.sales .client .info img {
  width: 100%;
  height: 100%;
}
.sales .choose .choose-container,
.sales .choose .choose-info,
.sales .choose .content,
.sales .choose .choose-item,
.sales .choose .info {
  display: flex;
  flex-direction: column;
}
.sales .choose .content {
  background-color: #35237A;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  width: 100%;
}
.sales .choose .content .heading {
  margin-bottom: 0;
}
.sales .choose .choose-item {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #F5F5F5;
  border-radius: 20px;
}
.sales .choose .choose-item span {
  display: flex;
  background-image: linear-gradient(180deg, #CE9216, #EBC24E);
  padding: 1rem;
  width: 75px;
  height: 75px;
  border-radius: 50px;
}
.sales .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.sales .choose .choose-item h3 {
  font-size: 16px;
  margin: 0.8rem 0;
}
.sales .footer {
  background-color: #35237A;
}
.sales .footer .footer-container,
.sales .footer .faq-content,
.sales .footer .faq-list,
.sales .footer .faq-item,
.sales .footer .footer-content,
.sales .footer .contact-list,
.sales .footer .info {
  display: flex;
  flex-direction: column;
}
.sales .footer .heading {
  margin-bottom: 0;
}
.sales .footer .faq-list {
  counter-reset: my-sec-counter;
}
.sales .footer .faq-item {
  margin-top: 1.2rem;
  padding: 0.8rem;
  border-radius: 3px;
  background-color: #F5F5F5;
}
.sales .footer .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding-top: 1.3rem;
  position: relative;
}
.sales .footer .ques:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter, decimal-leading-zero);
  font-size: 13px;
  color: #DCA931;
  font-weight: 600;
}
.sales .footer .ques h3 {
  width: calc(100% - 22px);
  font-size: 15px;
}
.sales .footer .ques span {
  display: flex;
  width: 18px;
  height: 18px;
}
.sales .footer .ques span img {
  width: 100%;
  height: 100%;
}
.sales .footer .ques span img:nth-child(2) {
  display: none;
}
.sales .footer .ans {
  display: none;
  margin-top: 0.7rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(7, 6, 6, 0.3);
}
.sales .footer .ans p {
  font-weight: 500;
  font-size: 13px;
}
.sales .footer .ans ul {
  padding-left: 1rem;
}
.sales .footer .ans ul li {
  font-size: 13px;
  font-weight: 500;
  list-style: disc;
  margin-top: 0.5rem;
}
.sales .footer .active {
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
}
.sales .footer .active .ques span img:nth-child(1) {
  display: none;
}
.sales .footer .active .ques span img:nth-child(2) {
  display: flex;
}
.sales .footer .footer-content {
  margin-top: 2rem;
}
.sales .footer .contact-item {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #FFFFFF;
  background-color: #5B49A0;
  padding: 0.6rem;
}
.sales .footer .contact-item .image {
  width: 32px;
  height: 32px;
}
.sales .footer .contact-item h3 {
  font-size: 14px;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.sales .footer .contact-item a {
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 500;
}
.sales .footer .info {
  width: calc(100% - 45px);
}
.sales .footer .info img {
  width: 116px;
  height: 20px;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sales .method .method-item:hover h3 {
    color: #CE9216;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .sales .banner .menu.active + .menu-links {
    width: 50%;
  }
  .sales .banner .logo-container {
    padding: 1rem 2rem;
  }
  .sales .banner .banner-container {
    flex-flow: wrap;
    justify-content: space-between;
    padding: 1.5rem 2rem 3rem;
  }
  .sales .banner .banner-content {
    width: 48%;
  }
  .sales .banner .banner-content h1 {
    font-size: 28px;
  }
  .sales .banner .form {
    width: 48%;
    margin-top: 0;
  }
  .sales .banner .form h2 {
    text-align: center;
  }
  .sales .banner .form .buttons {
    align-self: center;
  }
  .sales .banner .fact-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .sales .banner .fact-item {
    width: 38%;
  }
  .sales .banner .fact-item:nth-child(2) {
    margin-top: 0;
  }
  .sales .growth .growth-item {
    width: 32%;
  }
  .sales .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .sales .course .course-item {
    width: 45%;
    margin-right: 1.5rem;
  }
  .sales .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .sales .course .course-item:last-child {
    margin-right: 0;
  }
  .sales .strategy .strategy-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .sales .strategy .content {
    width: 53%;
  }
  .sales .strategy .info {
    width: 41%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .sales .method .method-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .sales .method .method-item {
    width: 48%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 1rem;
  }
  .sales .method .method-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .sales .skill .list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .sales .skill .item {
    width: 48%;
  }
  .sales .award .award-data {
    flex-flow: wrap;
    justify-content: center;
  }
  .sales .award .image img:nth-child(2) {
    margin-right: 1.2rem;
  }
  .sales .award .image img:last-child {
    margin-right: 0;
  }
  .sales .award .award-info {
    flex-direction: row;
    justify-content: space-between;
    width: 47%;
  }
  .sales .award .award-info h3 {
    text-align: left;
    width: calc(100% - 45px);
    margin-top: 0;
  }
  .sales .award .award-info:nth-child(2n) {
    margin-left: 2rem;
  }
  .sales .element .element-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .sales .element .content {
    width: 50%;
  }
  .sales .element .info {
    width: 46%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .sales .proud span {
    width: 21%;
  }
  .sales .proud span:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .sales .proud span:nth-child(4n) {
    margin-right: 0;
  }
  .sales .onsite .onsite-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .sales .onsite .onsite-content {
    width: 50%;
  }
  .sales .onsite .onsite-info {
    width: 44%;
    position: sticky;
    top: 60px;
    margin-top: 0px;
  }
  .sales .client .client-item {
    padding: 0 0.8rem 0 3rem;
  }
  .sales .client .client-item p {
    position: relative;
  }
  .sales .client .client-item p::after {
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, #CE9216, #EBC24E);
    width: 5px;
    height: 57%;
    left: -24px;
    bottom: 0;
  }
  .sales .client .client-item p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -46px;
    background-image: url(/_public/images/sales-training/quote.svg);
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
  }
  .sales .client .info {
    display: none;
  }
  .sales .client .owl-dots {
    position: absolute;
    right: 7%;
    bottom: 0;
    margin-top: 0;
  }
  .sales .choose .choose-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .sales .choose .choose-item {
    width: 48%;
  }
  .sales .footer .footer-container {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .sales .footer .faq-list {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .sales .footer .faq-item {
    width: 48.5%;
    padding: 0.8rem 1.2rem;
  }
  .sales .footer .faq-content,
  .sales .footer .footer-content {
    width: 100%;
  }
  .sales .footer .contact-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .sales .footer .contact-item {
    position: relative;
    z-index: 1;
    width: 48%;
  }
  .sales .footer .contact-item:first-child {
    margin-right: 1.5rem;
  }
  .sales .footer .contact-item::before {
    content: '';
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.1;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: -1;
  }
  .sales .footer .contact-item:first-child::before {
    background-image: url(/_public/images/sales-training/call.svg);
  }
  .sales .footer .contact-item:nth-child(2)::before {
    background-image: url(/_public/images/sales-training/email.svg);
  }
  .sales .footer .contact-item:nth-child(3)::before {
    background-image: url(/_public/images/sales-training/rating.svg);
  }
}
@media (min-width : 1024px) {
  p {
    line-height: 1.8;
  }
  .sales .heading h2 {
    font-size: 28px;
  }
  .sales .buttons .btn-gradient,
  .sales .buttons .btn-transparent {
    font-size: 16px;
  }
  .sales .banner .menu-links {
    width: 78%;
    flex-direction: row;
    box-shadow: none;
    position: relative;
  }
  .sales .banner .menu {
    display: none;
  }
  .sales .banner .menu-toggle {
    display: none;
  }
  .sales .banner .logo-container ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .sales .banner .logo-container ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    padding: 0;
    z-index: 1;
    font-size: 15px;
    position: relative;
  }
  .sales .banner .logo-container ul .links-li::after {
    content: "";
    position: absolute;
    bottom: -4px;
    width: 0px;
    height: 2px;
    left: 0%;
    background-image: linear-gradient(180deg, #CE9216, #EBC24E);
    z-index: -1;
    transition: 0.7s ease;
  }
  .sales .banner .logo-container ul .links-li:hover::after {
    width: 100%;
    right: 0%;
  }
  .sales .banner .logo-container ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .sales .banner .logo-container ul .links-li:last-child::after {
    content: none;
  }
  .sales .banner .logo-container ul .links-li:last-child .btn-transparent,
  .sales .banner .logo-container ul .links-li:last-child .btn-gradient {
    width: 177px;
  }
  .sales .banner .logo-container ul .links-li:nth-child(5) {
    display: none;
  }
  .sales .banner .logo-container ul .links-li .btn-transparent {
    margin-right: 1rem;
    border: 1px solid #FFFFFF;
  }
  .sales .banner .banner-container {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .sales .banner .banner-content {
    width: 46%;
  }
  .sales .banner .banner-content ul li span {
    padding: 0.5rem;
    background-color: #F5F5F5;
  }
  .sales .banner .form {
    padding: 2rem 1.5rem;
    background-image: url(/_public/images/sales-training/form-bg.png);
    background-size: 100% 100%;
    background-color: transparent;
  }
  .sales .banner .form h2 {
    font-size: 22px;
  }
  .sales .banner .form h2::before {
    left: -37px;
    width: calc(100% + 35px);
  }
  .sales .banner .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .sales .banner .input-container {
    width: 48%;
  }
  .sales .banner .input-container:last-child {
    width: 100%;
  }
  .sales .banner .fact-list {
    justify-content: space-between;
  }
  .sales .banner .fact-item {
    width: 23%;
    margin-top: 0;
  }
  .sales .success {
    background-image: url(/_public/images/sales-training/drive-bg.png);
    background-size: 100% 100%;
    padding-bottom: 5rem;
  }
  .sales .success .heading {
    width: 90%;
    margin: 0 auto 1rem;
  }
  .sales .success .info {
    width: 60%;
    margin: auto;
  }
  .sales .growth {
    background-image: url(/_public/images/sales-training/growth-bg.png);
    background-size: 100% 100%;
  }
  .sales .growth .heading {
    width: 90%;
    align-self: center;
  }
  .sales .growth .growth-item {
    width: 13%;
  }
  .sales .course .course-item {
    width: 31%;
  }
  .sales .course .course-item:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .sales .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .sales .method {
    background-image: url(/_public/images/sales-training/method-bg.png);
    background-size: 100% 100%;
  }
  .sales .method .heading {
    display: none;
  }
  .sales .method .method-item {
    width: 23%;
    margin-top: 0;
  }
  .sales .method .method-item h3 {
    min-height: 50px;
  }
  .sales .method .method-item p {
    min-height: 93px;
  }
  .sales .method .method-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 1rem;
  }
  .sales .method .method-item:last-child {
    border: none;
    padding-right: 0;
  }
  .sales .skill {
    padding-bottom: 2rem;
  }
  .sales .skill .heading h2,
  .sales .skill .heading p {
    text-align: center;
  }
  .sales .skill .buttons {
    align-self: center;
    order: 3;
  }
  .sales .skill .list {
    background-image: url(/_public/images/sales-training/skill.png);
    background-size: 280px 280px;
    background-repeat: no-repeat;
    background-position: top 65% center;
  }
  .sales .skill .item {
    width: 34%;
  }
  .sales .award {
    background-color: transparent;
    padding-bottom: 10rem;
  }
  .sales .award .award-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
    padding-right: 3rem;
  }
  .sales .award .award-container::before {
    content: '';
    position: absolute;
    background-color: #FAFAFA;
    width: 100%;
    height: calc(100% + 8%);
    border-radius: 30px;
    z-index: -1;
    background-image: url(/_public/images/sales-training/award-grid.png);
    background-size: 50% 55%;
    background-position: right bottom;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
  }
  .sales .award .award-list {
    width: 50%;
    margin-left: auto;
  }
  .sales .award .data-list {
    background-image: url(/_public/images/sales-training/award-bg.png);
    background-size: 100% 100%;
    padding: 5rem 7rem 0rem 5rem;
    width: 48%;
    position: absolute;
    left: 18px;
    top: -50px;
    height: 690px;
  }
  .sales .award .data-list::after,
  .sales .award .data-list::before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    z-index: -1;
    top: 33px;
  }
  .sales .award .data-list::before {
    border-bottom: 17px solid #F5F5F5;
    border-left: 17px solid transparent;
    left: 17px;
  }
  .sales .award .data-list::after {
    border-bottom: 17px solid #F5F5F5;
    border-right: 17px solid transparent;
    right: 41px;
  }
  .sales .award .award-content {
    width: 98%;
    margin: 2.5rem auto 1rem;
  }
  .sales .award .award-content .heading h2,
  .sales .award .award-content .heading p {
    text-align: left;
  }
  .sales .award .award-content .image {
    justify-content: flex-start;
  }
  .sales .award .award-info {
    width: 100%;
  }
  .sales .award .award-info:nth-child(2n) {
    margin-left: 0;
  }
  .sales .award .owl-nav {
    margin: 0;
    position: absolute;
    bottom: -100px;
    left: 0px;
  }
  .sales .element .info {
    position: static;
    top: 0;
  }
  .sales .proud span {
    width: 14.5%;
  }
  .sales .proud span:nth-child(4n) {
    margin-right: 1.5rem;
  }
  .sales .proud span:last-child,
  .sales .proud span:nth-child(6n) {
    margin-right: 0;
  }
  .sales .client .client-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .sales .client .client-content {
    width: 50%;
  }
  .sales .client .info {
    display: flex;
    width: 48%;
    margin-top: 0;
  }
  .sales .choose .choose-item {
    flex-direction: row;
    justify-content: space-between;
  }
  .sales .choose .choose-item h3 {
    margin: 0 0 0.5rem 0;
  }
  .sales .choose .info {
    width: calc(100% - 90px);
  }
  .sales .footer .footer-content {
    margin-top: 4rem;
  }
  .sales .footer .footer-content .heading {
    width: 80%;
    margin: auto;
  }
  .sales .footer .contact-list {
    justify-content: space-between;
    border-bottom: 1px solid #DCA931;
    padding-bottom: 1.5rem;
  }
  .sales .footer .contact-item {
    width: 32%;
    margin-top: 2.5rem;
  }
  .sales .footer .contact-item:first-child {
    margin-right: 0;
  }
  .sales .footer .contact-item::before {
    width: 55px;
    height: 50px;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .sales .heading h2 {
    font-size: 33px;
  }
  .sales .banner {
    position: relative;
    padding-bottom: 7rem;
    background-image: url(/_public/images/sales-training/banner-bg.png);
    background-size: 100% 67%;
    background-repeat: no-repeat;
  }
  .sales .banner .tka-logo {
    max-width: 245px;
  }
  .sales .banner::after {
    content: '';
    position: absolute;
    width: 75px;
    height: 35px;
    left: 85px;
    bottom: 190px;
    background-image: url(/_public/images/sales-training/grid-left.png);
    background-size: 100% 100%;
    animation: 2s blink linear infinite;
  }
  .sales .banner::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    right: 6px;
    bottom: 40px;
    background-image: url(/_public/images/sales-training/grid-right.png);
    background-size: 100% 100%;
    animation: 2s blink linear infinite;
  }
  .sales .banner .logo-container {
    padding: 1.3rem 0;
  }
  .sales .banner .logo-container ul .links-li:nth-child(5) {
    display: flex;
  }
  .sales .banner .banner-container {
    padding: 6rem 0 8rem;
  }
  .sales .banner .banner-content h1 {
    font-size: 35px;
    line-height: 1.3;
    text-shadow: 3px 3px 3px #bfb4b4;
  }
  .sales .banner .banner-content h1 img {
    width: 48px;
    height: 48px;
  }
  .sales .banner .banner-content::before {
    content: '';
    position: absolute;
    width: 65px;
    height: 57px;
    right: 41px;
    bottom: 23%;
    background-image: url(/_public/images/sales-training/circle.png);
    background-size: 100% 100%;
    animation: turn 4s linear infinite;
  }
  .sales .banner .form h2::before {
    left: -39px;
  }
  .sales .banner .fact-list {
    position: absolute;
    left: 0px;
    padding: 2rem 2rem 2rem 5rem;
    bottom: 0;
    width: 93%;
    border-radius: 0px 18px 18px 0px;
  }
  .sales .success {
    padding-top: 4rem;
  }
  .sales .growth .growth-item p {
    font-size: 15px;
  }
  .sales .course .course-item {
    width: 23%;
  }
  .sales .course .course-item:nth-child(3n) {
    margin-right: 1.5rem;
  }
  .sales .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .sales .strategy .info {
    position: static;
    top: 0;
  }
  .sales .method .method-item h3 {
    min-height: auto;
  }
  .sales .method .method-item p {
    min-height: 70px;
  }
  .sales .skill .skill-container {
    width: 90%;
    margin: auto;
  }
  .sales .award .data-list::before {
    left: 25px;
  }
  .sales .award .data-list::after {
    right: 55px;
  }
  .sales .element {
    padding-top: 2rem;
  }
  .sales .element .info span {
    width: 88%;
  }
  .sales .proud {
    background-image: url(/_public/images/sales-training/experience-bg.png);
    background-size: 28% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 2rem;
  }
  .sales .proud span {
    width: 9.3%;
  }
  .sales .proud span:nth-child(6n) {
    margin-right: 1.5rem;
  }
  .sales .proud span:nth-child(9) {
    margin-right: 0;
  }
  .sales .onsite .onsite-info {
    position: static;
    top: 0;
  }
  .sales .choose .choose-container {
    position: relative;
    align-items: flex-end;
    flex-wrap: unset;
    flex-direction: column;
  }
  .sales .choose .content {
    width: 46.5%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: url(/_public/images/sales-training/choose-bg.png);
    background-size: 100% 100%;
  }
  .sales .choose .choose-item {
    margin-top: 1rem;
    width: 46.5%;
  }
  .sales .choose .choose-item:nth-child(2) {
    bottom: 0;
    left: 0;
    position: absolute;
  }
  .sales .choose .choose-item:nth-child(3) {
    margin-top: 0;
  }
  .sales .choose .info {
    width: calc(100% - 100px);
  }
  .sales .footer {
    background-image: url(/_public/images/sales-training/footer-bg.png);
    background-size: 100% 100%;
  }
  .sales .footer .contact-item {
    width: 31%;
    padding: 1.2rem 1.5rem;
  }
  .sales .footer .contact-item a {
    font-size: 13px;
  }
  .sales .footer .contact-item h3 {
    font-size: 15px;
  }
  .sales .footer .contact-item .image {
    width: 44px;
    height: 44px;
  }
  .sales .footer .info {
    width: calc(100% - 60px);
  }
}
@media (min-width : 1500px) {
  .sales .banner {
    background-image: none;
    padding-bottom: 4rem;
  }
  .sales .banner .banner-container {
    padding-bottom: 0!important;
  }
  .sales .banner::after,
  .sales .banner::before {
    content: none;
  }
  .sales .banner .fact-list {
    width: 100%;
    margin-top: 4rem;
    border-radius: 20px;
    position: relative;
    padding: 2rem;
  }
  .sales .banner .banner-content::before {
    content: none;
  }
  .sales .success {
    background-image: none;
  }
}