@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.mini-title {
  color: #493E3E;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0px !important;
}

.title {
  color: #2E2E2E;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px !important;
}
.title .color-span {
  color: #9D337B;
}

.small-banner-title {
  color: #2E2E2E;
  font-size: 32px;
  font-weight: 700;
}
.small-banner-title .color-title {
  color: #9D337B;
}

.main-content {
  color: #555;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.652px;
}

.p-40 {
  padding: 40px 0px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.border-shade {
  border-bottom: 1px solid rgba(204, 204, 204, 0.2);
  position: relative;
}

.border-shade::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 1px; /* Adjust thickness if needed */
  background-color: rgba(102, 102, 102, 0.08); /* Dark shade color */
}

.border-gradient {
  border: 2px solid;
  -o-border-image: linear-gradient(to bottom, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
     border-image: linear-gradient(to bottom, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
  border-image-slice: 1;
}

.border-right-gradient-tobottom {
  border-right: 2px solid;
  -o-border-image: linear-gradient(to bottom, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
     border-image: linear-gradient(to bottom, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
  border-image-slice: 1;
}

.border-right-gradient-totop {
  border-right: 2px solid;
  -o-border-image: linear-gradient(to top, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
     border-image: linear-gradient(to top, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
  border-image-slice: 1;
}

.border-right-gradient-toleft {
  border-top: 2px solid;
  -o-border-image: linear-gradient(to right, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
     border-image: linear-gradient(to right, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
  border-image-slice: 1;
}

.border-right-gradient-toright {
  border-top: 2px solid;
  -o-border-image: linear-gradient(to left, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
     border-image: linear-gradient(to left, rgba(146, 33, 143, 0), rgba(146, 33, 143, 0.13));
  border-image-slice: 1;
}

.btn.btn-primary-rounded {
  border-radius: 5px;
  border: 1px solid #92208E;
  background-color: #92208E;
  color: #fff !important;
  padding: 6px 15px !important;
}
.btn.btn-primary-full-rounded {
  border-radius: 50%;
  border: 1px solid #92208E;
  background-color: #92208E;
  color: #fff !important;
  padding: 10px !important;
}
.btn.btn-outline-primary {
  border-color: #FF00A8 !important;
  background-color: transparent;
  color: #FF00A8 !important;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.btn.btn-outline-primary i {
  font-size: 18px;
  color: #FF00A8 !important;
}
.btn.btn-no-outline {
  border: none;
  background-color: transparent;
  color: #FF00A8;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.btn.btn-no-outline i {
  font-size: 18px;
  color: #fff;
}

header .navbar {
  background: linear-gradient(175deg, #010101 -10.62%, rgba(1, 1, 1, 0) 106.86%) !important;
}
header .navbar .navbar-brand .white-logo {
  display: block;
}
header .navbar .navbar-brand .color-logo {
  display: none;
}
header .navbar .navbar-brand img {
  height: 45px;
}
header .navbar .navbar-toggler {
  padding: 5px;
}
header .navbar .navbar-toggler .navbar-toggler-icon {
  width: 20px;
  height: 20px;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}
header .navbar .navbar-nav .nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 15px !important;
  transition: all 300ms ease-in-out;
}
header .navbar .navbar-nav .nav-link:hover, header .navbar .navbar-nav .nav-link.active {
  color: #92208E;
  font-size: 14px;
  transition: all 300ms ease-in-out;
}
header.scrollable-header .navbar {
  background: #fff !important;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.25) !important;
}
header.scrollable-header .navbar .navbar-brand .white-logo {
  display: none;
}
header.scrollable-header .navbar .navbar-brand .color-logo {
  display: block !important;
}
header.scrollable-header .navbar .navbar-nav .nav-link {
  color: #000;
}
header.scrollable-header .navbar .navbar-nav .nav-link.active, header.scrollable-header .navbar .navbar-nav .nav-link:hover {
  color: #92208E;
}

.banner .banner-bg {
  display: flex;
}
.banner .banner-bg .banner-bg-img {
  height: 600px;
  width: 33.33%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 300ms ease-in-out;
}
.banner .banner-bg .banner-bg-img:hover {
  width: 60%;
  transition: all 300ms ease-in-out;
}
.banner .banner-bg .banner-bg-img .bottom-content {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.banner .banner-bg .banner-bg-img .bottom-content .banner-title {
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0px;
}
.banner .banner-bg .banner-bg-img .bottom-content .btn-no-outline {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  padding: 0px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.small-banner {
  padding: 150px 90px 80px 80px;
}
.small-banner .small-banner-title {
  margin-bottom: 24px;
}
.small-banner .main-content {
  margin-bottom: 30px;
  width: 700px;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.small-banner .stick-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.small-banner .service-list {
  display: flex;
  margin-bottom: 0px;
  padding-left: 0px;
}
.small-banner .service-list .service-list-item {
  list-style: none;
  margin: 0px 10px 10px 0px;
}
.small-banner .service-list .service-list-item .service-list-link {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid #A7A9AC;
}
.small-banner .service-list .service-list-item .service-list-link.active {
  color: #92208E;
  border: 1px solid #92208E;
}

.small-banner-bg {
  position: relative;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0px 80px;
}
.small-banner-bg .banner-content {
  padding-top: 70px;
}
.small-banner-bg .banner-content .title {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px !important;
  text-transform: capitalize;
}
.small-banner-bg .banner-content .content {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.72px;
}
.small-banner-bg .banner-content .btn-primary-full-rounded {
  position: absolute;
  bottom: 20px;
  margin: 0 auto;
  left: 50%;
  height: 45px;
  width: 45px;
}
.small-banner-bg .banner-content .btn-primary-full-rounded:focus {
  border-color: #92208E !important;
  background-color: #92208E !important;
}

.choose-wrapper .choose-box {
  padding: 20px;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box img {
  height: 64px;
  width: 64px;
  margin-bottom: 10px;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box img.white-img {
  display: none;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box .choose-title {
  color: #2E2E2E;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box .choose-content {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.28px;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box:hover {
  background: linear-gradient(229deg, #CB3BB2 -4.17%, #922388 107.63%);
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box:hover .choose-title {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box:hover .choose-content {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box:hover img.static-img {
  display: none;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .choose-box:hover img.white-img {
  display: block;
  transition: all 300ms ease-in-out;
}
.choose-wrapper .stick-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.choose-wrapper .stick-img img {
  height: 200px;
}

.client-logo-list {
  margin-top: 30px;
  background-image: url(../img/scroll-clients-logos.png);
  width: 100%;
  height: 7rem;
  background-position: 0%;
  background-repeat: repeat-x;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
  animation: runLogo 120s linear infinite;
}

.service-wrapper .logo-list {
  margin-top: 30px;
  background-image: url(../img/scroll-company-logos.png);
  width: 100%;
  height: 7rem;
  background-position: 0%;
  background-repeat: repeat-x;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
  animation: runLogo 120s linear infinite;
}

.mini-service-wrapper .main-content {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.mini-service-wrapper .btn-no-outline {
  color: #9D337B;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.mini-service-wrapper .btn-no-outline i {
  color: #9D337B;
}
.mini-service-wrapper .choose-box {
  height: 100%;
  border: 1px solid rgba(157, 51, 123, 0.2);
  padding: 20px;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box img {
  height: 64px;
  width: 64px;
  margin-bottom: 10px;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box img.white-img {
  display: none;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box .choose-title {
  color: #2E2E2E;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box .choose-content {
  color: #555;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.28px;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box:hover {
  background: linear-gradient(229deg, #CB3BB2 -4.17%, #922388 107.63%);
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box:hover .choose-title {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box:hover .choose-content {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box:hover .btn-no-outline {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box:hover .btn-no-outline i {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box:hover img.static-img {
  display: none;
  transition: all 300ms ease-in-out;
}
.mini-service-wrapper .choose-box:hover img.white-img {
  display: block;
  transition: all 300ms ease-in-out;
}

.mini-service-block-wrapper .btn-no-outline {
  color: #9D337B;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.mini-service-block-wrapper .btn-no-outline i {
  color: #9D337B;
}
.mini-service-block-wrapper .choose-box {
  height: 100%;
  border: 1px solid rgba(157, 51, 123, 0.2);
  padding: 20px;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box img {
  height: 64px;
  width: 64px;
  margin-bottom: 10px;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box img.white-img {
  display: none;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box .choose-title {
  color: #2E2E2E;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box .choose-content {
  color: #555;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.28px;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box:hover {
  background: linear-gradient(229deg, #CB3BB2 -4.17%, #922388 107.63%);
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box:hover .choose-title {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box:hover .choose-content {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box:hover .btn-no-outline {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box:hover .btn-no-outline i {
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box:hover img.static-img {
  display: none;
  transition: all 300ms ease-in-out;
}
.mini-service-block-wrapper .choose-box:hover img.white-img {
  display: block;
  transition: all 300ms ease-in-out;
}

.certification-wrapper .carousel .static-img-left {
  position: absolute;
  top: -40px;
  left: -50px;
  height: 200px;
}
.certification-wrapper .carousel .static-img-right {
  position: absolute;
  top: -35px;
  left: -55px;
  height: 200px;
}
.certification-wrapper .carousel .carousel-item {
  text-align: center;
}
.certification-wrapper .carousel .carousel-item img {
  height: 300px;
  margin: 0px 20px;
}
.certification-wrapper .carousel .carousel-control-prev, .certification-wrapper .carousel .carousel-control-next {
  background-color: #9D337B;
  opacity: 1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  top: 40%;
}
.certification-wrapper .carousel .carousel-control-prev .carousel-control-prev-icon, .certification-wrapper .carousel .carousel-control-prev .carousel-control-next-icon, .certification-wrapper .carousel .carousel-control-next .carousel-control-prev-icon, .certification-wrapper .carousel .carousel-control-next .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}
.certification-wrapper .carousel .carousel-control-prev {
  left: -20px;
}
.certification-wrapper .carousel .carousel-control-next {
  right: -20px;
}
.certification-wrapper .carousel .carousel-indicators {
  bottom: -35px;
  margin-bottom: 0px;
}
.certification-wrapper .carousel .carousel-indicators [data-bs-target] {
  background-color: #9D337B;
}
.certification-wrapper .carousel .carousel-control-prev-icon {
  background-image: url(../img/Arrow_Narrow_Left.svg);
}
.certification-wrapper .carousel .carousel-control-next-icon {
  background-image: url(../img/Arrow_Narrow_Right.svg);
}

.author-wrapper {
  position: relative;
}
.author-wrapper .author-stable {
  height: 412px;
  position: relative;
  background-image: url(../img/author-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}
.author-wrapper .author-stable .autor-content {
  padding: 0px 0px 0px 100px;
}
.author-wrapper .author-stable .autor-content .quote-img {
  margin-bottom: 30px;
  height: 47px;
  width: 78px;
}
.author-wrapper .author-stable .autor-content .main-content {
  color: #555;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.author-wrapper .author-stable .autor-content .author-bio .author-name {
  color: #2E2E2E;
  text-align: justify;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 0px;
}
.author-wrapper .author-stable .autor-content .author-bio .author-des {
  color: #555;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding-left: 10px;
}
.author-wrapper .author-stable .author-img {
  display: flex;
  justify-content: end;
}
.author-wrapper .author-stable .author-img img {
  width: 349px;
  height: 410px;
}
.author-wrapper .static-img-right {
  position: absolute;
  left: 0;
  bottom: -30px;
  height: 270px;
  transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
}

.testimonial-wrapper .testimonial {
  margin: 0 15px;
}
.testimonial-wrapper .testimonial .testimonial-profile {
  float: left;
  padding-right: 15px;
}
.testimonial-wrapper .testimonial .testimonial-profile img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
}
.testimonial-wrapper .testimonial .testimonial-bio {
  display: block;
  text-indent: -2px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
}
.testimonial-wrapper .testimonial .testimonial-title {
  margin-bottom: 0;
  color: #2E2E2E;
  font-size: 16px;
  font-weight: 600;
}
.testimonial-wrapper .testimonial .testimonial-description {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.testimonial-wrapper .owl-pagination {
  margin-top: 30px;
}
.testimonial-wrapper .owl-theme .owl-controls .owl-page.active span, .testimonial-wrapper .owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #92208E;
}
.testimonial-wrapper .owl-theme .owl-controls .owl-page span {
  width: 30px;
  height: 6px;
}

.b-park-wrapper {
  position: relative;
  height: 540px;
  background-image: url(../img/B-Park.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.b-park-wrapper .content-block {
  width: 600px;
}
.b-park-wrapper .content-block .logo-img {
  margin-bottom: 20px;
}
.b-park-wrapper .content-block .logo-img img {
  height: 127px;
}
.b-park-wrapper .content-block .content {
  color: #FFE5E5;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.b-park-wrapper .content-block .btn-no-outline {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}

.lets-talk-wrapper.map-wrapper .left-content {
  text-align: left;
}
.lets-talk-wrapper.map-wrapper .main-content {
  text-align: left;
}
.lets-talk-wrapper .map img {
  width: 100%;
}
.lets-talk-wrapper .footer-form {
  background-image: url(../img/author-bg.png);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
}
.lets-talk-wrapper .footer-form .mini-title {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.lets-talk-wrapper .footer-form .title {
  color: #111;
  font-size: 32px;
  font-weight: 700;
}
.lets-talk-wrapper .footer-form form {
  padding: 0px 100px;
}
.lets-talk-wrapper .footer-form form .form-group {
  margin-bottom: 25px;
}
.lets-talk-wrapper .footer-form form .form-group .form-floating .form-control {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(134, 151, 145, 0.5019607843);
  border-radius: 0px;
  padding: 10px 0px;
  opacity: 0.6;
  color: #111;
  font-size: 16px;
  font-weight: 400;
}
.lets-talk-wrapper .footer-form form .form-group .form-floating .form-control:focus {
  box-shadow: none !important;
  outline: none !important;
}
.lets-talk-wrapper .footer-form form .form-group .form-floating .form-label {
  padding: 10px 0px;
  color: #111;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 400;
}
.lets-talk-wrapper .footer-form form .form-group .form-floating .form-label .icon {
  color: #111;
  opacity: 0.6;
  font-size: 16px;
  font-weight: 400;
  margin-right: 10px;
}
.lets-talk-wrapper .footer-form form .btn.btn-primary {
  border-radius: 5px;
  background: #92208E;
  border-color: #92208E;
  font-size: 12px;
  font-weight: 400;
  padding: 8px 16px;
  margin-top: 20px;
}
.lets-talk-wrapper .footer-form form .select2-container {
  width: 100% !important;
}
.lets-talk-wrapper .footer-form form .select2-container.select2-container--default .select2-selection--single {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid rgba(134, 151, 145, 0.5019607843);
  border-radius: 0px;
  height: 58px;
}
.lets-talk-wrapper .footer-form form .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 1px;
  line-height: 40px;
  color: #595959;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 400;
}
.lets-talk-wrapper .footer-form form .select2-container.select2-container--default .select2-selection__placeholder {
  color: #595959;
  font-size: 14px;
  font-weight: 400;
}
.lets-talk-wrapper .footer-form form .select2-container.select2-container--default .select2-selection__arrow {
  top: 11px;
}
.lets-talk-wrapper .footer-form form .select2-container.select2-container--default .select2-selection__arrow i {
  color: #595959;
  opacity: 0.6;
}
.lets-talk-wrapper .footer-form form .select2-container.select2-container--default .select2-selection__arrow b {
  display: none;
}
.lets-talk-wrapper .footer-form form .select2-results__option--selectable {
  background-color: #92208E !important;
}

.contact-footer-wrapper {
  background-color: #FBFBFB;
  color: #595959;
}
.contact-footer-wrapper .footer-logo img {
  height: 60px;
  margin-bottom: 40px;
}
.contact-footer-wrapper .contact-info {
  margin-bottom: 20px;
}
.contact-footer-wrapper .contact-info .icon i {
  font-size: 22px;
  color: #9D337B;
}
.contact-footer-wrapper .contact-info .contact-text {
  color: #595959;
  font-size: 14px;
  font-weight: 400;
}
.contact-footer-wrapper .social-list ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 40px;
}
.contact-footer-wrapper .social-list ul .social-list-item {
  display: inline;
}
.contact-footer-wrapper .social-list ul .social-list-item .social-list-link {
  font-size: 22px;
  color: #9D337B;
  padding: 0px 8px;
}
.contact-footer-wrapper .social-list ul .social-list-item .social-list-link:first-child {
  padding-left: 0px;
}
.contact-footer-wrapper .adress-block {
  padding: 30px 15px;
}
.contact-footer-wrapper .adress-block .contact-info {
  margin-bottom: 0px;
}
.contact-footer-wrapper .adress-block .contact-info .adress-title {
  color: #9D337B;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px !important;
}
.contact-footer-wrapper .adress-block .contact-info .icon i {
  color: #9D337B;
}
.contact-footer-wrapper .footer-content {
  padding: 30px 0px;
}
.contact-footer-wrapper .footer-content .content {
  margin-bottom: 0px;
  color: #595959;
  font-size: 12px;
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
  font-weight: 400;
}
.contact-footer-wrapper .footer-content .clients-logo-list {
  padding: 40px 0px;
}
.contact-footer-wrapper .footer-content .clients-logo-list .logo-item {
  text-align: center;
}
.contact-footer-wrapper .dark-footer {
  background-color: #92208E;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  padding: 10px;
}
.contact-footer-wrapper .dark-footer p {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0px;
}
.contact-footer-wrapper .service-tab-wrapper .title {
  color: #9D337B;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 20px;
}
.contact-footer-wrapper .service-tab-wrapper .tab-list {
  padding-left: 0px;
}
.contact-footer-wrapper .service-tab-wrapper .tab-list .tab-list-item {
  list-style: none;
  padding: 8px 0px;
  margin-bottom: 5px;
}
.contact-footer-wrapper .service-tab-wrapper .tab-list .tab-list-item .tab-list-link {
  color: #595959;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.contact-footer-wrapper .service-tab-wrapper .iso-certified p {
  color: #595959;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  margin-left: 10px;
}

.service-block-wrapper .service-block-list .service-block-content {
  padding: 70px;
  color: #555;
}
.service-block-wrapper .service-block-list .service-block-content .block-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.service-block-wrapper .service-block-list .service-block-content .block-content {
  margin-bottom: 30px;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.888px;
  letter-spacing: -0.32px;
}
.service-block-wrapper .service-block-list .service-block-content .offered-service-list .title {
  font-size: 14px !important;
  font-weight: 600;
}
.service-block-wrapper .service-block-list .service-block-content .offered-service-list .offered-service-item {
  font-size: 13px;
}
.service-block-wrapper .service-block-list .service-block-img {
  position: relative;
  width: 100%;
  height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-about .service-about-bg {
  height: 400px;
  border-radius: 20px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-about .static-img-right {
  position: absolute;
  right: -80px;
  bottom: -40px;
  z-index: -1;
}
.service-about .service-about-content .service-about-title {
  color: #2E2E2E;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.service-about .service-about-content .service-about-colour-title {
  color: #9D337B;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-about .service-about-content .content {
  color: #555;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.888px;
  letter-spacing: -0.32px;
}

.service-advantages .key-service-block {
  padding: 20px 30px;
  margin-bottom: 15px;
}
.service-advantages .key-service-block .key-service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}
.service-advantages .key-service-block .key-title {
  color: #2E2E2E;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 15px;
}
.service-advantages .key-service-block .key-content {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.28px;
}
.service-advantages .btn-outline-primary {
  width: 184px;
  margin: 0 auto;
}

.featured-project-wrapper .feature-block {
  margin-bottom: 15px;
}
.featured-project-wrapper .feature-block .feature-img {
  position: relative;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.featured-project-wrapper .feature-block .feature-logo {
  margin-bottom: 15px;
}
.featured-project-wrapper .feature-block .feature-logo img {
  height: 48px;
}
.featured-project-wrapper .feature-block .content-block .title {
  color: #2E2E2E;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 15px;
}
.featured-project-wrapper .feature-block .content-block .content {
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.42px;
}
.featured-project-wrapper .feature-block .content-block .btn.btn-no-outline {
  color: #9D337B !important;
}
.featured-project-wrapper .feature-block .content-block .btn.btn-no-outline i {
  color: #9D337B !important;
}
.featured-project-wrapper .w-180 {
  width: 181px !important;
  margin: 0 auto;
}

.clients-logo-wrapper .main-content {
  margin-bottom: 40px;
}
.clients-logo-wrapper .clients-logo-list .border-box {
  position: relative;
  height: 300px; /* Adjust height as needed */
  border: 2px solid #FFCCEF;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 25px;
}
.clients-logo-wrapper .clients-logo-list .border-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.clients-logo-wrapper .clients-logo-list .overlay {
  position: absolute;
  bottom: -101%;
  left: 0;
  background-color: #751656;
  color: white;
  padding: 20px;
  transition: bottom 0.3s ease;
}
.clients-logo-wrapper .clients-logo-list .overlay .overlay-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.clients-logo-wrapper .clients-logo-list .overlay .overlay-content {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.28px;
}
.clients-logo-wrapper .clients-logo-list .border-box:hover .overlay {
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
}
.clients-logo-wrapper .clients-logo-list .logo-item {
  text-align: center;
  margin-bottom: 15px;
  padding: 10px;
}
.clients-logo-wrapper .clients-logo-list .logo-item .logo-title {
  margin-bottom: 0px;
  color: #2E2E2E;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.about-building-wrapper {
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.journey-wrapper .content-block .content {
  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.32px;
}

.certify-wrapper .clients-logo-list .logo-item {
  text-align: center;
}

.count-wrapper .count-block {
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.count-wrapper .count-block img {
  width: 100px;
  height: 100px;
}
.count-wrapper .count-block .count-content {
  margin-top: -30px;
}
.count-wrapper .count-block .count-content .count {
  color: #2E2E2E;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px !important;
}
.count-wrapper .count-block .count-content .count-title {
  color: #2E2E2E;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
}
.count-wrapper .count-block .count-content .count-title span {
  color: #9D337B;
}

.portfolio-wrapper .service-list {
  display: flex;
  margin-bottom: 0px;
  padding: 30px 0px;
}
.portfolio-wrapper .service-list .service-list-item {
  list-style: none;
  margin: 0px 10px 10px 0px;
}
.portfolio-wrapper .service-list .service-list-item .service-list-link {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid #A7A9AC;
}
.portfolio-wrapper .service-list .service-list-item .service-list-link.active {
  color: #fff;
  background-color: #92208E;
  border: 1px solid #92208E;
}
.portfolio-wrapper .porfolio-card {
  margin-bottom: 45px;
}
.portfolio-wrapper .porfolio-card .portfolio-img {
  height: 250px;
  border-radius: 15px;
  position: relative;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 20px;
}
.portfolio-wrapper .porfolio-card .portfolio-logo {
  margin-bottom: 20px;
}
.portfolio-wrapper .porfolio-card .portfolio-logo img {
  width: 48px;
  height: 48px;
}
.portfolio-wrapper .porfolio-card .portfolio-bedge {
  border-radius: 20px;
  border: 1px solid #A7A9AC;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  padding: 6px 14px;
  width: auto;
  margin-bottom: 10px;
}
.portfolio-wrapper .porfolio-card .portfolio-header {
  margin-bottom: 20px;
  margin-top: 15px;
}
.portfolio-wrapper .porfolio-card .portfolio-header .portfolio-title {
  margin-bottom: 0px;
  color: #2E2E2E;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}
.portfolio-wrapper .porfolio-card .portfolio-content .content {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.42px;
}
.portfolio-wrapper .porfolio-card .portfolio-content .btn {
  color: #9D337B;
  font-size: 14px;
}
.portfolio-wrapper .porfolio-card .portfolio-content .btn i {
  color: #9D337B;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #dcdcdc;
}

@keyframes runLogo {
  100% {
    background-position: -350rem 50%;
  }
}
@media screen and (max-width: 1440px) {
  .mini-title {
    font-size: 14px;
  }
  .title {
    font-size: 18px !important;
  }
  .banner .banner-bg .banner-bg-img {
    height: 700px;
  }
  .small-banner-bg .banner-content .title {
    font-size: 35px !important;
  }
  .small-banner-bg .banner-content .content {
    font-size: 18px;
  }
  .choose-wrapper .choose-box img {
    height: 55px;
    width: 55px;
  }
  .choose-wrapper .choose-box .choose-title {
    font-size: 14px;
  }
  .choose-wrapper .choose-box .choose-content {
    font-size: 13px;
  }
  .service-about .service-about-bg {
    height: 300px;
  }
  .service-about .service-about-content .service-about-title {
    font-size: 18px;
  }
  .service-about .service-about-content .service-about-colour-title {
    font-size: 18px;
  }
  .service-about .service-about-content .content {
    font-size: 14px;
  }
  .featured-project-wrapper .feature-block .feature-img {
    height: 200px;
    background-position: top;
  }
  .featured-project-wrapper .feature-block .feature-logo img {
    height: 30px;
  }
  .featured-project-wrapper .feature-block .content-block .title {
    font-size: 15px;
  }
  .featured-project-wrapper .feature-block .content-block .content {
    font-size: 13px;
  }
  .featured-project-wrapper .feature-block .content-block .btn.btn-no-outline {
    font-size: 14px;
  }
  .count-wrapper .count-block img {
    width: 80px;
    height: 80px;
  }
  .count-wrapper .count-block .count-content .count {
    font-size: 25px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-img {
    height: 220px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-header .portfolio-title {
    font-size: 18px;
  }
  .clients-logo-wrapper .clients-logo-list .logo-item .logo-title {
    font-size: 17px;
  }
}
@media screen and (max-width: 1024px) {
  .mini-title {
    font-size: 14px;
  }
  .title {
    font-size: 18px !important;
  }
  header .navbar .navbar-brand img {
    height: 35px;
  }
  .banner .banner-bg .banner-bg-img {
    height: 500px;
  }
  .banner .banner-bg .banner-bg-img .bottom-content .banner-title {
    font-size: 20px;
  }
  .banner .banner-bg .banner-bg-img .bottom-content .btn-no-outline {
    font-size: 13px;
  }
  .small-banner-bg {
    height: 420px;
  }
  .small-banner-bg .banner-content .title {
    font-size: 25px !important;
  }
  .small-banner-bg .banner-content .content {
    font-size: 14px;
  }
  .small-banner {
    padding: 150px 90px 0px 80px;
  }
  .choose-wrapper .choose-box img {
    height: 50px;
    width: 50px;
  }
  .choose-wrapper .choose-box .choose-title {
    font-size: 14px;
  }
  .choose-wrapper .choose-box .choose-content {
    font-size: 13px;
  }
  .choose-wrapper .stick-img img {
    height: 130px;
  }
  .author-wrapper .author-stable .autor-content {
    padding: 0px 0px 0px 60px;
  }
  .author-wrapper .author-stable .autor-content .main-content {
    font-size: 14px;
  }
  .author-wrapper .author-stable .autor-content .quote-img {
    height: 30px;
    width: 50px;
  }
  .author-wrapper .author-stable .autor-content .author-bio .author-name {
    font-size: 14px;
  }
  .author-wrapper .author-stable .autor-content .author-bio .author-des {
    font-size: 12px;
  }
  .author-wrapper .author-stable .author-img img {
    width: 300px;
    height: 410px;
  }
  .author-wrapper .static-img-right {
    display: none;
  }
  .testimonial-wrapper .testimonial .testimonial-description {
    font-size: 13px;
  }
  .testimonial-wrapper .testimonial .testimonial-title {
    font-size: 12px;
  }
  .testimonial-wrapper .testimonial .testimonial-bio {
    font-size: 11px;
  }
  .contact-footer-wrapper .footer-logo img {
    height: 40px;
  }
  .contact-footer-wrapper .contact-info .icon i {
    font-size: 18px;
  }
  .contact-footer-wrapper .contact-info .contact-text {
    font-size: 13px;
  }
  .contact-footer-wrapper .service-tab-wrapper .title {
    font-size: 14px;
  }
  .contact-footer-wrapper .iso-certified img {
    height: 40px;
  }
  .contact-footer-wrapper .iso-certified p {
    font-size: 13px !important;
  }
  .contact-footer-wrapper .footer-form {
    margin-top: 20px;
  }
  .small-banner-title {
    font-size: 24px;
  }
  .small-banner .stick-img {
    display: none;
  }
  .small-banner .small-banner-title {
    margin-bottom: 10px;
  }
  .small-banner .service-list .service-list-item .service-list-link {
    font-size: 11px;
  }
  .service-block-wrapper .service-block-list .service-block-content {
    padding: 60px;
  }
  .service-block-wrapper .service-block-list .service-block-content .block-title {
    font-size: 18px;
  }
  .service-block-wrapper .service-block-list .service-block-content .block-content {
    font-size: 13px;
  }
  .service-block-wrapper .service-block-list .service-block-content .offered-service-list .title {
    font-size: 14px;
  }
  .service-block-wrapper .service-block-list .service-block-content .offered-service-list .offered-service-item {
    font-size: 13px;
  }
  .service-block-wrapper .service-block-list .service-block-content .btn-no-outline {
    font-size: 13px;
  }
  .service-about .service-about-bg {
    height: 300px;
  }
  .service-about .static-img-right {
    right: -50px;
  }
  .service-about .service-about-content .service-about-title {
    font-size: 15px;
  }
  .service-about .service-about-content .service-about-colour-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .service-about .service-about-content .content {
    font-size: 13px;
  }
  .service-advantages .key-service-block .key-service-icon {
    height: 45px;
    width: 45px;
  }
  .service-advantages .key-service-block .key-service-icon img {
    height: 45px;
  }
  .service-advantages .key-service-block .key-title {
    font-size: 14px;
  }
  .service-advantages .key-service-block .key-content {
    font-size: 13px;
  }
  .journey-wrapper .about-left {
    height: 550px;
  }
  .journey-wrapper .content-block {
    height: 550px;
  }
  .journey-wrapper .content-block .content {
    font-size: 13px;
  }
  .journey-wrapper .about-left {
    height: 470px;
  }
  .journey-wrapper .content-block {
    height: 470px;
  }
  .count-wrapper .count-block img {
    width: 70px;
    height: 80px;
  }
  .count-wrapper .count-block .count-content .count {
    font-size: 25px;
  }
  .count-wrapper .count-block .count-content .count-title {
    font-size: 15px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-img {
    height: 185px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-logo img {
    width: 40px;
    height: 40px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-header .portfolio-title {
    font-size: 16px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-header .portfolio-since {
    font-size: 13px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-content .content {
    font-size: 13px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-content .btn {
    font-size: 13px;
  }
  .clients-logo-wrapper .clients-logo-list .logo-item .logo-title {
    font-size: 16px;
  }
  .clients-logo-wrapper .clients-logo-list .border-box {
    height: 250px;
  }
  .clients-logo-wrapper .clients-logo-list .overlay {
    top: 250px;
  }
  .clients-logo-wrapper .clients-logo-list .overlay .overlay-title {
    font-size: 16px;
  }
  .clients-logo-wrapper .clients-logo-list .overlay .overlay-content {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .mini-title {
    font-size: 13px;
  }
  .title {
    font-size: 18px;
  }
  .border-gradient,
  .border-right-gradient-tobottom,
  .border-right-gradient-totop,
  .border-right-gradient-toleft,
  .border-right-gradient-toright {
    border: none;
  }
  header .navbar .navbar-toggler {
    border-color: #fff;
  }
  header .navbar .navbar-toggler i {
    color: #fff;
  }
  header .navbar .navbar-brand img {
    height: 22px;
  }
  header .navbar .navbar-nav .nav-link {
    font-size: 13px;
  }
  header .navbar .navbar-nav .btn.btn-primary-rounded {
    width: 119px !important;
    font-size: 12px;
  }
  .scrollable-header .navbar .navbar-toggler {
    border-color: #000 !important;
  }
  .scrollable-header .navbar .navbar-toggler i {
    color: #000 !important;
  }
  .banner .banner-bg .banner-bg-img {
    height: 360px;
  }
  .banner .banner-bg .banner-bg-img .bottom-content {
    bottom: 10px;
    right: 10px;
  }
  .banner .banner-bg .banner-bg-img .bottom-content .banner-title {
    font-size: 12px;
  }
  .banner .banner-bg .banner-bg-img .bottom-content .btn-no-outline {
    font-size: 11px;
  }
  .banner .banner-bg .banner-bg-img:hover {
    width: 33.33%;
  }
  .author-wrapper .author-stable .autor-content {
    padding: 0px 0px 0px 30px;
  }
  .author-wrapper .author-stable .autor-content .main-content {
    font-size: 12px;
  }
  .author-wrapper .author-stable .author-img img {
    width: 335px;
  }
  .testimonial-wrapper .testimonial .testimonial-description {
    font-size: 13px;
  }
  .testimonial-wrapper .testimonial .testimonial-title {
    font-size: 12px;
  }
  .testimonial-wrapper .testimonial .testimonial-bio {
    font-size: 11px;
  }
  .b-park-wrapper .content-block {
    width: 100%;
    text-align: center;
  }
  .small-banner {
    padding: 100px 20px 0px 20px;
  }
  .small-banner-bg {
    height: 250px;
  }
  .small-banner-bg .banner-content .title {
    font-size: 16px;
  }
  .small-banner-bg .banner-content .content {
    font-size: 12px;
  }
  .choose-wrapper .choose-box {
    text-align: center;
  }
  .service-about .service-about-bg {
    height: 200px;
  }
  .service-about .static-img-right {
    display: none;
  }
  .service-about .service-about-content {
    margin-bottom: 20px;
  }
  .service-about .service-about-content .service-about-title {
    font-size: 15px;
    text-align: center;
  }
  .service-about .service-about-content .service-about-colour-title {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: center;
  }
  .service-about .service-about-content .content {
    font-size: 13px;
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .featured-project-wrapper .feature-block {
    margin-bottom: 20px;
  }
  .journey-wrapper .content-block {
    height: 370px;
  }
  .journey-wrapper .content-block .title {
    text-align: center;
  }
  .journey-wrapper .content-block .content {
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .count-wrapper .count-block {
    margin-bottom: 20px;
    border: none;
  }
  .certify-wrapper .clients-logo-list .logo-item {
    margin-bottom: 15px;
  }
  .contact-footer-wrapper .footer-content .clients-logo-list .logo-item {
    margin-bottom: 15px;
  }
  .portfolio-wrapper .porfolio-card {
    margin-bottom: 20px;
  }
  .clients-logo-wrapper .clients-logo-list .logo-item .logo-title {
    font-size: 14px;
  }
  .lets-talk-wrapper.map-wrapper {
    background-color: #F9F9F9;
  }
  .lets-talk-wrapper.map-wrapper .left-content {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .mini-title {
    font-size: 13px;
  }
  .title {
    font-size: 18px;
  }
  .main-content {
    font-size: 12px;
  }
  header .navbar .navbar-brand img {
    height: 30px;
  }
  header .navbar .navbar-nav .nav-link {
    font-size: 13px;
  }
  header .navbar .navbar-nav .btn.btn-primary-rounded {
    width: 119px !important;
    font-size: 12px;
  }
  .banner .banner-bg .banner-bg-img {
    height: 360px;
  }
  .banner .banner-bg .banner-bg-img .bottom-content {
    bottom: 10px;
    right: 10px;
  }
  .banner .banner-bg .banner-bg-img .bottom-content .banner-title {
    font-size: 12px;
  }
  .banner .banner-bg .banner-bg-img .bottom-content .btn-no-outline {
    font-size: 11px;
  }
  .banner .banner-bg .banner-bg-img:hover {
    width: 33.33%;
  }
  .choose-wrapper .choose-box img {
    height: 52px;
    width: 52px;
  }
  .choose-wrapper .choose-box .choose-title {
    font-size: 13px;
  }
  .choose-wrapper .choose-box .choose-content {
    font-size: 12px;
  }
  .certification-wrapper .main-content {
    font-size: 12px;
  }
  .certification-wrapper .carousel .static-img-right {
    display: none;
  }
  .certification-wrapper .carousel .carousel-control-prev {
    left: 16px;
  }
  .certification-wrapper .carousel .carousel-control-next {
    right: 0;
  }
  .b-park-wrapper {
    height: 400px;
  }
  .b-park-wrapper .content-block .logo-img img {
    height: 80px;
  }
  .lets-talk-wrapper .footer-form form {
    padding: 0px;
  }
  .small-banner-title {
    font-size: 20px;
  }
  .small-banner {
    padding: 100px 20px 0px 20px;
  }
  .small-banner .small-banner-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .small-banner .main-content {
    margin-bottom: 18px;
    width: auto;
  }
  .small-banner-bg .banner-content .title {
    font-size: 16px;
    text-align: center;
  }
  .small-banner-bg .banner-content .content {
    font-size: 12px;
    width: auto;
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .service-block-wrapper .service-block-list .service-block-content {
    height: auto;
  }
  .service-advantages .key-service-block {
    text-align: center;
    margin-bottom: 0px;
  }
  .service-advantages .key-service-block .key-service-icon {
    margin: 0 auto;
    margin-bottom: 15px !important;
  }
  .service-advantages .key-service-block .key-content {
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .service-block-list {
    margin-bottom: 30px;
  }
  .count-wrapper .count-block img {
    width: 55px;
    height: 65px;
  }
  .count-wrapper .count-block .count-content {
    margin-top: -20px;
  }
  .count-wrapper .count-block .count-content .count {
    font-size: 18px;
  }
  .count-wrapper .count-block .count-content .count-title {
    font-size: 14px;
  }
  .contact-footer-wrapper .footer-logo {
    text-align: center;
  }
  .contact-footer-wrapper .social-list {
    float: right;
  }
  .contact-footer-wrapper .social-list ul {
    margin-top: 0px;
  }
  .contact-footer-wrapper .footer-content .clients-logo-list .logo-item img {
    margin-bottom: 10px;
  }
  .contact-footer-wrapper .adress-block .contact-info {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .certification-wrapper {
    text-align: center;
  }
  .certification-wrapper .main-content {
    text-align: center !important;
  }
  .author-wrapper .author-stable .autor-content {
    padding: 20px;
  }
  .author-wrapper .author-stable .autor-content .main-content {
    text-align: justify !important;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .author-wrapper .author-stable .autor-content .author-bio .author-name, .author-wrapper .author-stable .autor-content .author-bio .author-des {
    text-align: center;
  }
  .author-wrapper .author-stable .author-img {
    justify-content: center;
  }
  .author-wrapper .author-stable .author-img img {
    width: 260px;
    height: 260px;
  }
  .author-wrapper .static-img-right {
    display: none;
  }
  .mini-service-wrapper .choose-box {
    margin-bottom: 20px;
    height: auto;
  }
  .contact-footer-wrapper .footer-logo img {
    height: 33px;
  }
  .small-banner-title {
    font-size: 20px;
  }
  .small-banner {
    padding: 100px 20px 0px 20px;
  }
  .small-banner .small-banner-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .small-banner .service-list .service-list-item .service-list-link {
    font-size: 10px;
  }
  .small-banner-bg {
    padding: 0px 20px;
    height: 330px;
  }
  .small-banner-bg .banner-content {
    width: auto;
  }
  .small-banner-bg .banner-content .title {
    font-size: 16px;
    text-align: center;
  }
  .small-banner-bg .banner-content .content {
    font-size: 12px;
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .service-about .service-about-content {
    padding: 0px 20px;
  }
  .service-advantages .key-service-block {
    text-align: center;
    margin-bottom: 0px;
  }
  .service-advantages .key-service-block .key-service-icon {
    margin: 0 auto;
    margin-bottom: 15px !important;
  }
  .service-advantages .key-service-block .key-service-icon img {
    height: 40px;
  }
  .service-advantages .key-service-block .key-title {
    font-size: 13px;
  }
  .service-advantages .key-service-block .key-content {
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .featured-project-wrapper .title {
    text-align: center;
  }
  .featured-project-wrapper .feature-block .feature-img {
    height: 200px;
    background-position: top;
  }
  .featured-project-wrapper .feature-block .feature-logo {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 15px !important;
  }
  .featured-project-wrapper .feature-block .feature-logo img {
    height: 23px;
  }
  .featured-project-wrapper .feature-block .content-block .title {
    font-size: 13px;
    margin-bottom: 12px !important;
  }
  .featured-project-wrapper .feature-block .content-block .content {
    font-size: 12px;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  .featured-project-wrapper .feature-block .content-block .btn.btn-no-outline {
    font-size: 13px;
    margin: 0 auto;
  }
  .journey-wrapper .content-block {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-header .portfolio-title {
    font-size: 14px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-header .portfolio-since {
    font-size: 12px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-content .content {
    font-size: 12px;
  }
  .portfolio-wrapper .porfolio-card .portfolio-content .btn {
    font-size: 12px;
  }
}
@media only screen and (max-width: 480px) {
  .testimonial-wrapper .mini-title {
    text-align: center !important;
  }
  .testimonial-wrapper .title {
    text-align: center !important;
  }
  .testimonial-wrapper .testimonial {
    -moz-text-align-last: center;
         text-align-last: center;
    margin: 0 10px;
  }
  .testimonial-wrapper .testimonial .testimonial-description {
    font-size: 13px;
  }
  .testimonial-wrapper .testimonial .testimonial-profile {
    float: none !important;
    width: 30%;
    margin: 0 auto;
    padding: 0;
  }
}/*# sourceMappingURL=style.css.map */