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

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #050506;
  font-weight: 700;
  font-size: 11px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  border: 1px solid #050506;
  background-color: transparent;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #3C207B;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #171717;
  width: 100%;
  font-weight: 500;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h6 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  line-height: 1.6;
  color: #171717;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
button {
  border: 0;
  cursor: pointer;
}
.arrow li {
  position: relative;
  border-left: 1px solid #686868;
  padding-left: 1rem;
  margin: 0.8rem 0 0 1.5rem;
}
.arrow li:before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/video-editing/arrow-blue.svg);
  background-size: 100% 100%;
  height: 9px;
  left: -21px;
  top: 6px;
  animation: move 3s linear infinite;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.video-edit .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.video-edit .buttons .btn-primary,
.video-edit .buttons .btn-white {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.video-edit .buttons .btn-primary img,
.video-edit .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.video-edit .buttons .btn-primary::before,
.video-edit .buttons .btn-white::before {
  content: "";
  transition: all 1s ease-in-out;
  border: 2px solid #FFFFFF;
  padding: 5px;
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
}
.video-edit .buttons .btn-primary:hover::before,
.video-edit .buttons .btn-white:hover::before {
  transform: scale(40, 40) rotate(90deg);
  opacity: 1;
}
.video-edit .buttons .btn-primary {
  background-color: #3C207B;
  color: #FFFFFF;
}
.video-edit .buttons .btn-white {
  background-color: #FFFFFF;
  color: #050506;
  border: 1px solid #050506;
}
.video-edit .buttons .btn-white::before {
  border: 2px solid #686868;
}
.video-edit .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.video-edit .heading p {
  margin-top: 1rem;
}
.video-edit .heading h2 {
  width: 100%;
  font-size: 22px;
}
.video-edit .center-heading {
  justify-content: center;
  align-items: center;
}
.video-edit .center-heading h2,
.video-edit .center-heading p {
  text-align: center;
}
.video-edit .white-heading h2,
.video-edit .white-heading p {
  color: #FFFFFF;
}
@keyframes move {
  0% {
    width: 10px;
  }
  50% {
    width: 20px;
  }
  100% {
    width: 10px;
  }
}
.video-edit .banner {
  background-color: #F5F5F5;
  flex-direction: column;
  padding: 0;
}
.video-edit .banner .logo-container,
.video-edit .banner .tka-logo,
.video-edit .banner .menu,
.video-edit .banner .menu-toggle {
  display: flex;
}
.video-edit .banner .logo-container {
  height: 100%;
  padding: 1rem 1.5rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
}
.video-edit .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.video-edit .banner .logo-container .menu {
  margin-left: auto;
}
.video-edit .banner .tka-logo {
  max-width: 200px;
}
.video-edit .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.video-edit .banner .menu img {
  width: 22px;
  height: 23px;
}
.video-edit .banner .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: #FFFFFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.video-edit .banner .menu-toggle {
  font-weight: 500;
}
.video-edit .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.video-edit .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #050506;
}
.video-edit .banner ul .links-li:first-child {
  padding-top: 0;
}
.video-edit .banner ul .links-li:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}
.video-edit .banner ul .links-li:last-child {
  display: none;
}
.video-edit .banner .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.video-edit .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.video-edit .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
}
.video-edit .banner .sticky .container {
  border-radius: 0px;
}
.video-edit .banner .sticky-down {
  top: -100px;
}
.video-edit .banner .container {
  height: 100%;
}
.video-edit .banner .banner-container,
.video-edit .banner .content,
.video-edit .banner .banner-info,
.video-edit .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.video-edit .banner .banner-container {
  padding: 3rem 1.5rem;
  padding-top: 1.5rem !important;
  align-items: flex-start;
}
.video-edit .banner .banner-content {
  width: 100%;
}
.video-edit .banner .banner-content h1 {
  width: 100%;
  font-size: 26px;
  margin-bottom: 0.5rem;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.video-edit .banner .banner-content h1 span {
  font-size: 30px;
  background: -webkit-linear-gradient(0deg, #3C207B, #D4BCBE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.video-edit .banner .banner-content h1 img {
  width: 40px;
  height: 38px;
  transform: translateY(10px);
  margin-right: 0.5rem;
}
.video-edit .banner .banner-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.video-edit .banner .banner-info h2 {
  text-align: center;
}
.video-edit .banner .banner-info .image {
  display: flex;
  width: 100%;
  height: 100%;
  margin-bottom: 0.5rem;
}
.video-edit .banner .banner-info .image img {
  width: 100%;
  height: 100%;
}
.video-edit .overview .overview-container,
.video-edit .overview .overview-content {
  display: flex;
  flex-direction: column;
}
.video-edit .overview .overview-content {
  align-items: center;
}
.video-edit .overview .overview-content p {
  text-align: center;
}
.video-edit .overview .overview-content p:nth-child(3) {
  margin-top: 0.8rem;
}
.video-edit .overview .overview-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
}
.video-edit .overview .overview-info img {
  width: 100%;
  height: 100%;
}
.video-edit .course {
  padding-top: 0;
}
.video-edit .course .course-container,
.video-edit .course .course-list,
.video-edit .course .course-item,
.video-edit .course .info {
  display: flex;
  flex-direction: column;
}
.video-edit .course .heading {
  margin-bottom: 0;
}
.video-edit .course .heading p {
  margin-bottom: 0.2rem;
  margin-top: 0;
}
.video-edit .course .heading p strong {
  color: #3C207B;
}
.video-edit .course .course-item {
  background-color: #F4F0ED;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}
.video-edit .course .course-item .image {
  display: flex;
  width: 45px;
  height: 45px;
}
.video-edit .course .course-item .image img {
  width: 100%;
  height: 100%;
}
.video-edit .course .course-item:hover .info .buttons .btn-white {
  background-color: #3C207B;
  color: #FFFFFF;
  border-color: transparent;
}
.video-edit .course .course-item:hover .info .buttons .btn-white img {
  transition: 1s all;
}
.video-edit .course .course-item:hover .info .buttons .btn-white img:first-child {
  width: 0;
}
.video-edit .course .course-item:hover .info .buttons .btn-white img:last-child {
  width: 12px;
}
.video-edit .course .info h3 {
  font-size: 16px;
  margin: 0.5rem 0 0.8rem;
}
.video-edit .course .info p {
  font-size: 13px;
}
.video-edit .course .info .buttons {
  margin-top: 0.8rem;
}
.video-edit .course .info .buttons .btn-white {
  font-size: 12px;
  min-width: 120px;
  padding: 6px 12px;
  transition: 1s all;
}
.video-edit .course .info .buttons .btn-white span {
  display: flex;
  margin-right: 8px;
}
.video-edit .course .info .buttons .btn-white span img {
  margin-right: 0;
  width: 12px;
  height: 12px;
  transition: 1s all;
}
.video-edit .course .info .buttons .btn-white span img:last-child {
  width: 0;
  height: 12px;
}
.video-edit .method {
  background-color: #F4F0ED;
}
.video-edit .method .method-container,
.video-edit .method .method-list,
.video-edit .method .info,
.video-edit .method .method-content,
.video-edit .method .method-item,
.video-edit .method .method-info {
  display: flex;
  flex-direction: column;
}
.video-edit .method .heading {
  margin-bottom: 0;
}
.video-edit .method .method-list .method-item {
  align-items: center;
  margin-top: 1rem;
}
.video-edit .method .method-list .method-item span {
  display: flex;
  width: 100px;
  background-color: #F5F5F5;
  padding: 1rem;
  border-radius: 50px;
  border: 15px solid #FFFFFF;
  box-shadow: 0px 0px 1px 1px #3C207B, 0px 0px 15px rgba(0, 0, 0, 0.2);
  height: 100px;
  cursor: pointer;
}
.video-edit .method .method-list .method-item span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.video-edit .method .method-list .method-item span img:last-child {
  width: 0;
  height: 100%;
}
.video-edit .method .method-list .method-item .active {
  background-image: linear-gradient(0deg, #3C207B, #D4BCBE);
}
.video-edit .method .method-list .method-item .active img {
  transition: 1s all;
}
.video-edit .method .method-list .method-item .active img:first-child {
  width: 0;
}
.video-edit .method .method-list .method-item .active img:last-child {
  width: 100%;
}
.video-edit .method .method-list .method-item h3 {
  font-size: 14px;
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
}
.video-edit .method .method-content {
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin-top: 3rem;
}
.video-edit .method .method-content .method-info {
  width: 100%;
  height: 100%;
}
.video-edit .method .method-content .method-info span {
  display: flex;
  width: 100%;
  height: 230px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-size: cover;
  border: 5px solid #FFFFFF;
}
.video-edit .method .method-content .method-info:first-child span {
  background-image: url(/_public/images/video-editing/classroom.png);
}
.video-edit .method .method-content .method-info:nth-child(2) span {
  background-image: url(/_public/images/video-editing/led.png);
}
.video-edit .method .method-content .method-info:nth-child(3) span {
  background-image: url(/_public/images/video-editing/paced.png);
}
.video-edit .method .method-content .method-info:last-child span {
  background-image: url(/_public/images/video-editing/onsite.png);
}
.video-edit .method .method-content h3 {
  font-size: 20px;
  margin: 1rem 0;
}
.video-edit .difference .difference-container,
.video-edit .difference .difference-content,
.video-edit .difference .difference-info {
  display: flex;
  flex-direction: column;
}
.video-edit .difference .difference-container {
  align-items: flex-start;
}
.video-edit .difference .difference-content {
  align-items: center;
  width: 100%;
}
.video-edit .difference .difference-content p {
  text-align: center;
}
.video-edit .difference .difference-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.video-edit .difference .difference-info {
  margin-top: 2rem;
  height: 100%;
  width: 100%;
}
.video-edit .difference .difference-info span {
  display: flex;
  width: 100%;
  height: 100%;
}
.video-edit .difference .difference-info span img {
  width: 100%;
  height: 100%;
}
.video-edit .choose {
  padding-top: 0;
}
.video-edit .choose .choose-container,
.video-edit .choose .choose-list,
.video-edit .choose .info {
  display: flex;
  flex-direction: column;
}
.video-edit .choose .choose-container {
  align-self: flex-start;
}
.video-edit .choose .heading {
  margin-bottom: 0;
}
.video-edit .choose .choose-list {
  height: 100%;
  width: 100%;
}
.video-edit .choose .choose-item {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.video-edit .choose .choose-item span {
  display: flex;
  width: 66px;
  height: auto;
  padding: 1rem;
  background-color: #F4F0ED;
}
.video-edit .choose .choose-item span img {
  width: 100%;
  height: 100%;
}
.video-edit .choose .choose-item .info {
  width: calc(100% - 82px);
}
.video-edit .choose .choose-item h3 {
  font-size: 16px;
  margin-bottom: 1rem;
}
.video-edit .choose .choose-item p {
  font-size: 13px;
}
.video-edit .fact {
  background-color: #F5F5F5;
}
.video-edit .fact .fact-container,
.video-edit .fact .content,
.video-edit .fact .fact-list {
  display: flex;
  flex-direction: column;
}
.video-edit .fact .content p:nth-child(3) {
  margin-top: 1rem;
}
.video-edit .fact .fact-list {
  background-color: #3C207B;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}
.video-edit .fact .fact-list .heading {
  margin-bottom: 0;
}
.video-edit .fact .fact-item {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.video-edit .fact .fact-item span {
  display: flex;
  width: 65px;
  height: 65px;
  padding: 0.9rem;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
}
.video-edit .fact .fact-item span img {
  width: 100%;
  height: 100%;
}
.video-edit .fact .fact-count {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 80px);
}
.video-edit .fact .fact-count p {
  color: #FFFFFF;
}
.video-edit .fact .fact-count h3 {
  color: #FFFFFF;
  font-size: 38px;
}
.video-edit .workflow .workflow-container,
.video-edit .workflow .workflow-content {
  display: flex;
  flex-direction: column;
}
.video-edit .workflow .workflow-content p:nth-child(3) {
  margin-top: 1rem;
}
.video-edit .workflow .workflow-info {
  display: flex;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
  height: 100%;
}
.video-edit .workflow .workflow-info img {
  width: 100%;
  height: 100%;
}
.video-edit .client {
  padding-top: 0;
}
.video-edit .client .client-container,
.video-edit .client .client-list,
.video-edit .client .client-item,
.video-edit .client .info {
  display: flex;
  flex-direction: column;
}
.video-edit .client .client-item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 3.5rem 1.5rem 1.2rem;
  position: relative;
  background-image: url(/_public/images/video-editing/quotes.png);
  background-size: 22px 20px;
  background-repeat: no-repeat;
  background-position: top 20px right 20px;
  width: 92%;
  margin: 3.2rem 0.5rem 0.5rem;
}
.video-edit .client .client-item .customer {
  width: 85px;
  height: 85px;
  position: absolute;
  top: -50px;
  left: 38px;
}
.video-edit .client .info {
  background-color: #F5F5F5;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
}
.video-edit .client .info h3 {
  font-size: 18px;
  color: #3C207B;
}
.video-edit .client .info h4 {
  font-size: 14px;
  margin: 0.2rem 0;
}
.video-edit .client .stars {
  width: 100px;
  height: 15px;
}
.video-edit .client .owl-nav {
  display: flex;
  width: 128px;
  justify-content: space-between;
  margin: 1.2rem 0 0 0.5rem;
}
.video-edit .client .owl-nav .owl-prev,
.video-edit .client .owl-nav .owl-next {
  background-image: url(/_public/images/video-editing/arrow.png);
  background-size: 34px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #F5F5F5;
  width: 57px;
  height: 32px;
  border-radius: 5px;
  opacity: 0.5;
}
.video-edit .client .owl-nav .owl-next {
  transform: rotate(180deg);
}
.video-edit .client .owl-nav .btn-active {
  opacity: 1;
}
.video-edit .faq {
  padding-top: 0;
}
.video-edit .faq .faq-container,
.video-edit .faq .faq-content,
.video-edit .faq .faq-list,
.video-edit .faq .faq-item,
.video-edit .faq .form {
  display: flex;
  flex-direction: column;
}
.video-edit .faq .form {
  margin-bottom: 0;
  margin-top: 2rem;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  background-color: #F5F5F5;
}
.video-edit .faq .form .input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  padding: 0.6rem;
  border-radius: 5px;
  background-color: #FFFFFF;
  border: 1px solid transparent;
}
.video-edit .faq .form .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.video-edit .faq .form .input-container span img {
  width: 100%;
  height: 100%;
}
.video-edit .faq .form .input-container span img:last-child {
  display: none;
}
.video-edit .faq .form .input-container input,
.video-edit .faq .form .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  color: #171717;
}
.video-edit .faq .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.video-edit .faq .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #686868;
}
.video-edit .faq .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #686868;
}
.video-edit .faq .form .input-container ::placeholder {
  color: #686868;
}
.video-edit .faq .form .input-container:nth-child(6) {
  align-items: flex-start;
}
.video-edit .faq .form .input-error {
  border: 1px solid #ff0000;
}
.video-edit .faq .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.video-edit .faq .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.video-edit .faq .form .input-error ::placeholder {
  color: #ff0000;
}
.video-edit .faq .form .input-error span img:first-child {
  display: none;
}
.video-edit .faq .form .input-error span img:last-child {
  display: flex;
}
.video-edit .faq .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.video-edit .faq .form .form-consent p {
  font-size: 11px;
}
.video-edit .faq .form .form-consent a {
  font-weight: 600;
  color: #ff0000;
}
.video-edit .faq .form .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  line-height: 1.6;
  font-size: 11px;
  width: 90%;
  color: #171717;
  font-weight: 500;
}
.video-edit .faq .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.video-edit .faq .form .consent-error,
.video-edit .faq .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.video-edit .faq .form .consent-error p,
.video-edit .faq .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.video-edit .faq .form .buttons {
  align-self: center;
}
.video-edit .faq .form .buttons .btn-primary {
  min-width: 130px;
}
.video-edit .faq .form .buttons .btn-primary img {
  width: 16px;
  height: 16px;
}
.video-edit .faq .faq-content .heading {
  margin-bottom: 0;
}
.video-edit .faq .faq-item {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #686868;
  border-radius: 5px;
}
.video-edit .faq .faq-item .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.video-edit .faq .faq-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 30px);
}
.video-edit .faq .faq-item .ques span {
  display: flex;
  width: 20px;
  height: 20px;
}
.video-edit .faq .faq-item .ques span img {
  width: 100%;
  height: 100%;
}
.video-edit .faq .faq-item .ques span img:last-child {
  display: none;
}
.video-edit .faq .faq-item .ans {
  margin-top: 0.5rem;
  display: none;
}
.video-edit .faq .faq-item .ans P {
  font-size: 13px;
}
.video-edit .faq .active {
  background-color: #F4F0ED;
  border-color: transparent;
}
.video-edit .faq .active .ques span img:first-child {
  display: none;
}
.video-edit .faq .active .ques span img:last-child {
  display: flex;
}
.video-edit .footer {
  background-color: #F4F0ED;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.video-edit .footer .footer-container,
.video-edit .footer .footer-list,
.video-edit .footer .footer-item {
  display: flex;
  flex-direction: column;
}
.video-edit .footer .heading {
  margin-bottom: 0;
}
.video-edit .footer .footer-item {
  align-items: center;
  text-align: center;
  margin-top: 1.5rem;
  background-color: #FFFFFF;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  width: 272px;
  align-self: center;
  position: relative;
  z-index: 1;
}
.video-edit .footer .footer-item::before {
  content: '';
  position: absolute;
  border: 1px solid #171717;
  width: 87%;
  height: 79%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.video-edit .footer .footer-item h3 {
  font-size: 15px;
  margin: 0.5rem 0 0.2rem;
}
.video-edit .footer .footer-item a {
  font-size: 12px;
  font-weight: 500;
}
.video-edit .footer .image {
  width: 30px;
  height: 30px;
}
.video-edit .footer .stars {
  width: 120px;
  height: 18px;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .video-edit .banner .banner-content h1 span {
    color: #3C207B;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .video-edit .banner .menu.active + .menu-links {
    width: 50%;
  }
  .video-edit .banner .logo-container {
    padding: 1rem 2rem;
  }
  .video-edit .banner .banner-container {
    padding: 3rem 2rem;
  }
  .video-edit .banner .banner-info {
    display: none;
  }
  .video-edit .overview .overview-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .video-edit .overview .overview-content {
    width: 48%;
    align-items: flex-start;
  }
  .video-edit .overview .overview-content p,
  .video-edit .overview .overview-content h2 {
    text-align: left;
  }
  .video-edit .overview .overview-content .heading span {
    margin: 0.8rem 0;
  }
  .video-edit .overview .overview-info {
    width: 47%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .video-edit .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .video-edit .course .course-item {
    width: 45%;
    margin-right: 1.5rem;
  }
  .video-edit .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .video-edit .course .course-item:last-child {
    margin-right: 0 !important;
  }
  .video-edit .method .method-list {
    margin-top: 0;
    flex-flow: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .video-edit .method .method-list::after {
    content: '';
    position: absolute;
    height: 15px;
    width: 80%;
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
    border: 1px solid #686868;
    z-index: -1;
  }
  .video-edit .method .method-list .method-item {
    width: 23%;
    margin-top: 2rem;
  }
  .video-edit .method .method-content .method-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .video-edit .method .method-content .method-info span {
    width: 44%;
  }
  .video-edit .method .method-content .method-info .info {
    width: 52%;
  }
  .video-edit .method .method-content h3 {
    margin: 0 0 1rem;
  }
  .video-edit .difference .difference-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .video-edit .difference .difference-content {
    width: 51%;
    align-items: flex-start;
  }
  .video-edit .difference .difference-content .heading h2 {
    text-align: left;
  }
  .video-edit .difference .difference-content p {
    text-align: left;
  }
  .video-edit .difference .difference-info {
    margin-top: 0;
    width: 44%;
    position: sticky;
    top: 60px;
  }
  .video-edit .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .video-edit .choose .heading h2,
  .video-edit .choose .heading p {
    text-align: center;
  }
  .video-edit .choose .choose-item {
    width: 45%;
    height: auto;
    padding: 1rem;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid #3C207B;
  }
  .video-edit .fact .fact-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .video-edit .fact .content {
    width: 50%;
  }
  .video-edit .fact .fact-list {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .video-edit .workflow .workflow-container {
    flex-flow: row-reverse;
    justify-content: space-between;
  }
  .video-edit .workflow .workflow-content {
    width: 48%;
  }
  .video-edit .workflow .workflow-info {
    width: 48%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .video-edit .client .client-item p {
    min-height: 336px;
  }
  .video-edit .client .owl-nav {
    position: absolute;
    right: 19px;
    top: -62px;
    margin: 0;
  }
  .video-edit .faq .faq-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .video-edit .faq .faq-content {
    width: 50%;
  }
  .video-edit .faq .faq-list {
    margin-top: 0;
  }
  .video-edit .faq .form {
    width: 45%;
    position: sticky;
    top: 60px;
    margin-top: 0;
  }
  .video-edit .footer .footer-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .video-edit .footer .footer-item {
    width: 46%;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .video-edit .heading h2 {
    font-size: 28px;
  }
  .video-edit .buttons .btn-primary,
  .video-edit .buttons .btn-white {
    font-size: 16px;
  }
  .video-edit .banner {
    background-image: url(/_public/images/video-editing/banner-bg.png);
    background-size: cover;
    background-color: transparent;
  }
  .video-edit .banner .tka-logo {
    max-width: 245px;
  }
  .video-edit .banner .menu-links {
    width: auto;
    flex-direction: row;
    box-shadow: none;
    position: relative;
  }
  .video-edit .banner .menu {
    display: none;
  }
  .video-edit .banner .menu-toggle {
    display: none;
  }
  .video-edit .banner ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .video-edit .banner ul .links-li {
    border-bottom: none;
    margin-right: 1.3rem;
    padding: 0;
    z-index: 1;
    font-size: 16px;
    position: relative;
  }
  .video-edit .banner ul .links-li::after {
    content: "";
    position: absolute;
    bottom: -4px;
    width: 0px;
    height: 2px;
    left: 0%;
    background-color: #3C207B;
    z-index: -1;
    transition: 0.7s ease;
  }
  .video-edit .banner ul .links-li:hover::after {
    width: 100%;
    right: 0%;
  }
  .video-edit .banner ul .links-li:nth-child(4) {
    display: none;
  }
  .video-edit .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .video-edit .banner ul .links-li:last-child::after {
    content: none;
  }
  .video-edit .banner ul .links-li .btn-white {
    margin-right: 1.3rem;
  }
  .video-edit .banner ul .links-li .btn-white,
  .video-edit .banner ul .links-li .btn-primary {
    min-width: 169px;
    height: 44px;
  }
  .video-edit .banner .banner-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 4rem !important;
  }
  .video-edit .banner .banner-content {
    width: 52%;
  }
  .video-edit .banner .banner-content h1 {
    font-size: 35px;
  }
  .video-edit .banner .banner-content h1 span {
    font-size: 40px;
  }
  .video-edit .banner .banner-content h1 img {
    width: 45px;
    height: 45px;
  }
  .video-edit .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 40%;
  }
  .video-edit .overview .overview-content {
    width: 56%;
  }
  .video-edit .overview .overview-info {
    width: 38%;
  }
  .video-edit .course .course-list {
    counter-reset: counter;
  }
  .video-edit .course .course-item {
    width: 31.5%;
    flex-direction: row;
    justify-content: space-between;
  }
  .video-edit .course .course-item .image {
    padding: 0.5rem;
    width: 46px;
    height: auto;
    border-radius: 8px;
    background-color: #FFFFFF;
    position: relative;
  }
  .video-edit .course .course-item .image img {
    height: 30px;
  }
  .video-edit .course .course-item .image::before {
    content: counter(counter, decimal-leading-zero);
    position: absolute;
    counter-increment: counter;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-size: 32px;
    font-weight: 500;
    opacity: 0.08;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .video-edit .course .course-item:nth-child(2n) {
    margin-right: 1.5rem;
  }
  .video-edit .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .video-edit .course .info {
    width: calc(100% - 58px);
  }
  .video-edit .course .info h3 {
    font-size: 13px;
    margin-top: 0;
    min-height: 40px;
  }
  .video-edit .course .info p {
    font-size: 11px;
  }
  .video-edit .method {
    background-image: url(/_public/images/video-editing/method-bg.png);
    background-size: cover;
  }
  .video-edit .method .method-list::after {
    top: 47%;
  }
  .video-edit .method .method-content h3 {
    font-size: 25px;
  }
  .video-edit .choose .heading {
    width: 80%;
    margin: auto;
  }
  .video-edit .choose .choose-item {
    width: 26%;
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
  }
  .video-edit .choose .choose-item span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -33px;
    margin: auto;
    height: calc(100% - 24%);
  }
  .video-edit .choose .choose-item h3 {
    min-height: 50px;
  }
  .video-edit .choose .choose-item .info {
    width: 100%;
  }
  .video-edit .fact {
    background-image: linear-gradient(45deg, #F5F5F5 100%, #FFFFFF), url(/_public/images/video-editing/fact-bg.png);
    background-size: 61% 100%, cover;
    background-repeat: no-repeat;
    background-position: left, right;
    position: relative;
  }
  .video-edit .fact::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/video-editing/video.png);
    background-size: 100% 100%;
    width: 170px;
    height: 190px;
    right: 40%;
    bottom: 22px;
  }
  .video-edit .fact .content {
    width: 56%;
  }
  .video-edit .fact .fact-list {
    width: 34%;
    background-color: transparent;
    padding: 0;
  }
  .video-edit .fact .fact-item span {
    width: 85px;
    height: 85px;
    padding: 1.2rem;
  }
  .video-edit .fact .fact-count {
    width: calc(100% - 150px);
  }
  .video-edit .fact .fact-count p {
    font-size: 15px;
    position: relative;
  }
  .video-edit .fact .fact-count p::before {
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    width: 28px;
    height: 1px;
    top: 14px;
    left: -50px;
  }
  .video-edit .workflow .workflow-content {
    width: 54%;
  }
  .video-edit .workflow .workflow-info {
    width: 42%;
  }
  .video-edit .client .client-item p {
    min-height: 278px;
  }
  .video-edit .client .info {
    position: relative;
    padding: 1rem;
  }
  .video-edit .client .info .stars {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .video-edit .client .info h3,
  .video-edit .client .info h4 {
    width: 68%;
  }
  .video-edit .client .info h4 {
    margin-bottom: 0;
  }
  .video-edit .faq .form {
    padding: 2rem 2.5rem 0;
    position: relative;
    top: 0;
    width: 40%;
  }
  .video-edit .faq .form::before {
    content: '';
    position: absolute;
    width: 93%;
    height: 100%;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 10px;
    background-color: #F4F0ED;
    z-index: -1;
  }
  .video-edit .faq .form .buttons {
    margin-top: 0;
  }
  .video-edit .faq .form .buttons .btn-primary {
    transform: translatey(24px);
  }
  .video-edit .faq .faq-content {
    width: 52%;
  }
  .video-edit .faq .faq-item {
    padding: 1rem 1.5rem;
  }
  .video-edit .footer {
    background-image: url(/_public/images/video-editing/footer-bg.png);
    background-size: 100% 100%;
  }
  .video-edit .footer .heading {
    width: 85%;
    margin: auto;
  }
  .video-edit .footer .footer-list {
    justify-content: space-between;
  }
  .video-edit .footer .footer-item {
    width: 32%;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .video-edit .heading h2 {
    font-size: 32px;
  }
  .video-edit .banner .logo-container {
    padding: 1rem 0;
  }
  .video-edit .banner .banner-container {
    padding: 6rem 0!important;
  }
  .video-edit .banner ul .links-li:nth-child(4) {
    display: flex;
  }
  .video-edit .banner .banner-content {
    width: 47%;
  }
  .video-edit .banner .banner-content h1 {
    font-size: 40px;
  }
  .video-edit .banner .banner-content h1 img {
    width: 50px;
    height: 50px;
  }
  .video-edit .banner .banner-content h1 span {
    font-size: 46px;
  }
  .video-edit .banner .banner-info {
    width: 45%;
  }
  .video-edit .overview .overview-container {
    align-items: center;
  }
  .video-edit .overview .overview-info {
    position: static;
    top: 0;
  }
  .video-edit .course .course-item {
    width: 23.5%;
  }
  .video-edit .course .course-item:nth-child(3n) {
    margin-right: 1.5rem;
  }
  .video-edit .course .course-item:nth-child(4n) {
    margin-right: 0;
  }
  .video-edit .method .method-container {
    width: 86%;
    margin: auto;
  }
  .video-edit .difference .difference-info {
    position: static;
    top: 0;
  }
  .video-edit .choose .choose-container {
    width: 98%;
    margin: auto;
  }
  .video-edit .choose .heading {
    width: 80%;
    margin: auto;
  }
  .video-edit .choose .choose-item {
    padding: 2.5rem 2rem 2.5rem 4.5rem;
  }
  .video-edit .choose .choose-item span {
    width: 85px;
    left: -43px;
  }
  .video-edit .choose .choose-item h3 {
    min-height: auto;
  }
  .video-edit .choose .choose-item .info {
    width: 100%;
  }
  .video-edit .fact .fact-list {
    width: 32%;
    position: static;
    top: 0;
  }
  .video-edit .workflow .workflow-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .video-edit .workflow .workflow-content ul li {
    width: 46%;
  }
  .video-edit .workflow .workflow-info {
    position: static;
    top: 0;
    align-self: center;
  }
  .video-edit .client .client-item p {
    min-height: 328px;
  }
  .video-edit .client .info h4 {
    min-height: 42px;
  }
  .video-edit .footer .footer-item {
    width: 28%;
    padding: 2.5rem;
  }
  .video-edit .footer .footer-item a {
    font-size: 14px;
  }
}
@media (min-width : 1500px) {
  .video-edit .fact {
    background-image: linear-gradient(90deg, #F5F5F5 58%, #3C207B 58%);
    background-size: 100% 100%;
  }
  .video-edit .fact::before {
    right: 43%;
  }
}
