:root {
  --default-font: "Poppins",  system-ui, -apple-system, "Segoe UI", Poppins, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
  --testimonial-font:"Charm"
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #559bcc; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.5);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #559bcc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6f9fc;
 
}

.dark-background {
  --background-color: #142e6c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1c4097;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.white-bg
{
  background-color: var(--background-color);
}
.orange-text
{
  color:#ff6600;
}
.blue-text
{
  color:#2d8ca4;
}
.red-text
{
  color:#ff4d4d;
}
.form-control
{
  border:1px solid #c2c2c2;
  border-radius: 0;
  padding:10px;
  font-size:12px;
  background: none!important;
}
.select-sl select
{
  z-index:999;
  position: relative;
}
.select-sl
{
  position: relative;
}
.select-sl::after
{
  content:'';
  position: absolute;
  width:25px;
  height:18px;
  background:url(../img/select.jpg);
  right:20px;
  bottom:12px;
  
}
.sub-btn
{
  background:#ff9900;
  border-radius:20px 0 20px 0;
  text-align: center;
  padding:10px 0;
  border: 0;
  color:#fff;
  font-size:18px;
  font-weight:600;
  width:100%;
  margin-top: 15px;
  position:relative;
}
.box-txt
{
  font-weight: 600;
  font-size:21px!important;
  margin-top:25px!important;
}
.lg-blue-txt
{
  color: #009999;
}
.mb-6
{
  margin-bottom:45px;
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form label
{
  color:#000;
  font-size:12px;
  font-family: var(--nav-font);
  margin-bottom: 10px;
  padding-left: 10px;
}
.php-email-form
{
  background:#fff;
  padding:50px;
  border-radius:5px;
}
.php-email-form h2
{
  color:#000;
  font-size:20px!important;
  font-weight:600!important;
  line-height:30px!important;
  text-align: center;
}
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.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(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(20, 46, 108, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color:#006e85;
  font-size: 14px;
  
  padding:50px 0 10px 0;
  position: relative;
  margin-top:100px;
}



.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size:14px;
  text-align: left;
  padding: 0;
  line-height:25px;
  font-weight:500;
}

.footer .social-links {
  margin: 0 0 30px 0;
}
.footer .wid-40
{
  width:30%;
  float: left;
}
.footer .wid-60
{
  width:70%;
  float: left;
}
.footer .wid-45
{
  width:49%;
  float: left;
}
.lime-color
{
  color: #06ceca;
}
.border-r
{
  border-right:1px solid #19849a;
}
.border-b
{
  border-bottom:1px solid #19849a;
}
.pd-btm
{
  padding-bottom: 15px;
  margin-top:45px;
}
.ftr-link ul li
{
  float: left;
  list-style: none;
  margin-right: 25px;
}
.ftr-link ul li a
{
  color: #fff!important;
  font-size: 12px!important;
}
.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: #fff!important;
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.mt-ftr
{
  margin-top:4px;
}
.mt-ftr-s
{
  margin-top:1px;
}
.copy-sec
{
  padding:12px 0;
}
.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}
@media(max-width:767px)
{
  .f-tp-mg
  {
    margin-top:45px;
  }
  .footer .wid-40
  {
    width: 100%;
  }
  .footer .wid-60
  {
    width: 100%;
  }
  .ftr-link ul
  {
    margin-left:-31px;
  }
  .footer .wid-45
  {
    width: 100%;
  }
  .copy-sec
  {
  padding-left: 12px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color:#333;
  width: 40px;
  height: 40px;
  border-radius:50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size:14px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

.whatsaap-scroll
{
  width:50px;
  height:50px;
 
  bottom:86px;
  position: fixed;
  
  right: 15px;
  z-index: 99999;
  transition: all 0.4s;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size:40px;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title-2 {
  text-align: center;
  padding-bottom:20px;
  position: relative;
}

.section-title-2 h2 {
  font-size:40px;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title p {
  margin-bottom: 0;
}
.section-title img
{
  margin-bottom:15px;
}
.mar-hd
{
  margin:35px 0;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding:60px 0 0 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 30%); */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-default);
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .hero-img {
  position: relative;
  min-height: 600px;
}

.hero .hero-img .phone-1 {
  margin-top: 20px;
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
}

.hero .hero-img .phone-2 {
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
  margin-top: 70px;
  margin-left: 100px;
}

@media screen and (max-width: 992px) {
  .hero .hero-img {
    text-align: center;
    overflow: hidden;
    min-height:546px;
  }

  .hero .hero-img .phone-1,
  .hero .hero-img .phone-2 {
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-img img
{
  display: none;
}
  .hero-img button img
  {
    display: block;
    position: absolute;
    left:50px;
  }
@media (max-width: 768px) {
  .php-email-form label
  {
    float:left;
  }
  .hero
  {
    background:#effdfe;
    /* background-position: bottom; */
    background-repeat: no-repeat;
    padding: 0;
  }
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

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

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
  .hero .lgo
  {
   text-align: center;
   margin-top:75px;
  }
  .hero-img form
  {
    /* display: none; */
  }
  .hero-img img
{
  display:block;
}
.enq-btn-otr
{
  position: relative;
}
.enq-btn-inr
{
  position: absolute;
  right:0;
  top:25%;
}
.php-email-form
{
  padding: 10px;
  margin-top:20px;
}
.modal-header
{
  border:0;
}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.mt-6
{
  margin-top:130px;
}
.mt-rt
{
  margin-top:90px;
}
.about
{
  background: url(../img/abt-bg.png);
  background-size: cover;
  background-position: center;
  
}
.about h2
{
  font-weight: 700;
  font-size:47px;
  text-align: center;
  margin:20px 0 0 0;
}
.about h3
{
  font-weight:600;
  font-size:35px;
  text-align: center;
  color:#000;
  margin:20px 0 0 0;
}
.about h4
{
 
  font-size:24px;
  text-align: center;
  color: #ff9900;
  margin:0;
  margin:10px 0 0 0;
}
.about h5
{
  font-weight:500;
  font-size:22px;
  text-align: center;
  color:#000;
  margin:20px 0 0 0;
  text-transform: uppercase;
}
.about p
{
 
  font-size:18px;
  text-align: center;
  margin:10px 0 0 0;
 
}
.impo-txt
{
  background: #000;
  border-radius:10px;
  padding:5px 15px;
  color:#fff;
}


.about .content h2 {
  font-weight: 700;
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
  .about p
  {
    font-size: 15px;
  }
  .about h2
  {
    font-size: 25px;
  }
  .about h4
  {
    font-size:18px;
  }
  .about h3
  {
    font-size:22px;
  }
  .about h5
  {
    font-size: 19px;
  }
  .mt-6 {
    margin-top: 50px;
}
}
.mt-5 {
  margin-top:40px;
}
/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.fl-right
{
  float: right;
  margin-top: 72px;
  margin-bottom:95px;
}
.mg-rp
{
  margin-left: 50px;
}
.featured
{
  background:url(../img/why-sec.jpg);
  background-size: cover;
  padding: 0!important;
}
.featured ul
{
  margin-left:-30px;
  margin-top:50px;
}
.featured ul li
{
  list-style:none;
  color:#fff;
  font-size:17px;
  font-weight:600;
  background: url(../img/why-list.png);
  background-repeat: no-repeat;
  padding-left:45px;
  margin-bottom:25px;
}
.featured .box
{
  padding-left:94px;
  margin-top: 72px;
}
.featured .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 20px;
  border: 0;
  height: 100%;
  position: relative;
}

.featured .card .img {
  position: relative;
  padding: 20px 20px 0 20px;
}

.featured .card .icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 100%);
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 32px);
  bottom: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.featured .card:hover .icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.featured .card h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.featured .card h2 a {
  color: var(--heading-color);
}

.featured .card h2 a:hover {
  color: var(--accent-color);
}

.featured p {
  font-size:16px;
  line-height: 24px;
  color:#fff;
  text-align: justify;
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.who-is
{
  background:url(../img/who-is.png);
  background-position: 0 325px;
  background-repeat: no-repeat;
  background-size:contain;
}
.cards .steps-img img {
  max-width: 575px;
}
@media(max-width:767px)
{
  .fl-right
  {
    float: none;
    margin:40px auto;;
  }
  .featured .box
  {
    padding-left: 0;
  }
  .m-no
  {
    display: none;
  }
}
@media (max-width: 575px) {
  .cards .steps-img img {
    max-width: 100%;
  }
}
.video-frame
{
  position: relative;
 
}

.vdo-pk
{
  position: absolute;
  top:30px;
  left:147px;
 
}
.cards .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.cards .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card-item h4 a {
  color: var(--heading-color);
}

.cards .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.cards .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.cards .card-item:hover span,
.cards .card-item:hover h4 a,
.cards .card-item:hover p {
  color: var(--contrast-color);
}
.cr-color-1
{
  background:#ffefcc;
}
.cr-color-2
{
  background:#e9f8fa;
}

.course-box
{
 border-radius:20px;
 height:130px;
 width:100%;
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding:20px;
 -webkit-box-shadow: 1px 9px 9px 0px rgba(0,0,0,0.17);
-moz-box-shadow: 1px 9px 9px 0px rgba(0,0,0,0.17);
box-shadow: 1px 9px 9px 0px rgba(0,0,0,0.17);
}
.course-box-icn
{
  position: absolute;
  width:10%;
  height: 10%;
  left: -40px;
  top:-40px
}
.course-box-icn-2
{
  position: absolute;
  width:10%;
  height: 10%;
  right:22px;
  top:-39px
}
.course-box-icn-3
{
  position: absolute;
  width:10%;
  height: 10%;
  left:-50px;
  top:-68px
}
.course-box-icn-4
{
  position: absolute;
  width:10%;
  height: 10%;
  right:22px;
  top:-36px
}
.course-box-icn-5
{
  position: absolute;
  width:10%;
  height: 10%;
  left: -40px;
  top:-24px
}
.course-box-icn-6
{
  position: absolute;
  width:10%;
  height: 10%;
  right:22px;
  top:-29px
}
.course-box h4
{
  color:var(--default-color);
  margin: 0;
  font-size:20px;
}
.width-80
{
  width:80%;
  margin:90px auto 10px;
  float: none;
}

.mt-tp
{
  margin-top:100px;
}
.mt-tp-2
{
  margin-top:70px;
}
.skill-base
{
  width:100%;
  display: flex;
  justify-content: space-around;
  gap:5;
  margin-top:75px;
}
.skill-base-inner
{
  width: 220px;
  height:215px;
}
.skill-base-inner p
{
  font-size: 18px;
  font-weight:500!important;
  text-align: center;
  line-height:20px;
  margin-top:30px;
}
@media(max-width:767px)
{
  .skill-base
  {
    margin-top:0;
  }
  .skill-base-inner {
    width: 100%;
    height: auto;
    margin-top: 50px;
}
  .skill-base
  {
    flex-wrap: wrap;
  }
  .vdo-pk
  {
    top:15px;
    left:0;

  }
  .mt-t
{
  margin-top:80px;
}
.mt-tp
{
  margin-top:80px;
}
.mt-tp-2
{
  margin-top:80px;
}
.course-box h4
{
  font-size: 14px;
}
.course-box-icn-2
{
  right: 26px;
  top: -33px;
}
.course-box-icn 
{
  top: -30px;
}
.course-box-icn img
{
  width:80px;
}
.course-box-icn-2 img
{
  width:100px;
}
.course-box-icn-3
{
    left: -40px;
    top: -56px;
}
.course-box-icn-3 img
{
  width:90px;
}
.course-box-icn-4
{
  top:-28px;
}
.course-box-icn-4 img
{
  width:72px;
}
.course-box-icn-5 
{
  top:-14px;
}
.course-box-icn-5 img
{
  width:104px;
}
.course-box-icn-6
{
  top:-24px;
}
.course-box-icn-6 img
{
  width:79px;
}
.mt-h
{
  margin-top:200px;
}
.mt-h img
{
  width:500px;
}
.who-is
{
  background:url(../img/who-is-mob.png);
  background-position: 0 155px;
  background-repeat: no-repeat;
  padding-bottom: 0;
  margin-top:10px!important;
  padding-top: 10px;
}
.who-is .mt-h
{
  margin-top:74px;
}
.width-80
{
  margin:20px auto 10px;
}
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features
{
  padding-top:0;
}
.features h2
{
  font-size:40px!important;
  font-weight: 600;
}
.features h2 img
{
  margin-bottom:14px;
}
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width:767px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
  .features h2
  {
    margin-top:30px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.1);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

 .testi-outer
 {
  position: relative;
  padding-bottom: 50px;

 }


.testi-outer-2
{
 position: relative;

}
/* .testi-outer-2::before {
 content: "";
 position: absolute;
 width: 160px;
 height: 160px;
 border-radius: 50%;
 left:280px;
 top:47px;
 background: #fff;
 box-shadow: 10px 10px 28px 0px rgba(0, 0, 0, 0.21);
 z-index: 0;
} */

.testimonials .box {
  position: relative;
  z-index: 1; /* ensures this appears above ::before */
  background: #fff;
  border-radius: 15px;
  padding: 50px 135px 50px 35px;
  box-shadow: 10px 10px 28px 0px rgba(0, 0, 0, 0.21);
}
.testimonials .box-2 {
  position: relative;
  z-index: 1; /* ensures this appears above ::before */
  background: #fff;
  border-radius: 15px;
  padding: 50px 35px 50px 135px;
  box-shadow: 10px 10px 28px 0px rgba(0, 0, 0, 0.21);
}
.testimonials .box-inner
{
  
  position: absolute;
  width: 140px;
  height: 140px;
    border-radius: 50%;
   right:-50px;
   top:57px;
   background: #adaeb3;
   z-index: -1;
   overflow: hidden;
   border:10px solid #fff;
}
.testimonials .box-2 .box-inner
{
  
  position: absolute;
  width: 140px;
  height: 140px;
    border-radius: 50%;
   left:-50px;
   top:57px;
   background: #adaeb3;
   z-index: -1;
   overflow: hidden;
}
.testimonials .box-inner img
{
  width:140px;
  height: 100%;
  object-fit: cover;
  /* margin-left:-12px; */
}

.testimonials .box p
{
  font-family:var(--testimonial-font);
  font-size: 20px;
  color:#666;
}
.testimonials .box h4
{
  text-transform: uppercase;
  font-size:18px;
  letter-spacing:2px;
  color:#000;
  margin: 0;
}
.testimonials .box span
{
  font-size:15px;
}
.testimonials .box-2 p
{
  font-family:var(--testimonial-font);
  font-size: 20px;
  color:#666;
}
.testimonials .box-2 h4
{
  text-transform: uppercase;
  font-size:18px;
  letter-spacing:2px;
  color:#000;
  margin: 0;
}
.testimonials .box-2 span
{
  font-size:15px;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}



.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials  .stars {
  margin-bottom: 15px;
}

.testimonials .stars i {
  color: #ffc107;
  margin: 0 5px;
 
}
.bi-star-fill::before
{
  width:25px;
  height: 25px;
  font-size: 20px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
  .testimonials .box-inner
  {       
    position: inherit;
    margin: 0 auto 20px;
    right:inherit;
    top:inherit;

  }
  .testi-outer::before
  {
    display: none;
  }
  .testi-outer-2::before
  {
    display: none;
  }
}

@media(max-width:767px)
{
  .testimonials
  {
    padding: 0 15px;
  }
  .testimonials::before
  {
    display: none;
  }
  .testimonials .box-inner
  {       
    position: inherit;
    margin: 0 auto 20px;
    right:inherit;
    top:inherit;

  }
  .testimonials .box-2 .box-inner
  {       
    position: inherit;
    margin: 0 auto 20px;
   left:inherit;
    top:inherit;

  }
  .section-title h2
  {
    font-size: 28px;
  }
  .section-title h2
  {
    height:125px;
  }
  .testimonials .box
  {
    padding: 50px 50px 50px 35px;
  }
  .testimonials .box-2
  {
    padding: 50px 50px 50px 35px;
  }
}
@media(max-width:460px)
{
  .testimonials .box-inner
  {
    
  }
}
@media(max-width:375px)
{
  .testimonials .box-inner
  {
    
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 44px 0;
  position:relative;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

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

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 26px -8px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 10px 26px -8px rgba(0,0,0,0.25);
  box-shadow: 0px 10px 26px -8px rgba(0,0,0,0.25);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size:26px;
  font-weight:900;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color:#ec5564;
  transform: rotate(90deg);
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
 
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: #000;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(-90deg);
  color:#ec5564;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.top-links ul
{
 
  margin-bottom: 0;
  padding:10px 0;
}
.top-links ul li
{
  list-style:none;
  float: left;

}
.top-links ul li img
{
  margin-right:8px;
}
.top-links ul li a
{
  font-size:12px;
  font-family: var(--nav-font);
  color: var(--default-color);
}

.top-ling-mg-rt
{
  margin-right:30px;
}
@media(max-width:768px)
{
  .top-links ul li a
  {
    font-size: 10px;
  }
  .top-links ul
  {
    margin-left: 0;
  }
  
}


.video-bg
{
  background:url(../img/video-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: cover;
}
.video-otr
{
  position: relative;
}
.video-inr
{
  width: 257px;
  height: 363px !important;
  height: auto;
  background: #666;
  position: absolute;
  top: 40px;
  left: 21px;

}
.btm-btn
{
  position: relative;
  bottom: -44px;
 
}
@media(max-width:767px)
{

  .btm-btn
  {
    bottom:-19px;
  }
  .pricing
  {
    padding:0;
  }
  .video-inr
  {
    width: 90%;
        height: 90% !important;
        top: 14px;
        left: 4px;
        object-fit: cover;
    }
  }
.team
{
  position: relative;
}
  .slider-container {
    /* position: relative; */
    width: 100%;
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    background: #fff;
    
    padding: 1rem 1.5rem;
    
  }

  .slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    justify-content: center;
  }

  .logo-item {
    flex: 0 0 25%; /* 4 items per view */
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
    margin-left: 12px;
  }

  .logo-item img {
    max-width: 100%;
   
    height:225px;
    object-fit: contain;
    background: #eee;
    border-radius: 8px;
  }
  .logo-item h3
  {
    font-size:18px;
    font-weight: 500;
    margin-top:25px;
    margin-bottom:5px;
  }
  .logo-item p {
   
    font-size: 0.9rem;
    color: #333;
  }

  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
  
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
   
    
  }

  /* .nav-btn:hover {
    background: #eee;
  } */

  .prev-btn {
    left:94px;
  }

  .next-btn {
    right:94px;
  }

  @media (max-width: 768px) {
    .logo-item {
      flex: 0 0 50%; /* 2 items per view */
    }
    .prev-btn {
      left:0;
    }
  
    .next-btn {
      right:0;
    }
  }

  @media (max-width: 480px) {
    .logo-item {
      flex: 0 0 100%; /* 1 item per view */
      margin-left:15px;
    }
  }

  .cta-sec
  {
    background:#f3fafb;
  }
  .section-title-2 p
  {
    font-size:22px;
    font-weight:600;
  }

  .section-title-2 h4
  {
    font-size:24px;
    font-weight:600;
    width:100%;
    color:#000;
    text-align: center;
  }

  .section-title-2 h5
  {
    font-size:40px;
    font-weight:600;
    color: #ff9900;
    text-align: center;
  }

  .faq
  {
    background:#f2f2f0;
    padding:35px;
    border-radius:30px;
    position:relative;
    margin:-60px auto;
    width:70%;
    height: auto;
  }

  @media(max-width:767px)
  {
    .faq
    {
      background: #f2f2f0;
      padding:10px;
      border-radius: 30px;
      position: relative;
      margin: -25px 15px 0 15px;
      width: 92%;
      height: auto;
    }
    .section-title h2
    {
      height: auto;
    }
    .section-title
    {
      padding:10px;
    }
  }
  .video-otr
  {
    position: relative;
    width:60%;
    clear: both;
    overflow: hidden;
  }
  .video-ctz
  {
    border:15px solid #6098a6;
    border-top:35px solid #6098a6;
    border-radius: 15px;
    width:100%;
    overflow: hidden;  
    object-fit: cover;
    display:block;
    position: relative;
    
  }

  .kwg-video-player-container
  {
    background-color: transparent!important;
  }

.video-ctz-tp
{

  position: absolute;
  width: 72px;
 height: 18px;
  top:8px;
  left:13px;
  
  background:url(../img/video-tp.png);
}

.landscape-ctz
{
  border:15px solid #fff;
  border-bottom:35px solid #fff;
  border-radius: 15px;
  background-color: transparent;
  overflow: hidden;  
  object-fit: cover;
  display:block;
  position: relative;
  max-height:450px!important;
  
}

.pricing .kwg-video-player-container
{
  height:450px;
  width:100%;
}

.pricing .kwg-video-player-container .videoControls
{
  bottom:0;
  border-radius:0 0 10px 10px;
}

.landscape-ctz iframe
{
  height:450px;
}

@media(max-width:767px)
{
  .landscape-ctz iframe
{
 height:450px;
}
}

@media (max-width: 767px) {
  /* .hide-btn-below-768 {
    display: none !important;
  } */

  .mt-rt
  {
    margin-top:30px;
  }
}
@media(max-width:2840px)
{
  .course-box
  {
    padding: 72px;
  }
}
@media(min-width:1024px)
{
  .nav-btn
  {
    display: none;
  }
}