/* @import url("fonts.css"); */
/*live*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("icon-font.css?v=9");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  --font-pri: "Montserrat", sans-serif;

  --clr-pri: #ff7a00;
  --clr-sec: #001b26;
  --clr-blue: #44a7f1;
  --clr-sec-light: #3a4b55;
  --header-height: 90px;
}

strong,
b {
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-pri);
  background-color: #fff;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
  color: var(--clr-sec);
  letter-spacing: -0.24px;
  overflow-x: hidden;
  font-display:swap;
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
  border-radius: 10px;
  overflow: hidden;
}

::-webkit-scrollbar-track {
  background: #e4e4e4;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgb(131, 131, 131);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(112, 112, 112);
}

body.no-scroll {
  overflow: hidden;
}

.opacity05 {
  opacity: 0.5;
}

.hide {
  display: none;
}
.sr-only{
  display: none !important;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.heading-md {
  font-size: 40px;
  font-weight: 600;
  color: var(--clr-sec);
  letter-spacing: -1.9px;
}

.container-main {
  width: 100%;
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  gap: 15px;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.header-top-bar {
  background-color: #0a3c55;
}

.header-top-bar ul {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  height: 36px;
  align-items: center;
}

.header-top-bar ul li a {
  color: #fff;
  font-size: 14px;
  padding: 3px 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  font-weight: 500;
}

.header-top-bar ul li:not(.student-login) a:hover {
  color: var(--clr-pri);
}

.header-top-bar ul li.student-login {
  padding-left: 22px;
  border-left: 1px solid #fff;
}

.header-top-bar ul li.student-login a {
  display: inline-flex;
  gap: 6px;
  background: var(--clr-blue);
  border-radius: 8px;
  padding: 5px 10px 5px 10px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.header-top-bar ul li.student-login a .icon-arrow-right {
  font-size: 12px;
}

.header-main {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-main .container-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .header-left {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.logo-main img{
  max-height: 50px;
}

.navigation-main ul {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.navigation-main ul li a {
  color: var(--clr-sec);
  font-size: 15px;
  padding: 10px 0;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  font-weight: 500;
  outline: none;
  border: none;
}

.navigation-main ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-blue);
  transition: all 0.4s ease;
}

.navigation-main ul li a:hover:before,
.navigation-main ul li a:focus:before,
.navigation-main ul li a.active:before,
.navigation-main ul li a:active:before {
  width: 100%;
}

.navigation-main ul li a:hover,
.navigation-main ul li a:focus,
.navigation-main ul li a.active,
.navigation-main ul li a:active {
  color: var(--clr-blue);
}

.btn-arrow {
  width: 37px;
  flex: 0 0 37px;
  height: 30px;
  background-color: var(--clr-sec);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 11px;
}

.drone-img {
  position: absolute;
  top: -20px;
  left: calc(((100vw - 1340px) / 2) + 450px);
  width: 178px;
  pointer-events: none;
  z-index: 0;
}

@keyframes moveDrone {
  0% {
    transform: translate(40px, 20px) scale(1);
  }

  25% {
    transform: translate(80px, -20px);
  }

  50% {
    transform: translate(-30px, -10px) scale(0.6);
  }

  75% {
    transform: translate(-40px, -50px) scale(1.02);
  }

  100% {
    transform: translate(40px, 20px) scale(1);
  }
}

.hero-banner {
  background: linear-gradient(180deg, #ffffff 0%, #e6f3ff 100%);
  position: relative;
  z-index: 3;
  padding: 55px 0 78px;
}

.banner-bg {
  background-repeat: no-repeat;
  background-position: bottom right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-banner .container-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-left {
  max-width: 724px;
}

.hero-left h1 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 13px;
  line-height: 58px;
}

.hero-left h1 .gradient-text {
  letter-spacing: -0.04em;
  background: linear-gradient(181.5deg, #44a7f1 49.05%, #105475 105.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline;
}

.hero-left h1 span {
  display: block;
  font-weight: 400;
}

.hero-left p {
  color: var(--clr-sec-light);
  font-size: 18px;
  max-width: 536px;
  display: block;
  line-height: 30px;
  margin-bottom: 13px;
}

.hero-left p strong {
  color: var(--clr-sec);
  font-weight: 500;
}

.hero-left p:last-of-type{
  margin-bottom: 0;
}

.hero-left .hero-action-header {
  margin: 0 0 16px;
  letter-spacing: -0.04em;
  background: linear-gradient(181.5deg, #44a7f1 49.05%, #105475 105.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-left .btn.btn-secondary {
  background: var(--clr-blue);
}
.hero-left .btn-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-right {
  position: absolute;
  right: 20px;
  bottom: -5px;
  pointer-events: none;
}
.bf-sale-live .hero-right img{
  opacity: 0.56;
}
.bf-sale-live .hero-right{
  z-index: -1;
}
.hero-right img {
  width: auto;
  height: auto;
  max-width: 460px;
}

.hero-bg-shape {
  position: absolute;
  right: -2px;
  z-index: -1;
  bottom: 0;
  height: 476px;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-shape img {
  max-width: inherit;
}

.btn {
  height: 54px;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.btn .cs-icon {
  /* margin-left: 20px; */
}
.btn:before,
.header-top-bar ul li.student-login a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: -1;
}

.header-top-bar ul li.student-login a:before {
  border-radius: 8px;
}

.btn:hover:before,
.header-top-bar ul li.student-login a:hover:before {
  width: 100%;
}

.btn.btn-sm {
  height: 47px;
  min-height: 47px;
  padding: 10px 26px;
  font-size: 14px;
}

.btn.btn-primary {
  background-color: var(--clr-pri);
}

.btn.outline {
  border: 1px solid #ff7a00;
  color: var(--clr-sec);
}

.btn.outline:before {
  background-color: #fff2e6;
}

.btn.btn-text {
  color: var(--clr-pri);
  padding: 0;
  gap: 8px;
  overflow: visible;
}

.btn.btn-text:before {
  display: none !important;
}

.btn.btn-text .icon-arrow-right {
  font-size: 12px;
  transition: all 0.4s ease;
}

.btn.btn-text:hover .icon-arrow-right {
  transform: translateX(5px);
}
.hero-action-header,
.review-block {
  padding-top: 32px;
}

.review-block ul {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 9;
}

.review-block ul li {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-block ul li span {
  display: flex;
  font-size: 32px;
  color: var(--clr-sec);
  font-weight: 600;
  width: 100%;
  min-height: 38px;
  align-items: center;
}

.review-block ul li span i {
  font-style: normal;
  color: var(--clr-blue);
  font-weight: 400;
}

.review-block ul li span i.icon-star {
  font-size: 18px;
  margin-left: 5px;
  margin-bottom: 0;
  margin-top: -4px;
}

.review-block ul li label {
  display: flex;
  align-items: flex-start;
  margin: 6px 0px 0px;
  white-space: nowrap;
}

.review-block ul li label img {
  margin: 0px 0 0 6px;
}

.review-block ul li.trustpilot label img {
  margin-top: -4px;
}

.trusted-companies {
  padding: 26px 0;
}

.trusted-companies .container-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trusted-companies .left-block {
  max-width: 294px;
  width: 100%;
  border-right: 1px solid #d7d7d7;
}

.trusted-companies h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.2px;
}

.companies-logos {
  flex: 0 0 calc(100% - 310px);
  max-width: calc(100% - 310px);
}

.companies-logos .slick-slide {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}
.companies-logos .slick-slide img{
  display: block;
  max-height: 100%;
  object-fit: contain;
}
.online-classes-block {
  padding: 32px 0 38px;
  position: relative;
}

.tabbing-block {
  padding-top: 14px;
}

.tab-head ul {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.tab-head ul li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px 14px 12px;
  color: var(--clr-sec-light);
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-head ul li a:hover {
  color: var(--clr-sec);
}

.tab-head ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 3px;
  opacity: 0;
  visibility: hidden;
  background-color: #2ecc71;
}

.tab-head ul li.active a {
  color: var(--clr-sec);
  font-weight: 500;
}

.tab-head ul li.active a:before {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.drone-img-line {
  position: absolute;
  right: -512px;
  left: 0;
  width: 645px;
  margin: 0 auto;
  top: -15px;
  pointer-events: none;
}

.tab-content {
  padding-top: 20px;
}

.tab-view-content {
  background-color: #fff;
  z-index: 1;
  position: relative;
}

.tab-view-content .slick-list {
  margin: 0 -12px;
  overflow: visible;
}
.online-tab-content .tab-view-content .slick-list{
  overflow: hidden;
}
.tab-view-content .slick-list .slick-track {
  display: flex;
  align-items: stretch;
  margin: 0;
}

.course-card {
  background: #ecf4fc;
  border-radius: 16px;
  overflow: hidden;
  display: inline-flex !important;
  flex-direction: column;
  align-items: stretch;
  margin: 0 12px;
  height: auto;
  position: relative;
  transition: 0.15s;
}
.course-card:hover{
  transform: translateY(-5px);
}
.course-card a.cover-link{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
}
.course-card .course-img img {
  width: 100%;
  height: 224px;
  object-fit: cover;
}
.course-card .course-img img.cs-img-contain{
  object-fit: contain;
}

.course-card .course-content {
  padding: 24px 24px 25px;
  min-height: 156px;
  flex: 1;
}

.course-card .course-content h5 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-sec);
  letter-spacing: -0.1px;
}

.course-card .course-content p {
  font-size: 16px;
  color: var(--clr-sec-light);
  line-height: 22px;
  letter-spacing: -0.07px;
}

.action-course {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 24px 24px;
}

.action-course .price {
  font-size: 30px;
  font-weight: 500;
  color: #338ccf;
}

.action-course .price strong {
  font-weight: 700;
}

.action-course a {
  width: 37px;
  height: 30px;
  background-color: var(--clr-sec);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 11px;
}

.tab-head-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.tab-head-action .slider-btns {
  display: inline-flex;
  gap: 40px;
  margin-right: 0px;
  margin-bottom: 14px;
}

.tab-head-action .slider-btns .slick-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.tab-head-action .slider-btns button {
  background-color: transparent;
  height: 28px;
  width: 28px;
  font-size: 15px;
  border: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.tab-head-action .slider-btns button:before {
  content: "";
  position: absolute;
  left: -8px;
  top: -2px;
  width: 44px;
  height: 34px;
  background-color: #dbe3eb;
  z-index: -1;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.tab-head-action .slider-btns button:hover:before {
  opacity: 1;
  visibility: visible;
}

.online-classes-block .btn-block {
  padding-top: 30px;
}

.step-choose-head {
  text-align: center;
}

.step-choose-head .heading-md {
  margin-bottom: 10px;
}
.step-choose-head .stepper .sleeper-slider-content {
  max-width: 1190px;
  margin: 0 auto;
  position: relative;
}
.step-choose-head .stepper ul {
  display: flex;
  gap: 24px;
  overflow: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.ul-left-overlay:after {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #fff, transparent);
  z-index: 1;
  pointer-events: none;
}
.ul-right-overlay:before {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: linear-gradient(to left, #fff, transparent);
  z-index: 1;
  pointer-events: none;
}
.step-choose-head .stepper ul::-webkit-scrollbar{
  display: none;
  height: 0;
  width: 0;
}
.step-choose-head .stepper ul li {
  flex: auto;
  cursor: pointer;
}

.step-choose-head .stepper ul li a {
  color: var(--clr-sec-light);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  position: relative;
  width: 100%;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.step-choose-head .stepper ul li a span {
  color: var(--clr-sec);
  font-weight: 400;
}

.step-choose-head .stepper ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background-color: #eaeaea;
}

.step-choose-head .stepper ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  border-radius: 5px;
  background-color: #2ecc71;
  transition: all 0.4s ease;
}

.step-choose-head .stepper ul li.active a {
  color: var(--clr-sec);
}

.step-choose-head .stepper ul li.active a:after {
  width: 100%;
}

.tab-content-choose {
  display: flex;
  background: radial-gradient(
    183.74% 241.36% at 2.79% -41.83%,
    #00588a 0%,
    #001724 50.83%
  );
  border-radius: 16px;
  margin-top: 16px;
  justify-content: space-between;
}

.choose-left-content {
  color: #fff;
  padding: 65px 63px;
  max-width: 540px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.choose-left-content figure {
  margin-bottom: 20px;
}

.choose-left-content h5 {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  margin: 0 0 13px 0;
  letter-spacing: -0.9px;
}

.choose-left-content p {
  color: #7fa1b5;
  line-height: 22px;
  letter-spacing: 0.49px;
  max-width: 400px;
}

.choose-left-content .btn-block {
  padding-top: 32px;
}

.choose-left-content .btn-block .btn.btn-text {
  height: auto;
  min-height: unset;
}

.choose-right-content {
  padding: 45px 42px;
  width: 54%;
}

.choose-right-content img {
  height: 375px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.trusted-companies.featured-block .left-block {
  border-right: none;
}

section.trusted-companies.featured-block {
  padding: 22px 0;
}

.online-classes-block.person-training {
  padding: 28px 0 44px 0;
}

.online-classes-block.person-training .tabbing-block {
  padding: 0;
}

.seprator-inner {
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
}

section.podcaset-block {
  background: #000000;
  padding: 32px 0 56px;
  color: #fff;
  position: relative;
}

.left-podcast {
  flex: 0 0 525px;
  max-width: 525px;
}

.left-podcast h4 {
  padding: 10px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  border-left: 3px solid var(--clr-blue);
  margin-bottom: 16px;
  letter-spacing: -0px;
}

.right-podcast {
  flex: 0 0 628px;
  max-width: 628px;
  padding-top: 20px;
}

.video-block-postcast h6 {
  text-align: center;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  max-width: 360px;
  margin: 0 auto;
  opacity: 0.7;
}

.video-block-postcast .video-block {
  position: relative;
}

.podcast-indicate-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.podcast-indicate-block a {
  transition: all 0.4s ease;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.podcast-indicate-block a span {
  color: var(--clr-blue);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}

.podcast-indicate-block a:hover {
  transform: scale(1.06);
}

.right-podcast .podcaset-title h5 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.right-podcast .podcaset-title p {
  font-size: 18px;
  opacity: 0.5;
  line-height: 20px;
  margin-bottom: 32px;
  letter-spacing: -0.1px;
  font-weight: 500;
}

.right-podcast .podcaset-title ul {
  display: flex;
  flex-wrap: wrap;
}

.right-podcast .podcaset-title ul li {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
  padding-bottom: 4px;
}

.right-podcast .podcaset-title ul li:first-child {
  padding-right: 84px;
  border-right: 1px solid #fff;
}

.right-podcast .podcaset-title ul li:last-child {
  padding-left: 64px;
}

.right-podcast .podcaset-title ul li span {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 2px;
}

.right-podcast .podcaset-title ul li label {
  opacity: 0.5;
  font-size: 16px;
  font-weight: 500;
}

.right-podcast .record-voice-block {
  padding-top: 50px;
}

.right-podcast .record-voice-block p {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 1.2px;
}

.poster-img img {
  width: 100%;
  height: 294px;
  border-radius: 16px;
  object-fit: cover;
}

.poster-img {
  position: relative;
}

.poster-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.23%, #000000 83.84%);
  border-radius: 16px;
}

.record-voice {
  display: flex;
  align-items: center;
  gap: 34px;
}

.video-recorder-message {
  height: 58px;
  border-radius: 70px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
  color: var(--clr-sec);
  padding: 0 24px 0 10px;
  gap: 12px;
  cursor: pointer;
  letter-spacing: 0px;
}

.video-recorder-message i {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  background-color: #ff2626;
  border-radius: 50px;
  position: relative;
}

.video-recorder-message i:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1px;
  border: 1px solid #ff4343;
  border-radius: 50%;
  transform: scale(1);
  animation-play-state: running;
  opacity: 1;
  z-index: 0;
}

.video-recorder-message:hover i:after {
  animation: ripple 1.3s ease-out infinite;
}

@keyframes ripple {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.video-recorder-message i:before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-radius: 12px;
  background-color: #fff;
}

.record-voice .btn {
  color: #ffffff;
}

section.podcaset-block .watermark-droneu {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 19.9%, rgba(0, 0, 0, 0) 124.76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 152px;
  text-align: center;
  opacity: 0.1;
  height: 120px;
  font-weight: 700;
  pointer-events: none;
}

/* Success story */

.success-story {
  padding: 32px 0 47px;
}

.success-story .slick-list {
  margin: 0 -12px;
  overflow: visible;
}

.success-story .success-story-item {
  margin: 0 12px;
}

.success-story .tab-head-action {
  margin-bottom: 18px;
}

.success-img img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  border-radius: 16px;
}

.success-img {
  position: relative;
}

.success-img:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51.84%, #000000 105.12%);
}

.play-btn {
  position: absolute;
  left: 24px;
  bottom: 21px;
  margin: auto;
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 22px;
  padding-left: 6px;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.15);
}

.content-success-story {
  padding-top: 22px;
}

.content-success-story h6 {
  color: var(--clr-sec);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  min-height: 70px;
  padding-bottom: 10px;
  letter-spacing: 0px;
}

.content-success-story .user-info {
  display: flex;
  flex-direction: column;
}

.content-success-story .user-info span {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-sec);
  margin-bottom: 8px;
  letter-spacing: 0px;
}

.content-success-story .user-info label {
  font-size: 12px;
  color: var(--clr-blue);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 500;
}

.access-card-inner {
  border-radius: 16px;
  display: flex;
  background-color: #ecf4fc;
}

.head-access-block {
  background: #001b26;
  border-radius: 16px 0 0 16px;
  padding: 50px 56px 44px 56px;
  color: #fff;
  flex: 0 0 506px;
  max-width: 506px;
  background: radial-gradient(
    163.33% 226.77% at -38.93% -40.52%,
    rgba(17, 63, 90, 0.989114) 0%,
    #246693 18.08%,
    rgba(1, 30, 43, 0.98) 51.96%,
    rgba(0, 27, 38, 0.986091) 70.29%,
    rgba(0, 27, 38, 0.987261) 76.69%,
    #001b26 100%
  );
}

.head-access-block h4 {
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 44px;
  letter-spacing: -1.6px;
}

.head-access-block h4 strong {
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  display: block;
}

.head-access-block h4 strong span {
  color: var(--clr-blue);
}

.newsletter-block {
  position: relative;
  padding-bottom: 20px;
}
.newsletter-block .training-event-msg{
  position: absolute;
  bottom: -2px;
  font-size: 14px;
  font-weight: 500;
  left: 0;
  color: #1f9b00;
  margin: 0 !important;
}
.newsletter-block .training-event-msg.failed{
  color: #f30000;
}
.newsletter-block input {
  width: 100%;
  height: 67px;
  padding: 24px 26px;
  font-size: 16px;
  color: var(--clr-sec);
  border-radius: 37px;
  border: none;
}

.newsletter-block .btn-primary {
  position: absolute;
  right: 10px;
  bottom: 20px;
  top: 0;
  margin: auto;
  padding: 0;
  width: 67px;
}

.course-specifications {
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 92px;
}

.course-specifications ul li {
  display: block;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
  padding-left: 34px;
  line-height: 22px;
  letter-spacing: 1px;
}

.course-specifications ul li:last-child {
  margin-bottom: 0;
}

.course-specifications ul li::before {
  content: "\e900";
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "icomoon" !important;
  font-size: 16px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
}

.access-courses {
  padding-bottom: 64px;
}

.head-access-block p {
  margin-bottom: 13px;
  font-size: 16px;
  letter-spacing: 0;
}

.course-specifications {
  padding: 50px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.course-specifications h5 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
}

.footer-main {
  background-color: var(--clr-sec);
}

.footer-main-ui {
  padding: 54px 0 47px;
  color: #fff;
}

.footer-main-ui .container-main {
  display: flex;
  gap: 134px;
}

.footer-brand {
  flex: 0 0 302px;
}

.footer-brand figure {
  margin-bottom: 13px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 15px;
  letter-spacing: 0;
}

.newsletter-footer {
  position: relative;
  margin-bottom: 20px;
}
.newsletter-footer .newsletter-msg{
  color: #11fe00;
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: calc(100% + 2px);
  left: 0;
  letter-spacing: 0.02em;
}
.newsletter-footer .newsletter-msg.failed{
  color: #ffa7a7;
}

.newsletter-footer input {
  width: 100%;
  height: 49px;
  background-color: #082738;
  border: none;
  border-radius: 8px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.newsletter-footer button {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  background: transparent;
  border: none;
  width: 60px;
  height: 100%;
}

.footer-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 35px;
}

.footer-links:not(.footer-link-lg) {
  flex: 0 0 226px;
}

.footer-links h5 {
  color: #82b5d1;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 1.4px;
}

.quick-links {
  display: flex;
  gap: 108px;
}

.quick-links ul {
  flex: 1;
}

.quick-links ul li {
  margin-bottom: 19px;
}

.quick-links ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  transition: all 0.2s ease;
  display: inline-block;
  width: 100%;
}

.footer-sm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: #fff;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid #123e57;
  padding-bottom: 54px;
  align-items: center;
}

.footer-social-link ul {
  display: flex;
  gap: 24px;
}

.footer-social-link ul li a {
  color: #b5c8d3;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
}

.footer-social-link ul li a:hover {
  color: #fff;
}

.footer-sm-inner .copyright p {
  margin: 0;
  color: #b5c8d3;
  font-size: 14px;
  width: 100%;
  text-align: center;
}

.footer-sm-links ul {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.footer-sm-links ul li a {
  display: inline-block;
  padding: 4px 0;
  color: #b5c8d3;
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-sm-links ul li a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: center;
}

.mobile-nav {
  display: none;
  overflow: hidden;
}

.hamburger {
  display: none;
}

.hamburger span {
  transition: all 0.4s ease;
}

.hamburger span.two {
  transition: none;
}

.hamburger.active span.one {
  transform: rotate(45deg) translate(2px, 10px);
}

.hamburger.active span.two {
  visibility: hidden;
  opacity: 0;
}

.hamburger.active span.three {
  transform: rotate(-45deg) translate(1px, -10px);
}

ul.logos-slide {
  display: flex;
  gap: 38px;
  align-items: center;
}

.logos-slide li {
  flex: auto;
}

.no-course {
  width: 100%;
  height: 485px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-course img {
  max-width: 80%;
}

.testimonial-read-more {
  color: var(--clr-blue);
  border: none;
  font-size: 18px;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
}

.testimonial-read-more:hover {
  text-decoration: underline;
}

p.max-line-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.stepper > button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border: none;
  outline: none;
  opacity: 0.7;
  z-index: 1;
  transition: 0.2s;
  cursor: pointer;
  background: none;
}
.stepper > button:hover{
  opacity: 1;
}
.stepper > button.slick-next{
  left: unset;
  right: 0;
}
.stepper{
  position: relative;
  isolation: isolate;
}
.video-recorder-box-tag{
  text-align: center;
}
.person-training-course .head-access-block {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.person-training-course .head-access-block .inner-content {
  width: 100%;
}
.person-training-course .course-specifications {
  padding: 20px;
  gap: 15px;
}
.person-training-course .head-access-block h4 {
  margin: 0 0 15px;
}

#-speakpipe-widget-side-button,
.speakpipe-button {
  display: none !important;
}

.cs-rewamp-popup {
  position: fixed;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  overflow: auto;
  overflow-x: hidden;
}

.cs-rewamp-popup-container {
  width: 95%;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100% - 3rem);
  margin: 1.5rem auto;
}

.cs-rewamp-popup-contents {
  position: relative;
  width: 100%;
  background-color: #FFF;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  padding: 40px 30px;
}

.cs-testimonial-popup-media {
  margin-bottom: 20px;
  max-height: 280px;
}

.cs-testimonial-popup-media>* {
  width: 100%;
  max-height: inherit;
  object-fit: contain;
}

.cs-rewamp-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 33px;
  line-height: 30px;
  font-weight: 400;
  color: black;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.2s;
}

.cs-rewamp-popup-close:hover {
  opacity: 1;
}

.cs-testimonial-popup-text {
  font-size: 20px;
  font-weight: 500;
}

.cs-testimonial-popup-author {
  margin-top: 30px;
}

.cs-testimonial-popup-author span {
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.cs-testimonial-popup-author label {
  text-transform: uppercase;
  font-size: 15px;
  color: var(--clr-blue);
  display: block;
  margin-top: 5px;
}
.title-h2{
  font-weight: 500;
  font-size: 46px;
  line-height: 56px;
  letter-spacing: -0.04em;
}


.pld-like-wrap{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
}
.pld-like-wrap a{
  display: inline-block;
  max-width: 18px;
  max-height: 18px;
  position: relative;
}
.pld-like-wrap a img{
  display: block;
  max-width: inherit;
  max-height: inherit;
  width: auto;
}
.pld-like-wrap a.pld-undo-trigger img{
  opacity: 0;
}
.pld-like-dislike-wrap{
  margin: 0;
}
.pld-like-wrap .pld-like-trigger.pld-undo-trigger::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('https://www.thedroneu.com/wp-content/uploads/2024/12/like-icon-filled.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.pld-like-count-wrap{
  font-size: 14px;
  font-weight: 500;
  min-width: 16px;
}
.course-card .course-content .cs-ipt-date{
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-detail-comments .comment-reply-title{
  margin: 30px 0 10px;
}
.blog-detail-comments .fb-comments{
  width: 100%;
  display: block;
}
.tabbing-block.no-in-person-training .no-course{
  padding:50px 0;
  height: auto;
}
.ui-accordion-header-icon.ui-icon{
  position: relative !important;
  background: none !important;
  filter: none !important;
  opacity: 1 !important;
}
.ui-state-active .ui-accordion-header-icon.ui-icon::before{
  transform: rotate(90deg);
}
.ui-accordion-header-icon.ui-icon::before {
  content: '';
  left: 7px;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid #000000;
  border-bottom: 4px solid transparent;
  border-top: 4px solid  transparent;
  top: 5px;
  transform: rotate(0deg);
  transition: 0.1s;
}
.cs-d-none{
  display: none !important;
}
.hero-left .btn-block.cs-single-btn{
  margin-top: 32px;
}

.cs-droneu-reviews {
  padding: 30px 0 50px 0;
  width: 100%;
  color: #fff;
}
.page-template-homepage .cs-droneu-reviews{
  padding: 44px 0;
}
.reviews-section-heading h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.reviews-section-heading p {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}

.sale-reviews-list-container {
  margin-top: 20px;
}

.sale-reviews-list {
  display: flex;
  margin: 0 -10px;
}

.sale-reviews-list-item {
  padding: 40px 10px 0;
}

.sale-reviews-content {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  height: 100%;
  color: #222222;
}

.sale-reviews-content .cs-reviewer-img {
  width: 80px;
  min-width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-top: -40px;
  border-radius: 50%;
}

.cs-reviewer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sale-reviews-list .slick-track,
.trusted-brands-items .slick-track {
  display: flex;
}

.sale-reviews-list li {
  height: auto;
}

.reviews-stars {
  text-align: center;
  padding: 10px 0;
}
.reviews-stars{
  display: flex;
  justify-content: center;
}
.reviews-stars .cs-icon.icon-star{
  color: #FF9529;
  margin: 0 1px;
}
.card-with-cover-link{
  position: relative;
  isolation: isolate;
}
.cs-link-cover-card{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}

.cs-review-star-icon {
  height: 18px;
  background-image: url('https://www.thedroneu.com/wp-content/uploads/2024/12/reviews-star-1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  display: inline-block;
}

.cs-review-star-icon.cs-unfilled-star {
  background-image: url('https://www.thedroneu.com/wp-content/uploads/2024/12/unfilled-star.png');
}

.review-desc {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  flex: 1;
  font-weight: 500;
}

.review-full {
  display: none;
}

.reviewer-name {
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.sale-reviews-list-item .source-review {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

.sale-reviews-list-item .source-review a {
  color: #CC4A00;
  text-decoration: none;
  cursor: pointer;
  text-transform: capitalize;
}

.cs-droneu-reviews .slide-arrow .slick-arrow {
  position: absolute;
  top: calc(50% + 30px);
  transform: translateY(-50%);
  left: -50px;
  width: 45px;
  height: 45px;
  margin: 0;
  border: 1px solid #fff;
  border-radius: 50px;
}
.cs-droneu-reviews.clr-light .slide-arrow .slick-arrow{
  filter: invert(1);
}
.cs-droneu-reviews.clr-light .reviews-section-heading{
  color: #000;
}
.cs-droneu-reviews .slide-arrow .slick-arrow:after{
  content: "" ;
  position: absolute;
  left: -2px;
  top: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid;
  border-left: 1px solid;
  color: #ffffff;
  transform: rotate(135deg);
  bottom: 0;
  margin: auto;
  right: 0;
}

.cs-droneu-reviews .slide-arrow .slick-arrow.slick-prev {
  transform: translateY(-50%) rotateY(-180deg);
}

.cs-droneu-reviews .slide-arrow .slick-arrow.slick-next {
  left: unset;
  right: -50px;
}
.cs-droneu-reviews .slide-arrow .slick-arrow.slick-next:after{
  left: -7px;
}

.cs-droneu-reviews .slide-arrow .slick-arrow::before {
  display: none;
}

.cs-droneu-reviews .slick-arrow{
  font-size: 0 !important;
  background-color: transparent;
  cursor: pointer;
}

.cs-readmore-btn {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  color: #CC4A00;
  font-weight: 900;
  font-size: 16px;
  text-transform: lowercase;
}

.full-review-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  isolation: isolate;
  overflow: hidden;
  overflow-y: auto;
}

.full-review-popup .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
}

.full-review-popup.show {
  display: block;
}

.full-review-container {
  width: 90%;
  max-width: 570px;
  margin: 3rem auto;
  min-height: calc(100% - 6rem);
  display: flex;
  align-items: center;
}

.full-review-contents {
  background-color: transparent;
  width: 100%;
  padding: 0;
  padding-top: 40px;
  position: relative;
}

.full-review-inner {
  background: #FFF;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
  border-radius: 10px;
  isolation: isolate;
  width: 100%;
  padding: 40px 30px 30px;
  position: relative;
}

.full-review-img {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.full-review-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.full-review-img .initialsAsImg {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.full-review-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  width: 28px;
  height: 28px;
  font-size: 30px;
  line-height: 20px;
  border: none;
  padding: 0;
  background: none;
  outline: none;
  cursor: pointer;
}

.full-review-desc {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.full-desc-name {
  margin-top: 10px;
  font-size: 20px;
}

.full-review-inner .reviews-stars .cs-review-star-icon {
  width: 25px;
  height: 25px;
}
.companies-logos .logos-slider:not(.slick-initialized){
  display: flex;
    align-items: center;
  justify-content: space-between;
}
.companies-logos .logos-slider:not(.slick-initialized) li{
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.companies-logos .logos-slider:not(.slick-initialized) li img{
  max-height: 60px;
}
.companies-logos .logos-slider:not(.slick-initialized) li:nth-child(n+5){
  display: none;
}


/* Black friday banner start*/
.black-friday-banner .banner-bg{
    background-size: cover;
    z-index: -1;
}
.bf-sale-live .header-top-bar{
    display: none;
}
.bf-sale-live .header-main{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
}

.logo-light{
    display: none;
}
.bf-sale-live .logo-main img.logo-light {
    display: block;
}

.bf-sale-live .logo-main img{
    display: none;
}

.bf-sale-live .navigation-main ul li a{
    color: #fff;
}

section.hero-banner.black-friday-banner{
    padding-top: 110px;
    color: #fff;
    background: #2f2f2f;
    padding-bottom: 30px;
}

.hero-plan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.plan-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(103.48deg, #FBCF90 9.38%, #E69E58 40.46%, #FFDA9B 61.43%, #FFDC9C 82.47%);
    color: #000;
    text-align: center;
}
.plan-item span{
    font-size: 16px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 6px;
    letter-spacing: 0.1px;
}
.plan-item h3{
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
    margin: 0;
}


.plan-item .seprator{
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0.12%, #c9894b 54%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    margin: 8px 0;
    width: 100%;
}
.plan-item h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.price-with-discount{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.price-with-discount .discount{
    color: rgba(0, 0, 0, 0.5);
    position: relative;
    font-size: 18px;
    font-weight: 600;
}
.price-with-discount .discount:before{
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    top: 0;
    margin: auto;
    height: 1px;
    background-color: #000;
    position: absolute;
}
.price-with-discount .price{
    padding-left: 8px;
}

.price-with-discount .price small {
    font-size: 16px;
    font-weight: 500;
    margin-left: -5px;
    position: relative;
    top: -3px;
}
.price-with-discount .price strong{
    font-size: 36px;
    font-weight: 700;
}
.black-friday-banner .hero-left{
    width: 100%;
} 

.black-friday-banner .hero-bg-shape{
    display: none;
}
.black-friday-banner .drone-img{
    top: 100px;
}

.black-friday-banner .review-block ul li span,
.black-friday-banner .review-block ul li span i{
    color: #fff;
}
.black-friday-banner .hero-right{
    right: -100px;
}
.black-friday-banner .hero-right img{
    max-width: 496px;
}

.bf-sale-live .bf-hide{
    display: none;
}
.black-friday-banner{
    display: none;
}
.bf-sale-live .black-friday-banner{
    display: block;
}

.bf-sale-live .hamburger span{
  background-color: #fff;
}

/* Black friday banner end*/

.online-classes-block .tab-head {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.online-classes-block .tab-head .btn{
  background-color: #fff;
}

.mob-show{
  display: none !important;
}
.online-tab-content .tab-view-content:not(.slick-initialized){
  display: flex;
  gap: 0;
  justify-content: space-between;
}
.online-tab-content .tab-view-content:not(.slick-initialized) .course-card{
    flex: 1;
}
.online-tab-content .tab-view-content:not(.slick-initialized) .course-card:nth-child(n+6){
  display: none !important;
}
.sale-reviews-list:not(.slick-initialized){
  display: flex;
}
.sale-reviews-list:not(.slick-initialized) .sale-reviews-list-item{
  flex: 1;
}
.sale-reviews-list:not(.slick-initialized) .sale-reviews-list-item:nth-child(n+4){
  display: none !important;
}
.bf-sale-live .bf-hero-desc{
  color: #e3e3e3;
  margin-bottom: 20px !important;
}
.bf-sale-live .bf-hero-desc strong{
  color: #FFF;
}
.bf-sale-live .hero-left .btn-block {
  justify-content: center;
}
.bf-sale-live .hero-left .btn-block .btn.btn-primary{
  background: linear-gradient(103.48deg, #FBCF90 9.38%, #E69E58 40.46%, #FFDA9B 61.43%, #FFDC9C 82.47%);
  color: #000;
  box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.34);
}
.view-all-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 20px;
}
.view-all-slide h5 {
  font-size: 18px;
  font-weight: 600;
}
.view-all-slide .btn-secondary {
  background: var(--clr-blue);
}

/* Cyber Monday */

.cm-sale-live .black-friday-banner .banner-bg {
  background-image: url(https://www.thedroneu.com/wp-content/themes/bootstrap-canvas-wp-child/img/cybermonday-bg1.png) !important;
  background-size: auto;
  background-repeat: repeat;
}
.cm-sale-live .hero-plan{
  display: none;
}
.cm-sale-live .hide-cm{
  display: none !important;
}
.show-cm{
  display: none !important;
}
.cm-sale-live .hero-left .btn-block.show-cm {
  display: flex !important;
  justify-content: flex-start;
}
.cm-sale-live .hero-left .btn-block.show-cm .btn-primary{
  background: #FF00B5;
  color: #fff;
}
.cyber-sub-title{
  display: none;
}

.cm-sale-live .hero-left .cyber-sub-title {
  display: block;
  font-size: 37px;
  line-height: 48px;
  background: linear-gradient(155deg,#2bf7ff 20%,#2bf7ff 10%,#ff00b5 50%,#2bf7ff 80%,#2bf7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  margin: 20px 0 10px;
  max-width: 660px;
}

.cm-sale-live .review-block{
  padding-top: 74px;
}

.cm-sale-live .black-friday-banner .hero-bg-shape{
  display: none;
  opacity: 0.6;
}
.cm-sale-live.bf-sale-live .hero-right{
  z-index: 1;
}
.cm-sale-live.bf-sale-live .hero-right img{
  opacity: 1;
}
.cm-sale-live .black-friday-banner .hero-right {
  right: -120px;
  filter: brightness(.75);
}
.hero-bg-shape-cyber,
.hero-bg-shape-extanded{
  display: none;
}

.cm-sale-live .hero-bg-shape-cyber{
  display: block;
}

.hero-bg-shape-cyber {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-shape-cyber img {
  margin-top: -120px;
  margin-right: -110px;
  height: 960px;
  position: relative;
  right: -360px;
}

.hero-bg-shape-extanded {
  position: absolute;
  right: 190px;
  top: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 34%;
}
.cm-sale-live .hero-bg-shape-extanded{
  display: inline-flex;
}

.top-companies-slider__items .top-companies-slider-item.left .cs-slider-info-popup {
  left: 0;
}
.top-companies-slider__items .top-companies-slider-item.right .cs-slider-info-popup {
  left: unset;
  right: 0;
}
.top-companies-slider__items .top-companies-slider-item.left .cs-slider-info-popup::before {
  left: 40px;
}
.top-companies-slider__items .top-companies-slider-item.right .cs-slider-info-popup::before {
  left: unset;
  right: 40px;
}
 .cs-slider-info-popup img {
  margin-bottom: 12px;
  max-height: 70px;
  max-width: 150px;
  display:block;
}
.cs-slider-info-popup{
  display: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  position: absolute;
  width: max-content;
  max-width: 545px;
  background: #FFF;
  padding: 25px;
  border-radius: 9px;
  border-top: 9px solid var(--clr-pri);
  filter: drop-shadow(1px 0px 7px rgba(0,0,0,0.25));
  user-select: text;
  z-index: 9;
  text-align: left;
  transform: translateY(calc(-1 * 100% - 20px));
}
.top-companies-slider__items.slick-initialized .top-companies-slider-item:hover .cs-slider-info-popup {
  /* display: block; */
}
.cs-slider-info-popup a {
  color: var(--clr-pri);
  display: block;
  margin-top: 5px;
}
/* .top-companies-slider-item.slick-current .cs-slider-info-popup {
  transform: scale(calc(1/1.15));
  bottom: 100%;
} */
.cs-slider-info-popup h3 {
  font-size: 22px;
  color: #001B26;
  font-weight: 600;
  margin-bottom: 10px;
}
.cs-slider-info-popup::before {
  content: '';
  width: 28px;
  height: 28px;
  background: #FFF;
  bottom: -20px;
  left: 50%;
  left: var(--arrow-pos);
  display: inline-block;
  position: absolute;
  border-radius: 0 0 10px 0;
  transform: rotate(45deg) translateX(-50%);
}
.cs-slider-info-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  height: 25px;
  width: 100%;
  background: transparent;
  left: 0;
}
.cs-slider-info-popup ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}
.cs-slider-info-popup ul li:last-child{
  margin: 0;
}
.cs-slider-info-popup ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 17px;
  height: 10px;
  border-left: 4px solid var(--clr-pri);
  border-bottom: 4px solid var(--clr-pri);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.tabbing-block.tabbing-block--more .tab-head{
  flex: 0 0 calc(100% - 107px);
  max-width: calc(100% - 107px);
}
.tabbing-block.tabbing-block--more .tabs-ui{
  flex: 0 0 calc(100% - 240px);
  max-width: calc(100% - 240px);
}
.tabbing-block.tabbing-block--more .tabs-ui.cs-tabs-loading > ul{
  max-height: 46px;
  overflow: hidden;
  flex-wrap: wrap;
}
.tabbing-block.tabbing-block--more .more-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0px;
  width: max-content;
  background: #fff;
  flex-direction: column;
  max-height: 250px;
  overflow: auto;
  display: none;
  padding: 10px 10px;
  z-index: 99;
  margin-top: 8px;
  border-radius: 8px;
  box-shadow: 0px 27px 11px rgba(0, 0, 0, 0.01), 0px 15px 9px rgba(0, 0, 0, 0.05), 0px 7px 7px rgba(0, 0, 0, 0.09), 0px 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #d0d0d0;
}
.tabbing-block.tabbing-block--more .more-item .dropdown-menu li {
  margin-bottom: 5px;
}
.tabbing-block.tabbing-block--more .more-item .dropdown-menu li a {
  display: flex;
  padding: 8px 8px;
  /* color: var(--clr-primary); */
  font-weight: 600;
  border-radius: 6px;
}
.tabbing-block.tabbing-block--more .tabs-ui > ul > li.more-item > a {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: #F5F5F5;
  border-radius: 55px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.tabbing-block.tabbing-block--more .tabs-ui > ul > li.more-item > a span {
  width: 4px;
  height: 4px;
  background: #0C87C3;
  border-radius: 20px;
}
.tabbing-block.tabbing-block--more .more-item {
  position: relative;
  align-self: center;
}
.tabbing-block.tabbing-block--more .tab-head ul{
  width: 100%;
}
.tabbing-block.tabbing-block--more .tab-head ul li{
  display: block;
  width: max-content;
}
.cs-dashicon{
  font-family: 'dashicons';
  font-style: normal;
}
.cs-icon.icon-check:before{
  color: inherit;
}
.navigation-main .cs-new-tab a::after {
    content: 'New';
    position: absolute;
    top: 3px;
    background: #F00;
    padding: 1px 4px;
    border-radius: 4px;
    color: #FFF;
    font-size: 12px;
    right: 0;
    transform: translate(50%, -50%);
    font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .quick-links ul li a:hover {
    color: var(--clr-pri);
    transform: translateX(5px);
  }
}

@media screen and (min-width: 992px) {
  .cs-cta-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1500px){
  .cs-droneu-reviews .slide-arrow .slick-arrow {
    left: -25px;
    z-index: 9;
  }
  .cs-droneu-reviews .slide-arrow .slick-arrow.slick-next {
    right: -25px;
  }
}
@media screen and (max-width: 1400px) {
  .sale-reviews-list {
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 1300px) {
  .hero-left h1 {
    font-size: 42px;
    line-height: 52px;
  }

  .hero-left p {
    font-size: 17px;
    line-height: 28px;
  }

  .container-main {
    padding: 0 24px;
  }

  .hero-right {
    right: -80px;
    bottom: -5px;
  }

  .hero-bg-shape {
    right: -82px;
  }

  .review-block ul {
    gap: 30px;
  }

  .review-block ul li span {
    font-size: 24px;
    line-height: 32px;
  }
  .review-block ul li span i.icon-star {
    font-size: 14px;
  }
  ul.logos-slide {
    gap: 18px;
  }
  .navigation-main ul li a {
    font-size: 14px;
  }

  .navigation-main ul {
    gap: 22px;
  }

  .header-main .header-left {
    font-size: 26px;
  }

  .trusted-companies h5 {
    font-size: 18px;
    line-height: 26px;
  }

  .heading-md {
    font-size: 36px;
  }

  .tab-head ul li a {
    font-size: 19px;
    padding: 12px 16px 16px 16px;
  }

  .course-card .course-content h5 {
    font-size: 20px;
    line-height: 26px;
  }

  .course-card .course-content p {
    font-size: 16px;
  }

  .step-choose-head .stepper ul li a {
    font-size: 13px;
    gap: 6px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .step-choose-head .stepper ul {
    gap: 14px;
  }

  .choose-left-content {
    padding: 52px 43px 38px 44px;
  }

  .choose-right-content {
    width: 50%;
  }

  .left-podcast {
    flex: 0 0 455px;
    max-width: 455px;
  }

  .right-podcast {
    flex: 1 0 50%;
    max-width: 50%;
    padding-top: 20px;
    padding-left: 10px;
  }

  .right-podcast .podcaset-title h5 {
    font-size: 30px;
  }

  .right-podcast .podcaset-title p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 22px;
  }

  .right-podcast .record-voice-block p {
    font-size: 14px;
    margin-bottom: 12px;
    margin-bottom: 7px;
  }

  .right-podcast .podcaset-title ul li:first-child {
    padding-right: 44px;
  }

  .right-podcast .podcaset-title ul li:last-child {
    padding-left: 44px;
  }

  .right-podcast .podcaset-title ul li span {
    font-size: 28px;
  }

  .right-podcast .podcaset-title ul li label {
    font-size: 18px;
  }

  .record-voice {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .p-remove-for-tab{
    display: none;
  }

  .right-podcast .record-voice-block {
    max-width: 350px;
    text-align: center;
  }

  .content-success-story h6 {
    font-size: 18px;
    line-height: 26px;
  }

  .content-success-story .user-info span {
    font-size: 18px;
  }

  .head-access-block h4 {
    font-size: 30px;
    line-height: 38px;
  }

  .head-access-block h4 strong {
    font-size: 42px;
    line-height: 60px;
  }

  .course-specifications {
    padding: 40px 34px;
  }

  .course-specifications ul li {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .quick-links {
    gap: 40px;
  }

  .footer-main-ui .container-main {
    gap: 84px;
  }

  .header-right a.btn {
    font-size: 14px;
  }

  .cs-droneu-reviews .sale-reviews-list-item {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 35px;
  }

  .sale-reviews-content .cs-reviewer-img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin-top: -35px;
  }

  .cs-droneu-reviews .slide-arrow .slick-arrow {
    background-color: rgba(0, 0, 0, 0.6);
    background-position: center;
    border-radius: 50%;
  }
  .online-tab-content .tab-view-content:not(.slick-initialized) .course-card:nth-child(n+5){
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .cm-sale-live .black-friday-banner .hero-right{
    right: -160px;
  }
  .hero-bg-shape-extanded{
    width: 30%;
    right: 100px;
  }
  .cs-slider-info-popup {
    font-size: 17px;
    padding: 20px;
}
.top-companies-slider__items .top-companies-slider-item.left .cs-slider-info-popup::before {
    left: 30px;
}
.top-companies-slider__items .top-companies-slider-item.right .cs-slider-info-popup::before {
    right: 30px;
}
.cs-slider-info-popup::before {
    width: 20px;
    height: 20px;
    bottom: -17px;
}
}


@media screen and (max-width: 1100px) {
  .quick-links ul {
    flex: 1;
  }

  .quick-links {
    flex-direction: column;
    gap: 0;
  }

  .footer-main-ui .container-main {
    gap: 54px;
  }

  .footer-sm-inner .copyright p,
  .footer-sm-links ul li a {
    font-size: 12px;
  }

  .footer-social-link ul li a {
    font-size: 20px;
  }

  .footer-links {
    flex: 1 0 auto;
  }

  .header-main .header-left {
    gap: 26px;
  }

  .navigation-main ul {
    gap: 14px;
  }

  .header-right a.btn {
    font-size: 13px;
  }

  .header-right a.btn.btn-primary {
    padding: 0 16px;
    height: 40px;
    min-height: 40px;
  }

  .header-right {
    gap: 10px;
  }

  .logo-main img {
    max-width: 130px;
  }
  .reviews-section-heading p {
    font-size: 20px;
  }

  .reviewer-name {
    font-size: 16px;
  }
  .online-tab-content .tab-view-content:not(.slick-initialized) .course-card:nth-child(n+4){
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .header-right,
  .navigation-main {
    display: none;
  }

  .hamburger {
    width: 40px;
    height: 40px;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    justify-content: center;
  }

  .hamburger span {
    width: 23px;
    height: 2px;
    display: block;
    background: #0d1314;
    border-radius: 2px;
  }

  .hamburger span.two {
    width: 12px;
  }

  .hero-right,
  .hero-bg-shape {
    right: 0;
  }

  .hero-left {
    max-width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-bg-shape {
    position: inherit;
  }

  .hero-banner .container-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-banner {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .hero-banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    animation: 1;
  }

  .right-hero-wrap {
    margin-left: auto;
    margin-top: 40px;
    position: absolute;
    right: -70px;
    bottom: 0;
    opacity: 1;
    transform: scale(0.8);
    z-index: 0;
    z-index: -1;
  }
  .banner-bg {
    z-index: -1;
  }

  .drone-img {
    height: 80px;
    bottom: auto;
    left: 330px;
  }

  .stepper {
    overflow: auto;
    white-space: nowrap;
    margin: 0 -24px;
    padding: 0 24px;
  }

  .stepper::-webkit-scrollbar {
    display: none;
  }

  .choose-right-content {
    padding-left: 0;
  }

  .podcaset-block .flex.justify-between {
    flex-direction: column;
  }

  .left-podcast {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .right-podcast {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 30px 0 0 0;
  }

  .right-podcast .record-voice-block {
    max-width: 100%;
    text-align: left;
  }

  .record-voice {
    flex-direction: row;
    gap: 30px;
  }
  .p-remove-for-tab{
    display: block;
  }

  .header-top-bar {
    display: none;
  }

  section.podcaset-block .watermark-droneu {
    font-size: 13vw;
    height: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .access-card-inner {
    flex-direction: column;
  }

  .head-access-block {
    padding: 30px;
    max-width: 100%;
    flex: auto;
  }

  .footer-brand {
    flex: 0 0 262px;
  }

  .footer-main-ui .container-main {
    gap: 34px;
  }

  .quick-links ul li a {
    font-size: 14px;
  }

  .footer-sm-inner {
    grid-template-columns: 1fr;
  }

  .footer-social-link ul,
  .footer-sm-links ul {
    justify-content: flex-start;
  }

  .footer-sm-inner .copyright p {
    text-align: left;
  }

  .copyright {
    order: 3;
  }

  .quick-links ul li a {
    font-size: 13px;
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: #fff;
    z-index: 99;
    margin-top: 70px;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    display: flex;
    transform: translateX(100%);
    transition: all 0.3s ease;
    overflow: auto;
  }

  .mobile-nav.active {
    display: flex;
    transform: translateX(0);
  }

  .mobile-nav ul li {
    padding: 4px 0;
    margin-bottom: 26px;
  }

  .mobile-nav ul li a {
    font-size: 18px;
    color: #00112c;
    display: block;
  }

  .mobile-nav ul {
    flex: 1;
  }

  .mob-login {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .mob-login .btn-text {
    color: #001b26;
    font-size: 18px;
    font-weight: 500;
  }

  .mob-login .btn-text .icon-arrow-right {
    font-size: 13px;
  }

  .nav-active,
  .nav-active body {
    overflow: hidden;
  }

  .mobile-nav ul li.student-login {
    display: none;
  }
  .footer-trust{
    gap: 12px;
  }
  .footer-links:not(.footer-link-lg){
    flex: 0 0 126px;
  }
  .reviews-section-heading h2 {
    font-size: 24px;
  }

  .reviews-section-heading p {
    font-size: 18px;
  }

  .cs-droneu-reviews .slide-arrow .slick-arrow {
    z-index: 1;
    width: 40px;
    height: 40px;
  }

  .sale-reviews-content .cs-reviewer-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-top: -30px;
  }

  .sale-reviews-list-item {
    padding-top: 30px;
  }
  .companies-logos .logos-slider:not(.slick-initialized) li:nth-child(n+3){
    display: none;
  }
  .sale-reviews-list:not(.slick-initialized) .sale-reviews-list-item:nth-child(n+3){
    display: none !important;
  }
  .hero-bg-shape-extanded {
    position: relative;
    right: 12px;
    width: 210px;
  }
  .cm-sale-live .black-friday-banner .hero-right{
    right: -10px;
  }
  .cm-sale-live .hero-bg-shape-cyber{
    display: none;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 86px;
  }

  .hero-left h1 {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 1px;
  }

  .hero-left p {
    font-size: 16px;
    line-height: 25px;
  }

  .btn {
    height: 50px;
    min-height: 52px;
    padding: 0 28px;
    font-size: 16px;
  }
  .hero-action-header,
  .review-block {
    padding-top: 28px;
  }

  .review-block ul li span {
    letter-spacing: -2px;
    font-size: 24px;
  }

  .review-block ul li {
    min-width: 95px;
  }

  .review-block ul li label {
    flex-direction: column;
    align-items: flex-start;
    color: #3a4b55;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-banner {
    padding-top: 28px;
    padding-bottom: 34px;
  }
  .drone-img {
    left: 330px;
  }
  .drone-img img {
    max-height: 60px;
  }

  .trusted-companies h5 {
    font-size: 16px;
    line-height: 22px;
  }
  .trusted-companies {
    padding: 20px 0;
  }

  .review-block ul li.trustpilot label img,
  .review-block ul li label img {
    margin: 0;
    height: 20px;
  }

  .trusted-companies .container-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .trusted-companies .left-block {
    border-right: none;
    max-width: 100%;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
  }

  .companies-logos {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .companies-logos .slick-slide {
    padding: 0;
    justify-content: flex-start;
  }

  .companies-logos .slick-slide img {
    max-width: 70%;
    max-height: 40px;
  }

  .hero-bg-shape {
    height: 336px;
  }

  .hero-bg-shape img {
    max-width: 100%;
  }

  .right-hero-wrap {
    margin-left: auto;
    margin-top: 40px;
    margin-right: -30px;
    transform: scale(0.7);
    right: -44px;
    top: auto;
    bottom: 0;
    transform-origin: bottom right;
  }

  .heading-md {
    font-size: 24px;
    letter-spacing: -1px;
  }

  .tabbing-block {
    padding-top: 10px;
  }

  .online-classes-block {
    padding: 17px 0;
  }

  .tab-head-action .slider-btns {
    display: none;
  }

  .tab-content {
    padding-top: 23px;
  }

  .course-card .course-img img {
    height: 188px;
  }

  .course-card .course-content {
    padding: 20px 20px 10px;
    min-height: 130px;
  }

  .course-card .course-content h5 {
    letter-spacing: 0.6px;
    margin-bottom: 7px;
    font-size: 18px;
  }
  .record-voice {
    gap: 18px;
  } 
  .course-card .course-content p {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 19px;
  }

  .action-course {
    padding: 0 20px 24px 20px;
  }

  .action-course a {
    width: 30px;
    height: 24px;
    font-size: 11px;
  }

  .online-classes-block .btn-block {
    padding-top: 32px;
  }

  .btn.outline {
    padding-left: 23px;
    padding-right: 23px;
  }

  .step-choose-head .heading-md {
    text-align: left;
  }

  .step-choose-head .stepper ul li a {
    font-size: 13px;
  }

  .tab-content-choose {
    flex-wrap: wrap;
  }

  .choose-left-content {
    padding: 30px 24px 26px 24px;
  }

  .choose-left-content figure img {
    max-width: 112px;
  }

  .choose-left-content figure {
    margin-bottom: 32px;
  }

  .choose-left-content h5 {
    font-size: 20px;
    line-height: 26px;
  }

  .choose-left-content p {
    line-height: 24px;
    letter-spacing: -0.56px;
    font-size: 15px;
  }
  .podcast-indicate-block a img {
    max-height: 60px;
  }

  .podcast-indicate-block a span {
    font-size: 13px;
  }

  .choose-left-content .btn-block {
    padding-top: 15px;
  }

  .choose-right-content {
    padding: 5px 24px 20px;
  }

  .choose-right-content img {
    height: auto;
  }

  section.trusted-companies.featured-block {
    padding-top: 60px;
  }

  .online-classes-block.person-training {
    padding-bottom: 38px;
  }

  section.podcaset-block {
    padding-top: 34px;
  }

  .left-podcast h4 {
    padding: 6px 10px;
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .poster-img img {
    height: 278px;
  }

  .video-block-postcast h6 {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .right-podcast {
    padding-top: 43px;
  }

  .right-podcast .podcaset-title h5 {
    letter-spacing: -1px;
    margin-bottom: 6px;
    font-size: 24px;
  }

  .right-podcast .podcaset-title p {
    font-size: 16px;
    line-height: 21px;
  }

  .right-podcast .record-voice-block {
    padding-top: 25px;
  }

  .right-podcast .podcaset-title ul li span {
    font-size: 24px;
  }

  .right-podcast .podcaset-title ul li:last-child {
    padding-left: 24px;
  }

  .right-podcast .podcaset-title ul li label {
    font-size: 15px;
  }

  .right-podcast .record-voice-block p {
    font-size: 10px !important;
    letter-spacing: 0.9px;
    margin-bottom: 2px;
  }

  .video-recorder-message i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .video-recorder-message {
    font-size: 12px;
  }

  .video-recorder-message {
    height: 44px;
  }

  .record-voice-block a.btn.btn-text {
    min-height: 0;
    height: auto;
    font-size: 12px;
    width: 88px;
  }

  .btn.btn-text .icon-arrow-right {
    font-size: 8px;
  }

  section.podcaset-block {
    padding-bottom: 73px;
  }

  .success-story {
    padding-top: 53px;
    padding-bottom: 40px;
  }

  .success-story .tab-head-action {
    margin-bottom: 25px;
  }

  .success-img img {
    height: 188px;
  }

  .play-btn {
    width: 46px;
    height: 46px;
    left: 18px;
    bottom: 18px;
    font-size: 18px;
  }

  .content-success-story {
    padding-top: 15px;
  }

  .content-success-story h6 {
    font-size: 16px;
    line-height: 23px;
  }

  .content-success-story .user-info span {
    font-size: 16px;
  }

  .content-success-story .user-info label {
    font-size: 12px;
  }

  .head-access-block {
    border-radius: 16px 16px 0 0;
  }

  .head-access-block {
    padding: 37px 23px 30px 23px;
  }

  .head-access-block h4 {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 25px;
  }

  .head-access-block h4 strong {
    font-size: 26px;
    line-height: 36px;
  }

  .head-access-block p {
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0; 
    line-height: 16px;
  }

  .newsletter-block input {
    height: 50px;
    padding: 14px 20px;
    font-size: 12px;
  }

  .newsletter-block .btn-primary {
    position: absolute;
    right: 7px;
    top: 0;
    margin: auto;
    padding: 0;
    width: 48px;
    height: 39px;
    min-height: 0;
  }

  .course-specifications {
    padding: 32px 24px;
    gap: 22px;
  }

  .course-specifications h5 {
    font-size: 16px;
  }

  .course-specifications ul li {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .course-specifications ul li::before {
    font-size: 12px;
  }

  .review-block ul li span i.icon-star {
    margin-top: -2px;
  }

  section.why-choose-block {
    padding-top: 38px;
  }

  .container-main {
    padding: 0 16px;
  }

  .access-courses {
    padding-bottom: 52px;
  }

  .footer-main-ui .container-main {
    flex-direction: column;
  }

  .choose-left-content {
    max-width: 100%;
    width: 100%;
  }

  .choose-right-content {
    width: 100%;
  }

  ul.logos-slide {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  ul.logos-slide li {
    flex: 1 0 40%;
  }

  ul.logos-slide li img {
    display: block;
  }

  .trusted-companies.featured-block .left-block {
    border-bottom: none;
    padding-bottom: 0;
  }

  .drone-img-line {
    display: none;
  }

  .action-course .price {
    font-size: 28px;
  }

  .no-course img {
    max-width: 160px;
  }

  .no-course {
    height: 445px;
  }

  .course-card {
    margin: 0 8px;
  }

  .tab-view-content .slick-list {
    margin: 0 -8px;
  }

  .quick-links ul li {
    list-style: none;
  }
  .footer-links h5 {
    margin-bottom: 10px;
  }
  .stepper-slider::before,.stepper-slider::after{
    display:none !important;
  }
  .hero-left .btn-block.cs-single-btn{
    margin-top: 28px;
  }
  .companies-logos .logos-slider:not(.slick-initialized) li:nth-child(n+5){
    display: none;
  }
  .mob-show{
    display: block !important;
  }
  .mob-hide{
    display: none;
  }
  .sale-reviews-list:not(.slick-initialized) .sale-reviews-list-item:nth-child(n+2){
    display: none !important;
  }
  .cm-sale-live .hero-left .cyber-sub-title{
    font-size: 28px;
    line-height: 34px;
    max-width: 540px;
  }
  .cm-sale-live .drone-img{
    left: 200px;
  }
  .cs-slider-info-popup {
    max-width: 400px;
    font-size: 16px;
}
.tabbing-block.tabbing-block--more .tabs-ui,
.tabbing-block.tabbing-block--more .tab-head{
  flex: 1 !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.tabbing-block.tabbing-block--more .tabs-ui{
  flex: none !important;
  max-width: inherit !important;
  overflow: auto;
  margin: 0;
  width: auto;
  padding: 0 14px;
  border-bottom: 1px solid #d0d0d0;
  -ms-overflow-style: none; /* IE 11 */
  scrollbar-width: none; /* Firefox 64 */
}
.tabbing-block.tabbing-block--more .tabs-ui::-webkit-scrollbar{
  display: none;
}
.tabbing-block.tabbing-block--more .tabs-ui > ul {
  justify-content: flex-start;
  width: max-content;
}
.tabbing-block.tabbing-block--more .tabs-ui > ul > li.more-item {
  display: none !important;
}
.tabbing-block.tabbing-block--more .tabs-ui > ul > li:not(.more-item){
  display: inline-block !important;
}
.tabbing-block.tabbing-block--more .tabs-ui > ul{
  gap: 0;
}
.sale-reviews-list .slick-track{
  align-items: center;
}
.online-tab-content .tab-view-content:not(.slick-initialized) .course-card:nth-child(n+3){
  display: none !important;
}
}
@media screen and (max-width: 600px){
  .cm-sale-live .hero-left .cyber-sub-title{
    max-width: 90%;
    font-size: 20px;
    line-height: 30px;
  }
  .cm-sale-live .black-friday-banner .hero-right{
    filter: brightness(.5);
  }
}

@media screen and (max-width: 575px) {
  .hero-left h1 .gradient-text {
    display: flex;
    background: inherit;
    color: #1881e1;
    -webkit-text-fill-color: inherit;
    letter-spacing: 0.8px;
  }

  .footer-bottom {
    overflow: hidden;
  }

  .footer-bottom img {
    max-width: 150%;
  }

  ul.logos-slide li {
    flex: 1 0 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
  }

  ul.logos-slide {
    row-gap: 20px;
  }
  .drone-img {
    left: 140px;
  }
  .hero-left .btn-block .btn {
    font-size: 14px;
    padding: 0px 17px;
    min-height: 44px;
    height: 44px;
  }
  .companies-logos .slick-slide{
    justify-content: center;
  }
  .companies-logos .logos-slider:not(.slick-initialized) li:nth-child(n+4){
    display: none;
  }
  .cs-droneu-reviews .slide-arrow .slick-arrow {
    width: 36px;
    height: 36px;
  }
  .cs-droneu-reviews .slide-arrow .slick-arrow:after {
    width: 8px;
    height: 8px;    
  }
}
@media screen and (max-width: 525px){
  .online-tab-content .tab-view-content:not(.slick-initialized) .course-card:nth-child(n+2){
    display: none !important;
  }
}
@media screen and (max-width: 450px) {
  .tab-head ul {
    gap: 5px;
  }
  .tab-head ul li a {
    font-size: 17px;
    padding: 12px 12px 16px;
  }
  .hero-left .btn-block .btn {
    min-width: 220px;
    font-size: 13px;
  }
}
@media screen and (max-width: 425px){
  .companies-logos .logos-slider:not(.slick-initialized) li:nth-child(n+3){
    display: none;
  }
}

/* Black friday banner start*/

@media screen and (max-width: 991px){
  .bf-sale-live .hero-banner:before{
      display: none;
  }
}

@media screen and (max-width: 767px){
  .bf-sale-live .plan-item h3{
      font-size: 24px;
  }
  .bf-sale-live .plan-item h4{
      font-size: 16px;
  }
  .price-with-discount .price strong{
      font-size: 32px;
  }
  .bf-sale-live .review-block ul li label{
      color: #fff;
  }
}

@media screen and (max-width: 575px){
  .bf-sale-live .hero-plan{
      grid-template-columns: 1fr;
  }
  .cs-slider-info-popup {
    max-width: 340px;
}
}
/* Black friday banner end*/
@media screen and (max-width: 424px) {
  .cs-slider-info-popup {
      max-width: 250px;
      font-size: 15px;
      padding: 15px 15px 20px 15px;
  }
  .top-companies-slider-item .cs-slider-info-popup img {
      margin-bottom: 10px;
  }
  .top-companies-slider__items .top-companies-slider-item.slick-current.right .cs-slider-info-popup {
      right: -17px;
  }
}