/* Font Family */
@import url("https://fonts.cdnfonts.com/css/sf-ui-display");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

/* Universal Css Start Here */
:root {
    --first-color: #c23127;
    --second-color: #2d2525;
}

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

body {
    font-family: "SF UI Display", sans-serif;
    overflow-x: hidden;
}

@font-face {
    font-family: "exo-regular";
    src: url("../fonts/Exo2-Regular.ttf");
}

@font-face {
    font-family: "exo-bold";
    src: url("../fonts/Exo2-Bold.ttf");
}

@font-face {
    font-family: "exo-meduim";
    src: url("../fonts/Exo2-Medium.ttf");
}

a.ethics-btn {
    background-color: #c23127;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.6s;
    border-radius: 50px;
}

figure {
    margin-bottom: 0;
}

/* Mobile Header */
#header .mobile-header {
    width: 25%;
    height: 100%;
    position: fixed;
    background: #000;
    top: 0;
    z-index: 9;
    right: 0;
    padding: 30px 10px 0px 10px;
    transition: 0.7s;
    transform: translateX(100%);
    box-shadow: 0px 0px 7px #ddd;
}
li.nav-link a {
    color: #000;
}
#header .mobile-header.show {
    transform: translateX(0%);
}
#header .mobile-header ul.mobile-nav {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
.cart-icon-and-wishlist
label {
    position: absolute;
    left: 3px;
    color: #00b1ff;
    top: -9px;
    font-size: 12px;
}
.cart-icon-and-wishlist span {
    position: relative;
}
#header .mobile-header .cancel {
    background: #000000;
    width: 35px;
    text-align: center;
    height: 34px;
    line-height: 35px;
    margin: 0px 20px 20px auto;
    color: #fff;
}
#header .mobile-header ul.mobile-nav li.nav-item {
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #dddddd4a;
}
#header .mobile-header ul.mobile-nav li.nav-item a {
    color: #fff;
    font-size: 14px;
    padding: 0 20px;
}
#header .canvas-icon i {
    font-size: 24px;
    background: #000000;
    padding: 5px 7px;
    color: #fff;
    display: none;
}
@media (max-width: 991px) {
    #header .nav-bottom-header {
        display: none;
    }

    #header .second-col-input {
        display: none;
    }
    #header button.navbar-toggler {
        display: none;
    }
    #header .canvas-icon i {
        display: block;
    }
    .canvas-icon {
        position: absolute;
        right: 28px;
        top: 0;
    }
}
@media (max-width: 575px) {
    #header .mobile-header {
        width: 35%;
    }
    .alertify-notifier.ajs-right {
        left: -120px !important;
    }
}
@media (max-width: 480px) {
    #header .mobile-header {
        width: 55%;
    }
}

/* Mobile Header */
/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #c23127;
}

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

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

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

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

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

/* Mobile Header */
/* #header .mobile-header {
  width: 25%;
  height: 100%;
  position: fixed;
  background: #ffffffc2;
  top: 0;
  z-index: 9;
  right: 0;
  padding: 30px 10px 0px 10px;
  transition: 0.7s;
  transform: translateX(100%);
  box-shadow: 0px 0px 7px #ddd;
}

li.nav-link a {
  color: #000;
}

#header .mobile-header.show {
  transform: translateX(0%);
}

#header .mobile-header ul.mobile-nav {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

#header .mobile-header .cancel {
  background: #000000;
  width: 35px;
  text-align: center;
  height: 34px;
  line-height: 35px;
  margin: 0px 20px 20px auto;
  color: #fff;
}

#header .mobile-header ul.mobile-nav li.nav-item {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #dddddd4a;
}

#header .mobile-header ul.mobile-nav li.nav-item a {
  color: #fff;
  font-size: 14px;
  padding: 0 20px;
}

#header .canvas-icon i {
  font-size: 24px;
  background: #000000;
  padding: 5px 7px;
  color: #fff;
  display: none;
}

@media (max-width: 991px) {
  #header .nav {
    display: none;
  }

  #header .second-col-input {
    display: none;
  }

  #header button.navbar-toggler {
    display: none;
  }

  #header .canvas-icon i {
    display: block;
  }
}

@media (max-width: 575px) {
  #header .mobile-header {
    width: 35%;
  }
}

@media (max-width: 480px) {
  #header .mobile-header {
    width: 55%;
  }
} */

/* Mobile Header */

/* /* Begin of Header css */
header#header {
    position: unset;
    width: 100%;
    z-index: 2;
}

.phone-and-clock a {
    font-size: 12px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.phone-and-clock span {
    font-size: 12px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    padding-right: 20px;
    text-decoration: unset;
}
.cart-icon-and-wishlist span a {
    font-size: 12px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-decoration: unset;
    text-transform: capitalize;
}
.cart-icon-and-wishlist {
    text-align: center;
}
section.top .row {
    display: flex;
    align-items: baseline;
}
section.top {
    background-color: #000000;
    border-bottom: 1px solid #000000;
    padding: 5px;
}

.phone-and-clock span img {
    padding-right: 10px;
}

.nav-bottom-ul ul {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.nav-bottom-ul ul li a {
    font-size: 11px !important;
    color: #000000;
    font-family: "Poppins";
    font-weight: 500;
    padding-right: 48px;
    text-decoration: unset;
    text-transform: uppercase;
}
ul.mobile-nav.navbar-nav li a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: unset;
    line-height: 42px;
    font-family: "exo-regular";
}
.phone-and-clock a {
    text-decoration: unset;
}

.book-now-btn a {
    background-color: #00b1ff;
    padding: 10px 34px;
    border-radius: 51px;
    font-size: 14px;
    color: #ffffff !important;
    font-family: "Poppins";
    text-decoration: unset !important;
    transition: 1s;
    border: 1px solid #00b1ff;
}

.book-now-btn {
    text-align: end;
}

section.nav-bottom-header .row {
    display: flex;
    align-items: baseline;
}

section.nav-bottom-header {
    /* padding-top: 20px; */
    border-bottom: 1px solid #000000;
    padding: 10px;
}

.for-right-border {
    border-left: 1px solid #000000;
}

/* End of Header css  */

/* Begin of Main banner css  */

.car-caption-flex {
    /* z-index: 999999; */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    left: 10%;
    max-width: 55%;
}

.car-head h5 {
    font-size: 16px;
    color: #00b1ff;
    font-family: "Poppins";
    letter-spacing: 1px;
    position: relative;
    left: 70px;
    margin: 0;
    padding-bottom: 30px;
    text-transform: uppercase;
}

.car-head h2 {
    font-size: 80px;
    color: #ffffff;
    font-family: "exo-regular";
    line-height: 72px;
    text-transform: uppercase;
}

.car-head h2 span {
    font-family: "exo-bold";
}

.car-para p {
    font-size: 14px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 400;
    margin: 0;
    margin-top: 40px;
    margin-bottom: 52px;
}

.car-head h5::before {
    content: "";
    background-color: #00b1ff;
    position: absolute;
    width: 50px;
    height: 1px;
    left: -64px;
    top: 7px;
}

.car-btn a {
    font-size: 14px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    padding: 12px 20px;
    border-radius: 60px;
    text-decoration: unset;
}

.car-btn {
    margin-top: 30px;
}

.car-icon-flex {
    position: absolute;
    top: 0;
    right: 0;
    left: 750px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-icon-play-text h4 {
    font-size: 24px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 500;
    margin: 0;
}

.car-icon-play {
    display: flex;
    align-items: baseline;
}

.car-icon-play-text p {
    font-size: 14px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 200;
}

.car-icon-play-text {
    padding-left: 20px;
}
.article-img img {
    width: 100%;
}
.carousel-control-prev-icon {
    background-image: url("../img/right-arrow.png");
}

.carousel-control-prev {
    right: -60px;
    left: unset;
    top: 90px;
}

.carousel-control-next-icon {
    background-image: url("../img//left-arrow.png");
}

.carousel-control-next {
    right: -60px;
}

.car-scroll-down-flex {
    position: absolute;
    bottom: 44px;
    right: 24px;
    z-index: 9999999999;
    /* position: relative; */
}

.scroll-down p a {
    font-size: 9;
    font-size: 10px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 400;
    text-decoration: unset;
}

.scroll-down {
    transform: rotate(269deg);
    z-index: 99999;
}

.car-img-text {
    display: flex;
    align-items: flex-start;
}

.car-sec-dv-flex {
    position: relative;
    bottom: 130px;
    display: unset;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner_click {
    padding: 0px 5px;
}

.car-text h5 {
    font-size: 13px;
    color: #ffffff;
    font-family: "exo-bold";
    text-transform: uppercase;
    min-height: 26px;
}

.car-text p {
    font-size: 11px;
    color: #ffffffb3;
    font-family: "Poppins";
    margin: 0;
}

.car-img-text {
    background-color: #000000;
    padding: 21px 21px;
}

.car-text {
    padding-left: 16px;
}

.car-img-text {
    background-color: #00000096;
    padding: 21px 21px;
    border: 1px solid #ffffff;
    border-radius: 10px 10px 0px 0px;
    cursor: pointer;
    transition: 1s;
    height: 130px;
}

.car-img-text:hover {
    background-color: #00b1ffd9;
    border: 1px solid #00b1ffd9;
}

.sub-banner-hover {
    background-color: #00b1ffd9;
}
.car-social-icon-flex {
    position: absolute;
    top: 0;
    left: 0;
    right: unset;
    bottom: 0;
    display: flex;
    align-items: center;
}

.car-social ul {
    list-style: none;
}

.car-social ul li a {
    color: #ffffff;
}

.car-social ul p {
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 400;
    transform: rotate(269deg);
    position: relative;
    right: 38px;
    top: 42px;
}

/* End of Begin of Main banner css  */

/* Begin of Performance css  */
.buisness-head h5 {
    font-size: 16px;
    color: #00b1ff;
    font-family: "Poppins";
    letter-spacing: 1px;
    position: relative;
    left: 70px;
    margin: 0;
    padding-bottom: 20px;
    text-transform: uppercase;
}
/* .all-buttons.margin-again-btn a {
    cursor: initial;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
} */
.uwaw-features__item__name {
    font-size: 8px !important;
    letter-spacing: -.00937rem;
    color: #000;
    font-weight: 600;
    margin-bottom: .75rem;
}
.all-buttons.margin-again-btn a {
    cursor: initial;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.buisness-head h5::before {
    content: "";
    background-color: #00b1ff;
    position: absolute;
    width: 50px;
    height: 1px;
    left: -64px;
    top: 7px;
}

.buisness-head h2 {
    font-size: 23px;
    color: #000000;
    font-family: "exo-regular";
    text-transform: uppercase;
    line-height: 31px;
    margin-bottom: 20px;
}

.buisness-head h2 span {
    font-family: "exo-bold";
}

.buisness-head p {
    font-size: 13px;
    color: #0d0d0d;
    font-family: "Poppins";
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0px;
    /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
    margin-bottom: 6px;
}
.our-team-sec .buisness-head ul li {
    font-size: 13px;
    color: #0d0d0d;
    font-family: "Poppins";
    font-weight: 500;
}
.our-team-sec .buisness-head ul {
    margin: 15px 0;
}
.buisnnes-ul ul li {
    font-size: 12px;
    color: #0d0d0d;
    font-family: "Poppins";
    font-weight: 500;
    font-style: italic;
    white-space: none;
    line-height: 28px;
}

.buisnnes-ul ul {
    list-style: none;
    position: relative;
}

.buisnnes-ul ul li::before {
    content: url(../img/check.png);
    position: absolute;
    left: 5px;
}

section.perform-sec {
    padding: 100px;
}

/* End of Performance css  */

/* Begin of industries css  */
.industries-head p {
    margin: 0;
}
.btn-things {
    width: 100%;
    text-align: center;
}
.btn-things a {
    font-size: 10px;
    color: #0d0d0d;
    font-family: "Poppins";
    font-weight: 500;
    text-decoration: unset;
    border: 1px solid #00b1ff;
    padding: 10px 12px;
    border-radius: 50px;
    transition: 1s;
    white-space: pre;
    width: 95%;

    display: block;
    margin: 0px auto;
}
.all-buttons {
    display: flex;
    flex-wrap: unset;
    justify-content: space-between;
}

.btn-margin {
    margin-top: 30px;
}

.margin-again-btn {
    margin-top: 40px;
}

.btn-things a:hover {
    background-color: #00b1ff;
    color: #ffffff;
}

/* End of Industries css  */

/* Begin of Who are section  */
section.who-we-are-sec {
    padding-top: 80px;
    padding-bottom: 60px;
}

/* End of Who are section  */

/* Begin of Latest css  */

.admin-img-date span {
    font-size: 14px;
    color: #000000;
    font-family: "Poppins";
    font-weight: 400;
}

.admin-img-date h4 {
    font-size: 23px;
    color: #000000;
    /* font-family: 'Poppins'; */
    font-family: "exo-bold";
    padding-top: 10px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-img-date p {
    font-size: 13px;
    color: #00000094;
    font-family: "Poppins";
    font-weight: 400;
}

.learmore-anchor a {
    font-size: 14px;
    color: #00b1ff;
    font-family: "Poppins";
    font-weight: 500;
    text-decoration: unset;
}
.article-img img {
    position: relative;
    height: 270px;
    object-fit: cover;
}
.article-img {
    position: relative;
}
.latest-date {
    position: absolute;
    bottom: 0px;
    left: 20px;
}
.latest-date p {
    font-size: 14px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 400;
    background-color: #0000007d;
    padding: 8px 24px;
    border-radius: 4px;
}

section.latest-sec {
    padding-top: 100px;
    padding-bottom: 60px;
}

.admin-img-date {
    padding: 20px;
}

span.span-admin {
    padding-left: 10px;
}

.Latest-head {
    padding-bottom: 40px;
}

/* End of latest css  */

/* Accrediate Sec Start Here */
.accrediate_sec {
    padding-bottom: 60px;
}
.accrediate_sec .heading {
    padding-bottom: 20px;
}
.accrediate_sec .heading h2 {
    font-family: 'exo-bold';
}
.accrediate_sec ul.list {
    padding: 0 0 0 15px;
    margin: 0;
}
.accrediate_sec ul.list li {
    font-size: 14px;
    color: #0d0d0d;
    font-family: "Poppins";
    font-weight: 500;
    margin-bottom: 6px;
}
/* Accrediate Sec End Here */

/* Begin of Video css  */
.all-video video {
    width: 100%;
    position: relative;
    height: auto;
}

section.video-sec {
    position: relative;
}

.vdieo-flex {
    position: absolute;
    top: 0;
    right: 160px;
    left: unset;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.video-head h2 {
    color: #ffffff;
    font-size: 53px;
    line-height: 54px;
}
.box-arrow img {
    display: flex;
    position: absolute;
    right: 0;
    left: 12px;
    bottom: 0;
    top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-anchor a {
    color: #ffffff;
    font-family: "Poppins";
    font-size: 16px;
    text-decoration: unset;
    text-transform: uppercase;
    padding: 10px;
    line-height: 70px;
}

/* End of Video css  */

/* Begin of Footer section  */
footer {
    background-color: #000000;
    padding: 90px;
    padding-bottom: 20px;
}

.web-footer-logo p {
    font-size: 12px;
    color: #ffffff7d;
    font-family: "Poppins";
    font-weight: 200;
    margin-top: 10px;
}

.fooetr-ul ul li a {
    font-size: 13px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 300;
    text-decoration: unset;
    line-height: 36px;
    text-transform: uppercase;
}

.fooetr-ul ul {
    list-style: none;
    padding: 0px 15px;
}

.fooetr-ul ul li a::before {
    content: url(../img/blue-right-arrow.png);
    position: relative;
    right: 12px;
}

.footer-head h3 {
    font-size: 20px;
    color: #ffffff;
    font-family: "exo-bold";
    text-transform: uppercase;
}

.footer-anchor span {
    font-size: 12px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 300;
    /* white-space: nowrap; */
    line-height: 30px;
}

.footer-anchor i {
    font-size: 16px;
    color: #00b1ff;
    /* text-align: justify; */
    /* padding-right: 10px; */
}

.footer-anchor span a {
    color: #ffffff;
    text-decoration: unset;
    line-height: 37px;
}

.footer-head p {
    font-size: 12px;
    color: #ffffff73;
    font-family: "Poppins";
    font-weight: 300;
}

.footer-social-ul h3 {
    font-size: 20px;
    color: #ffffff;
    font-family: "exo-bold";
}

.footer-social-ul ul {
    display: flex;
    list-style: none;
    padding: 0;
    padding-bottom: 30px;
    justify-content: space-between;
}

.footer-social-ul ul figure {
    background-color: #00b1ff;
    margin: 0;
    width: 48px;
    height: 42px;
    /* padding: 13px 17px; */
    border-radius: 60px;
    margin-right: 10px;
    text-align: center;
    line-height: 41px;
}

.footer-social-ul ul li a {
    color: #ffffff;
}

.footer-input input {
    width: 100%;
    padding: 10px;
    position: relative;
}

.footer-input {
    position: relative;
}
.footer-envlope {
    background-color: #00b1ff;
    position: absolute;
    top: 1px;
    right: 0;
    padding: 11px 21px;
    cursor: pointer;
    height: 46px;
}

.footer-envlope i {
    color: #ffffff;
}

.footer-social-ul {
    padding-top: 20px;
}

.copy-right p {
    font-size: 10px;
    color: #ffffff;
    font-family: "Poppins";
    font-weight: 300;
    margin: 0;
    padding-top: 20px;
}

.copy-right {
    border-top: 1px solid;
    text-align: center;
}

.web-footer-logo img {
    display: flex;
    width: 60%;
    margin: 0 auto;
}

/* 
.active{
  background-color:#000000;
  color:#fff;
} */

.nav-bottom-ul ul li a.active {
    background: rgb(0 0 0);
    padding: 30px 4px;
    font-family: "Poppins";
    color: #ffffff;
    margin-right: 32px;
}

.footer-flex {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #ffffff26;
}
.footer-flex p {
    margin: 0;
    line-height: 17px;
    margin-bottom: 20px;
}
.phone-footer {
    border-bottom: 1px solid #ffffff30;
    line-height: 52px;
}
.for-right-border::before {
    content: "";
    background-color: #000000;
    width: 1px;
    height: 73px;
    position: absolute;
    top: -25px;
    left: -1px;
}
.for-right-border {
    position: relative;
}
span.para-move {
    padding-left: 16px;
}
span.for-upper-and-lower-border a {
    padding-left: 16px;
}
.footer-head {
    padding-bottom: 30px;
}
a.para-move {
    padding-left: 13px;
}
.nav-bottom-ul .dropdown-menu a {
    padding: 4px 28px !important;
    font-size: 10px;
    white-space: nowrap;
}

.book-now-btn:hover a {
    background-color: transparent;
    border: 1px solid #00b1ff;
    color: #00b1ff !important;
    cursor: pointer;
}
/* End of Footer section  */
.show-hide-logo {
    display: none;
}
.coaching-service-business-head h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-scroll  .uwaw-features__item__name {
    font-size: 8px !important;
    letter-spacing: 1px !important;
    color: #000;
    font-weight: 600;
    margin-bottom: .75rem;
}
/* Begin of Other Css */
.consulting-serv h2 {
    font-size: 15px ;
    white-space: nowrap ;
    overflow: hidden ;
    text-overflow: ellipsis ;
  }
  /* =============== */
/* ************************Responsive****************** */
@media (max-width: 1440px) {
    /* .car-caption-flex {
    right: 413px;
} */
    .car-head h2 {
        font-size: 60px;
        line-height: 70px;
    }

    .car-para p {
        font-size: 12px;
    }

    .car-scroll-down-flex {
        right: -10px;
    }

    .car-text p {
        font-size: 10px;
    }

    .car-img-text {
        padding-bottom: 10px;
    }

    .buisness-head h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .video-head h2 {
        font-size: 44px;
        line-height: 47px;
    }

    .vdieo-flex {
        right: 70px;
    }

    .fooetr-ul ul li a {
        font-size: 12px;
    }

    .web-footer-logo p {
        font-size: 11px;
    }

    .car-img-text {
        padding-bottom: 20px;
    }

    .car-img-text {
        padding-bottom: 20px;
    }
    .footer-envlope {
        padding: 11px 21px;
    }
    .nav-bottom-ul .dropdown-menu {
        background: #030303 !important;
        padding: 20px !important;
    }
}

@media (max-width: 1366px) {
    /* .car-caption-flex {
    right: 573px;
} */
    .car-head h2 {
        font-size: 60px;
        line-height: 70px;
    }

    .car-para p {
        font-size: 12px;
    }

    .car-scroll-down-flex {
        right: -10px;
    }

    .car-text p {
        font-size: 10px;
    }

    .car-img-text {
        padding-bottom: 10px;
    }

    /* .buisness-head h2 {
        font-size: 15px !important;
        line-height: 30px;
    } */
    .consulting-serv h2 {
        font-size: 15px !important;
    }

    .video-head h2 {
        font-size: 44px;
        line-height: 47px;
    }

    .vdieo-flex {
        right: 70px;
    }

    .fooetr-ul ul li a {
        font-size: 11px;
    }

    .web-footer-logo p {
        font-size: 10px;
    }

    .book-now-btn a {
        padding: 10px 25px;
    }

    .btn-things a {
        font-size: 9px;
        padding: 10px 20px;
    }

    .buisness-head p {
        font-size: 10px !important;
    }

    .admin-img-date h4 {
        font-size: 21px;
    }

    .footer-social-ul h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-head p {
        font-size: 11px;
    }

    section.nav-bottom-header {
        padding-bottom: 1px;
    }

    .car-img-text {
        padding: 21px 17px;
        width: 100%;
    }

    .car-text {
        padding-left: 13px;
    }

    .car-text h5 {
        font-size: 11px;
    }

    .car-sec-dv-flex {
        bottom: 120px;
    }
    .car-img-text {
        padding-bottom: 20px;
    }

    .car-social-icon-flex {
        left: 22px;
    }

    .car-social ul li a {
        font-size: 13px;
    }

    .car-social ul p {
        font-size: 15px;
    }
    .car-img-text {
        height: 120px;
    }
    .nav-bottom-ul ul li a.active {
        padding: 26px 9px !important;
        padding-bottom: 19px !important;
    }
    .nav-bottom-ul ul li a {
        padding-right: 21px !important;
    }
    .for-right-border::before {
        height: 65px !important;
    }
    .footer-envlope {
        padding: 11px 21px;
    }
    .nav-bottom-ul .dropdown-menu a.active {
        padding: 0 !important;
        margin: 0 !important;
    }
    .nav-bottom-ul a.dropdown-item {
        text-align: initial !important;
    }
    .nav-bottom-ul .dropdown-menu {
        background: #030303 !important;
        padding: 20px !important;
    }

}

@media (max-width: 768px) {
}

@media (max-width: 575px) {
}

/* ************************End of Responsive****************** */

.nav-bottom-ul a.dropdown-item {
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    padding: 0 1px !important;
    font-size: 10px;
    text-align: center;
}

.normal-nav-items:hover .dropdown-menu {
    display: block !important;
    background-color: #030303 !important;
}

.nav-bottom-ul .dropdown-menu {
    background: #030303 !important;
}

.nav-bottom-ul .dropdown-item:focus,
.dropdown-item:hover {
    color: #1e2125;
    background-color: transparent;
}
.fa-caret-down:before {
    content: "" !important;
}

li.\.active.active {
    background-color: aquamarine;
}

.buisness-head.choose-head ol li {
    color: #ffffff;
}

.detail-para.text-center {
    padding-top: 70px;
}

.service-consulting-para.text-center {
    padding-bottom: 40px;
}
.about-book-consulting {
    text-align: center !important;
}

.buisness-head.choose-head {
    margin-bottom: 40px;
}

section.choose-us-sec .row {
    display: block;
}

.buisness-head.choose-head p {
    padding-bottom: 0;
}
.buisnnes-ul {
    padding-top: 30px;
}

.detail-para.text-center p a {
    color: #000000;
    text-decoration: unset;
}
.service-consulting-para.text-center p a {
    color: #000000;
    text-decoration: unset;
}
@media (max-width: 1600px) {
    .nav-bottom-ul .dropdown-menu {
        background: #030303 !important;
        padding: 20px !important;
    }
}
@media (max-width: 1440px) {
    
}
@media (max-width: 1366px) {
}

@media (max-width: 1280px) {
}
@media (max-width: 1100px) {
    .nav-bottom-ul ul li a {
        padding-right: 22px !important;
    }
    .book-now-btn a {
        padding: 8px 4px !important;
    }
    .buisness-head h5 {
        font-size: 12px;
    }
    /* .buisness-head h5::before {
        left: 151px !important;
    } */
}
@media (max-width: 1024px) {
    .book-now-btn a {
        padding: 10px 14px;
    }
    .nav-bottom-ul ul li a {
        font-size: 10px;
    }
    .car-head h2 {
        font-size: 30px;
        line-height: 26px;
    }
    .car-para p {
        margin-top: 20px;
        margin-bottom: 22px;
    }
    .car-text p {
        font-size: 9px;
    }
    .car-social-icon-flex {
        left: 0px;
    }
    .car-scroll-down-flex {
        right: -32px;
    }
    .buisness-head h2 {
        font-size: 17px;
        line-height: 3px;
    }
    .buisnnes-ul {
        padding-top: 10px;
    }
    .buisnnes-ul ul li {
        font-size: 10px;
        line-height: 20px;
    }
    section.perform-sec {
        padding: 40px;
    }
    .buisness-head h5 {
        font-size: 10px;
    }
    .all-buttons {
        display: block;
        flex-wrap: unset;
        justify-content: space-between;
    }
    section.who-we-are-sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .buisness-head p {
        font-size: 9px;
    }
    .nav-bottom-ul ul li a {
        font-size: 13px;
        padding-right: 10px;
    }
    .nav-bottom-ul ul li a.active {
        padding: 21px 9px !important;
    }
    .car-btn a {
        font-size: 9px;
    }
    .admin-img-date h4 {
        font-size: 13px;
    }
    footer {
        padding: 30px;
        padding-bottom: 20px;
    }
    .footer-head h3 {
        font-size: 14px;
    }
    .footer-social-ul h3 {
        font-size: 14px;
    }
    .show-hide-logo {
        display: block;
    }
    .web-logo img {
        width: 32%;
    }
    .block-show {
        display: none;
    }
    .cart-icon-and-wishlist {
        text-align: inherit !important;
    }
    .for-hide-cart {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .car-text p {
        font-size: 7px;
    }
    .admin-img-date span {
        font-size: 11px;
    }
    .footer-social-ul ul figure {
        width: 35px;
        height: 30px;
        padding: 4px 10px;
    }
    .fooetr-ul ul {
        padding: 0px 0px;
    }
    .fooetr-ul ul li a {
        font-size: 8px;
        line-height: 14px;
        white-space: nowrap;
    }
    .footer-anchor span {
        font-size: 8px;
    }
    .footer-social-ul h3 {
        font-size: 11px;
    }
    .book-now-btn {
        text-align: end;
    }
    .footer-social-ul ul figure {
        line-height: 23px !important;
    }
    .buisness-head h5::before {
        left: -67px ;
    }
    .buisness-head h2 {
        line-height: 2;
    }
    a.para-move {
        padding-left: 6px;
    }
    .contact-us-head-things h5::before {
        left: 146px !important;
    }
    .buisnnes-ul ul li {
        font-size: 9px;
        line-height: 20px;
    }
    .business-index-consultant h2 {
        line-height: 0 !important;
    }
    .buisness-head p {
        font-size: 9px !important;
    }
    .video-anchor a {
        padding: 0;
        
    }
    .btn-things a {
       
        width: 100%;
    
    }
    .business-index-consultant {
        padding: 20px 0px;
    }
    .video-head h2 {
        line-height: 0 !important;
    }
    .admin-img-date {
        padding: 20px 0px;
    }

    
}

@media (max-width: 844px) {
    /* .buisness-head h5::before {
        left: -59px !important;
    } */
    .footer-social-ul ul figure {
        background-color: #00b1ff;
        margin: 0;
        width: 34px;
        height: 32px;
        /* padding: 13px 17px; */
        border-radius: 60px;
        margin-right: 10px;
        text-align: center;
        line-height: 23px !important;
    }
    .buisness-head p {
        font-size: 8px !important;
    }
    a.para-move {
        padding-left: 3px;
    }
    section.perform-sec {
        padding: 0px;
    }
    .car-head h5 {
        font-size: 14px;
    }
    .car-head h5 {
        padding-bottom: 3px;
       
    }
    .buisness-head h2 {
        font-size: 17px;
        line-height: 23px;
    }
    .contact-us-head-things h5::before {
        left: 149px !important;
    }

}

@media (max-width: 820px) {
    .carousel-control-next {
        right: 0px;
    }
    .carousel-control-prev {
        right: 0px;
    }
    .buisnnes-ul ul li {
        font-size: 9px;
    }
    .admin-img-date h4 {
        font-size: 11px;
    }
    .learmore-anchor a {
        font-size: 12px;
    }
    .car-para p {
        margin-top: 10px;
        margin-bottom: 12px;
    }
    .car-head h5 {
        font-size: 9px;
        padding-bottom: 14px;
    }
    .car-head h2 {
        font-size: 20px;
        line-height: 18px;
    }
    .latest-date p {
        font-size: 8px;

        margin: 0;
    }
    section.latest-sec {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .car-para p {
        font-size: 9px;
    }
    .car-btn {
        margin-top: 16px;
    }
    .car-scroll-down-flex {
        right: -12px;
    }
    .book-now-btn {
        text-align: initial;
    }
    .contact-us-head-things h5::before {
        left: 180px !important;
    }
}

@media (max-width: 667px) {
    .business-index-consultant {
        padding: 20px 0px;
    }
}

@media (max-width: 740px) {
    .contact-us-head-things h5::before {
        left: 142px !important;
    }
}


@media (max-width: 768px) {
    .footer-head h3 {
        font-size: 12px;
    }
    footer {
        padding: 30px 0px;
    }
    .book-now-btn {
        text-align: initial;
    }
}
@media (max-width: 575px) {
    .web-footer-logo img {
        display: initial;
        width: 60%;
        margin-bottom: 40px;
    }
    .web-footer-logo {
        text-align: center;
    }
    .footer-social-ul ul figure {
        width: 30px;
        height: 30px;
        padding: 4px 6px;
    }
    .fooetr-ul ul li a::before {
        display: none;
    }
    .car-sec-dv-flex {
        bottom: -18px;
    }
    .car-img-text {
        padding: 10px 17px;
        width: 100%;
        display: block;
    }
    .car-img-text {
        height: 180px;
    }
    .carousel-control-next-icon {
        background-image: url("../img//left-arrow.png");
        display: none;
    }
    .carousel-control-prev {
        display: none;
    }
    .car-text {
        padding-top: 8px;
    }

    section.perform-sec {
        padding: 40px 0px;
        padding-bottom: 0;
    }
    section.who-we-are-sec {
        padding-top: 50px;
        padding-bottom: 0 !important;
    }
    .all-video video {
   
        padding-top: 40px !important;
    }
    .businnes-consulting {
        padding-top: 20px;
    }
    .admin-img-date {
        padding: 20px 0px;
    }
    .car-social-icon-flex {
        left: -23px;
    }
    .scroll-down {
        display: none;
    }
    .car-sec-dv-flex {
        z-index: 0;
    }
    .vdieo-flex {
        right: unset;
        left: 10px;
    }
    .vdieo-flex {
        right: unset;
        left: 10px;
    }
    .video-anchor a {
        padding: 0;
        line-height: 34px;
    }
    .footer-envlope {
        padding: 11px 21px;
    }
    .detail-para.text-center p {
        font-size: 12px;
    }
    .for-up-move {
        position: relative;
        bottom: 25px;
    }
    section.top {
        padding-bottom: 10px;
    }
    #header .canvas-icon i {
        padding: 14px 10px;
    }
    .alertify-notifier.ajs-center {
        left: -20%;
    }
    .footer-social-ul ul li a {
        color: #ffffff;
        position: relative !important;
        top: -1px !important;
    }
    .car-para p {
        font-size: 6px !important;
    }
    .car-caption-flex {
        /* z-index: 999999; */
        top: -4px !important;
   
    }
    .car-btn {
        margin-top: -4px !important;
    }
    /* .buisness-head h5::before {
        left: 12px !important;
    
    } */
    .buisness-head h5::before {
        left: -60px !important;
    }
    .latest-date {
        position: absolute;
        bottom: 12px !important;
        left: 16px !important;
    }
}
@media (max-width: 414px) {
    .phone-and-clock a {
        font-size: 8px;
    }
    .phone-and-clock span {
        font-size: 8px;
    }
    section.contact-us-sec {
        padding-top: 40px;
    }
    .car-head h2 {
        font-size: 10px;
        line-height: 18px;
    }
    .car-para p {
        font-size: 8px;
    }
    .scroll-down {
        display: none;
    }
    .car-social ul li a i {
        font-size: 10px;
    }
    .car-text p {
        font-size: 12px;
    }
    .car-img-text {
        height: 250px;
    }
    .car-head h5 {
        font-size: 8px;
        padding-bottom: 4px;
    }
    .car-btn a {
        font-size: 10px;

        padding: 7px 15px;
    }
    .car-social ul p {
        font-size: 8px;
    }
    .car-social ul p {
        transform: rotate(270deg);
        right: 18px;
    }
    .car-sec-dv-flex {
        z-index: 0;
    }
    .vdieo-flex {
        right: unset;
        left: 10px;
    }
    .video-anchor a {
        padding: 0;
        line-height: 34px;
    }
    .footer-envlope {
        padding: 11px 21px;
    }
    #header .canvas-icon i {
        padding: 7px 10px;
    }
    .alertify-notifier.ajs-center {
        left: -20%;
    }
}
@media (max-width: 390px) {
    .car-head h5 {
        font-size: 5px;
        padding-bottom: 4px;
    }
    .car-social ul p {
        top: 20px;
    }
    .car-caption-flex {
        bottom: -30px;
    }
    .car-head h5::before {
        top: 3px;
    }
    .vdieo-flex {
        right: unset;
        left: 10px;
    }
    .footer-envlope {
        padding: 11px 21px;
    }
    .video-anchor a {
        padding: 0;
        line-height: 34px;
    }
    #header .canvas-icon i {
        padding: 6px 10px;
    }
}
@media (max-width: 375px) {
    .car-head h5 {
        font-size: 7px;
        padding-bottom: 4px;
    }
    .car-social ul p {
        top: 20px;
    }
    .car-caption-flex {
        bottom: -30px;
    }
    .car-head h5::before {
        top: 3px;
    }
    .vdieo-flex {
        right: unset;
        left: 10px;
    }
    .footer-envlope {
        padding: 15px 21px;
    }
    .video-anchor a {
        padding: 0;
        line-height: 34px;
    }
    .alertify-notifier.ajs-center {
        left: -20% !important;
    }
}
@media (max-width: 390px) {
    #header .canvas-icon i {
        padding: 5px 10px;
    }
    .alertify-notifier.ajs-center {
        left: -20% !important;
    }
}
@media (max-width: 360px) {
    .car-caption-flex {
        /* z-index: 999999; */

        top: 26px;

        max-width: 55%;
    }
    .car-head h5 {
        font-size: 7px;
        padding-bottom: 0px;
    }
    .car-btn a {
        font-size: 8px;
        padding: 5px 15px;
    }
    .car-social ul p {
        transform: rotate(270deg);
        right: 18px;
        top: 19px;
    }
    .car-head h5::before {
        top: 2px;
    }
    .video-anchor a {
        padding: 0;
        line-height: 34px;
    }
    .alertify-notifier.ajs-center {
        left: -20% !important;
    }
}
@media (max-width: 320px) {
    .footer-envlope {
        padding: 11px 21px;
    }
    .alertify-notifier.ajs-center {
        left: -20%;
    }
}

@media (max-width: 280px) {
.footer-social-ul ul li a {
    top: 0px !important;
}

}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.who-we-are-sec ul {
    margin-top: 15px;
}
.who-we-are-sec ul li {
    font-size: 13px;
    color: #0d0d0d;
    font-family: "Poppins";
    font-weight: 500;
}
.who-we-are-sec .buisness-head {
    font-size: 13px;
    color: #0d0d0d;
    font-family: "Poppins";
    font-weight: 500;
}

.terms-all p span {
    color: #000000 !important;
    font-weight: 500 !important;
    font-family: 'Poppins' !important;
}

.faq-all p {
    font-family: 'poppins' !important;
    font-weight: 500;
}


