@import url("https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/
.banner_logo {
    display: none;
}
.banner-logo-inner {
    display: none;
}
.fixed_watermark {
    position: fixed;
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.2;
}
body {
  word-break: break-word;
  font: 15px/25px "Montserrat", sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
  line-height: 25px;
  color: #0e2437;
  font-size: 14px;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8 {
  padding-top: 80px;
}

.pb_8 {
  padding-bottom: 80px;
}

.py_8 {
  padding: 80px 0px;
}

.theme_btn {
  padding: 0 7px 0 10px;
  border: unset;
  border-radius: 40px;
  z-index: 1;
  position: relative;
  font-size: 15px;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  overflow: hidden;
  background: #f79320;
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  border: 2px solid #fff;
  color: #fff;
  gap: 14px;
  text-transform: uppercase;
  font-weight: 500;
  height: 50px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 14px;
  background-color: #08070b;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}

.theme_btn:hover {
  color: #fff;
}

.theme_btn:hover::before {
  width: 100%;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Anton", sans-serif;
  font-size: 57px;
  line-height: 1.2;
  color: #08070b;
  font-weight: 400;
  margin: 0 0 17px;
  text-transform: uppercase;
}

h2 {
  font-family: "Anton", sans-serif;
  font-size: 55px;
  line-height: 1.2;
  color: #09090c;
  font-weight: 400;
  margin: 0 0 15px;
}

h3 {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  font-weight: 400;
  margin: 0 0 20px;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #393939;
  font-weight: 400;
  margin: 0 0 20px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: #393939;
  font-weight: 400;
  margin: 0 0 22px;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */
header .row {
  align-items: center;
}

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menuSec ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
}

.menuSec li:hover ul {
  opacity: 1;
}

.menuSec ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-family: "Anton";
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #e5861a;
}

.menuSec li > ul {
  position: absolute;
  z-index: 0;
  background-color: #000000;
  left: 0px;
  width: 200px;
  text-align: left;
  top: -80px;
  opacity: 0;
  transition: 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.menuSec li:hover ul {
  transition: 0.5s ease-in-out;
  top: 40px;
  z-index: 99;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  font-size: 13px;
  line-height: 20px;
  width: 100%;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li > ul > li > a:before,
.menuSec li > ul > li > a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
  width: 100%;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

/* Tab slider fix  */

.tab_sec .tab-pane {
  display: block;
  border: 0;
  height: 0;
}

.tab_sec .tab-pane.active {
  display: block !important;
  height: auto;
}

/* Tab slider fix  */

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

/*banner css end*/

.blog_sec {
  padding: 5% 0;
}

/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
  background: #242889;
  color: #fff;
}

.tab_sec .nav-tabs .nav-link {
  background: #ccc;
  border-radius: 50px;
  color: #000;
  padding: 7px 28px;
}

.tab_sec .nav-tabs {
  border: none;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Tabs  */

body{
    background-color:#f7f5f5;
}


/* ++++++++++++++++++++++++++ HOME ++++++++++++++++++++++++++ */
header {
  position: absolute;
  width: 100%;
  top: 10px;
  z-index: 9;
  left: 0;
  border-bottom: 1px solid #cccccca8;
  padding-bottom: 10px;
}

.btn-header {
  display: flex;
  align-items: center;
  justify-content: right;
}

.container-fluid {
  padding: 0 5%;
}

section.banner {
  background-image: url(../images/banner.jpg);
  background-size: cover;
  background-position: right;
  position: relative;
}
section.banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: #000;*/
}
.banner .banner_bottom > .slide_counter > h2 {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: space-between;
  line-height: 40px;
  font-weight: 400;
  font-size: 40px;
  margin: 0;
}

.banner .banner_bottom > .slide_counter > h2 > span.end_number {
  font-size: 17px;
  color: #c5c5c5;
  font-family: "Anton";
  font-weight: 400;
  line-height: 25px;
}

.banner .banner_bottom > .slide_counter > h2 > span.start_number {
  font-size: 34px;
  color: #dd831b;
  font-family: "Anton";
}

.banner .slick-prev:before {
  display: none;
}

.banner .slick-next:before {
  display: none;
}

.banner .slick-prev {
  display: none;
}

.banner .slick-next {
  display: none;
}

section.banner .slick-list .slick-current .banner-text > h1 > span {
  transform: translate(0px, 0px);
  transition: 0.3s ease-in-out;
}

.banner .banner_bottom {
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}

.banner .banner_bottom > .slide_arrows {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 10;
  margin: 0;
  width: 10%;
  justify-content: right;
  padding-right: 20px;
}

ul.slide_arrows li img:hover {
  cursor: pointer;
}

.ban-wrap {
  position: relative;
}

.slide_counter {
  width: 60%;
  padding: 0 20px;
}

.banner .slick-slide {
  margin: 20px 20px 20px 0;
}

.social-links ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin: 0;
  margin-left: 23%;
}

.social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: transparent;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid #dedede;
  transition: 0.5s;
}

.social-links ul li a:hover {
  color: #000;
  border-color: #000;
}

.baner-slider {
  margin: 77px 0 80px 0;
}

.ban-text {
  background: #fff;
  padding: 100px 30px;
  width: 100%;
  margin: 0;
}

.ban-text h2 {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Montserrat";
  letter-spacing: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
  width: fit-content;
}

.social-links {
  width: 30%;
  display: block;
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  padding: 10px 0;
}

ul.slide_arrows li {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  transition: 0.5s;
}

ul.slide_arrows li:hover {
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
}

ul.slide_arrows li:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(82deg) brightness(105%) contrast(105%);
}

.ban-side-content ul {
  display: flex;
  align-items: center;
  width: auto;
  margin: 0;
}

.ban-side-content ul li:first-child {
  padding: 10px;
}

.ban-side-content ul li h3 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ban-side-content ul li p {
  color: #fff;
  margin: 0;
  line-height: 20px;
}

.ban-side-content {
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  width: fit-content;
  margin-top:40px;
  /*position: absolute;*/
  /*right: 0;*/
  /*bottom: 10%;*/
}
.banner_small_content{
    display:flex;
    justify-content:flex-end;
}
.progress {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f5f5f5;
  background-image: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.4s ease-in-out;
}

.progress {
  position: absolute;
  width: 51%;
  right: 14.5%;
}
section.about-us {
  padding: 80px 0 140px;
  /*background: #f7f5f5;*/
}

.abt-img img {
  width: 100%;
  height: 521px;
  object-fit: cover;
}

.abt-text {
  background: #08070a;
  padding: 30px 20px;
  height: 521px;
}

.abt-text p {
  color: #ffffffa3;
  font-size: 14px;
  line-height: 25px;
}

section.about-us h2 {
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

section.about-us h3 {
  color: #fff;
  text-transform: uppercase;
}

.abt-vid h6 {
  font-size: 14px;
  color: #102537;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}

.abt-vid {
  border: 1px solid #d57b16;
  width: fit-content;
  padding: 20px;
  position: absolute;
  bottom: -50px;
  left: 10%;
}

.abt-vid a {
  color: #000;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 30px;
}

.abt-vid a svg {
  font-size: 16px;
  color: #fff;
}

.abt-img {
  position: relative;
}

section.courses {
  position: relative;
  padding: 80px 0;
  /*background: #f7f5f5;*/
  z-index: 0;
}

section.courses:before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  left: 0;
  height: 60%;
  z-index: -1;
  top: 0;
}

section.courses h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #fff;
}

.course-slider {
  padding: 20px 0 50px;
  background: #fff;
  box-shadow: 0 0 8px #ccc;
  border-bottom: 3px solid #000;
}

.course-slider .slick-slide {
  opacity: 1;
}

.course-slider .slick-slide.slick-current.slick-active.slick-center .cour-box {
  background: #e5861a;
  flex-direction: column-reverse;
}

.cour-box {
  padding: 10px;
  background: #08070a;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.cour-box img {
  width: 100%;
  height: 322px;
  object-fit: cover;
}

.cour-box h4 {
  font-size: 21px;
  color: #fff;
  text-transform: capitalize;
  font-family: "Anton", sans-serif;
  width: 80%;
  margin: 20px auto 20px;
}

.cour-box p {
  color: #fff;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
}

.area-content {
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  border: 10px solid #edeaea;
  padding: 50px 30px 30px;
  width: 600px;
  position: absolute;
  top: -80px;
  right: 60px;
}

.area-content h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 44px;
  margin-bottom: 10px;
}
.area-content p {
    color: #fff;
}
.area-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  align-items: start;
}

.area-content ul li {
  width: 33.33333%;
  display: flex;
  gap: 0;
}

.area-content ul li span {
  margin-top: -6px;
  width: 30px;
}

section.areas h4 {
  font-size: 12px;
  text-transform: capitalize;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  margin: 0;
}

.area-content ul li div p {
  color: #ffffffc7;
}

.area-img {
  position: relative;
}

section.areas {
  padding: 60px 0 80px;
  /*background: #f7f5f5;*/
}

img.img-area {
  width: 100%;
}

/* Testimonial Section Start */

.our-client-sec .head-effect::after {
  width: 50%;
}

.client-sli .slick-slide {
  opacity: 1;
}

.client-sli .slick-prev,
.client-sli .slick-next {
  top: 2%;
}

.client-sli .slick-prev {
  left: -50px;
}

.client-box {
  margin: 0px 0;
}

.client-sli {
  position: relative;
  z-index: 1;
}

.client-sli::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9%;
  border: 1px dotted #000;
  width: 100%;
  z-index: -1;
}

.client-sli .slick-prev:before {
  content: "\f104";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
  height: 50px;
  width: 50px;
  color: #fff;
  background-color: #000;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.client-sli .slick-next:before {
  content: "\f054";
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
  height: 50px;
  width: 50px;
  color: #fff;
  background-color: #000;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.client-box h6 {
  color: #3c3c3c;
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  padding-left: 20px;
}

.client-box span {
  margin-left: 20px;
  position: relative;
  left: 0;
  top: 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: #161514;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  color: #fff;
}

.client-box .quotess::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 30px;
}

.client-box .quotess::before {
  z-index: 2;
  color: #fff;
  font-size: 20px;
}

.client-ineer-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 5%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #ffffff;
  border-bottom: 0;
  margin-left: 20px;
  margin-bottom: 20px;
  transform: rotate(180deg);
  filter: drop-shadow(2px 4px 6px #00000021);
}

.client-ineer-box {
  z-index: 2;
  background-color: #fff;
  padding: 60px 30px;
  position: relative;
  box-shadow: 0 0 10px 0 #00000022;
  background: #fff;
  border-radius: 0;
}

.client-ineer-box ul {
  display: flex;
  justify-content: space-between;
}

.client-ineer-box ul li h4 {
  color: #0d0d0c;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "Anton";
}

.client-ineer-box ul li h4 span {
  font-size: 19px;
  display: block;
  color: #424242;
  text-transform: capitalize;
  margin-top: 0px;
}

.client-ineer-box ul li i {
  color: #ffb503;
  margin-right: 5px;
}

section.our-client-sec.themes-padd {
  padding: 0;
  /*background: #f7f5f5;*/
}

.slick-slide.slick-current.slick-active .client-ineer-box * {
  color: #fff;
}

.slick-slide.slick-current.slick-active .client-ineer-box:before {
  border-top-color: #ed8d1e;
}

section.our-client-sec.themes-padd .slick-track {
  margin-bottom: 30px;
}

h2.themes-h2.head-effect {
  color: #fff;
  margin: 0 0 5px;
  background: #08070a;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}

.client-sli .slick-next:hover:before,
.client-sli .slick-prev:hover:before {
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
}

.client-sli .slick-next {
  right: -20px;
}

.client-ineer-box p {
  font-size: 15px;
  color: #424242;
  line-height: 26px;
  margin: 0;
}

.slick-slide.slick-current.slick-active .client-ineer-box {
  cursor: pointer;
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  color: white;
}

.client-ineer-box h4 e {
  display: block;
  color: #7c7c7c;
  font-size: 16px;
  font-family: "Montserrat";
  text-transform: capitalize;
}

.client-ineer-box:hover ul li h4 span {
  color: white;
}

.client-ineer-box .d-flex svg {
  color: #ffc107;
}

.contact-row-pd {
  padding: 50px 50px;
  background-color: #fdfaf8;
  width: 94%;
  margin: 0 auto;
}

.client-box span svg {
  font-size: 23px;
  transform: rotate(180deg);
}

.slick-slide.slick-current.slick-active .client-box span {
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
}

/* Testimonial Section End */
/* Gallery */

/* our-work-sec */

.our-gallery-sec {
  padding: 0px 5% 100px;
  /*background: #f7f5f5;*/
}
.our-gallery-sec h2 {
  text-transform: uppercase;
}
.our-work-box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.our-work-project-img {
  height: 400px;
}

.our-work-project-img img {
  width: 100%;
  border-radius: 0;
  height: 100%;
  object-fit: cover;
}

.our-work-slider-box {
  background: #08070a;
  padding: 80px 40px 40px;
  border-radius: 0;
  min-height: 620px;
}

.our-work-slider-box h3 {
  color: #fff;
  margin-bottom: 10px;
}

.our-work-slider-box h5 {
  gap: 20px;
  padding-bottom: 10px;
  display: flex;
  margin-bottom: 25px;
  color: #fff;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ad9695;
}

.our-work-slider-box h4 {
  color: #fff;
  font-weight: 400;
  font-size: 31px;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: "Anton";
}

.our-work-slider-box h5 img {
  width: auto;
}

.our-work-slider-box p {
  margin-bottom: 15px;
  color: #fff;
  line-height: 27px;
}

.our-work-box .custom-left-p {
  padding-right: 0;
}

.our-work-box .custom-right-p {
  padding-left: 0;
  padding-right: 0;
}

.our-work-heading {
  text-align: end;
  display: flex;
  z-index: 1;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  margin-bottom: -100px;
  position: relative;
  top: 80px;
}

.our-work-heading p {
  width: 50%;
  max-width: 530px;
}

.our-fornav-slider-box {
  height: 170px;
  width: 100%;
}

.our-fornav-slider-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.our-fornav-slider {
  width: 80%;
  float: right;
  margin-top: 15px;
  margin-right: 5px;
  max-width: 1100px;
}

.our-fornav-slider .slick-slide {
  opacity: 1;
  margin: 0px 5px 0px 0px;
}

.our-workslider .slick-slide {
  margin: 0px 0px 0px 0px;
  opacity: 1;
}

.our-workslider .slick-dots {
  bottom: unset;
  display: flex;
  padding: 0;
  margin: 0;
  right: 0;
  top: 100px;
  left: 0;
  z-index: 1;
  margin: auto;
  width: fit-content;
  right: 28%;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.our-workslider .slick-dots li button:before {
  font-size: 7px;
  left: 0;
  right: 0;
  top: 12.5px;
  bottom: 0;
  margin: auto;
  color: #e7881c;
}

.our-workslider {
  margin: 0 !important;
}

.our-workslider .slick-dots li.slick-active button {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  border-radius: 50%;
  opacity: 1;
  margin: 5px 0px;
  justify-content: center;
  border: 1px solid #e7881c;
}

.our-work-slider-box .theme-1 {
  border: 1px solid #fff;
  padding: 0px 0px 0px 30px !important;
}

.our-work-slider-btn {
  left: 1px;
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.our-work-slider-btn button {
  width: 70px;
  height: 75px;
  display: flex;
  font-size: 20px;
  flex-shrink: 0;
  color: #ababab;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #cdcbc7;
}

.our-work-slider-btn button.our-work-slider-btn-top {
  border-top-left-radius: 0;
}

.our-work-slider-btn button.our-work-slider-btn-down {
  border-bottom-left-radius: 0;
}

/* our-work-sec end */
/* footer-sec */

footer {
  position: relative;
  /*background: #f7f5f5;*/
}

.footer-sec {
  background: #08070a;
  padding: 50px 5% 0px;
}
.bottom-right-side svg {
  color: #fff;
}
.let-heading {
  margin-top: 50px;
  margin-bottom: 50px;
}

.let-heading h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
}

.let-heading p {
  color: gray;
  font-weight: 500;
  width: 80%;
}

.mb5 {
  margin-bottom: 50px;
}

.bottom-bar {
  border-top: 1px solid #9e8a89;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 50px;
}

.logo-col img {
  margin-bottom: 15px;
  width: 240px;
}

.logo-col h4 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 50px;
  margin-bottom: 15px;
}

.logo-col p {
  color: #fff;
  width: 90%;
  margin-bottom: 15px;
}

.logo-col h5 {
  font-size: 17px;
  color: #fff;
  position: relative;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: "Anton";
  margin-top: 30px;
  letter-spacing: 1px;
}

.logo-col h5::before {
  left: 0;
  bottom: -10px;
  content: "";
  height: 2px;
  width: 70px;
  background: #fff;
  position: absolute;
}

.logo-col ul {
  margin-bottom: 25px;
}

.logo-col ul li {
  color: #fff;
}

.logo-col ul li span a {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.logo-col ul li span a:hover {
  color: #fff;
  transition: 0.3s ease-in-out;
  transition-duration: 0.5s;
}

.footer-link h5 {
  color: #fff;
  position: relative;
  font-family: "Anton", sans-serif;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 1px;
}

.footer-link h5::before {
  left: 0;
  bottom: -10px;
  content: "";
  height: 2px;
  width: 50px;
  background: #fff;
  position: absolute;
}

.bottom-left-side {
  display: flex;
  align-items: center;
  gap: 50px;
}

.bottom-left-side p {
  color: #b9a5a4;
}

.bottom-right-side p {
  color: #b9a5a4;
  margin: 0;
  color: #fff;
}

.bottom-right-side {
  gap: 10px;
  display: flex;
  color: #b9a5a4;
  text-align: end;
  align-items: center;
  justify-content: center;
}

.footer-link ul li a {
  color: #fff;
  margin-bottom: 12px;
  transition-duration: 0.5s;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
}

.footer-link ul li a:hover {
  padding-left: 10px;
  transition: 0.3s ease-in-out;
  transition-duration: 0.2s;
}

.footer-link ul {
  margin-bottom: 25px;
}

.footer-link h4 {
  position: relative;
  font-family: "Anton", sans-serif;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
}

.footer-link h6 a {
  color: #fff;
  font-family: "Anton";
  font-size: 22px;
}

.footer-link h4::before {
  left: 0;
  bottom: -10px;
  content: "";
  height: 2px;
  width: 70px;
  background: #fff;
  position: absolute;
}

.footer-link p {
  color: #b3b3b3;
  margin-bottom: 21px;
}

.footer-link form {
  height: 55px;
  margin-bottom: 40px;
  position: relative;
}

.footer-link form input {
  width: 100%;
  border: none;
  height: 100%;
  color: #fff;
  border-radius: 5px;
  padding-left: 15px;
  position: absolute;
  background: #121015;
}

.footer-link form button {
  position: absolute;
  right: 0;
  height: 100%;
  color: #fff;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
}

.footer-link form input::placeholder {
  color: #a49796;
}

.footer-form {
  top: 50px;
  padding: 40px;
  width: 100%;
  background: #fff;
  border-radius: 0;
  box-shadow: -2.801px 1.075px 24px 0px rgba(189, 189, 189, 0.54);
  margin-top: -200px;
}

.footer-form form {
  gap: 25px;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.footer-form form input {
  width: 100%;
  height: 60px;
  color: #737373;
  font-weight: 500;
  font-size: 14px;
  border-radius: 5px;
  padding-left: 15px;
  background: #f6f6f6;
  border: 1px solid #b1b1b1;
}

.footer-form form input::placeholder {
  color: #737373;
}

.footer-form form textarea::placeholder {
  color: #737373;
}

.footer-form form textarea {
  width: 100%;
  height: 150px;
  color: #737373;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  padding-top: 5px;
  padding-left: 15px;
  background: #f6f6f6;
  border: 1px solid #b1b1b1;
}

.footer-form form button {
  border: none;
}

/* footer-sec */

/*plan sect*/
section.plans {
  padding: 0 0 80px 0;
  background: #f7f5f5;
}
.plan-detail p {
  color: #121111;
  font-size: 14px;
  font-weight: 600;
}

ul.off-hr {
  height: 130px;
  overflow-y: scroll;
}

.plans-head {
  margin-bottom: 50px;
  text-align: center;
}

.plans-head h6 {
  font-size: 55px;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  color: #000;
}
.plans-head p {
  width: 78%;
  margin: 0 auto;
}

.plan1 {
  background: #1a1919;
  padding: 49px 0px;
  text-align: center;
  transition: 0.5s;
}
.price-box:hover {
  transform: scale(1.1);
}

.price-box:hover .plan1 {
  background: #be6b0e;
}

.price-box:hover * {
  color: #fff;
}

.price-box:hover .plan-detail {
  background: #000;
}

.price-box:hover .plan-detail ul.off-hr {
  overflow-y: unset;
  height: auto;
}

.price-box:hover .plan-detail img {
  filter: invert(1);
}
.plan1 p {
  color: #fff;
  font-size: 14px;
  line-height: 25px;
  font-family: "Anton";
  font-weight: 400;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan1 h4 {
  font-family: "Anton";
  font-size: 50px;
  line-height: 1;
  color: #fff;
  margin: 30px 0 0 0;
}

span.per-m {
  font-size: 19px;
  font-family: "Anton";
  color: #fff;
  opacity: 0.5;
  margin-left: 7px;
  letter-spacing: 4px;
}

.price-box {
  position: relative;
  border: solid 0.5px #08070a;
  border-radius: 0;
  transform: scale(0.9);
  transition: 0.5s;
}

.plan-btn a {
  font-size: 13px;
  font-family: "Montserrat";
  color: #fff;
  text-transform: uppercase;
}

.plan-detail {
  margin: 0;
  padding: 40px 30px;
  background: #fff;
}

ul.off-hr li img {
  height: 16px;
  width: 24px;
  margin: 7px 10px 7px 0;
}

ul.off-hr li {
  font-size: 14px;
  color: #1e1e1e;
  font-family: "Montserrat";
  margin-bottom: 20px;
  display: flex;
  font-weight: 500;
}

.plan-detail span {
  font-weight: 400;
  font-size: 13px;
  font-family: "Montserrat";
  color: #000;
}
.price-box ::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.price-box ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.price-box ::-webkit-scrollbar-thumb {
  background: #1a1919;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* end */
/* ++++++++++++++++++++++++++ end ++++++++++++++++++++++++++ */
/* Inner Page start  */

section.innerBanner {
  position: relative;
  overflow: hidden;
}

img.img-fluid.innerBanerImg {
  height: 530px;
  width: 100%;
  object-fit: fill;
}

.innerbaner-warp {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding-bottom: 0px;
  /*background: #000;*/
}

.innerbaner-warp .inerTxt {
  display: inline-block;
  margin-top: 40px;
}

.innerbaner-warp .inerTxt h2 {
  color: #fff;
  text-transform: uppercase;
}

/* Inner Page start  */

/* about pag start  */

.innerabout .abt-text {
  height: 520px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.innerabout .abt-text::-webkit-scrollbar {
  display: none;
}

.innerabout .ab-inertxt {
  padding: 40px 0 0;
}

.innerabout .ab-inertxt p {
  color: #0a070a;
  opacity: 50%;
  font-weight: 500;
}

section.innerabout {
  padding-bottom: 40px;
}

/* about end  */

/* Reviews page start  */

.client-ineer-box:hover {
  cursor: pointer;
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  color: white;
}

.client-ineer-box:hover p {
  color: #fff;
}

.client-ineer-box:hover ul li h4 {
  color: #fff;
}

.client-ineer-box:hover h4 e {
  color: #fff;
}

.client-ineer-box:hover .d-flex svg {
  color: #fff;
}

.client-ineer-box:hover:before {
  border-top-color: #ed8d1e;
}

.client-box:hover span {
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
  outline: 10px solid #d97e1752;
}

section.our-client-sec.innerClientsSec.themes-padd {
  padding-top: 100px;
}

section.our-client-sec.innerClientsSec.themes-padd .client-box span {
  z-index: 1;
}

.innerClientsSec .rev-wraper {
  width: 90%;
  margin: 0px auto;
}

/* end */

/* Pricing Start  */

section.plansInner {
  padding-top: 80px;
}

section.plansInner .price-box:hover {
  transform: unset;
}

section.plansInner .price-box {
  transform: unset;
  margin: 0px 20px;
}

section.plansInner .price-box ul.off-hr {
  height: auto;
  overflow: hidden;
}

/* Pricing End */

/* Contact Us Start*/

.cntct-head h4 {
  font-size: 30px;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 20px;
  color: #000;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}

.contact-input {
  position: relative;
}

.contact-input::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 45px;
  top: 5px;
  left: 55px;
  background: url(../images/contact-input-bef.png) no-repeat;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

.contact-input input,
.contact-input select {
  width: 100%;
  height: 60px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 20px 0 80px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  border-radius: 10px;
}

.contact-input textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 12px 20px 12px 80px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  resize: none;
  background: transparent;
  border-radius: 11px;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
  color: #000;
}

.contact-input svg {
  position: absolute;
  top: 19px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #7e7e7e;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 30px;
  border: 1px solid #c1c1c1b3;
  margin: 15px 0;
  transition: 0.8s all ease-in-out;
  border-radius: 20px;
}

.cntct-info-icon {
  width: 65px;
  height: 65px;
  border: 1px solid #ea9b42;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.8s all ease-in-out;
}

.cntct-info-icon i {
  font-size: 28px;
  transition: 0.8s all ease-in-out;
  border: 1px solid;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 20px 0px #8d88883b;
  color: var(--pColor);
}

.contact-info-item:hover i {
  transform: rotate(360deg);
  transition: 0.8s all ease-in-out;
}

.contact-info-item-details h5 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 35px;
  color: #000;
  font-family: "Anton";
}

.contact-info-item-details a,
.contact-info-item-details p {
  font-size: 16px;
  line-height: 30px;
  font-family: "Montserrat";
  color: #8b8b8b;
  font-weight: 500;
}

.contact-input.selectbox select {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 80px 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #7e7e7e;
  font-family: "Montserrat";
  border-radius: 7px;
  z-index: 1;
  position: relative;
}

section.contact-us .rates button.theme1 {
  border: 0px;
}

section.contact-us .get-in-touch.cntct-head {
  padding-right: 30px;
}

.contact-input.selectbox:before {
  left: unset !important;
  right: 60px;
  transform: rotateY(156deg);
}

.contact-input.selectbox i.fa-solid.fa-angle-down {
  position: absolute;
  right: 20px;
  left: unset !important;
  top: 19px;
  color: #000;
  opacity: 40%;
  cursor: pointer;
}

section.contact-us .formWraper {
  width: 88%;
  margin: 0px auto;
}

section.contact-us .heading {
  margin-bottom: 50px;
}

section.contact-us .heading p {
  font-weight: 500;
  opacity: 60%;
  line-height: 26px;
  width: 60%;
  margin: 0px auto;
}

section.contact-us {
  padding: 100px 0 40px;
  background: #f7f5f5;
}

section.contact-us .contact-info-item-details.telphone a {
  font-size: 24px;
}

.contact-info-item svg {
  font-size: 28px;
  color: #ea8a1c;
}

/* Contact Us End */

/* Courses page start  */

section.coursesPage:before {
  display: none;
}

.cour-box.centerBox {
  background: #e5861a;
}

.coursesWrap {
  width: 90%;
  margin: 0px auto;
}

section.courseDet {
  position: relative;
  padding: 100px 0 40px;
  background: #f7f5f5;
}

section.courseDet h4 {
  font-family: "Anton";
  color: #000;
}

section.courseDet .inner-dtcard {
  position: relative;
  padding: 18px;
  background: #e5861a;
  margin-bottom: 48px;
  box-shadow: 5px 9px 12px 0px #55555524;
}

.csDt-img {
  width: 100%;
  margin-top: 32px;
}

.csDt-img img {
height: 400px;
    width: 100%;
    object-fit: cover;
}

section.courseDet .inner-dtcard h4 {
  color: #fff;
  padding: 26px 0;
  border-bottom: 1px solid #ffffff30;
  margin-bottom: 32px;
}

section.courseDet .inner-dtcard p {
  color: #fff;
  font-weight: 500;
  opacity: 50%;
  line-height: 23px;
}

.csdtDes-text p {
  font-weight: 500;
  opacity: 50%;
  color: #000;
  line-height: 23px;
}

.csdtDes-text .listingcheck {
  width: 60%;
  gap: 40px;
  margin: 24px 0 18px;
}

.csdtDes-text .listingcheck ul.d-flex {
  flex-direction: column;
  gap: 10px;
}

.csdtDes-text .listingcheck ul.d-flex li {
  align-items: center;
  gap: 12px;
  display: flex;
}

.csdtDes-text .listingcheck ul.d-flex li span {
  font-family: "Anton";
  font-size: 14px;
  color: #131212;
}
.listingcheck.d-flex.hour-points h3 {
    font-size: +20px;
    margin-bottom: 10px;
}

.listingcheck.d-flex.hour-points ul li {
    align-items: start;
}

/* end  */

/* Quote page start  */

section.contact-us.quotePage .let-heading p {
  margin: 0px auto;
  width: 60%;
}

button.theme_btn {
  height: 55px;
  font-size: 14px;
}

section.contact-us.quotePage .contact-input input {
  padding-left: 24px;
}

section.contact-us.quotePage .contact-input input[type="date"] {
  padding: 0 80px 0 20px;
}

section.contact-us.quotePage .contact-input svg {
  left: unset;
  right: 18px;
}

section.contact-us.quotePage .contact-input.textaryea:before {
  display: none;
}

section.contact-us.quotePage .contact-input textarea {
  padding: 20px 20px;
  height: 170px;
}

section.contact-us.quotePage .contact-input textarea::placeholder {
  position: absolute;
  bottom: 20px;
}

section.contact-us.quotePage .contact-input::before {
  display: none;
}

section.contact-us.quotePage .sitebtn {
  width: 100%;
}

section.contact-us.quotePage .sitebtn button {
  display: table;
  margin: 0px auto;
}

section.contact-us.quotePage .contact-input.dateStyle:before {
  display: block !important;
  left: unset;
  right: 50px;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.menuSec ul li.active a {
  border-bottom: 2px solid #e6871b;
}

.cour-box:hover {
  background: linear-gradient(
    105deg,
    rgba(247, 147, 32, 1) 0%,
    rgba(210, 121, 21, 1) 50%,
    rgba(166, 90, 7, 1) 100%
  );
}

.cour-box:hover a {
  display: flex;
  flex-direction: column-reverse;
}
.contact-input select {
  padding-left: 20px;
  appearance: auto;
}
/* end  */

.rev-wraper .row {
    justify-content: center;
}


section.who-we {
    padding: 80px 0;
}

section.who-we h2 {
    text-align: center;
    margin-bottom: 30px;
}
.we-img img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: left;
}

.we-are-content {
    background: #000;
}

.we-are-content h3 {
    color: #fff;
    margin: 20px 0;
}

.we-are-content p {
    margin-bottom: 4px;
    line-height: 20px;
    color: #fff;
}

.we-are-content {
    padding: 20px;
    height: 570px;
}
.we-img.we-img2 img {
    height: 460px;
}

.we-are-content.we-are-content2 {
    height: 460px;
}
section.pricing-page ul li {
    color: #fff;
    text-align: start;
    list-style: disc;
    margin-left: 20px;
}

section.pricing-page {
    text-align: start;
}

section.pricing-page .cour-box h4 {
    width: 100%;
    text-align: start;
}

.pri-poiunts {
    height: 170px;
}

section.courses.coursesPage.pricing-page h2 {
    color: #000;
}
section.courses.coursesPage.pricing-page .row {
    justify-content: center;
}
header  .col-md-3.col-sm-6.col-6 a img {
    width: 230px;
}



section.our-client-sec .client-ineer-box {
    height: 320px;
    overflow-y: scroll;
    margin-bottom: 30px;
}
section.our-client-sec  ::-webkit-scrollbar {
  width: 10px;
}

/* Track */
section.our-client-sec  ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #161514; 
  border-radius: 10px;
}
 
/* Handle */
section.our-client-sec  ::-webkit-scrollbar-thumb {
  background: #f9a241; 
  border-radius: 10px;
}

/* Handle on hover */
section.our-client-sec  ::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}
html{
  overflow-x: hidden;
}