@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: #070606;
  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: #FFF;
  margin-left: 0;
  border: 1px solid #070606;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
/* 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: #FFF;
}
::-webkit-scrollbar-thumb {
  background: #FFAA00;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFAA00;
}
* {
  box-sizing: border-box;
  font-family: Roboto;
}
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-size: 22px;
  font-weight: 600;
  font-style: normal;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #191919;
  list-style: none;
  font-size: 14px;
}
.container {
  width: 100%;
}
.flex-container {
  display: flex;
  margin: auto;
}
.public-speaking .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.public-speaking .buttons .btn-orange,
.public-speaking .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #FFAA00;
  color: #FFF;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  min-width: 150px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-speaking .buttons .btn-orange::before,
.public-speaking .buttons .btn-white::before {
  content: "";
  position: absolute;
  transition: top 0.5s ease-in 0.5s, width 0.5s ease-out, height 0.5s ease-out;
  -webkit-transition: top 0.5s ease-in 0.5s, width 0.5s ease-out, height 0.5s ease-out;
  left: 50%;
  top: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #022780;
  z-index: -1;
}
.public-speaking .buttons .btn-orange:hover,
.public-speaking .buttons .btn-white:hover {
  box-shadow: 0 0 3px #FFF;
}
.public-speaking .buttons .btn-orange:hover::before,
.public-speaking .buttons .btn-white:hover::before {
  transition: top 0.5s ease-in, width 0.5s ease-out 0.5s, height 0.5s ease-out 0.5s;
  -webkit-transition: top 0.5s ease-in, width 0.5s ease-out 0.5s, height 0.5s ease-out 0.5s;
  top: 50%;
  width: 400px;
  height: 400px;
}
.public-speaking .buttons .btn-orange img,
.public-speaking .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.public-speaking .buttons .btn-white {
  background-color: #FFF;
  color: #070606;
}
.public-speaking .buttons .btn-white::before {
  background-color: #e8e8e8;
}
.public-speaking .heading {
  display: flex;
  margin-bottom: 1.5rem;
  width: 100%;
}
.public-speaking .heading h2 {
  position: relative;
  z-index: 1;
}
.public-speaking .heading h2::before {
  content: '';
  border-top: 5px solid transparent;
  border-left: 115px solid #022780;
  border-bottom: 1px solid transparent;
  position: absolute;
  left: 0px;
  bottom: -8px;
  animation: blink 5s linear infinite;
}
.public-speaking .center-heading {
  justify-content: center;
}
.public-speaking .center-heading h2 {
  text-align: center;
}
.public-speaking .white-heading h2 {
  color: #FFF;
}
.public-speaking .white-heading h2::before {
  border-left: 115px solid #FFF;
}
@keyframes blink {
  0% {
    opacity: 1;
    left: 0;
  }
  30% {
    opacity: 0.7;
  }
  50% {
    opacity: 0;
    left: 75px;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes rotatecircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes vertical {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@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);
  }
}
.public-speaking .banner {
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.public-speaking .banner #particle-container {
  opacity: 0.6;
}
.public-speaking .banner .particle {
  display: none;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}
.public-speaking .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: #022780;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .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;
}
.public-speaking .banner .logo-container {
  display: flex;
  padding: 1rem 1.5rem;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.public-speaking .banner .logo-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.public-speaking .banner .tka-logo {
  display: flex;
  max-width: 200px;
}
.public-speaking .banner .tka-logo img {
  width: 100%;
}
.public-speaking .banner .menu {
  display: flex;
  z-index: 1;
  margin-left: auto;
}
.public-speaking .banner .menu img {
  width: 22px;
  height: 23px;
}
.public-speaking .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.098);
}
.public-speaking .banner .menu-links .menu-toggle {
  color: #070606;
  align-items: center;
}
.public-speaking .banner .menu-links .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.public-speaking .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #070606;
  color: #070606;
}
.public-speaking .banner ul .links-li:first-child {
  padding-top: 0;
}
.public-speaking .banner ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.public-speaking .banner ul .links-li:last-child {
  display: none;
}
.public-speaking .banner .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.public-speaking .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.public-speaking .banner .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
}
.public-speaking .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 1s all;
}
.public-speaking .banner .sticky-down {
  top: -100px;
}
.public-speaking .banner .banner-container {
  display: flex;
  padding: 3rem 1.5rem;
  padding-top: 2rem!important;
}
.public-speaking .banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.public-speaking .banner .banner-container .banner-content h1 {
  display: flex;
  font-size: 26px;
  width: 100%;
}
.public-speaking .banner .banner-container .banner-content h1 img {
  max-width: 35px;
  height: 36px;
  margin-right: 0.8rem;
}
.public-speaking .banner .banner-container .banner-content h3 {
  color: #FFAA00;
  margin: 0.6rem 0;
}
.public-speaking .banner .word-change {
  display: none;
}
.public-speaking .overview {
  padding: 3rem 1.5rem;
}
.public-speaking .overview .overview-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .overview .overview-content {
  display: flex;
  flex-direction: column;
}
.public-speaking .overview .overview-content p {
  text-align: center;
}
.public-speaking .overview .overview-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.public-speaking .overview .course-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-image: url(/_public/images/public-speaking/course-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  margin-top: 2rem;
  width: 272px;
  align-self: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.public-speaking .overview .course-content h3,
.public-speaking .overview .course-content p {
  color: #FFF;
}
.public-speaking .overview .course-content .course-heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 1.2rem;
}
.public-speaking .overview .course-content .course-heading span {
  display: flex;
  width: 65px;
  height: 65px;
  background-color: #FFF;
  border-radius: 50%;
  padding: 0.8rem;
}
.public-speaking .overview .course-content .course-heading span img {
  width: 100%;
  height: 100%;
}
.public-speaking .overview .course-content .course-heading h3 {
  width: calc(100% - 78px);
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.public-speaking .overview .course-content .course-heading h3::before {
  content: '';
  position: absolute;
  width: 95px;
  height: 10px;
  background-image: url(/_public/images/public-speaking/course-lines.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  bottom: -15px;
  z-index: -1;
}
.public-speaking .overview .course-content p:nth-last-child(2) {
  margin-top: 0.3rem;
}
.public-speaking .method {
  padding: 3rem 1.5rem;
  padding-bottom: 1rem!important;
  padding-top: 0!important;
}
.public-speaking .method .method-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .method .method-list {
  display: flex;
  flex-direction: column;
}
.public-speaking .method p,
.public-speaking .method h3 {
  text-align: center;
}
.public-speaking .method .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 272px;
  align-self: center;
  padding: 1.5rem;
  border: 1px solid #022780;
  border-radius: 15px;
  margin-top: 2rem;
  position: relative;
}
.public-speaking .method .item img {
  width: 150px;
  height: 85px;
}
.public-speaking .method .item h3 {
  margin: 1rem 0;
  font-size: 17px;
  width: 100%;
}
.public-speaking .method .item:before {
  content: '';
  border-top: 5px solid transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  transition: 0.5s all;
  z-index: -1;
}
.public-speaking .method .item:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.public-speaking .method .item:hover::before {
  border-top: 3px solid #022780;
  transition: 0.5s all;
}
.public-speaking .outline {
  padding: 3rem 1.5rem;
}
.public-speaking .outline .outline-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .outline .outline-inner {
  display: flex;
  flex-direction: column;
}
.public-speaking .outline .outline-content {
  background-color: #F5F5F5;
  padding: 1rem;
}
.public-speaking .outline .outline-content .buttons {
  justify-content: flex-end;
}
.public-speaking .outline .outline-content .buttons .btn-white {
  border: 1px solid #070606;
  border-radius: 5px;
}
.public-speaking .outline .outline-content p {
  font-weight: 400;
  line-height: 1.4;
}
.public-speaking .outline .outline-detail {
  display: flex;
  flex-direction: column;
  max-height: 374px;
  overflow: hidden;
  align-items: flex-start;
  padding: 0 0.5rem;
}
.public-speaking .outline .toggle {
  max-height: 100% !important;
  transition: all 0.3s ease-in-out;
}
.public-speaking .outline h3 {
  background-color: #FFF;
  box-shadow: 0 0 4px #cec6c6;
  padding: 0.5rem 1rem;
  margin-top: 1.5rem;
  border-radius: 5px;
  font-size: 15px;
  width: 100%;
}
.public-speaking .outline li {
  position: relative;
  padding-left: 1.2rem;
  margin-top: 0.7rem;
  z-index: 1;
}
.public-speaking .outline li::before {
  content: '';
  background-color: #707070;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 5px;
  z-index: -1;
}
.public-speaking .outline ul {
  width: 100%;
}
.public-speaking .outline .form {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0;
}
.public-speaking .outline .form-input {
  display: flex;
  flex-direction: column;
}
.public-speaking .outline .input-container {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ACACAC;
}
.public-speaking .outline .input-container span {
  display: flex;
  width: 20px;
  height: 20px;
}
.public-speaking .outline .input-container span img {
  width: 100%;
  height: 100%;
}
.public-speaking .outline .input-container span .gray-img {
  display: flex;
}
.public-speaking .outline .input-container span .red-img {
  display: none;
}
.public-speaking .outline .input-container input,
.public-speaking .outline .input-container textarea {
  width: 100%;
  border: none;
  outline: 0;
  font-weight: 500;
  background-color: transparent;
  padding: 0;
}
.public-speaking .outline textarea {
  height: 44px;
  resize: none;
  overflow: auto;
}
.public-speaking .outline ::-webkit-input-placeholder {
  /* Edge */
  color: #ACACAC;
}
.public-speaking .outline :-ms-input-placeholder {
  /* Edge */
  color: #ACACAC;
}
.public-speaking .outline .input-error {
  border-bottom: 1px solid #f00;
}
.public-speaking .outline .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #f00;
}
.public-speaking .outline .input-error :-ms-input-placeholder {
  /* Edge */
  color: #f00;
}
.public-speaking .outline .input-error span .gray-img {
  display: none;
}
.public-speaking .outline .input-error span .red-img {
  display: flex;
}
.public-speaking .outline .form-consent {
  display: flex;
  font-size: 11px;
  margin-bottom: 0.4rem;
  width: 100%;
}
.public-speaking .outline .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.public-speaking .outline .form-consent label {
  display: flex;
  align-self: center;
  margin-left: 0.3rem;
  font-size: 11px;
  width: 95%;
}
.public-speaking .outline .form-consent p {
  line-height: 1.4;
  font-size: 11px;
}
.public-speaking .outline .form-consent a {
  font-weight: bold;
  color: #022780;
}
.public-speaking .outline .consent-error,
.public-speaking .outline .consent-error-other {
  margin-bottom: 0.5rem;
}
.public-speaking .outline .consent-error p,
.public-speaking .outline .consent-error-other p {
  color: #f00;
  line-height: 1.4;
  font-size: 11px;
}
.public-speaking .fact {
  padding: 3rem 1.5rem;
  background-color: #022780;
}
.public-speaking .fact .fact-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .fact .fact-container p {
  color: #FFF;
  text-align: center;
}
.public-speaking .fact .fact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 272px;
  align-self: center;
  height: 100%;
}
.public-speaking .fact .fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.3rem;
  width: 39%;
}
.public-speaking .fact .fact-item p {
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.3rem;
}
.public-speaking .fact .fact-img {
  display: flex;
  width: 68px;
  height: 58px;
  background-color: #284DA6;
  border: 1px solid #FFF;
  padding: 0.6rem;
  margin-bottom: 0.8rem;
}
.public-speaking .fact .fact-img img {
  width: 100%;
  height: 100%;
}
.public-speaking .fact .fact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.public-speaking .fact .fact-info .fact-count {
  display: flex;
}
.public-speaking .fact .fact-info .fact-count h3,
.public-speaking .fact .fact-info .fact-count span {
  font-size: 28px;
  font-weight: 600;
  color: #FFF;
  text-align: center;
}
.public-speaking .course {
  padding: 3rem 1.5rem;
}
.public-speaking .course .course-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .course .course-container .uk {
  text-align: center;
}
.public-speaking .course .course-container .uk strong {
  color: #022780;
}
.public-speaking .course .course-list {
  display: flex;
  flex-direction: column;
}
.public-speaking .course .course-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #022780;
  padding: 1rem;
  margin-bottom: 1.7rem;
  width: 272px;
  align-self: center;
}
.public-speaking .course .course-item:last-child {
  margin-bottom: 0;
}
.public-speaking .course .course-item:hover {
  background-color: #022780;
  transition: 1s ease-out;
}
.public-speaking .course .course-item:hover h3,
.public-speaking .course .course-item:hover p {
  color: #FFF;
}
.public-speaking .course .course-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.6rem;
}
.public-speaking .course .course-heading span {
  display: flex;
  width: 52px;
  height: 46px;
  background-color: #FFF;
  border: 1px solid #022780;
  padding: 0.5rem;
  border-radius: 5px;
}
.public-speaking .course .course-heading span img {
  width: 100%;
  height: 100%;
}
.public-speaking .course .course-heading h3 {
  color: #001440;
  font-size: 16px;
  width: calc(100% - 60px);
}
.public-speaking .course .course-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.public-speaking .course .course-info p {
  color: #B4B4B4;
  margin-top: 4px;
}
.public-speaking .skills {
  padding: 3rem 1.5rem;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.public-speaking .skills .skills-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.public-speaking .skills .skills-content {
  display: flex;
  flex-direction: column;
  position: relative;
  order: 2;
  margin-top: 3rem;
  height: 100%;
}
.public-speaking .skills .skills-content span {
  width: 100%;
  height: 100%;
}
.public-speaking .skills .skills-content span img {
  width: 100%;
  height: 100%;
}
.public-speaking .skills .count {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFF;
  border: 4px solid #f2f2f2;
  padding: 1.5rem 1rem;
  width: 178px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.public-speaking .skills .count .facts-count {
  display: flex;
}
.public-speaking .skills .count .facts-count h3,
.public-speaking .skills .count .facts-count span {
  font-size: 30px;
  color: #022780;
  font-weight: 500;
}
.public-speaking .skills .count p {
  font-weight: 600;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.public-speaking .skills .progress-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 1;
}
.public-speaking .skills .text {
  margin-bottom: 1rem;
}
.public-speaking .skills .pro-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.public-speaking .skills .pro-item h3 {
  font-size: 15px;
}
.public-speaking .skills .pro-item .white-bar {
  display: flex;
  width: 100%;
  height: 3px;
  background-color: #C5C5C5;
  margin-top: 1rem;
}
.public-speaking .skills .pro-item .white-bar .bar {
  width: 0%;
  background-color: #022780;
  transition: 2s ease-in;
  position: relative;
}
.public-speaking .skills .pro-item .white-bar .bar p {
  width: 46px;
  height: 30px;
  color: #FFF;
  background-color: #022780;
  position: absolute;
  right: 0px;
  top: -14px;
  text-align: center;
  font-weight: 600;
  padding: 3px;
}
.public-speaking .packages {
  padding: 3rem 1.5rem;
}
.public-speaking .packages .packages-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .packages .packages-container .heading {
  margin-bottom: 1rem;
}
.public-speaking .packages .packages-list {
  display: flex;
  flex-direction: column;
}
.public-speaking .packages .packages-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 0 7px #d0d0d0;
  padding: 1.5rem;
  margin-top: 1.5rem;
  width: 272px;
  align-self: center;
  position: relative;
}
.public-speaking .packages .packages-content::before {
  content: '';
  background-color: #022780;
  width: 100%;
  height: 32%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 1s ease-out;
}
.public-speaking .packages .packages-content:hover::before {
  height: 100%;
}
.public-speaking .packages .packages-content:hover ul li {
  color: #FFF;
}
.public-speaking .packages .packages-content h3 {
  display: flex;
  align-items: center;
  color: #FFF;
  width: 70%;
}
.public-speaking .packages .packages-content h4 {
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 0.7rem 1rem;
  margin: 1rem 0;
}
.public-speaking .packages .packages-content ul {
  padding-left: 17px;
  width: 100%;
}
.public-speaking .packages .packages-content ul li {
  margin-bottom: 0.5rem;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.public-speaking .packages .packages-content ul li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  left: -20px;
  top: 6px;
  background-color: #E1E2E4;
  border-radius: 2px;
  transform: rotate(45deg);
  z-index: -1;
}
.public-speaking .packages .packages-content ul li:last-child {
  margin-bottom: 0;
}
.public-speaking .element {
  padding: 3rem 1.5rem;
  background-color: #F5F5F5;
}
.public-speaking .element .element-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .element .element-content {
  display: flex;
  flex-direction: column;
}
.public-speaking .element .element-content p {
  text-align: center;
}
.public-speaking .element .element-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.public-speaking .element .element-img {
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}
.public-speaking .element .element-img img {
  width: 100%;
  height: 100%;
}
.public-speaking .choose {
  padding: 3rem 1.5rem;
}
.public-speaking .choose .choose-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .choose .choose-container h3,
.public-speaking .choose .choose-container p {
  text-align: center;
}
.public-speaking .choose .choose-list {
  display: flex;
  flex-direction: column;
}
.public-speaking .choose .choose-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid #022780;
  width: 272px;
  align-self: center;
  background-color: #FFF;
}
.public-speaking .choose .choose-item h3 {
  width: 100%;
  font-size: 16px;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}
.public-speaking .choose .choose-item h3::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  border-top: 1px dashed #022780;
  bottom: -15px;
  left: 0;
  z-index: -1;
  right: 0;
  margin: auto;
}
.public-speaking .choose span {
  display: flex;
  width: 60px;
  height: 60px;
  border: 1px solid #022780;
  padding: 0.7rem;
  transform: rotate(45deg);
}
.public-speaking .choose span img {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg) !important;
}
.public-speaking .testimonial {
  padding: 3rem 1.5rem;
  background-color: #022780;
}
.public-speaking .testimonial .testimonial-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .testimonial .testimonial-list {
  display: flex;
  flex-direction: column;
}
.public-speaking .testimonial .review {
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: auto;
}
.public-speaking .testimonial .review:nth-child(old) {
  margin-right: auto;
}
.public-speaking .testimonial .review-content {
  background-color: #FFF;
  padding: 1.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}
.public-speaking .testimonial .review-content::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 33px solid #FFF;
  position: absolute;
  bottom: -25px;
  left: 18px;
}
.public-speaking .testimonial .client {
  display: flex;
  flex-direction: column;
  color: #FFF;
}
.public-speaking .testimonial .client h3 {
  font-size: 18px;
}
.public-speaking .testimonial .client h4 {
  font-size: 13px;
  font-weight: 500;
}
.public-speaking .testimonial .owl-nav {
  display: flex;
  width: 90px;
  justify-content: space-between;
  margin-top: 1rem;
}
.public-speaking .testimonial .owl-nav .owl-prev,
.public-speaking .testimonial .owl-nav .owl-next {
  display: flex;
  width: 33px;
  height: 33px;
  background-color: #284DA6;
  background-image: url(/_public/images/public-speaking/arrow.svg);
  background-repeat: no-repeat;
  background-size: 65% 65%;
  background-position: center;
  opacity: 0.7;
}
.public-speaking .testimonial .owl-nav .owl-next {
  transform: rotate(180deg);
}
.public-speaking .testimonial .owl-nav .btn-active {
  opacity: 1;
}
.public-speaking .faq {
  padding: 3rem 1.5rem;
}
.public-speaking .faq .faq-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .faq .faq-list {
  display: flex;
  flex-direction: column;
}
.public-speaking .faq .faq-item {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border: solid #022780;
  border-width: 1px 4px;
  border-radius: 8px;
  margin-bottom: 1.3rem;
  cursor: pointer;
}
.public-speaking .faq .faq-item:last-child {
  margin-bottom: 0;
}
.public-speaking .faq .faq-item.active {
  box-shadow: 0 6px 5px #e0e0e0;
  border-width: 0px 4px;
}
.public-speaking .faq .faq-item.active .ques {
  background-color: #022780;
}
.public-speaking .faq .faq-item.active .ques h3 {
  color: #FFF;
}
.public-speaking .faq .faq-item.active .ques span .up-arrow {
  display: flex;
}
.public-speaking .faq .faq-item.active .ques span .right-arrow {
  display: none;
}
.public-speaking .faq .ques {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  border-radius: 5px;
}
.public-speaking .faq .ques h3 {
  width: calc(100% - 40px);
  font-size: 14px;
  display: flex;
  align-self: center;
}
.public-speaking .faq .ques span {
  display: flex;
  width: 22px;
  height: 22px;
}
.public-speaking .faq .ques span img {
  width: 100%;
  height: 100%;
}
.public-speaking .faq .ques span .up-arrow {
  display: none;
}
.public-speaking .faq .ques span .right-arrow {
  display: flex;
}
.public-speaking .faq .ans {
  display: none;
  padding: 0.8rem;
}
.public-speaking .faq .ans p {
  font-size: 13px;
}
.public-speaking .faq .ans ul {
  padding-left: 1rem;
}
.public-speaking .faq .ans ul li {
  font-size: 13px;
  margin-top: 2px;
  list-style: disc;
}
.public-speaking .footer {
  padding: 3rem 1.5rem;
  background-color: #022780;
}
.public-speaking .footer .footer-container {
  display: flex;
  flex-direction: column;
}
.public-speaking .footer .contact {
  display: flex;
  flex-direction: column;
}
.public-speaking .footer .contact-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.public-speaking .footer .contact-item:last-child {
  margin-bottom: 0;
}
.public-speaking .footer .contact-item span {
  display: flex;
  width: 42px;
  height: 42px;
  border-radius: 3px;
  background-color: #FFF;
  padding: 0.6rem;
}
.public-speaking .footer .contact-item span img {
  width: 100%;
  height: 100%;
}
.public-speaking .footer .contact-info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 55px);
}
.public-speaking .footer .contact-info h3,
.public-speaking .footer .contact-info a {
  color: #FFF;
}
.public-speaking .footer .contact-info h3 {
  font-size: 14px;
  margin-bottom: 3px;
}
.public-speaking .footer .contact-info a {
  font-size: 13px;
}
.public-speaking .footer .contact-info img {
  width: 100px;
  height: 20px;
}
.public-speaking .footer .query {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border: 1px solid #FFF;
  padding: 1rem;
  align-items: flex-start;
}
.public-speaking .footer .query p {
  color: #FFF;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .public-speaking .testimonial .owl-nav {
    width: 75px;
  }
  .public-speaking .testimonial .owl-nav .owl-prev,
  .public-speaking .testimonial .owl-nav .owl-next {
    width: 26px;
    height: 33px;
    background-size: 50% 50%;
  }
}
@media (min-width : 768px) {
  .public-speaking .buttons .btn-orange,
  .public-speaking .buttons .btn-white {
    font-size: 16px;
  }
  .public-speaking .banner .logo-container {
    padding: 1rem 2rem;
  }
  .public-speaking .banner .menu.active + .menu-links {
    width: 50%;
  }
  .public-speaking .banner .banner-container {
    padding: 3rem 2rem;
  }
  .public-speaking .overview {
    padding: 3rem 2rem;
    background-image: url(/_public/images/public-speaking/overview-bg.png);
    background-repeat: no-repeat;
    background-size: 70% 100%;
    background-position: left top;
  }
  .public-speaking .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
    background-color: #FFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
  }
  .public-speaking .overview .overview-content {
    width: 55%;
    align-items: flex-start;
  }
  .public-speaking .overview .overview-content .heading {
    justify-content: flex-start;
  }
  .public-speaking .overview .overview-content .heading h2 {
    text-align: left;
  }
  .public-speaking .overview .overview-content p {
    text-align: left;
  }
  .public-speaking .overview .course-content {
    width: 40%;
    margin-top: 0;
    align-self: flex-start;
    position: sticky;
    top: 70px;
  }
  .public-speaking .method {
    padding: 3rem 2rem;
  }
  .public-speaking .method .method-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .public-speaking .method .item {
    width: 45%;
  }
  .public-speaking .outline {
    padding: 3rem 2rem;
  }
  .public-speaking .outline .outline-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .public-speaking .outline .outline-content {
    width: 50%;
    border-top: 7px solid #022780;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  .public-speaking .outline .form {
    width: 50%;
    border-top: 7px solid #022780;
    margin-top: 0;
    position: sticky;
    top: 65px;
  }
  .public-speaking .fact {
    padding: 3rem 2rem;
  }
  .public-speaking .fact .fact-container {
    position: relative;
    z-index: 1;
  }
  .public-speaking .fact .fact-container::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url(/_public/images/public-speaking/lines.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    right: 30px;
    top: -15px;
    z-index: -1;
    animation: rotatecircle 4s linear infinite;
  }
  .public-speaking .fact .fact-list {
    width: 100%;
    justify-content: space-between;
  }
  .public-speaking .fact .info {
    width: 80%;
    margin: auto;
  }
  .public-speaking .fact .fact-item {
    width: 24%;
  }
  .public-speaking .course {
    padding: 3rem 2rem;
  }
  .public-speaking .course .course-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .public-speaking .course .course-item {
    width: 45%;
    margin-right: 1.7rem;
  }
  .public-speaking .course .course-item:nth-child(even) {
    margin-right: 0;
  }
  .public-speaking .course .course-item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .public-speaking .course .course-heading h3 {
    min-height: 42px;
  }
  .public-speaking .skills {
    padding: 3rem 2rem;
  }
  .public-speaking .skills .skills-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .public-speaking .skills .skills-content {
    width: 48%;
    order: 1;
    margin-top: 0;
  }
  .public-speaking .skills .progress-content {
    width: 48%;
    order: 2;
  }
  .public-speaking .packages {
    padding: 3rem 2rem;
  }
  .public-speaking .packages .packages-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .public-speaking .packages .packages-content {
    width: 44%;
  }
  .public-speaking .packages .packages-content h3 {
    width: 100%;
    min-height: 50px;
  }
  .public-speaking .packages .packages-content ul {
    min-height: 135px;
  }
  .public-speaking .element {
    padding: 3rem 2rem;
  }
  .public-speaking .element .element-img {
    width: 65%;
    align-self: center;
  }
  .public-speaking .choose {
    padding: 3rem 2rem;
  }
  .public-speaking .choose .choose-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .public-speaking .choose .choose-item {
    width: 48%;
  }
  .public-speaking .testimonial {
    padding: 3rem 2rem;
  }
  .public-speaking .testimonial .heading {
    border-bottom: 1px solid #FFF;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    width: 97%;
    align-self: center;
  }
  .public-speaking .testimonial .review-content {
    padding: 2rem;
    padding-left: 4rem;
    min-height: 328px;
  }
  .public-speaking .testimonial .review-content::after {
    content: '';
    background-image: url(/_public/images/public-speaking/quote.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 50px;
    height: 43px;
    position: absolute;
    top: 35px;
    left: 0px;
    z-index: 1;
  }
  .public-speaking .testimonial .owl-nav {
    position: absolute;
    top: -94px;
    right: 13px;
    margin-top: 0;
  }
  .public-speaking .faq {
    padding: 3rem 2rem;
  }
  .public-speaking .faq .faq-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .public-speaking .faq .faq-item {
    width: 48%;
  }
  .public-speaking .faq .faq-item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .public-speaking .footer {
    padding: 3rem 2rem;
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
  }
  .public-speaking .footer .footer-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .public-speaking .footer .contact {
    width: 40%;
    position: relative;
    z-index: 1;
  }
  .public-speaking .footer .contact::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url(/_public/images/public-speaking/lines.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    right: 0;
    top: 35px;
    z-index: -1;
    animation: rotatecircle 4s linear infinite;
  }
  .public-speaking .footer .query {
    width: 55%;
    margin-top: 0;
    padding: 2rem;
  }
}
@media (min-width: 768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .public-speaking .testimonial .review-content {
    min-height: 356px ;
  }
}
@media (min-width : 1024px) {
  .public-speaking .heading h2 {
    font-size: 28px;
  }
  .public-speaking .banner {
    background-image: url(/_public/images/public-speaking/banner-bg.png);
    background-repeat: no-repeat;
    background-size: 61% 100% ;
    background-position: right;
  }
  .public-speaking .banner .particle {
    display: flex;
  }
  .public-speaking .banner .logo-container {
    box-shadow: none;
    background-color: transparent;
  }
  .public-speaking .banner .menu {
    display: none;
  }
  .public-speaking .banner .menu-links {
    width: 78%;
    display: flex;
    background-color: transparent;
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
  }
  .public-speaking .banner .menu-toggle {
    display: none;
  }
  .public-speaking .banner ul {
    display: flex;
    align-items: center;
  }
  .public-speaking .banner ul .links-li {
    display: flex;
    justify-content: center;
    margin-right: 0.9rem;
    padding: 0;
    border-bottom: none;
    font-weight: 600;
    color: #FFF;
    position: relative;
    z-index: 1;
  }
  .public-speaking .banner ul .links-li::before,
  .public-speaking .banner ul .links-li::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: #FFAA00;
    top: 0;
    transition: 0.7s ease;
  }
  .public-speaking .banner ul .links-li::before {
    left: 50%;
  }
  .public-speaking .banner ul .links-li::after {
    right: 50%;
  }
  .public-speaking .banner ul .links-li:hover {
    transition: 0.5s ease;
    color: #FFAA00 !important;
  }
  .public-speaking .banner ul .links-li:hover::before,
  .public-speaking .banner ul .links-li:hover::after {
    width: 2px;
    height: 100%;
  }
  .public-speaking .banner ul .links-li:hover::before {
    left: -5px;
  }
  .public-speaking .banner ul .links-li:hover::after {
    right: -5px;
  }
  .public-speaking .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .public-speaking .banner ul .links-li:last-child::after,
  .public-speaking .banner ul .links-li:last-child::before {
    content: none;
  }
  .public-speaking .banner ul .buttons .btn-orange,
  .public-speaking .banner ul .buttons .btn-white {
    height: 42px;
  }
  .public-speaking .banner ul .buttons .btn-orange:hover {
    color: #FFF;
  }
  .public-speaking .banner ul .buttons .btn-white {
    display: flex;
    background-color: #FFF;
    min-width: 42px;
    padding: 0.6rem;
    border-radius: 3px;
    margin-right: 1rem;
  }
  .public-speaking .banner ul .buttons .btn-white img {
    width: 100%;
    height: 100%;
    margin-right: 0;
  }
  .public-speaking .banner .sticky {
    background-color: #FFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  .public-speaking .banner .sticky .menu-links .links-li {
    color: #070606;
  }
  .public-speaking .banner .sticky .buttons .btn-white {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  .public-speaking .banner .banner-container {
    align-items: center;
    justify-content: space-between;
  }
  .public-speaking .banner .banner-container .banner-content {
    width: 46%;
  }
  .public-speaking .banner .banner-container .banner-content h1 {
    font-size: 28px;
    padding: 1rem;
    padding-left: 0;
    position: relative;
    z-index: 1;
  }
  .public-speaking .banner .banner-container .banner-content h1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    left: 0;
    top: 0;
    z-index: -1;
  }
  .public-speaking .banner .banner-container .banner-content p {
    width: 80%;
  }
  .public-speaking .banner .word-change {
    display: flex;
    position: relative;
    width: 50%;
  }
  .public-speaking .banner .word-change h2 {
    animation: vertical 12.5s linear infinite 0s;
    display: flex;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 112px;
    color: #ffffff;
    width: 100%;
    right: 0;
    justify-content: flex-end;
    text-align: center;
    font-size: 33px;
  }
  .public-speaking .banner .word-change h2:nth-child(2) {
    animation-delay: 2.5s;
  }
  .public-speaking .banner .word-change h2:nth-child(3) {
    animation-delay: 5s;
  }
  .public-speaking .banner .word-change h2:nth-child(4) {
    animation-delay: 7.5s;
  }
  .public-speaking .banner .word-change h2:nth-child(5) {
    animation-delay: 10s;
  }
  .public-speaking .overview {
    background-size: 55% 100%;
  }
  .public-speaking .overview .overview-content {
    width: 60%;
  }
  .public-speaking .overview .course-content {
    width: 33%;
  }
  .public-speaking .method .para {
    width: 75%;
    margin: auto;
  }
  .public-speaking .method .method-list {
    justify-content: space-between;
  }
  .public-speaking .method .item {
    width: 24%;
  }
  .public-speaking .method .item h3 {
    min-height: 46px;
  }
  .public-speaking .method .item p {
    min-height: 132px;
  }
  .public-speaking .outline .outline-content {
    padding: 2rem;
  }
  .public-speaking .outline .outline-detail {
    max-height: 193px;
  }
  .public-speaking .outline .form {
    padding: 2rem;
    top: 75px;
  }
  .public-speaking .outline .form-input {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .public-speaking .outline .input-container {
    width: 45%;
  }
  .public-speaking .outline .input-container:last-child {
    width: 100%;
  }
  .public-speaking .fact .fact-item {
    flex-direction: row;
    justify-content: space-between;
  }
  .public-speaking .fact .fact-item span {
    margin-bottom: 0;
  }
  .public-speaking .fact .fact-info {
    align-items: flex-start;
    width: calc(100% - 80px);
  }
  .public-speaking .fact .fact-info p,
  .public-speaking .fact .fact-info h3,
  .public-speaking .fact .fact-info span {
    text-align: left;
  }
  .public-speaking .course .course-item {
    width: 31%;
  }
  .public-speaking .course .course-item:nth-child(2),
  .public-speaking .course .course-item:nth-child(4),
  .public-speaking .course .course-item:nth-child(8),
  .public-speaking .course .course-item:nth-child(10) {
    margin-right: 1.7rem;
  }
  .public-speaking .course .course-item:nth-child(3),
  .public-speaking .course .course-item:nth-child(9) {
    margin-right: 0;
  }
  .public-speaking .course .course-item:nth-last-child(3) {
    margin-bottom: 0;
  }
  .public-speaking .packages .packages-list {
    justify-content: space-between;
  }
  .public-speaking .packages .packages-content {
    width: 30%;
  }
  .public-speaking .packages .packages-content ul {
    min-height: 135px;
  }
  .public-speaking .element .element-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .public-speaking .element .element-content {
    width: 48%;
    align-items: flex-start;
  }
  .public-speaking .element .element-content .heading {
    justify-content: flex-start;
  }
  .public-speaking .element .element-content .heading h2 {
    text-align: left;
  }
  .public-speaking .element .element-content p {
    text-align: left;
  }
  .public-speaking .element .element-img {
    width: 45%;
    margin-top: 0;
  }
  .public-speaking .choose {
    background-image: url(/_public/images/public-speaking/choose-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .public-speaking .choose .choose-info {
    width: 80%;
    margin: auto;
  }
  .public-speaking .choose .choose-item {
    width: 24%;
  }
  .public-speaking .choose .choose-item h3 {
    min-height: 42px;
  }
  .public-speaking .choose .choose-item p {
    min-height: 110px;
  }
  .public-speaking .testimonial .heading {
    width: 95%;
  }
  .public-speaking .testimonial .owl-nav {
    right: 23px;
  }
  .public-speaking .testimonial .review {
    width: 90%;
  }
  .public-speaking .testimonial .review-content {
    min-height: 263px;
  }
}
@media (min-width: 768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .public-speaking .outline .outline-detail {
    max-height: 186px;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  .public-speaking .heading h2 {
    font-size: 32px;
  }
  .public-speaking .buttons .btn-orange,
  .public-speaking .buttons .btn-white {
    font-size: 18px;
  }
  .public-speaking .banner {
    background-size: 58% 100%;
  }
  .public-speaking .banner .logo-container {
    padding: 1rem 0;
  }
  .public-speaking .banner ul .links-li {
    margin-right: 1.5rem;
  }
  .public-speaking .banner .word-change h2 {
    font-size: 37px;
  }
  .public-speaking .banner .banner-container {
    padding: 4rem 0rem;
  }
  .public-speaking .banner .banner-container .banner-content {
    width: 48%;
  }
  .public-speaking .banner .banner-container .banner-content h1 {
    font-size: 36px;
  }
  .public-speaking .banner .banner-container .banner-content h1 img {
    max-width: 45px;
    height: 50px;
  }
  .public-speaking .overview {
    padding: 4rem 0rem;
  }
  .public-speaking .overview .overview-container {
    padding: 3rem;
  }
  .public-speaking .overview .course-content {
    width: 28%;
    position: relative;
  }
  .public-speaking .method {
    padding: 4rem 0rem;
  }
  .public-speaking .method .item h3 {
    min-height: auto;
  }
  .public-speaking .method .item p {
    min-height: 110px;
  }
  .public-speaking .outline {
    padding: 4rem 0rem;
  }
  .public-speaking .fact {
    padding: 4rem 0rem;
  }
  .public-speaking .course {
    padding: 4rem 0rem;
  }
  .public-speaking .course .course-item {
    width: 23%;
  }
  .public-speaking .course .course-item:nth-child(4),
  .public-speaking .course .course-item:nth-child(8) {
    margin-right: 0;
  }
  .public-speaking .course .course-item:nth-child(3),
  .public-speaking .course .course-item:nth-child(6),
  .public-speaking .course .course-item:nth-child(9) {
    margin-right: 1.7rem;
  }
  .public-speaking .course .course-item:nth-last-child(4) {
    margin-bottom: 0;
  }
  .public-speaking .course .course-heading h3 {
    min-height: 63px;
  }
  .public-speaking .skills {
    padding: 4rem 0rem;
  }
  .public-speaking .packages {
    padding: 4rem 0rem;
  }
  .public-speaking .element {
    padding: 4rem 0rem;
  }
  .public-speaking .choose {
    padding: 4rem 0rem;
  }
  .public-speaking .choose .choose-item span {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }
  .public-speaking .choose .choose-item h3 {
    margin: 2rem 0;
    min-height: auto;
  }
  .public-speaking .choose .choose-item p {
    min-height: 88px;
  }
  .public-speaking .testimonial {
    padding: 4rem 0rem;
  }
  .public-speaking .testimonial .review-content {
    min-height: 218px;
  }
  .public-speaking .faq {
    padding: 4rem 0rem;
  }
  .public-speaking .footer {
    padding: 4rem 0rem;
  }
}
@media (min-width : 1600px) {
  .public-speaking .banner {
    background-size: 55% auto;
    background-position: right top;
  }
  .public-speaking .overview {
    background-image: none;
  }
}
@media (min-width : 1900px) {
  .public-speaking .banner .word-change h2 {
    top: 20px;
  }
}
