
:root{
  --slider-font: "DM Sans", sans-serif;
  --paragraph-font: "DM Sans", sans-serif;
  --header-font: "DM Sans", sans-serif;
  --menu-font: "DM Sans", sans-serif;

  --primary-color: #429656;
  --green-color: #429656;
  --yellow-color: #FFC012;
  --primary-light-color: #c8dacc;


  --dark-primary-color: #4310BB;
  --dark-heighlight-color: #9747FF;
  --light-perple-color: #C5A6EE;
  --primary-light-color: #633999;


  --white-color: #ffffff;
  --black-color: #000000;

  --light-gary: #f7f7f7;
  --light-gary2: #f1f1f1;
  --light-blue: #EAF4FF;
  --light-yellow: #F3FCD5;
  --home-slider-bg: #f1f6f2;
  
  
  --header-color: #303030;
  --sub-header-color: #4F4F4F;
  
  --menu-text-color: #262626;
  --menu-solid-button-color: #262626;

  --paragraph-text-color: #4F4F4F;

  --blue-text-color: #0062FF;
  --green-text-color: #4DB200;
  --orange-text-color: #FF912A;
  --perple-text-color: #BA71FF;
  

  --menu-font-size: 14px;
  --slider-header-font-size: 60px;
  --header-font-size: 40px;
  --subheading-font-size: 20px;
  --subheading2-font-size: 18px;
  --paragraph-font-size: 16px;
  --mediam-text: 14px;
  --small-text: 12px;
  --button-font-size: 14px;

  --header-color: #262626;
  --text-color: #575757;
  --light-gray-color: #F3F3F3;

  --dark-gray-color: #4F4F4F;
  --dark-gray-color2: #111111;

  

  --section-gap:60px;
  --border-redious: 6px;
}




* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--paragraph-font);
  overflow-x: hidden;
  font-weight: 400;
  transition: all .5s ease;
  background-color: var(--white-color) !important;
}

html, body, ul, ol, li, form, fieldset, legend {
  margin: 0;
  padding: 0; 
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  border: none;
  outline: none; 
}

fieldset, img {
  border: 0; 
}

li {
  list-style: none; 
}

a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s; 
}

a:focus {
  color: var(--black-color); 
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--black-color); 
}

img {
  max-width: 100%;
  height: auto; }

/* VARIABLES */
/*/////*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0, 0); 
  }
  100% {
    opacity: 1;
    transform: scale(1, 1); 
  } 
}


.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; 
}

img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s; 
}

/*//header//*/

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/fabicon.png);
  background-size: contain;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s; 
}


/*///*/

.slick-slide a{
  padding: 0 !important;
  margin: 0 !important;
}

/*///menu///*/


.navbar-nav {
    width: 100%;
}

.nav-item {
    padding: 20px 2px;
    margin: 0px 3px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    color: grey;
    position: static;
}

.dropdown-toggle::after{
  display: none;
}

.nav-item.active {
    color: #EF5350;
}

.nav-item:hover {
    color: #EF5350;
}

a {
    color: inherit;
    text-decoration: none;
}

.nav-link {
    padding: 5px;
}

.navbar-collapse.collapse.in {
    display: block !important;
}

.fa-angle-down {
    padding-left: 10px;
}

.fa-icon {
    font-size: 30px;
    color: #fff;
    background-color: pink;
    margin: 2px 10px 5px 0px;
    border-radius: 10px;
    width: 50px;
    height: 50px;
}

.dropdown-menu {
    margin-top: 0px;
    border: none;
    background-color: var(--light-gary);
    padding: 30px;
}


.tab {
    margin-bottom: 20px;
    width: 230px;
}

.tab:hover {
    color: #E91E63 !important;
}

.dropdown-item {
    padding: 0px;
}

.dropdown-item:hover {
    background-color: inherit;
}

@media (max-width: 767px) {
    .nav-item {
        width: 100%; 
        text-align: left;
        padding-left: 10px;
    }

    .dropdown-menu {
        left: 0 !important;
        position: relative !important;
        padding: 20px;
    }
}

/*///scroll-to-top-btn//*/

.scroll-to-top-btn{
  width: 42px;
  height: 42px;
  background-color: #Fefbea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 999;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  color: var(--primary-color);
  transition: 0.8s;
}
.scroll-to-top-btn:hover{
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--white-color);
}


/*///whatsApp-stycky-btn//*/

.whatsApp-stycky-btn {
  width: 62px;
  height: 62px;
  background-color: #25D366;
  border-radius: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: fixed !important;
  right: 15px !important;
  bottom: 15px !important;
  z-index: 999;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: 0.8s;
  font-size: 24px !important;
  font-weight: bold;
  color: var(--white-color) !important;
}

.whatsApp-stycky-btn i{
  font-size: 38px;
  color: var(--white-color);
}
.whatsApp-stycky-btn:hover{
  text-decoration: none;
  background-color: #128c7e !important;
  color: var(--white-color);
}

/*/////commone-section////*/

.section-block{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

@media only screen and (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 86%;
  }
}

.section-titelblock, .section-block .section-header{
  width: 100%;
  padding: 0 0 30px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 300;
}
.section-block .section-titel, .section-block .slider-titel, .section-block .titel{
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--header-font-size);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;
}
.section-block .section-titel.center-align, .section-block .slider-titel.center-align{
  text-align: center !important;
}

.section-block .section-titel span, 
.section-block .titel span{
  color: var(--primary-color) !important;
}

.section-block b{
  font-weight: 600 !important;
}

.section-block .section-titelblock p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  max-width: 640px;
}
.section-block .section-titelblock p span{
  color: var(--primary-color) !important;
}

.section-titelblock .section-titelblock{
  padding: 0;
  margin: 0;
}


.section-block .sub-titel{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading-font-size);
  color: var(--header-color);
  line-height: 1.3;
  font-weight: 600;
}
.section-block .sub-titel span{
  color: var(--primary-color) !important;
}

.section-block p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
}

.section-block .small-text {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--paragraph-font);
    font-size: var(--small-text);
    color: var(--paragraph-text-color);
    line-height: 1.6;
    font-weight: 500;
}

.section-block p b{
  font-weight: 600;
}
.center-align{
  text-align: center;
}

.section-titelblock.center-align{
  text-align: center;
}
.section-block .section-titelblock.center-align .section-titel, 
.section-block .section-titelblock.center-align p, .section-block .section-titelblock.center-align .sub-titel{
  text-align: center;
  margin: 0 auto;
}

.section-block .text-and-button-heading{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-block .text-and-button-heading .section-titel, 
.section-block .text-and-button-heading p, .section-block .text-and-button-heading .sub-titel{
  text-align: left;
}

.section-block .text-and-button-heading .button-block{
  width: auto;
  min-width: 300px;
  justify-content: flex-end;
}

.btn{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--button-font-size);
  color: var(--primary-color);
  font-weight: 500;
  text-transform: none;
  border: none;
  background-color: transparent;
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;
}
.btn i{
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: 300;
}

.btn:hover{
  text-decoration: none;
  background-color: transparent;
  color: var(--menu-text-color);
}

/* ... rest of your original CSS unchanged ... */

.dark-theme-main .search-block .search-innerbox .form-control {
  background-color: var(--black-color);
  border-color: var(--dark-heighlight-color);
  color: var(--white-color);
}




* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--paragraph-font);
  overflow-x: hidden;
  font-weight: 400;
  transition: all .5s ease;
  background-color: var(--white-color) !important;
}

html, body, ul, ol, li, form, fieldset, legend {
  margin: 0;
  padding: 0; 
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  border: none;
  outline: none; 
}

fieldset, img {
  border: 0; 
}

li {
  list-style: none; 
}

a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s; 
}

a:focus {
  color: var(--black-color); 
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--black-color); 
}

img {
  max-width: 100%;
  height: auto; }

/* VARIABLES */
/*/////*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0, 0); 
  }
  100% {
    opacity: 1;
    transform: scale(1, 1); 
  } 
}


.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; 
}

img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s; 
}

/*//header//*/

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/fabicon.png);
  background-size: content;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s; 
}


/*///*/

.slick-slide a{
  padding: 0 !important;
  margin: 0 !important;
}

/*///menu///*/


.navbar-nav {
    width: 100%;
}

.nav-item {
    padding: 20px 2px;
    margin: 0px 3px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    color: grey;
    position: static;
}

.dropdown-toggle::after{
  display: none;
}

.nav-item.active {
    color: #EF5350;
}

.nav-item:hover {
    color: #EF5350;
}

a {
    color: inherit;
    text-decoration: none;
}

.nav-link {
    padding: 5px;
}

.navbar-collapse.collapse.in {
    display: block !important;
}

.fa-angle-down {
    padding-left: 10px;
}

.fa-icon {
    font-size: 30px;
    color: #fff;
    background-color: pink;
    margin: 2px 10px 5px 0px;
    border-radius: 10px;
    width: 50px;
    height: 50px;
}

.dropdown-menu {
    margin-top: 0px;
    border: none;
    background-color: var(--light-gary);
    padding: 30px;
}


.tab {
    margin-bottom: 20px;
    width: 230px;
}

.tab:hover {
    color: #E91E63 !important;
}

.dropdown-item {
    padding: 0px;
}

.dropdown-item:hover {
    background-color: inherit;
}

@media (max-width: 767px) {
    .nav-item {
        width: 100%; 
        text-align: left;
        padding-left: 10px;
    }

    .dropdown-menu {
        left: 0 !important;
        position: relative !important;
        padding: 20px;
    }
}

/*///scroll-to-top-btn//*/

.scroll-to-top-btn{
  width: 42px;
  height: 42px;
  background-color: #Fefbea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 999;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  color: var(--primary-color);
  transition: 0.8s;
}
.scroll-to-top-btn:hover{
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--white-color);
}


/*///whatsApp-stycky-btn//*/

.whatsApp-stycky-btn {
  width: 62px;
  height: 62px;
  background-color: #25D366;
  border-radius: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: fixed !important;
  right: 15px !important;
  bottom: 15px !important;
  z-index: 999;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: 0.8s;
  font-size: 24px !important;
  font-weight: bold;
  color: var(--white-color) !important;
}

.whatsApp-stycky-btn i{
  font-size: 38px;
  color: var(--white-color);
}
.whatsApp-stycky-btn:hover{
  text-decoration: none;
  background-color: #128c7e !important;
  color: var(--white-color);
}

/*/////commone-section////*/

.section-block{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

@media only screen and (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
      max-width: 86%;
  }
}

.section-titelblock, .section-block .section-header{
  width: 100%;
  padding: 0 0 30px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 300;
}
.section-block .section-titel, .section-block .slider-titel, .section-block .titel{
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--header-font-size);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;
}
.section-block .section-titel.center-align, .section-block .slider-titel.center-align{
  text-align: center !important;
}

.section-block .section-titel span, 
.section-block .titel span{
  color: var(--primary-color) !important;
}

.section-block b{
  font-weight: 600 !important;
}

.section-block .section-titelblock p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  max-width: 640px;
}
.section-block .section-titelblock p span{
  color: var(--primary-color) !important;
}

.section-titelblock .section-titelblock{
  padding: 0;
  margin: 0;
}


.section-block .sub-titel{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading-font-size);
  color: var(--header-color);
  line-height: 1.3;
  font-weight: 600;
}
.section-block .sub-titel span{
  color: var(--primary-color) !important;
}

.section-block p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
}

.section-block .small-text {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--paragraph-font);
    font-size: var(--small-text);
    color: var(--paragraph-text-color);
    line-height: 1.6;
    font-weight: 500;
}

.section-block p b{
  font-weight: 600;
}
.center-align{
  text-align: center;
}

.section-titelblock.center-align{
  text-align: center;
}
.section-block .section-titelblock.center-align .section-titel, 
.section-block .section-titelblock.center-align p, .section-block .section-titelblock.center-align .sub-titel{
  text-align: center;
  margin: 0 auto;
}

.section-block .text-and-button-heading{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-block .text-and-button-heading .section-titel, 
.section-block .text-and-button-heading p, .section-block .text-and-button-heading .sub-titel{
  text-align: left;
}

.section-block .text-and-button-heading .button-block{
  width: auto;
  min-width: 300px;
  justify-content: flex-end;
}

.btn{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--button-font-size);
  color: var(--primary-color);
  font-weight: 500;
  text-transform: none;
  border: none;
  background-color: transparent;
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;
}
.btn i{
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: 300;
}

.btn:hover{
  text-decoration: none;
  background-color: transparent;
  color: var(--menu-text-color);
}

.button-block{
  width: 100%;
  padding: 15px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.outline-btn{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--button-font-size);
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  background-color: #42965614;
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;
}
.outline-btn i{
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: 300;
}

.outline-btn:hover{
  text-decoration: none;
  border-color: #c4e2cb !important;
  background-color: #42965614;
  color: var(--primary-color);
}

.outline-btn:hover i{
  text-decoration: none;
}



/*///*/

.solid-btn, .solid-bg-btn{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--button-font-size);
  color: var(--white-color);
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;
}
.solid-btn i{
  display: inline-block;
  font-size: var(--button-font-size);
  font-weight: 300;
  color: var(--white-color);
}

.solid-btn:hover{
  text-decoration: none;
  background-color: var(--menu-text-color);
  color: var(--white-color);
}

.solid-btn:hover i{
  text-decoration: none;
  color: var(--white-color);
}


.solid-btn, .solid-bg-btn {
  background-image: linear-gradient(90deg, #429656 0, #00ca30 51%, #0f6824) !important;
  background-size: 200% auto !important;
  color: #fff;
  transition: .5s;
}

.solid-btn:focus, .solid-btn:hover, .solid-bg-btn:focus, .solid-bg-btn:hover{
  background-position: 100% !important;
  color: #fff;
  text-decoration: none;
}

/*///*/

.icon-list{
  width: 100%;
  padding: 10px 0 0 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  list-style: none;
}

.icon-list li{
  width: 100%;
  padding: 0 0 0 20px;
  margin: 5px 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;

  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var( --header-color);
  line-height: 1.6;
  font-weight: 500;
}

.icon-list li:before{
  content: "\f00c";
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 11px;
  color: #4DB200;
  position: absolute;
  top: 5px;
  left: 0;
}

/*///*/

.rotate-image {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}





/*////main-header////*/

.main-header{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.header-topsection{
  background: linear-gradient(to right,  rgba(66,150,86,1) 0%,rgba(66,150,86,1) 26%,rgba(255,255,255,1) 26%,rgba(255,255,255,1) 100%); 
  border-bottom: 2px solid var(--light-gary);
  position: relative;
}

.header-topsection a.close-btn {
  position: absolute;
  top: 8px;
  right: 20px;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}


.header-topsection.fullwidth-block {
  background-color: var(--paragraph-text-color) !important;
  background: var(--paragraph-text-color);
  border-bottom: none;
}


.header-topsection .top-innersection{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(to right,  rgba(66,150,86,1) 0%,rgba(66,150,86,1) 72%,rgba(66,150,86,1) 72%,rgba(255,255,255,1) 72%,rgba(255,255,255,1) 72%,rgba(255,255,255,1) 100%); 

}

.header-topsection .topheader-leftblock{
  width: 50%;
  max-width: 50%;
  padding: 10px 0;
 background-color: var(--green-color);
  height: 70px;
  position: relative;

} 
.header-topsection .topheader-rightblock{
  width: 50%;
  max-width: 50%;
  padding: 10px 0;
  margin: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: linear-gradient(135deg,  rgba(66,150,86,1) 0%,rgba(66,150,86,1) 11%,rgba(255,255,255,1) 11%,rgba(255,255,255,1) 11%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  height: 70px;
}

.header-topsection .right-innerbox {
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  gap: 15px;
}

.header-topsection .heighlight-info{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  position: relative;
}
.header-topsection .heighlight-info .info-item{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: var(--paragraph-font);
  color: var(--white-color);
  font-size: var(--small-text);
}
.header-topsection .heighlight-info .info-titel{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: var(--header-font);
  font-size: var(--paragraph-font-size);
  color: var(--white-color);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-topsection .heighlight-info .info-item p{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: var(--paragraph-font);
  color: var(--white-color);
  font-size: var(--paragraph-font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*////*/

.header-topsection .top-social-menia-block{
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-topsection .social-media-list{
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.header-topsection .social-media-list li{
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.header-topsection .social-media-list li a {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  background-color: var(--green-color);
  border-radius: 50%;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/*///search-block///*/

.search-block{
  width: 100%;
  max-width: 260px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}

.search-block .search-innerbox{
  width: 100%;
  max-width: 260px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  border: 1px solid var(--green-color);
  border-radius: var(--border-redious);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-block .search-innerbox .form-control{
  width: 100%;
  max-width: 260px;
  padding: 0 15px;
  margin: 0;
  border: none;
  outline: none;
  height: 40px;
}
.search-block .search-innerbox .search-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
  background-image: url(../images/search-Icon-green.png);
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.1s;
  cursor: pointer;
  background-size: 18px;
}


.header-searchbar-open .search-block {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%; */
  background-color: #ffffff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-searchbar-open .header-menublock .search-block .search-innerbox{
  width: 100%;
  max-width: 100%;
}

.header-searchbar-open .search-block .search-innerbox{
  max-width: 90%;
}

.search-block{
  position: relative;
}
.search-block .searchbtn {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 0.3s;
}
.search-block .searchbtn span i{
  font-size: 18px;
  transition: all 0.3s;
}
.search-block .searchbtn .close-icon{
  display: none;
  transition: all 0.3s;
}

.search-block .search-innerbox .form-control{
  max-width: 100%;
}


.header-searchbar-open .header-menublock .search-block .search-innerbox{
  display: flex;
  opacity: 1;
}
.header-searchbar-open  .search-block .searchbtn{
  background-color: transparent !important;
}
.header-searchbar-open  .search-block .searchbtn .close-icon{
  display: inline-block;
}
.header-searchbar-open  .search-block .searchbtn .search-icon{
  display: none !important;
}

.header-searchbar-open .search-block .searchbtn {
  width: 46px;
  height: 46px;
  border: none;
  opacity: 1;
  position: static;
  top: 0;
  left: 0;
  z-index: 99;
  box-shadow: none !important;
}

/*////*/

.header-menublock .search-block .search-innerbox{
  max-width: 130px;
  transition: all 0.5s ease-in-out;
}
.header-menublock .search-block .search-innerbox .form-control {
  padding: 0 5px 0 10px;
  transition: all 0.5s ease-in-out;
}
.header-menublock .search-block .search-innerbox .search-btn{
  min-width: 40px;
}


/*///header-logo-menusection///*/

.header-logo-menusection{
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid var(--light-gary);
  border-bottom: 1px solid var(--light-gary);
  background-color: var(--white-color);
}

.header-menublock .menu-buttonblock{
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/*////*/
.navbar-expand-md .navbar-nav{
  justify-content: flex-end;
  margin-right: 15px;
}

.navbar-expand-md .navbar-nav .nav-link{
  font-family: var(--menu-font);
  font-size: var(--menu-font-size);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--menu-text-color);
}

.header-menublock .navbar-nav .nav-item:hover .dropdown-menu{
  display: block  !important;
}

.sticky-header .main-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  max-width: 100%;
}





/*///home-sliderblock///*/

.home-sliderblock{
  background-color: var(--home-slider-bg);
  padding-bottom: 0;
}

.home-sliderblock .slider-titel{
  width: 100%;
  font-family: var(--header-font);
  font-size: var(--slider-header-font-size);
  font-weight: 600;
  line-height: 1.2;
  color: var(--header-color);
}

.home-sliderblock .slider-titel span{
  color: var(--primary-color);
}
.home-sliderblock .row{
  align-items: center;
}
.home-sliderblock .slider-text-block{
  align-items: center;
}
.home-sliderblock .slider-image-block{
  align-items: center;
}

.home-sliderblock .slider-image{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}
.home-sliderblock .slider-image img{
  position: relative;
  z-index: 9;
}

.home-sliderblock .slider-image:before{
  content: "";
  contain: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/home-banner-bg2.png);
  background-repeat: no-repeat;
  background-size: content;
  background-position: center;
  animation: imgRotate 10s linear infinite;
  opacity: 0.5;
}
.home-sliderblock .slick-prev, .home-sliderblock .slick-next{
  display: none !important;
}


/*///home-countblock///*/

.home-countblock{
  padding: 20px 0 !important;
}
.home-countblock .textbox{
  width: 100%;
  padding: 10px;
  max-width: 100%;
  text-align: center;
}
.home-countblock .textbox .count-text{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  font-family: var(--header-font);
  font-size: var(--slider-header-font-size);
  color: var(--header-color);
  font-weight: 700;
}
.home-countblock .textbox .count-smalltext{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--paragraph-text-color);
  font-weight: 500;
}

/*///live-classes-mainblock///*/

.live-classes-mainblock{
  padding: 20px 0;
}

.live-classes-mainblock .live-classesbox {
  background-color: var(--primary-color);
  padding: 10px 60px;
  border-radius: 40px;
  margin: 0;
  border: none;
  outline: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.live-classes-mainblock .live-classesbox .live-titel{
  white-space: nowrap;
  color: var(--white-color) !important;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  padding-right: 30px;
  width: auto;
  display: flex;
  justify-content: flex-start;
}

.live-classes-mainblock .live-classesbox .live-class-list{
  width: 70%;
  max-width: 70%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: flex-start;
}
.live-classes-mainblock .live-classesbox .live-class-list .slick-arrow{
  display: none !important;
}
.live-classes-mainblock .live-classesbox .live-class-list a{
  font-family: var(--header-font);
  color: var(--white-color);
  font-weight: 600;
  font-size: var(--subheading-font-size);
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.live-classes-mainblock .live-classesbox .live-class-list a:before{
  contain: "";
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--green-color);
  border-radius: 50%;
  border: 2px solid var(--white-color);
}

/*///tabService-mainblock///*/

.tabService-mainblock{
  padding: 20px 0 0 0;
}
.tabService-mainblock .service-tabmenublock{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #dedede;
}
.tabService-mainblock .service-tabmenublock .nav-item{
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.tabService-mainblock .service-tabmenublock .nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.tabService-mainblock .service-tabmenublock .nav .nav-link{
  padding: 10px 5px;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--header-color);
  font-weight: 600;
  border-radius: 0;
}
.tabService-mainblock .service-tabmenublock .nav .nav-link.active{
  background-color: transparent !important;
  color: var(--green-color) !important;
  border-color: var(--green-color);
}

.tabService-mainblock .tab-content .container{
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.tabService-mainblock .tab-contentblock{
  width: 100%;
  max-width: 100%;
  padding: 15px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.tabService-mainblock .tab-contentblock .tab-header{
  width: 100%;
  max-width: 100%;
  padding: 0 0 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.tabService-mainblock .tab-contentblock .show-all-block {
  width: 100%;
  padding: 15px 0 20px 0 ;
  margin: 0 0 15px 0;
  border-bottom: 1px solid var(--light-gary);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.tabService-mainblock .tab-contentblock .show-all-block a {
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-decoration: none;
    clear: both;
    font-family: var(--header-font);
    font-size: var(--paragraph-font-size);
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;

}


.tabService-mainblock .service-items-block{
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}

.tabService-mainblock .service-items-block .service-item{
  width: 100%;
  max-width: calc(25% - 15px);
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.tabService-mainblock .service-items-block .service-item a{
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  color: inherit;
}
.tabService-mainblock .service-items-block .service-box{
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  color: inherit;
  background-color: var(--light-gary);
  border: 1px solid #C5C5C5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;
}
.tabService-mainblock .service-box .service-image{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 160px;
  background-color: var(--light-gary2);
  object-fit: cover;
  transition: all 0.5s;
}
.tabService-mainblock .service-box:hover{
  background-color: var(--light-gary);
}
.tabService-mainblock .service-box .service-image img{
  width: 100%;
  height: 160px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  object-fit: cover;
}
.tabService-mainblock .service-box .service-details {
  width: 100%;
  padding: 15px;
  max-width: 100%;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.tabService-mainblock .service-box .service-details .titel {
  width: 100%;
  padding: 0;
  max-width: 100%;
  margin: 0 0 15px 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: var(--subheading-font-size2);
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tabService-mainblock .service-box .service-details .tag-block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 5px 0;
  margin: 0;
}

.tabService-mainblock .service-box .service-details .tag-block .tag-item {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3px 10px;
  background-color: var(--green-color);
  border-radius: 5px;
  font-family: var(--menu-font);
  font-size: var(--menu-font-size);
  color: var(--white-color);
  gap: 5px;
}
.tabService-mainblock .service-box .service-details .tag-block .tag-item:nth-child(2){
  background-color: var(--text-color);
}
.tabService-mainblock .service-box .service-details .tag-block .tag-item i{
  color: var(--yellow-color);
}

/*////*/

.tabService-mainblock .service-items-block .service-item:hover .service-box{
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.tabService-mainblock .service-items-block .service-item:hover .service-box .service-details .titel{
  color: var(--white-color);
}

.tabService-mainblock .service-items-block .service-item:hover .service-box .service-details .tag-block .tag-item{
  background-color: var(--white-color);
  color: var(--primary-color);
}

.service-details-hover-content {
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  color: inherit;
  background-color: var(--light-gary);
  border: 1px solid #C5C5C5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;

  width: 300px;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 9;
  transform: translate(3%,-50%);
  padding: 15px;
  border-radius: 16px;
  display: none;
  opacity: 0;
  height: 50px;
  overflow: visible;
}

.service-details-hover-content .service-innerbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
}

.service-details-hover-content .service-innerbox:before {
  content: "";
  contain: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid var(--primary-color);
  border-left: 0;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  left: -35px;
}

.tabService-mainblock .service-items-block .service-item:nth-child(4) .service-details-hover-content .service-innerbox:before {
    left: inherit;
    right: -35px;
    transform: rotate(180deg);
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 25px solid #ffffff;
  border-left: 0;
}


.tabService-mainblock .service-items-block .service-item:hover .service-details-hover-content{
  display: inline-block;
  opacity: 1;
  height: auto;
}

.tabService-mainblock .service-items-block .service-item:nth-child(4) .service-details-hover-content {
  left: 0;
  right: inherit;
  margin-left: -322px;
}

.service-details-hover-content .service-image{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 160px;
  background-color: var(--light-gary2);
  object-fit: cover;
  transition: all 0.5s;
}
.tabService-mainblock .service-box:hover{
  background-color: var(--light-gary);
}
.service-details-hover-content .service-image img{
  width: 100%;
  height: 160px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  object-fit: cover;
}
.service-details-hover-content .service-details {
  width: 100%;
  padding: 15px;
  max-width: 100%;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.service-details-hover-content .titel {
  width: 100%;
  padding: 0;
  max-width: 100%;
  margin: 0 0 10px 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: var(--subheading-font-size2);
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.service-details-hover-content .tag-block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  padding: 0 0 5px 0;
  margin: 0;
  flex-wrap: wrap;
}

.service-details-hover-content .tag-item {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3px 10px;
  background-color: var(--green-color);
  border-radius: 5px;
  font-family: var(--menu-font);
  font-size: var(--menu-font-size);
  color: var(--white-color);
  gap: 5px;
  flex-wrap: wrap;
}
.service-details-hover-content .tag-block .tag-item:nth-child(2){
  background-color: var(--text-color);
}
.service-details-hover-content .tag-block .tag-item i{
  color: var(--yellow-color);
}

.service-details-hover-content .quick-text{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 5px 0;
  margin: 0;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--black-color);
}

.service-details-hover-content .stats-text{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
  margin: 0;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--black-color);
  font-weight: 500;
  border-top: 1px solid var(--light-gary2);
  border-bottom: 1px solid var(--light-gary2);
}
.service-details-hover-content .text-content{
  width: 100%;
  padding: 0 0 5px 0;
  margin: 0;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
}

.service-details-hover-content .list-text-block{
  width: 100%;
  padding: 5px 0;
  margin: 0;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  list-style: none;
}

.service-details-hover-content .list-text-block li{
  width: 100%;
  padding: 3px 0;
  margin: 0;
  font-family: var(--paragraph-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 30px;
  position: relative;
}

.service-details-hover-content .list-text-block li:before {
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color);
}
.service-details-hover-content .button-block {
  width: 100%;
  padding:5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.service-details-hover-content .button-block .btn {
  min-height: 42px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: var(--white-color) !important;
  font-weight: 600;
}


/*///assessments-mainblock///*/

.assessments-mainblock{
  
}

.assessments-mainblock .section-header{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.assessments-mainblock .section-header .left-block{
  width: 100%;
  max-width: 400px;
  padding: 0;
  margin: 0;
  border: none;
}

.assessments-mainblock .section-header .right-block{
  width: 100%;
  max-width: 48%;
  padding: 0;
  margin: 0;
  border: none;
}

.assessments-mainblock .video-block{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
}

.assessments-mainblock .video-block .videobox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
  background-color: transparent;
  position: relative;
}

.assessments-mainblock .video-block:after {
    content: "";
    contain: "";
    width: 100px;
    height: 120px;
    background-image: url(../images/logo-icon.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: -43px;
    z-index: 9;
    background-size: contain;
}

.assessments-mainblock .video-block .videobox a{
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
}
.assessments-mainblock .video-block .videobox img{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

/*////skills-mainblock///*/

.skills-mainblock{
  background-color: var(--light-gary);
}

.skills-mainblock .skills-allitems{
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}

.skills-mainblock .skills-allitems .skills-item {
  width: 100%;
  max-width: 100%;
  padding: 8px;
  margin: 0 -8px;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.skills-mainblock .skills-allitems .skills-item a{
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  color: inherit;
}
.skills-mainblock .skills-allitems .skills-innerbox{
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  color: inherit;
  background-color: var(--light-gary2);
  border: 1px solid #C5C5C5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;
}

.skills-mainblock .skills-allitems .skills-innerbox:hover{
  background-color: var(--primary-color);
}

.skills-mainblock .skills-allitems .skills-innerbox .image-box{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 160px;
  background-color: var(--light-gary);
  object-fit: cover;
  transition: all 0.5s;
  overflow: hidden;
}
.tabService-mainblock .service-box:hover{
  background-color: var(--light-gary);
}
.skills-mainblock .skills-allitems .skills-innerbox .image-box img{
  width: 100%;
  height: 160px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  object-fit: cover;
}

.skills-mainblock .skills-allitems .skills-innerbox:hover .image-box img{
  transform: scale(1.1);
}

.tabService-mainblock .service-box .service-details {
  width: 100%;
  padding: 15px;
  max-width: 100%;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.skills-mainblock .skills-allitems .skills-innerbox .details .sub-titel {
  width: 100%;
  padding: 0;
  max-width: 100%;
  margin: 0 0 15px 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: var(--subheading-font-size2);
  transition: all 0.5s;
}

.skills-mainblock .skills-allitems .skills-innerbox:hover .details .sub-titel {
  color: var(--white-color);
}

.skills-mainblock .skills-allitems .skills-innerbox .details .text {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  max-height: 160px;
  transition: all 0.5s;
}

.skills-mainblock .skills-allitems .skills-innerbox:hover .details .text {
  text-decoration: none;
  color: var(--white-color);
}

.skills-mainblock .skills-allitems .skills-innerbox .button-block{
  width: 100%;
  padding: 0 15px 30px 15px;
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.skills-mainblock .skills-allitems .skills-innerbox .button-block .btn{
  min-width: 160px;
}

.skills-mainblock .skills-allitems .skills-innerbox:hover .button-block .btn{
  border-color: var(--white-color);
  color: var(--white-color);
}

.tabService-mainblock .slick-slider {
  margin:0 -15px;
}
.tabService-mainblock .slick-slide {
  padding:10px;
  background-color:red;
  text-align:center;
  margin-right:15px;
  margin-left:15px;
}

.skills-mainblock .skills-allitems .skills-innerbox .details {
  padding: 15px;
  max-width: 100%;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}



/*////ourProducts-mainblock///*/

.ourProducts-mainblock{
  
}

.ourProducts-mainblock .ourProducts-block{
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}

.ourProducts-mainblock .ourProducts-block .ourProduct-item{
  width: 100%;
  max-width: 100%;
  padding: 8px;
  margin: 0 -8px;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.ourProducts-mainblock .ourProducts-block .ourProduct-item a{
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  color: inherit;
}
.ourProducts-mainblock .ourProducts-block .skills-innerbox{
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  color: inherit;
  background-color: var(--light-gary2);
  border: 1px solid #C5C5C5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;
}



.ourProducts-mainblock .ourProducts-block .skills-innerbox .image-box{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 250px;
  background-color: var(--light-gary);
  object-fit: cover;
  transition: all 0.5s;
}
.ourProducts-mainblock .ourProducts-block .skills-innerbox:hover{
  background-color: var(--primary-color);
}
.ourProducts-mainblock .ourProducts-block .skills-innerbox .image-box img{
  width: 100%;
  height: 250px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  object-fit: cover;
}
.ourProducts-mainblock .ourProducts-block .details {
  width: 100%;
  padding: 15px;
  max-width: 100%;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.ourProducts-mainblock .ourProducts-block .details .sub-titel {
  width: 100%;
  padding: 0;
  max-width: 100%;
  margin: 0 0 15px 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: var(--subheading-font-size2);
  transition: all 0.5s;
}

.ourProducts-mainblock .ourProducts-block .skills-innerbox:hover .details .sub-titel {
  color: var(--white-color);
}

.ourProducts-mainblock .ourProducts-block .details .text {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  max-height: 160px;
  transition: all 0.5s;
}

.ourProducts-mainblock .ourProducts-block .skills-innerbox:hover .details .text {
  color: var(--white-color);
}

.ourProducts-mainblock .ourProducts-block .button-block{
  width: 100%;
  padding: 0 15px 30px 15px;
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ourProducts-mainblock .ourProducts-block .button-block .btn{
  min-width: 160px;
}

.ourProducts-mainblock .ourProducts-block .skills-innerbox:hover .button-block .btn{
  border-color: var(--white-color);
  color: var(--white-color);
}


/*///banner-proSlider-mainblock///*/

.banner-proSlider-mainblock{
  padding: 0;
}
.banner-proSlider-mainblock .banner-items{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  max-width: 100%;
  background-color: var(--light-gary);
}
.banner-proSlider-mainblock .banner-items img{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  max-width: 100%;;
}

/*///special-service-mainblock///*/
.special-service-mainblock a{
  text-decoration: none;
  color: inherit;
}
.special-service-mainblock .spl-service{
  width: 100%;
  padding: 30px;
  max-width: 100%;
  margin: 0;
  border: none;
  border-radius: 16px;
  background-color: var(--light-gary2);
  height: 500px;
  background-image: url(../images/live-classes-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.special-service-mainblock .innerbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}
.special-service-mainblock .details-box{
  width: 100%;
  max-width: 430px;
  padding: 0;
  margin: 0;
  min-height: 450px;
}
.special-service-mainblock .details-box .header{
  width: 100%;
  padding: 0 0 15px 0;
  margin: 0;
  max-width: 100%;
}
.special-service-mainblock .details-box .textbox{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  min-height: 250px;
}

.special-service-mainblock .details-box .button-block{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@keyframes pound {
  50% { transform: scale(1.2); }
}



.special-service-mainblock .spl-service .imagebox {
  position: absolute;
  top: 190px;
  right: 15px;
  width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  
  overflow: hidden;
}

.special-service-mainblock .spl-service .imagebox img{
  width: auto;
  max-width: 100%;
  display: inline-block;
  padding: 0;
  margin: 0;
  animation: pound 10s infinite;
}

.special-service-mainblock .career-service .details-box .textbox{
  max-width: 270px;
}
.special-service-mainblock .spl-service.career-service{
  background-image: url(../images/career-bg.png);
}

/*///////footer/////*/

.footer-mainblock{
  width: 100%;
  background-color: var(--light-gary2);
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.footer-topblock{
  width: 100%;
  padding: 10px 0 5px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  border-bottom: 1px solid #D9D9D9;
}
.footer-topblock .footer-top {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*////*/
.footer-slocial-block{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
}
.footer-slocial-block{
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.footer-slocial-block li{
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.footer-slocial-block li a {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  background-color: var(--green-color);
  border-radius: 50%;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/*/////*/

.footer-menublock {
  width: 100%;
  padding: 40px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.footer-menublock .menubox {
  width: 100%;
  padding: 0 0 20px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.footer-menublock .footer-titel {
  width: 100%;
  padding: 0;
  margin: 0 0 10px 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading-font-size);
  color: var(--green-color);
  line-height: 1.2;
  font-weight: 600;
  position: relative;
}

.footer-menublock .footer-titel.titel-border:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #e8e8e8;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}
.footer-menublock .footer-titel.titel-border span {
  position: relative;
  display: inline-block;
  padding: 0 25px 0 0;
  background: var(--light-gary2);
  z-index: 9;
}


.footer-menublock .menulist {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
}
.footer-menublock .menulist li{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}
.footer-menublock .menulist li a{
  width: 100%;
  padding: 3px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--menu-font);
  font-size: var(--small-text);
  color: var(--paragraph-text-color);
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-menublock .menulist li a:hover{
  text-decoration: none;
  color: var(--green-color);
}

.footer-menublock .footer-solution-block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 5px;
}
.footer-menublock .footer-solution-block .menubox{
  max-width: 48%;
  padding: 0 0 5px 0;
}



.footer-menublock .footer-subtitel {
  width: 100%;
  padding: 0 0 2px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--small-text);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;
}

.footer-copyright-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.footer-copyright-block .footer-right-text {
  width: 100%;
  padding: 15px 0 20px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: none;
  border-top: 1px solid #D9D9D9;
  font-family: var(--paragraph-font);
  font-size: var(--small-text);
  color: var(--paragraph-text-color);
  line-height: 1.2;
  font-weight: 400;
}


/*/////////*/

.footer-menublock .footer-get-link-block{
  width: 100%;
  padding: 0;
  margin: 0 0 15px 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--subheading-font-size);
  color: var(--green-color);
  line-height: 1.2;
  font-weight: 600;
  position: relative;
}

.footer-menublock .footer-get-link-block h4{
  width: 100%;
  padding: 0;
  margin: 0 0 10px 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--paragraph-font-size);
  color: var(--black-color);
  line-height: 1.2;
  font-weight: 600;
  position: relative;
}

.footer-menublock .footer-get-link{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.footer-menublock .footer-get-link form{
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #eceaea;
  font-size: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-menublock .footer-get-link form input{
  width: 100%;
  height: 48px;
  padding: 15px;
  background: #fff;
  border: none;
  font-size: 12px;
  height: 48px;
}

.footer-menublock .footer-get-link .get-link-btn {
  min-width: 100px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  flex: 1;
  padding: 12px 0;
  border-radius: unset;
  border-radius: 0 8px 8px 0;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  background: #01202b;
  box-shadow: 0 3px 0 #01202b;
  border: 1px solid transparent;
  height: 45px;
  position: relative;
  margin-top: -2px;
  margin-right: -2px;
  color: #ffffff;
}

/*/////*/

.footer-leftblock {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  padding-right: 40px;
  max-width: 100%;
}



.footer-bool-free-section {
  width: 100%;
  border-radius: 16px;
  border: 1.5px solid #eceaea;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 3px 0 #eceaea;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bool-free-section p{
  width: 100%;
  padding: 0;
  margin: 0 0 10px 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--small-text);
  color: var(--black-color);
  line-height: 1.2;
  font-weight: 600;
  position: relative;
}


/*////*/

.footer-tool-freeblock{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.footer-tool-freeblock .footer-titel {
  width: 100%;
  padding: 0;
  margin: 0 0 10px 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--paragraph-font-size);
  color: var(--black-color);
  line-height: 1.2;
  font-weight: 600;
  position: relative;
}

.footer-tool-freeblock .contact-list {
  width: 100%;
  padding: 0 0 2px 0;
  list-style: none;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--small-text);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 600;
}

.footer-tool-freeblock .contact-list li, .footer-tool-freeblock .contact-list li a{
  width: 100%;
  padding: 2px 0;
  list-style: none;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--small-text);
  color: var(--header-color);
  line-height: 1.2;
  font-weight: 400;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

}



/*/////////*/

.main-header .header-menublock .nav-item{
  position: relative;
}

.dropdown-menu.show {
    display: none;
}



.dropdown-menu {
  border: none;
  background-color: #F3E5F5;
  padding: 0;
  width: auto;
  background-color: var(--light-gary);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  width: 100%;
  padding: 15px 30px 30px 30px !important;
  min-width: 300px;
  max-width: 900px;
}


.magha-menu .dropdown-menu{
  width: 900px;
  min-width: 900px;
  max-width: 100%;
  transform: translate(-50%, 0);
}

.navbar-expand-md .navbar-nav .dropdown-menu.columns2{
  min-width: 480px;
}
.columns2{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}



/*/////*/

.dropdown-menu li{
  width: 100%;
  padding: 8px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  border-top: 1px solid var(--light-gary2);
}

.dropdown-menu li:first-child{
  border-top: none;
}

.dropdown-menu li a{
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--menu-font);
  font-size: var(--menu-font-size);
  color: var(--paragraph-text-color);
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}
.dropdown-menu li a:hover{
  text-decoration: none;
  color: var(--green-color);
}

/*////*/








.dropdown-menu .container{
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.dropdown-menu .view-all {
  width: 100%;
  padding: 20px 50px;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  background-color: var(--primary-color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  margin-right: -15px;
}

.dropdown-menu .view-all .view-btn{
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: var(--menu-font);
  font-size: var(--subheading2-font-size);
  color: var(--white-color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.dropdown-menu .dropdown-menu-innerblock{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.dropdown-menu .menu-video-block{
  position: relative;
  background-color: var(--primary-light-color);
  min-height: 400px;
}
.dropdown-menu .menu-video-block .video {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  display: flex;
  justify-content: center;
}
.dropdown-menu .menu-video-block .video img{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  object-fit: cover;
}
.dropdown-menu .dropdown-menu-innerblock .maghamenu-block {
  width: 100%;
  padding: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.dropdown-menu .dropdown-menu-innerblock .maghamenu-block .header-block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid var(--light-gary2);
  padding: 0 0 10px 0;
  margin: 0 0 15px 0;
  gap: 15px;
}


.dropdown-menu .maghamenu-list {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--paragraph-font);
  font-size: var(--paragraph-font-size);
  color: var(--paragraph-text-color);
  line-height: 1.6;
  font-weight: 400;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.dropdown-menu .maghamenu-list li{
  width: 100%;
  padding: 2px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
}
.dropdown-menu .maghamenu-list li a{
  width: 100%;
  padding: 10px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--menu-font);
  font-size: var(--menu-font-size);
  color: var(--paragraph-text-color);
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}
.dropdown-menu .maghamenu-list li a:hover{
  text-decoration: none;
  color: var(--green-color);
}


.dropdown-menu .menu-item{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}
.dropdown-menu .menu-item .menu-text{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.dropdown-menu .menu-item .menu-text .menu-titel{
  width: 100%;
  padding: 0 0 8px 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--menu-font);
  font-size: var(--menu-font);
  color: var(--paragraph-text-color);
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.dropdown-menu .menu-item .menu-text .menu-details{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--menu-font);
  font-size: var(--small-text);
  color: var(--paragraph-text-color);
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}

.header-menublock .magha-menu .dropdown-menu{
  padding: 0 !important;
  border-radius: 0 0 8px 30px;
}

.dropdown-menu .maghamenu-list li a span{
  display: inline-block;
  width: 100%;
  clear: both;
  font-family: var(--menu-font);
  font-size: var(--small-text);
  color: var(--paragraph-text-color);
  line-height: 1;
  font-weight: 400;
  padding: 0px;
  margin: 0px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  outline: none;
  text-decoration: none;
  transition: 0.3s;
}


/*///all-course-menu////*/

.main-header .header-menublock .all-courses-menu{
  position: static !important;
}

.header-menublock .all-courses-menu .dropdown-menu{
  width: 100% !important;
  max-width: 100% !important;
  transform: translate(0, 0);
}
.header-menublock .all-courses-menu  .menu-tabblock {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}
.header-menublock .all-courses-menu  .menu-tabmenublock {
  width: 100%;
  padding: 30px;
  margin: 0;
  max-width: 300px;
  background-color: var(--light-gary2);
  text-align: left;
}
.header-menublock .new-megamenu-heading{
  width: 100% ;
  padding: 0 0 10px 5px;
  margin: 0;
  border: none;
  border-bottom: 3px solid var(--light-gary2);
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--header-color);
}

.header-menublock .all-courses-menu .titel, .header-menublock .new-megamenu-heading h3{
  width: 100% ;
  padding: 10px 5px;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--header-font);
  font-size: var(--subheading2-font-size);
  color: var(--header-color);
  font-weight: 600;
  border-radius: 0;
  color: var(--green-color) !important;

}
.header-menublock .new-megamenu-heading p{
  width: 100%;
  padding: 0;
  margin: 0 0 10px 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--header-font);
  font-size: var(--small-text);
  color: var(--black-color);
  line-height: 1.2;
  font-weight: 600;
  position: relative;
}


.header-menublock .tab-content>.tab-pane {
    display: none !important;
}

.header-menublock .all-courses-menu  .menu-tabblock .tab-content>.tab-pane.show{
  display: block !important;
}

/**/


.new-menu-tagcard {
  border: 1px solid #eee;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,.1);
  display: block;
  padding: 8px;
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all .25s ease;
  overflow: hidden;
  background: #fff;
}

.new-menu-tagcard {
  border: 1px solid #eee;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,.1);
}
.w-100 .new-mega-coloum a.new-menu-tagcard {
    max-width: 250px;
    width: 100%;
    margin-right: 16px;
    min-width: 32%;
}


.w-100 .new-mega-coloum {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  padding: 15px 0;
  gap: 15px;
}

.w-100 .new-mega-coloum a.new-menu-tagcard {
  max-width: 250px;
  width: 100%;
  margin-right: 0;
  padding: 15px;
  margin: 0 !important;
}

.new-menu-tagcard .program-card h4 {
  font-size: 16px;
  line-height: 20px;
  min-height: 60px;
}

.pg-card-bottom {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.pg-card-bottom h5 {
  line-height: 14px;
  color: #646464;
  font-size: 12px;
  text-transform: capitalize;
}
.popular-wrapper-main {
  position: absolute;
  bottom: -8px;
  right: -12px;
  width: 122px;
  height: 24px;
  overflow: hidden;
}
.popular-wrapper-main .popular-wrap {
  width: 102px;
  height: 24px;
  transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  margin-left: 20px;
  border-top-left-radius: 8px;
  text-align: center;
  padding: 0px;
  font-size: 12px;
  color: #fff;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.4);
}
.popular-wrapper-main .popular-wrap span {
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin-top: 0px;
  font-size: 12px;
  transform: skew(20deg);
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -o-transform: skew(20deg);
  text-shadow: 0px 0px 4px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-menu-tagcard {
  border: 1px solid #eee;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,.1);
  display: block;
  padding: 8px;
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all .25s ease;
  overflow: hidden;
  background: #fff;
}

.w-100 .new-mega-coloum a.new-menu-tagcard {
  max-width: 250px;
  width: 100%;
  margin-right: 16px;
}


/*////*/

.header-menublock .all-courses-menu .menu-tabblock .tab-content {
  width: 100%;
  padding: 30px;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  max-width: 100%;
}

.header-menublock .all-courses-menu .menu-tabmenublock li {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.header-menublock .all-courses-menu .menu-tabmenublock li a {
  width: 100%;
  padding: 12px;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none !important;
  clear: both;
  font-family: var(--menu-font);
  font-size: var(--menu-font);
  color: var(--paragraph-text-color);
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: none;
  text-align: left;
}
.header-menublock .all-courses-menu .menu-tabmenublock li a:hover {
  text-decoration: none !important;
  color: var(--green-color);
}
.header-menublock .all-courses-menu .menu-tabmenublock li .nav-link.active, 
.header-menublock .all-courses-menu .menu-tabmenublock li .show>.nav-link {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

.new-mega-menu-program {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border: none;
  outline: none;
  text-decoration: none;
}


.menu-tabblock .new-mega-menu-program .new-menu-list{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.menu-tabblock .new-mega-menu-program .new-menu-list.w-33{
  max-width: 33%;
  min-width: 33%;
}

.menu-tabblock .new-mega-menu-program .new-menu-list.w-66{
  max-width: 66%;
  min-width: 66%;
}

.menu-tabblock .new-mega-menu-program .new-menu-list .new-mega-coloum{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}


.menu-tabblock .program-card{
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.menu-tabblock .program-card .program-head{
  width: 100%;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid var(--light-gary2);
}
.menu-tabblock .program-card h4 {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  clear: both;
  font-family: var(--menu-font);
  font-size: var(--mediam-text);
  color: var(--paragraph-text-color);
  line-height: 1.5;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: none;
  text-align: left;
}
.menu-tabblock .program-card .program-head img {
  max-width: 100px;
  height: 30px;
  object-fit: contain;
}
.menu-tabblock .program-card .pg-card-bottom {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding: 10px 0 0 0;
  margin: 10px 0 0 0;
  border-top: 1px solid var(--light-gary2);
}
.popular-wrapper-main .popular-wrap{
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}


.header-social-searchblock ul.contact-list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0
     ;
  margin: 0;
  gap: 15px;
}


.header-social-searchblock ul.contact-list li, 
.header-social-searchblock ul.contact-list li a{
  width: auto;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: var(--paragraph-font);
  color: var(--white-color);
  font-size: var(--small-text);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.header-social-searchblock ul.contact-list i{
  font-size: var(--paragraph-font);
}

.header-social-searchblock ul.contact-list .titel{
  width: auto;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: var(--header-font);
  color: var(--white-color);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-social-searchblock ul.contact-list p{
  width: auto;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: var(--paragraph-font);
  color: var(--white-color);
  font-size: var(--paragraph-font);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-social-searchblock .topheader-leftblock {
  padding: 5px 0;
  height: 55px;
  width: 40%;
  max-width: 40%;
  align-items: center;
  display: flex;
}
.header-social-searchblock .topheader-rightblock {
  padding: 5px 0;
  height: 55px;
  width: 60%;
  max-width: 60%;
}





/*/////theme-css//////*/

.theme-change-btnblock {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: fixed;
  top: 130px;
  right: -4px;
  z-index: 99;
}

.theme-change-btnblock .theme-btn{
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--button-font-size);
  color: var(--white-color);
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  border-radius: var(--border-redious);
  transition: all 0.5s;
  gap: 10px;
  white-space: nowrap;
  box-shadow: none;
  outline: none;

  background-image: linear-gradient(90deg, #429656 0, #00ca30 51%, #0f6824) !important;
  background-size: 200% auto !important;
  color: #fff;
  transition: .5s;
  min-width: 54px;
  min-height: 48px;
  cursor: pointer;

}




.theme-change-btnblock .theme-btn i{
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  color: var(--white-color);
  transition: all 0.5s;
}

.theme-change-btnblock .theme-btn:hover{
  text-decoration: none;
  background-color: var(--menu-text-color);
  color: var(--white-color);
}

.theme-change-btnblock .theme-btn:hover i{
  text-decoration: none;
  color: var(--white-color);
}

.theme-change-btnblock .theme-btn .fa-moon-o{
  display: inline-block;
}
.theme-change-btnblock .theme-btn .fa-sun-o{
  display: none !important;
}



.dark-theme-main .theme-change-btnblock .theme-btn .fa-moon-o{
  display: none;
}

.dark-theme-main .theme-change-btnblock .theme-btn .fa-sun-o{
  display: inline-block !important;
}




/*/////responsive-css//////*/

@media only screen and (max-width: 1600px) {

  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 94%;
  }


}

@media only screen and (max-width: 1400px) {

  :root{

    --menu-font-size: 12px;
    --slider-header-font-size: 40px;
    --header-font-size: 32px;
    --subheading-font-size: 18px;
    --subheading2-font-size: 16px;
    --paragraph-font-size: 14px;
    --mediam-text: 14px;
    --small-text: 12px;
    --button-font-size: 12px;

    --section-gap:50px;
    --border-redious: 6px;
  }


  .header-logo-menusection .mr-4, .header-logo-menusection .mx-4 {
    margin-right: 0.5rem!important;
  }
  .navbar-brand img {
      max-width: 150px;
  }

  .header-logo-menusection .header-menublock .btn {
    padding: 10px !important;
  }

  .header-logo-menusection .header-menublock .navbar-expand-md .navbar-nav .nav-link {
    padding-right: .2rem;
    padding-left: .2rem;
  }

  .search-block{
    max-width: 160px;
  }

  .header-topsection .topheader-leftblock{
    width: 40%;
    max-width: 40%;
  }
  .header-topsection .topheader-rightblock {
    width: 60%;
    max-width: 60%;
  }


}

@media only screen and (max-width: 992px) {

  .tabService-mainblock .service-items-block .service-item{
    max-width: calc(50% - 15px);
  }

  .special-service-mainblock .spl-service .imagebox{
    top: inherit;
    right: 35px;
    width: 120px;
    bottom: 60px;
  }

  .ourProducts-mainblock .ourProducts-block .skills-innerbox .image-box{
    height: 150px;
  }
  .ourProducts-mainblock .ourProducts-block .skills-innerbox .image-box img{
    height: 150px;
  }
  .ourProducts-mainblock .ourProducts-block .button-block{
    padding: 0 15px 15px 15px;
  }

  .footer-mainblock .footer-menublock .col-sm-4, .footer-mainblock .footer-menublock .col-sm-8 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  .footer-menublock .footer-get-link-block h4{
    text-align: center;
  }
  .app-store-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
  }
  .footer-tool-freeblock .footer-titel{
    text-align: center;
  }
  .footer-tool-freeblock .contact-list{
    justify-content: center !important;
    margin-bottom: 20px;
  }
  .footer-tool-freeblock .contact-list li, .footer-tool-freeblock .contact-list li a{
    justify-content: center;
    text-align: center;
  }

  .header-topsection .social-media-list{
    gap: 5px;
  }
  .search-block {
    max-width: 110px;
  }

}


@media only screen and (max-width: 767px) {

  :root{

    --menu-font-size: 12px;
    --slider-header-font-size: 28px;
    --header-font-size: 28px;
    --subheading-font-size: 16px;
    --subheading2-font-size: 14px;
    --paragraph-font-size: 14px;
    --mediam-text: 12px;
    --small-text: 11px;
    --button-font-size: 11px;

    --section-gap:30px;
    --border-redious: 6px;
  }

  .header-topsection .top-innersection{
    flex-wrap: wrap;
    background: var(--primary-color);
  }

  .header-topsection .topheader-leftblock{
    width: 100%;
    padding: 0 15px;
    max-width: 100%;
    height: auto;
  }
  .header-topsection .topheader-rightblock{
    width: 100%;
    padding: 5px 15px;
    max-width: 100%;
    height: auto;
    background-color: var(--white-color);
    background: var(--white-color);
  }

  .header-topsection .right-innerbox {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: initial;
    gap: 10px;
  }
  .search-block {
    max-width: 100%;
    order: 1;
  }
  .search-block .search-innerbox{
    max-width: 100%;
  }

  .header-topsection .right-innerbox .register-now-topbox{
    order: 2;
  }
  .header-topsection .top-social-menia-block{
    order: 3;
  }

  .header-topsection .container{
    padding: 0 !important;
  }

  .header-topsection .heighlight-info .info-titel{
    text-align: center;
  }
  .header-topsection .heighlight-info .info-item p{
    text-align: center;
  }

  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 100%;
  }



  #navbarNav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
  }

  #navbarNav .navbar-nav {
    background-color: var(--white-color);
    width: 75%;
    max-width: 75%;
    height: 100vh;
    overflow: auto;
    position: static;
    display: inline-block;
    padding: 40px 20px;
  }
  .main-header .header-menublock .nav-item {
    position: static !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #f1f1f1;
  }

  .main-header-innerblock .navbar-light .navbar-toggler[aria-expanded="true"]{
    z-index: 9999;
  }
  .main-header-innerblock .navbar-light .navbar-toggler[aria-expanded="true"] {
    z-index: 9999;
    position: fixed;
    top: 10px;
    right: 30px;
    color: #ffffff;
    border: none;
    background-color: transparent;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    cursor: pointer;
    transition: all 0.5s;
  }

  .main-header-innerblock .navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    display: none;

  }

  .main-header-innerblock .navbar-light .navbar-toggler[aria-expanded="true"]:before {
    content: "\f057";
    font: normal normal normal 14px / 1 FontAwesome;
    color: var(--white-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.5s;
  }

  .dropdown-menu .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
 
  .service-details-hover-content {
    position: static !important;
    width: 100%;
    max-width: 100%;
    transform: none;
    margin-top: 12px;
  }
  .service-details-hover-content .service-innerbox::before {
    
    position: absolute;
    top: -45px;
    margin-top: 0;
    left: 50%;
    transform: rotate(0 0);
    transform: rotate(90deg);
  }

  .ourProducts-mainblock .ourProducts-block .ourProduct-item{
    margin: 0;
    padding: 0;
  }
  .special-service-mainblock .spl-service{
    margin-bottom: 20px;
  }






  .main-header-innerblock {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    max-width: 100%;
    border: none;
    outline: none;
    text-decoration: none;
  }

  .main-header-innerblock .navbar-light .navbar-toggler{
    order: 3;
    margin-right: 0 !important;
  }

  .main-header-innerblock .navbar{
    flex-wrap: nowrap;
  }


  .live-classes-mainblock .live-classesbox{
    flex-wrap: wrap;
    padding: 10px 30px !important;
  }

  .live-classes-mainblock .live-classesbox .live-titel{
    width: 100%;
    padding: 0 0 20px 0 !important;
    margin: 0;
    text-align: center !important;
    border: none !important;
    justify-content: center;
  }

  .live-classes-mainblock .live-classesbox .live-class-list{
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .tabService-mainblock .service-tabmenublock .nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: auto;
  }

  .tabService-mainblock .service-tabmenublock .nav .nav-link{
    white-space: nowrap;
  }

  .footer-menublock .menubox{
    max-width: 48%;
  }

  .footer-leftblock{
    padding-right: 0;
    max-width: 100%;
  }

  .footer-mainblock .footer-menublock .col-sm-8 .col-sm-3{
    display: flex;
    flex-wrap: wrap;
  }

  .footer-menublock .footer-solution-block{
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .assessments-mainblock .section-header{
    flex-wrap: wrap;
  }

  .assessments-mainblock .section-header .right-block{
    max-width: 100%;
  }

  .home-sliderblock .slider-image::before {
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background-size: contain !important;
    opacity: 0.2;
  }
  .home-sliderblock .slider-titel{
    text-align: center;
  }
  .theme-change-btnblock{
    top: inherit;
    bottom: 100px;
  }

  .sticky-header .main-header-innerblock .navbar {
    flex-wrap: nowrap;
  }
  .sticky-header .main-header{
    top: 20px;
  }
  .tabService-mainblock .service-box .service-details{
    padding: 10px;
  }
  .tabService-mainblock .service-box .service-details .tag-block{
    gap: 5px;
  }
  .tabService-mainblock .service-items-block{
    gap: 10px;
  }
  .tabService-mainblock .service-items-block .service-item {
    max-width: calc(50% - 10px);
  }

  .skills-mainblock .skills-allitems .skills-item{
    margin: 0 !important;
  }

  .magha-menu .dropdown-menu{
    max-width: 100%;
    min-width: 100%;
  }
  .header-menublock .all-courses-menu .menu-tabblock{
    flex-wrap: wrap;
  }
  .header-menublock .all-courses-menu .menu-tabmenublock{
    padding: 10px;
  }
  .header-menublock .all-courses-menu .menu-tabblock .tab-content{
    padding: 10px;
  }
  .new-mega-menu-program{
    flex-wrap: wrap;
    gap: 10px;
  }
  .menu-tabblock .new-mega-menu-program .new-menu-list.w-33 {
    max-width: 100%;
    min-width: 100%;
  }
  .menu-tabblock .new-mega-menu-program .new-menu-list.w-66 {
    max-width: 100%;
    min-width: 100%;
  }
  .dropdown-menu {
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    padding: 10px !important;
    min-width: 100%;
    max-width: 100%;
  }
  .magha-menu .dropdown-menu {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    transform: none;
  }
  .dropdown-menu .dropdown-menu-innerblock .maghamenu-block{
    padding: 10px;
  }
  .dropdown-menu .maghamenu-list{
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu.columns2 {
    min-width: 100%;
    padding: 10px;
  }
  .dropdown-menu .menu-video-block{
    min-height: inherit;
  }
  .dropdown-menu .menu-video-block .video{
    position: static;
  }

  .tabService-mainblock .service-items-block .service-item:nth-child(4) .service-details-hover-content{
    margin-left: 0;
  }
  .tabService-mainblock .service-items-block .service-item:nth-child(4) .service-details-hover-content .service-innerbox::before {
    left: inherit;
    right: inherit;
    transform: rotate(90deg);
    left: 50%;
  }
  .main-header .header-menublock .nav-item{
    padding: 5px 0 !important;
  }
  .header-menublock .all-courses-menu .menu-tabmenublock li a{
    padding: 5px 0;
    font-size: 12px;
  }
  .header-menublock .all-courses-menu .menu-tabmenublock .nav.nav-pills {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
    gap: 15px;
  }
  .header-menublock .all-courses-menu .menu-tabmenublock .nav.nav-pills li a{
    white-space: nowrap;
  }
  .header-menublock .all-courses-menu .titel, .header-menublock .new-megamenu-heading h3{
    font-size: 16px;
  }

  .new-menu-tagcard .program-card h4{
    min-height: inherit;
  }

  .header-topsection .social-media-list li a{
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
  }
  .header-searchbar-open .search-block .search-innerbox {
    max-width: 80%;
  }




}


@media only screen and (max-width: 480px) {

  :root{

    --menu-font-size: 12px;
    --slider-header-font-size: 24px;
    --header-font-size: 24px;
    --subheading-font-size: 14px;
    --subheading2-font-size: 12px;
    --paragraph-font-size: 12px;
    --mediam-text: 11px;
    --small-text: 11px;
    --button-font-size: 11px;
  }

  .header-topsection .right-innerbox{
    gap: 5px;
  }
  .navbar-brand img {
    max-width: 100px;
  }
  .header-menublock .menu-buttonblock{
    gap: 5px;
  }

  .main-header-innerblock .navbar {
    flex-wrap: wrap;
  }
  .main-header-innerblock .navbar-brand{
    width: 100%;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .main-header-innerblock .navbar-brand img {
    max-width: 130px;
  }
  .sticky-header .header-menublock .menu-buttonblock{
    display: none;
  }
  .sticky-header .main-header-innerblock .navbar-brand {
    width: auto;
    justify-content: flex-start;
    text-align: left;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .sticky-header .navbar-light .navbar-toggler{
    border: none;
  }

  .tabService-mainblock .service-items-block .service-item {
    max-width: 100%;
  }

  .footer-topblock .footer-top{
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-topblock .footer-top .logo {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer-slocial-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 0 10px 0;
  }

  .columns2 {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }

}



/*////dark-theme-main////*/

.dark-theme-main{

  --primary-color: #4310BB;
  --green-color: #4310BB;
  --yellow-color: #C5A6EE;
  --primary-light-color: #c5a6ee;

  --light-gary: #3b1b80;
  --light-gary2: #13072F;
  --light-blue: #200e4c;
  --light-yellow: #170c2f;
  --home-slider-bg: #170c2f;

  --header-color: #ffffff;
  --sub-header-color: #e7e7e7;
  
  --menu-text-color: #ffffff;
  --menu-solid-button-color: #ffffff;

  --paragraph-text-color: #e7e7e7;

  --blue-text-color: #0062FF;
  --green-text-color: #4DB200;
  --orange-text-color: #FF912A;
  --perple-text-color: #BA71FF;


}

.dark-theme-main{
  background-color: var(--black-color) !important;
}


.dark-theme-main .header-topsection {
  background: linear-gradient(to right, rgb(69 17 188) 0%, rgb(69 17 188) 26%, rgb(0 0 0) 26%, rgb(0 0 0) 100%);
  border-bottom: 2px solid var(--dark-gray-color2);
  position: relative;
}


.dark-theme-main .header-topsection.fullwidth-block {
    background-color: var(--dark-gray-color) !important;
    background: var(--dark-gray-color) !important;
    border-bottom: none;
}

.dark-theme-main .header-topsection .topheader-leftblock{
  background: linear-gradient(to right,  rgba(67,16,187,1) 0%,rgba(151,71,255,1) 100%);

}
.dark-theme-main .header-topsection .topheader-rightblock {
    background: linear-gradient(135deg,  rgba(151,71,255,1) 0%,rgba(151,71,255,1) 11%,rgba(0,0,0,1) 11%,rgba(0,0,0,1) 11%,rgba(0,0,0,1) 100%);
}

.dark-theme-main .header-topsection .social-media-list li a{
  background-color: var(--white-color);
  color: var(--dark-primary-color);
}

.dark-theme-main .search-block .search-innerbox .form-control {
  background-color: var(--black-color);
  border-color: var(c);
  color: var(--w);
}
.dark-theme-main .search-block .search-innerbox{
  border-color: var(--dark-heighlight-color);
}
.dark-theme-main .btn {
      color: var(--dark-heighlight-color);
}
.dark-theme-main .solid-btn, .dark-theme-main .solid-bg-btn {
  background-color: var(--dark-primary-color);
  background-image: linear-gradient(90deg, #4310BB 0, #9747FF 51%, #9747FF) !important;
  background-size: 200% auto !important;
  border-color: var(--dark-heighlight-color);
  color: #fff;
  transition: .5s;
}

.dark-theme-main .search-block .search-innerbox .search-btn{
  background-image: url(../images/search-Icon.png);
}
.dark-theme-main.header-searchbar-open .search-block{
  background-color: var(--black-color);
}
.dark-theme-main .theme-change-btnblock .theme-btn{
  background-image: linear-gradient(90deg, #4310BB 0, #9747FF 51%, #C5A6EE) !important;
}

.dark-theme-main .header-logo-menusection {
  background-color: var(--black-color);
  border: 1px solid var(--black-color);
}

.dark-theme-main .bg-white {
    background-color: var(--black-color) !important;
}
.dark-theme-main .outline-btn{
  color: var(--white-color);
  border-color: var(--white-color);
}
.dark-theme-main .navbar-light .navbar-brand {
  color: var(--white-color);
    filter: brightness(0) invert(1);
}
.dark-theme-main .navbar-light .navbar-brand img{
    color: var(--white-color);
    filter: brightness(0) invert(1);
}
.dark-theme-main .home-sliderblock .slider-image:before{
  background-image: url(../images/home-banner-bg.png);
  opacity: 1;
}
.dark-theme-main .home-sliderblock{
background: linear-gradient(45deg,  rgba(67,16,187,1) 0%,rgba(44,24,89,1) 28%,rgba(0,0,0,1) 99%);
}


.dark-theme-main .dropdown-menu{
  background-color: var(--dark-gray-color2);
}
.dark-theme-main .header-menublock .all-courses-menu .menu-tabmenublock{
  background-color: var(--black-color);
}

.dark-theme-main .home-countblock {
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0) 28%, rgb(12 12 12) 99%);
}
.dark-theme-main .live-classes-mainblock .live-classesbox {
    background: linear-gradient(45deg, rgb(0 0 0) 0%, rgb(39 39 39) 45%, rgb(60 60 60) 99%);
}

.dark-theme-main .home-sliderblock .slider-titel span{
  color: var(--dark-heighlight-color);
}

.dark-theme-main .tabService-mainblock {
    background: radial-gradient(ellipse at center, rgb(0 0 0) 0%, rgb(16 2 33) 31%, rgba(0, 0, 0, 1) 99%);
}

.dark-theme-main .tabService-mainblock .service-tabmenublock{
  border-bottom: 1px solid #3f354c;
}

.dark-theme-main .tabService-mainblock {
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgb(7 0 13) 31%, rgba(0, 0, 0, 1) 99%);
}

.dark-theme-main .assessments-mainblock {
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(15, 1, 7, 1) 13%, rgb(18 2 38) 46%, rgba(10, 0, 4, 1) 92%, rgba(0, 0, 0, 1) 99%);
}

.dark-theme-main .tabService-mainblock .service-items-block .service-box{
  border-color: var(--primary-color);
  background-color: var(--black-color);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,0f0107+13,370a72+46,0a0004+92,000000+99 */
background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(15,1,7,1) 13%,rgba(55,10,114,1) 46%,rgba(10,0,4,1) 92%,rgba(0,0,0,1) 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.dark-theme-main .service-details-hover-content .quick-text{
  color: var(--white-color);
}
.dark-theme-main .service-details-hover-content .stats-text{
  color: var(--white-color);
}
.dark-theme-main .service-details-hover-content{
  background-color: var(--black-color);
  border: 1px solid var(--dark-primary-color);
}
.dark-theme-main .tabService-mainblock .tab-contentblock .show-all-block a{
  color: var(--light-perple-color);
}
.video-dark-theme{
  display: none;
  opacity: 0;
}
.dark-theme-main .video-dark-theme{
  display: inline-block;
  opacity: 1;
}
.dark-theme-main .video-light-theme{
  display: none;
  opacity: 0;
}
.dark-theme-main .skills-mainblock {
  background-color: var(--primary-color);
  background: linear-gradient(45deg, rgba(0, 0, 0, 1) 0%, rgba(15, 1, 7, 1) 13%, rgb(22 4 46) 46%, rgba(10, 0, 4, 1) 92%, rgba(0, 0, 0, 1) 99%);
}

.dark-theme-main .tabService-mainblock .service-items-block .service-item:hover .service-box{

background: linear-gradient(to bottom,  rgba(194,139,239,1) 0%,rgba(197,166,238,1) 99%);

}

.dark-theme-main .section-block .section-titel span, 
.dark-theme-main .section-block .titel span{
  color: var(--dark-heighlight-color) !important;
}

.dark-theme-main .skills-mainblock .skills-allitems .skills-innerbox{
  background-color: var(--black-color);
  border-color: var(--dark-primary-color);
}

.dark-theme-main .skills-mainblock .skills-allitems .skills-innerbox:hover{
  background-color: var(--primary-light-color);
}

.dark-theme-main .ourProducts-mainblock {
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(15, 1, 7, 1) 13%, rgb(17 0 39) 46%, rgba(10, 0, 4, 1) 92%, rgba(0, 0, 0, 1) 99%);
}

.dark-theme-main .ourProducts-mainblock .ourProducts-block .skills-innerbox{
  border-color: var(--primary-color);
}
.dark-theme-main .ourProducts-mainblock .ourProducts-block .skills-innerbox:hover {
    background-color: var(--primary-light-color);
}
.dark-theme-main .banner-proSlider-mainblock .banner-items{
  background-color: transparent;
}

.dark-theme-main .special-service-mainblock .spl-service{
  background-color: var(--primary-color);
  background-image: url(../images/live-classes.png);
}
.dark-theme-main .special-service-mainblock .spl-service.career-service{
  background-color: var(--primary-color);
  background-image: url(../images/reimagine-your-career.png);
}

.dark-theme-main .footer-mainblock{
  background: linear-gradient(45deg,  rgba(0,0,0,1) 0%,rgba(40,5,66,1) 92%,rgba(0,0,0,1) 100%);
}

.dark-theme-main .footer-topblock{
  border-bottom: 1px solid var(--primary-color);
}
.dark-theme-main .footer-topblock .footer-top .logo{
  color: var(--white-color);
  filter: brightness(0) invert(1);
}
.dark-theme-main .footer-topblock .footer-top .logo img {
  color: var(--white-color);
  filter: brightness(0) invert(1);
}
.dark-theme-main .footer-menublock .footer-titel{
  color: var(--light-perple-color);
}
.dark-theme-main .footer-menublock .footer-titel.titel-border:before{
  background-color: var(--light-perple-color);
}
.dark-theme-main .footer-menublock .footer-subtitel{
  color: var(--light-perple-color);
}
.dark-theme-main .footer-menublock .footer-get-link form{
  background: transparent;
  border: 1px solid var(--primary-color);
}
.dark-theme-main .footer-menublock .footer-get-link form input{
  background: transparent;
}

.dark-theme-main .footer-menublock .footer-get-link .get-link-btn {
  background-color: var(--dark-primary-color);
  background-image: linear-gradient(90deg, #4310BB 0, #9747FF 51%, #9747FF) !important;
  background-size: 200% auto !important;
  border-color: var(--dark-heighlight-color);
  color: #fff;
  transition: .5s;
  height: 50px;
  position: relative;
  margin-top: -2px;
  margin-right: -6px;
}
.dark-theme-main .footer-menublock .footer-get-link .get-link-btn:hover {
  background-position: 100% !important;
  color: #fff;
  text-decoration: none;
}
.dark-theme-main .footer-bool-free-section{
  background-color: var(--primary-color);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,4310bb+49,000000+100 */
  background: linear-gradient(45deg,  rgba(0,0,0,1) 0%,rgba(67,16,187,1) 49%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border: 1.5px solid var(--primary-color);
  box-shadow: 0 3px 0 var(--primary-color);
}
.dark-theme-main .footer-bool-free-section p{
  color: var(--white-color);
}
.dark-theme-main .footer-copyright-block .footer-right-text{
  border-top: 1px solid var(--primary-color);
}



.dark-theme-main .navbar-light .navbar-nav .nav-link:focus, .dark-theme-main .navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary-light-color);
}
.dark-theme-main .header-menublock .all-courses-menu .titel, .dark-theme-main .header-menublock .new-megamenu-heading h3{
  color: var(--primary-light-color) !important;
}
.dark-theme-main .header-menublock .new-megamenu-heading p{
  color: var(--white-color);
}
.dark-theme-main .header-menublock .new-megamenu-heading{
  border-bottom: 3px solid var(--dark-gray-color);
}
.dark-theme-main .header-menublock .new-menu-tagcard{
  border-color: var(--black-color);
  background-color: var(--black-color);
}
.dark-theme-main .menu-tabblock .program-card h4{
  color: var(--white-color);
}
.dark-theme-main .menu-tabblock .program-card .program-head{
  border-bottom: 1px solid var(--dark-gray-color);
}
.dark-theme-main .menu-tabblock .program-card .program-head img{
  color: var(--white-color);
  filter: brightness(0) invert(1);
}
.dark-theme-main .menu-tabblock .program-card .pg-card-bottom{
  border-top: 1px solid var(--dark-gray-color);
}
.dark-theme-main .pg-card-bottom h5{
  color: var(--white-color);
}
.dark-theme-main .dropdown-menu .dropdown-menu-innerblock .maghamenu-block .header-block .menu-main-titel{
   color: var(--white-color);
}
.dark-theme-main .dropdown-menu .container{
  color: var(--white-color);
}

.dark-theme-main .dropdown-menu .maghamenu-list li a:hover{
  color: var(--dark-heighlight-color) !important;
}
.dark-theme-main .dropdown-menu li a:hover {
  text-decoration: none;
  color: var(--dark-heighlight-color) !important;
}

.header-topsection.close-action-baar{
  display: none !important;
}

/* === Key Capabilities – Enhanced Visualization === */

.capability-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.35s ease;
}

    .capability-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }

.capability-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.capability-content {
    text-align: center;
}

    .capability-content p {
        font-size: 14.5px;
        line-height: 1.6;
        color: #555;
    }

/* === Scroll-in Animation === */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

