/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: 'Segoe UI', sans-serif;
  color: #444444;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #190e52;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Segoe UI', sans-serif;
}

:root {
  --primary: #1F1566;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--primary);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primary);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.back-to-top:hover i {
  color: var(--primary);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #DFDFDF;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--primary);
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  flex: 1;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  flex: 1;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 700;
  color: #35119A;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #FF8000;
}


/* 
#header.header-scrolled .navbar a.nav-link,
#header.header-scrolled .navbar a.nav-link:focus{
  color: #fff;
}
#header.header-scrolled .navbar .getstarted, 
#header.header-scrolled .navbar .getstarted:focus{
  border: 2px solid #fff;
  color: #fff;
} */

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: var(--primary);
  font-size: 14px;
  border: 2px solid var(--primary);
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #190e52;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 600;
  color: var(--primary);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .dropdown-main {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  margin-left: 20px;
}

.navbar a.main-dropdown,
.navbar a.main-dropdow:focus {
  color: #fff;
  padding: 0;
}

.dropdown:hover a.main-dropdown {
  color: #fff;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: 100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: var(--primary);
  border-radius: 5px;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.navbar ul.mobile-menu {
  display: none;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar ul.desktop-menu {
    display: none;
  }

  .navbar.navbar-mobile ul.mobile-menu {
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.5s;

}

.navbar-mobile {
  animation: example .5s ease-in-out;
}

@keyframes example {
  0% {
    transform: translateY(-110%);
  }

  100% {
    transform: translateY(0%);
  }
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--primary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: var(--primary);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: none;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 5px 10px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
  margin-top: 0px;
}

.h-fit-content {
  height: fit-content;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-hero {
  width: 100%;
  height: 95vh;
  background-color: #dfdfdf;
  background-position: bottom;
  background-size: cover;
}

.container-fluid {
  max-width: 95%;
}

.banner-hero .container {
  padding-top: 72px;
}

.banner-hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #000;
}

.banner-hero h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 24px;
}

/* .banner-hero .btn-explore {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  border: 1px solid transparent;
  margin: 10px 0 0 0;
  color: #fff;
  background: var(--primary);
}

.banner-hero .btn-explore:hover {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
} */

.banner-hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

.banner-hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

.banner-hero .btn-watch-video:hover i {
  color: var(--primary);
}

.banner-hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.home-page-banner {
  background-image: url("https://orbittraining.ae/public/assets/img/hero-bg.png");
}

.course-inner-banner {
  background-image: url("https://orbittraining.ae/public/assets/img/Group 243.png");
}

.training-language-banner {
  background-image: url("https://orbittraining.ae/public/assets/img/Mask Group 12.png");
}
.Workshop-banner {
  background-image: url("https://orbittraining.ae/public/assets/img/Mask Group 12.png");
}
div.text-wraning{
  font-size: 1.5rem;
  font-weight: 600;
}


@media (max-width: 991px) {
  .banner-hero {
    height: auto;
    text-align: center;
  }

  .banner-hero .animated {
    animation: none;
  }

  .home-page-banner {
    background-color: transparent;
    min-height: 75vh;
  }

  .banner-hero .hero-img {
    text-align: center;
  }

  .banner-hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .banner-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .banner-hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .banner-hero .hero-img img {
    width: 70%;
  }

}

@media (max-width: 575px) {
  .banner-hero .hero-img img {
    width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #EFEFEF;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title span.text-primary {
  text-decoration: underline;
}

.section-title h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000;
}

span.text-primary {
  color: var(--primary) !important;
}

/* .section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
} */

/* .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: calc(50% - 20px);
} */

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  overflow-y: hidden !important;
}

.clients img {
  max-width: 70%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

.Specialist ul {
  list-style: none;
  padding-left: 0;
}

.review-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  
}

.Specialist h2 {
  font-size: 30px;
  font-weight: 700;
  max-width: 530px;
  color: #000;
}

.Specialist p {
  color: #000;
}

.review-box h3 {
  font-weight: 700;
  color: var(--primary);
}

.review-box .gogle-text {
  font-size: 52px;
}

.review-box ul li {
  color: var(--primary);
  padding-left: 15px;
  position: relative;
}

.review-box ul li svg {
  position: absolute;
  left: 0px;
  top: 5px;
}

.review-box h3 {
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--primary);
}

.review-box h6 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.mt-60 {
  margin-top: 60px;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.pro-skills-box {
  position: relative;
}

.pro-skills-box svg {
  width: 1067px;
  filter: drop-shadow(6px 20px 10px rgba(0, 0, 0, 0.16));
}

.proskills-img img {
  top: 20px;
  position: relative;
  left: -80px;
  z-index: -1;
}

.pro-skills-inner {
  position: absolute;
  top: 79px;
  left: 205px;
  /* transform: translate(-50%,-50%); */
  width: 660px;
}

.pro-skills-inner h2 {
  font-size: 30px;
  line-height: 50px;
  font-weight: 700;
  color: #000;
  max-width: 482px;
}

.pro-skills-inner h2 span {
  color: var(--primary);
  text-decoration: underline;
}

.pro-skills-inner p {
  font-size: 28px;
  line-height: 32px;
  color: #000;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--primary);
  line-height: 1;
}


.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--primary);
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--primary);
}

.about .content .btn-learn-more:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}


.skills-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.why-us .accordion-list {
  padding: 0;
}

.numbering-box {
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  height: 80px;
  font-weight: 600;
  font-size: 45px;
  margin-right: 15px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
}

.why-us .accordion-list h2 {
  display: block;
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  color: #000;

}

.why-us .accordion-list p {
  margin-bottom: 0;
  margin: 10px 0 0 0;
  color: #707070;
  font-size: 18px;
  line-height: 25px;
  max-width: 710px;

}

.skills-image {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}


@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {


  .why-us .content {
    padding-top: 30px;
  }

}

@media (max-width: 575px) {
  .skills-image {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--primary);
  font-family: 'Segoe UI', sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary);
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  color: var(--primary);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 10px;
  transition: all ease-in-out 0.4s;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.shape-bg {
  position: relative;
}

.icon-s {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scolor1 a {
  color: #631F7E;
}

.scolor2 a {
  color: #5555EC;
}

.scolor3 a {
  color: #F17777;
}

.scolor4 a {
  color: #F2A960;
}

.scolor5 a {
  color: #BF4AEE;
}



.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: var(--primary);
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  transition: ease-in-out 0.3s;
  font-weight: 700;
}

.btn-explore:focus {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
}

.btn-explore {
  padding: 8px 20px;
  border-radius: 50px !important;
  color: var(--primary);
  font-size: 16px;
  border: 2px solid var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  transition: .3s all ease-in-out;

}

.btn-explore:hover {
  color: #fff;
  background: var(--primary);
}

.btn-explore svg {
  width: 18px;
  height: 18px;
}

.btn-explore svg path {
  stroke: var(--primary);
}

.btn-explore:hover svg path {
  stroke: #fff;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box .shape-bg img ,.services .icon-box .shape-bg svg {
  transition: all .3s ease-in-out;
}

.services .icon-box:hover .shape-bg img ,.services .icon-box:hover .shape-bg svg {
  transform: scale(0);
}

.services .icon-box:hover .shape-bg .icon-s img ,.services .icon-box:hover .shape-bg .icon-s svg {
  transform: scale(1.2);
}

.services .icon-box:hover h4 a {
  color: var(--primary);
}

.Costumer .icon img {
  width: 100px;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--primary);
  border: 2px solid var(--primary);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px;
  font-family: 'Segoe UI', sans-serif;
  border-bottom: 2px solid transparent;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  position: unset !important;
}

.portfolio .portfolio-item .card {
  min-height: 400px;
}
.portfolio-item .card .card-title{
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browse-more-files {
  background-color: var(--primary);
  font-size: 40px;
  color: #fff;
  padding: 10px 40px;
  border: 1px solid transparent;
  transition: all .3s ease-in-out;
}

.browse-more-files:hover {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary) !important;
}

.card-image-wrap {
  overflow: hidden;
}

.card-title {
  font-size: 21px;
  font-weight: 500;
}

.card-image-wrap img {
  transition: .3s all ease-in-out;
  ;
  width: 100%;

}

.card-image-wrap:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.review-star svg path {
  fill: #FFC421 !important;
}

.desgin-btn {
  background-color: #C6AFC9;
  color: var(--primary);
  font-size: 10pt;
  line-height: 24px;
  padding: 0px 5px;
  border-radius: 5px;
  font-weight: 700;
}

.lecture-box svg,
.time-box svg {
  width: 20px;
  height: 20px;
}

.lecture-box svg path,
.time-box svg path {
  fill: var(--primary);
}

.name-box {
  text-transform: uppercase;
  font-size: 21pt;
  border-radius: 50%;
  padding: 10px;
  background-color: #AEAEF9;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details-slider {
  height: fit-content;
}

.portfolio-details-slider img {
  width: 100%;
}

.portfolio-details-slider .icon-box.text-center p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-details-slider .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.Costumer .icon-box {
  min-height: 258px;
}

.Costumer .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary);
}

.portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}

.Costumer .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.Costumer .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.Costumer .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.Costumer .portfolio-info ul li+li {
  margin-top: 10px;
}

.Costumer .portfolio-description {
  padding-top: 30px;
}

.Costumer .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.Costumer .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  position: relative;
  padding: 30px;
  border-radius: 5px;
  transition: 0.5s;
  height: fit-content;
  margin: 0 auto;
}

.carrer-title {
  max-width: 772px;
  text-align: center;
  margin: 0 auto;
  line-height: 60px;
}

.team .pic {
  overflow: hidden;
  width: 100px;
  border-radius: 50%;
}

.team .pic img {
  transition: ease-in-out 0.3s;
}


.team h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--primary);
}


.team p {
  margin: 10px 0 0 0;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

/* .pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
} */

.pricing a {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 30px;
  color: var(--primary);
  text-decoration: underline;
}

.pricing h4 {
  font-size: 48px;
  color: var(--primary);
  font-weight: 400;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: var(--primary);
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0 0 0;
  list-style: none;
  color: #000;
  text-align: left;
  line-height: 24px;
}

.border-start-2 {
  border-left: 2px solid var(--primary);
}

.pricing ul li {
  padding: 10px 0 10px 20px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
}

.pricing ul svg {
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 15px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: var(--primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
  transition: 0.3s;
  border: 1px solid var(--primary);
}

.pricing .buy-btn:hover {
  background: var(--primary);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--primary);
}

.pricing .featured .buy-btn {
  background: var(--primary);
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
/* .faq .faq-list {
  padding: 0 100px;
} */

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  padding-right: 30px;
  background: #F3F3F3;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  padding: 0;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0px;
  left: 20px;
  color: var(--primary);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: -10px;
  top: 0;
  color: #FF8000;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #000;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #000;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

section {
  position: relative;
}

.bg-shapes {
  position: absolute;
  z-index: -11;
}

.bg-shapes.bg-shape-1 {
  top: 30px;
  right: -280px;
}

.bg-shapes.bg-shape-2 {
  bottom: 150px;
  left: -250px;
}

.bg-shapes.bg-shape-3 {
  top: -150px;
  right: -420px;
}

.bg-shapes.bg-shape-4 {
  bottom: -280px;
  right: -110px;
}

.bg-shapes.bg-shape-5 {
  top: -200px;
  left: -440px;
}

.bg-shapes.bg-shape-6 {
  top: -310px;
  left: -330px;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  background-color: var(--primary);
  color: #fff !important;
  max-width: 600px;
  border-radius: 20px;
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow: hidden;
}

.info-wrap-location {
  color: #fff;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px dotted #fff;
}

.contact .info i {
  font-size: 28px;
  color: #fff;
  min-width: 44px;
  height: 44px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 30px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #fff;
}

.contact .info p {
  padding: 0 0 0px 20px;
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
}


.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--primary);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #fff;
  color: var(--primary);
  border: 1px solid #fff;
}

.contact-form-wrap {
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.form-check-input {
  height: auto !important;
  border-radius: 4px !important;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.has-float-label label,
.has-float-label>span {
  position: absolute;
  cursor: text;
  font-size: 100%;
  opacity: 1;
  -webkit-transition: all .2s;
  transition: all .2s;
  top: -.5em;
  left: .75rem;
  z-index: 3;
  line-height: 1;
  padding: 0 1px;
}

.has-float-label label::after,
.has-float-label>span::after {
  content: " ";
  display: block;
  position: absolute;
  background: var(--primary);
  height: 2px;
  top: 50%;
  left: -.2em;
  right: -.2em;
  z-index: -1;
}

#RegisterNowModal input,
#RegisterNowModal textarea {
  background: transparent;
  color: #fff;
}

#RegisterNowModal button.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.image-space-type img {
  max-width: 250px;
}

.logo-box {
  border-right: 1px solid blue;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary);
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
}

.contact .php-email-form .btn-explore svg path {
  fill: var(--primary);
}

.contact .php-email-form .btn-explore:hover svg path {
  fill: #fff;
}

.form-inputs {
  position: relative;
}

.form-inputs .form-control {
  height: 43px;

}

.form-inputs .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--primary);
}

.form-inputs .submit-btn {
  position: absolute;
  right: 20px;
  top: 13px;
  background: transparent;
  border: 0px;
  padding: 0;
  height: fit-content;
  line-height: normal;
}

.flex-1 {
  flex: 1;
}

.search-input {
  max-width: 633px;
}

.ui-widget.ui-widget-content {
  z-index: 9999;
  border-radius: 10px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  border-radius: 30px;
  padding-left: 20px;

}


.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  width: 100%;
  border: 1px solid #dee2e6;
}

.contact-text-size h2 {
  font-size: 30px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 10px;
}

.contact-text-size p {
  max-width: 500px;
  font-size: 28px;
  color: var(--primary);
}

p.help-block {
  font-size: 14px;
  color: red;
}

.workshop-details .modal h2 {
  font-size: 30px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #DFDFDF;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--primary);
}

#footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 15px;
  position: relative;
  border-radius: 10px;
  text-align: left;
  max-width: 516px;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 0;
  background: none;
  padding: 0 20px;
  border-radius: 10px;
  height: 40px;
  font-weight: 600;
}


#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--primary);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--primary);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
}

#footer .footer-top .footer-contact img {
  max-width: 160px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-contact p {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 0;
  color: #fff;
  max-width: 516px;
}

#footer .footer-top .footer-links p {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 0;
  color: #fff;
  max-width: 350px;
}

#footer .footer-top .footer-contact a {
  font-size: 16px;
}

#footer .footer-top h4 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 16px;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #DFDFDF;
}


#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: var(--primary);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid transparent;
}

#footer .footer-top .social-links a:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

section#shadow-host-companion {
  padding: 0;
}

/*--------------------------------------------------------------
# course-detai
--------------------------------------------------------------*/
.course-detail {
  background-color: #F5F5F9;
  padding: 30px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 5px #00000062);
  margin-top: 15px;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.course-inner-banner,
.inner-pages-banner {
  height: 100%;
  margin-top: 20px;
  background-color: transparent;
  min-height: 600px;
}

.course-inner-banner {
  background-position: top right;
}

.course-inner-banner h1,
.inner-pages-banner h1 {
  font-size: 45px;
}

.course-inner-banner p,
.inner-pages-banner p {
  color: #000;
 
}
.course-cat p{
  white-space: nowrap;
    max-width: 146px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.trainer-img img{
  border-radius: 100%;
}
.course-inner-banner .btn-explore,
.inner-pages-banner .btn-explore {
  margin-top: 92px;
  border-radius: 10px;
}

hr {
  border-color: var(--primary);
  opacity: 1;
}

.font-16 {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.text-bold {
  font-weight: 700;
}

.keypoint {
  background-color: #F6F6F6;
}

.keypoint p {
  line-height: 30px;
  color: #000;
}

.box-bg {
  background-color: #F3F3F3;
  padding: 30px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 5px #00000062);
}

.bg-secondary {
  background-color: #F3F3F3 !important;
}

.get-certificate {
  font-size: 32px !important;
  font-weight: 500;
}

.get-certificate span {
  font-size: 42px;
  font-weight: 700;
}

.cet-box {
  position: absolute;
  top: -30px;
  right: 0;
  justify-content: end;
}

.Specialist-wrap .container {
  max-width: 1610px;
}

.cet-box img {
  height: 291px;
}

.text-wraning {
  color: #FF8000 !important;
}

.course-market-list {
  padding: 0;
  list-style: none;
}

.course-market-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 20px;
  background-color: #FF8000 !important;
  left: 15px;
  border-radius: 10px;

}

.course-market-list li {
  padding: 10px 30px;
  position: relative;
}

.course-market-list li:nth-child(odd) {
  background-color: #F3F3F3;
}

.demo-free-btn {
  margin-bottom: 30px;
}

.call-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.call-box h4 {
  font-size: 30px;
  max-width: 290px;
  margin: 0 auto;
}

.from-wrap {
  max-width: 600px;
  margin: 30px auto 0px;
}

.from-wrap label {
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
}

.form-box.box-bg {
  background-color: var(--primary);
}

.from-wrap input,
.from-wrap textarea {
  border-radius: 0px;
  border: 1px solid #707070;
}

.trainer-about p {
  margin-bottom: 0;
  line-height: 26px;
  color: #000;
}

.text-light-dark {
  color: #707070 !important;
  font-size: 18px;
}

.swiper {
  padding-bottom: 50px;
}

.Results-slider {
  padding-top: 5px;
}

.related-course-slider .card-body {
  padding-top: 5px !important;
}

.related-course-slider .card-title {
  font-size: 18px;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

.from-wrap input.btn-explore,
.from-wrap input.btn-explore:hover,
.from-wrap input.btn-explore:focus {
  color: var(--primary);
}

.keypointwrap li {
  position: relative;
  padding-left: 20px;
  color: #000;
}

.keypointwrap li svg {
  width: 15px;
  position: absolute;
  top: 8px;
  left: 0;

}

.get-certificate-wrap {
  margin-top: 7%;
  margin-bottom: 7%;
}

.table-wrapper {
  overflow-x: scroll;
  white-space: nowrap;
}

.review-star {
  white-space: nowrap;
}

.submit-btn {
  background-color: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
}

.submit-btn:hover {
  color: var(--primary) !important;
  background-color: #fff !important;
}

/* ----------------------------------------------------------------
training-language-css
---------------------------------------------------------------- */
.z-index-1 {
  z-index: 1;
}

.inner-pages-banner.training-language-banner .btn-explore {
  margin-top: 30px;
}

.img-rights {
  right: -90px;
  bottom: 75px;
  z-index: 0;
}

.img-right {
  right: 0;
  bottom: 0;
  z-index: 0;
}

.img-left {
  left: 0;
  bottom: 0px;
  z-index: 0;
}

.clients-review .review-box .gogle-text {
  font-size: 42px;
}

.langugesec-wrap .review-box img {
  width: 100px;
}

ul.certificate-points {
  padding: 44px;
}

.certificate-points li {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  margin-bottom: 40px;
}

.free-demo .numbering-box {
  background-color: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
  height: 60px;
  font-size: 35px;
  min-width: 60px;
}

.modal {
  background: #1f156696;
}

.w-fit-content {
  width: fit-content;
}


/*-=-=-=-=-=-=-=-=-=-=- */
/* Flip Panel */
/*-=-=-=-=-=-=-=-=-=-=- */
.panel {
  margin: 0 auto;
  height: 100%;
  position: relative;
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
  min-height: 180px;
}

.panel .front,
.panel .back {
  text-align: center;
}

.panel .front {
  height: inherit;
  position: absolute;
  top: 0;
  z-index: 900;
  text-align: center;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.panel .back {
  height: inherit;
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.panel.flip .front {
  z-index: 900;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
}

.panel.flip .back {
  z-index: 1000;
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
}

.box1 {
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.box2 {
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.Training-Partners .review-box {
  height: 120px;
}

/* ----------------------------------------------------------------
Workshop-css
---------------------------------------------------------------- */
.Workshop-banner {
  height: 100%;
  margin-top: 20px;
  background-color: transparent;
  max-height: 420px;
  background-position: top;
}

.Workshops-keypoint ul {
  list-style: none;

}

.Workshops-keypoint li {
  padding-bottom: 10px;
}

.Workshops-keypoint {
  padding: 40px 20px;
}

.expore-traning svg {
  height: 170px;
}

.WorkshopModal .modal-header {
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.WorkshopModal .modal-header::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 7px 7px 0px 0px;
}

.WorkshopModal .modal-header .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.langugesec-wrap svg {
  width: 100px;
  height: 100px;
}
.read_more{
  text-decoration: underline;
}
.short_description_wrap , .short_description_wrap p{
  display:inline;
}
.review-star .svg-inline--fa{
  max-width: 18px;
}

/* k-query */
@media (max-width: 1770px) {

  .pro-skills-box svg {
    width: 100%;
    min-width: 800px;
  }

  .pro-skills-inner {
    top: 26%;
    left: 100px;
  }

  .pro-skills-inner h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .pro-skills-inner p {
    font-size: 22px;
    line-height: 30px;
  }

  .proskills-img img {
    width: 100%;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
  }

  .course-inner-banner .btn-explore,
  .inner-pages-banner .btn-explore {
    margin-top: 30px;
  }

  .course-inner-banner,
  .inner-pages-banner {
    background-position: bottom center;
  }

  .course-inner-banner {
    background-position: top right;
  }

  .Specialist-wrap .container {
    width: 95%;
  }

  .portfolio .portfolio-item .card {
    min-height: 350px;
  }

  .img-right img {
    max-width: 75%;
  }

  .course-inner-girl-image-wrap img {
    max-width: 100%;
    max-height: 500px;
    z-index: 0;
  }
  .course-cat p{
    max-width: 90px;
  }
}

@media (max-width: 1440px) {
  .row.service-grid {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .row.service-grid .col-xl-12 {
    width: fit-content;
  }

  .cet-box img {
    width: 50%;
    height: auto;
  }

  .cet-box {
    position: absolute;
    top: -5%;
    right: 0;
    justify-content: end;
  }

 
}
@media (max-width: 1440px) {
  .navbar a, .navbar a:focus {
    padding: 10px 0 10px 15px;
}
.main-dropdown:focus{
  padding: 0px !important;
}
.navbar .getstarted, .navbar .getstarted:focus{
    margin-left: 15px;
}
}
@media only screen and (min-width: 1200px) {
  .mw-md-425 {
    max-width: 425px;
  }

  .mw-lg-760 {
    max-width: 760px;
  }

  .mw-md-250 {
    min-width: 250px;
  }

  .mw-md-200 {
    max-width: 200px;
  }

  .mw-md-350 {
    max-width: 350px;
  }

  .mw-md-900 {
    max-width: 900px;
  }

}

@media (max-width: 1200px) {
  .pro-skills-box svg {
    width: 100%;
    filter: drop-shadow(6px 20px 10px rgba(0, 0, 0, 0.16));
  }

  .pro-skills-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 660px;
  }

  .proskills-img img {
    top: 20px;
    left: 0;
    z-index: -1;
    width: 100%;
    transform: translateY(0%);
  }

  .proskills-img {
    text-align: center;
  }

  .pro-skills-inner h2 {
    font-size: 28px;
    line-height: 30px;
  }

  .pro-skills-inner p {
    font-size: 18px;
    line-height: 28px;
  }

  .pro-skills-box svg {
    min-width: 100%;
    height: 100%;
  }

  .navbar a,
  .navbar a:focus {
    padding: 10px 20px 10px 20px;
  }

  .course-inner-banner,
  .inner-pages-banner {
    height: 100%;
  }

  .skills-image {
    position: unset;
  }

  .skills-image {
    min-height: 500px;
    background-position: center;
  }

  .border-start-2 {
    border-left: none;
  }

  .search-input {
    max-width: 100%;
    margin: 10px 20px;
  }

  .navbar .dropdown-main {
    margin: 10px 20px;
  }

  .course-inner-banner,
  .inner-pages-banner {
    min-height: 500px;
  }

  .pricing ul li {
    padding: 10px 0 0px 20px;
    font-size: 16px;
    font-weight: 400;
  }

  .training-partner-main .get-certificate-wrap {
    margin-top: 3%;
  }

  .course-inner-girl-image-wrap img {
    max-height: 480px;
  }

  .mobile-menu .mobile-search-input {
    position: fixed;
    bottom: 20px;
    width: 100%;
    padding: 0px 10px;
    left: 0;
  }

}






@media (max-width: 992px) {
  .logo-box {
    border-right: 0px;
    box-shadow: none;
  }

  .section-title h2 {
    font-size: 28px;
    margin-bottom: 10px;
    padding-bottom: 0px;
  }

  section {
    padding: 30px 0;
  }

  .border-start-2 {
    border-left: none;
  }

  .section-title {
    padding-bottom: 15px;
  }

  .portfolio #portfolio-flters {
    overflow-x: scroll;
    width: 100% !important;
    white-space: nowrap;
    display: inline-block !important;
    padding-left: 0;
    text-align: center;
  }

  .portfolio-item:last-child .card {
    display: none !important;
  }

  .numbering-box {
    min-width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .why-us .accordion-list h2 {
    font-size: 22px;
    line-height: 23px;
  }

  .why-us .accordion-list p {
    margin: 5px 0 0 0;
    font-size: 16px;
    line-height: 22px;
  }

  .why-us .accordion-list li {
    padding: 10px;
  }

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

  body p {
    font-size: 18px;
  }

  .demo-free-btn {
    margin-bottom: 20px;
  }

  .contact-text-size h2 {
    font-size: 30px;
  }

  .contact-text-size p {
    font-size: 18px;
  }

  .course-inner-banner,
  .inner-pages-banner {
    text-align: left;
  }
 .Specialist h2 {
    max-width: 100%;
  }
 

  .mt-60 {
    margin-top: 30px;
  }

  .get-certificate span {
    font-size: 32px;
    font-weight: 700;
  }

  .get-certificate {
    font-size: 22px !important;
  }

  .w-50.get-certificate {
    width: 100% !important;
  }

  .cet-box {
    position: absolute;
    right: 0;
    justify-content: end;
    top: 80%;
  }

  .cet-box img {
    height: auto;
    width: 50%;
    margin: 0 auto;
  }

  .get-certificate-wrap {
    margin-bottom: 30%;
  }

  h4.text-wraning {
    font-size: 18px;
    margin-bottom: 0px;
  }

  .related-course .section-title,
  .Trainer .section-title,
  .Schedules .section-title {
    margin-top: 0px;
  }

  .trainer-about p {
    line-height: 21px;
    font-size: 14px;
  }

  .faq .faq-list li+li {
    margin-top: 5px;
  }

  .home-page-banner,
  .course-inner-banner,
  .training-language-banner ,
  .Workshop-banner{
    background-image: url("https://orbittraining.ae/public/assets/img/hero-bg-mobile.png");
  }

  .banner-hero {
    background-position: left;
  }

  /* .show-more-desc {
    height: 164px;
    overflow: hidden;
    position: relative;
    user-select: none;
    cursor: pointer;
  }

  .show-more-desc:not(.expanded):not(.lesslength):after {
    content: "Show More";
    position: absolute;
    background: #EFEFEF;
    width: fit-content;
    right: 0;
    bottom: 5px;
    text-align: right;
    color: var(--primary);
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    padding: 0px 10px;
    text-decoration: underline;
    
  }

  .show-more-desc.expanded:after {
    content: " Show Less";
    color: var(--primary);
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
  }

  .trainer-about .show-more-desc {
    height: 125px;
  }

  .about-right-text .show-more-desc {
    height: 135px;
  }

  .our-compay-wrap .show-more-desc {
    height: 133px;
  }

  .show-more-desc p {
    margin: 0 !important;
  }

  .show-more-desc.expanded {
    height: auto !important;
  } */

 
  .mobile-sticky-btn {
    position: sticky;
    bottom: 0;
    z-index: 1;
    padding: 10px 0px;
    width: 100%;
    margin: 0 auto;
  }

  .mobile-sticky-btn a.rounded-0 {
    border-radius: 0 !important;
  }
  .mobile-sticky-btn .btn-explore{
    background-color: #FF8000;
    border-color: #FF8000;
  }

  .show-more-desc.bg-white::after {
    background-color: #fff !important;
  }

  .contact .info {
    max-width: 100%;
    padding: 15px;
  }

  .out-newtwrok-wrap h2 {
    font-size: 22px;
  }

  .contact .info h4 {
    padding: 0 0 0 20px;
    font-size: 18px;
  }

  .contact .info p {
    padding: 0 0 0px 10px;
  }

  .info-wrap-location {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .back-to-top {
    right: 9px;
    bottom: 65px;
  }

  ul.certificate-points {
    padding: 5%;
  }

  .certificate-points li {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .training-partners-banner {
    background-image: none !important;
  }

  .background-opacity::after {
    display: none;
  }
  
}

@media (max-width: 768px) {
  .pro-skills-inner {
    width: 100%;
    padding: 8% 15% 8% 10%;
    position: unset;
    transform: translate(0);
  }

  .pro-skills-inner h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
  }

  .pro-skills-inner p {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    width: 100%;
  }

  .course-inner-banner,
  .inner-pages-banner {
    text-align: left;
    height: auto;
  }

  .course-inner-banner h1,
  .inner-pages-banner h1 {
    font-size: 32px;
    order: 1;
  }

  .course-detail {
    order: 2;
  }

  .course-inner-banner p,
  .inner-pages-banner p {
    order: 4;
  }

  .Specialist h2 {
    font-size: 28px;
    font-weight: 700;
    max-width: 100%;
    color: #000;
  }

  .mt-60 {
    margin-top: 10px;
  }

  .course-cat p {
    font-size: 14px;
  }
  .course-cat p:first-child{
    font-weight: 700;
  }

  .course-icon svg {
    width: 20px;
  }

  .course-detail {
    padding: 15px;
  }

  .review-box {
    flex-direction: column-reverse;
    padding: 10px;

  }

  section#Specialist .box-bg {
    padding: 15px;
    padding-bottom: 40px;
  }

  .get-certificate {
    text-align: left;
  }

  .trainer-about h2 {
    font-size: 18px;
  }

  .row.service-grid .col-xl-12 {
    width: 50%;
  }

  .services .icon-box h4 a {
    font-size: 18px;
  }

  .portfolio .portfolio-item .card {
    min-height: auto;
  }

  .skills-image {
    min-height: 200px;
  }

  .free-demo .numbering-box {
    min-width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .free-demo .numbering-box svg {
    width: 18px;
  }

  .why-us .accordion-list h2 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 0px;
  }

  .why-us .accordion-list li+li {
    margin-top: 0px;
  }

  .section-title {
    margin-top: 20px;
  }

  .portfolio-details-slider .swiper-pagination {
    margin-top: 30px;
  }

  .review-box .gogle-text {
    font-size: 45px;
    width: 100%;
    font-weight: 700;
  }

  .pro-skills-box svg {
    display: none;
  }

  .pro-skills-box {
    position: relative;
    background-color: #D3D3F3;
    border-radius: 70px 180px 90px 90px;
    height: 100%;
  }
  .Workshop-banner{
    max-height: fit-content;
  }
  .services .icon-box .icon svg{
    width: 100%;
    height: 100%;
  } 
  .services .icon-box .icon-s svg {
    width: 50px;
}

}


@media (max-width: 575px) {

  .course-inner-banner .btn-explore,
  .inner-pages-banner .btn-explore {
    margin-top: 10px;
  }

  .clients-review .review-box .gogle-text {
    font-size: 28px;
  }

  .clients-review .review-box h6 {
    font-size: 14px;
  }

  .box1 h2 {
    font-size: 22px;
  }

  .box2 ul {
    padding-left: 10px;
  }

  .banner-hero {
    padding-top: 50px;
  }

  .inner-pages-banner.training-language-banner .btn-explore {
    margin-top: 10px;
  }

  .course-inner-girl-image-wrap {
    right: 100px;
  }

  .course-inner-girl-image-wrap img {
    max-height: 600px;
  }
  body p {
    font-size: 15px;
  }
}
.showformhide,
.read_less{
  display: none;
}

.portfolio #portfolio-flters input {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px;
  font-family: 'Segoe UI', sans-serif;
  border: none;
  border-bottom: 2px solid transparent;
}

.portfolio #portfolio-flters input:hover,
.portfolio #portfolio-flters input.filter-active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}