@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: #111111;
  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;
  box-shadow: 0px 0px 3px #b5b4b4;
  margin-left: 0;
  border: 1px solid #707070;
}
/* 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: #644196;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #644196;
}
* {
  box-sizing: border-box;
  font-family: Roboto;
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #111111;
  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-size: 22px;
  font-weight: 600;
  font-style: normal;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #111111;
  list-style: none;
  font-size: 14px;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.communication .buttons {
  display: flex;
  margin-top: 1rem;
}
.communication .buttons .btn-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #FFBF29;
  color: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 3px 6px #e2e2e2;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  outline: none;
  min-width: 150px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.communication .buttons .btn-orange:before {
  content: '';
  background: #644196;
  position: absolute;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50de);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
}
.communication .buttons .btn-orange:hover::before {
  height: 100%;
  width: 135%;
  transition: 1s ease-out;
}
.communication .buttons .btn-orange img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.communication .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
}
.communication .heading h2 {
  width: 100%;
}
.communication .heading span {
  width: 120px;
  height: 5px;
  margin-top: 0.5rem;
  background-color: #644196;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.communication .heading span::before,
.communication .heading span::after {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  background-color: #FFFFFF;
  animation: heading-move 5s linear infinite;
  z-index: -1;
  top: -1px;
}
.communication .heading span::before {
  right: 7px;
}
.communication .heading span::after {
  right: 21px;
}
.communication .center-heading {
  justify-content: center;
  align-items: center;
}
.communication .center-heading::before {
  content: none;
}
.communication .center-heading h2 {
  text-align: center;
}
.communication .white-heading h2 {
  color: #FFFFFF;
}
.communication .white-heading h2::before,
.communication .white-heading h2::after,
.communication .white-heading h2 span {
  border-color: #FFFFFF;
}
@keyframes blink {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes heading-move {
  0% {
    transform: translateX(-120px);
  }
  100% {
    transform: translateX(80px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes particle-animation-1 {
  100% {
    transform: translate3d(0vw, 4vh, 72px);
  }
}
@keyframes particle-animation-2 {
  100% {
    transform: translate3d(23vw, 3vh, 75px);
  }
}
@keyframes particle-animation-3 {
  100% {
    transform: translate3d(3vw, 7vh, 100px);
  }
}
@keyframes particle-animation-4 {
  100% {
    transform: translate3d(23vw, 30vh, 94px);
  }
}
@keyframes particle-animation-5 {
  100% {
    transform: translate3d(15vw, 1vh, 20px);
  }
}
@keyframes particle-animation-6 {
  100% {
    transform: translate3d(41vw, 28vh, 28px);
  }
}
@keyframes particle-animation-7 {
  100% {
    transform: translate3d(4vw, 8vh, 86px);
  }
}
@keyframes particle-animation-8 {
  100% {
    transform: translate3d(7vw, 18vh, 5px);
  }
}
@keyframes particle-animation-9 {
  100% {
    transform: translate3d(20vw, 25vh, 16px);
  }
}
@keyframes particle-animation-10 {
  100% {
    transform: translate3d(10vw, 2vh, 6px);
  }
}
@keyframes particle-animation-11 {
  100% {
    transform: translate3d(12vw, 19vh, 90px);
  }
}
@keyframes particle-animation-12 {
  100% {
    transform: translate3d(10vw, 20vh, 63px);
  }
}
@keyframes particle-animation-13 {
  100% {
    transform: translate3d(3vw, 20vh, 71px);
  }
}
@keyframes particle-animation-14 {
  100% {
    transform: translate3d(15vw, 15vh, 7px);
  }
}
@keyframes particle-animation-15 {
  100% {
    transform: translate3d(10vw, 3vh, 53px);
  }
}
@keyframes particle-animation-16 {
  100% {
    transform: translate3d(4vw, 20vh, 42px);
  }
}
@keyframes particle-animation-17 {
  100% {
    transform: translate3d(10vw, 10vh, 65px);
  }
}
.communication .banner {
  flex-direction: column;
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.communication .banner #particle-container {
  opacity: 0.6;
}
.communication .banner .particle {
  display: none;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}
.communication .banner .particle:nth-child(1) {
  -webkit-animation: particle-animation-1 60s infinite;
  animation: particle-animation-1 60s infinite;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
  transform: translate3d(4vw, 8vh, 31px);
  background: blue;
}
.communication .banner .particle:nth-child(2) {
  -webkit-animation: particle-animation-2 60s infinite;
  animation: particle-animation-2 60s infinite;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
  transform: translate3d(3vw, 21vh, 4px);
  background: #d926b2;
}
.communication .banner .particle:nth-child(3) {
  -webkit-animation: particle-animation-3 60s infinite;
  animation: particle-animation-3 60s infinite;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
  transform: translate3d(11vw, 6vh, 86px);
  background: #8526d9;
}
.communication .banner .particle:nth-child(4) {
  -webkit-animation: particle-animation-4 60s infinite;
  animation: particle-animation-4 60s infinite;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  transform: translate3d(21vw, 15vh, 91px);
  background: #2926d9;
}
.communication .banner .particle:nth-child(5) {
  -webkit-animation: particle-animation-5 60s infinite;
  animation: particle-animation-5 60s infinite;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  transform: translate3d(8vw, 15vh, 72px);
  background: #d9d626;
}
.communication .banner .particle:nth-child(6) {
  -webkit-animation: particle-animation-6 60s infinite;
  animation: particle-animation-6 60s infinite;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
  transform: translate3d(16vw, 1vh, 10px);
  background: #9726d9;
}
.communication .banner .particle:nth-child(7) {
  -webkit-animation: particle-animation-7 60s infinite;
  animation: particle-animation-7 60s infinite;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -1.4s;
  animation-delay: -1.4s;
  transform: translate3d(22vw, 6vh, 50px);
  background: #2cd926;
}
.communication .banner .particle:nth-child(8) {
  -webkit-animation: particle-animation-8 60s infinite;
  animation: particle-animation-8 60s infinite;
  height: 8px;
  width: 8px;
  -webkit-animation-delay: -1.6s;
  animation-delay: -1.6s;
  transform: translate3d(1vw, 2vh, 39px);
  background: #d92641;
}
.communication .banner .particle:nth-child(9) {
  -webkit-animation: particle-animation-9 60s infinite;
  animation: particle-animation-9 60s infinite;
  opacity: 0.98;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -1.8s;
  animation-delay: -1.8s;
  transform: translate3d(25vw, 2vh, 97px);
  background: #26d9a9;
}
.communication .banner .particle:nth-child(10) {
  -webkit-animation: particle-animation-10 60s infinite;
  animation: particle-animation-10 60s infinite;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
  transform: translate3d(15vw, 10vh, 82px);
  background: #c126d9;
}
.communication .banner .particle:nth-child(11) {
  -webkit-animation: particle-animation-11 60s infinite;
  animation: particle-animation-11 60s infinite;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -2.2s;
  animation-delay: -2.2s;
  transform: translate3d(25vw, 11vh, 90px);
  background: #d926a6;
}
.communication .banner .particle:nth-child(12) {
  -webkit-animation: particle-animation-12 60s infinite;
  animation: particle-animation-12 60s infinite;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
  transform: translate3d(7vw, 1vh, 76px);
  background: #26d9a6;
}
.communication .banner .particle:nth-child(13) {
  -webkit-animation: particle-animation-13 60s infinite;
  animation: particle-animation-13 60s infinite;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -2.6s;
  animation-delay: -2.6s;
  transform: translate3d(31vw, 8vh, 4px);
  background: #d96826;
}
.communication .banner .particle:nth-child(14) {
  -webkit-animation: particle-animation-14 60s infinite;
  animation: particle-animation-14 60s infinite;
  height: 6px;
  width: 6px;
  -webkit-animation-delay: -2.8s;
  animation-delay: -2.8s;
  transform: translate3d(4vw, 15vh, 18px);
  background: #d92662;
}
.communication .banner .particle:nth-child(15) {
  -webkit-animation: particle-animation-15 60s infinite;
  animation: particle-animation-15 60s infinite;
  height: 10px;
  width: 10px;
  -webkit-animation-delay: -3s;
  animation-delay: -3s;
  transform: translate3d(29vw, 19vh, 42px);
  background: #26d9c1;
}
.communication .banner .particle:nth-child(16) {
  -webkit-animation: particle-animation-16 60s infinite;
  animation: particle-animation-16 60s infinite;
  height: 7px;
  width: 7px;
  -webkit-animation-delay: -3.2s;
  animation-delay: -3.2s;
  transform: translate3d(18vw, 8vh, 76px);
  background: #d92677;
}
.communication .banner .particle:nth-child(17) {
  -webkit-animation: particle-animation-17 60s infinite;
  animation: particle-animation-17 60s infinite;
  height: 9px;
  width: 9px;
  -webkit-animation-delay: -3.4s;
  animation-delay: -3.4s;
  transform: translate3d(12vw, 23vh, 7px);
  background: #d98026;
}
.communication .banner .bg-images {
  display: none;
}
.communication .banner .logo-container,
.communication .banner .container,
.communication .banner .tka-logo,
.communication .banner .menu,
.communication .banner .menu-toggle {
  display: flex;
}
.communication .banner .logo-container .container {
  box-shadow: 0 2px 9px #d0d0d0;
  padding: 1rem;
  justify-content: space-between;
}
.communication .banner .tka-logo {
  max-width: 200px;
}
.communication .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.communication .banner .menu {
  align-items: center;
  margin-left: auto;
}
.communication .banner .menu img {
  width: 23px;
  height: 23px;
}
.communication .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #8263C1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.communication .banner .menu-toggle {
  color: #FFFFFF;
}
.communication .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.communication .banner .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #FFFFFF;
  color: #FFFFFF;
}
.communication .banner .links-li:first-child {
  padding-top: 0;
}
.communication .banner .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.communication .banner .links-li:last-child {
  display: none;
}
.communication .banner .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.communication .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.communication .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.communication .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 1s;
  padding: 1rem 1.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
}
.communication .banner .sticky .container {
  box-shadow: none;
  padding: 0;
}
.communication .banner .sticky-down {
  top: -100px;
}
.communication .banner .container {
  height: 100%;
}
.communication .banner .banner-container,
.communication .banner .banner-info,
.communication .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.communication .banner .banner-container {
  padding-top: 2rem;
  width: 100%;
  height: 100%;
  align-items: flex-start;
}
.communication .banner .banner-content {
  width: 100%;
  height: 100%;
}
.communication .banner .banner-content .para {
  color: #FFBF29;
  border-left: 6px solid #FFBF29;
  font-size: 16px;
  padding-left: 5px;
  font-weight: 600;
}
.communication .banner .banner-content h1 {
  font-size: 26px;
  width: 100%;
  margin-bottom: 1rem;
}
.communication .banner .banner-content h1 img {
  width: 38px;
  height: 38px;
  margin-right: 0.6rem;
  transform: translateY(10px);
}
.communication .banner .banner-info {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-image: url(/_public/images/effective-communication/info-bg.png);
  background-repeat: no-repeat;
  background-size: 55% 100%;
  background-color: #FFFFFF;
  height: 100%;
  width: 100%;
}
.communication .banner .banner-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.communication .banner .banner-info span img {
  width: 100%;
  height: 100%;
}
.communication .banner .banner-info h2 {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}
.communication .overview .overview-container,
.communication .overview .overview-content,
.communication .overview .overview-course,
.communication .overview .course-content {
  display: flex;
  flex-direction: column;
}
.communication .overview .overview-content {
  align-items: center;
  text-align: center;
}
.communication .overview .overview-content p:nth-last-child(2) {
  margin-top: 0.5rem;
}
.communication .overview .overview-content .buttons {
  margin-top: 1.5rem;
}
.communication .overview .course-content {
  align-items: center;
  text-align: center;
  background-color: #4C2C79;
  padding: 1.5rem;
  color: #FFFFFF;
  border-radius: 10px;
}
.communication .overview .course-content p {
  color: #FFFFFF;
}
.communication .overview .course-content p:nth-child(4) {
  margin-top: 0.3rem;
}
.communication .overview .overview-course {
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 15px;
  width: 272px;
  align-self: center;
  margin-top: 2rem;
  border: 2px solid #644196;
}
.communication .overview .overview-course .buttons {
  position: relative;
  z-index: 1;
}
.communication .overview .overview-course .buttons .btn-orange {
  box-shadow: none;
}
.communication .overview .overview-course .buttons::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #b19fd6;
  opacity: 0.3;
  bottom: -11px;
  z-index: -1;
  right: -19px;
  border-radius: 50px;
  animation: blink 3s linear infinite;
}
.communication .overview .book {
  border-radius: 50px;
  width: 90px;
  height: 90px;
  background: #8263C1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 1rem;
}
.communication .overview .book img {
  width: 40px;
  height: 40px;
}
.communication .overview .book::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #b19fd6;
  opacity: 0.3;
  bottom: 0px;
  left: -16px;
  border-radius: 50px;
  z-index: 1;
  animation: blink 3s linear infinite;
}
.communication .overview h3 {
  width: 100%;
  margin-bottom: 1rem;
}
.communication .method {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.communication .method .method-container,
.communication .method .method-list,
.communication .method .method-item {
  display: flex;
  flex-direction: column;
}
.communication .method .method-list {
  width: 100%;
}
.communication .method .para {
  text-align: center;
}
.communication .method .method-item {
  background-size: cover;
  background-repeat: no-repeat;
  width: 272px;
  align-self: center;
  margin-top: 1.5rem;
  min-height: 245px;
  position: relative;
  overflow: hidden;
}
.communication .method .method-item h3 {
  color: #FFFFFF;
  position: relative;
  padding-left: 20px;
  min-height: 50px;
  margin-bottom: 1rem;
}
.communication .method .method-item h3:before {
  content: '';
  width: 15px;
  height: 1px;
  position: absolute;
  background-color: #FFFFFF;
  top: 12px;
  left: 0;
}
.communication .method .method-item .method-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -162px;
  transition: 1s all ease-in-out;
}
.communication .method .method-item:before {
  content: '';
  width: 100%;
  height: 0%;
  position: absolute;
  background-color: #4C2C79;
  top: 0;
  left: 0;
  opacity: 0.6;
}
.communication .method .method-item:first-child {
  background-image: url(/_public/images/effective-communication/classroom.png);
}
.communication .method .method-item:nth-child(2) {
  background-image: url(/_public/images/effective-communication/led.png);
}
.communication .method .method-item:nth-child(3) {
  background-image: url(/_public/images/effective-communication/self.png);
}
.communication .method .method-item:last-child {
  background-image: url(/_public/images/effective-communication/onsite.png);
}
.communication .method .method-item p {
  color: #FFFFFF;
  font-weight: 400;
  margin-top: 1rem;
  min-height: 110px;
}
.communication .method .method-item a {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-top: 1rem;
}
.communication .method .method-item a img {
  padding-left: 10px;
  width: 30px;
  height: 17px;
}
.communication .method .method-item:hover {
  box-shadow: 0 2px 6px #a7a7a7;
}
.communication .method .method-item:hover:before {
  height: 100%;
  transition: 1s;
}
.communication .method .method-item:hover p,
.communication .method .method-item:hover a {
  visibility: visible;
  z-index: 1;
}
.communication .method .method-item:hover .method-content {
  bottom: 20px;
  transition-duration: 2s;
}
.communication .method .method-item:hover h3 {
  padding-left: 0px;
  transition: 1s;
  margin-bottom: 0;
}
.communication .method .method-item:hover h3:before {
  content: none;
}
.communication .course .buttons .btn-orange {
  min-width: 100px;
  box-shadow: none;
}
.communication .course .course-container,
.communication .course .course-list,
.communication .course .course-item {
  display: flex;
  flex-direction: column;
}
.communication .course .heading {
  margin-bottom: 0;
  flex-direction: column;
}
.communication .course .heading p {
  text-align: center;
  margin-bottom: 0.3rem;
}
.communication .course .heading p strong {
  color: #4C2C79;
}
.communication .course .course-item {
  padding: 1.5rem;
  border: 1px solid #8263C1;
  background-color: #FFFFFF;
  margin-top: 1.5rem;
  width: 272px;
  align-self: center;
  position: relative;
  z-index: 1;
  box-shadow: 3px 3px 4px lightgrey;
}
.communication .course .course-item:before {
  content: '';
  width: 100%;
  height: 0%;
  position: absolute;
  background-color: #4C2C79;
  top: 0;
  left: 0;
}
.communication .course .course-item .course-heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.7rem;
}
.communication .course .course-item .course-heading span {
  display: flex;
  height: 58px;
  width: 60px;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 0.6rem;
  position: relative;
}
.communication .course .course-item .course-heading span:before {
  content: '';
  background-image: url(/_public/images/effective-communication/grey-bg.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 53px;
  height: 53px;
  position: absolute;
  right: -8px;
  bottom: 13px;
  z-index: -1;
}
.communication .course .course-item .course-heading span img {
  width: 100%;
  height: 100%;
}
.communication .course .course-item .course-heading h3 {
  font-size: 16px;
  width: calc(100% - 78px);
}
.communication .course .course-item p {
  color: #707070;
}
.communication .course .course-item p:nth-child(3) {
  margin-top: 0.3rem;
}
.communication .course .course-item:hover {
  box-shadow: none;
}
.communication .course .course-item:hover:before {
  height: 100%;
  transition: 1s;
}
.communication .course .course-item:hover span {
  background-color: #FFFFFF;
  z-index: 1;
  position: relative;
}
.communication .course .course-item:hover span:before {
  background-image: url(/_public/images/effective-communication/course-bg.svg);
}
.communication .course .course-item:hover h3,
.communication .course .course-item:hover p {
  color: #FFFFFF;
  z-index: 1;
}
.communication .course .course-item:hover .buttons {
  z-index: 1;
}
.communication .skills {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.communication .skills .skills-container,
.communication .skills .skills-content,
.communication .skills .pro-item,
.communication .skills .progress-content {
  display: flex;
  flex-direction: column;
}
.communication .skills .skills-content {
  order: 2;
  margin-top: 2rem;
  background-image: url(/_public/images/effective-communication/verbal-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 1rem;
  height: 100%;
}
.communication .skills .skills-content span {
  display: flex;
  margin-top: 1.5rem;
  width: 100%;
  height: 100%;
}
.communication .skills .skills-content span img {
  width: 100%;
  height: 100%;
}
.communication .skills .skill-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.communication .skills .skill-item .graph-circle {
  width: 116px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.communication .skills .skill-item .graph-circle::after {
  content: '93%';
  position: absolute;
  font-size: 22px;
  font-weight: 600;
  top: 35px;
  left: 30px;
  color: #FFFFFF;
}
.communication .skills .skill-item .graph-circle .progress-ring {
  width: 110px;
  height: 110px;
}
.communication .skills .skill-item .graph-circle .progress-ring .circle-default {
  stroke: #FFFFFF !important;
  stroke-width: 3px;
}
.communication .skills .skill-item .graph-circle .progress-ring .progress-ring__circle {
  transition: 3s stroke-dashoffset;
  transform: rotate(-90deg);
  transform-origin: 43% 43%;
  stroke-width: 8px;
  stroke: #FFBF29 !important;
  background-color: transparent;
}
.communication .skills .skill-item p {
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.4;
  font-size: 17px;
  width: 68%;
}
.communication .skills .progress-content {
  order: 1;
}
.communication .skills .pro-item {
  margin-top: 1.5rem;
}
.communication .skills .pro-item h3 {
  font-size: 15px;
  width: 180px;
}
.communication .skills .pro-item .white-bar {
  display: flex;
  width: 100%;
  height: 10px;
  background-color: #DAF6F7;
  margin-top: 1rem;
  border-radius: 50px;
}
.communication .skills .pro-item .white-bar .bar {
  width: 0%;
  background-color: #16B3BC;
  transition: 2s ease-in;
  position: relative;
  height: 4px;
  align-self: center;
  border-radius: 50px;
  right: -5px;
}
.communication .skills .pro-item .white-bar .bar p {
  width: 40px;
  height: 21px;
  color: #FFFFFF;
  background-color: #16B3BC;
  position: absolute;
  right: -17px;
  top: -35px;
  text-align: center;
}
.communication .skills .pro-item .white-bar .bar p::before {
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #16B3BC;
  position: absolute;
  bottom: -7px;
  left: 11px;
  z-index: -1;
}
.communication .skills .pro-item:nth-child(4) .white-bar {
  background-color: #FFF3D6;
}
.communication .skills .pro-item:nth-child(4) .white-bar .bar {
  background-color: #FFBF29;
}
.communication .skills .pro-item:nth-child(4) .white-bar .bar p {
  background-color: #FFBF29;
}
.communication .skills .pro-item:nth-child(4) .white-bar .bar p::before {
  border-top-color: #FFBF29;
}
.communication .skills .pro-item:nth-last-child(2) .white-bar {
  background-color: #E5D2FF;
}
.communication .skills .pro-item:nth-last-child(2) .white-bar .bar {
  background-color: #72529F;
}
.communication .skills .pro-item:nth-last-child(2) .white-bar .bar p {
  background-color: #72529F;
}
.communication .skills .pro-item:nth-last-child(2) .white-bar .bar p::before {
  border-top-color: #72529F;
}
.communication .skills .pro-item:last-child .white-bar {
  background-color: #FFE1CC;
}
.communication .skills .pro-item:last-child .white-bar .bar {
  background-color: #FF6E0A;
}
.communication .skills .pro-item:last-child .white-bar .bar p {
  background-color: #FF6E0A;
}
.communication .skills .pro-item:last-child .white-bar .bar p::before {
  border-top-color: #FF6E0A;
}
.communication .outline .outline-container,
.communication .outline .form,
.communication .outline .content,
.communication .outline .input-list {
  display: flex;
  flex-direction: column;
}
.communication .outline .form-consent {
  display: flex;
  font-size: 11px;
  margin-bottom: 0.4rem;
  width: 100%;
}
.communication .outline .outline-content {
  background-color: #4C2C79;
  padding: 1.5rem;
}
.communication .outline .outline-content .heading {
  margin-bottom: 0;
}
.communication .outline .outline-content p {
  color: #FFFFFF;
}
.communication .outline .outline-content .faq-item {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  cursor: pointer;
}
.communication .outline .outline-content .faq-item .ques {
  display: flex;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.7rem;
  border: 1px solid #FFFFFF;
  justify-content: space-between;
  align-items: center;
}
.communication .outline .outline-content .faq-item .ques h4 {
  color: #FFFFFF;
  width: calc(100% - 35px);
  font-size: 16px;
}
.communication .outline .outline-content .faq-item .ques img {
  height: 25px;
  width: 25px;
}
.communication .outline .outline-content .faq-item .ans {
  display: none;
}
.communication .outline .outline-content .faq-item .ans ul li {
  margin-top: 0.7rem;
  position: relative;
  z-index: 1;
  padding-left: 1.3rem;
  color: #FFFFFF;
}
.communication .outline .outline-content .faq-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;
}
.communication .outline .outline-content .active .ques img {
  transform: rotate(180deg);
}
.communication .outline .outline-content ul li {
  margin-top: 0.7rem;
  position: relative;
  z-index: 1;
  padding-left: 1.3rem;
}
.communication .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;
}
.communication .outline .input-list {
  width: 100%;
}
.communication .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;
}
.communication .outline .form label {
  display: flex;
  align-items: center;
  width: 96%;
  font-size: 11px;
  margin-left: 5px;
}
.communication .outline .input-container {
  border: 2px solid transparent;
  border-radius: 22px;
  padding: 0.5rem 1rem;
  background-color: #F5F5F5;
  margin-bottom: 1rem;
}
.communication .outline .input-container input,
.communication .outline .input-container textarea {
  border: none;
  background-color: transparent;
  width: 100%;
  outline: none;
}
.communication .outline .input-container textarea {
  resize: none;
  overflow: auto;
}
.communication .outline .input-error {
  border: 2px solid red;
}
.communication .outline .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.communication .outline .input-error :-ms-input-placeholder {
  /* Edge */
  color: red;
}
.communication .outline .form-consent {
  justify-content: space-between;
}
.communication .outline .form-consent a {
  font-weight: 500;
  color: #FFBF29;
}
.communication .outline .form-consent p {
  font-size: 11px;
}
.communication .outline .consent-error {
  width: 100%;
}
.communication .outline .consent-error p {
  color: red;
  line-height: 1.4;
  font-size: 11px;
  margin-bottom: 0.5rem;
}
.communication .choose {
  background-color: #F5F5F5;
}
.communication .choose .choose-container,
.communication .choose .choose-content,
.communication .choose .choose-list,
.communication .choose .item,
.communication .choose span {
  display: flex;
  flex-direction: column;
}
.communication .choose .choose-content {
  align-items: center;
}
.communication .choose .choose-list {
  align-items: center;
}
.communication .choose .heading {
  flex-direction: column;
  margin-bottom: 0;
}
.communication .choose .heading h2 {
  width: 100%;
}
.communication .choose .heading p {
  text-align: center;
  margin-top: 1rem;
}
.communication .choose .item {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  background-color: #FFFFFF;
  margin-top: 2rem;
  width: 272px;
  background-image: url(/_public/images/effective-communication/choose-bg.png);
  background-size: 70% 34%;
  background-repeat: no-repeat;
}
.communication .choose .item h3 {
  margin-bottom: 0.5rem;
  font-size: 18px;
}
.communication .choose .item span {
  width: 65px;
  height: 60px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 8px #cecece;
  border-radius: 5px;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
}
.communication .choose .item span img {
  width: 100%;
  height: 100%;
}
.communication .packages {
  padding-bottom: 0 !important;
}
.communication .packages .packages-container,
.communication .packages .packages-list,
.communication .packages .package-item {
  display: flex;
  flex-direction: column;
}
.communication .packages .heading {
  margin-bottom: 0;
}
.communication .packages .package-item {
  width: 272px;
  padding: 1.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
  position: relative;
  align-self: center;
  background-color: #FFFFFF;
}
.communication .packages .package-item h3 {
  font-size: 18px;
}
.communication .packages .package-item:before {
  content: '';
  width: 100%;
  height: 1%;
  position: absolute;
  background-color: #4C2C79;
  top: 0;
  left: 0;
}
.communication .packages .package-item p {
  font-weight: 600;
  margin-top: 0.5rem;
}
.communication .packages .package-item ul li {
  position: relative;
  padding-left: 2rem;
  z-index: 1;
  margin-top: 0.8rem;
}
.communication .packages .package-item ul li:before {
  content: '';
  background-image: url(/_public/images/effective-communication/purplecircle.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0px;
  top: 2px;
  z-index: -1;
}
.communication .packages .package-item:hover .buttons .btn-orange {
  box-shadow: none;
}
.communication .packages .package-item:hover h3,
.communication .packages .package-item:hover p,
.communication .packages .package-item:hover li {
  color: #FFFFFF;
  z-index: 1;
}
.communication .packages .package-item:hover .buttons {
  z-index: 1;
}
.communication .packages .package-item:hover li:before {
  background-image: url(/_public/images/effective-communication/white-circle.svg);
  animation: rotate 4s linear infinite;
}
.communication .packages .package-item:hover:before {
  height: 100%;
  transition: 1s;
}
.communication .benefits .benefits-container,
.communication .benefits .benefits-content {
  display: flex;
  flex-direction: column;
}
.communication .benefits .benefits-content {
  align-items: center;
}
.communication .benefits .benefits-content p {
  text-align: center;
}
.communication .benefits .benefits-content p:nth-last-child(2) {
  margin-top: 0.5rem;
}
.communication .benefits .benefits-img {
  margin-top: 2rem;
  height: 100%;
}
.communication .benefits .benefits-img .heading {
  margin-bottom: 2rem;
}
.communication .benefits .benefits-img .image {
  display: flex;
}
.communication .benefits .benefits-img .image img {
  width: 100%;
  height: 100%;
}
.communication .facts {
  background-color: #4C2C79;
}
.communication .facts .facts-container,
.communication .facts .facts-list,
.communication .facts .item {
  display: flex;
  flex-direction: column;
}
.communication .facts .heading {
  flex-direction: column;
  margin-bottom: 0;
}
.communication .facts .heading p {
  margin-top: 1rem;
}
.communication .facts p,
.communication .facts h3,
.communication .facts span {
  color: #FFFFFF;
  text-align: center;
}
.communication .facts .item {
  align-items: center;
  border: 1px solid #FFFFFF;
  padding: 1.8rem;
  margin-top: 1.5rem;
  border-radius: 6px;
  width: 230px;
  align-self: center;
  box-shadow: 0px 3px 6px 0px rgba(255, 255, 255, 0.5), inset 0px 4px 10px -3px rgba(255, 255, 255, 0.5);
}
.communication .facts .item img {
  width: 50px;
  height: 50px;
}
.communication .facts .item .fact-count {
  display: flex;
  margin: 1rem 0 0.5rem;
}
.communication .facts .item .fact-count span,
.communication .facts .item .fact-count h3 {
  font-size: 28px;
  font-weight: 600;
}
.communication .facts .item p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.communication .testimonial {
  padding-bottom: 0;
}
.communication .testimonial .testimonial-container,
.communication .testimonial .testimonial-list,
.communication .testimonial .testimonial-item,
.communication .testimonial .content,
.communication .testimonial .testi-info {
  display: flex;
  flex-direction: column;
}
.communication .testimonial .testimonial-item {
  align-items: center;
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
  width: 95%;
  margin: auto;
}
.communication .testimonial .owl-item.active.center {
  z-index: 1;
}
.communication .testimonial .owl-item.active.center .testimonial-item {
  opacity: 1;
}
.communication .testimonial .owl-item.active.center .testimonial-item .content {
  background-color: #4C2C79;
}
.communication .testimonial .owl-item.active.center .testimonial-item .content p {
  color: #FFFFFF;
}
.communication .testimonial .content {
  padding: 1.5rem;
  padding-bottom: 3rem;
  border-radius: 6px;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}
.communication .testimonial .content p {
  text-align: center;
}
.communication .testimonial .content span img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}
.communication .testimonial .content span img:first-child {
  display: none;
}
.communication .testimonial .content span img:last-child {
  display: flex;
}
.communication .testimonial .testi-info {
  align-items: center;
  transform: translateY(-30px);
}
.communication .testimonial .testi-info span {
  display: flex;
  width: 60px;
  height: 60px;
  background-color: #FFBF29;
  border-radius: 50%;
  padding: 0.8rem;
}
.communication .testimonial .testi-info span img {
  width: 100%;
  height: 100%;
}
.communication .testimonial .testi-info h3 {
  font-size: 16px;
  margin: 1rem 0 0.2rem;
}
.communication .testimonial .testi-info h3,
.communication .testimonial .testi-info h4 {
  text-align: center;
}
.communication .testimonial .testi-info h4 {
  color: #FFBF29;
  font-size: 13px;
}
.communication .testimonial .owl-nav {
  display: flex;
  width: 95px;
  align-self: center;
  justify-content: space-between;
}
.communication .testimonial .owl-nav .owl-prev,
.communication .testimonial .owl-nav .owl-next {
  display: flex;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.7;
}
.communication .testimonial .owl-nav .owl-prev {
  background-image: url(/_public/images/effective-communication/owl-prev.svg);
}
.communication .testimonial .owl-nav .owl-next {
  background-image: url(/_public/images/effective-communication/owl-next.svg);
}
.communication .testimonial .owl-nav .btn-active {
  opacity: 1;
}
.communication .faqs .faq-container,
.communication .faqs .faq-list,
.communication .faqs .faq-item {
  display: flex;
  flex-direction: column;
}
.communication .faqs .heading {
  margin-bottom: 0px;
}
.communication .faqs .ques {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.communication .faqs .ques h3 {
  width: calc(100% - 30px);
  font-size: 14px;
}
.communication .faqs .ques img {
  width: 20px;
}
.communication .faqs .ques img:last-child {
  display: none;
}
.communication .faqs .ques span {
  height: 20px;
  width: 20px;
}
.communication .faqs .ans {
  display: none;
}
.communication .faqs .ans p {
  font-size: 13px;
}
.communication .faqs .ans ul {
  margin-left: 1rem;
}
.communication .faqs .ans ul li {
  list-style: disc;
  color: #FFFFFF;
  margin-top: 0.5rem;
  font-size: 13px;
}
.communication .faqs .active {
  background-color: #4C2C79;
  color: #FFFFFF;
}
.communication .faqs .active p {
  color: #FFFFFF;
}
.communication .faqs .active .ques {
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
}
.communication .faqs .active .ques span img:first-child {
  display: none;
}
.communication .faqs .active .ques span img:last-child {
  display: flex;
}
.communication .faqs .faq-item {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-top: 1.5rem;
  padding: 0.8rem;
  cursor: pointer;
}
.communication .footer {
  background-color: #4C2C79;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.communication .footer .footer-container,
.communication .footer .footer-content,
.communication .footer .contact-list,
.communication .footer .info {
  display: flex;
  flex-direction: column;
}
.communication .footer .buttons .btn-orange {
  box-shadow: none;
}
.communication .footer p {
  color: #FFFFFF;
}
.communication .footer .contact-item {
  display: flex;
  padding: 1rem;
  background-color: #644196;
  margin-top: 1rem;
  color: #FFFFFF;
  align-items: center;
  justify-content: space-between;
}
.communication .footer img {
  width: 25px;
  height: 25px;
}
.communication .footer .info {
  width: calc(100% - 39px);
}
.communication .footer .info h3 {
  font-size: 14px;
  margin-bottom: 0.2rem;
}
.communication .footer .info a {
  font-size: 13px;
}
.communication .footer .info img {
  width: 100px;
  height: 20px;
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .communication .buttons .btn-orange {
    font-size: 16px;
  }
  .communication .banner .menu.active + .menu-links {
    width: 50%;
  }
  .communication .banner .sticky {
    padding: 1rem 2rem;
  }
  .communication .banner .banner-info {
    display: none;
  }
  .communication .overview .overview-container {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .communication .overview .overview-course {
    width: 43%;
    align-self: flex-start;
    position: sticky;
    top: 60px;
    margin-top: 0px;
  }
  .communication .overview .overview-content {
    align-items: flex-start;
    width: 52%;
    text-align: left;
  }
  .communication .overview .overview-content .heading {
    align-items: flex-start;
  }
  .communication .overview .overview-content .heading h2 {
    text-align: left;
  }
  .communication .method .method-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .communication .method .method-item {
    width: 45%;
  }
  .communication .course .course-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .communication .course .course-item {
    width: 48%;
    margin-right: 1.7rem;
  }
  .communication .course .course-item:nth-child(even) {
    margin-right: 0;
  }
  .communication .course .course-heading h3 {
    min-height: 42px;
  }
  .communication .skills .skills-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .communication .skills .skills-content {
    width: 44%;
    order: 1;
    margin-top: 0;
    background-size: 100% 60%;
    padding: 1rem 0 0 1rem;
    position: sticky;
    top: 60px;
  }
  .communication .skills .skills-content span {
    transform: translate(35px, 10px);
  }
  .communication .skills .skill-item {
    width: 252px;
  }
  .communication .skills .progress-content {
    width: 48%;
    order: 2;
  }
  .communication .outline .outline-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .communication .outline .outline-content {
    width: 48%;
    overflow-y: scroll;
    max-height: 480px;
    border: solid #4C2C79;
    border-width: 18px 14px 15px 0;
    padding-top: 0;
    position: sticky;
    top: 60px;
  }
  .communication .outline .form {
    width: 48%;
    margin-top: 0;
  }
  .communication .choose .choose-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .communication .choose .item {
    width: 48%;
    box-shadow: none;
  }
  .communication .choose .item p {
    min-height: 110px;
  }
  .communication .packages .packages-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .communication .packages .package-item {
    width: 45%;
  }
  .communication .benefits .benefits-img .image {
    width: 65%;
    margin: auto;
  }
  .communication .facts .facts-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .communication .facts .item {
    width: 23%;
  }
  .communication .testimonial .testimonial-item {
    margin-top: 2rem;
  }
  .communication .testimonial .content {
    min-height: 420px;
  }
  .communication .testimonial .owl-item.active.center .testimonial-item {
    width: calc(100% + 25%);
    transform: translateY(-15px);
    position: relative;
    left: -12%;
  }
  .communication .testimonial .owl-item.active.center .content {
    min-height: auto;
  }
  .communication .faqs .faq-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .communication .faqs .faq-item {
    width: 48%;
  }
  .communication .footer {
    position: relative;
  }
  .communication .footer .contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .communication .footer .footer-content {
    align-items: center;
    padding-bottom: 2rem;
  }
  .communication .footer .heading {
    align-items: center;
  }
  .communication .footer h2,
  .communication .footer p {
    text-align: center;
  }
  .communication .footer .contact-item {
    width: 48%;
  }
  .communication .footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0px;
    bottom: 51%;
    background-color: #FFFFFF;
    opacity: 0.5;
  }
}
@media (min-width: 768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .communication .choose .item {
    width: 49%;
  }
}
@media (min-width : 1024px) {
  .communication .heading h2 {
    font-size: 28px;
  }
  .communication .banner {
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding-bottom: 3rem;
  }
  .communication .banner .particle {
    display: flex;
  }
  .communication .banner .bg-images {
    display: flex;
  }
  .communication .banner .bg-images .orange-img {
    position: absolute;
    width: 72%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -2;
  }
  .communication .banner .bg-images .purple-img {
    position: absolute;
    width: 66%;
    height: 90%;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .communication .banner .logo-container .container {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }
  .communication .banner .tka-logo {
    max-width: 230px;
  }
  .communication .banner .menu {
    display: none;
  }
  .communication .banner .menu-links {
    width: 62%;
    display: flex;
    background-color: transparent;
    position: relative;
    box-shadow: none;
    justify-content: center;
    border: 1px solid #FFFFFF;
    padding: 1rem;
    border-radius: 5px;
  }
  .communication .banner .menu-links .buttons .btn-orange {
    box-shadow: none;
  }
  .communication .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .communication .banner .links-li {
    border-bottom: none;
    margin-right: 1.5rem;
    padding: 0;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .communication .banner .links-li::before {
    content: "";
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    width: 0%;
    margin: 0 auto;
    position: absolute;
    transition: 0.5s all ease-in-out;
    background-color: #FFBF29;
  }
  .communication .banner .links-li:hover::before {
    width: 100%;
  }
  .communication .banner .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .communication .banner .links-li:last-child::before {
    content: none;
  }
  .communication .banner .menu-toggle {
    display: none;
  }
  .communication .banner .sticky {
    background-color: #FFFFFF;
  }
  .communication .banner .sticky .menu-links {
    padding: 0;
    justify-content: flex-end;
  }
  .communication .banner .sticky .links-li {
    color: #111111;
  }
  .communication .banner .banner-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .communication .banner .banner-content {
    width: 44%;
  }
  .communication .banner .banner-content h1 {
    font-size: 36px;
    margin: 1.5rem 0;
    line-height: 1.3;
  }
  .communication .banner .banner-content h1 img {
    width: 46px;
    height: 46px;
  }
  .communication .banner .banner-content .buttons {
    margin-top: 2rem;
  }
  .communication .banner .banner-info {
    display: flex;
    width: 41%;
    margin-top: 0;
    padding: 2.5rem;
    height: auto;
  }
  .communication .overview .overview-container {
    background-color: #F5F5F5;
    border-radius: 0 15px 15px 0;
  }
  .communication .overview .overview-course {
    width: 38%;
    padding: 1.5rem;
  }
  .communication .overview .overview-content {
    width: 55%;
    padding: 2rem;
    padding-right: 0;
  }
  .communication .method {
    padding: 3rem 0rem;
  }
  .communication .method .para {
    width: 75%;
    margin: auto;
  }
  .communication .method .method-item {
    width: 25%;
    border-right: 1px solid #FFFFFF;
  }
  .communication .method .method-item a {
    margin-top: 1rem;
  }
  .communication .method .method-item p {
    margin-top: 0rem;
  }
  .communication .method .method-item h3 {
    min-height: 50px;
  }
  .communication .method .method-item .method-content {
    bottom: -156px;
  }
  .communication .method .method-item .method-content p {
    margin-top: 0.5rem;
  }
  .communication .course .course-item {
    width: 31%;
  }
  .communication .course .course-item:nth-child(even) {
    margin-right: 1.7rem;
  }
  .communication .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .communication .course .course-heading h3 {
    min-height: 63px;
  }
  .communication .skills .skills-content {
    position: static;
    align-self: center;
  }
  .communication .skills .pro-item h3 {
    width: 100%;
  }
  .communication .outline .outline-container {
    position: relative;
    justify-content: flex-end;
  }
  .communication .outline .outline-content {
    max-height: 430px;
    position: absolute;
    left: 0;
    width: 48%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .communication .outline .form {
    width: 55%;
    padding-left: 3rem;
  }
  .communication .outline .input-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .communication .outline .input-list .input-container {
    width: 48%;
  }
  .communication .outline .input-list .input-container:last-child {
    width: 100%;
  }
  .communication .choose .choose-container {
    width: 82%;
    margin: auto;
  }
  .communication .choose .choose-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .communication .choose .heading {
    width: 70%;
    align-items: flex-start;
  }
  .communication .choose .heading h2,
  .communication .choose .heading p {
    text-align: left;
  }
  .communication .choose .item p {
    min-height: 88px;
  }
  .communication .choose .buttons {
    width: 25%;
    margin-top: 0;
    justify-content: flex-end;
  }
  .communication .packages .packages-list {
    align-self: center;
    justify-content: center;
    width: 92%;
  }
  .communication .packages .package-item {
    width: 33%;
    transition: 1s all ease-in-out;
  }
  .communication .packages .package-item ul {
    min-height: 159px;
  }
  .communication .packages .package-item:hover {
    transform: scale(1.07);
    padding: 2rem 1.5rem;
    z-index: 1;
    transition: 1s ease-out;
  }
  .communication .packages .package-item:hover .packages-list {
    transform: scale(0.9);
  }
  .communication .benefits .benefits-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .communication .benefits .benefits-content {
    align-items: flex-start;
    width: 48%;
    order: 1;
  }
  .communication .benefits .benefits-content .heading {
    align-items: flex-start;
  }
  .communication .benefits .benefits-content h2,
  .communication .benefits .benefits-content p {
    text-align: left;
  }
  .communication .benefits .benefits-img {
    width: 48%;
    order: 0;
    margin-top: 0;
  }
  .communication .benefits .benefits-img .image {
    width: 100%;
  }
  .communication .facts .facts-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .communication .facts .heading {
    order: 1;
    width: 30%;
    align-items: flex-start;
  }
  .communication .facts .heading h2,
  .communication .facts .heading p {
    text-align: left;
  }
  .communication .facts .facts-list {
    width: 66%;
    order: 0;
  }
  .communication .facts .item {
    margin-top: 0;
    padding: 2rem 1.2rem;
  }
  .communication .testimonial .testimonial-list {
    width: 95%;
    margin: auto;
  }
  .communication .testimonial .content {
    min-height: 470px;
  }
  .communication .testimonial .owl-nav {
    position: absolute;
    top: 38%;
    width: 100%;
  }
  .communication .testimonial .owl-nav .owl-prev {
    transform: translateX(-30px);
  }
  .communication .testimonial .owl-nav .owl-next {
    transform: translateX(30px);
  }
  .communication .footer {
    background-image: url(/_public/images/effective-communication/footer-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .communication .footer::before {
    bottom: 36%;
  }
  .communication .footer .contact-list {
    justify-content: space-between;
  }
  .communication .footer p {
    width: 70%;
  }
  .communication .footer .contact-item {
    width: 31%;
  }
  .communication .footer .contact-item:first-child {
    margin-right: 0px;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .communication .heading h2 {
    font-size: 32px;
  }
  .communication .buttons .btn-orange {
    font-size: 18px;
  }
  .communication .banner {
    background-image: url(/_public/images/effective-communication/banner-bg.png);
    background-repeat: no-repeat;
    background-size: 4% 34%;
    background-position: left bottom;
  }
  .communication .banner .bg-images .orange-img {
    width: 65%;
  }
  .communication .banner .bg-images .purple-img {
    width: 60%;
  }
  .communication .banner .menu-links {
    width: 54%;
  }
  .communication .banner .links-li {
    margin-right: 2rem;
  }
  .communication .banner .banner-container {
    padding-bottom: 4rem;
  }
  .communication .banner .banner-content {
    width: 41%;
  }
  .communication .banner .banner-info {
    width: 33%;
  }
  .communication .overview .overview-course {
    width: 33%;
    position: static;
    top: 0;
  }
  .communication .overview .overview-content {
    width: 62%;
  }
  .communication .overview .course-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .communication .overview .course-content .book {
    width: 102px;
    height: 102px;
  }
  .communication .overview .course-content .book img {
    width: 45px;
    height: 45px;
  }
  .communication .overview .course-content .buttons {
    margin-top: 2rem;
  }
  .communication .overview .course-content p {
    margin-top: 0.7rem;
  }
  .communication .method .container {
    width: 100%;
  }
  .communication .method .method-item {
    width: 25%;
    min-height: 264px;
  }
  .communication .method .method-item a {
    margin-top: 2rem;
  }
  .communication .method .method-item p {
    margin-top: 1rem;
  }
  .communication .method .method-item .method-content {
    bottom: -168px;
  }
  .communication .course .course-item {
    width: 23%;
  }
  .communication .course .course-item:nth-child(3n) {
    margin-right: 1.7rem;
  }
  .communication .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .communication .course .course-heading h3 {
    min-height: 63px;
  }
  .communication .skills .skill-item {
    width: 276px;
  }
  .communication .skills .skill-item p {
    font-size: 20px;
  }
  .communication .skills .skills-content {
    background-size: 90% 68%;
  }
  .communication .skills .skills-content span {
    transform: translate(94px, 35px);
    width: 90%;
  }
  .communication .outline .outline-content {
    max-height: 445px;
  }
  .communication .choose .choose-container {
    width: 100%;
  }
  .communication .choose .item {
    width: 23%;
  }
  .communication .choose .item h3 {
    min-height: 50px;
  }
  .communication .choose .item p {
    min-height: 132px;
  }
  .communication .benefits .benefits-img {
    width: 44%;
  }
  .communication .facts .heading {
    width: 26%;
  }
  .communication .facts .facts-list {
    width: 71%;
  }
  .communication .faqs .faq-list {
    width: 100%;
  }
  .communication .testimonial .content {
    min-height: 376px;
  }
  .communication .footer .contact-item:last-child {
    width: 30%;
  }
}
@media (min-width : 1500px) {
  .communication .banner {
    background-image: none;
  }
  .communication .banner #particle-container {
    display: none;
  }
  .communication .method .container {
    width: 1200px;
  }
}
@media (min-width : 1600px) {
  .communication .banner .bg-images .orange-img {
    width: 60%;
  }
  .communication .banner .bg-images .purple-img {
    width: 56%;
  }
}
