@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
h1,
h2,
p {
  font-size: clamp(var(--min), var(--val), var(--max));
}

h1 {
  --min: 2em;
  --val: 5vw;
  --max: 3em;
}

h2 {
  --min: 1.5em; /* minimum value */
  --val: 4vw; /* preferred value = 4% viewport width */
  --max: 2.25em; /* maximum value */
}

p {
  --min: 1em;
  --val: 2.5vw;
  --max: 1.5em;
}

* {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

html {
  margin: 0;
  padding: 0;
}
html body {
  margin: 0;
  padding: 0;
  margin: auto;
}
html body > * + * {
  margin: 1em 0 0.25em;
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
html body .main-container.blurIt {
  filter: blur(3px);
}
html body .main-container .navbar {
  background-color: #ffffff !important;
  color: #151515;
  padding: 10px 5%;
}
html body .main-container .navbar .container-fluid {
  padding-left: unset;
}
html body .main-container .navbar .container-fluid .navbar-collapse {
  justify-content: flex-end;
}
html body .main-container .navbar .container-fluid .navbar-brand {
  color: #151515;
  font-weight: 700;
  font-size: 20px;
}
html body .main-container .navbar .container-fluid .navbar-brand .logoImg {
  display: block;
  background-image: url(../img/logo4.png);
  width: 140px;
  height: 41px;
  background-size: contain;
  background-repeat: no-repeat;
}
html body .main-container .navbar .container-fluid .nav-item .nav-link {
  color: #151515;
  font-size: 16px;
  margin: 0px 10px;
}
html body .main-container .navbar .container-fluid .nav-item .nav-link.active {
  color: #FF8A00;
}
html body .main-container .navbar .container-fluid .nav-item .nav-link .callIcon {
  background-image: url(../img/banner/icon_phone.png);
  width: 26px;
  height: 26px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
html body .main-container .main-body {
  margin: auto;
  display: none;
  margin-top: 50px;
}
html body .main-container .main-body.active {
  display: block;
}
html body .main-container .main-body .bannerCarousel .carousel_dot {
  width: 7px;
  height: 7px;
  border: 1px;
  border-radius: 7px;
  transition: ease 300ms;
}
html body .main-container .main-body .bannerCarousel .carousel_dot.active {
  width: 40px;
  background-color: #FF8A00;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item {
  width: 100%;
  height: 682px;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody {
  width: 100%;
  height: 682px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-direction: column;
  padding: 20px 18%;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 400;
  font-size: 28px;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody h1 {
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  word-spacing: 15px;
  text-align: center;
  font-size: 64px;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody h1 span {
  color: #FF8A00;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody .carousel_text {
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody.cit1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url(../img/banner/banner1.png);
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody.cit2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url(../img/muscular-sportsman-building-biceps-with-dumbbell.jpg);
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody.cit3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url(../img/portrait-young-sportive-girl-training-with-dumbbells-isolated-blue-background-neon.jpg);
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody .bannerBtn {
  border: 2px solid #FF8A00;
  border-radius: 25px;
  color: white;
  width: 120px;
  margin-top: 30px;
  padding: 8px 5px;
  background-color: #FF8A00;
  text-transform: uppercase;
  font-size: 14px;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody .bannerBtn:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item.active {
  animation: fadein 1s;
}
html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item.active .carouselItemBody h1, html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item.active .carouselItemBody h2, html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item.active .carouselItemBody .carousel_text, html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item.active .carouselItemBody .bannerBtn {
  animation: fadeInBottom 1s;
}
html body .main-container .main-body .badgesWrap {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
}
html body .main-container .main-body .badgesWrap .badgeWrap {
  min-width: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin: 10px;
}
html body .main-container .main-body .badgesWrap .badgeWrap .badgeNo {
  font-size: 32px;
  font-weight: 700;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel {
  background-color: #2A2929;
  padding: 50px 20px;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .testinominalHeader {
  text-align: center;
  color: white;
  font-size: 38px;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .testinominalHeader::after {
  content: "";
  width: 150px;
  display: block;
  height: 2px;
  background-color: white;
  margin: auto;
  margin-top: 10px;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item {
  width: 100%;
  min-height: 400px;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody {
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 10%;
  background-color: #2A2929;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
  background-image: url(../img/banner/testemonial_icon.png);
  background-size: 170px 170px;
  background-position: bottom right;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .testiLeft {
  display: flex;
  flex-wrap: wrap;
  width: 42%;
  min-width: 210px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .testiLeft .testiImg {
  width: 190px;
  height: 190px;
  background-image: url(../img/banner/Ellipse4.png);
  background-size: contain;
  background-repeat: no-repeat;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .testiLeft .testiInfo {
  width: 200px;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .testiLeft .testiInfo h4, html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .testiLeft .testiInfo p {
  color: white;
  font-weight: 400;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .testiLeft .testiInfo h4 {
  font-weight: 700;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .testiRight {
  width: 50%;
  min-width: 210px;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .testiRight p {
  color: white;
  font-size: 18px;
  font-weight: 400;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 400;
  font-size: 28px;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody h1 {
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  word-spacing: 15px;
  text-align: center;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody h1 span {
  color: #FF8A00;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item .carouselItemBody .carousel_text {
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item.active {
  animation: fadein 1s;
}
html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item.active .carouselItemBody h1, html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item.active .carouselItemBody h2, html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item.active .carouselItemBody .carousel_text, html body .main-container .main-body #carouselExampleIndicators2.carousel .carousel-inner .carousel-item.active .carouselItemBody .bannerBtn {
  animation: fadeInBottom 1s;
}
html body .main-container .main-body .aboutUs {
  width: 100%;
  background-color: #ffffff;
  background-image: url(../img/banner/aboutusBG.png);
  background-position: right;
  background-repeat: no-repeat;
  padding: 0px 5%;
}
html body .main-container .main-body .aboutUs .aboutUsWrap {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 50px;
       column-gap: 50px;
  width: 100%;
  justify-content: center;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft {
  width: 58%;
  min-width: 250px;
  padding: 30px 0px;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsHeader {
  font-size: 28px;
  margin-bottom: 20px;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsHeader::after {
  width: 80px;
  content: "";
  display: block;
  height: 2px;
  background-color: #FF8A00;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsTitle {
  text-transform: uppercase;
  font-weight: 700;
  color: #FF8A00;
  line-height: 1.2;
  margin-bottom: 20px;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsText {
  font-size: 20px;
  line-height: 2;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  margin-top: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .aboutUsIconInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .aboutUsIconInfo .icon {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .aboutUsIconInfo .icon.icon1 {
  background-image: url(../img/banner/training.png);
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .aboutUsIconInfo .icon.icon2 {
  background-image: url(../img/banner/workshop1.png);
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .aboutUsIconInfo .icon.icon3 {
  background-image: url(../img/banner/happyclients1.png);
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .aboutUsIconInfo .iconText {
  width: 90px;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  margin-top: 5px;
  font-weight: 700;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .divider {
  width: 2px;
  background-color: rgba(0, 0, 0, 0.16);
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsRight {
  width: 30%;
  min-width: 280px;
}
html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsRight .aboutUsImg {
  background-image: url(../img/banner/aboutusimage.png);
  width: 100%;
  max-width: 480px;
  min-width: 280px;
  height: 620px;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
html body .main-container .main-body .aboutFounder {
  width: 100%;
  background-color: rgb(42, 41, 41);
  padding: 50px 5%;
  background-image: url(../img/banner/pngwing.png);
  background-position: right;
  background-repeat: no-repeat;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 50px;
       column-gap: 50px;
  width: 100%;
  justify-content: center;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap .aboutFounderLeft .aboutFounderImg {
  background-image: url(../img/banner/founderImg.png);
  width: 260px;
  height: 310px;
  background-size: cover;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap .aboutFounderLeft .cooImg {
  background-image: url(../img/banner/coo.png) !important;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap .aboutFounderLeft .aboutFounderName {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap .aboutFounderLeft .aboutFounderSubTitle {
  font-size: 16px;
  color: #FF8A00;
  text-align: center;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap .aboutFounderRight {
  width: 70%;
  min-width: 250px;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap .aboutFounderRight .aboutFounderHeader {
  font-size: 24px;
  color: #FF8A00;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap .aboutFounderRight .aboutFounderHeader::after {
  width: 110px;
  content: "";
  display: block;
  height: 2px;
  background-color: #fff;
}
html body .main-container .main-body .aboutFounder .aboutFounderWrap .aboutFounderRight .aboutFounderText p {
  color: #fff;
  font-size: 16px;
}
html body .main-container .main-body .achivements {
  padding: 40px 0px;
  background-color: #F4F4F4;
}
html body .main-container .main-body .achivements .container .aboutUsHeader {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}
html body .main-container .main-body .achivements .container .aboutUsHeader::after {
  width: 80px;
  content: "";
  display: block;
  height: 2px;
  background-color: #FF8A00;
  margin: auto;
}
html body .main-container .main-body .achivements .container p {
  font-size: 16px;
  text-align: center;
}
html body .main-container .main-body .achivements .container .MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  position: relative;
}
html body .main-container .main-body .achivements .container .MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}
html body .main-container .main-body .achivements .container .MultiCarousel .MultiCarousel-inner .item {
  float: left;
  cursor: pointer;
}
html body .main-container .main-body .achivements .container .MultiCarousel .MultiCarousel-inner .item .pad15 {
  text-align: center;
  margin: 20px;
}
html body .main-container .main-body .achivements .container .MultiCarousel .MultiCarousel-inner .item .pad15 img {
  width: 280px;
  height: 210px;
  border-radius: 20px;
  box-shadow: 4px 11px 23px 1px rgba(0, 0, 0, 0.13);
}
html body .main-container .main-body .achivements .container .MultiCarousel .rightLst, html body .main-container .main-body .achivements .container .MultiCarousel .leftLst {
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .main-container .main-body .achivements .container .MultiCarousel .rightLst .arrow, html body .main-container .main-body .achivements .container .MultiCarousel .leftLst .arrow {
  border-top: 1px solid;
  border-right: 1px solid;
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
}
html body .main-container .main-body .achivements .container .MultiCarousel .leftLst {
  left: 0;
}
html body .main-container .main-body .achivements .container .MultiCarousel .leftLst .arrow {
  transform: rotate(225deg);
}
html body .main-container .main-body .achivements .container .MultiCarousel .rightLst {
  right: 0;
}
html body .main-container .main-body .achivements .container .MultiCarousel .leftLst.over,
html body .main-container .main-body .achivements .container .MultiCarousel .rightLst.over {
  pointer-events: none;
  opacity: 0.5;
}
html body .main-container .main-body .ourServices {
  padding: 40px 0px;
  margin-bottom: 30px;
}
html body .main-container .main-body .ourServices .container .OurserviceHeader {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}
html body .main-container .main-body .ourServices .container .OurserviceHeader::after {
  width: 80px;
  content: "";
  display: block;
  height: 2px;
  background-color: #FF8A00;
  margin: auto;
}
html body .main-container .main-body .ourServices .container p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
html body .main-container .main-body .ourServices .container .ourServicesCardsWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
html body .main-container .main-body .ourServices .container .ourServicesCardsWrap .ourServiceCard {
  width: 23%;
  max-width: 336px;
  min-width: 250px;
  background-color: white;
  box-shadow: 4px 11px 23px 1px rgba(0, 0, 0, 0.13);
  height: 450px;
  border-radius: 20px;
  margin: auto;
  cursor: pointer;
}
html body .main-container .main-body .ourServices .container .ourServicesCardsWrap .ourServiceCard img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
}
html body .main-container .main-body .ourServices .container .ourServicesCardsWrap .ourServiceCard .ourServiceCardContent {
  height: 280px;
  position: relative;
}
html body .main-container .main-body .ourServices .container .ourServicesCardsWrap .ourServiceCard .ourServiceCardContent h4 {
  color: #FF8A00;
  text-align: center;
  padding: 20px 20px 0px 20px;
}
html body .main-container .main-body .ourServices .container .ourServicesCardsWrap .ourServiceCard .ourServiceCardContent .ourServiceDesc {
  font-size: 14px;
  line-height: 1.2;
  padding: 0px 20px;
}
html body .main-container .main-body .ourServices .container .ourServicesCardsWrap .ourServiceCard .ourServiceCardContent .btnWrap {
  display: flex;
  justify-content: center;
  bottom: 10px;
  position: absolute;
  width: 100%;
}
html body .main-container .main-body .ourServices .container .ourServicesCardsWrap .ourServiceCard .ourServiceCardContent .btnWrap .btn {
  border-radius: 20px;
  border-color: #FF8A00;
  font-size: 14px;
  padding: 7px 20px;
}
html body .main-container .main-body .consultation {
  background-color: #292929;
  padding: 40px 0px;
}
html body .main-container .main-body .consultation .container .row {
  align-items: center;
  flex-wrap: wrap;
}
html body .main-container .main-body .consultation .container .row .leftPart {
  width: 50%;
  min-width: 280px;
  margin: auto;
}
html body .main-container .main-body .consultation .container .row .leftPart h2 {
  color: #FF8A00;
}
html body .main-container .main-body .consultation .container .row .leftPart p {
  color: #ffffff;
}
html body .main-container .main-body .consultation .container .row .rightPart {
  width: 50%;
  min-width: 320px;
  margin: auto;
}
html body .main-container .main-body .consultation .container .row .rightPart .formWrap {
  width: 100%;
  background-image: url(../img/certs/circler.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 70% 80%;
  padding: 10%;
  padding-top: 8%;
}
html body .main-container .main-body .consultation .container .row .rightPart .formWrap .consultForm.form {
  width: 85%;
  min-width: 200px;
  margin: auto;
  background-color: white;
  padding: 40px 20px;
  border-radius: 20px;
}
html body .main-container .main-body .consultation .container .row .rightPart .formWrap .consultForm.form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
}
html body .main-container .main-body .consultation .container .row .rightPart .formWrap .consultForm.form form .inputWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 2px;
}
html body .main-container .main-body .consultation .container .row .rightPart .formWrap .consultForm.form form .inputWrap input {
  height: 50px;
  padding: 4px 10px;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.2196078431);
}
html body .main-container .main-body .consultation .container .row .rightPart .formWrap .consultForm.form form .bannerBtn {
  border: 2px solid #FF8A00;
  border-radius: 25px;
  color: white;
  width: 70%;
  margin: auto;
  min-width: 150px;
  padding: 8px 5px;
  background-color: #FF8A00;
  font-size: 14px;
}
html body .main-container .main-body .consultation .container .row .rightPart .formWrap .consultForm.form form .bannerBtn:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
html body .main-container .ourSerivcespages {
  display: none;
  margin: auto;
  padding-top: 60px;
}
html body .main-container .ourSerivcespages.active {
  display: block;
}
html body .main-container .ourSerivcespages .ourSerivcespage {
  display: none;
}
html body .main-container .ourSerivcespages .ourSerivcespage.active {
  display: block;
}
html body .main-container .ourSerivcespages .ourSerivcespage .bannerimage img {
  width: 100%;
  margin-top: 10px;
}
html body .main-container .ourSerivcespages .ourSerivcespage .containerWrp {
  background-image: url(../img/services/background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding-bottom: 30px;
}
html body .main-container .ourSerivcespages .ourSerivcespage .container p {
  font-size: 16px;
  margin: 40px 0;
  text-align: center;
}
html body .main-container .ourSerivcespages .ourSerivcespage .container .seriveheadersec h2 {
  text-align: center;
  margin-top: 30px;
}
html body .main-container .ourSerivcespages .ourSerivcespage .container .seriveheadersec p {
  margin: auto;
}
html body .main-container .ourSerivcespages .ourSerivcespage .container .serviceContent p {
  text-align: left;
}
html body .main-container .ourSerivcespages .ourSerivcespage .container .serviceContent p span {
  font-weight: 700;
}
html body .main-container .ourSerivcespages .ourSerivcespage .ourSerivcescards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 3%;
       column-gap: 3%;
  row-gap: 50px;
}
html body .main-container .ourSerivcespages .ourSerivcespage .ourSerivcescards .ourSerivcescard {
  display: block;
  position: relative;
  margin: auto;
  cursor: pointer;
}
html body .main-container .ourSerivcespages .ourSerivcespage .ourSerivcescards .ourSerivcescard img {
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  height: 340px;
  width: 320px;
}
html body .main-container .ourSerivcespages .ourSerivcespage .ourSerivcescards .ourSerivcescard .ourSerivcescardContent {
  padding: 10px;
  background: #FF8A00;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  height: auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 2s;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  margin-top: -2px;
}
html body .main-container footer {
  width: 100%;
  padding: 50px 5%;
  background-color: #ffffff;
  color: #000000;
  flex-direction: column;
}
html body .main-container footer p {
  font-size: 16px;
  color: #77808B;
}
html body .main-container footer .footerBottom {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding-top: 20px;
  width: 100%;
  min-width: 280px;
  margin-bottom: 40px;
}
html body .main-container footer .footerBottom .frCol {
  min-width: 200px;
  width: 30%;
}
html body .main-container footer .footerBottom .frCol .logoImg {
  background: url(../img/logo4.png), no-repeat;
  width: 180px;
  height: 50px;
  display: block;
  background-size: cover;
}
html body .main-container footer .footerBottom .frCol .frContentSub {
  font-size: 14px;
  color: #77808B;
  margin: 10px;
}
html body .main-container footer .footerBottom .flPart {
  min-width: 200px;
  width: 25%;
}
html body .main-container footer .footerBottom .flPart h5 {
  color: #FF8A00;
  margin-bottom: 20px;
  font-weight: 700;
}
html body .main-container footer .footerBottom .flPart .frCol {
  align-items: center;
  display: flex;
  -moz-column-gap: 15px;
  column-gap: 15px;
  width: 100%;
  margin-bottom: 20px;
  justify-content: center;
}
html body .main-container footer .footerBottom .flPart .frCol .icon {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
html body .main-container footer .footerBottom .flPart .frCol .icon.loc {
  background-image: url(../img/location.png);
}
html body .main-container footer .footerBottom .flPart .frCol .icon.call {
  background-image: url(../img/phone.png);
}
html body .main-container footer .footerBottom .flPart .frCol .icon.mail {
  background-image: url(../img/email.png);
}
html body .main-container footer .footerBottom .flPart .frCol .frContentSub {
  font-size: 14px;
  color: #77808B;
  margin: auto;
  width: 80%;
}
html body .main-container footer .footerBottom .flPart .frCol .frContentSub a {
  text-decoration: none;
  color: #77808B;
}
html body .main-container footer .footerBottom .flPart .inputWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 2px;
}
html body .main-container footer .footerBottom .flPart .inputWrap input {
  height: 50px;
  padding: 4px 10px;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.2196078431);
}
html body .main-container footer .footerBottom .flPart .bannerBtn {
  border: 2px solid #FF8A00;
  color: white;
  width: 70%;
  margin-top: 20px;
  min-width: 150px;
  padding: 8px 5px;
  background-color: #FF8A00;
  font-size: 14px;
}
html body .main-container footer .footerBottom .flPart .bannerBtn:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
html body .ourservicepopup, html body .certificatePopup {
  display: none;
  z-index: 9999999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.68);
  position: fixed;
  padding: 3% 5%;
  pointer-events: none;
  margin-top: 0;
}
html body .ourservicepopup.active, html body .certificatePopup.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .ourservicepopup .ourservicepopupWrap, html body .certificatePopup .ourservicepopupWrap {
  position: relative;
}
html body .ourservicepopup .osPopupClose, html body .certificatePopup .osPopupClose {
  position: absolute;
  right: -8px;
  top: -8px;
  pointer-events: auto;
  cursor: pointer;
  background-image: url(../img/services/Vector.png);
  width: 30px;
  height: 30px;
  background-size: cover;
  border: 1px solid white;
  padding: 5px;
  border-radius: 25px;
  background-color: black;
  background-size: 15px 15px;
  background-position: center;
  background-repeat: no-repeat;
}
html body .ourservicepopup .osPopupContent, html body .certificatePopup .osPopupContent {
  background: white;
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
  border-radius: 35px;
}
html body .ourservicepopup .osPopupContent .osPopupLeft img, html body .certificatePopup .osPopupContent .osPopupLeft img {
  border-radius: 25px;
}
html body .ourservicepopup .osPopupContent .osPopupRight, html body .certificatePopup .osPopupContent .osPopupRight {
  width: 450px;
  background-color: white;
  padding: 30px;
}
html body .ourservicepopup .osPopupContent .osPopupRight .osPopupHeader, html body .certificatePopup .osPopupContent .osPopupRight .osPopupHeader {
  color: #FF8A00;
  font-weight: 700;
}
html body .ourservicepopup .osPopupContent .osPopupRight .osPopupText, html body .certificatePopup .osPopupContent .osPopupRight .osPopupText {
  margin-top: 10px;
}
html body .ourservicepopup .osPopupContent .osPopupRight .osPopupText ul, html body .certificatePopup .osPopupContent .osPopupRight .osPopupText ul {
  margin-top: 20px;
}
html body .ourservicepopup .osPopupContent .osPopupRight .osPopupText ul li, html body .certificatePopup .osPopupContent .osPopupRight .osPopupText ul li {
  font-weight: 700;
  margin-bottom: 10px;
}
html body .certificatePopup .osPopupContent img {
  width: 620px;
  height: 420px;
}
@media only screen and (max-width: 860px) {
  html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft {
    width: 100%;
  }
  html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap {
    justify-content: center;
  }
  html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .aboutUsIconInfo {
    width: 150px;
  }
  html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsRight {
    width: 100%;
    display: contents;
  }
  html body .ourservicepopup .ourservicepopupWrap {
    max-width: 90%;
    height: 80%;
  }
  html body .ourservicepopup .osPopupContent {
    overflow: auto;
  }
  html body .ourservicepopup .osPopupContent .osPopupLeft {
    display: none;
  }
  html body .ourservicepopup .osPopupContent .osPopupRight .osPopupText {
    font-size: 14px;
  }
  html body .ourservicepopup .osPopupContent .osPopupRight .osPopupText ul li {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 770px) {
  html body .main-container .main-body .consultation .container .row .leftPart {
    width: 100%;
    text-align: center;
  }
  html body .main-container .main-body .consultation .container .row .rightPart {
    width: 100%;
  }
  html body .main-container footer .footerBottom .frCol {
    width: 100%;
  }
  html body .main-container footer .footerBottom .flPart {
    width: 100%;
  }
  html body .main-container footer .footerBottom .flPart .frCol {
    width: 100%;
  }
}
@media only screen and (max-width: 663px) {
  html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsLeft .aboutUsIconsWrap .aboutUsIconInfo {
    width: 100%;
  }
  html body .main-container .main-body .aboutUs .aboutUsWrap .aboutUsRight .aboutUsImg {
    height: 520px;
  }
  html .osPopupContent {
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
  }
  html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody h1 {
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    word-spacing: 15px;
    text-align: center;
    font-size: 44px;
  }
  html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody h1 span {
    color: #FF8A00;
  }
  html body .main-container .main-body .bannerCarousel .carousel-inner .carousel-item .carouselItemBody .carousel_text {
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    font-size: 14px;
  }
  html body .main-container .ourSerivcescard img {
    width: 280px !important;
  }
  html body .ourservicepopup .ourservicepopupWrap {
    max-width: 90%;
    height: 80%;
  }
  html body .ourservicepopup .osPopupContent {
    overflow: auto;
  }
  html body .ourservicepopup .osPopupContent .osPopupLeft {
    display: none;
  }
  html body .ourservicepopup .osPopupContent .osPopupRight .osPopupText {
    font-size: 14px;
  }
  html body .ourservicepopup .osPopupContent .osPopupRight .osPopupText ul li {
    font-size: 14px;
    line-height: 1.2;
  }
  html body .certificatePopup .ourservicepopupWrap {
    max-width: 90%;
  }
  html body .certificatePopup .osPopupContent img {
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */