/*---------------------------
	Fonts
----------------------------*/
@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;1,900&amp;family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
    font-family: 'trebuchet_msregular';
    src: url('../fonts/trebuc-webfont.eot');
    src: url('../fonts/trebuc-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/trebuc-webfont.woff2') format('woff2'),
         url('../fonts/trebuc-webfont.woff') format('woff'),
         url('../fonts/trebuc-webfont.ttf') format('truetype'),
         url('../fonts/trebuc-webfont.svg#trebuchet_msregular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* 01. Common css   */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "poppins", sans-serif;
  color: #636363;
  background-color: #fff;
  font-size: 16px;
  font-size: calc-rem-value(16);
  overflow-x: hidden;
}

.pt-40 {
  padding-top: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-40 {
  padding-bottom: 40px !important;
}


@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #636363;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.ptb-120 {
  padding: 80px 0px;
}


@media (max-width: 991px) {
  .ptb-120 {
    padding: 60px 0;
  }
}


@media (max-width: 767px) {
  .ptb-120 {
    padding: 40px 0;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1290px;
  }
}

.hidden {
  display: none;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

/* 1.2 Global Elements */
.page-wrap {
  position: relative;
  /* overflow: hidden; */
}

@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-bg {
  background: #F5F5F5 !important;
}

.pt-120 {
  padding-top: 120px;
}

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media (max-width: 575px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

/*** contact form error handling ***/
.contact-activation .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-activation label.error {
  color: red;
  font-size: 13px;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
  margin-bottom: 10px;
}

.contact-activation #c-loader,
.contact-activation #loader {
  display: none;
  margin-top: 10px;
}

.contact-activation #c-loader i,
.contact-activation #loader i {
  font-size: 30px;
  font-size: calc-rem-value(30);
  color: #F1B51F;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

.contact-activation #success,
.contact-activation #c-success,
.contact-activation #c-error,
.contact-activation #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {

  .contact-activation #success,
  .contact-activation #c-success,
  .contact-activation #c-error,
  .contact-activation #error {
    font-size: 15px;
  }
}

.contact-activation #c-success,
.contact-activation #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-activation #c-error,
.contact-activation #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-btn {
  background-color: #00a77e;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 4px solid #00a77e;
  border-radius: 3px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  /* bottom: 15px; */
  bottom: 45px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

@media (max-width: 991px) {
  .back-btn {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-btn:hover {
  background-color: #00a77e;
}

.back-btn i {
  font-size: 18px;
  font-size: calc-rem-value(18);
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pricing-page .pricing-section .pricing-item .pricing-item-inner {
  background: #f9fafb;
}

.left-to-right-shade {
  position: relative;
  overflow: hidden;
}

.left-to-right-shade:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.left-to-right-shade:hover:before {
  -webkit-animation: shadeLf 1s;
  animation: shadeLf 1s;
}

.middle-shade {
  position: relative;
  overflow: hidden;
}

.middle-shade::before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s linear;
  z-index: 1;
}

.middle-shade:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.ch-top-title,
.ch-top-title-s2,
.ch-top-title-s3 {
  margin-bottom: 45px;
  text-align: center;
}

@media (max-width: 991px) {

  .ch-top-title,
  .ch-top-title-s2,
  .ch-top-title-s3 {
    margin-bottom: 35px;
    text-align: center;
  }
}

@media (max-width: 575px) {

  .ch-top-title,
  .ch-top-title-s2,
  .ch-top-title-s3 {
    margin-bottom: 20px;
    text-align: center;
  }
}

.ch-top-title span,
.ch-top-title-s2 span,
.ch-top-title-s3 span {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #f5821f;
  font-family: "Poppins", sans-serif;
  /* padding-left: 30px; */
  /* padding-right: 30px; */
  position: relative;
}

/* .ch-top-title span::before,
.ch-top-title-s2 span::before,
.ch-top-title-s3 span::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/fan.png);
} */
/* .ch-top-title span::after,
.ch-top-title-s2 span::after,
.ch-top-title-s3 span::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/fan.png);
} */

@media (max-width: 767px) {

  .ch-top-title span,
  .ch-top-title-s2 span,
  .ch-top-title-s3 span {
    font-size: 15px;
  }
}

@media (max-width: 450px) {

  .ch-top-title span,
  .ch-top-title-s2 span,
  .ch-top-title-s3 span {
    font-size: 14px;
  }
}

.ch-top-title h2,
.ch-top-title-s2 h2,
.ch-top-title-s3 h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-top: 5px;
}

@media (max-width: 1199px) {

  .ch-top-title h2,
  .ch-top-title-s2 h2,
  .ch-top-title-s3 h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {

  .ch-top-title h2,
  .ch-top-title-s2 h2,
  .ch-top-title-s3 h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {

  .ch-top-title h2,
  .ch-top-title-s2 h2,
  .ch-top-title-s3 h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 450px) {

  .ch-top-title h2,
  .ch-top-title-s2 h2,
  .ch-top-title-s3 h2 {
    font-size: 22px;
    line-height: 35px;
  }
}

.ch-top-title-s2 {
  text-align: left;
}

.ch-top-title-s2 span {
  padding-right: 0;
}

.ch-top-title-s2 span:after {
  display: none;
}

.ch-top-title-s2 h2 {
  color: #1B1A1A;
}

.ch-top-title-s3 h2 {
  color: #1B1A1A;
}

.ch-btn-style-1,
.ch-btn-style-2,
.ch-btn-style-3,
.ch-btn-style-4 {
  background: #00a77e;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 5px;
  border: 0;
  z-index: 11;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}


.ch-btn-style-1::before,
.ch-btn-style-2::before,
.ch-btn-style-3::before,
.ch-btn-style-4::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: #00a77e; */
  background: #f5821f;
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition: 0.5s;
  z-index: -1;
}

.ch-btn-style-6 {
  background: #f5821f !important;
}

.ch-btn-style-6::before {
  background: #00a77e;
}

.ch-btn-style-1:hover,
.ch-btn-style-1:focus,
.ch-btn-style-1:active,
.ch-btn-style-2:hover,
.ch-btn-style-2:focus,
.ch-btn-style-2:active,
.ch-btn-style-3:hover,
.ch-btn-style-3:focus,
.ch-btn-style-3:active,
.ch-btn-style-4:hover,
.ch-btn-style-4:focus,
.ch-btn-style-4:active {
  /* background-color: #f5821f; */
  background-color: #00a77e;
  color: #fff;
}

.ch-btn-style-6:hover,
.ch-btn-style-6:focus,
.ch-btn-style-6:active {
  background-color: #00a77e !important;
}


.ch-btn-style-1:hover:before,
.ch-btn-style-1:focus:before,
.ch-btn-style-1:active:before,
.ch-btn-style-2:hover:before,
.ch-btn-style-2:focus:before,
.ch-btn-style-2:active:before,
.ch-btn-style-3:hover:before,
.ch-btn-style-3:focus:before,
.ch-btn-style-3:active:before,
.ch-btn-style-4:hover:before,
.ch-btn-style-4:focus:before,
.ch-btn-style-4:active:before {
  transform: scaleX(0);
}

@media (max-width: 991px) {

  .ch-btn-style-1,
  .ch-btn-style-2,
  .ch-btn-style-3,
  .ch-btn-style-4 {
    font-size: 18px;
    font-size: calc-rem-value(18);
  }
}

@media (max-width: 767px) {

  .ch-btn-style-1,
  .ch-btn-style-2,
  .ch-btn-style-3,
  .ch-btn-style-4 {
    padding: 8px 22px;
    font-size: 14px;
  }
}

.ch-btn-style-2 {
  color: #fff;
  background-color: #1B1A1A;
  margin-right: 20px;
}

.ch-btn-style-2::before {
  background: #00a77e;
}

.ch-btn-style-2:hover,
.ch-btn-style-2:focus,
.ch-btn-style-2:active {
  color: #fff;
}

.ch-btn-style-2:hover:before,
.ch-btn-style-2:focus:before,
.ch-btn-style-2:active:before {
  transform: scaleX(0);
  background: #00a77e;
}

.ch-btn-style-3 {
  background: none;
  color: #f5821f;
  border: 1px solid #f5821f;
}

.ch-btn-style-3::before {
  background: #fff;
}

.ch-btn-style-3:hover {
  border-color: #1B1A1A;
}

.ch-btn-style-3:hover:before {
  transform: scaleX(0);
  background: #f5821f;
}

.ch-btn-style-4 {
  background: #00a77e;
}

.ch-btn-style-4::before {
  background: #f5821f;
}

.ch-btn-style-4:hover,
.ch-btn-style-4:focus,
.ch-btn-style-4:active {
  background-color: #00a77e;
  color: #fff;
}

.ch-btn-style-4:hover:before,
.ch-btn-style-4:focus:before,
.ch-btn-style-4:active:before {
  transform: scaleX(0);
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #f5821f;
  -webkit-box-shadow: 0 0 5px 0 #f5821f;
  -moz-box-shadow: 0 0 5px 0 #f5821f;
  -o-box-shadow: 0 0 5px 0 #f5821f;
  -ms-box-shadow: 0 0 5px 0 #f5821f;
  box-shadow: 0 0 5px 0 #f5821f;
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.form ::-webkit-input-placeholder {
  /* Edge */
  font-style: normal;
}

.form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-style: normal;
}

.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}

.social-links li a {
  background-color: #f4c54f;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: #F1B51F;
}

.header-search-form {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.header-search-form .close-header-search {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 50px;
  height: 50px;
  background: #F1B51F;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
}

.header-search-form .close-header-search i {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.header-search-form form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.header-search-form .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
  border-radius: 40px;
}

.header-search-form .form-group input[type=text],
.header-search-form .form-group input[type=search] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 40px;
  border: 0;
}

.header-search-form .form-group input[type=text]:focus,
.header-search-form .form-group input[type=search]:focus {
  outline: none;
  border-color: #F1B51F;
}

.header-search-form .form-group input[type=submit] {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #000000;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-search-form .form-group input[type=submit]:hover,
.header-search-form .form-group button:hover {
  color: #000000;
}

.header-search-form .form-group .search-btn {
  width: 60px;
  height: 70px;
  background: #F1B51F;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
}

.header-search-form input::placeholder,
.header-search-form textarea::placeholder {
  color: #000000;
}

.header-search-form.active {
  transform: translateY(0%);
  margin-top: 0;
}

.header-search-form.active .close-header-search {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.header-search-form.active form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.page-title {
  background: url(../images/page-title_img_01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  /* min-height: 555px; */
  min-height: 300px;
  position: relative;
  display: flex;
  background-position: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}

.page-title:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: #000000de;
  /* background: #02020a96; */
  opacity: 0.8;
}

@media (max-width: 991px) {
  .page-title {
    min-height: 200px;
  }
}

@media (max-width: 575px) {
  .page-title {
    min-height: 150px;
  }
}

@media (min-width: 991px) {
  .page-title .page-title-wrap {
    padding: 0 209px;
  }
}

@media (max-width: 1700px) {
  .page-title .page-title-wrap {
    padding: 0 89px;
  }
}

@media (max-width: 1500px) {
  .page-title .page-title-wrap {
    padding: 0 29px;
  }
}

/* .page-title .page-title-wrap .breadcumb-img {
  padding: 10px;
  padding-top: 78px;
  position: relative;
  bottom: -10px;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .page-title .page-title-wrap .breadcumb-img {
    bottom: 0;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .page-title .page-title-wrap .breadcumb-img {
    display: none;
  }
}
.page-title .page-title-wrap .breadcumb-img img {
  clip-path: polygon(46% 0, 100% 0, 100% 100%, 3% 100%);
  min-height: 450px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .page-title .page-title-wrap .breadcumb-img img {
    min-height: 350px;
  }
}
.page-title .page-title-wrap .breadcumb-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  z-index: -1;
  clip-path: polygon(52% 0, 100% 0, 100% 100%, 2% 100%);
}
@media (max-width: 991px) {
  .page-title .page-title-wrap .breadcumb-img:before {
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 2% 100%);
    height: 101%;
    top: -1px;
  }
} */

.page-title .breadcumb-wrap {
  padding-top: 80px;
  text-align: center;
}

@media (max-width: 991px) {
  .page-title .breadcumb-wrap {
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap {
    text-align: center;
  }
}

.page-title .breadcumb-wrap h2 {
  /* font-size: 40px; */
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.page-title .breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol {
    justify-content: center;
  }
}

.page-title .breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 15px;
  /* color: #F1B51F; */
  /* color: #00a77e; */
  color: #ff7500;
  position: relative;
  font-size: 16px;
}

.page-title .breadcumb-wrap ol li i {
  color: #636363;
  margin-right: 5px;
}

.page-title .breadcumb-wrap ol li:first-child {
  padding-left: 0;
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 16px;
    padding: 0 10px;
  }

  .page-title .breadcumb-wrap ol li:first-child {
    padding-left: 0;
  }
}

.page-title .breadcumb-wrap ol li:after {
  content: "/";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.page-title .breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}

.page-title .breadcumb-wrap ol li:last-child:after {
  display: none;
}

.page-title .breadcumb-wrap ol li a {
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.page-title .breadcumb-wrap ol li a:hover {
  color: #00a77e;
}

.gooey {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 142px;
  height: 40px;
  margin: -20px 0 0 -71px;
  background: transparent;
  filter: contrast(20);
}

.gooey .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  filter: blur(0);
  background: #F1B51F;
  border-radius: 50%;
  transform: translateX(0);
  animation: dot 2.8s infinite;
}

.gooey .dots {
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  animation: dots 2.8s infinite;
}

.gooey .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  filter: blur(0px);
  background: #F1B51F;
  border-radius: 50%;
}

@-moz-keyframes dot {
  50% {
    transform: translateX(96px);
  }
}

@-webkit-keyframes dot {
  50% {
    transform: translateX(96px);
  }
}

@-o-keyframes dot {
  50% {
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    transform: translateX(96px);
  }
}

@-moz-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}

@-webkit-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}

@-o-keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}

/* .preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #012213;
} */

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: calc-rem-value(16);
  font-weight: 600;
  color: #1B1A1A;
  background: #f9f7f6;
  display: block;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: calc-rem-value(15);
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #1B1A1A;
  border-color: #1B1A1A;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: calc-rem-value(15);
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
02. header section
--------------------------------------------------------------*/
.header-main-wrap .topbar {
  background: #00a77e;
  z-index: 111;
  position: relative;
}

@media (min-width: 991px) {
  .header-main-wrap .topbar {
    padding: 0 220px;
  }
}

@media (max-width: 1700px) {
  .header-main-wrap .topbar {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .header-main-wrap .topbar {
    padding: 0 40px;
  }
}

@media (max-width: 575px) {
  .header-main-wrap .topbar {
    padding: 15px 0;
  }
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .container-fluid {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .container-fluid {
    padding: 0 15px;
  }
}

.header-main-wrap .topbar .topbar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .topbar-right {
    justify-content: center;
  }
}

.header-main-wrap .topbar .topbar-right .contact-info ul {
  display: flex;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .topbar-right .contact-info ul {
    justify-content: center;
  }
}

.header-main-wrap .topbar .topbar-right .contact-info ul li {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  padding: 5px 0;
  color: #fff;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .topbar-right .contact-info ul li {
    padding: 5px 0;
  }
}

.header-main-wrap .topbar .topbar-right .contact-info.social {
  padding-left: 0px;
  margin-right: 0px;
}

.header-main-wrap .topbar .topbar-right .contact-info.social ul {
  justify-content: center;
}

.header-main-wrap .topbar .topbar-right .contact-info.social li {
  color: #fff;
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .topbar-right .contact-info.social li {
    padding: 0;
  }
}

.header-main-wrap .topbar .topbar-right .contact-info.social li+li {
  margin-left: 6px;
}

.header-main-wrap .topbar .topbar-right .contact-info.social li a {
  color: #1B1A1A;
  display: block;
  width: 26px;
  height: 26px;
  line-height: 30px;
  border-radius: 50%;
  background: #fff;
  /* color: #00a77e; */
  color: #f5821f;
  text-align: center;
}

.header-main-wrap .topbar .topbar-right .contact-info.social li a:hover {
  background: #f5821f;
  color: #fff;
}

.header-main-wrap .topbar .topbar-right .language .nice-select {
  background: none;
  border: 0;
  color: #fff;
}

.header-main-wrap .topbar .topbar-right .language .nice-select:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
  height: 7px;
  width: 7px;
  margin-top: -6px;
}

.header-main-wrap .topbar .topbar-right .language .nice-select .list {
  color: #1B1A1A;
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .contact-intro {
    text-align: center;
  }
}

.header-main-wrap .topbar .contact-intro ul {
  display: flex;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .contact-intro ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.header-main-wrap .topbar .contact-intro ul li {
  padding: 10px 0;
  color: #fff;
}

@media (max-width: 1399px) {
  .header-main-wrap .topbar .contact-intro ul li {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .header-main-wrap .topbar .contact-intro ul li {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .contact-intro ul li {
    font-size: 15px;
    padding: 5px 0;
  }
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .contact-intro ul li {
    padding-bottom: 0;
    font-size: 14px;
  }
}

.header-main-wrap .topbar .contact-intro ul li+li {
  margin-left: 20px;
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .contact-intro ul li+li {
    margin-left: 0;
  }
}

.header-main-wrap .topbar .contact-intro ul li a {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;

}

.header-main-wrap .topbar .contact-intro ul li i {
  margin-right: 10px;
}

@media (max-width: 1199px) {
  .header-main-wrap .topbar .contact-intro ul li i {
    margin-right: 5px;
  }
}

.header-main-wrap .topbar .col:last-child {
  padding-right: 20px;
}

.header-main-wrap .topbar .col:last-child .contact-intro ul {
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .col:last-child .contact-intro ul {
    justify-content: center;
  }
}

.header-main-wrap .topbar .col:last-child .contact-intro ul li+li {
  margin-left: 20px;
}

@media (min-width: 991px) {
  .cp-header-area {
    padding: 0 220px;
  }
}

@media (max-width: 1700px) {
  .cp-header-area {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .cp-header-area {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .cp-header-area {
    padding: 15px 30px;
  }
}

@media (max-width: 575px) {
  .cp-header-area {
    padding: 15px 0;
  }
}

.cp-header-area .main-menu .row {
  width: 100%;
}

.cp-header-area ul.nav {
  list-style: none;
  justify-content: center;
}

.cp-header-area .main-menu>ul {
  display: flex;
  list-style: none;
}

@media screen and (min-width: 992px) {
  .cp-header-area .main-menu #navbar li {
    position: relative;
  }

  .cp-header-area .main-menu ul li.has-submenu {
    position: relative;
  }

  .cp-header-area .main-menu ul>li>a {
    font-size: 16px;
    padding: 30px 20px;
    display: block;
    color: #1B1A1A;
    font-weight: 600;
    position: relative;
  }

  .cp-header-area .main-menu ul>li>a:hover,
  .cp-header-area .main-menu ul>li>a .active {
    color: #00a77e;
  }

  .cp-header-area .main-menu ul>li>a:hover:before,
  .cp-header-area .main-menu ul>li>a.active:before {
    opacity: 1;
    visibility: visible;
  }

  .cp-header-area .main-menu ul>li.has-submenu>a:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "FontAwesome";
  }

  .cp-header-area .main-menu ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 230px;
    position: absolute;
    padding: 0px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform-origin: center top 0;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
  }

  .cp-header-area .main-menu ul>li .sub-menu a {
    font-size: 14px;
    font-size: calc-rem-value(16);
    display: block;
    padding: 8px 20px;
    color: #1B1A1A;
    position: relative;
    overflow: hidden;
  }

  .cp-header-area .main-menu ul>li .sub-menu a:hover,
  .cp-header-area .main-menu ul>li .sub-menu a .active {
    color: #fff;
    background: #00a77e;
  }

  .cp-header-area .main-menu ul>li>.sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }

  .cp-header-area .main-menu ul>li>.sub-menu>.menu-item-has-children>a {
    position: relative;
  }

  .cp-header-area .main-menu ul>li>.sub-menu>.menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .cp-header-area .main-menu ul>li:hover>.sub-menu {
    opacity: 1;
    top: 100%;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
    -moz-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    -o-transform: scaleY(100%);
    visibility: visible;
  }

  .cp-header-area .main-menu #navbar .sub-menu>li:hover>.sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

.cp-header-area .cp-header-area-right {
  margin-top: 5px;
}

@media (max-width: 992px) {
  .cp-header-area .cp-header-area-right {
    padding-right: 80px;
  }
}

@media (max-width: 767px) {
  .cp-header-area .cp-header-area-right {
    padding-right: 35px;
  }
}

@media (max-width: 1399px) {
  .cp-header-area .cp-header-area-right .ch-btn-style-1 {
    padding: 8px 25px;
  }
}

.cp-header-area .cp-header-area-right>ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 992px) {
  .cp-header-area .cp-header-area-right>ul .ch-btn-style-1 {
    width: 132px;
    margin: 10px 0;
  }
}

@media (max-width: 991px) {
  .cp-header-area .cp-header-area-right>ul .ch-btn-style-1 {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .cp-header-area .cp-header-area-right>ul .ch-btn-style-1 {
    padding: 6px 10px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .cp-header-area .cp-header-area-right>ul .ch-btn-style-1 {
    display: none;
  }
}

@media (max-width: 991px) {
  .cp-header-area .main-menu .navigation {
    padding: 20px 0;
  }
}

@media (max-width: 1399px) {
  .cp-header-area .main-menu ul>li>a {
    padding: 25px 12px;
  }
}

@media (max-width: 1199px) {
  .cp-header-area .main-menu ul>li>a {
    padding: 25px 10px;
    font-size: 14px;
  }
}

.cp-header-area .cp-header-area-right .search-toggle-btn {
  margin-right: 30px;
}

.cp-header-area .cp-header-area-right .search-toggle-btn i {
  color: #F1B51F;
  font-size: 22px;
}

.cp-header-style-1 {
  position: relative;
  z-index: 11;
}

.cp-header-style-1 .mean-container a.meanmenu-reveal {
  margin-top: -73px;
}

@media (max-width: 991px) {
  .cp-header-style-1 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

@media (max-width: 767px) {
  .cp-header-style-1 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

@media (max-width: 450px) {
  .cp-header-style-1 .mean-container a.meanmenu-reveal {
    margin-top: -50px;
  }
}

/* .cp-header-style-1 .logo {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.14);
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: -28px;
  background: #fff;
  position: relative;
} */

@media (max-width: 1500px) {
  .cp-header-style-1 .logo {
    margin-bottom: 0px;
  }
}

@media (max-width: 991px) {
  .cp-header-style-1 .logo {
    box-shadow: none;
    margin-bottom: 0;
    text-align: left;
    padding: 0;
  }
}

.cp-header-style-1 .logo span {
  display: block;
  background: #F1B51F;
  margin-bottom: 20px;
  padding: 5px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1500px) {
  .cp-header-style-1 .logo span {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .cp-header-style-1 .logo span {
    display: none;
  }
}

.cp-header-style-1 .logo img {
  padding: 0 0px;
}

@media (max-width: 991px) {
  .cp-header-style-1 .logo img {
    padding: 0;
  }
}

@media (min-width: 991px) {
  .cp-header-style-2 {
    position: absolute;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 11;
  }

  .cp-header-style-2 .menu-area {
    background: #fff;
  }
}

@media (min-width: 767px) {
  .cp-header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -60px;
  }
}

.cp-header-style-2 .second-menu {
  padding: 0 10px;
}

@media (max-width: 1399px) {
  .cp-header-style-2 .second-menu {
    padding: 0;
  }
}

@media (max-width: 992px) {
  .cp-header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -67px;
  }
}

@media (max-width: 991px) {
  .cp-header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

.cp-header-style-3 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 11;
}

@media (max-width: 991px) {
  .cp-header-style-3 {
    position: relative;
    background: #021611;
  }
}

.cp-header-style-3 .main-menu ul>li>a {
  color: #fff;
}

.cp-header-style-3 .main-menu ul>li>a:hover {
  color: #F1B51F;
}

@media (max-width: 1399px) {
  .cp-header-style-3 .ch-btn-style-4 {
    padding: 20px 20px;
  }
}

@media (max-width: 992px) {
  .cp-header-style-3 .ch-btn-style-4 {
    width: 132px;
    margin: 10px 0;
  }
}

@media (max-width: 991px) {
  .cp-header-style-3 .ch-btn-style-4 {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .cp-header-style-3 .ch-btn-style-4 {
    padding: 15px 10px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .cp-header-style-3 .ch-btn-style-4 {
    display: none;
  }
}

@media (min-width: 767px) {
  .cp-header-style-3 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

/*--------------------------------------------------------------
03. Hero Style
--------------------------------------------------------------*/
/*1.2.1 ch-main-hero */
.ch-main-hero,
.ch-main-hero-s2,
.ch-main-hero-s3,
.ch-main-hero-s4 {
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ch-main-hero::before,
.ch-main-hero-s2::before,
.ch-main-hero-s3::before,
.ch-main-hero-s4::before {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/hero/bg-shape.jpg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.ch-main-hero .ch-main-hero-wrap,
.ch-main-hero-s2 .ch-main-hero-wrap,
.ch-main-hero-s3 .ch-main-hero-wrap,
.ch-main-hero-s4 .ch-main-hero-wrap {
  position: relative;
}

.ch-main-hero .ch-main-hero-wrap,
.ch-main-hero-s2 .ch-main-hero-wrap,
.ch-main-hero-s3 .ch-main-hero-wrap,
.ch-main-hero-s4 .ch-main-hero-wrap {
  padding: 180px 0;
}

@media (max-width: 1366px) {

  .ch-main-hero .ch-main-hero-wrap,
  .ch-main-hero-s2 .ch-main-hero-wrap,
  .ch-main-hero-s3 .ch-main-hero-wrap,
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 125px 0 125px 0;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-wrap,
  .ch-main-hero-s2 .ch-main-hero-wrap,
  .ch-main-hero-s3 .ch-main-hero-wrap,
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 70px 0 70px 0;
  }
}

@media (max-width: 575px) {

  .ch-main-hero .ch-main-hero-wrap,
  .ch-main-hero-s2 .ch-main-hero-wrap,
  .ch-main-hero-s3 .ch-main-hero-wrap,
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 40px 0 0;
  }
}

.ch-main-hero .ch-main-hero-text,
.ch-main-hero-s2 .ch-main-hero-text,
.ch-main-hero-s3 .ch-main-hero-text,
.ch-main-hero-s4 .ch-main-hero-text {
  position: relative;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text,
  .ch-main-hero-s2 .ch-main-hero-text,
  .ch-main-hero-s3 .ch-main-hero-text,
  .ch-main-hero-s4 .ch-main-hero-text {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text,
  .ch-main-hero-s2 .ch-main-hero-text,
  .ch-main-hero-s3 .ch-main-hero-text,
  .ch-main-hero-s4 .ch-main-hero-text {
    padding-left: 0;
  }
}

.ch-main-hero .ch-main-hero-text .left-icon,
.ch-main-hero-s2 .ch-main-hero-text .left-icon,
.ch-main-hero-s3 .ch-main-hero-text .left-icon,
.ch-main-hero-s4 .ch-main-hero-text .left-icon {
  position: absolute;
  left: -120px;
  top: 0;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #f5821f;
  color: #fff;
  text-align: center;
  font-size: 40px;
  border-radius: 50%;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text .left-icon,
  .ch-main-hero-s2 .ch-main-hero-text .left-icon,
  .ch-main-hero-s3 .ch-main-hero-text .left-icon,
  .ch-main-hero-s4 .ch-main-hero-text .left-icon {
    left: -40px;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text .left-icon,
  .ch-main-hero-s2 .ch-main-hero-text .left-icon,
  .ch-main-hero-s3 .ch-main-hero-text .left-icon,
  .ch-main-hero-s4 .ch-main-hero-text .left-icon {
    display: none;
  }
}

.ch-main-hero .ch-main-hero-text::before,
.ch-main-hero-s2 .ch-main-hero-text::before,
.ch-main-hero-s3 .ch-main-hero-text::before,
.ch-main-hero-s4 .ch-main-hero-text::before {
  position: absolute;
  left: -80px;
  top: 50px;
  width: 2px;
  height: 78%;
  content: "";
  background: #00a77e;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text::before,
  .ch-main-hero-s2 .ch-main-hero-text::before,
  .ch-main-hero-s3 .ch-main-hero-text::before,
  .ch-main-hero-s4 .ch-main-hero-text::before {
    left: 0;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text::before,
  .ch-main-hero-s2 .ch-main-hero-text::before,
  .ch-main-hero-s3 .ch-main-hero-text::before,
  .ch-main-hero-s4 .ch-main-hero-text::before {
    display: none;
  }
}

.ch-main-hero .ch-main-hero-text::after,
.ch-main-hero-s2 .ch-main-hero-text::after,
.ch-main-hero-s3 .ch-main-hero-text::after,
.ch-main-hero-s4 .ch-main-hero-text::after {
  position: absolute;
  left: -80px;
  bottom: 32px;
  width: 60px;
  height: 2px;
  content: "";
  background: #00a77e;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text::after,
  .ch-main-hero-s2 .ch-main-hero-text::after,
  .ch-main-hero-s3 .ch-main-hero-text::after,
  .ch-main-hero-s4 .ch-main-hero-text::after {
    left: 0;
    width: 30px;
    bottom: 22px;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text::after,
  .ch-main-hero-s2 .ch-main-hero-text::after,
  .ch-main-hero-s3 .ch-main-hero-text::after,
  .ch-main-hero-s4 .ch-main-hero-text::after {
    display: none;
  }
}

.ch-main-hero .ch-main-hero-text .arrow,
.ch-main-hero-s2 .ch-main-hero-text .arrow,
.ch-main-hero-s3 .ch-main-hero-text .arrow,
.ch-main-hero-s4 .ch-main-hero-text .arrow {
  position: absolute;
  right: -100px;
  top: 28%;
  z-index: -1;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text .arrow,
  .ch-main-hero-s2 .ch-main-hero-text .arrow,
  .ch-main-hero-s3 .ch-main-hero-text .arrow,
  .ch-main-hero-s4 .ch-main-hero-text .arrow {
    max-width: 150px;
    right: -50px;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text .arrow,
  .ch-main-hero-s2 .ch-main-hero-text .arrow,
  .ch-main-hero-s3 .ch-main-hero-text .arrow,
  .ch-main-hero-s4 .ch-main-hero-text .arrow {
    display: none;
  }
}

.ch-main-hero .ch-main-hero-text .arrow img,
.ch-main-hero-s2 .ch-main-hero-text .arrow img,
.ch-main-hero-s3 .ch-main-hero-text .arrow img,
.ch-main-hero-s4 .ch-main-hero-text .arrow img {
  animation: bounceLeftToRight 4s infinite;
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text,
  .ch-main-hero-s2 .ch-main-hero-text,
  .ch-main-hero-s3 .ch-main-hero-text,
  .ch-main-hero-s4 .ch-main-hero-text {
    text-align: center;
    padding-top: 0;
  }
}

.ch-main-hero .ch-main-hero-text h2,
.ch-main-hero-s2 .ch-main-hero-text h2,
.ch-main-hero-s3 .ch-main-hero-text h2,
.ch-main-hero-s4 .ch-main-hero-text h2 {
  /* font-size: 60px; */
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 20px;
  margin-bottom: 30px;
}

.ch-main-hero .ch-main-hero-text h2 span,
.ch-main-hero-s2 .ch-main-hero-text h2 span,
.ch-main-hero-s3 .ch-main-hero-text h2 span,
.ch-main-hero-s4 .ch-main-hero-text h2 span {
  color: #00a77e;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text h2,
  .ch-main-hero-s2 .ch-main-hero-text h2,
  .ch-main-hero-s3 .ch-main-hero-text h2,
  .ch-main-hero-s4 .ch-main-hero-text h2 {
    font-size: 35px;
    line-height: 50px;
  }
}

@media (max-width: 1199px) {

  .ch-main-hero .ch-main-hero-text h2,
  .ch-main-hero-s2 .ch-main-hero-text h2,
  .ch-main-hero-s3 .ch-main-hero-text h2,
  .ch-main-hero-s4 .ch-main-hero-text h2 {
    font-size: 30px;
    line-height: 45px;
  }
}

@media (max-width: 575px) {

  .ch-main-hero .ch-main-hero-text h2,
  .ch-main-hero-s2 .ch-main-hero-text h2,
  .ch-main-hero-s3 .ch-main-hero-text h2,
  .ch-main-hero-s4 .ch-main-hero-text h2 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.ch-main-hero .ch-main-hero-text p,
.ch-main-hero-s2 .ch-main-hero-text p,
.ch-main-hero-s3 .ch-main-hero-text p,
.ch-main-hero-s4 .ch-main-hero-text p {
  max-width: 562px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.64px;
  display: flex;
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text p,
  .ch-main-hero-s2 .ch-main-hero-text p,
  .ch-main-hero-s3 .ch-main-hero-text p,
  .ch-main-hero-s4 .ch-main-hero-text p {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {

  .ch-main-hero .ch-main-hero-text p,
  .ch-main-hero-s2 .ch-main-hero-text p,
  .ch-main-hero-s3 .ch-main-hero-text p,
  .ch-main-hero-s4 .ch-main-hero-text p {
    font-size: 14px;
  }
}

.ch-main-hero .ch-main-hero-text p i,
.ch-main-hero-s2 .ch-main-hero-text p i,
.ch-main-hero-s3 .ch-main-hero-text p i,
.ch-main-hero-s4 .ch-main-hero-text p i {
  width: 65px;
  margin-right: 10px;
}

.ch-main-hero .ch-main-hero-text p i img,
.ch-main-hero-s2 .ch-main-hero-text p i img,
.ch-main-hero-s3 .ch-main-hero-text p i img,
.ch-main-hero-s4 .ch-main-hero-text p i img {
  animation: circle 15s linear infinite;
}

.ch-main-hero .right-image,
.ch-main-hero-s2 .right-image,
.ch-main-hero-s3 .right-image,
.ch-main-hero-s4 .right-image {
  position: absolute;
  bottom: 0;
  right: -50px;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {

  .ch-main-hero .right-image,
  .ch-main-hero-s2 .right-image,
  .ch-main-hero-s3 .right-image,
  .ch-main-hero-s4 .right-image {
    position: relative;
    right: 0;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .right-image,
  .ch-main-hero-s2 .right-image,
  .ch-main-hero-s3 .right-image,
  .ch-main-hero-s4 .right-image {
    max-width: 450px;
    margin: 0 auto;
    margin-top: 50px;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {

  .ch-main-hero .right-image,
  .ch-main-hero-s2 .right-image,
  .ch-main-hero-s3 .right-image,
  .ch-main-hero-s4 .right-image {
    justify-content: center;
  }
}

.ch-main-hero .right-image .right-image-inner,
.ch-main-hero-s2 .right-image .right-image-inner,
.ch-main-hero-s3 .right-image .right-image-inner,
.ch-main-hero-s4 .right-image .right-image-inner {
  position: relative;
  z-index: 1;
}

.ch-main-hero .right-image .right-image-inner .box,
.ch-main-hero-s2 .right-image .right-image-inner .box,
.ch-main-hero-s3 .right-image .right-image-inner .box,
.ch-main-hero-s4 .right-image .right-image-inner .box {
  position: absolute;
  top: -20px;
  left: 27%;
  transform: translateX(-50%);
  width: 293px;
  height: 293px;
  background: #fff;
  border: 2px dashed #F1B51F;
  border-radius: 50%;
  z-index: -1;
  animation: circle 60s linear infinite;
}

@media (max-width: 1399px) {

  .ch-main-hero .right-image .right-image-inner .box,
  .ch-main-hero-s2 .right-image .right-image-inner .box,
  .ch-main-hero-s3 .right-image .right-image-inner .box,
  .ch-main-hero-s4 .right-image .right-image-inner .box {
    width: 260px;
    height: 260px;
    top: -5px;
  }
}

@media (max-width: 420px) {

  .ch-main-hero .right-image .right-image-inner .box,
  .ch-main-hero-s2 .right-image .right-image-inner .box,
  .ch-main-hero-s3 .right-image .right-image-inner .box,
  .ch-main-hero-s4 .right-image .right-image-inner .box {
    left: 40px;
  }
}

.ch-main-hero .hero-btn,
.ch-main-hero-s2 .hero-btn,
.ch-main-hero-s3 .hero-btn,
.ch-main-hero-s4 .hero-btn {
  margin-top: 40px;
}

.ch-main-hero .right-bg-img,
.ch-main-hero-s2 .right-bg-img,
.ch-main-hero-s3 .right-bg-img,
.ch-main-hero-s4 .right-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1399px) {

  .ch-main-hero .right-bg-img,
  .ch-main-hero-s2 .right-bg-img,
  .ch-main-hero-s3 .right-bg-img,
  .ch-main-hero-s4 .right-bg-img {
    max-width: 700px;
  }
}

.ch-main-hero-s2,
.ch-main-hero-s4 {
  position: relative;
  z-index: 1;
}

.ch-main-hero-s2:before,
.ch-main-hero-s4:before {
  display: none;
}

.ch-main-hero-s2 .hero-bg,
.ch-main-hero-s4 .hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}

@media (max-width: 991px) {

  .ch-main-hero-s2 .hero-bg,
  .ch-main-hero-s4 .hero-bg {
    width: 100%;
    clip-path: unset;
  }
}

.ch-main-hero-s2 .hero-bg-color,
.ch-main-hero-s4 .hero-bg-color {
  position: absolute;
  left: 0;
  top: 0;
  width: 60.25%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(0% 0%, 87% 0%, 100% 50%, 87% 100%, 0% 100%);
}

@media (max-width: 991px) {

  .ch-main-hero-s2 .hero-bg-color,
  .ch-main-hero-s4 .hero-bg-color {
    display: none;
  }
}

.ch-main-hero-s2 .hero-bg-color:before,
.ch-main-hero-s4 .hero-bg-color:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: #00a77e;
}

.ch-main-hero-s2 .hero-bg-color:after,
.ch-main-hero-s4 .hero-bg-color:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: #F1B51F;
}

.ch-main-hero-s2 .hero-bg2,
.ch-main-hero-s4 .hero-bg2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: -11;
}

.ch-main-hero-s2 .ch-main-hero-text:before,
.ch-main-hero-s4 .ch-main-hero-text:before {
  content: url(../images/hero/left-shape.png);
  background: none;
  top: 25px;
  left: -40px;
}

@media (max-width: 1399px) {

  .ch-main-hero-s2 .ch-main-hero-text:before,
  .ch-main-hero-s4 .ch-main-hero-text:before {
    top: 16px;
    left: 0;
  }
}

.ch-main-hero-s2 .ch-main-hero-text:after,
.ch-main-hero-s4 .ch-main-hero-text:after {
  display: none;
}

.ch-main-hero-s2 .ch-main-hero-text h2 span,
.ch-main-hero-s4 .ch-main-hero-text h2 span {
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}

@media (max-width: 575px) {

  .ch-main-hero-s2 .ch-main-hero-text h2 span,
  .ch-main-hero-s4 .ch-main-hero-text h2 span {
    padding-bottom: 0;
  }
}

.ch-main-hero-s2 .ch-main-hero-text h2 span:before,
.ch-main-hero-s4 .ch-main-hero-text h2 span:before {
  content: url(../images/hero/bottom-shape.png);
  background: none;
  position: absolute;
  bottom: -15px;
  left: 0;
}

@media (max-width: 575px) {

  .ch-main-hero-s2 .ch-main-hero-text h2 span:before,
  .ch-main-hero-s4 .ch-main-hero-text h2 span:before {
    display: none;
  }
}

.ch-main-hero-s2 .ch-main-hero-text .hero-btn,
.ch-main-hero-s4 .ch-main-hero-text .hero-btn {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {

  .ch-main-hero-s2 .ch-main-hero-text .hero-btn,
  .ch-main-hero-s4 .ch-main-hero-text .hero-btn {
    justify-content: center;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {

  .ch-main-hero-s2 .ch-main-hero-text .hero-btn,
  .ch-main-hero-s4 .ch-main-hero-text .hero-btn {
    padding-bottom: 50px;
  }
}

.ch-main-hero-s2 .ch-main-hero-text .hero-btn .hero-open-video,
.ch-main-hero-s4 .ch-main-hero-text .hero-btn .hero-open-video {
  margin-left: 30px;
}

.ch-main-hero-s2 .ch-main-hero-text .hero-btn .hero-open-video a,
.ch-main-hero-s4 .ch-main-hero-text .hero-btn .hero-open-video a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
  background: #00a77e;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 24px;
  position: relative;
}

.ch-main-hero-s2 .ch-main-hero-text .hero-btn .hero-open-video a:before,
.ch-main-hero-s4 .ch-main-hero-text .hero-btn .hero-open-video a:before {
  border: 1px solid #00a77e;
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: animated-border 1500ms ease-out infinite;
}

.ch-main-hero-s2 .left-img,
.ch-main-hero-s4 .left-img {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {

  .ch-main-hero-s2 .left-img,
  .ch-main-hero-s4 .left-img {
    display: none;
  }
}

.ch-main-hero-s2 .plug-shape,
.ch-main-hero-s4 .plug-shape {
  position: absolute;
  left: 85px;
  top: 75px;
}

@media (max-width: 991px) {

  .ch-main-hero-s2 .plug-shape,
  .ch-main-hero-s4 .plug-shape {
    display: none;
  }
}

.ch-main-hero-s2 .plug-shape img,
.ch-main-hero-s4 .plug-shape img {
  animation: bounceLeftToRight 4s infinite;
}

.ch-main-hero-s3::before {
  background: linear-gradient(0deg, #000 0%, #00a77e 100%);
  opacity: 0.169;
}

.ch-main-hero-s3 .ch-main-hero-wrap {
  padding: 0;
}

.ch-main-hero-s3 .right-image {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  right: -200px;
}

@media (max-width: 991px) {
  .ch-main-hero-s3 .right-image {
    position: relative;
    right: 0;
    top: 0;
    transform: unset;
    padding-bottom: 80px;
  }
}

.ch-main-hero-s3 .ch-main-hero-text {
  padding: 250px 0;
}

@media (max-width: 991px) {
  .ch-main-hero-s3 .ch-main-hero-text {
    padding: 80px 0 0;
  }
}

.ch-main-hero-s3 .ch-main-hero-text .arrow {
  top: 42%;
}

.ch-main-hero-s3 .ch-main-hero-text:before {
  display: none;
}

.ch-main-hero-s3 .ch-main-hero-text:after {
  display: none;
}

.ch-main-hero-s3 .ch-main-hero-text h2 {
  color: #fff;
}

.ch-main-hero-s3 .ch-main-hero-text p {
  color: #fff;
}

.ch-main-hero-s3 .ch-main-hero-text .top-text {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .ch-main-hero-s3 .ch-main-hero-text .top-text {
    justify-content: center;
  }
}

.ch-main-hero-s3 .ch-main-hero-text .top-text span {
  display: inline-block;
  color: #04060A;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 20px;
  background: #fff;
  border-radius: 40px;
  margin-left: -22px;
}

.ch-main-hero-s3 .ch-main-hero-text .top-text span small {
  font-size: 18px;
  color: #00a77e;
}

.ch-main-hero-s3 .ch-main-hero-text .top-text i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #fff;
  color: #F1B51F;
  text-align: center;
  border-radius: 50%;
  font-size: 40px;
  position: relative;
}

.ch-main-hero-s3 .visible-text {
  position: absolute;
  left: 40px;
  bottom: 30px;
}

@media (max-width: 575px) {
  .ch-main-hero-s3 .visible-text {
    left: 15px;
    bottom: 10px;
  }
}

.ch-main-hero-s3 .visible-text h2 {
  font-family: "Rubik", sans-serif;
  font-size: 149.935px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.49);
}

@media (max-width: 991px) {
  .ch-main-hero-s3 .visible-text h2 {
    font-size: 80.935px;
  }
}

@media (max-width: 575px) {
  .ch-main-hero-s3 .visible-text h2 {
    font-size: 60.935px;
  }
}

.ch-main-hero-s4 {
  background: #050209;
  position: relative;
  padding: 60px;
  padding-top: 120px;
}

@media (max-width: 991px) {
  .ch-main-hero-s4 {
    padding: 50px 15px;
  }
}

@media (max-width: 575px) {
  .ch-main-hero-s4 {
    padding: 30px 0px;
  }
}

.ch-main-hero-s4 .bg-shape-1 {
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
}

.ch-main-hero-s4 .bg-shape-1 svg {
  width: 100%;
  height: auto;
}

.ch-main-hero-s4 .bg-shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.ch-main-hero-s4 .bg-shape-2 svg {
  width: 100%;
  height: auto;
}

.ch-main-hero-s4 .ch-main-hero-wrap {
  padding: 120px;
  background: #1B1A1A;
  border-radius: 100px;
}

@media (max-width: 1500px) {
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 80px 50px;
  }
}

@media (max-width: 991px) {
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 50px 30px;
  }
}

@media (max-width: 575px) {
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 30px 15px;
  }
}

.ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text {
  max-width: 550px;
  margin-left: 50px;
}

@media (max-width: 1399px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text {
    margin: 0 auto;
  }
}

.ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text::before {
  left: -35px;
}

@media (max-width: 1399px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text::before {
    left: 0;
  }
}

@media (max-width: 1399px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text h2 {
    font-size: 42px;
    line-height: 46px;
  }
}

@media (max-width: 1199px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text h2 {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 575px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text h2 {
    font-size: 25px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
04. footer Style
--------------------------------------------------------------*/
.footer-section {
  position: relative;
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
}

.footer-section ul {
  list-style: none;
}

.footer-section p {
  color: #fff;
  margin-top: 30px;
}

.footer-section li {
  color: #fff;
}

.footer-section .container {
  position: relative;
}

.footer-section .upper-footer {
  padding: 55px 0 45px;
  background: #000;
  position: relative;
  z-index: -1;
}

.footer-section .upper-footer::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.20;
  background: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: bottom left;
}

@media (max-width: 991px) {
  .footer-section .upper-footer {
    padding: 55px 0 0px;
  }
}

@media (max-width: 767px) {
  .footer-section .upper-footer {
    padding: 60px 0 30px;
  }
}

@media (max-width: 991px) {
  .footer-section .upper-footer .col {
    min-height: 235px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .footer-section .upper-footer .col {
    min-height: auto;
  }
}

.footer-section .widget-title {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .footer-section .widget-title {
    margin-bottom: 20px;
  }
}

.footer-section .widget-title h3 {
  color: #fff;
  margin: 0;
  position: relative;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer-section .about-widget .logo {
  max-width: 180px;
  margin-bottom: 30px;
}

.footer-section .about-widget .widget-title {
  margin-bottom: 0;
}

.footer-section .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}

.footer-section .about-widget p:last-child {
  margin-bottom: 0;
}

.footer-section .link-widget {
  overflow: hidden;
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .footer-section .link-widget {
    padding-left: 0;
  }
}

.footer-section .link-widget ul li {
  position: relative;
}

.footer-section .link-widget ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  display: block;
  position: relative;
  text-transform: capitalize;
}

.footer-section .link-widget ul li a:hover {
  color: #00a77e;
}

.footer-section .link-widget ul li+li {
  margin-top: 0px;
}

.footer-section .social-widget {
  padding-left: 30px;
  margin-top: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (max-width: 1199px) {
  .footer-section .social-widget {
    padding-left: 0;
  }
}

.footer-section .social-widget ul {
  display: flex;
}

.footer-section .social-widget ul li a {
  color: #1B1A1A;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #fff;
}

.footer-section .social-widget ul li a:hover {
  background: #00a77e !important;
  color: #fff;
}

.footer-section .social-widget ul li+li {
  margin-left: 10px;
}

.footer-section .schedule ul li+li {
  margin-top: 18px;
}

.footer-section .instagram ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -3px;
}

.footer-section .instagram ul li {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}

.footer-section .instagram ul li img {
  width: 100%;
}

.footer-section .instagram ul li a {
  position: relative;
  display: block;
}

.footer-section .instagram ul li a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: url(../images/link.png);
  border-radius: 5px;
  background: rgba(1, 34, 19, 0.6);
  font-family: "icomoon";
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
  font-size: 40px;
  transition: all 0.6s;
  border-radius: 3px;
}

.footer-section .instagram ul li a:hover:before {
  opacity: 1;
  visibility: visible;
}

.footer-section .lower-footer {
  text-align: center;
  position: relative;
  background: #000;
}

.footer-section .lower-footer .row {
  padding: 8px 0px;
}

@media (max-width: 991px) {
  .footer-section .lower-footer .row {
    padding: 8px 0px;
  }
}

.footer-section .lower-footer .lower-footer-link {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer-section .lower-footer .lower-footer-link {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer-section .lower-footer .lower-footer-link li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}

.footer-section .lower-footer .lower-footer-link li a:hover {
  color: #F1B51F;
}

.footer-section .lower-footer .lower-footer-link li+li {
  padding-left: 20px;
}

.footer-section .lower-footer .copy-right {
  text-align: left;
}

@media (max-width: 991px) {
  .footer-section .lower-footer .copy-right {
    text-align: center;
    margin-top: 10px;
  }
}

.footer-section .lower-footer .copyright {
  display: inline-block;
  font-size: 14px;
  margin: 0;
  color: #fff;
  opacity: 0.5;
  font-weight: 400;
}

.footer-section .lower-footer .copyright a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-section .lower-footer .copyright {
    float: none;
    display: block;
  }
}

.footer-section.style-2 {
  background: #142132;
  position: relative;
}

.footer-section.style-2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.85;
  background: url(../images/footer-bg2.png);
}

.footer-section.style-2 .upper-footer {
  padding: 80px 0 80px;
  background: transparent;
}

@media (max-width: 991px) {
  .footer-section.style-2 .upper-footer {
    padding: 50px 0 0px;
  }
}

.footer-section.style-2 .lower-footer {
  background: transparent;
}

.footer-section.style-2 .lower-footer .row {
  border-top: 1px solid #D5EAFB;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/*--------------------------------------------------------------
05. Home-style-1
--------------------------------------------------------------*/
/*===================================
 06. features-area
 ====================================*/
.features-area .features-wrap {
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.features-area .features-wrap .features-item {
  padding: 40px 30px;
  display: flex;
  z-index: 1;
  position: relative;
}

@media (max-width: 1399px) {
  .features-area .features-wrap .features-item {
    padding: 40px 20px;
  }
}

@media (max-width: 991px) {
  .features-area .features-wrap .features-item {
    border-bottom: 1px solid #ECECEC;
    padding: 20px 20px;
    margin-top: 20px;
    min-height: 168px;
  }
}

.features-area .features-wrap .features-item::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100px;
  background: #ECECEC;
  content: "";
}

@media (max-width: 767px) {
  .features-area .features-wrap .features-item::before {
    display: none;
  }
}

.features-area .features-wrap .features-item::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #00a77e;
  content: "";
  transition: all 0.3s;
}

.features-area .features-wrap .features-item:hover::after {
  width: 120px;
}

.features-area .features-wrap .features-item .icon {
  margin-right: 20px;
}

.features-area .features-wrap .features-item .icon i {
  font-size: 50px;
  color: #f5821f;
}

.features-area .features-wrap .features-item .features-text h3 a {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1B1A1A;
}

.features-area .features-wrap .features-item .features-text h3 a:hover {
  color: #00a77e;
}

.features-area .features-wrap .features-item .features-text p {
  margin-bottom: 0;
}

.features-area .features-wrap .features-item .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.features-area .features-wrap .col:first-child .features-item::before {
  display: none;
}

.features-area .features-wrap .col:last-child .features-item {
  border: 0;
}

@media (max-width: 991px) {
  .features-area .features-wrap .col:last-child .features-item::before {
    display: none;
  }
}

/*===================================
 07. about-area 
 ====================================*/
.about-area {
  position: relative;
  z-index: 1;
}

.about-area .dots-shape-1 {
  position: absolute;
  left: 100px;
  top: 10%;
  z-index: -1;
  animation: bounceLeftToRight 4s infinite;
}

@media (max-width: 1700px) {
  .about-area .dots-shape-1 {
    display: none;
  }
}

.about-area .dots-shape-2 {
  position: absolute;
  left: 120px;
  bottom: 22%;
  z-index: -1;
  animation: bounceLeftToRight 6s infinite;
}

@media (max-width: 1700px) {
  .about-area .dots-shape-2 {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-area .about-left-item {
    padding: 50px 0;
    margin-bottom: 0px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item {
    margin-bottom: 15px;
  }
}

.about-area .about-left-item .about-left-wrap {
  /* width: 495px;
  height: 495px; */
  width: 460px;
  height: 460px;
  border: 3px solid #00a77e;
  border-radius: 50%;
  position: relative;
  /* left: -100px; */
  left: -60px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap {
    width: 395px;
    height: 395px;
    left: 0px;
  }
}

@media (max-width: 991px) {
  .about-area .about-left-item .about-left-wrap {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap {
    width: 295px;
    height: 295px;
  }
}

.about-area .about-left-item .about-left-wrap .about-middle {
  width: 197px;
  height: 197px;
  background: #F6F6F6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.about-area .about-left-item .about-left-wrap .about-middle .about-middle-text {
  width: 152.78px;
  height: 152.72px;
  /* background: rgba(241, 181, 31, 0.502); */
  background: rgb(245 130 31);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border: 4px dashed #F6F6F6;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-area .about-left-item .about-left-wrap .about-middle .about-middle-text:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110.78px;
  height: 110.72px;
  background: #00a77e;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.about-area .about-left-item .about-left-wrap .about-middle .about-middle-text h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  line-height: 30px;
}

.about-area .about-left-item .about-left-wrap .about-middle .about-middle-text small {
  color: #FFF;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.about-area .about-left-item .about-left-wrap .bottom-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: zoom-in-zoom-out 8s ease infinite;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
  transition: 0.3s ease-in-out;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-1:hover img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-2:hover img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-3:hover img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-4:hover img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-5:hover img,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-6:hover img {
  transform: scale(1.1);
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-1:hover,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-2:hover,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-3:hover,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-4:hover,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-5:hover,
.about-area .about-left-item .about-left-wrap .round-image-wrap .image-6:hover {
  z-index: 4;
}

@media (max-width: 1920px) {

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
    max-width: 180px;
  }
}

@media (max-width: 1399px) {

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
    max-width: 150px;
  }
}

@media (max-width: 575px) {

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
    max-width: 100px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
}

@media (max-width: 1920px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 {
    top: -80px;
  }

}

@media (max-width: 1600px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 {
    top: -80px;
  }

}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 {
    top: -70px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 {
    top: -50px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
  position: absolute;
  right: -80px;
  top: 2%;
}

@media (max-width: 1920px) {

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    right: -52px;
    top: 6%;
  }

}

@media (max-width: 1600px) {

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    right: -52px;
    top: 6%;
  }

}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    right: -50px;
    top: 2%;
  }

}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    right: -30px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img {
  border-radius: 50%;
}


.about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 {
  position: absolute;
  right: -70px;
  bottom: 8%;
}

@media(max-width:1920px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 {
    right: -60px;
    bottom: 6%;
  }
}

@media(max-width:1600px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 {
    right: -60px;
    bottom: 6%;
  }
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 {
    right: -40px;
    bottom: 8%;

  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 {
    right: -20px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 {
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
}

@media (max-width: 1920px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 {
    bottom: -75px;
  }

  .about-home {
    padding: 110px 0px;
  }
}

@media (max-width: 1600px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 {
    bottom: -75px;
  }

  .about-home {
    padding: 100px 0px;
  }
}


@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 {
    bottom: -70px;
  }

  .about-home {
    padding: 80px 0px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 {
    bottom: -50px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
  position: absolute;
  left: -80px;
  top: 2%;
}

@media(max-width:1920px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    left: -50px;
    top: 6%;
  }
}

@media(max-width:1600px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    left: -50px;
    top: 6%;
  }
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    left: -50px;
    top: 2%;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    left: -30px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
  position: absolute;
  left: -70px;
  bottom: 8%;
}

@media(max-width:1920px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
    left: -60px;
    bottom: 6%;
  }
}

@media(max-width:1600px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
    left: -60px;
    bottom: 6%;
  }
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
    left: -40px;
    bottom: 8%;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
    left: -20px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
  border-radius: 50%;
}

.about-area .about-right-text .ab-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  display: block;
  color: #f5821f;
  /* padding-left: 30px; */
  position: relative;
}

/* .about-area .about-right-text .ab-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../images/fan.png);
} */
.about-area .about-right-text h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .about-area .about-right-text h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 575px) {
  .about-area .about-right-text h2 {
    font-size: 22px;
    line-height: 27px;
  }
}

.about-area .about-right-text p {
  margin-bottom: 20px;
  text-align: justify;
  /* max-width: 525px; */
}

@media (max-width: 1199px) {
  .about-area .about-right-text p {
    margin-bottom: 10px;
  }
}

.about-area .about-features-wrap {
  border-bottom: 1px solid #E3E3E3;
}

.about-area .about-features-wrap .about-features-img {
  padding-right: 20px;
  max-width: 200px;
}

@media (max-width: 575px) {
  .about-area .about-features-wrap .about-features-img {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

.about-area .about-features-wrap .about-features-img img {
  width: 100%;
}

.about-area .about-features-wrap .progress-single {
  margin-bottom: 20px;
  position: relative;
}

.about-area .about-features-wrap .progress-single h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.about-area .about-features-wrap .progress-single .progress {
  background: #fff;
  height: 8px;
  position: relative;
  border: 1px solid #F1B51F;
}

.about-area .about-features-wrap .progress-single .progress .progress-bar {
  background-color: #F1B51F;
  height: 4px;
  position: relative;
  top: 1px;
  left: 2px;
  border-radius: 5px;
}

.about-area .about-features-wrap .progress-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1B1A1A;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .about-area .about-features-wrap .progress-number {
    font-size: 18px;
  }
}

.about-area .about-list ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0px;
}

.about-area .about-list ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  margin-bottom: 8px;
  flex-basis: 100%;
  position: relative;
}

@media (max-width: 450px) {
  .about-area .about-list ul li {
    flex-basis: 100%;
  }
}

.about-area .about-list ul li:before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: #00a77e;
}

.about-area .about-bottom {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.about-area .about-bottom .about-bottom-btn {
  flex-basis: 50%;
}

.about-area .about-bottom .author-sign {
  flex-basis: 50%;
}

/*==============================
 08. funfact-area
 ===============================*/
@media (max-width: 991px) {
  .funfact-area {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .funfact-area {
    padding-bottom: 40px;
  }
}

.funfact-area .info {
  border-radius: 5px;
  padding: 25px 15px;
  background: url(../images/funfact-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .funfact-area .info {
    padding: 25px 12px;
  }
}

.funfact-area .info:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  opacity: 0.5;
  z-index: -1;
  border-radius: 10px;
}

.funfact-area .info:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #EFF4F9;
  z-index: -1;
  border-radius: 8px;
  transition: all 0.3s;
}

.funfact-area .info i {
  display: block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #00a77e;
  outline: 5px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 38px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .funfact-area .info {
    margin-bottom: 20px;
  }
}

.funfact-area .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .funfact-area .info p {
    font-size: 14px;
  }
}

.funfact-area .info h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .funfact-area .info h3 {
    font-size: 25px;
  }
}

.funfact-area .info:hover:after {
  width: 0;
}

.funfact-area .info:hover i {
  background-color: #00a77e;
}

.funfact-area .info:hover h3,
.funfact-area .info:hover p {
  color: #fff;
}

/*==============================
 09. service-area
 ===============================*/
.service-area {
  position: relative;
  z-index: 1;
  /* margin-top: 60px; */
  margin-bottom: 100px;
}

.service-area .service-wrap .service-item {
  margin: 0 0px;
  padding-top: 0px;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
}

.service-area .service-wrap .service-item .service-text {
  border-radius: 30px 30px 0 0;
  background: #fff;
  text-align: center;
  padding-bottom: 10px;
}

.service-area .service-wrap .service-item .service-text .icon {
  width: 85px;
  height: 85px;
  line-height: 85px;
  background: #FFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 40px;
  border-radius: 50%;
  margin: 0 auto;
  /* margin-bottom: -30px; */
  color: #f5821f;
  position: relative;
  /* top: -42.5px; */
}

.service-area .service-wrap .service-item .service-text h3 {
  margin-top: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0px;
  padding: 12px 20px 0px 20px;
  min-height: 75px;
}

.service-area .service-wrap .service-item .service-text h3 a {
  color: #1B1A1A;
}

.service-area .service-wrap .service-item .service-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .service-area .service-wrap .service-item .service-text p {
    font-size: 15px;
  }
}

.service-area .service-wrap .service-item .service-text a.read-more {
  position: relative;
  padding-right: 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1B1A1A;
}

.service-area .service-wrap .service-item .service-text a.read-more:before {
  position: absolute;
  right: 0px;
  top: 6px;
  content: "\e661";
  font-family: "themify";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
  line-height: 100%;
  transition: all 0.3s;
}

.service-area .service-wrap .service-item .service-text a.read-more:hover {
  letter-spacing: 1.9px;
  color: #00a77e;
}

.service-area .service-wrap .service-item .service-text .service-img {
  padding: 10px 0;
  overflow: visible;
}

.service-area .service-wrap .service-item .service-text .service-img img {
  /* transform: scale(1.05); */
  border-radius: 16px;
}

.service-area .service-wrap .owl-item.center .service-item .service-text .icon {
  color: #00a77e;
}

.service-area .service-wrap .owl-item.center .service-item .service-text a.read-more {
  color: #00a77e;
}

.service-area .service-wrap .owl-nav {
  display: none;
}

.service-area .service-wrap .owl-dots {
  text-align: center;
  bottom: -50px;
  position: absolute;
  width: 100%;
}

.service-area .service-wrap .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .service-area .service-wrap .owl-dots button {
    width: 8px;
    height: 13px;
  }
}

.service-area .service-wrap .owl-dots button.active {
  background: #00a77e;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .service-area .service-wrap .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

.service-area .right-shape {
  position: absolute;
  right: 20px;
  bottom: 0;
}

/*==============================
 10. brand-section
 ===============================*/
.brand-section {
  padding-top: 30px;
  padding-bottom: 40px;
  background: #EFF4F9;
}

@media (max-width: 991px) {
  .brand-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

/* .brand-section .brand-slider .brand-item{
  margin-right: 30px;
} */

.brand-section .brand-slider .brand-item img {
  /* filter: grayscale(100%); */
  margin: 0 auto;
  transition: all 0.3s;
}

.brand-section .brand-slider .brand-item:hover img {
  filter: grayscale(0);
}

.brand-section .brand-slider .owl-item img {
  width: unset;
}

.brand-section .brand-slider .owl-nav {
  display: none;
}

/*==============================
 11. choose-area
 ===============================*/
.choose-area {
  position: relative;
  z-index: 1;
}

.choose-area .line-vector {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .choose-area .line-vector {
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .choose-area .line-vector {
    max-width: 30%;
  }
}

.choose-area .solar-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1500px) {
  .choose-area .solar-panel {
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .choose-area .solar-panel {
    display: none;
  }
}

.choose-area .solar-panel .sun-shape {
  position: absolute;
  top: -50px;
  left: 50px;
}

.choose-area .solar-panel .sun-shape img {
  animation: circle 60s linear infinite;
}

@media (max-width: 1199px) {
  .choose-area .solar-panel .sun-shape img {
    max-width: 50%;
  }
}

.choose-area .choose-wrap .ch-top-title-s2 {
  margin-bottom: 20px;
}

.choose-area .choose-wrap .choose-items {
  display: flex;
  flex-wrap: wrap;
}

.choose-area .choose-wrap .choose-items .info {
  padding: 25px 20px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  background-color: #ffffffa6;
  border: 1px solid #DDDDDD;
  margin-left: -1px;
  margin-top: -1px;
  flex-basis: 50%;
}

@media (max-width: 1199px) {
  .choose-area .choose-wrap .choose-items .info {
    padding: 25px 12px;
  }
}

@media (max-width: 480px) {
  .choose-area .choose-wrap .choose-items .info {
    flex-basis: 100%;
  }
}

.choose-area .choose-wrap .choose-items .info:after {
  position: absolute;
  left: 2%;
  top: 5%;
  width: 0;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.choose-area .choose-wrap .choose-items .info i {
  display: block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #f5821f;
  text-align: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

.choose-area .choose-wrap .choose-items .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area .choose-wrap .choose-items .info p {
    font-size: 14px;
  }
}

.choose-area .choose-wrap .choose-items .info h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area .choose-wrap .choose-items .info h3 {
    font-size: 18px;
  }
}

.choose-area .choose-wrap .choose-items .info:hover:after {
  width: 95%;
}

.choose-area .choose-wrap .choose-items .info:hover i {
  background-color: #00a77e;
}

.choose-area .choose-wrap .choose-features {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .choose-area .choose-wrap .choose-features {
    flex-wrap: wrap;
  }
}

.choose-area .choose-wrap .choose-features .choose-icon i {
  width: 100px;
  height: 88px;
  line-height: 88px;
  display: block;
  border: 1px solid #00a77e;
  text-align: center;
  margin-right: 20px;
}

@media (max-width: 480px) {
  .choose-area .choose-wrap .choose-features .choose-icon i {
    margin-bottom: 20px;
  }
}

.choose-area .choose-wrap .choose-features .choose-list ul li {
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.choose-area .choose-wrap .choose-features .choose-list ul li i {
  margin-right: 5px;
  color: #00a77e;
  transition: all 0.3s;
}

.choose-area .choose-wrap .choose-features .choose-list ul li+li {
  margin-top: 15px;
}

.choose-area .choose-wrap .choose-features .choose-list ul li:hover i {
  color: #00a77e;
}

/*==============================
 12. cta-area
 ===============================*/
.cta-area .cta-wrap {
  position: relative;
  z-index: 1;
  border-radius: 0 0 80px 80px;
}

.cta-area .cta-wrap:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #2E3A31;
  opacity: 0.788;
  z-index: -1;
  border-radius: 0 0 80px 80px;
}

.cta-area .cta-inner {
  max-width: 643px;
  margin: 0 auto;
}

.cta-area .cta-inner .ch-top-title {
  margin-bottom: 25px;
}

.cta-area .cta-inner .cotact-wrap {
  display: flex;
  max-width: 483px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 575px) {
  .cta-area .cta-inner .cotact-wrap {
    display: block;
    text-align: center;
  }
}

.cta-area .cta-inner .cotact-wrap .call-btn {
  margin-right: 50px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .cta-area .cta-inner .cotact-wrap .call-btn {
    justify-content: center;
    margin-bottom: 20px;
  }
}

.cta-area .cta-inner .cotact-wrap .call-btn i {
  font-size: 40px;
  color: #00a77e;
  margin-right: 10px;
}

.cta-area .cta-inner .cotact-wrap .call-btn p {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 0;
}

.cta-area .cta-inner .cotact-wrap .call-btn p strong {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin-top: 5px;
}

/*==============================
 13. testimonial-section
 ===============================*/
.testimonial-section {
  padding-bottom: 55px;
  padding-top: 55px;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .testimonial-section {
    padding-top: 0px;
    padding-bottom: 25px;
  }
}

.testimonial-section .testimonial-items {
  margin-left: auto;
}

.testimonial-section .testimonial-items .owl-nav {
  display: none;
}

.testimonial-section .testimonial-items .owl-stage-outer {
  position: relative;
}

@media (max-width: 991px) {
  .testimonial-section .testimonial-items .owl-stage-outer {
    margin-left: 0px;
  }
}

.testimonial-section .testimonial-items .testimonial-item {
  padding-bottom: 40px;
}

.testimonial-section .testimonial-items .testimonial-item .ratting {
  display: flex;
  margin-bottom: 10px;
}

.testimonial-section .testimonial-items .testimonial-item .ratting li {
  color: #F1B51F;
}

.testimonial-section .testimonial-items .testimonial-item .ratting li span {
  color: #CDCDCD;
}

.testimonial-section .testimonial-items .testimonial-item .ratting li+li {
  margin-left: 6px;
}

.testimonial-section .testimonial-items .testimonial-item h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
  margin-top: 15px;
}

.testimonial-section .testimonial-items .testimonial-item h4 i {
  color: #01AB31;
}

.testimonial-section .testimonial-items .testimonial-item p {
  margin-bottom: 0;
  margin-bottom: 0;
  max-height: 230px;
  min-height: 230px;
  overflow-y: auto;
}

.testimonial-section .testimonial-items .testimonial-item .info-img {
  margin-top: 0px;
}

.testimonial-section .testimonial-items .testimonial-item .info-img img {
  width: unset;
  border-radius: 50%;
}

.testimonial-section .testimonial-items .testimonial-item .quote {
  position: absolute;
  right: 30px;
  bottom: 65px;
}

.testimonial-section .testimonial-items .testimonial-item .quote i {
  font-size: 30px;
  color: #ECECEC;
  transition: all 0.3s;
}

.testimonial-section .testimonial-items .testimonial-item-inner {
  padding: 28px 36px;
  padding-bottom: 0;
}

@media (max-width: 1199px) {
  .testimonial-section .testimonial-items .testimonial-item-inner {
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-items .testimonial-item-inner {
    padding: 0px 20px 28px 20px;
    padding-bottom: 0;
  }
}

.testimonial-section .testimonial-items .testimonial-item-inner .info-img {
  position: relative;
  bottom: -15px;
}

.testimonial-section .testimonial-items .owl-item.active.center .testimonial-item-inner {
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.testimonial-section .testimonial-items .owl-item.active.center .quote i {
  color: #00a77e;
}

.testimonial-section .testimonial-items .owl-nav {
  display: none;
}

.testimonial-section .testimonial-items .owl-dots {
  text-align: center;
  bottom: -25px;
  position: absolute;
  width: 100%;
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-items .owl-dots {
    bottom: -30px;
  }
}

.testimonial-section .testimonial-items .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-items .owl-dots button {
    width: 8px;
    height: 12px;
  }
}

.testimonial-section .testimonial-items .owl-dots button.active {
  background: #00a77e;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-items .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

.testimonial-section .testimonial-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .testimonial-section .testimonial-shape {
    max-width: 200px;
  }
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-shape {
    display: none;
  }
}

/*==============================
 14. pricing-section
 ===============================*/
.pricing-section {
  position: relative;
}

@media (max-width: 991px) {
  .pricing-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding-bottom: 50px;
  }
}

.pricing-section .pricing-item {
  padding: 10px;
  position: relative;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .pricing-section .pricing-item {
    margin-bottom: 30px;
  }
}

.pricing-section .pricing-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 165px;
  content: "";
  background: #00a77e;
  opacity: 0.102;
}

.pricing-section .pricing-item-inner {
  padding: 40px;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-item-inner {
    padding: 40px;
  }
}

@media (max-width: 1199px) {
  .pricing-section .pricing-item-inner {
    padding: 30px;
  }
}

.pricing-section .pricing-item-inner .price-wrap {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
}

.pricing-section .pricing-item-inner .price-wrap:before {
  position: absolute;
  left: -20%;
  bottom: 0;
  width: 200%;
  height: 2px;
  content: "";
  background: #DDD;
}

.pricing-section .pricing-item-inner .price-wrap .price-icon {
  padding-right: 20px;
}

.pricing-section .pricing-item-inner .price-wrap .price-icon i {
  font-size: 60px;
  color: #F1B51F;
}

.pricing-section .pricing-item-inner .price-price span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-item-inner .price-price span {
    font-size: 18px;
  }
}

.pricing-section .pricing-item-inner .price-price h3 {
  font-family: "Poppins";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pricing-section .pricing-item-inner ul {
  margin-bottom: 50px;
}

.pricing-section .pricing-item-inner ul li {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-item-inner ul li {
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .pricing-section .pricing-item-inner ul li {
    font-size: 14px;
  }
}

.pricing-section .pricing-item-inner ul li i {
  margin-right: 10px;
}

.pricing-section .pricing-item-inner ul li i.gray {
  color: #636363;
}

.pricing-section .pricing-item-inner ul li+li {
  margin-top: 28px;
}

.pricing-section .col:nth-child(2) .pricing-item:before {
  opacity: 1;
}

.pricing-section .col:nth-child(2) .pricing-item-inner {
  position: relative;
  z-index: 1;
}

.pricing-section .col:nth-child(2) .pricing-item-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #04351F;
  opacity: 0.95;
  z-index: -1;
}

.pricing-section .col:nth-child(2) .pricing-item-inner .price-wrap::before {
  background: #F1B51F;
}

.pricing-section .col:nth-child(2) .pricing-item-inner ul li {
  color: #fff;
}

.pricing-section .col:nth-child(2) .pricing-item-inner .price-price h3 {
  color: #fff;
}

.pricing-section .col:nth-child(2) .pricing-item-inner .price-price span {
  color: #fff;
}

.pricing-section .col:nth-child(2) .pricing-item-inner .price-icon i {
  color: #fff;
}

.pricing-section .col:nth-child(odd) .pricing-item .ch-btn-style-1 {
  background: transparent;
  border: 1px solid #F1B51F;
  color: #F1B51F;
}

.pricing-section .col:nth-child(odd) .pricing-item .ch-btn-style-1:before {
  background-color: #fff;
}

.pricing-section .col:nth-child(odd) .pricing-item .ch-btn-style-1:hover {
  background-color: #F1B51F;
  color: #fff;
}

/*==============================
 15. project-section
 ===============================*/
.project-section .project-filters-btn {
  max-width: 856px;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .project-section .project-filters-btn {
    margin-bottom: 40px;
  }
}

.project-section .project-filters-btn p {
  max-width: 502px;
}

.project-section .project-filters-btn ul {
  display: flex;
  flex-wrap: wrap;
}

.project-section .project-filters-btn ul li {
  margin: 10px;
}

.project-section .project-filters-btn ul li a {
  padding: 3px 10px;
  display: block;
  background: transparent;
  color: #1B1A1A;
}

@media (max-width: 1199px) {
  .project-section .project-filters-btn ul li a {
    padding: 0px 7px;
  }
}

.project-section .project-filters-btn ul li a.current {
  color: #fff;
  background: #F1B51F;
}

@media (max-width: 1199px) {
  .project-section .project-filters-btn ul li {
    margin: 10px 5px;
    font-size: 14px;
  }
}

.project-section .project-filters-btn ul li:first-child {
  margin-left: 0;
}

@media (min-width: 767px) {
  .project-section .col:nth-child(2) {
    margin-top: 30px;
  }
}

.project-section .project-item {
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
}

.project-section .project-item .project-img {
  position: relative;
}

.project-section .project-item .project-img i {
  position: absolute;
  right: 0;
  top: -150px;
  transform: translate(-50%, -50%);
  width: 53px;
  height: 53px;
  line-height: 53px;
  background: #fff;
  color: #00a77e;
  text-align: center;
  font-size: 30px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 575px) {
  .project-section .project-item .project-img i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}

.project-section .project-item .project-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(31, 33, 45, 0.8) 100%);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.project-section .project-item .project-text {
  padding: 20px 30px;
  position: absolute;
  left: 30px;
  bottom: -100%;
  transition: all 0.3s;
  background: #fff;
  border-top-right-radius: 40px;
  min-width: 400px;
}

@media (max-width: 991px) {
  .project-section .project-item .project-text {
    min-width: 300px;
    left: 15px;
  }
}

@media (max-width: 575px) {
  .project-section .project-item .project-text {
    padding: 20px 15px;
    min-width: 260px;
  }
}

.project-section .project-item .project-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #00a77e;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .project-section .project-item .project-text span {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .project-section .project-item .project-text span {
    font-size: 13px;
  }
}

.project-section .project-item .project-text h2 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1B1A1A;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .project-section .project-item .project-text h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .project-section .project-item .project-text h2 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .project-section .project-item .project-text h2 {
    font-size: 16px;
  }
}

.project-section .project-item .project-text a {
  color: #fff;
  display: inline-block;
  padding: 10px 15px;
  background: #F1B51F;
}

.project-section .project-item:hover .project-img i {
  opacity: 1;
  visibility: visible;
  top: 50px;
}

@media (max-width: 575px) {
  .project-section .project-item:hover .project-img i {
    top: 30px;
  }
}

.project-section .project-item:hover .project-img:before {
  opacity: 1;
  visibility: visible;
}

.project-section .project-item:hover .project-text {
  bottom: 30px;
}

@media (max-width: 991px) {
  .project-section .project-item:hover .project-text {
    bottom: 15px;
  }
}

.project-section .project-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding: 15px 28px;
  border-left: 3px solid #F1B51F;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .project-section .project-bottom {
    display: block;
    border: 0;
    margin-top: 20px;
    padding: 0;
  }
}

.project-section .project-bottom .text {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .project-section .project-bottom .text {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .project-section .project-bottom .text {
    display: block;
  }
}

.project-section .project-bottom p {
  font-size: 25.995px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  color: #1B1A1A;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .project-section .project-bottom p {
    font-size: 20.995px;
  }
}

.project-section .project-bottom h3 {
  font-size: 44.736px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  color: #00a77e;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .project-section .project-bottom h3 {
    font-size: 34.736px;
  }
}

.project-section .project-bottom small {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #636363;
  display: flex;
  margin-left: 30px;
}

@media (max-width: 767px) {
  .project-section .project-bottom small {
    margin-left: 0;
  }
}

.project-section .project-bottom .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .project-section .project-bottom .shape {
    display: none;
  }
}

/*==============================
 16. contact-section
 ===============================*/
.contact-section {
  position: relative;
  padding-bottom: 390px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .contact-section {
    padding-bottom: 300px;
  }
}

@media (max-width: 991px) {
  .contact-section {
    padding-bottom: 0;
  }
}

.contact-section .contact-top {
  display: flex;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .contact-section .contact-top {
    display: block;
  }
}

@media (max-width: 991px) {
  .contact-section .contact-top .contact-left img {
    width: 100%;
  }
}

.contact-section .contact-top .left-shape {
  width: 374px;
  height: 320.91px;
  background: #EFF4F9;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 11;
}

@media (max-width: 1199px) {
  .contact-section .contact-top .left-shape {
    width: 220px;
  }
}

@media (max-width: 991px) {
  .contact-section .contact-top .left-shape {
    width: 100%;
    padding: 30px;
  }
}

.contact-section .contact-top .left-shape .inner {
  width: 318px;
  height: 273px;
  display: block;
  border: 2px dashed #F1B51F;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1199px) {
  .contact-section .contact-top .left-shape .inner {
    width: 160px;
  }
}

@media (max-width: 991px) {
  .contact-section .contact-top .left-shape .inner {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .contact-section .contact-top .left-shape .inner img {
    max-width: 80px;
  }
}

.contact-section .solar-contact {
  padding-left: 360px;
}

@media (max-width: 1199px) {
  .contact-section .solar-contact {
    padding-left: 200px;
  }
}

@media (max-width: 991px) {
  .contact-section .solar-contact {
    padding-left: 0;
  }
}

.contact-section .contact-form-area {
  padding: 80px 50px 40px;
  max-width: 768px;
  margin-top: -625px;
  background: #fff;
  position: relative;
  z-index: 11;
  border-bottom: 5px solid #00a77e;
}

@media (max-width: 1199px) {
  .contact-section .contact-form-area {
    margin-top: -525px;
  }
}

@media (max-width: 991px) {
  .contact-section .contact-form-area {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .contact-section .contact-form-area {
    padding: 50px 20px 40px;
  }
}

.contact-section .contact-form-area .form-field {
  margin-bottom: 30px;
}

.contact-section .contact-form-area .ch-top-title-s2 {
  margin-bottom: 20px;
  position: relative;
}

.contact-section .contact-form-area .ch-top-title-s2 p {
  max-width: 500px;
}

.contact-section .contact-form-area .ch-top-title-s2 i {
  position: absolute;
  right: 0;
  top: -40px;
  font-size: 85px;
  color: #00a77e;
}

@media (max-width: 575px) {
  .contact-section .contact-form-area .ch-top-title-s2 i {
    display: none;
  }
}

.contact-section .contact-form-area form input,
.contact-section .contact-form-area form select,
.contact-section .contact-form-area form textarea {
  background: transparent;
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none !important;
  padding-left: 25px;
  background: #FCFCFC;
  border: 1px solid #E7E6E6;
}

@media (max-width: 991px) {

  .contact-section .contact-form-area form input,
  .contact-section .contact-form-area form select,
  .contact-section .contact-form-area form textarea {
    height: 45px;
  }
}

.contact-section .contact-form-area form input:focus,
.contact-section .contact-form-area form select:focus,
.contact-section .contact-form-area form textarea:focus {
  border-color: #F1B51F;
  background: #FCFCFC;
}

.contact-section .contact-form-area form textarea {
  height: 180px;
  padding-top: 15px;
}

.contact-section .contact-form-area form {
  overflow: hidden;
}

.contact-section .contact-form-area form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.contact-section .contact-form-area form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.contact-section .contact-form-area form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.contact-section .contact-form-area form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.contact-section .contact-form-area form select {
  display: inline-block;
  color: #636363;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: calc-rem-value(15);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #FCFCFC url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.contact-section .contact-form-area form select:focus {
  background: #FCFCFC url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.contact-section .contact-form-area form .submit-area {
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
}

.contact-section .contact-form-area form .submit-area .ch-btn-style-1,
.contact-section .contact-form-area form .submit-area .ch-btn-style-4 {
  width: 100%;
}

.contact-section .map {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 557px;
  z-index: 1;
}

@media (max-width: 991px) {
  .contact-section .map {
    position: relative;
  }
}

.contact-section .map iframe {
  width: 100%;
  height: 557px;
}

/*=================================
 17. ch-blog-area 
 ==================================*/
.ch-blog-area {
  padding-bottom: 30px;
  padding-top: 30px;
  background: #EFF4F9;
}

@media (max-width: 991px) {
  .ch-blog-area {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .ch-blog-area {
    padding-bottom: 15px;
    padding-top: 20px;
  }
}

.ch-blog-area .blog-items .blog-item {
  background: #fff;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.ch-blog-area .blog-items .blog-item .blog-img {
  overflow: hidden;
  overflow: hidden;
}

.ch-blog-area .blog-items .blog-item img {
  width: 100%;
  transform: scale(1);
  transition: all 0.6s;
}

@media (max-width: 575px) {
  .ch-blog-area .blog-items .blog-item img {
    width: 100%;
  }
}

.ch-blog-area .blog-items .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.ch-blog-area .blog-items .blog-item .blog-content {
  border: 1px solid #DDD;
  padding: 20px;
  border-top: 0;
  /* border-bottom: 0; */
  padding-top: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .ch-blog-area .blog-items .blog-item .blog-content {
    padding: 0 15px 30px;
  }
}

.ch-blog-area .blog-items .blog-item .blog-content ul {
  display: flex;
  align-items: center;
  padding: 5px;
  background: #fff;
  margin-top: -15px;
  position: relative;
  z-index: 11;
}

@media (max-width: 575px) {
  .ch-blog-area .blog-items .blog-item .blog-content ul {
    justify-content: center;
  }
}

.ch-blog-area .blog-items .blog-item .blog-content ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ch-blog-area .blog-items .blog-item .blog-content ul li span {
  display: block;
  padding: 5px 8px;
  background: #F1B51F;
  color: #fff;
  transition: all 0.3s;
}

.ch-blog-area .blog-items .blog-item .blog-content ul li+li {
  margin-left: 20px;
}

.ch-blog-area .blog-items .blog-item .blog-content ul li strong {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.ch-blog-area .blog-items .blog-item .blog-content h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* margin-top: 25px; */
  padding-top: 15px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .ch-blog-area .blog-items .blog-item .blog-content h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .ch-blog-area .blog-items .blog-item .blog-content h2 {
    margin-top: 10px;
  }
}

.ch-blog-area .blog-items .blog-item .blog-content h2 a {
  color: #1B1A1A;
}

.ch-blog-area .blog-items .blog-item .blog-content h2 a:hover {
  color: #1B1A1A;
}

.ch-blog-area .blog-items .blog-item .blog-content p {
  margin-bottom: 0;
}

.ch-blog-area .blog-items .blog-item .blog-bottom {
  padding: 30px;
  border: 1px solid #DDD;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ch-blog-area .blog-items .blog-item .blog-bottom .blog-bottom-author img {
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .ch-blog-area .blog-items .blog-item .blog-bottom {
    padding: 30px 15px;
  }
}

.ch-blog-area .blog-items .blog-item:hover {
  background: #EFF4F9;
}

.ch-blog-area .blog-items .blog-item:hover .blog-content ul li span {
  background-color: #00a77e;
}

.ch-blog-area .blog-items .blog-item:hover .ch-btn-style-3 {
  background-color: #f5821f;
  color: #fff;
  border-color: #00a77e;
}

.ch-blog-area .blog-items .blog-item:hover .ch-btn-style-3:before {
  background-color: #00a77e;
}

.ch-blog-area .blog-items .blog-item:hover .ch-btn-style-3:hover {
  border-color: #f5821f;
}

.ch-blog-area .blog-items .blog-item:hover .middle-shade:before {
  left: 0;
  right: 0;
  opacity: 0;
}

/*=================================
 18. ch-newsletter-area
 ==================================*/
.ch-newsletter-area .col {
  padding: 0;
  min-height: 100%;
}

.ch-newsletter-area .ch-newsletter-wrap {
  padding: 80px 30px;
  position: relative;
  z-index: 1;
  min-height: 320px;
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap {
    padding: 60px 30px;
    min-height: 100%;
  }
}

@media (max-width: 575px) {
  .ch-newsletter-area .ch-newsletter-wrap {
    padding: 30px 15px;
  }
}

.ch-newsletter-area .ch-newsletter-wrap .ch-newsletter-inner {
  max-width: 539px;
  margin: 0 auto;
}

@media (max-width: 1399px) {
  .ch-newsletter-area .ch-newsletter-wrap .ch-newsletter-inner {
    padding-right: 100px;
  }
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap .ch-newsletter-inner {
    padding-right: 80px;
  }
}

@media (max-width: 767px) {
  .ch-newsletter-area .ch-newsletter-wrap .ch-newsletter-inner {
    padding-right: 0;
    text-align: center;
  }
}

.ch-newsletter-area .ch-newsletter-wrap h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  color: #fff;
}

@media (max-width: 1399px) {
  .ch-newsletter-area .ch-newsletter-wrap h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap h2 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .ch-newsletter-area .ch-newsletter-wrap h2 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 40px;
  }
}

.ch-newsletter-area .ch-newsletter-wrap p {
  color: #fff;
  margin-bottom: 30px;
}

.ch-newsletter-area .ch-newsletter-wrap:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: #F1B51F;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.922;
}

.ch-newsletter-area .ch-newsletter-wrap.style-2 {
  min-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.ch-newsletter-area .ch-newsletter-wrap.style-2:before {
  background: #00a77e;
}

.ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn {
  position: absolute;
  left: -84.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 163px;
  height: 163px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn {
    width: 120px;
    height: 120px;
    left: -60px;
  }
}

@media (max-width: 767px) {
  .ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn {
    display: none;
  }
}

.ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn i {
  font-size: 80px;
  color: #F1B51F;
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn i {
    font-size: 60px;
  }
}

.ch-newsletter-area .newsletter-form .form-field {
  position: relative;
  width: 320px;
}

@media (max-width: 767px) {
  .ch-newsletter-area .newsletter-form .form-field {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .ch-newsletter-area .newsletter-form .form-field {
    width: 280px;
  }
}

.ch-newsletter-area .newsletter-form .form-field input {
  width: 320px;
  height: 50px;
  border: 1px solid #1B1A1A;
  padding: 15px;
  padding-right: 150px;
  background: #fff;
  color: #1B1A1A;
  border: 0;
}

.ch-newsletter-area .newsletter-form .form-field input:focus {
  outline: none;
  border-color: #1B1A1A;
}

@media (max-width: 575px) {
  .ch-newsletter-area .newsletter-form .form-field input {
    width: 280px;
  }
}

.ch-newsletter-area .newsletter-form .form-field button {
  height: 40px;
  width: 130px;
  background: #00a77e;
  border: 0;
  color: #fff;
  transition: all 0.3s;
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.ch-newsletter-area .newsletter-form .form-field button:hover {
  background: #1B1A1A;
  color: #fff;
}

.ch-newsletter-area.style-2 .ch-newsletter-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.ch-newsletter-area.style-2 .ch-newsletter-wrap .ch-newsletter-inner {
  max-width: 610px;
}

.ch-newsletter-area.style-2 .ch-newsletter-wrap .ch-newsletter-inner p {
  color: #FFF;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .ch-newsletter-area.style-2 .ch-newsletter-wrap .ch-newsletter-inner p {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .ch-newsletter-area.style-2 .ch-newsletter-wrap .ch-newsletter-inner p {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
19. Home-style-2
--------------------------------------------------------------*/
/*===================================
 search-area
 ====================================*/
@media (max-width: 991px) {
  .search-area {
    padding-top: 80px;
  }
}

.search-area .search-wrap {
  border: 1px solid #ddd;
  padding: 20px 30px;
  border-radius: 80px;
  background: #fff;
  margin-top: -50px;
  z-index: 11;
  position: relative;
}

@media (max-width: 991px) {
  .search-area .search-wrap {
    margin-top: 0;
  }
}

.search-area .search-wrap .search-item {
  position: relative;
  z-index: 990;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .search-area .search-wrap .search-item {
    padding-left: 0;
  }
}

.search-area .search-wrap .search-item:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 49px;
  background: #ddd;
  content: "";
  z-index: 11;
}

@media (max-width: 767px) {
  .search-area .search-wrap .search-item:before {
    display: none;
  }
}

.search-area .search-wrap .search-item select {
  width: 100%;
}

.search-area .search-wrap .search-item input {
  width: 100%;
  border: 0;
  height: 50px;
  padding: 15px;
  font-size: 16px;
}

.search-area .search-wrap .search-item input:focus {
  outline: none;
}

.search-area .search-wrap .search-item .form-field {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.search-area .search-wrap .search-item .nice-select {
  width: 173px;
  border: 0;
  font-size: 16px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .search-area .search-wrap .search-item .nice-select {
    width: 100%;
  }
}

.search-area .search-wrap .search-item .nice-select .list {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .search-area .search-wrap .search-item .nice-select .list {
    margin-top: 0;
  }
}

.search-area .search-wrap .search-item .nice-select:after {
  height: 10px;
  width: 10px;
  margin-top: -7px;
}

.search-area .search-wrap .search-item .nice-select.open:after {
  border-color: #00a77e;
}

.search-area .search-wrap .search-item.search-btn {
  text-align: right;
  z-index: 9;
}

@media (max-width: 991px) {
  .search-area .search-wrap .search-item.search-btn {
    text-align: center;
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .search-area .search-wrap .search-item.search-btn {
    margin-top: 20px;
  }
}

.search-area .search-wrap .search-item.search-btn .ch-btn-style-1 {
  border-radius: 40px;
}

.search-area .search-wrap .search-item.search-btn .ch-btn-style-1 i {
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.search-area .search-wrap .col:first-child .search-item:before,
.search-area .search-wrap .col:last-child .search-item:before {
  display: none;
}

.search-area .search-wrap .col:nth-child(1) .search-item {
  z-index: 9901;
}

.search-area .search-wrap .col:nth-child(1) .search-item .nice-select {
  margin: 0;
}

.search-area .search-wrap .col:nth-child(2) .search-item {
  z-index: 992;
}

/*===================================
 06. features-area
 ====================================*/
.features-area-s2 {
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .features-area-s2 {
    padding-bottom: 20px;
  }
}

.features-area-s2 .features-wrap {
  background: none;
  box-shadow: none;
}

.features-area-s2 .features-wrap .features-item {
  display: block;
  text-align: center;
  border: 1px solid #ddd;
  overflow: hidden;
  position: relative;
  padding: 50px 30px;
  transition: all 0.3s;
  background: url(../images/features-bg.jpg);
  z-index: 1;
  transition: all 0.4s;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .features-area-s2 .features-wrap .features-item {
    padding: 40px 15px;
  }
}

.features-area-s2 .features-wrap .features-item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(352deg, #000 -17.24%, #00a77e 117.24%);
  opacity: 0.902;
  z-index: -1;
  z-index: -11;
}

.features-area-s2 .features-wrap .features-item:before {
  position: absolute;
  right: -43px;
  top: -43px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ddd;
  border-radius: 50%;
  content: "";
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .icon {
  margin-bottom: 20px;
}

.features-area-s2 .features-wrap .features-item .icon i {
  font-size: 60px;
  color: #F1B51F;
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .features-text h3 a {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1B1A1A;
}

@media (max-width: 1199px) {
  .features-area-s2 .features-wrap .features-item .features-text h3 a {
    font-size: 20px;
  }
}

.features-area-s2 .features-wrap .features-item .features-text h3 a:hover {
  color: #00a77e;
}

.features-area-s2 .features-wrap .features-item .features-text p {
  margin-bottom: 0;
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .number {
  position: absolute;
  right: 10px;
  top: 0;
}

.features-area-s2 .features-wrap .features-item .number h4 {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-family: Rubik;
  font-size: 55.493px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  z-index: 11;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.features-area-s2 .features-wrap .features-item .bottom-btn {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .bottom-btn a {
  padding: 10px;
  background: #F1B51F;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-area-s2 .features-wrap .features-item:hover {
  overflow: unset;
}

.features-area-s2 .features-wrap .features-item:hover .number h4 {
  opacity: 1;
  visibility: visible;
}

.features-area-s2 .features-wrap .features-item:hover .features-text h3 a {
  color: #fff;
}

.features-area-s2 .features-wrap .features-item:hover .features-text p {
  color: #fff;
}

.features-area-s2 .features-wrap .features-item:hover .icon i {
  color: #fff;
}

.features-area-s2 .features-wrap .features-item:hover .overlay {
  height: 0;
}

.features-area-s2 .features-wrap .features-item:hover:before {
  display: none;
}

.features-area-s2 .features-wrap .features-item:hover .bottom-btn {
  opacity: 1;
  visibility: visible;
  bottom: -42px;
}

.about-area.style-2 {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

@media (max-width: 1199px) {
  .about-area.style-2 {
    padding-bottom: 120px;
  }
}

.about-area.style-2 .right-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: 450px;
}

@media (max-width: 1199px) {
  .about-area.style-2 .right-img {
    max-width: 250px;
  }
}

@media (max-width: 991px) {
  .about-area.style-2 .about-left-item {
    padding-top: 0;
  }
}

@media(max-width:767px) {
  .ab-shape {
    display: none;
  }
}

@media (max-width: 575px) {
  .about-area.style-2 .about-left-item {
    padding-bottom: 0px;
  }
}

.about-area.style-2 .about-right-text h2 {
  margin-bottom: 10px;
}

.about-area.style-2 .about-image {
  position: relative;
  z-index: 1;
}

.about-area.style-2 .about-image .ab-shape {
  position: absolute;
  left: -50px;
  top: -50px;
  z-index: -1;
}

.about-area.style-2 .about-image .ab-shape img {
  animation: bounceLeftToRight 4s infinite;
}

.about-area.style-2 .about-image .about-image-wrap {
  display: flex;
  position: absolute;
  left: -127px;
  bottom: -80px;
  align-items: flex-end;
}

.about-area.style-2 .about-image .about-btm {
  display: flex;
  background: #00a77e;
  padding: 20px 30px;
  padding-right: 60px;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-image .about-btm {
    padding: 10px;
  }
}

.about-area.style-2 .about-image .about-btm i {
  color: #fff;
  font-size: 50px;
  margin-right: 20px;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-image .about-btm i {
    font-size: 40px;
    margin-right: 10px;
  }
}

.about-area.style-2 .about-image .about-btm .about-btm-text span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-image .about-btm .about-btm-text span {
    font-size: 13px;
  }
}

.about-area.style-2 .about-image .about-btm .about-btm-text h4 {
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-image .about-btm .about-btm-text h4 {
    font-size: 18px;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #ddd;  
  margin-bottom: 10px; */
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-list {
    padding-bottom: 10px;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap .about-list h5 {
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-list h5 {
    font-size: 16px;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap .about-list ul {
  display: block;
  padding-top: 10px;
}

.about-area.style-2 .about-right-item .about-list-wrap .about-list ul li {
  margin-bottom: 10px;
  text-align: justify;
}

.about-area.style-2 .about-right-item .about-list-wrap .about-exprience {
  border-right: 1px solid #ddd;
  padding-right: 10px;
  margin-right: 20px;
  padding: 0px 15px 15px 0px;
  padding-top: 0;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-exprience {
    margin-right: 10px;
    padding: 0;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap .about-exprience .about-exprience-inner {
  /* transform: rotate(270deg); */
  text-align: center;
}

.about-area.style-2 .about-right-item .about-list-wrap .about-exprience span {
  font-size: 21.916px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1B1A1A;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-exprience span {
    font-size: 15.916px;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap .about-exprience h3 {
  font-size: 70.947px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 3px #00a77e;
  margin-bottom: -15px;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-exprience h3 {
    font-size: 40.947px;
    line-height: 40px;
    margin-bottom: 0px;
  }
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-bottom {
    display: block;
  }
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-bottom .about-bottom-btn {
    margin-bottom: 20px;
  }
}

.about-area.style-2 .about-right-item .about-bottom .about-bottom-btn .about-bottom-btn-author {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.about-area.style-2 .about-right-item .about-bottom .about-bottom-btn .about-bottom-btn-author img {
  border-radius: 50%;
  padding: 3px;
  border: 1px solid #00a77e;
  margin-right: 15px;
}

.about-area.style-2 .about-right-item .about-bottom .about-bottom-btn .about-bottom-btn-author h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.about-area.style-2 .about-right-item .about-bottom .about-bottom-btn .about-bottom-btn-author h5 span {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.service-area-2 {
  background: #EFF4F9;
  padding-bottom: 40px;
  padding-top: 60px;
}

@media (max-width: 991px) {
  .service-area-2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .service-area-2 {
    padding-bottom: 10px;
  }
}

.service-area-2 .service-item {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
}

.service-area-2 .service-item .service-item-wrap {
  display: flex;
  align-items: center;
}

@media (max-width: 490px) {
  .service-area-2 .service-item .service-item-wrap {
    display: block;
  }
}

.service-area-2 .service-item .service-item-wrap .service-img {
  flex-basis: 50%;
  overflow: hidden;
  border-top-right-radius: 10px;
}

.service-area-2 .service-item .service-item-wrap .service-img img {
  transition: all 0.3s;
  width: 100%;
  transform: scale(1);
  border-top-right-radius: 10px;
}

.service-area-2 .service-item .service-item-wrap .service-text {
  padding: 30px 30px;
  flex-basis: 50%;
}

@media (max-width: 1199px) {
  .service-area-2 .service-item .service-item-wrap .service-text {
    padding: 20px 20px;
  }
}

.service-area-2 .service-item .service-item-wrap .service-text p {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .service-area-2 .service-item .service-item-wrap .service-text p {
    font-size: 14px;
  }
}

.service-area-2 .service-item .service-item-wrap .service-text .icon {
  margin-bottom: 10px;
}

.service-area-2 .service-item .service-item-wrap .service-text .icon i {
  font-size: 60px;
  color: #00a77e;
}

.service-area-2 .service-item .service-item-wrap .service-text h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1199px) {
  .service-area-2 .service-item .service-item-wrap .service-text h3 {
    font-size: 18px;
  }
}

.service-area-2 .service-item .service-item-wrap .service-text h3 a {
  color: #1B1A1A;
}

.service-area-2 .service-item .service-btm {
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  border-top: 1px solid #E3E3E3;
  align-items: center;
}

@media (max-width: 1199px) {
  .service-area-2 .service-item .service-btm {
    padding: 20px 20px;
  }
}

@media (max-width: 450px) {
  .service-area-2 .service-item .service-btm {
    flex-wrap: wrap;
  }
}

.service-area-2 .service-item .service-btm ul {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 450px) {
  .service-area-2 .service-item .service-btm ul {
    margin-bottom: 5px;
  }
}

.service-area-2 .service-item .service-btm ul li i {
  margin-right: 5px;
  color: #00a77e;
}

.service-area-2 .service-item .service-btm ul li+li {
  margin-left: 10px;
}

.service-area-2 .service-item .service-btm a {
  color: #363636;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
}

.service-area-2 .service-item .service-btm a:hover {
  color: #00a77e;
}

.service-area-2 .service-item .service-btm a i {
  margin-top: 2px;
}

.service-area-2 .service-item:hover .service-item-wrap .service-img img {
  transform: scale(1.2);
}

.service-area-2 .service-item:hover .middle-shade:before {
  left: 0;
  right: 0;
  opacity: 0;
}

.ch-skill-area {
  position: relative;
  z-index: 1;
  margin-bottom: 144px;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .ch-skill-area {
    margin-bottom: 0;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .ch-skill-area {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
}

.ch-skill-area::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(1, 34, 19, 0.9);
  z-index: -1;
  z-index: -11;
}

.ch-skill-area .ch-skill-left {
  max-width: 533px;
}

.ch-skill-area .ch-skill-left .ch-top-title {
  text-align: left;
}

.ch-skill-area .ch-skill-left .ch-top-title h2 {
  margin-bottom: 20px;
}

.ch-skill-area .ch-skill-left .ch-top-title p {
  color: #fff;
}

.ch-skill-area .ch-skill-left .progress-single {
  margin-bottom: 20px;
  position: relative;
}

.ch-skill-area .ch-skill-left .progress-single h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  color: #fff;
}

.ch-skill-area .ch-skill-left .progress-single .progress {
  background: transparent;
  height: 8px;
  position: relative;
  border: 1px solid #F1B51F;
}

.ch-skill-area .ch-skill-left .progress-single .progress .progress-bar {
  background-color: #F1B51F;
  height: 4px;
  position: relative;
  top: 1px;
  left: 2px;
  border-radius: 5px;
}

.ch-skill-area .ch-skill-left .progress-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .ch-skill-area .ch-skill-left .progress-number {
    font-size: 18px;
  }
}

.ch-skill-area .contact-form-area {
  padding: 20px;
  max-width: 768px;
  margin-bottom: -148px;
  background: #fff;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .ch-skill-area .contact-form-area {
    margin-bottom: 20px;
    margin-top: 40px;
  }
}

.ch-skill-area .contact-form-area .contact-form-area-inner {
  border: 1px solid #ddd;
  border-bottom: 5px solid #00a77e;
  padding: 80px 50px 40px;
}

@media (max-width: 575px) {
  .ch-skill-area .contact-form-area .contact-form-area-inner {
    padding: 50px 20px 40px;
  }
}

.ch-skill-area .contact-form-area .form-field {
  margin-bottom: 21px;
}

.ch-skill-area .contact-form-area .ch-top-title-s2 {
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.ch-skill-area .contact-form-area form input,
.ch-skill-area .contact-form-area form select,
.ch-skill-area .contact-form-area form textarea {
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none !important;
  padding-left: 25px;
  background: #FCFCFC;
  border: 1px solid #E7E6E6;
}

@media (max-width: 991px) {

  .ch-skill-area .contact-form-area form input,
  .ch-skill-area .contact-form-area form select,
  .ch-skill-area .contact-form-area form textarea {
    height: 45px;
  }
}

.ch-skill-area .contact-form-area form input:focus,
.ch-skill-area .contact-form-area form select:focus,
.ch-skill-area .contact-form-area form textarea:focus {
  border-color: #F1B51F;
  background: #FCFCFC;
}

.ch-skill-area .contact-form-area form textarea {
  height: 180px;
  padding-top: 15px;
}

.ch-skill-area .contact-form-area form {
  overflow: hidden;
}

.ch-skill-area .contact-form-area form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.ch-skill-area .contact-form-area form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.ch-skill-area .contact-form-area form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.ch-skill-area .contact-form-area form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.ch-skill-area .contact-form-area form select {
  display: inline-block;
  color: #636363;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: calc-rem-value(15);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #FCFCFC url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.ch-skill-area .contact-form-area form select:focus {
  background: #FCFCFC url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.ch-skill-area .contact-form-area form .submit-area {
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
}

.ch-skill-area .contact-form-area form .submit-area .ch-btn-style-1,
.ch-skill-area .contact-form-area form .submit-area .ch-btn-style-4 {
  width: 100%;
}

.ch-skill-area .skill-bottom {
  background: #EFF4F9;
  display: flex;
  margin-bottom: -150px;
}

@media (max-width: 991px) {
  .ch-skill-area .skill-bottom {
    margin: 0;
  }
}

@media (max-width: 575px) {
  .ch-skill-area .skill-bottom {
    display: block;
  }
}

.ch-skill-area .skill-bottom .skill-bottom-item {
  padding: 40px;
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .ch-skill-area .skill-bottom .skill-bottom-item {
    padding: 20px;
  }
}

.ch-skill-area .skill-bottom .skill-bottom-item:last-child {
  border-left: 2px solid #ddd;
}

@media (max-width: 575px) {
  .ch-skill-area .skill-bottom .skill-bottom-item:last-child {
    border-left: 0;
    border-top: 2px solid #ddd;
  }
}

.ch-skill-area .skill-bottom .skill-bottom-item .skill-icon {
  width: 60px;
  height: 59.84px;
  line-height: 82.84px;
  background: #00a77e;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

.ch-skill-area .skill-bottom .skill-bottom-item .skill-icon i {
  color: #fff;
  font-size: 30px;
}

.ch-skill-area .skill-bottom .skill-bottom-item .skill-text h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1199px) {
  .ch-skill-area .skill-bottom .skill-bottom-item .skill-text h4 {
    font-size: 18px;
  }
}

.ch-skill-area .skill-bottom .skill-bottom-item:hover .skill-icon {
  background: #F1B51F;
}

.project-section.style-2 .project-container .col:nth-child(2) {
  margin-top: 0px;
}

.project-section.style-2 .project-container .project-item {
  margin-top: 0;
  transition: all 0.3s;
}

.project-section.style-2 .project-container .project-item .project-img img {
  width: 100%;
}

.project-section.style-2 .project-container .project-item .project-text {
  bottom: -70px;
  border-radius: 0;
}

.project-section.style-2 .project-container .project-item:hover .project-text {
  bottom: 0px;
  border-top-right-radius: 40px;
}

.brand-section.style-2 {
  background: #EFF4F9;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .brand-section.style-2 {
    padding: 50px 0;
  }
}

.brand-section.style-2 .partner-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  text-align: center;
}

.brand-section.style-2 .partner-title h2 {
  font-family: Rubik;
  font-size: 135.86px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1199px) {
  .brand-section.style-2 .partner-title h2 {
    font-size: 100.86px;
  }
}

@media (max-width: 991px) {
  .brand-section.style-2 .partner-title h2 {
    font-size: 86px;
  }
}

@media (max-width: 767px) {
  .brand-section.style-2 .partner-title h2 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .brand-section.style-2 .partner-title h2 {
    font-size: 40px;
  }
}

.testimonial-section.style-2 {
  padding-bottom: 180px;
}

@media (max-width: 991px) {
  .testimonial-section.style-2 {
    padding-bottom: 150px;
  }
}

@media (max-width: 767px) {
  .testimonial-section.style-2 {
    padding-bottom: 120px;
  }
}

.testimonial-section.style-2::before {
  display: none;
}

.testimonial-section.style-2 .testimonial-items .owl-stage-outer {
  margin: -15px;
}

.testimonial-section.style-2 .testimonial-items .owl-stage {
  margin: 15px;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item {
  position: relative;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.03);
  padding: 45px 0;
  overflow: hidden;
  border: 1px dashed transparent;
  transition: all 0.3s;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .dots-shape {
  position: absolute;
  right: 0;
  top: 0;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .testimonial-text p {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  line-height: 26px;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .quote {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .quote i {
  font-size: 60px;
  color: #ECECEC;
  transition: all 0.3s;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item::before {
  position: absolute;
  left: -110px;
  top: -110px;
  width: 162px;
  height: 162px;
  background: #57B23E;
  opacity: 0.071;
  border-radius: 50%;
  content: "";
  transition: all 0.3s;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item::after {
  position: absolute;
  left: -90px;
  top: -90px;
  width: 162px;
  height: 162px;
  background: #57B23E;
  opacity: 0.071;
  border-radius: 50%;
  content: "";
  transition: all 0.3s;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .info-item {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .testimonial-section.style-2 .testimonial-items .testimonial-item .info-item {
    flex-wrap: wrap;
  }
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .info-item .info-img {
  bottom: 0;
  margin-right: 10px;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .info-text .info-text-bio {
  display: flex;
  align-items: center;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .info-text .info-text-bio h4 {
  margin-top: 0;
}

@media (max-width: 575px) {
  .testimonial-section.style-2 .testimonial-items .testimonial-item .info-text .info-text-bio h4 {
    font-size: 18px;
  }
}

.testimonial-section.style-2 .testimonial-items .testimonial-item:hover {
  border-color: #F1B51F;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item:hover::before {
  opacity: 0.478;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item:hover::after {
  opacity: 0.478;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item:hover .quote i {
  font-size: 60px;
  color: #F1B51F;
}

@media (max-width: 1199px) {
  .testimonial-section.style-2 .testimonial-items .testimonial-item .testimonial-item-inner {
    box-shadow: none;
  }
}

.choose-area-s2 {
  position: relative;
  z-index: 1;
}

.choose-area-s2 .right-vector {
  position: absolute;
  right: 39px;
  bottom: 44px;
}

@media (max-width: 575px) {
  .choose-area-s2 .right-vector {
    display: none;
  }
}

.choose-area-s2 .right-vector img {
  animation: bounceLeftToRight 4s infinite;
}

.choose-area-s2 .col {
  padding: 0;
}

.choose-area-s2 .choose-img {
  position: relative;
}

.choose-area-s2 .choose-img img {
  min-height: 855px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .choose-area-s2 .choose-img img {
    min-height: 100%;
  }
}

.choose-area-s2 .choose-img .choose-open-video {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.choose-area-s2 .choose-img .choose-open-video .open-video {
  display: block;
  width: 84px;
  height: 84px;
  background: #fff;
  text-align: center;
  line-height: 92px;
  color: #F1B51F;
  font-size: 50px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #fff;
  z-index: 1;
}

.choose-area-s2 .choose-img .choose-open-video .open-video::before {
  content: " ";
  width: 130%;
  height: 130%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: -12px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  z-index: -1;
}

.choose-area-s2 .choose-text {
  max-width: 712px;
  padding: 75px 0;
  padding-left: 85px;
  padding-right: 15px;
}

@media (max-width: 1199px) {
  .choose-area-s2 .choose-text {
    padding-left: 25px;
  }
}

@media (max-width: 991px) {
  .choose-area-s2 .choose-text {
    padding-left: 15px;
    padding-top: 80px;
  }
}

@media (max-width: 575px) {
  .choose-area-s2 .choose-text {
    padding: 70px 15px;
  }
}

.choose-area-s2 .choose-text p {
  max-width: 502px;
}

.choose-area-s2 .choose-text .ch-top-title-s2 {
  margin-bottom: 40px;
}

.choose-area-s2 .choose-text .choose-items {
  padding-bottom: 40px;
}

.choose-area-s2 .choose-text .choose-items .info {
  padding: 25px 22px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  border: 1px solid #DDDDDD;
  margin-left: -1px;
  margin-top: -1px;
  flex-basis: 50%;
  background: #fff;
}

@media (max-width: 1199px) {
  .choose-area-s2 .choose-text .choose-items .info {
    padding: 25px 12px;
  }
}

@media (max-width: 480px) {
  .choose-area-s2 .choose-text .choose-items .info {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}

.choose-area-s2 .choose-text .choose-items .info:after {
  position: absolute;
  left: 2%;
  top: 5%;
  width: 0;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.choose-area-s2 .choose-text .choose-items .info i {
  display: block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #F1B51F;
  text-align: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

@media (max-width: 480px) {
  .choose-area-s2 .choose-text .choose-items .info i {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.choose-area-s2 .choose-text .choose-items .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area-s2 .choose-text .choose-items .info p {
    font-size: 14px;
  }
}

.choose-area-s2 .choose-text .choose-items .info h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area-s2 .choose-text .choose-items .info h3 {
    font-size: 18px;
  }
}

.choose-area-s2 .choose-text .choose-items .info:hover:after {
  width: 95%;
}

.choose-area-s2 .choose-text .choose-items .info:hover i {
  background-color: #00a77e;
}

.team-area {
  background: #EFF4F9;
}

.team-area .team-wrap {
  padding-bottom: 0px;
}

.team-area .team-item {
  padding: 38px 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.team-area .team-item .back-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  clip-path: polygon(0 0, 24% 0, 100% 100%, 0% 100%);
}

.team-area .team-item .back-shape::before {
  position: absolute;
  left: -80px;
  top: -80px;
  width: 218px;
  height: 218px;
  background: #f5821f;
  border-radius: 50%;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.team-area .team-item .back-shape::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 218px;
  height: 218px;
  background: #00a77e;
  border-radius: 50%;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.team-area .team-item .team-img {
  position: relative;
}

.team-area .team-item .team-text {
  position: absolute;
  right: -30px;
  bottom: 30px;
  padding: 15px 36px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 5px 29px rgba(0, 0, 0, 0.04);
}

.team-area .team-item .team-text h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

.team-area .team-item .team-text h3 a {
  color: #1B1A1A;
}

.team-area .team-item .team-text h3 a:hover {
  color: #00a77e;
}

.team-area .team-item .team-text::before {
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  line-height: 22px;
  content: "\e61a";
  background: #f5821f;
  border-radius: 50%;
  font-family: "themify";
  font-size: 10px;
  color: #fff;
  transition: all 0.3s;
}

.team-area .owl-item.active.center .team-item .back-shape::before {
  opacity: 1;
  visibility: visible;
}

.team-area .owl-item.active.center .team-item .back-shape::after {
  opacity: 1;
  visibility: visible;
}

.team-area .owl-item.active.center .team-item .team-text::before {
  background-color: #00a77e;
  content: "\e622";
}

.team-area .team-item:hover .back-shape::before {
  opacity: 1;
  visibility: visible;
}

.team-area .team-item:hover .back-shape::after {
  opacity: 1;
  visibility: visible;
}

.team-area .team-item:hover .team-text::before {
  background-color: #00a77e;
  content: "\e622";
}

.team-area .owl-nav {
  display: none;
}

.team-area .owl-dots {
  text-align: center;
  bottom: 0px;
  position: absolute;
  width: 100%;
}

.team-area .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .team-area .owl-dots button {
    width: 8px;
    height: 12px;
  }
}

.team-area .owl-dots button.active {
  background: #F1B51F;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .team-area .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

.work-area .work-item {
  text-align: center;
  background: red;
  margin-top: 105px;
  padding: 40px 30px;
  transition: all 0.3s;
  background: url(../images/features-bg.jpg);
  z-index: 1;
  transition: all 0.4s;
  position: relative;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .work-area .work-item {
    padding: 40px 20px;
  }
}

.work-area .work-item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  opacity: 0.8;
  z-index: -1;
  z-index: -11;
  border-radius: 20px;
}

.work-area .work-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #EFF4F9;
  z-index: -1;
  transition: all 0.3s;
  content: "";
  border-radius: 18px;
}

.work-area .work-item:hover:before {
  width: 0;
}

.work-area .work-item .work-img {
  border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.07);
  width: 206px;
  height: 206px;
  margin: 0 auto;
  margin-top: -50px;
  position: relative;
  top: -103px;
  background: #fff;
  padding: 5px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .work-area .work-item .work-img {
    width: 126px;
    height: 126px;
    top: -63px;
  }
}

.work-area .work-item .work-img img {
  border-radius: 50%;
  width: 100%;
}

.work-area .work-item .work-text {
  margin-top: -90px;
}

@media (max-width: 1199px) {
  .work-area .work-item .work-text {
    margin-top: -43px;
  }
}

@media (max-width: 991px) {
  .work-area .work-item .work-text {
    top: 0px;
  }
}

.work-area .work-item .work-text h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .work-area .work-item .work-text h3 {
    font-size: 18px;
  }
}

.work-area .work-item .work-text p {
  margin-bottom: 0;
  transition: all 0.3s;
}

.work-area .work-item .number {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  z-index: 11;
  background: #00a77e;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  transition: all 0.3s;
}

.work-area .work-item .number span {
  color: #FFF;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.work-area .work-item:hover:before {
  width: 0;
}

.work-area .work-item:hover .work-img {
  top: -115px;

}

.work-area {
  padding-top: 60px;
}

@media (max-width: 1199px) {
  .work-area .work-item:hover .work-img {
    top: -70px;
  }
}

.work-area .work-item:hover .work-text h3 {
  color: #fff;
}

.work-area .work-item:hover .work-text p {
  color: #fff;
}

.work-area .work-item:hover .number {
  background-color: #f5821f;
}

.work-area .work-item:hover .middle-shade:before {
  left: 0;
  right: 0;
  opacity: 0;
}

.work-area .col {
  position: relative;
}

.work-area .col::before {
  position: absolute;
  right: -30px;
  top: 0;
  content: "";
  background: url(../images/work/arrow.png);
  width: 111px;
  height: 71px;
}

@media (max-width: 991px) {
  .work-area .col::before {
    display: none;
  }
}

.work-area .col:nth-child(even) {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .work-area .col:nth-child(even) {
    margin-top: 0;
  }
}

.work-area .col:nth-child(even)::before {
  transform: rotate(330deg);
  top: -20px;
}

.work-area .col:last-child::before {
  display: none;
}

.video-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.video-area:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #02020A;
  opacity: 0.831;
  content: "";
  z-index: -1;
}

.video-area .ch-top-title-s2 {
  padding: 100px 0 0;
}

.video-area .ch-top-title-s2 h2 {
  color: #fff;
}

.video-area .ch-top-title-s2 p {
  color: #fff;
  margin-bottom: 30px;
}

.video-area .video-right-img {
  margin-bottom: -150px;
  padding-top: 50px;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .video-area .video-right-img {
    padding-top: 0;
  }
}

@media (max-width: 1199px) {
  .video-area .video-right-img img {
    max-width: 360px;
  }
}

@media (max-width: 1024px) {
  .video-area .video-right-img img {
    max-width: 300px;
  }
}

.video-area .video-right-img .open-video {
  width: 102px;
  height: 102px;
  line-height: 102px;
  border-radius: 50%;
  display: block;
  background: #00a77e;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 40px;
  position: relative;
  right: -50px;
  top: -50px;
}

.video-area .video-right-img .open-video:before {
  border: 1px solid #00a77e;
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  animation: animated-border 1500ms ease-out infinite;
}

@media (max-width: 1399px) {
  .video-area .video-right-img .open-video {
    right: -10px;
  }
}

@media (max-width: 1024px) {
  .video-area .video-right-img .open-video {
    right: 0;
  }
}

@media (max-width: 575px) {
  .video-area .video-right-img .open-video {
    display: none;
  }
}

.video-area .video-right-img .open-video i {
  position: relative;
  right: -3px;
}

.video-area .shape1 {
  position: absolute;
  left: -100px;
  top: -100px;
  width: 212px;
  height: 212px;
  background: #00a77e;
  border-radius: 50%;
  border: 10px solid #fff;
  z-index: -1;
}

@media (max-width: 1199px) {
  .video-area .shape1 {
    width: 125px;
    height: 125px;
    left: -60px;
    top: -60px;
  }
}

.video-area .shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1199px) {
  .video-area .shape2 {
    display: none;
  }
}

.video-area .shape2 span {
  display: block;
  width: 212px;
  height: 212px;
  background: #00a77e;
  opacity: 0.659;
  border-radius: 50%;
  position: absolute;
  left: -80px;
  bottom: -50px;
  z-index: 1;
}

.video-area .shape2 span:nth-child(2) {
  left: -180px;
  bottom: -100px;
  z-index: -1;
}

.video-area .shape2 span:nth-child(3) {
  left: -120px;
  bottom: 20px;
  z-index: -1;
}

/*--------------------------------------------------------------
20. Home-style-3
--------------------------------------------------------------*/
.search-area.style-2 .search-wrap {
  margin-top: 0;
  border: 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 30px 40px;
}

@media (max-width: 767px) {
  .search-area.style-2 .search-wrap {
    padding: 30px 20px;
  }
}

.search-area.style-2 .search-wrap h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.search-area.style-2 .search-wrap .search-item {
  padding-left: 0;
}

@media (max-width: 767px) {
  .search-area.style-2 .search-wrap .search-item {
    margin-bottom: 20px;
  }
}

.search-area.style-2 .search-wrap .search-item::before {
  display: none;
}

.search-area.style-2 .search-wrap .search-item input,
.search-area.style-2 .search-wrap .search-item .nice-select {
  background: #EFF4F9;
  height: 55px;
  line-height: 55px;
  border-radius: 0;
  width: 100%;
}

.search-area.style-2 .search-wrap .search-item .nice-select:after {
  right: 20px;
}

.search-area.style-2 .search-wrap .search-item .ch-btn-style-1 {
  border-radius: 0;
  padding: 18px 45px;
}

.about-area.style-3 {
  position: relative;
}

.about-area.style-3 .right-img {
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .about-area.style-3 .right-img {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item {
    padding-bottom: 0;
    padding-top: 0;
  }
}

.about-area.style-3 .about-left-item .about-img {
  position: relative;
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item .about-img {
    padding-left: 30px;
  }
}

.about-area.style-3 .about-left-item .about-img img {
  border-top-right-radius: 200px;
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item .about-img img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .about-area.style-3 .about-left-item .about-img img {
    border-top-right-radius: 100px;
  }
}

.about-area.style-3 .about-left-item .about-img:before {
  position: absolute;
  left: -50px;
  top: 40px;
  width: 200px;
  height: 40%;
  content: "";
  background: #F1B51F;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item .about-img:before {
    left: 0;
    height: 35%;
  }
}

.about-area.style-3 .about-left-item .about-img:after {
  position: absolute;
  left: -50px;
  bottom: 40px;
  width: 200px;
  height: 40%;
  content: "";
  background: #00a77e;
  z-index: -1;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item .about-img:after {
    left: 0;
    height: 35%;
  }
}

.about-area.style-3 .about-left-item .about-img .about-img-inner {
  position: absolute;
  right: 0;
  top: 0;
}

.about-area.style-3 .about-left-item .about-img .about-img-inner img {
  border-radius: 50%;
}

.about-area.style-3 .about-left-item .about-img .about-img-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1B1A1A;
  opacity: 0.5;
  border-radius: 50%;
}

.about-area.style-3 .about-left-item .about-img .about-img-inner:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 10px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.about-area.style-3 .about-left-item .about-img .about-img-inner .open-video {
  display: block;
  width: 55px;
  height: 55px;
  background: #fff;
  text-align: center;
  line-height: 55px;
  color: #00a77e;
  font-size: 20px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #fff;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-area.style-3 .about-left-item .about-img .about-img-inner .open-video::before {
  content: " ";
  width: 130%;
  height: 130%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: -8px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  z-index: -1;
}

.about-area.style-3 .about-bottom {
  padding-top: 15px;
}

.brand-section.style-3 {
  border-top: 1px solid #ddd;
  padding: 80px 0;
}

.service-area.style-3 {
  z-index: 1;
}

.service-area.style-3 .top-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 505px;
  z-index: -1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .service-area.style-3 .top-bg {
    height: 435px;
  }
}

.service-area.style-3 .top-bg .flower {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 991px) {
  .service-area.style-3 .top-bg .flower {
    display: none;
  }
}

.service-area.style-3 .service-wrap .service-item {
  padding-top: 0;
  border-bottom: 0;
}

.service-area.style-3 .service-wrap .service-item .service-text {
  padding-top: 30px;
}

.service-area.style-3 .service-wrap .service-item .service-text h3 {
  margin-top: 0;
}

.service-area.style-3 .service-wrap .service-item .service-text .read-more {
  margin: 0 auto;
  margin-bottom: -22px;
  display: block;
  max-width: 130px;
}

.service-area.style-3 .service-wrap .service-item .service-text .icon {
  position: relative;
  z-index: 11;
  top: auto;
  margin-bottom: 0;
  bottom: -42.5px;
}

.service-area.style-3 .service-wrap .owl-dots {
  bottom: -25px;
}

.choose-area-s3 {
  position: relative;
  z-index: 1;
}

.choose-area-s3 .choose-img {
  position: relative;
  right: -50px;
}

@media (max-width: 991px) {
  .choose-area-s3 .choose-img {
    right: 0;
    padding-top: 30px;
  }
}

.choose-area-s3 .choose-img img {
  border-radius: 50%;
}

@media (max-width: 991px) {
  .choose-area-s3 .choose-img img {
    min-height: 100%;
  }
}

.choose-area-s3 .choose-img .inner-img-1 {
  position: absolute;
  /* right: -50px; */
  right: -25px;
  top: 0;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-img .inner-img-1 {
    max-width: 150px;
    right: 30px;
  }
}

@media (max-width: 575px) {
  .choose-area-s3 .choose-img .inner-img-1 {
    max-width: 120px;
  }
}

.choose-area-s3 .choose-img .inner-img-2 {
  position: absolute;
  left: 0;
  /* bottom: -50px; */
  bottom: -25px;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-img .inner-img-2 {
    max-width: 150px;
    bottom: -10px;
  }
}

@media (max-width: 991px) {
  .choose-area-s3 .choose-img .inner-img-2 {
    bottom: -10px;
  }
}

@media (max-width: 575px) {
  .choose-area-s3 .choose-img .inner-img-2 {
    max-width: 120px;
  }
}

.choose-area-s3 .choose-img .inner-img-3 {
  position: absolute;
  /* right: -30px;
  bottom: -30px; */
  right: -15px;
  bottom: -5px;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-img .inner-img-3 {
    max-width: 150px;
    bottom: -10px;
  }
}

@media (max-width: 991px) {
  .choose-area-s3 .choose-img .inner-img-3 {
    right: 0px;
    bottom: -10px;
  }
}

@media (max-width: 575px) {
  .choose-area-s3 .choose-img .inner-img-3 {
    max-width: 120px;
  }
}

.choose-area-s3 .choose-text p {
  /* max-width: 502px; */
}

.choose-area-s3 .choose-text .ch-top-title-s2 {
  margin-bottom: 40px;
}

.choose-area-s3 .choose-text .choose-items {
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}

.choose-area-s3-02 .choose-text .choose-items {
  display: block;
}

.choose-area-s3-02 .choose-text .ch-top-title-s2 {
  margin-bottom: 10px !important;

}

.choose-area-s3-02 .choose-text .choose-items {
  padding-bottom: 0px;
}

.choose-area-s3-02 .choose-text .choose-items .info {
  padding: 10px 20px !important;

}

.choose-area-s3 .choose-text .choose-items .info {
  padding: 25px 20px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  /* border: 1px solid #DDDDDD; */
  margin-left: -1px;
  margin-top: -1px;
  flex-basis: 50% !important;
  background: #fff;

}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-text .choose-items .info {
    padding: 25px 12px;
  }
}

@media (max-width: 480px) {
  .choose-area-s3 .choose-text .choose-items .info {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}

.choose-area-s3 .choose-text .choose-items .info:after {
  position: absolute;
  left: 2%;
  top: 5%;
  width: 0;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.choose-area-s3 .choose-text .choose-items .info i {
  display: block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #f5821f;
  text-align: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

@media (max-width: 480px) {
  .choose-area-s3 .choose-text .choose-items .info i {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.choose-area-s3 .choose-text .choose-items .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-text .choose-items .info p {
    font-size: 14px;
  }
}

.choose-area-s3 .choose-text .choose-items .info h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-text .choose-items .info h3 {
    font-size: 18px;
  }
}

.choose-area-s3 .choose-text .choose-items .info:hover:after {
  width: 95%;
}

.choose-area-s3 .choose-text .choose-items .info:hover i {
  background-color: #00a77e;
}

.video-area.style-2 {
  overflow: hidden;
}

.video-area.style-2 .ch-top-title-s2 {
  padding: 100px 0;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .video-area.style-2 .ch-top-title-s2 {
    padding-top: 40px;
  }
}

.video-area.style-2 .video-right-img {
  padding-top: 0;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .video-area.style-2 .video-right-img {
    padding-top: 80px;
  }
}

.video-area.style-2 .video-right-img .open-video {
  right: 0;
  top: 0;
}

@media (max-width: 575px) {
  .video-area.style-2 .video-right-img .open-video {
    display: block;
  }
}

.video-area.style-2 .shape-1 {
  position: absolute;
  right: 30px;
  bottom: -300px;
  width: 336.493px;
  height: 336.493px;
  background: #00a77e;
  transform: rotate(137deg);
}

@media (max-width: 575px) {
  .video-area.style-2 .shape-1 {
    bottom: -350px;
  }
}

.video-area.style-2 .shape-2 {
  position: absolute;
  right: -90px;
  top: -82px;
  width: 136.493px;
  height: 236.493px;
  background: #00a77e;
  transform: rotate(137deg);
  opacity: 0.6;
}

.faq-section .ch-top-title-s2 {
  margin-bottom: 20px;
}

.faq-section .faq-img-wrap {
  display: flex;
  margin: 0 -10px;
}

@media (max-width: 1199px) {
  .faq-section .faq-img-wrap {
    margin-bottom: 30px;
  }
}

.faq-section .faq-img-wrap .faq-img {
  flex-basis: 50%;
  padding: 0 10px;
}

.faq-section .faq-img-wrap .faq-img img {
  width: 100%;
}

.faq-section .accordion {
  border: 1px solid #ddd;
}

.faq-section .accordion-item {
  border: 0;
  border-bottom: 1px solid #ddd;
}

.faq-section .accordion-item button {
  padding: 30px 20px;
  font-size: 16.999px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: none;
  color: #fff;
  background: #05211E;
}

@media (max-width: 1399px) {
  .faq-section .accordion-item button {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .faq-section .accordion-item button {
    font-size: 20px;
    padding: 24px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .faq-section .accordion-item button {
    font-size: 16px;
    padding: 12px;
  }
}

.faq-section .accordion-item button::after {
  background: none;
  content: "\e905";
  font-family: "icomoon";
  font-size: 12px;
  font-weight: 700;
}

.faq-section .accordion-item button:not(.collapsed)::after {
  position: relative;
  top: -5px;
}

.faq-section .accordion-item button.collapsed {
  color: #373b3e;
  background: #fff;
}

.faq-section .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.faq-section .accordion-item .accordion-body {
  padding: 20px;
  display: flex;
}

@media (max-width: 575px) {
  .faq-section .accordion-item .accordion-body {
    flex-wrap: wrap;
  }
}

.faq-section .accordion-item .accordion-body .left-number {
  width: 94px;
  min-width: 94px;
  height: 84px;
  line-height: 84px;
  background: #00a77e;
  border-radius: 5px;
  margin-right: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

.faq-section .accordion-item .accordion-body .left-number span {
  font-size: 40px;
  border: 1px dashed #fff;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  height: 78px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .faq-section .accordion-item .accordion-body .left-number {
    margin-bottom: 20px;
  }
}

.faq-section .accordion-item .accordion-collapse {
  border: 0;
}

.ch-testimonial-area {
  padding-bottom: 300px;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .ch-testimonial-area {
    padding-bottom: 200px;
  }
}

.ch-testimonial-area .shape-1 {
  position: absolute;
  left: 113px;
  top: 150px;
  z-index: -1;
}

@media (max-width: 991px) {
  .ch-testimonial-area .shape-1 {
    display: none;
  }
}

.ch-testimonial-area .shape-1 img {
  border-radius: 50%;
  animation: zoom-in-zoom-out 3s ease infinite;
}

.ch-testimonial-area .shape-2 {
  position: absolute;
  right: 113px;
  top: 150px;
  z-index: -1;
}

@media (max-width: 991px) {
  .ch-testimonial-area .shape-2 {
    display: none;
  }
}

.ch-testimonial-area .shape-2 img {
  border-radius: 50%;
  animation: zoom-in-zoom-out 3s ease infinite;
}

.ch-testimonial-area .shape-3 {
  position: absolute;
  right: 100px;
  bottom: 70px;
  z-index: -1;
}

@media (max-width: 991px) {
  .ch-testimonial-area .shape-3 {
    display: none;
  }
}

.ch-testimonial-area .shape-3 img {
  border-radius: 50%;
  animation: zoom-in-zoom-out 3s ease infinite;
}

.ch-testimonial-area .ch-testimonial-single-wrap {
  max-width: 930px;
  margin: 0 auto;
  position: relative;
}

.ch-testimonial-area .ch-testimonial-single-wrap .test-bg {
  position: absolute;
  top: 0;
}

@media (max-width: 767px) {
  .ch-testimonial-area .ch-testimonial-single-wrap .test-bg {
    width: 120%;
    left: -10%;
  }
}

@media (max-width: 991px) {
  .ch-testimonial-area .ch-testimonial-single-wrap .test-bg {
    min-height: 600px;
  }

  .ch-testimonial-area .ch-testimonial-single-wrap .test-bg img {
    width: 100%;
    min-height: 600px;
  }
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text {
  max-width: 477px;
  text-align: center;
  margin: 0 auto;
  padding-top: 70px;
}

@media (max-width: 450px) {
  .ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text {
    padding-top: 30px;
  }
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text .ratting {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text .ratting li {
  color: #F1B51F;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text .ratting li span {
  color: #CDCDCD;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text .ratting li+li {
  margin-left: 6px;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  margin-top: 30px;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text h4 i {
  color: #01AB31;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text p {
  margin-bottom: 0;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active {
  max-width: 250px;
  margin: 0 auto;
  margin-top: 30px;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 450px) {
  .ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active {
    margin-top: 10px;
  }
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active .slick-list {
  padding: 0 !important;
  overflow: visible;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active .slick-list .slick-slide.slick-current.slick-center img {
  transform: scale(1.2);
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active img {
  border-radius: 50%;
}

.ch-skill-area.style-2 {
  padding-top: 60px;
}

.ch-skill-area.style-2::after {
  display: none;
}

.ch-skill-area.style-2 .left-man {
  position: absolute;
  left: 60px;
  bottom: 0;
  max-width: 750px;
  z-index: 1;
}

@media (max-width: 1500px) {
  .ch-skill-area.style-2 .left-man {
    max-width: 600px;
  }
}

@media (max-width: 1399px) {
  .ch-skill-area.style-2 .left-man {
    max-width: 550px;
  }
}

@media (max-width: 991px) {
  .ch-skill-area.style-2 .left-man {
    display: none;
  }
}

.ch-skill-area.style-2 .left-man:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 120%;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 6% 100%);
}

@media (max-width: 991px) {
  .ch-skill-area.style-2 .contact-form-area {
    margin-top: 0;
  }
}

.ch-skill-area.style-2 .contact-form-area .contact-form-area-inner {
  padding: 30px;
}

.ch-skill-area.style-2 .skill-bottom {
  background-color: #00a77e;
}

@media (max-width: 1199px) {
  .ch-skill-area.style-2 .skill-bottom {
    margin-bottom: -150px;
  }
}

@media (max-width: 991px) {
  .ch-skill-area.style-2 .skill-bottom {
    margin-bottom: 0px;
  }
}

.ch-skill-area.style-2 .skill-bottom .skill-img img {
  width: 100%;
}

.ch-skill-area.style-2 .skill-bottom .skill-bottom-item .skill-icon {
  background-color: #fff;
  line-height: 75.84px;
}

.ch-skill-area.style-2 .skill-bottom .skill-bottom-item .skill-icon i {
  color: #00a77e;
}

.ch-skill-area.style-2 .skill-bottom .skill-bottom-item:last-child {
  border: 0;
  background: #00a77e;
}

.ch-skill-area.style-2 .skill-bottom .skill-bottom-item:last-child h4 {
  color: #fff;
}

@media (min-width: 991px) {
  .skill-bottom-map {
    margin-top: -144px;
  }
}

.skill-bottom-map iframe {
  width: 100%;
  height: 675px;
}

@media (max-width: 991px) {
  .skill-bottom-map iframe {
    height: 450px;
  }
}

.ch-blog-area.style-2 .blog-items .blog-active {
  padding-bottom: 30px;
}

.ch-blog-area.style-2 .blog-items .owl-stage-outer {
  margin: -15px;
}

.ch-blog-area.style-2 .blog-items .owl-stage {
  margin: 15px;
}

.ch-blog-area.style-2 .blog-items .blog-item {
  text-align: center;
}

.ch-blog-area.style-2 .blog-items .blog-item .blog-content {
  border-bottom: 1px solid #ddd;
  padding: 30px 70px;
  padding-top: 0;
}

@media (max-width: 1199px) {
  .ch-blog-area.style-2 .blog-items .blog-item .blog-content {
    padding: 30px 50px;
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  .ch-blog-area.style-2 .blog-items .blog-item .blog-content {
    padding: 30px 15px;
    padding-top: 0;
  }
}

.ch-blog-area.style-2 .blog-items .blog-item .blog-content ul {
  max-width: 265px;
  margin: 0 auto;
  margin-top: -15px;
}

.ch-blog-area.style-2 .blog-items .owl-nav {
  display: none;
}

.ch-blog-area.style-2 .blog-items .owl-dots {
  text-align: center;
  bottom: 0px;
  position: absolute;
  width: 100%;
}

.ch-blog-area.style-2 .blog-items .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .ch-blog-area.style-2 .blog-items .owl-dots button {
    width: 8px;
    height: 12px;
  }
}

.ch-blog-area.style-2 .blog-items .owl-dots button.active {
  background: #F1B51F;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .ch-blog-area.style-2 .blog-items .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

/*--------------------------------------------------------------
21. Home-style-4
--------------------------------------------------------------*/
body.dark-mode {
  background: #050209;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #fff;
}

body.dark-mode body {
  color: #fff;
}

body.dark-mode p {
  color: #fff;
}

body.dark-mode a {
  color: #fff;
}

body.dark-mode .back-btn {
  background-color: #FFA903;
  border-color: #FFA903;
}

body.dark-mode .back-btn i {
  color: #fff;
}

body.dark-mode .mean-container a.meanmenu-reveal {
  background-color: #FFA903;
  border-color: #FFA903;
}

@media (min-width: 992px) {
  body.dark-mode .cp-header-style-3 {
    padding-top: 14px;
  }
}

body.dark-mode .cp-header-style-3 ul.nav {
  justify-content: flex-end;
}

body.dark-mode .cp-header-style-3 ul.nav li a:hover {
  color: #00a77e;
}

body.dark-mode .mean-container .mean-nav {
  background: #212124 none repeat scroll 0 0;
}

body.dark-mode .mean-container .mean-nav ul li a {
  border-top: 1px solid rgb(43, 43, 46);
}

body.dark-mode .cp-header-area-right .ch-btn-style-1 {
  background-color: #fff;
  color: #1B1A1A;
}

body.dark-mode .cp-header-area-right .ch-btn-style-1:hover {
  background-color: #00a77e;
  color: #fff;
}

body.dark-mode .cp-header-area-right .ch-btn-style-1:before {
  background-color: #fff;
}

body.dark-mode .cp-header-area-right .search-toggle-btn i {
  color: #1B1A1A;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #fff;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
}

body.dark-mode .ch-btn-style-1,
body.dark-mode .ch-btn-style-3 {
  border-color: #38373B;
}

@media (min-width: 1199px) {
  body.dark-mode .features-area-s2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  body.dark-mode .features-area-s2 {
    padding-bottom: 30px;
  }
}

body.dark-mode .features-area-s2 .features-wrap .features-item {
  border-color: #474747;
}

body.dark-mode .features-area-s2 .features-wrap .features-item .overlay {
  background-color: #1B1A1A;
}

body.dark-mode .features-area-s2 .features-wrap .features-item::before {
  display: none;
}

body.dark-mode .features-area-s2 .features-wrap .features-item .features-text h3 a {
  color: #fff;
}

body.dark-mode .about-area.style-2 .col {
  padding: 0;
}

body.dark-mode .about-area.style-2 .about-right-item {
  margin-left: -100px;
  position: relative;
  padding: 50px;
  bottom: -170px;
  z-index: 1;
}

@media (max-width: 1199px) {
  body.dark-mode .about-area.style-2 .about-right-item {
    margin-left: 0px;
    bottom: 0;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  body.dark-mode .about-area.style-2 .about-right-item {
    padding: 30px 10px;
    padding-right: 20px;
  }
}

body.dark-mode .about-area.style-2 .about-right-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  content: "";
  background: #050209;
  z-index: -1;
}

body.dark-mode .about-area.style-2 .about-right-item .border-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 10px;
  background: #fff;
}

body.dark-mode .about-area.style-2 .about-right-item .border-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 10px;
  background: #F1B51F;
}

body.dark-mode .about-area.style-2 .about-right-item .border-3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 50%;
  background: #00a77e;
}

body.dark-mode .about-area.style-2 .about-right-item .about-list-wrap {
  border-color: #2A272D;
}

body.dark-mode .about-area.style-2 .about-right-item .about-list-wrap .about-exprience {
  border-color: #2A272D;
}

body.dark-mode .about-area.style-2 .about-right-item .about-list-wrap .about-exprience span {
  color: #fff;
}

body.dark-mode .about-area.style-2 .about-right-item .about-list-wrap .about-list ul li {
  color: #fff;
}

body.dark-mode .about-area.style-2 .about-right-item .visible-text {
  position: absolute;
  right: 0px;
  top: -180px;
}

@media (max-width: 1199px) {
  body.dark-mode .about-area.style-2 .about-right-item .visible-text {
    display: none;
  }
}

body.dark-mode .about-area.style-2 .about-right-item .visible-text h2 {
  font-family: "Rubik", sans-serif;
  font-size: 149.935px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}

@media (max-width: 991px) {
  body.dark-mode .about-area.style-2 .about-right-item .visible-text h2 {
    font-size: 80.935px;
  }
}

@media (max-width: 575px) {
  body.dark-mode .about-area.style-2 .about-right-item .visible-text h2 {
    font-size: 60.935px;
  }
}

body.dark-mode .about-area.style-2 .right-img {
  opacity: 0.1;
}

body.dark-mode .service-area-2 {
  background-color: #1B1A1A;
}

body.dark-mode .service-area-2 .service-item {
  background-color: #050209;
}

body.dark-mode .service-area-2 .service-item .service-item-wrap .service-text h3 a {
  color: #fff;
}

body.dark-mode .service-area-2 .service-item .service-btm {
  border-color: #38373B;
}

body.dark-mode .service-area-2 .service-item .service-btm ul li {
  color: #fff;
}

body.dark-mode .service-area-2 .service-item .service-btm a {
  color: #fff;
}

body.dark-mode .service-area-2 .service-item .service-btm a:hover {
  color: #F1B51F;
}

body.dark-mode .ch-skill-area {
  background: #050209;
}

body.dark-mode .ch-skill-area::after {
  display: none;
}

body.dark-mode .ch-skill-area .contact-form-area {
  background-color: #1B1A1A;
}

@media (min-width: 991px) {
  body.dark-mode .ch-skill-area .contact-form-area {
    margin-bottom: -140px;
  }
}

body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner {
  border-color: #333;
  border-bottom-color: #00a77e;
}

body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form input,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form select,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form textarea {
  border-color: #333;
  background-color: transparent;
}

body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form input:focus,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form select:focus,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form textarea:focus {
  border-color: #F1B51F;
  background: transparent;
  color: #fff;
}

body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form input option,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form select option,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form textarea option {
  color: #333;
}

body.dark-mode .ch-skill-area .skill-bottom {
  background-color: #1B1A1A;
}

body.dark-mode .ch-skill-area .skill-bottom .skill-bottom-item:last-child {
  border-color: #38373B;
}

body.dark-mode .project-section .project-filters-btn ul li a {
  color: #fff;
}

body.dark-mode .brand-section.style-2 {
  background-color: #1B1A1A;
}

body.dark-mode .testimonial-section.style-2 .testimonial-items .testimonial-item {
  background-color: #1B1A1A;
}

body.dark-mode .testimonial-section.style-2 .testimonial-items .testimonial-item .info-text .info-text-bio span {
  color: #fff;
  display: inline-block;
  margin-left: 10px;
}

body.dark-mode .choose-area-s2 .choose-text .choose-items .info {
  background: transparent;
  border-color: #38373B;
}

body.dark-mode .choose-area-s2 .choose-text .choose-items .info .info-text h3 {
  color: #fff;
}

body.dark-mode .choose-area-s2 .choose-text .choose-items .info .info-text p {
  color: #fff;
}

body.dark-mode .choose-area-s2 .choose-text .choose-items .info:after {
  background-color: #1B1A1A;
}

body.dark-mode .team-area {
  background-color: #1B1A1A;
}

body.dark-mode .work-area .col::before {
  display: none;
}

body.dark-mode .work-area .work-item:before {
  background-color: #1B1A1A;
}

body.dark-mode .ch-blog-area .blog-items .blog-item {
  background: transparent;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .blog-content {
  border-color: #38373B;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .blog-content h2 a {
  color: #fff;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .blog-content h2 a:hover {
  color: #F1B51F;
  text-decoration: underline;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .ch-btn-style-3::before {
  background: #050209;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .blog-bottom {
  border-color: #38373B;
}

body.dark-mode .ch-blog-area .blog-items .blog-item:hover {
  background: #1B1A1A;
}

body.dark-mode .ch-blog-area .blog-items .blog-item:hover .ch-btn-style-3::before {
  background: #00a77e;
}

/*--------------------------------------------------------------
22. About Page
--------------------------------------------------------------*/
.about-page .text-moving-sec-s2 {
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .about-page .text-moving-sec-s2 {
    margin-bottom: 20px;
  }
}

@media (min-width: 991px) {
  .about-page .about-area-s2 {
    padding-bottom: 180px;
  }
}

/*--------------------------------------------------------------
23. Service Page
--------------------------------------------------------------*/
.service-page .service-area-2 {
  background: #fff;
}

.service-page .service-area-2 .service-item {
  border: 1px solid #F2F2F2;
}

.service-page .service-area-2 .service-item .service-btm {
  border-color: #F2F2F2;
}

.service-single-page .service-single-category {
  padding: 30px;
  background: #EFF4F9;
}

@media (max-width: 1199px) {
  .service-single-page .service-single-category {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .service-single-page .service-single-category {
    margin-top: 30px;
  }
}

.service-single-page .service-single-category h3 {
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .service-single-page .service-single-category h3 {
    margin-bottom: 10px;
  }
}

.service-single-page .service-single-category ul li+li {
  margin-top: 20px;
}

.service-single-page .service-single-category ul li a {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #636363;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding-left: 50px;
  position: relative;
}

@media (max-width: 1199px) {
  .service-single-page .service-single-category ul li a {
    font-size: 14px;
    padding-left: 40px;
  }
}

.service-single-page .service-single-category ul li a::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #00a77e;
  border-radius: 50%;
  content: "\e649";
  font-family: "themify";
  text-align: center;
  font-size: 10px;
  color: #fff;
  transition: all 0.3s;
}

.service-single-page .service-single-category ul li a:hover {
  background-color: #F1B51F;
  color: #fff;
}

.service-single-page .service-single-category ul li a:hover::before {
  background-color: #fff;
  color: #00a77e;
}

.service-single-page .service-details {
  padding-top: 46px;
}

.service-single-page .service-details h2 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.service-single-page .service-details .choose-wrap {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .service-single-page .service-details .choose-wrap {
    margin-bottom: 30px;
  }
}

.service-single-page .service-details p {
  max-width: 1022px;
}

.service-single-page .service-details .choose-items {
  padding-bottom: 40px;
}

.service-single-page .service-details .choose-items .info {
  padding: 20px 22px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  border: 1px solid #DDDDDD;
  margin-left: -1px;
  margin-top: -1px;
  flex-basis: 50%;
  background: #fff;
}

@media (max-width: 1199px) {
  .service-single-page .service-details .choose-items .info {
    padding: 25px 12px;
  }
}

@media (max-width: 480px) {
  .service-single-page .service-details .choose-items .info {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}

.service-single-page .service-details .choose-items .info:after {
  position: absolute;
  left: 2%;
  top: 5%;
  width: 0;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.service-single-page .service-details .choose-items .info i {
  display: block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #F1B51F;
  text-align: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

@media (max-width: 480px) {
  .service-single-page .service-details .choose-items .info i {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.service-single-page .service-details .choose-items .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .service-single-page .service-details .choose-items .info p {
    font-size: 14px;
  }
}

.service-single-page .service-details .choose-items .info h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .service-single-page .service-details .choose-items .info h3 {
    font-size: 18px;
  }
}

.service-single-page .service-details .choose-items .info:hover:after {
  width: 95%;
}

.service-single-page .service-details .choose-items .info:hover i {
  background-color: #00a77e;
}

/*--------------------------------------------------------------
24. Portfolio Page
--------------------------------------------------------------*/
.project-page .project-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .project-page .project-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .project-page .project-section {
    padding-bottom: 50px;
  }
}

.project-single .project-details h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .project-single .project-details h2 {
    font-size: 22px;
  }
}

.project-single .project-details .details-img {
  padding: 30px 0;
}

.project-single .project-details .details-items {
  margin-top: 40px;
}

.project-single .project-details .details-items h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-top: 20px;
}

.project-single .contact-form-area {
  padding: 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  padding-top: 40px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .project-single .contact-form-area {
    padding: 20px;
  }
}

.project-single .contact-form-area .form-field {
  margin-bottom: 30px;
}

.project-single .contact-form-area h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.project-single .contact-form-area form input,
.project-single .contact-form-area form select,
.project-single .contact-form-area form textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none !important;
  padding-left: 25px;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {

  .project-single .contact-form-area form input,
  .project-single .contact-form-area form select,
  .project-single .contact-form-area form textarea {
    height: 45px;
  }
}

.project-single .contact-form-area form input:focus,
.project-single .contact-form-area form select:focus,
.project-single .contact-form-area form textarea:focus {
  border-color: #F1B51F;
  background: transparent;
}

.project-single .contact-form-area form textarea {
  height: 180px;
  padding-top: 15px;
}

.project-single .contact-form-area form {
  margin: 0 -15px;
  overflow: hidden;
}

.project-single .contact-form-area form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.project-single .contact-form-area form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.project-single .contact-form-area form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.project-single .contact-form-area form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.project-single .contact-form-area form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: calc-rem-value(15);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.project-single .contact-form-area form select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.project-single .contact-form-area form .submit-area {
  width: 100%;
  margin-left: 0;
}

@media (max-width: 767px) {
  .project-single .contact-form-area form .submit-area {
    margin-bottom: 0;
  }
}

.project-single .contact-form-area form .submit-area .theme-btn {
  border-radius: 0px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
}

.project-single .contact-form-area form .submit-area .theme-btn:after {
  border-radius: 0px;
}

.project-single .contact-form-area form>div {
  margin: 0 15px 0px;
}

@media (max-width: 600px) {
  .project-single .contact-form-area form>div {
    width: calc(100% - 25px);
    float: none;
  }
}

.project-single .contact-form-area form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}

.project-single .project-sidebar {
  /*** search-widget ***/
}

@media (max-width: 991px) {
  .project-single .project-sidebar {
    margin-top: 50px;
  }
}

.project-single .project-sidebar .search-widget {
  padding: 0px;
  margin-bottom: 40px;
}

.project-single .project-sidebar .search-widget form div {
  position: relative;
}

.project-single .project-sidebar .search-widget input {
  background: none;
  border: 1px solid rgba(31, 33, 45, 0.15);
  height: 55px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  padding: 6px 50px 6px 20px;
  border-radius: 0;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.project-single .project-sidebar .search-widget input:focus {
  background-color: #fff;
}

.project-single .project-sidebar .search-widget form button {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 50px;
  font-size: 20px;
  font-size: calc-rem-value(20);
  color: #fff;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  background: #F1B51F;
  border-radius: 0px 5px 5px 0px;
}

.project-single .project-sidebar .search-widget form button i {
  font-size: 14px;
}

.project-single .project-sidebar .details-widget {
  background: url(../images/service/flower.png);
  padding: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.project-single .project-sidebar .details-widget::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(352deg, #000 -17.24%, #00a77e 117.24%);
  opacity: 0.95;
  z-index: -1;
}

@media (max-width: 1199px) {
  .project-single .project-sidebar .details-widget {
    padding: 25px;
  }
}

.project-single .project-sidebar .details-widget .details-widget-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.project-single .project-sidebar .details-widget .details-widget-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.project-single .project-sidebar .details-widget .details-widget-item span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
}

.project-single .project-sidebar .details-widget .details-widget-item h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  margin-top: 3px;
  margin-bottom: 0;
  color: #fff;
}

.project-single .project-sidebar .service-single-category {
  padding: 30px;
  background: #EFF4F9;
}

@media (max-width: 1199px) {
  .project-single .project-sidebar .service-single-category {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .project-single .project-sidebar .service-single-category {
    margin-top: 30px;
  }
}

.project-single .project-sidebar .service-single-category h3 {
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .project-single .project-sidebar .service-single-category h3 {
    margin-bottom: 10px;
  }
}

.project-single .project-sidebar .service-single-category ul li+li {
  margin-top: 20px;
}

.project-single .project-sidebar .service-single-category ul li a {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #636363;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding-left: 50px;
  position: relative;
}

@media (max-width: 1199px) {
  .project-single .project-sidebar .service-single-category ul li a {
    font-size: 14px;
    padding-left: 40px;
  }
}

.project-single .project-sidebar .service-single-category ul li a::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #00a77e;
  border-radius: 50%;
  content: "\e649";
  font-family: "themify";
  text-align: center;
  font-size: 10px;
  color: #fff;
  transition: all 0.3s;
}

.project-single .project-sidebar .service-single-category ul li a:hover {
  background-color: #F1B51F;
  color: #fff;
}

.project-single .project-sidebar .service-single-category ul li a:hover::before {
  background-color: #fff;
  color: #00a77e;
}

/*--------------------------------------------------------------
25.	team single page
--------------------------------------------------------------*/
.team-page .team-area {
  padding-bottom: 30px;
}

.team-page .team-area .team-item {
  margin-bottom: 30px !important;
}

.team-page .team-area .team-item .team-img img {
  width: 100%;
}

.team-single-section .single-img {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .team-single-section .single-img {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

.team-single-section .single-img img {
  width: 100%;
}

.team-single-section .single-content h2 {
  color: #222;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.team-single-section .single-content span {
  color: #636363;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 20px;
}

.team-single-section .single-info-items {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  margin-top: 20px;
}

.team-single-section .single-info-items .single-info-item {
  flex-basis: 50%;
  padding: 20px;
  border: 1px solid #ddd;
  margin-bottom: -1px;
  margin-right: -1px;
  display: flex;
}

@media (max-width: 575px) {
  .team-single-section .single-info-items .single-info-item {
    flex-basis: 100%;
  }
}

.team-single-section .single-info-items .single-info-item i {
  font-size: 20px;
  margin-right: 20px;
  color: #00a77e;
  position: relative;
  top: 5px;
}

.team-single-section .single-info-items .single-info-item h3 {
  color: #333;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.team-single-section .single-info-items .single-info-item span {
  margin-bottom: 0;
}

.team-single-section .team-single-text {
  margin-top: 50px;
}

.team-single-section .team-single-list {
  margin-top: 50px;
}

.team-single-section .team-single-list .list ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 20px;
}

.team-single-section .team-single-list .list ul li+li {
  margin-top: 20px;
}

.team-single-section .team-single-list .list ul li:before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  content: "";
  background: #00a77e;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .team-single-section .progress-area {
    margin-top: 40px;
  }
}

.team-single-section .progress-area .progress-single {
  margin-bottom: 20px;
  position: relative;
}

.team-single-section .progress-area .progress-single h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.team-single-section .progress-area .progress-single .progress {
  background: #fff;
  height: 8px;
  position: relative;
  border: 1px solid #F1B51F;
}

.team-single-section .progress-area .progress-single .progress .progress-bar {
  background-color: #F1B51F;
  height: 4px;
  position: relative;
  top: 1px;
  left: 2px;
  border-radius: 5px;
}

.team-single-section .progress-area .progress-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1B1A1A;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .team-single-section .progress-area .progress-number {
    font-size: 18px;
  }
}

/* ===============================
26. Blog Page
 =================================*/
/* blog-page */
.blog-grid-page .blog-section-s2 .blog-item {
  margin-bottom: 30px;
}

/* blog-page-area */
.blog-page-area .blog-item {
  margin-bottom: 60px;
  border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}

.blog-page-area .blog-item:last-child {
  margin-bottom: 0;
}

.blog-page-area .blog-item .blog-img {
  position: relative;
}

.blog-page-area .blog-item .blog-img img {
  width: 100%;
}

.blog-page-area .blog-item .blog-img ul {
  display: flex;
  align-items: center;
  padding: 15px 40px;
  background-color: #F1B51F;
  max-width: 363px;
  position: relative;
  border-radius: 0px 5px 0px 0px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 575px) {
  .blog-page-area .blog-item .blog-img ul {
    padding: 10px 10px;
  }
}

.blog-page-area .blog-item .blog-img ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

.blog-page-area .blog-item .blog-img ul li i {
  margin-right: 5px;
}

.blog-page-area .blog-item .blog-img ul li+li {
  margin-left: 20px;
}

.blog-page-area .blog-item .blog-img ul li strong {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-page-area .blog-item .blog-content {
  padding: 40px;
}

@media (max-width: 575px) {
  .blog-page-area .blog-item .blog-content {
    padding: 20px;
  }
}

.blog-page-area .blog-item .blog-content h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .blog-page-area .blog-item .blog-content h2 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

.blog-page-area .blog-item .blog-content h2 a {
  color: #1B1A1A;
}

.blog-page-area .blog-item .blog-content h2 a:hover {
  color: #050209;
}

.blog-page-area .blog-item .blog-content p {
  margin-bottom: 20px;
}

.blog-page-full .blog-img img {
  width: 100%;
}

/* blog-right-sidebar */
.blog-sidebar {
  /*** search-widget ***/
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 50px;
  }
}

.blog-sidebar .widget {
  /* margin-top: 50px; */
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

@media (max-width: 1399px) {
  .blog-sidebar .widget {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .blog-sidebar .widget {
    padding: 15px;
  }
}

@media (max-width: 1199px) {
  .blog-sidebar .widget {
    margin-top: 30px;
  }
}

.blog-sidebar .widget h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.blog-sidebar .widget h3:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 67px;
  height: 3px;
  background: #00a77e;
}

@media (max-width: 1199px) {
  .blog-sidebar .widget h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .widget h3 {
    font-size: 20px;
    line-height: 27px;
  }
}

.blog-sidebar .search-widget {
  padding: 0px;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background: none;
  border: 1px solid rgba(31, 33, 45, 0.15);
  height: 55px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  padding: 6px 50px 6px 20px;
  border-radius: 0;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: #fff;
}

.blog-sidebar .search-widget form button {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 50px;
  font-size: 20px;
  font-size: calc-rem-value(20);
  color: #fff;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  background: #F1B51F;
  border-radius: 0px 5px 5px 0px;
}

.blog-sidebar .search-widget form button i {
  font-size: 14px;
}

.blog-sidebar .blog-right-info p {
  margin-bottom: 0;
}

.blog-sidebar .recent-post .post {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}

.blog-sidebar .recent-post .post:last-child {
  margin-bottom: 0;
}

.blog-sidebar .recent-post .post .post-img {
  flex-basis: 30%;
  margin-right: 10px;
}

.blog-sidebar .recent-post .post .post-content {
  flex-basis: 70%;
}

.blog-sidebar .recent-post .post .post-content span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.blog-sidebar .recent-post .post .post-content ul {
  display: flex;
  align-items: center;
}

.blog-sidebar .recent-post .post .post-content ul li {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post .post .post-content ul li {
    font-size: 11px;
  }
}

.blog-sidebar .recent-post .post .post-content ul li+li {
  margin-left: 10px;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post .post .post-content ul li+li {
    margin-left: 5px;
  }
}

.blog-sidebar .recent-post .post .post-content ul li i {
  color: #050209;
}

.blog-sidebar .recent-post .post .post-content ul li strong {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-sidebar .recent-post .post .post-content h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-top: 6px;
}

.blog-sidebar .recent-post .post .post-content h4 a {
  color: #1B1A1A;
}

.blog-sidebar .recent-post .post .post-content h4 a:hover {
  color: #050209;
}

.blog-sidebar .category-widget ul li+li {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #ddd;
}

.blog-sidebar .category-widget ul li a {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  position: relative;
}

.blog-sidebar .category-widget ul li a::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "\e912";
  font-family: "icomoon";
}

@media (max-width: 1199px) {
  .blog-sidebar .category-widget ul li a {
    font-size: 16px;
    line-height: 25px;
  }
}

.blog-sidebar .category-widget ul li a i {
  margin-right: 10px;
  color: #050209;
  font-size: 10px;
}

.blog-sidebar .category-widget ul li a:hover {
  color: #050209;
}

.blog-sidebar .tag-widget ul {
  display: flex;
  flex-wrap: wrap;
}

.blog-sidebar .tag-widget ul li {
  margin-right: 10px;
  margin-bottom: 15px;
  display: block;
}

.blog-sidebar .tag-widget ul li a {
  color: #1B1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 8px 18px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: block;
}

.blog-sidebar .tag-widget ul li a:hover {
  color: #050209;
  background: #F1B51F;
}

/* =======================
27. Blog Single Page
 ========================*/
/* blog-single-page-area  */
.blog-single-page-area .blog-single-wrap {
  /*** more-posts ***/
  /*** tag-share ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.blog-single-page-area .blog-single-wrap h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.blog-single-page-area .blog-single-wrap .blog-img {
  position: relative;
}

.blog-single-page-area .blog-single-wrap .blog-img img {
  width: 100%;
}

.blog-single-page-area .blog-single-wrap .blog-img ul {
  display: flex;
  align-items: center;
  max-width: 505px;
  position: relative;
  margin-top: 15px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-img ul {
    padding: 0;
    flex-wrap: wrap;
  }
}

.blog-single-page-area .blog-single-wrap .blog-img ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-img ul li {
    margin: 5px 0;
    font-size: 14px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-img ul li i {
  margin-right: 5px;
}

/* .blog-single-page-area .blog-single-wrap .blog-img ul li:first-child {
  padding: 10px 20px;
  background: #00a77e;
  color: #fff;
  border-radius: 20px;
} */
@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-img ul li:first-child {
    padding: 0px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-img ul li+li {
  margin-left: 20px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-img ul li+li {
    margin-left: 10px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-img ul li strong {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .blog-sidebar {
    margin-top: 15px;
  }

  .blog-sidebar .widget {
    margin-top: 10px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap p {
  margin-bottom: 15px;
  text-align: justify;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap ul li {
  padding-bottom: 15px;
}

.blog-single-page-area .blog-single-wrap blockquote {
  border-radius: 5px;
  border: 2px solid #E3E3E3;
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  color: #636363;
  background-color: #f7f7f7;
  text-align: justify;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap blockquote {
    padding: 15px;
    font-size: 14px;
    line-height: 27px;
  }
}

.blog-single-page-area .blog-single-wrap blockquote span {
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  font-family: "Rubik", sans-serif;
  color: #050209;
  margin-top: 15px;
}

.blog-single-page-area .blog-single-wrap .service-area-2 {
  background: #fff;
}

.blog-single-page-area .blog-single-wrap .service-area-2 .service-item {
  border: 1px solid #ddd;
}

.blog-single-page-area .blog-single-wrap .detail-img {
  margin-top: 40px;
  margin-bottom: 30px;
}

.blog-single-page-area .blog-single-wrap .detail-img img {
  width: 100%;
}

.blog-single-page-area .blog-single-wrap .more-posts {
  overflow: hidden;
}

.blog-single-page-area .blog-single-wrap .more-posts>div {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts>div {
    width: 100%;
    float: none;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts>div>a {
  display: inline-block;
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post,
.blog-single-page-area .blog-single-wrap .more-posts .next-post {
  padding: 0px 0;
  margin-top: 30px;
}

.blog-single-page-area .blog-single-wrap .more-posts .next-post {
  text-align: right;
  position: relative;
}

.blog-single-page-area .blog-single-wrap .more-posts .next-post a {
  padding-right: 70px;
}

.blog-single-page-area .blog-single-wrap .more-posts .next-post a:before {
  font-family: "themify";
  content: "\e628";
  position: absolute;
  right: 0;
  top: 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #F1B51F;
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .next-post a:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .next-post a {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .next-post {
    border-left: 0;
    text-align: left;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .next-post .post-control-link {
  position: relative;
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
  position: relative;
  text-align: left;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .previous-post {
    padding-left: 0;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post a {
  padding-left: 70px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .previous-post a {
    padding-left: 0;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post a:before {
  font-family: "themify";
  content: "\e629";
  position: absolute;
  left: 0;
  top: 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #F1B51F;
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .previous-post a:before {
    display: none;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post .post-control-link {
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post>a>span,
.blog-single-page-area .blog-single-wrap .more-posts .next-post>a>span {
  display: block;
}

.blog-single-page-area .blog-single-wrap .more-posts .post-control-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #636363;
}

.blog-single-page-area .blog-single-wrap .more-posts .post-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  margin: 0;
  color: #1B1A1A;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .more-posts .post-name {
    font-size: 16px;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts a:hover .post-control-link {
  color: #1B1A1A;
}

.blog-single-page-area .blog-single-wrap .tag-share {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
  margin: 75px 0 0;
  padding: 30px 0;
  color: #1B1A1A;
}

.blog-single-page-area .blog-single-wrap .tag-share ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.blog-single-page-area .blog-single-wrap .tag-share ul li {
  float: left;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul li {
    margin: 2px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share ul>li+li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul>li+li {
    margin: 2px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .tag {
  float: left;
}

@media (max-width: 600px) {
  .blog-single-page-area .blog-single-wrap .tag-share .tag {
    float: none;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .tag>span {
  color: #1B1A1A;
  font-weight: bold;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-page-area .blog-single-wrap .tag-share .tag ul {
  list-style: none;
  position: relative;
  top: 5px;
}

.blog-single-page-area .blog-single-wrap .tag-share .tag li {
  position: relative;
}

.blog-single-page-area .blog-single-wrap .tag-share .tag ul>li+li {
  margin-left: 10px;
}

.blog-single-page-area .blog-single-wrap .tag-share .tag a {
  font-size: 16px;
  font-size: calc-rem-value(16);
  color: #636363;
  display: inline-block;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share .tag a {
    font-size: 14px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .share {
  float: right;
  position: relative;
  top: -15px;
}

@media (max-width: 600px) {
  .blog-single-page-area .blog-single-wrap .tag-share .share {
    float: none;
    margin-top: 15px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .share>span {
  color: #1B1A1A;
  font-weight: 600;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul {
  position: relative;
  top: 15px;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li+li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share .share ul>li+li {
    margin-left: 8px;
  }
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share .share ul>li {
    margin: 5px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .share a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 5px;
  display: inline-block;
  font-size: 14px;
  font-size: calc-rem-value(14);
  color: #627381;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share .share a {
    font-size: 13px;
    font-size: calc-rem-value(13);
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .share a:hover {
  background: #1B1A1A;
  border-color: #1B1A1A;
  color: #fff !important;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li:first-child a {
  color: #3c5ba4;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li:nth-child(2) a {
  color: #47a0d9;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li:nth-child(3) a {
  color: #0073b1;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li:nth-child(4) a {
  color: #933f94;
}

.blog-single-page-area .blog-single-wrap .comments-area {
  margin-top: 70px;
}

.blog-single-page-area .blog-single-wrap .comments-area .comments .comment+.comment {
  margin-left: 30px;
}

.blog-single-page-area .blog-single-wrap .comments-area li>div {
  border-bottom: 1px solid #DDDDDD;
  padding: 35px;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comments-area li>div {
    padding: 35px 25px;
  }
}

.blog-single-page-area .blog-single-wrap .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.blog-single-page-area .blog-single-wrap .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
}

.blog-single-page-area .blog-single-wrap .comments-area ol+li {
  margin-left: 30px;
}

.blog-single-page-area .blog-single-wrap .comments-area .comments-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comments-area .comments-title {
    font-size: 20px;
    font-size: calc-rem-value(20);
  }
}

.blog-single-page-area .blog-single-wrap .comments-area li>div {
  position: relative;
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-theme {
  position: absolute;
  left: 35px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comments-area .comment-theme {
    position: static;
  }
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-theme img {
  border-radius: 50%;
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-main-area {
  padding-left: 120px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-main-area p {
  margin-bottom: 10px;
}

.blog-single-page-area .blog-single-wrap .comments-area .comments-meta h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  color: #1B1A1A;
  margin: 0 0 1em;
}

.blog-single-page-area .blog-single-wrap .comments-area .comments-meta h4 span {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-size: calc-rem-value(13);
  color: #636363;
  font-weight: normal;
  font-style: italic;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-reply-link {
  font-size: 13px;
  font-size: calc-rem-value(13);
  line-height: 25px;
  font-weight: 600;
  color: #1B1A1A;
  text-align: center;
  display: inline-block;
}

.blog-single-page-area .blog-single-wrap .comment-respond {
  margin-top: 70px;
  background: #EFF4F9;
}

.blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
  background: #fff;
  padding: 70px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
    padding: 15px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
}

.blog-single-page-area .blog-single-wrap .comment-respond p {
  margin-bottom: 50px;
}

.blog-single-page-area .blog-single-wrap .comment-respond form input,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
  color: #A5A5A5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  width: 100%;
  height: 55px;
  border: 0;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgba(31, 33, 45, 0.15);
}

.blog-single-page-area .blog-single-wrap .comment-respond form input:focus,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #F1B51F;
}

@media (max-width: 991px) {

  .blog-single-page-area .blog-single-wrap .comment-respond form input,
  .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 50px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 150px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea {
  overflow: hidden;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs label,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 10px;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input {
  max-width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  background: #F1B51F;
  border-radius: 0;
  margin-top: 30px;
  color: #fff;
  width: 100%;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input:hover {
  background-color: #00a77e;
}

.blog-single-page-area.full-width .blog-img img {
  width: 100%;
}

.blog-single-page-area.full-width .detail-img img {
  width: 100%;
}

/*--------------------------------------------------------------
28. contact-page
--------------------------------------------------------------*/
.contact-page {
  background: #F5F5F5;
  padding-top: 100px;
}

@media (max-width: 991px) {
  .contact-page {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding-top: 80px;
  }
}

.contact-page .contact-img img {
  min-height: 800px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .contact-page .contact-img {
    display: none;
  }
}

.contact-page .contact-section {
  padding-bottom: 0;
}

.contact-page .contact-section .row {
  align-items: flex-end;
}

.contact-page .contact-section .contact-form-area {
  margin-top: 0;
  max-width: 770px;
  margin-left: -150px;
}

@media (max-width: 991px) {
  .contact-page .contact-section .contact-form-area {
    margin-left: 0;
  }
}

@media (min-width: 991px) {
  .contact-page .contact-section .col {
    padding: 0;
  }
}

.contact-page .contact-section .map {
  position: relative;
}

@media (max-width: 767px) {
  .contact-page .contact-section .map {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .contact-page .contact-section .map iframe {
    height: 400px;
  }
}

/* =============================
29. 404 page
 ===============================*/
/* 404-section */
.opps-404-section {
  text-align: center;
  padding-top: 50px;
}

.opps-404-section .opps-message {
  margin-top: 70px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .opps-404-section .opps-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .opps-404-section .opps-message {
    padding: 0;
  }
}

.opps-404-section .opps-message h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 0.5em;
}

@media (max-width: 575px) {
  .opps-404-section .opps-message h3 {
    font-size: 25px;
  }
}

.opps-404-section .opps-message p {
  margin-bottom: 1.8em;
}

.opps-404-section .opps-message .ch-btn-style-1 {
  border-radius: 40px;
}

/*--------------------------------------------------------------
24. preview-page
--------------------------------------------------------------*/
.preview-page .cp-header-style-5.header-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 55;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.preview-page .preview-hero {
  position: relative;
  overflow: hidden;
}

.preview-page .preview-hero:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(352deg, #00a77e -17.24%, #000 117.24%);
  opacity: 0.9;
}

.preview-page .preview-hero .ch-main-hero-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 150px;
}

@media (max-width: 575px) {
  .preview-page .preview-hero .ch-main-hero-text {
    padding-bottom: 80px;
  }
}

.preview-page .preview-hero .ch-main-hero-text p {
  margin: 0 auto;
  justify-content: center;
}

.preview-page .preview-hero .ch-main-hero-text .top-text {
  justify-content: center;
}

.preview-page .preview-hero .preview-image-wrap {
  max-width: 1800px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.preview-page .preview-hero .preview-image-wrap .preview-image-item {
  margin: 10px;
  position: relative;
  max-height: 460px;
}

@media (max-width: 991px) {
  .preview-page .preview-hero .preview-image-wrap .preview-image-item {
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .preview-page .preview-hero .preview-image-wrap .preview-image-item {
    margin: 3px;
  }
}

.preview-page .preview-hero .preview-image-wrap .preview-image-item img {
  border-radius: 10px;
  border: 5px solid #fff;
  width: 100%;
}

.preview-page .preview-hero .preview-image-wrap .preview-image-item:nth-child(2) {
  top: -60px;
}

.preview-page .preview-hero .preview-image-wrap .preview-image-item:nth-child(4) {
  top: -60px;
}

.preview-page .preview-hero .plug-shape {
  position: absolute;
  left: 85px;
  top: 75px;
}

@media (max-width: 991px) {
  .preview-page .preview-hero .plug-shape {
    display: none;
  }
}

.preview-page .preview-hero .plug-shape img {
  animation: bounceLeftToRight 4s infinite;
}

.preview-page .preview-hero .rotate-text-wrap {
  position: absolute;
  right: 120px;
  top: 80px;
  width: 200px;
  height: 200px;
  line-height: 200px;
  border-radius: 50%;
  z-index: 11;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1500px) {
  .preview-page .preview-hero .rotate-text-wrap {
    right: 100px;
  }
}

@media (max-width: 1400px) {
  .preview-page .preview-hero .rotate-text-wrap {
    right: 40px;
  }
}

@media (max-width: 991px) {
  .preview-page .preview-hero .rotate-text-wrap {
    display: none;
  }
}

.preview-page .preview-hero .rotate-text-wrap .rotate-text {
  position: relative;
  top: 0px;
  animation: circle 30s linear infinite;
  max-width: 200px;
}

.preview-page .preview-hero .rotate-text-wrap .rotate-text svg path {
  fill: transparent;
}

.preview-page .preview-hero .rotate-text-wrap .rotate-text text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  letter-spacing: 15px;
}

.preview-page .preview-hero .rotate-text-wrap .icon {
  position: absolute;
  left: 20%;
  top: 15px;
}

.preview-page .preview-hero .rotate-text-wrap .icon i {
  display: inline-block;
  font-size: 50px;
  color: #F1B51F;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 50%;
}

.preview-page .demo-section,
.preview-page .demo-section-s2 {
  padding-left: 80px;
  padding-right: 80px;
}

@media (max-width: 1199px) {

  .preview-page .demo-section,
  .preview-page .demo-section-s2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {

  .preview-page .demo-section,
  .preview-page .demo-section-s2 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 60px;
  }
}

.preview-page .demo-section .demo-item,
.preview-page .demo-section-s2 .demo-item {
  padding: 20px;
  border: 1px solid #FAF2EE;
  max-height: 550px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 991px) {

  .preview-page .demo-section .demo-item,
  .preview-page .demo-section-s2 .demo-item {
    margin-bottom: 30px;
  }
}

.preview-page .demo-section .demo-item a,
.preview-page .demo-section-s2 .demo-item a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.preview-page .demo-section .demo-item a img,
.preview-page .demo-section-s2 .demo-item a img {
  max-height: 550px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}

.preview-page .demo-section .demo-item a span,
.preview-page .demo-section-s2 .demo-item a span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 177, 98, 0.8);
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transform: scale(0);
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.preview-page .demo-section .demo-item a:hover span,
.preview-page .demo-section-s2 .demo-item a:hover span {
  transform: scale(1);
}

.preview-page .preview-features-area {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .preview-page .preview-features-area {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .preview-page .preview-features-area {
    padding-bottom: 50px;
  }
}

.preview-page .preview-features-area .features-wrap .features-item {
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.preview-page .preview-features-area .features-wrap .features-item .icon {
  width: 110px;
  height: 110px;
  line-height: 110px;
  border: 1px solid #00a77e;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.preview-page .preview-features-area .features-wrap .features-item .icon img {
  max-width: 50px;
}

.preview-page .preview-features-area .features-wrap .features-item h3 {
  color: #181B1D;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.preview-page .preview-features-area .features-wrap .features-item h3 a {
  color: #181B1D;
}

.preview-page .preview-features-area .features-wrap .features-item h3 a:hover {
  color: #00a77e;
}

.preview-page .demo-section-s2 {
  border-top: 1px solid #FAF2EE;
}

.preview-page .demo-section-s2 .owl-nav {
  display: none;
}

.preview-page .demo-section-s2 .owl-dots {
  text-align: center;
  bottom: 0px;
  position: absolute;
  width: 100%;
}

.preview-page .demo-section-s2 .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .preview-page .demo-section-s2 .owl-dots button {
    width: 8px;
    height: 13px;
  }
}

.preview-page .demo-section-s2 .owl-dots button.active {
  background: #F1B51F;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .preview-page .demo-section-s2 .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

.preview-page .demo-section-s2 .inner-active {
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .preview-page .demo-section-s2 .inner-active {
    padding-bottom: 30px;
  }
}

.preview-page .footer-section .footer-inner {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.preview-page .footer-section .footer-inner h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .preview-page .footer-section .footer-inner h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .preview-page .footer-section .footer-inner h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .preview-page .footer-section .footer-inner h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 450px) {
  .preview-page .footer-section .footer-inner h2 {
    font-size: 22px;
    line-height: 35px;
  }
}

.preview-page .footer-section .footer-inner h2 span {
  color: #F1B51F;
}

/*# sourceMappingURL=style.css.map */


.text-right2 {
  text-align: right !important;
}



.slider_btn::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f5821f;
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition: 0.5s;
  z-index: -1;
}

.slider_btn:hover,
.slider_btn:focus,
.slider_btn:active {
  background-color: #00a77e;
  color: #fff;
}

.slider_btn::before {
  background: #f5821f;
}

.footer-section .contact_details ul li a {
  text-transform: lowercase;
}

.blog-bottom-btn .ch-btn-style-3 {
  padding: 6px 16px;

}

.blog_sec {
  background-color: #fff;
}


/*new slider start*/
.sliderwrapper {
  width: 100%;
  height: 90vh;
  position: relative;
}

.sliderwrapper ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
  margin: 0;
  padding: 0;
  z-index: 0;
  background: url(../images/slider5.jpg) right top no-repeat;
}

.sliderwrapper ul:before {
  content: '';
  width: 100%;
  height: 40%;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.sliderwrapper ul li {
  list-style: none;
  border-right: 10px solid #fff;
  position: relative;
  width: 20%;
  height: 100%;
  float: left;
  box-sizing: border-box;
  transition: 0.2s;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.sliderwrapper ul li:last-child {
  border-right: 0px;
}

.sliderwrapper ul:hover li {
  width: 10%;
}

.sliderwrapper ul li:hover {
  width: 60%;
}

.sliderwrapper ul li:before {
  content: '';
  width: 100%;
  height: 40%;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.sliderwrapper ul li .content {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -100px;
  box-sizing: border-box;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  padding: 20px;
}

.sliderwrapper ul li:hover .content {
  bottom: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
  opacity: 1
}

.sliderwrapper ul li:nth-child(1),
.sliderwrapper ul li:nth-child(2),
.sliderwrapper ul li:nth-child(3),
.sliderwrapper ul li:nth-child(4) {
  background-image: url(../images/slider1.jpg);
}

.sliderwrapper ul li:nth-child(2) {
  background-image: url(../images/slider2.jpg) !important;
}

.sliderwrapper ul li:nth-child(3) {
  background-image: url(../images/slider3.jpg) !important;
}

.sliderwrapper ul li:nth-child(4) {
  background-image: url(../images/slider4.jpg) !important;
}

.sliderwrapper ul li:nth-child(5) {
  background-image: url(../images/slider5.jpg) !important;
}

.sliderwrapper ul li h2,
.sliderwrapper ul li p,
.sliderwrapper ul li a {
  color: #fff;
}

.sliderwrapper ul li a {
  text-transform: uppercase;
  text-decoration: underline;
}

.sliderwrapper ul li a:hover {
  text-decoration: none;
}

/*new slider end*/




/* contact Us css start */

.sectionscroll {
  position: relative;
}

.office-loaction-block {
  display: table;
  width: 100%;
  margin-top: 30px;
}

.office-loaction-block .address-block {
  /* background: #ebebeb; */
  background: #f1f1f1;
  box-shadow: rgb(149 157 165 / 8%) 0px 8px 24px;
  border: 1px solid #f1f1f196;
  padding: 20px;
  display: table-cell;
  height: 100%;
  float: none;
  vertical-align: top;
}

.mb-3 {
  margin-bottom: 1rem !important;

}

.office-loaction-block .map-block {
  display: table-cell;
  height: 100%;
  float: none;
  vertical-align: top;
  padding: 0;
}

.map-block iframe {
  width: 100%;
  float: left;
}

.email a {
  color: #5e5e5e;
  font-weight: 600;
}

@media (max-width: 767px) {
  .office-loaction-block .map-block {
    display: block;
    width: 100%;
    float: left;
  }
}

@media (max-width: 767px) {
  .office-loaction-block .address-block {
    display: block;
    width: 100%;
    float: left;
  }
}


.bg_contact {
  background: linear-gradient(180deg, #ffffffd2, #ffffffb9), url(../images/bg_conatact.jpg);
  background-size: cover !important;
  background-position: center center;
}

.contactUsMain {
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 20px;
  overflow: hidden;
  /* margin-top: 40px; */
}

.contactInfoWrapper {
  padding: 40px 30px;
}

.sideTitle {
  position: relative;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sideTitle::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 3px;
  height: 90%;
  margin: auto;
  background: #00a77e;
}


.sideTitle p {
  margin-bottom: 0px;
}

.team-item {
  cursor: pointer;
}

.team_modal_header {
  border-bottom: none;
  padding: 8px 8px 0px 8px;
}

.team-modal-body {
  padding-top: 0px;
  padding-bottom: 24px;
}

.team_img {
  padding: 0.25rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.team_img img {
  border-radius: 0.25rem;

}

.team_content h4 {
  font-size: 24px;
  font-weight: 700;

}

.team_content p {
  line-height: 1.5;
  text-align: justify;
}

.brand-item2 {
  padding: 3px 20px;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin-bottom: 25px;
  overflow: hidden;
  text-align: center;

}

.clientele_sec {
  padding: 50px 0px 30px 0px !important;
}

.brand-item2 img {
  transition: all 0.6s ease-in-out;

}

.brand-item2 img:hover {
  transform: scale(1.1);
}


.team_sec {
  padding: 40px 0px 30px 0px;
}


#whatsapp,
#callbtn {
  position: fixed;
  right: 15px;
  text-align: center;
  height: 50px;
  width: 50px;
  padding-top: 7px;
  font-size: 25px;
  background-color: #16BE45;
  /* background-color: #01e675; */
  border-radius: 100%;
  bottom: 105px;
  color: #ffffff !important;
  z-index: 100000000000;
  /* animation: mymove 3s; */
  animation-iteration-count: infinite;
  line-height: 39px;
}

#callbtn {
  bottom: 165px;
  background: #dc8235;
}

#whatsapp:hover {
  background: #dc8235;
}

#callbtn:hover {
  background: #16BE45;
}



@-webkit-keyframes mymove {
  from {
    bottom: 105px;
  }

  to {
    bottom: 105px;
    background-color: #16BE45;
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
  }
}

@keyframes mymove {
  from {
    bottom: 105px;
  }

  to {
    bottom: 105px;
    background-color: #16BE45;
    transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
  }
}


.captcha-outer input[type=text] {
  width: 100% !important;
  float: left;

}

.captcha-img {
  float: left;
  width: 100%;
  border: 1px solid #e8e8e8;
  /* border-radius: 5px; */
  height: 45px;
  font-size: 28px;
  background: #00a77e url(../images/captcha-bg.png) top left;
  color: #000;
  padding: 2px;
  text-align: center;
  /* margin: 0 2%; */
}

.captcha-outer input[type=button].refresh {
  width: 100%;
  height: 45px;
  background: #00a77e url(../images/refresh.png) center center no-repeat;
  border: 0;
  float: left;
  font-size: 0;
}

.btnAdvanceSearch {
  float: right;
}

.img-sec {
  width: 100%;
  height: 100%;
  background-image: url(../images/career-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* position: relative; */
}

.career-content {
  padding: 100px 40px 0px 40px;
  margin: 0px auto;
  /* text-align: center; */

}

.career-content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.career-content p {
  color: #fff;
}

/* project css start here */
.project-page-wrapper {
  background: #fafafa;
}

/* .project-sec-wrapper {
  margin: 0 0 50px;
} */

.project-sec-wrapper .project-page-lists {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.project-sec-wrapper .project-page-lists .project-lst {
  width: 46%;
  margin-right: 4%;
  padding: 25px;
  background: #fff;
  position: relative;
  margin-bottom: 15px;
  transition: all linear 0.4s;
  margin-bottom: 40px;
}

.project-sec-wrapper .project-page-lists .project-lst {
  box-shadow: 0 0 40px rgba(0, 0, 0, .15);
}

.project-sec-wrapper figure {
  margin: 0;
}

.project-page-lists .project-lst figure img {
  width: 100%;
  /* min-height: 450px; */
  object-fit: cover;
}

.project-page-lists .project-lst .project-extracts {
  padding-top: 30px;
  min-height: 222px;
  /* padding-left: 15px;
  padding-right: 3%; */
}

.project-extracts {
  /* padding: 37px 70px 18px 23px; */
  position: relative;
}

.project-lst .project-extracts h4 {
  font-size: 16px;
  color: #f5821f;
  margin: 0 0 15px;
  font-weight: bold;

}

.project-lst .project-extracts p {
  margin: 0;
  /* height: 50px; */
  line-height: 1.6;
  text-align: justify;
}


.project-sec-wrapper .project-page-lists .project-lst:hover {
  transform: scale(1.03);
}


@media (max-width: 767px) {
  .project-sec-wrapper .project-page-lists .project-lst {
    width: 100%;
    margin-right: 0;
  }


}


.heading-underline-css {
  position: relative;
  display: inline;
}

.h4-cus-style {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 34px;
  font-weight: 600;
  color: #00a77e;
}

.heading-underline-css::before {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #f5821f;
}

.heading-underline-css::after {
  position: absolute;
  content: '';
  bottom: -12px;
  left: 0;
  width: 15%;
  height: 6px;
  background: #f5821f;
}

.p-first-child {
  /* margin-top: 38px; */
  margin-top: 25px;
}

.img-left {
  width: 38%;
  float: left;
  margin-right: 26px;
  margin-bottom: 5px;
  position: sticky;
  height: 300px;
  border-radius: 10px;
}


.benefitcont {
  margin: 15px 0px;
  padding: 15px 31px 20px 31px;
  width: 100%;
  border-radius: 15px;
  display: block;
  float: left;
  background: #edf1e9;
}

.benefitcont .h5-cus-style {
  margin-bottom: 10px;
  color: #00a77e;
}

.h5-cus-style {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
}

.ser p {
  margin-top: 10px;
  line-height: 28px;
  text-align: justify;
  position: relative;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

.benefitcont i {
  color: #f5821f;
}

.shirodhara p strong {
  color: #000;
}

.first-para {
  margin-top: 25px !important;
}


/* journey css */
.journey-sec {
  padding-bottom: 40px !important;

}

.journey-sec ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  /* width: min(60rem, 90%); */
  margin-inline: auto;
}

/* line */
.journey-sec ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.journey-sec ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

/* card */
.journey-sec ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

/* date */
.journey-sec ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.journey-sec ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

/* circle */
.journey-sec ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

/* title descr */
.journey-sec ul li .title,
ul li .descr {
  background: rgba(245, 245, 245);
  position: relative;
  padding-inline: 1.5rem;
}

.journey-sec ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}

.journey-sec ul li .descr {
  padding-block-end: 1.5rem;
  font-weight: 300;

}

.journey-sec ul li .descr p {
  margin-top: 20px;
  margin-bottom: 0px;
  line-height: 1.6;
}

.journey-sec ul li .descr p strong {
  color: #000;
  font-weight: 600;
}

/* shadows */
.journey-sec ul li .title::before,
ul li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}

.journey-sec ul li .title::before {
  bottom: calc(100% + 0.125rem);
}

.journey-sec ul li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .journey-sec ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }

  .journey-sec ul::before {
    grid-column: 2;
  }

  .journey-sec ul li:nth-child(odd) {
    grid-column: 1;
  }

  .journey-sec ul li:nth-child(even) {
    grid-column: 3;
  }

  /* start second card */
  .journey-sec ul li:nth-child(2) {
    grid-row: 2/4;
  }

  .journey-sec ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .journey-sec ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }

  .journey-sec ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

.featuresWrapper {
  max-width: 100%;
  margin: 0px auto;
  margin-top: 20px;
  margin-bottom: 30px
}

.featuresCard {
  margin-bottom: 25px;
}

.featuresCard {
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #009aca29;
  min-height: 144px;
  box-shadow: rgb(0 0 0 / 4%) 0px 3px 12px;
  transition: 0.4s ease-in-out;
  /* display: flex;
  align-items: center; */
  min-height: 375px;
}

.fCardImg {
  width: 20%;
  margin: 0px auto;
  margin-bottom: 10px;
}

.fCardImg img {
  width: 100%;
  /* filter: hue-rotate(255deg); */
}

.fCardContent {
  width: 100%;
  /* padding-left: 26px; */
}

.fCardContent h4 {
  font-size: 24px;
  font-weight: 600;
  /* color: #004aad; */
  color: #f5821f;
  text-align: center;
  margin-bottom: 5px;
}

.fCardContent p {
  text-align: justify;
}

.title-2 {
  font-size: 28px;
  font-weight: 600;

}

.active2 {
  color: #ff7500 !important;
}

@media(max-width:767px) {
  .header-main-wrap .topbar {
    display: none;
  }
}

.project-page-lists .certi-sec .certi-content {
  min-height: auto !important;
}

.certi-sec .certi-content h4 {
  margin: 0px;

}

.project-sec-wrapper .project-page-lists .certi-sec {
  width: 95%;
}

@media(max-width:991px) {
  .img-left {
    width: 50%;
    height: auto !important;
    margin-bottom: 20px;

  }
}

@media(max-width:767px) {
  .header-main-wrap .topbar {
    display: none;
  }

  .project-sec-wrapper .project-page-lists .certi-sec {
    width: 100%;
  }

  .text-right2 {
    text-align: center !important;
  }

  .footer-section .upper-footer .col {
    margin-bottom: 25px;
  }

  .cp-header-style-1 .logo {
    max-width: 150px;
  }

  .img-left {
    width: 100%;
    height: auto !important;
    margin-bottom: 20px;

  }

  .about-area .about-right-text p {
    margin-bottom: 10px;
  }

  .about-area .about-list ul {
    padding-top: 5px;
  }

  .service-area {
    /* margin-bottom: 50px; */
    margin-bottom: 25px;
  }

  .featuresCard {
    min-height: auto !important;
  }

  .featuresWrapper {
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .team_sec {
    padding: 30px 0px 20px 0px;
  }

  .team-area .team-item {
    padding: 20px 20px;
    text-align: center;
  }

  .team_img {
    max-width: 50%;
    margin: 0px auto;
  }

  .team_content h4 {
    font-size: 20px;
    margin-top: 20px;
  }
}

@media(max-width:576px) {
  .cp-header-style-1 .logo {
    max-width: 130px;
  }

  .benefitcont {
    padding: 15px 20px 20px 20px;
  }

  .team-area .team-item .team-img img {
    /* max-width:80%; */

  }

  .team-area .team-item .team-text {
    padding: 10px 18px;
    bottom: 15px;

  }

  .page-title .breadcumb-wrap h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .h4-cus-style {
    font-size: 21px;
  }

  .page-title .breadcumb-wrap ol li a {
    font-size: 14px;
  }

  .page-title .breadcumb-wrap ol li {
    font-size: 14px;
  }

  .features-area .features-wrap .features-item .features-text h3 a {
    font-size: 18px;
    font-weight: 600;
  }

  .features-area .features-wrap .features-item {
    padding: 25px 20px;
    min-height: auto;
    margin-top: 0px;
  }

  .about-area .about-bottom {
    padding-top: 10px;
  }

  .funfact-area .info i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
  }

  .funfact-area .info {
    padding: 15px 12px;
  }

  .choose-area .choose-wrap .choose-items .info i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
  }

  .service-area .service-wrap .owl-dots {
    /* bottom: -50px; */
    bottom: -8px;
  }

  .choose-area .choose-wrap .choose-items .info {
    padding: 15px 12px;
  }

  .testimonial-section .testimonial-items .testimonial-item h4 {
    margin-top: 8px;
  }

  .testimonial-section .testimonial-items .testimonial-item-inner .info-img {
    display: none;
  }

  .testimonial-section .testimonial-items .testimonial-item {
    padding-bottom: 5px;
  }

  .title-2 {
    font-size: 21px;
  }

  .brand-section {
    padding-top: 25px;
    padding-bottom: 15px;
  }

  .footer-section .upper-footer {
    padding: 35px 0 15px;
  }

  .fCardContent h4 {
    font-size: 21px;
  }

  .about-area-style-9 {
    padding-top: 40px;
  }

  .certifications-sec {
    padding-top: 40px;
    padding-bottom: 10px !important;
  }

  .p-first-child {
    margin-top: 0px;
  }

  .clientele_sec {
    padding: 40px 0px 15px 0px !important;
  }

  .projects-sec {
    padding-top: 40px;
    padding-bottom: 25px !important;
  }

  .project-lst .project-extracts h4 {
    font-size: 18px;
  }

  .funfact-area {
    padding-bottom: 15px;
  }

  .about-area2 {
    padding-bottom: 25px;
    padding-top: 5px;
  }
}



.email2 {
  margin-left: 68px;
}

.about-area-style-9 {
  padding-bottom: 35px !important;
}

.certifications-sec2 {
  background: #fafafa !important;
}


#linkedin {
  position: fixed;
  right: 15px;
  text-align: center;
  height: 50px;
  width: 50px;
  padding-top: 8px;
  font-size: 24px;
  background-color: #0077B5;
  border-radius: 100%;
  bottom: 170px;
  color: #ffffff !important;
  z-index: 100000000000;
  /* animation: mymove 3s; */
  /* animation-iteration-count: infinite; */
}


.benefits-list-items {
  list-style-type: disc;

}

.benefits-list-items li {
  margin-top: 10px;
  line-height: 28px;
  text-align: justify;
}

.benefits-list-items li strong {
  color: #000;

}

.our-serv-img.img-position-sticky {
  position: sticky;
  top: 80px;
  margin: 0px;
  margin-bottom: 30px;

}

.our-serv-img img {
  border-radius: 10px;
  width: 100%;

}

.our-services-content {
  padding: 0px;
  padding-bottom: 30px;
  background: #fff;
  margin-bottom: 1px;
  position: relative;
}

.our-services-content p, .our-services-content span, .our-services-content ul li {font-size: 22px !important;
    line-height: 1.5 !important;}
.gotoSection {
  background: transparent;
  width: 100%;
  height: 10px;
  position: absolute;
  top: -170px;
  left: 0;
  right: 0;
  margin: auto;
}

.service-benififts {
  margin-bottom: 60px;
}

/* .benifit-items{
  list-style-type: disc;
  padding-left: 30px;

} */

.benifit-items li strong {
  color: #000;
}

.benifit-items li::before {
  color: #f5821f;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50px;
  top: 5px;
  left: 0px;
  background-color: #f5821f;
  position: absolute;
}

.benifit-items2 li {
  margin-bottom: 10px;
}

.benifit-items li {
  /* line-height: 28px; */
  position: relative;
  padding-left: 20px;
}

.map-sec iframe {
  width: 300px;
  height: auto;
  border-radius: 6px;
  outline: 3px solid #fff;
  /* margin-top: 20px; */
}




/* section {
  padding: 60px 0;
  min-height: 100vh;
}
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}.bg-gray {
  background-color: #f9f9f9;
}

.site-heading h2 {
display: block;
font-weight: 700;
margin-bottom: 10px;
text-transform: uppercase;
}

.site-heading h2 span {
color: #f5821f;
}

.site-heading h4 {
display: inline-block;
padding-bottom: 20px;
position: relative;
text-transform: capitalize;
z-index: 1;
}

.site-heading h4::before {
background: #f5821f none repeat scroll 0 0;
bottom: 0;
content: "";
height: 2px;
left: 50%;
margin-left: -25px;
position: absolute;
width: 50px;
}

.site-heading {
margin-bottom: 60px;
overflow: hidden;
margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
margin: -15px -15px 0;
padding: 15px;
} */

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
  background: #ffffff none repeat scroll 0 0;
  border: 2px solid;
  height: 15px;
  margin: 0 5px;
  width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
  background: #f5821f none repeat scroll 0 0;
  border-color: #f5821f;
}

.we-offer-area .item {
  background: #ffffff none repeat scroll 0 0;
  border-left: 2px solid #f5821f;
  box-shadow: 0 0 10px #cccccc;
  overflow: hidden;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.we-offer-area.text-center .item {
  background: #ffffff none repeat scroll 0 0;
  border: medium none;
  padding: 30px 25px 20px 25px;
  min-height: 482px
}

.we-offer-area.text-center .item i {
  background: #f5821f none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 40px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
  border: 2px solid #f5821f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 90px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 90px;
  z-index: -1;
  transition: all 0.20s ease-in-out;
}

.we-offer-area.item-border-less .item {
  border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
  margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
  /* font-family: "Poppins",sans-serif; */
  font-size: 50px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  right: 30px;
  top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
  background: #f5821f none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
  color: #ffffff;
}

.we-offer-area .item i {
  color: #f5821f;
  display: inline-block;
  font-size: 60px;
  margin-bottom: 20px;
}

.we-offer-area .item h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.we-offer-area .item p {
  margin: 0;
  text-align: justify;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
  transition: all 0.20s ease-in-out;

}

.we-offer-area .item::after {
  background: #f5821f none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 0.9s ease-in-out;
  width: 100%;
  z-index: -1;
}

.we-offer-area .item:hover::after {
  left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p {
  color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
  border-color: #00a77e !important;
}

.we-offer-area.text-center .item:hover i {
  background-color: #00a77e !important;
  color: #f5821f !important;
}

.we-offer-area.text-left .item i {
  background: #f5821f none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  position: relative;
  width: 100px;
  z-index: 1;
  text-align: center;
}

.we-offer-area.text-left .item i::after {
  border: 2px solid #f5821f;
  border-radius: 50%;
  content: "";
  height: 120px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 120px;
}

.our-offer-items-icon {
  width: 50px;
  margin-bottom: 5px;
}


.brand-section .clients-logo .owl-nav button {
  display: none;
}

.brand-section .clients-logo img {
  padding: 10px 15px;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin-bottom: 25px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

/* .brand-section .clients-logo img{
  transition:all 0.6s ease-in-out;
  overflow: hidden;

}
.brand-section .clients-logo img:hover{
  transform: scale(1.1);
} */

.desk-none {
  display: none;
}

.services-img2 {
  margin-top: 25px;
}


.choose-area5 {
  padding-top: 60px;
}


/* timeline css start */

/* .milestone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  flex-direction: column;
} */

.milestone-title {
  font-size: 28px;
  color: #000;
  text-align: center;
  /* font-style: italic; */
  font-weight: 600;
}

.timeline {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
}

.timeline .swiper-container {
  height: 600px;
  width: 100%;
  position: relative;
}

.timeline .swiper-wrapper {
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}

.timeline .swiper-slide {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
  border-radius: 100%;
}

.timeline .swiper-slide-content {
  position: absolute;
  text-align: center;
  width: 80%;
  max-width: 310px;
  right: 50%;
  top: 13%;
  transform: translate(50%, 0);
  font-size: 12px;
  z-index: 2;
}

.timeline .swiper-slide .timeline-year {
  display: block;
  font-style: italic;
  font-size: 42px;
  margin-bottom: 50px;
  transform: translate3d(20px, 0, 0);
  color: #d4a024;
  font-weight: 300;
  opacity: 0;
  transition: 0.2s ease 0.4s;
}

.timeline .swiper-slide .timeline-title {
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 30px;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.5s;
}

.timeline .swiper-slide .timeline-text {
  line-height: 1.5;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.6s;
}

.timeline .swiper-slide-active .timeline-year {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.6s;
}

.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  color: #fff;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.7s;
}

.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  text-align: justify;
  color: #fff;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.8s;
}

.timeline .swiper-pagination {
  right: 15% !important;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}

.timeline .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  /* color: #d4a024; */
  color: #fff;
  margin: 15px 0 !important;
  position: relative;
}

.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32.5px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  /* background-color: #d4a024; */
  background-color: #fff;
  transform: scale(0);
  transition: 0.2s;
}

.timeline .swiper-pagination-bullet-active {
  color: #fff;
}

.timeline .swiper-pagination-bullet-active::before {
  transform: scale(1);
}

.timeline .swiper-button-next,
.timeline .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: 0.2s;
}

.timeline .swiper-button-prev {
  left: 8%;
  background-image: url("../images/arrow2.svg");
}

.timeline .swiper-button-prev:hover {
  transform: translateX(-3px);
}

.timeline .swiper-button-next {
  right: 8%;
  background-image: url("../images/arrow.svg");
}

.timeline .swiper-button-next:hover {
  transform: translateX(3px);


}

.mobile-slider {
  display: none;
}

.service-area-pad {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .timeline .swiper-slide::after {
    right: -30%;
    bottom: -8%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
  }

  .timeline .swiper-slide-content {
    right: 30%;
    top: 50%;
    transform: translateY(-50%);
    width: 310px;
    font-size: 11px;
    text-align: right;
  }

  .timeline .swiper-slide .timeline-year {
    margin-bottom: 0;
    font-size: 32px;
  }

  .timeline .swiper-slide .timeline-title {
    font-size: 42px;
    margin: 0;
    margin-bottom: 10px;
    color: #fff;
  }

  .timeline .swiper-pagination {
    display: flex;
  }

  .timeline .swiper-button-prev {
    top: 6%;
    left: auto;
    right: 15%;
    transform: rotate(90deg) translate(0, 10px);
  }

  .timeline .swiper-button-prev:hover {
    transform: rotate(90deg) translate(-3px, 10px);
  }

  .timeline .swiper-button-next {
    top: auto;
    bottom: 6%;
    right: 15%;
    transform: rotate(90deg) translate(0, 10px);
  }

  .timeline .swiper-button-next:hover {
    transform: rotate(90deg) translate(3px, 10px);
  }
}

@media screen and (min-width: 1024px) {
  .timeline .swiper-slide::after {
    right: -20%;
    bottom: -12%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
  }

  .timeline .swiper-slide-content {
    right: 25%;
  }
}

/* timeline css end */




@media(max-width:1199px) {
  .featuresCard {
    min-height: 386px;
  }

  .we-offer-area.text-center .item {
    min-height: 531px;
  }

  .team-area .team-item .back-shape::after {
    right: 0px;
  }

  .project-page-lists .project-lst .project-extracts {
    min-height: 250px;
  }
}

@media(max-width:992px) {
  .desk-none {
    display: block;

  }
}

@media(max-width:991px) {
  .about-area2 {
    padding-top: 30px;
  }

  .why-choose-us-sec {
    padding-bottom: 70px !important;
  }

  .we-offer-area.text-center .item {
    min-height: 504px;
  }

  .featuresCard {
    min-height: 445px;
  }

  .about-area .about-left-item {
    padding: 30px 0px 100px 0px;
  }

  .choose-area-s3 .choose-text .choose-items {
    padding-bottom: 20px;
  }

  .choose-area-s3 {
    padding-top: 30px;
    padding-bottom: 25px
  }

  .project-sec-wrapper .project-page-lists .project-lst {
    width: 96%;
    margin-right: 0px;
  }

  .project-page-lists .project-lst .project-extracts {
    min-height: auto;
  }

  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 24px;
  }

  .blog-sidebar .widget h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .address-block .address p br {
    display: none;

  }
}

@media(max-width:767px) {


  .choose-area-s3 {
    padding-top: 70px;

  }

  .about-area .about-left-item {
    padding: 50px 0px 30px 0px;
  }

  .our-serv-img.img-position-sticky {
    margin-bottom: 20px;
  }

  .features-area .features-wrap .features-item {
    min-height: auto;
  }

  .we-offer-area.text-center .item {
    min-height: auto;
  }

  .why-choose-us-sec {
    padding-top: 20px;

  }

  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 22px;
  }

  .blog-sidebar .widget h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .timeline .swiper-container {
    height: 320px;
  }

  .journey-sec {
    padding-bottom: 0px !important;
  }

  .career-content {
    padding: 40px 40px 25px 40px;
    /* text-align: center; */
  }

  .address-block .email {
    font-size: 16px;
  }

  .project-sec-wrapper .project-page-lists .project-lst {
    width: 100%;
  }

}

@media(max-width:576px) {
  .footer-section .widget-title {
    margin-bottom: 10px;
  }

  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 18px;
  }

  .blog-sidebar .widget h3 {
    font-size: 20px;
    line-height: 34px;
  }

  .why-choose-us-sec {
    padding-top: 10px !important;
    padding-bottom: 40px !important;

  }

  .about-area .about-left-item {
    padding: 20px 0px 50px 0px;
  }

  .choose-area-s3 {
    padding-top: 25px;

  }

  .about-area-style-9 {
    padding-bottom: 20px !important;
  }

  .we-offer-area .item h4 {
    font-size: 18px;
  }

  .footer-section p {
    margin-top: 15px;
  }

  .choose-area-s3 .choose-text .choose-items .info h3 {
    font-size: 16px;
  }

  .features-area .features-wrap .features-item .icon {
    margin-right: 15px;
  }

  .features-area .features-wrap .features-item .features-text p {
    line-height: 1.5;
    font-size: 15px;
  }

  .choose-area-s3 .choose-text .choose-items .info {
    text-align: center;
    justify-content: center;
    padding: 14px 12px;
  }

  .about-area .about-left-item .about-left-wrap .about-middle .about-middle-text {
    width: 140px;
    height: 140px;
  }

  .choose-area-s3 .choose-text .ch-top-title-s2 {
    margin-bottom: 15px;
  }

  .choose-area-s3 {
    padding-bottom: 20px;
  }

  .project-page-lists .project-lst .project-extracts {
    padding-top: 20px;

  }

  .project-sec-wrapper .project-page-lists .project-lst {
    padding: 15px;
    margin-bottom: 20px
  }

  .team-area .team-item .team-text h3 {
    font-size: 18px;
  }

  .service-benififts {
    margin-bottom: 45px;
  }

  .our-services-content {
    margin-bottom: 0px;
  }

  .services-sec {
    padding-top: 40px !important;
    padding-bottom: 0px !important;

  }

  .ch-blog-area .blog-items .blog-item .blog-content h2 a {
    font-size: 18px;
  }

  .milestone-title {
    font-size: 21px;
    margin-top: 5px;
    text-align: left;
    padding-left: 12px;
  }

  .timeline .swiper-slide .timeline-title {
    margin-bottom: 10px;
  }

  .milestone-section {
    padding-bottom: 35px;
  }

  .timeline .swiper-container {
    height: 280px;
  }

  .our-offer-items-icon {
    width: 40px;
  }

  .we-offer-area.text-center .item i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin-bottom: 15px;
  }

  .we-offer-area.text-center .item i::after {
    width: 80px;
    height: 80px;
    line-height: 80px;
    top: -5px;
  }

  .team-modal-body {
    padding-bottom: 8px;

  }

  .ch-blog-area .blog-items .blog-item .blog-content h2 {
    padding-top: 12px;
    line-height: 1.3;
    margin: 0px 0px 5px 0px;

  }

  .ch-blog-area .blog-items .blog-item .blog-content {
    padding: 0px 15px 18px;

  }

  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap p {
    margin-bottom: 8px;

  }

  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap {
    margin-bottom: 20px;
  }


  .blog-single-page-area .blog-single-wrap blockquote {
    margin-bottom: 18px;
  }

  .career-content {
    padding: 30px 30px 15px 30px;
  }

  .contactInfoWrapper {
    padding: 10px 20px 20px 20px;
  }

  .form-group-label {
    margin-bottom: 5px !important;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    top: 8%;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
    left: -30px;
  }

  .sliderwrapper {
    display: none;
  }

  .mobile-slider {
    display: block;
  }

  .carousel-caption .mob-heading a {
    color: #fff;
    font-weight: 700;
  }

  .carousel-caption .mob-para {
    color: #fff;
    margin-bottom: 0px;
    line-height: 1.5;
    font-size: 15px;
  }

  .carousel-item-slider::before {
    content: '';
    background-color: #00000080;
    width: 100%;
    height: 100%;
    position: absolute;


  }

  .work-area {
    padding-top: 40px;
  }


  .service-area-2 {
    padding-top: 30px;
  }

  .choose-area5 {
    padding-top: 30px;
  }

  .service-area-pad {
    padding-top: 20px;
  }
}

@media(max-width:480px) {
  .address-block .email .mob-block {
    display: block;
    padding-left: 88px;
  }


}

@media(max-width:380px) {

  .choose-area-s3 .choose-text .choose-items .info h3 {
    font-size: 15px;
  }

  .about-area .about-left-item .about-left-wrap .about-middle .about-middle-text {
    width: 125px;
    height: 125px;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    right: -22px;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    left: -22px;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
    left: -20px;
  }

  .about-area .about-left-item .about-left-wrap {
    height: 270px;
    width: 270px;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
    max-width: 90px;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    top: 10%;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    top: 8%;
  }

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    top: 10%;
  }

  .about-area .about-left-item .about-left-wrap .about-middle .about-middle-text:before {
    width: 100px;
    height: 100px;
  }

  .about-area .about-left-item .about-left-wrap .about-middle .about-middle-text h3 {
    font-size: 28px;
  }

  .about-area .about-left-item .about-left-wrap .about-middle .about-middle-text small {
    font-size: 12px;
  }
}


@media(max-width:370px) {

  .office-loaction-block .address-block h3 {
    font-size: 20px;
    margin-bottom: 5px !important;

  }

  .office-loaction-block .address-block .address p {
    font-size: 15px;
  }

  .office-loaction-block .address-block .email {
    font-size: 15px;

  }
}

@media(max-width:350px) {
  .office-loaction-block .address-block .address p {
    font-size: 14px;
  }

  .office-loaction-block .address-block .email {
    font-size: 14px;

  }

  .address-block .email .mob-block {
    padding-left: 78px;
  }
}

@media(max-width:330px) {
  .office-loaction-block .address-block .address p {
    font-size: 13px;
  }

  .office-loaction-block .address-block .email {
    font-size: 13px;

  }
}


.ch-blog-area .blog-items .owl-prev {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
  display: none;
}

.ch-blog-area .blog-items .owl-next {
  display: none;

}

.ch-blog-area .blog-items .owl-dots button.active {
  background: #00a77e;
  width: 20px;
  height: 20px;
  display: none;
}



/* old css start */


.section-header {
  position: relative;
  margin-bottom: 50px
}

.section-title {
  font-size: 44px;
  margin-bottom: 20px;
  margin-top: 0;
  position: relative;
  text-align: center;
  color: #fff;
}

.section-header .desc {
  max-width: 800px;
  text-align: center;
  margin: 0 auto
}

.bg-title {
  margin-bottom: -37px;
  margin-left: -30px;
  font-size: 66px;
  opacity: .04;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}



.full-width {
  width: 100%
}

.width-90 {
  max-width: 90px
}

.width90 {
  max-width: 90%
}

.width-80 {
  max-width: 80%
}

.fs-48 {
  font-size: 48px !important
}

.bigger-text {
  font-size: 5rem !important;
  line-height: 1
}

.relative {
  position: relative;
}

.hidden {
  overflow: hidden;
}

.block {
  display: block;
}


@media (max-width: 480px) {

  .welcome_area.ico {
    height: 100vh !important;
  }

  .main-ilustration-5 {
    display: none;
  }

  .integration-text {
    font-size: 12px
  }

  .integration-icon .badge {
    display: none;
  }

  .spons {
    border-top: 1px solid #eee
  }

  .spons img {
    width: 80%
  }
}

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

.section-padding-100-70 {
  padding-top: 100px;
  padding-bottom: 70px;
}

.section-padding-0-70 {
  padding-top: 0px;
  padding-bottom: 70px;
}

.section-padding-70-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-padding-70-100 {
  padding-top: 70px;
  padding-bottom: 100px;
}

.section-padding-100-85 {
  padding-top: 100px;
  padding-bottom: 85px;
}

.section-padding-100-50 {
  padding-top: 100px;
  padding-bottom: 50px;
}

.section-padding-0-100 {
  padding-top: 0px;
  padding-bottom: 100px;
}

.scew-bg {
  background: url(../img/svg/bg-header1.svg) no-repeat;
  background-size: cover
}

.sec-before:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 580px;
  width: 200px;
  background: url(../img/core-img/sec-before.html) no-repeat;
  background-size: cover;
}

.sec-before2:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 580px;
  width: 500px;
  background: url(../img/core-img/sec-before2.html) no-repeat;
  background-size: cover;
}

.sec-before3:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 580px;
  width: 500px;
  background: url(../img/team-img/app/bubbules.html) no-repeat;
  background-size: cover;
  -webkit-animation: floating2 7s infinite;
  -o-animation: floating2 7s infinite;
  animation: floating2 7s infinite;
}

@media (max-width: 992px) {

  .sec-before:before,
  .sec-before2:before,
  .sec-before3:before {
    display: none;
  }
}

.sec-img-bg:before {
  content: '';
  position: absolute;
  width: 300px;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../img/bg-img/sec-img-bg.html') no-repeat top right;
}

.pettern2 {
  background: url(../img/core-img/pettern2.html) repeat;
  background-size: 25%;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee
}

.travel-bg {
  background: url(../img/bg-img/travel-bg.html) no-repeat;
  background-size: cover
}

.relative {
  position: relative;
}

.box-shadow {
  -webkit-box-shadow: 0px 10px 27px 0px rgba(154, 161, 171, 0.18);
  box-shadow: 0px 10px 27px 0px rgba(154, 161, 171, 0.18);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: block;
  top: 0;
}


.section-padding-0-100 {
  padding-top: 0;
  padding-bottom: 100px;
}

.section-padding-100-0 {
  padding-top: 100px;
  padding-bottom: 0;
}

.section-padding-100-50 {
  padding-top: 100px;
  padding-bottom: 50px;
}

.section-padding-0-50 {
  padding-top: 0;
  padding-bottom: 50px;
}

.section-padding-50-0 {
  padding-top: 50px;
  padding-bottom: 0;
}

.section-padding-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.section-padding-0-200 {
  padding-top: 0;
  padding-bottom: 200px;
}

.section-padding-200-0 {
  padding-top: 200px;
  padding-bottom: 0;
}

.section-padding-200-100 {
  padding-top: 200px;
  padding-bottom: 100px;
}

.section-padding-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-padding-150-0 {
  padding-top: 150px;
  padding-bottom: 0;
}

.section-padding-0-150 {
  padding-top: 0;
  padding-bottom: 150px;
}

.section-padding-50-150 {
  padding-top: 50px;
  padding-bottom: 150px;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.section-heading>p {
  margin-bottom: 0;
  line-height: 2;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.who-we-contant .res-header {
  margin-bottom: 30px
}

.res-header {
  position: relative;
  margin-bottom: 80px
}

.res-header h6 {
  font: 500 40px 'Great Vibes', cursive;
  text-transform: capitalize;
  color: #cea676 !important;
  letter-spacing: 3px;
  margin: 0 0 -20px 0;
}

.res-header h4 {
  margin: 10px 0;
  color: #4e4e4e
}

.heade-before-after:before {
  content: "";
  background: url(../img/team-img/food/head-before.html) no-repeat scroll 0px 10px;
  display: inline-block;
  height: 35px;
  width: 60px;
  margin-right: 20px;
}

.heade-before-after:after {
  content: "";
  background: url(../img/team-img/food/head-after.html) no-repeat scroll 0px 10px;
  display: inline-block;
  height: 35px;
  width: 60px;
  margin-left: 20px;
}

/* reservation */
.reservation .reservation-content {
  -webkit-box-shadow: 0px 30px 100px -38px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 30px 100px -38px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 30px 100px -38px rgba(0, 0, 0, 0.3);
}

.reservation .opening {
  background-color: #21201e;
  padding: 30px;
  text-align: center;

}

.reservation .opening-time {
  padding: 30px;
  border: 1px dashed #cea676;
}

.reservation .opening-time h3 {
  color: #fff !important;
  padding: 0 0 60px 0
}

.reservation .opening-time .openning-days {
  font-size: 18px;
  color: #666;
  text-transform: uppercase;
}

.reservation .opening-time p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0
}

.reservation hr {
  margin: 40px 0
}

.reservation .opening-time p:last-child {
  font-size: 20px;
  color: #cea676;
  margin-bottom: 0
}

.reservation-content {
  background: url(../img/team-img/food/reservation-bg.html) no-repeat center center;
  background-size: cover
}

.reservation .reservation-online {
  padding: 60px;
}

.b-contact__form form>div span {
  position: relative;
  left: 20px;
  top: 32px;
  color: #eee
}

.b-contact__form input[type='text'] {
  background: transparent;
  border: 1px solid #555555;
  padding: 10px 0 10px 45px;
  border-radius: 30px;
  width: 100%;
  font-size: 13px
}

.b-contact__form input:focus {
  outline: 0;
  border-color: #cea676
}



.height-400 {
  height: 400px;
}

.height-600 {
  height: 600px;
}

.height-700 {
  height: 700px;
}

.height-800 {
  height: 800px;
}

.height-900 {
  height: 900px;
}

.height-1000 {
  height: 1000px;
}

.login-btn {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 13px !important;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 38px;
  padding: 0 20px;
  min-width: 100px;
  color: #fff !important;
  background: #00a77e;
  height: 40px;
  border-radius: 5px;
  /* border: 1px solid #fff; */
  letter-spacing: 1px;
}

.login-btn:hover,
.login-btn:focus {
  color: #fff;
  background: #f5821f;
  border-color: #f5821f;
}

/* ### Clients #####*/
.client-logo-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 50.625rem;
  margin: 0 auto;
}

.client-logo {
  background: url(../img/svg/diamond-shape.html) center no-repeat;
  background-size: cover;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 6.875rem;
  height: 8.125rem;
  margin: 0 -.3rem;
}

.client-logo img {
  margin: -10px 6px 0 0;
  max-height: 2rem;
  max-width: 3rem;
}

@media (min-width: 1024px) {
  .client-logo img {
    max-width: 3.5rem;
    max-height: 3rem;
  }
}

/* ##### 2.0 Header Area CSS ##### */
.nav {
  /*transition: all .5s ease-in*/
}

.navbar-brand {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 0px;
  margin: 0;
  border-radius: 0px 0px 5px 5px !important;
}

.navbar-brand img {
  max-height: 90px;
}

.lh-55px {
  line-height: 55px
}

.navbar-nav .nav-item .nav-link {
  padding: 20px 18px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #00a77e;
}

.navbar-expand-md .navbar-nav .dropdown-menu {
  border-top: 3px solid #00a77e;
}

nav {
  /*-webkit-transition: padding-top .3s, padding-bottom .3s;*/
  /*-moz-transition: padding-top .3s, padding-bottom .3s;*/
  /*transition: padding-top .3s, padding-bottom .3s;*/
  border: none;
}

.shrink {
  animation: .3s ease-in-out;
  /* animation-name: fadeInDown; */
  background-color: rgb(255, 255, 255) !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-white .navbar-brand:hover {
  color: #fff
}

.navbar-dark .navbar-brand:hover {
  color: #333
}

/* mobile view */
@media (max-width:500px) {
  .navbar {
    background: rgb(255, 255, 255);
  }

  .logo {
    display: none;
  }

  .logo2 {
    display: block !important;
  }

  .fixed-top {
    position: relative !important;
  }

  .hero-section {
    min-height: 50px !important;
    padding-bottom: 0 !important;
  }

  .navbar-nav {
    border-top: 1px solid #fed136;
    color: #fff;
    z-index: 1;
    margin-top: 5px;
  }

  .navbar-nav .nav-item .nav-link {
    padding: 0.7em 1em !important;
    font-size: 100%;
    font-weight: 500;
  }

}

.navbar-dark .navbar-toggler,
.navbar-white .navbar-toggler,
.navbar-cyan .navbar-toggler {
  background: #f5811e;
  /* border-color: #333; */
}

.navbar-white .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

@media(max-width: 992px) {
  .shrink {
    animation: none;
  }

  .login-btn {
    margin-left: 15px !important;
    margin-top: 15px !important
  }

  .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 5px 12px;
    color: #333
  }

  .navbar-expand-lg.navbar-dark {
    background: rgb(215, 223, 239);
  }

  .navbar-collapse {
    padding-top: 20px;
    background: rgb(215, 223, 239)
  }

  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
  }
}

.navbar-white {
  padding: 0px;
}

.navbar-white.shrink .navbar-brand,
.shrink .navbar-nav .nav-item .nav-link {
  color: #333
}

.navbar-white.shrink .navbar-brand {
  padding: 0px;
}

.navbar-white.shrink {
  padding: 0px;
}

.navbar-white.shrink .navbar-collapse,
.menucontactbtn {
  margin-top: 0px;
}

.navbar-white.shrink .menucontactbtn {
  margin-top: 0px;
}


.navbar-nav .dropdown-menu {
  padding: 0px;
  top: 95%;
}

.navbar-nav .dropdown-menu a.dropdown-item {
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 14px;
  border-bottom: 1px solid #dedede
}



.navbar-nav .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown-menu .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #00a77e;
}

.navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background-color: #f5821f;
}


.navbar-dark .navbar-brand,
.navbar-dark .navbar-nav .nav-item .nav-link {
  color: #333
}

.navbar-cyan .navbar-brand,
.navbar-cyan .navbar-nav .nav-item .nav-link {
  color: #04d0ff
}



/* ##### 3.0 Wellcome Area CSS ##### */
.hero-section {
  position: relative;
  min-height: 750px;
  background: url('../img/bg-img/header2.html') no-repeat bottom center;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 1800px) {

  .hero-section .welcome-content,
  .counters {
    /*padding-left: 45px;*/
  }

  .hero-section-content {
    width: 100%;
  }
}

.hero-section.app {
  position: relative;
  min-height: 700px;
  background: url('../img/bg-img/header-app.html') no-repeat bottom center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section.app img {
  width: 100%
}

.hero-section.ico-header5 {
  background: url(../img/bg-img/banner-bg.jpg) no-repeat bottom left;
  background-size: cover
}

@media (min-width: 1200px) {
  .hero-section.ico-header5 {
    background-position: bottom right;
  }
}

.hero-section.curved-section:before {
  content: '';
  position: absolute;
  width: 103%;
  height: 100%;
  left: 0px;
  right: 0px;
  bottom: -3px;
  z-index: 0
}

.hero-section.curved-section .welcome-content {
  margin-top: 0
}

.hero-section.app2 {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app2 {
  background: url(../img/bg-img/hero-app-bg.html) no-repeat center, linear-gradient(90deg, #5f36ff 0, #b719f6 100%);
}

.app3 {
  background: url(../img/bg-img/app2-bg.html) no-repeat center;
  background-size: cover;
}

.agency-bg {
  background: url(../img/bg-img/agency-bg.html) no-repeat center;
  background-size: cover
}

.cd-intro.v2 {
  margin: 0em auto;
}

.cd-intro.v2 .cd-headline.clip span {
  display: inline;
  padding: 0 !important
}

.cd-intro.v2 .cd-headline.clip .cd-words-wrapper {
  vertical-align: middle;
}

#canvasplus {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: .6;
  z-index: 0
}

.hero-section.fullwidth-header {
  padding-top: 100px;
  padding-bottom: 405px;
  background-image: url(../img/bg-img/header-bg3.html);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section.fullwidth-header .special-head.dark {
  padding-left: 0
}

.hero-section.fullwidth-header .special-head.dark:before {
  display: none;
}

.city-img {
  position: relative;
  bottom: 0px
}

@media (max-width: 991px) {
  .hero-section.fullwidth-header {
    padding-bottom: 0px;
    background-image: url(../img/bg-img/header-bg3-min.html);
    background-position: top center;
    background-size: cover;
    padding-top: 0
  }

  .special-pb {
    padding-bottom: 100px
  }

  .welcome-content.spe {
    margin-top: 0 !important
  }
}

.hero-section.gradient {
  overflow: visible;
  background-image: linear-gradient(106deg, #d787f5, #3634bb);
}

@media (min-width: 767px) {
  .hero-section.curved-section {
    padding-top: 150px
  }
}

@media (min-width: 992px) {
  .hero-section.curved-section {
    padding-top: 100px
  }
}

@media (max-width: 767px) {
  .hero-section.curved-section img.curved {
    display: none;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .fullscreen-bg {
    margin-top: -400px;
    margin-left: -50px
  }
}

.hero-section.curved-section .special-head {
  padding-left: 0
}

.hero-section.curved-section .special-head:before {
  display: none;
}

.welcome_area {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 900px !important;
}

.hero-content {
  width: 100%;
  height: 100%;
  background: rgba(72, 52, 212, 0.95);
  background: -webkit-linear-gradient(to right, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
  background: -webkit-linear-gradient(left, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
  background: linear-gradient(to right, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 10;
}

.hero-content.globe {
  background: linear-gradient(to right, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.75));
}

.hero-content.with-after {
  background: url('../img/svg/bg_hero.svg') no-repeat center right;
}

.hero-content.with-after-before {
  background-image: url(../img/svg/bg_hero1.svg), url(../img/svg/bg_hero2.svg);
  background-position: right top, left bottom;
  background-size: auto;
  background-repeat: no-repeat;
}

.hero-content.soft1 {
  background: url(../img/bg-img/soft1.html) no-repeat top right;
  background-size: 65% 100%;
}

.hero-section.soft2 {
  background: url(../img/bg-img/soft2.html) no-repeat bottom center;
  background-size: cover;
}

@media (max-width: 992px) {
  .hero-content.soft1 {
    background-size: 100%
  }
}

.hero-content.creative {
  background: url('../img/bg-img/header3.html') no-repeat center right;
  background-size: cover
}

.hero-content.pizza {
  background: url(../img/bg-img/banner-bg.jpg) no-repeat right top;
}

.hero-section.fuel {
  background: url(../img/team-img/ico/header-bg3.html) no-repeat right bottom;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 765px;
}

.hero-section.corporate-bg-1 {
  background: url(../img/bg-img/corporate-bg-1.html) no-repeat center center;
  background-size: cover;
}

.hero-section.hos-bg-2 {
  background: url(../img/bg-img/hos-bg-2.html) no-repeat center top;
  background-size: cover;
}

.banner2-img {
  position: absolute;
  top: 0;
  left: 53%;
  max-width: 100px;
}

.hero-section.blue-bg {
  background: #2e39bf;
  overflow: hidden;
}

.hero-section.blue-bg:before {
  height: 700px;
  content: '';
  width: 150%;
  left: 0;
  bottom: -324px;
  background: rgba(37, 46, 176, 1);
  display: inline-block;
  position: absolute;
  transform: rotate(155deg);
}

.hero-content.tringle {
  background: url('../img/bg-img/tringle.html') no-repeat center right;
}

.hero-content.scew {
  background: url('../img/bg-img/header2-2.html') no-repeat center top;
}

.hero-content.trans {
  background: url('../img/bg-img/trans.html') no-repeat right top;
}

.hero-content.transparent {
  background: transparent;
}

.hero-content.dark-blue {
  background: rgb(33, 0, 67, 0.9);
}

.hero-content .ico-counter {
  margin: 100px 7% 0;
}

@media (max-width: 992px) {

  .hero-content .ico-counter,
  .hero-content .service-img-wrapper .image-box {
    margin-top: 0px !important
  }

}

.hero-content .service-img-wrapper .image-box .rings {
  position: absolute;
  top: 50%;
  z-index: -1;
  margin: 0 auto;
  left: 50% !important;
  width: 120%;
  transform: translate(-50%, -50%);
  animation: unset;
  -webkit-animation: unset;
}

.welcome-content {
  position: relative;
  z-index: 1;
  margin-top: 90px;
}


.main-ilustration-2:before {
  content: '';
  position: absolute;
  width: 30%;
  height: 1000px;
  left: 50%;
  top: -30%;
  transform: rotate(21deg);
  background: rgba(0, 0, 128, 0.7);
}

.main-ilustration-3 .inovation {
  position: absolute;
  bottom: 10%;
  right: -15%;
  width: 40%;
  background: #0d003b;
  padding: 20px;
}

.inovation.num2 {
  right: -57%;
}

.inovation h5 {
  padding-left: 25px;
  position: relative;
}

.inovation h5:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 15px;
  height: 2px;
  background: #25cbd3;
}

.inovation p {
  font-size: 12px;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .main-ilustration {
    min-width: 650px;
  }

  .shape1:before {
    left: 0;
    position: absolute;
    right: 0;
    display: block;
    content: "";
    top: 5%;
    width: 290px;
    height: 350px;
    background: url(../img/core-img/shape1.html) no-repeat top;
    background-size: contain;
    opacity: .1;
    animation: floating2 7s infinite;
    -webkit-animation: floating2 7s infinite;
  }

  .shape2:after {
    position: absolute;
    right: 30px;
    display: block;
    content: "";
    top: 5%;
    width: 200px;
    height: 350px;
    background: url(../img/core-img/shape2.html) no-repeat top;
    background-size: contain;
    opacity: .1;
    animation: floating2 5s infinite;
    -webkit-animation: floating2 5s infinite;
  }
}

.welcome-content h2 {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 20px;
}

.welcome-content h1 {
  font-size: 34px;
  font-weight: 500;
  line-height: 45px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .welcome-content .cd-headline {
    min-height: 190px
  }
}

.agency-header {
  position: relative;
  padding-left: 50px;
}

.agency-header span {
  position: absolute;
  top: 17px;
  left: -25px;
  font-size: 48px;
  font-weight: bolder;
  text-transform: uppercase;
  transform: rotate(270deg);
}

.welcome-content h1.artficial {
  font-size: 38px
}

.welcome-content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.gradient-text {
  font-weight: 600;
  display: inline-block;
  background-image: linear-gradient(135deg, #846FF4 0%, #F17674 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gradient-text.blue {
  background-image: linear-gradient(35deg, #d9261c 0%, #ff3429 100%);
}

.gradient-text.cyan {
  background-image: linear-gradient(135deg, #d9261c 0%, #ff7770 100%) !important;
}

p.artficial {
  padding-left: 20px;
  border-left: 1px solid #fff;
  position: relative;
}

p.artficial:before {
  content: '';
  position: absolute;
  left: -5px;
  top: -8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff
}

.welcome-content-small {
  margin-bottom: 50px
}

.welcome-content-small h4 {
  margin-bottom: 20px
}

.welcome-content-small p.artficial {
  font-size: 12px
}

.welcome-video-area {
  position: relative;
  z-index: 1;
}

.welcome-video-area .welcome-thumb {
  position: relative;
  z-index: 1;
}

.welcome-video-area .welcome-thumb:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 90%;
  height: 100%;
  border: 10px solid #ffdb3e
}

.welcome-video-area .welcome-thumb img {
  width: 95%;
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #4834d4;
}

.video-btn {
  background-color: #ffdb3e;
  width: 70px;
  height: 70px;
  color: #fff;
  border-radius: 50%;
  line-height: 70px;
  padding: 0;
  text-align: center;
  min-width: 70px;
  font-size: 24px;
}

.video-btn.v2 {
  width: 50px;
  height: 50px;
  line-height: 50px;
  min-width: 50px;
  font-size: 16px;
}

.video-btn:hover {
  background-color: #4834d4;
  color: #fff;
}


.fullscreen-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}

.welcome_area.video .desc {
  max-width: 60%;
  margin: 0 auto
}

@media (max-width: 767px) {
  .fullscreen-bg {
    background: url('video/video-frame.html') center center / cover no-repeat;
  }

  .welcome_area.video .desc {
    max-width: 80%;
    margin: 0 auto
  }

  .fullscreen-bg__video {
    display: none;
  }
}

.video-bg-illution {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #010111;
  z-index: 50;
  opacity: .7;
}

/* Features veersion 2*/
.item-feat {
  border: 2px solid #ddd;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.item-feat:after {
  content: '';
  width: 40px;
  height: 16px;
  position: absolute;
  top: -5px;
  left: -5px;
  display: block;
  background: #fff;
}

.item-feat h3 {
  background: #fff;
  padding: 5px 0;
  padding-top: 10px;
  font-size: 22px;
  font-weight: 600;
  transform: translate(-10px, 0);
}

.item-feat span.number {
  font-size: 1.8rem;
  font-weight: 800;
  transition: all 0.3s;
}

.item-feat p {
  padding: 0 30px 30px 30px;
  margin-bottom: 0;
}

.item-feat:hover,
.item-feat.hover {
  border-color: #3f88fb;
}

.item-feat:hover span.number,
.item-feat.hover span.number {
  color: #3f88fb;
}

/* ##### Restaurant template ##### */
.food-img-wrapper,
.food-img img {
  transition: all 1.5s ease-in-out;
  overflow: hidden;
}

.food-img-wrapper:hover .food-img img {
  transform: scale(1.1);
}

.offer-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  -ms-flex-align: center;
  align-items: flex-end;
}

.seafood-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.offer-info {
  position: absolute;
  top: 30px;
  left: 30px;
}

.offer-info.v2 {
  position: absolute;
  top: 30px;
  right: 30px;
  left: auto;
}

.offer-info h4 {
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 500
}

.offer-info p {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.food-img-wrapper .text-wrapper {
  width: 370px;
  background: #cb202d;
  padding: 3%;
  margin-right: 50px;
  overflow: hidden;
  height: auto;
}

.seafood-box .sea-text {
  width: 370px;
  margin-left: 50px;
  overflow: hidden;
  height: auto;
}

.offer-text {
  text-transform: uppercase;
  color: #fff;
  float: right;
}

.offer-text p {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0;
  color: #fff
}

.uppercase {
  text-transform: uppercase;
}

.offer-text .text-big {
  font-size: 116px;
  margin-bottom: 0;
  color: #fff;
  margin-top: 15px
}

@media (min-width: 450px) {
  .food-img-wrapper .text-wrapper .percent {
    letter-spacing: -15px;
    font-size: 200px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
  }
}

/* ##### Partners Area ##### */
.partners {
  padding: 0 0 70px
}

.partner-box {
  border: 1px solid #25cbd3;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  vertical-align: middle;
  background-color: #0d003b;
  margin-bottom: 30px;
  transition: all .3s ease-in-out;
}

.partner-box:hover {
  background: #25cbd3;
  cursor: pointer;
}

.b-text {
  color: #272e3a !important;
}

.g-text {
  color: #d8d0d0 !important
}

.p-text {
  color: blueviolet !important
}

.green-text {
  color: #2ec8a6 !important;
}

.o-text {
  color: #faaf52 !important;
}

.brown-text {
  color: #cea676 !important
}

.bold {
  font-weight: 600 !important
}

.bolder {
  font-weight: 700 !important
}

.normal {
  font-weight: 500 !important
}

.thin {
  font-weight: 400 !important
}

/* ##### About Us Area ##### */
.double-bg {
  background: url('../img/svg/section-bg.html') no-repeat center left;
  background-size: contain
}

.double-bg-1 {
  position: relative;
  background: url('../img/bg-img/section-bg.html') no-repeat top right;
  background-size: cover
}

.double-bg-2 {
  background: url('../img/svg/two-sec-bg.svg') no-repeat center left;
  background-size: cover
}

.payment-section-gradient:before {
  content: '';
  position: absolute;
  right: 0px;
  top: 0%;
  z-index: -1;
  width: 80%;
  height: 100%;
  margin-bottom: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0ff), to(#dff0ff));
  background-image: linear-gradient(180deg, #dff0ff, #dff0ff);
}

.ab-wrapper {
  position: relative;
  margin-bottom: 30px;
  text-align: right;
}

.abso-img1 {
  max-width: 75%
}

.abso-img2 {
  position: absolute;
  bottom: 110px;
  max-width: 53%;
  left: 6%;
}

.abso-img3 {
  position: absolute;
  transform: rotate(90deg);
  bottom: 30px;
  left: -95px;
  z-index: -1;
}

.ab-wrapper.v2 {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 0;
  position: relative;
}

.perwaz {
  position: absolute;
}

.perwaz:before {
  content: '';
  position: absolute;
  left: 17%;
  top: -40px;
  width: 70%;
  z-index: 0;
  height: 100%;
  border: 10px solid cyan;
}

.ab-wrapper.v2 .abso-img2 {
  max-width: 50%;
  bottom: 20%;
  top: inherit;
  left: 10%;
}

.ab-wrapper.v2 .abso-img3 {
  bottom: -50px;
  right: -50px;
  left: inherit;
}

.about-us-area {
  position: relative;
  z-index: 1;
}

.gt-start-earning-anim {
  padding-bottom: 100px
}

.gt-start-earning-anim-bg {
  max-width: 115%;
  position: relative;
  left: -20px;
  top: 84px;
}

.bar {
  transform-origin: center bottom;
  -webkit-animation: bar infinite 4s ease-in-out;
  -moz-animation: bar infinite 4s ease-in-out;
  animation: bar infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}

.floater-2 {
  -webkit-animation: floater-2 infinite 4s ease-in-out;
  -moz-animation: floater-2 infinite 4s ease-in-out;
  animation: floater-2 infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}

.gt-start-earning-anim-bar {
  width: 3px;
  position: absolute;
  left: -91px;
  right: 0;
  margin: 0 auto;
  top: 270px;
  z-index: 1;
}

.gt-start-earning-anim-bar2 {
  width: 3px;
  height: 37px;
  transform-origin: center bottom;
  position: absolute;
  left: -136px;
  right: 0;
  margin: 0 auto;
  top: 282px;
  z-index: 1;
}

.gt-start-earning-anim-bar3 {
  width: 3px;
  height: 50px;
  position: absolute;
  left: -36px;
  right: 0;
  margin: 0 auto;
  top: 296px;
  z-index: 1;
}

.gt-start-earning-anim-m1 {
  width: 82px;
  position: absolute;
  left: -10px;
  right: 0;
  margin: 0 auto;
  top: 138px;
  z-index: 1;
}

.ad-4-5 {
  animation-duration: 4.5s;
}

.ad-3 {
  animation-duration: 3s;
}

.ad-3-5 {
  animation-duration: 3.5s;
}

.gt-start-earning-anim-m2 {
  width: 76px;
  position: absolute;
  left: 40px;
  right: 0;
  margin: 0 auto;
  top: 56px;
  z-index: 1;
  opacity: 0.80;
}

.gt-start-earning-anim-m3 {
  width: 76px;
  position: absolute;
  left: -90px;
  right: 0;
  margin: 0 auto;
  top: 0px;
  z-index: 1;
  opacity: 0.80;
}

.gt-transparency-anim-bg {
  width: 100%;
  max-width: 115%;
  position: relative;
  left: -20px;
}

.rain {
  -webkit-animation: rain infinite 2s ease-in-out;
  -moz-animation: rain infinite 2s ease-in-out;
  animation: rain infinite 2s ease-in-out;
  animation-fill-mode: forwards;
}

.gt-transparency-anim-rain-1 {
  width: 100%;
  position: absolute;
  left: 0;
  top: -100px;
}

.ad-2-5 {
  animation-duration: 2.5s;
}

.gt-transparency-anim-rain-2 {
  width: 100%;
  position: absolute;
  left: 0;
  top: -100px;
}

.cloudmove-1 {
  -webkit-animation: cloudmove-1 infinite 5s ease-in-out;
  -moz-animation: cloudmove-1 infinite 5s ease-in-out;
  animation: cloudmove-1 infinite 5s ease-in-out;
  animation-fill-mode: forwards;
}

.gt-transparency-anim-cloud-1 {
  width: 180px;
  position: absolute;
  left: 0;
  top: 30px;
}

.gt-transparency-anim-cloud-2 {
  width: 130px;
  position: absolute;
  right: 20px;
  top: 10px;
}

.cloudmove-2 {
  -webkit-animation: cloudmove-2 infinite 4s ease-in-out;
  -moz-animation: cloudmove-2 infinite 4s ease-in-out;
  animation: cloudmove-2 infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}

.about-bg {
  position: relative;

}

.blue-back {
  background: #2e39bf;
  overflow: hidden;
}

.blue-back:before {
  height: 100%;
  content: '';
  width: 100%;
  left: 0;
  bottom: 0px;
  opacity: .5;
  background: url(../img/core-img/wire.html) repeat;
  position: absolute;
}

@media (min-width: 1200px) {
  .about-bg {
    background: url(../img/bg-img/about-bg.html) no-repeat right top;
    background-size: contain;
    position: absolute;
    width: 71%;
    height: 100%;
    content: '';
    right: -18%;
    top: 0;
    z-index: -1;
  }
}

.who-we-contant h4 {
  margin-bottom: 20px;
  font-size: 30px;
  color: #13287e;
  font-weight: 600
}

.our-mission-area {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  height: 400px !important;
}

.our-mission-content {
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(72, 52, 212, 0.95);
  background: -webkit-linear-gradient(to right, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
  background: -webkit-linear-gradient(left, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
  background: linear-gradient(to right, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
}

.single-mission {
  position: relative;
  z-index: 1;
  text-align: center;
}

.single-mission i {
  font-size: 50px;
  margin-bottom: 30px;
  display: block;
  color: #fff;
}

.single-mission h6 {
  margin-bottom: 15px;
}

.single-mission p {
  margin-top: 0;
  margin-bottom: 0
}

.preview-thumb {
  position: relative;
}

.preview-thumb .preview-mobile {
  position: absolute;
  left: 16%;
  top: 5%
}

.moving-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200rem;
  height: 70%;
  font-size: 260px;
  font-weight: bold;
  text-transform: uppercase;
  color: #f9f9f9;
  visibility: inherit;
  background: transparent url(../img/core-img/crypto.html) repeat-x scroll 0 100%;
  -webkit-animation: cloudwash 120s linear infinite;
  -moz-animation: cloudwash 120s linear infinite;
  animation: cloudwash 10s linear infinite;
}

@-webkit-keyframes cloudwash {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes cloudwash {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

.welcome-meter {
  position: relative;
  z-index: 1;
}

.welcome-meter.arficial {
  position: relative;
  z-index: 1;
  height: 427px;
  background: url(../img/svg/ai-illustration.html) no-repeat;
  background-size: 137%;
  background-position: center center;
}

@media (max-width: 992px) {
  .welcome-meter.arficial {
    background-size: 100%;
  }

  .ab-wrapper.v2 {
    margin-bottom: 50px
  }
}

.growing-company p {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}

.growing-company p .counter {
  color: #fff;
}

.box-shadow:hover {
  -webkit-box-shadow: 0px 25px 36px 0px rgba(154, 161, 171, 0.24);
  box-shadow: 0px 25px 36px 0px rgba(154, 161, 171, 0.24);
  top: -3px;
}

.article {
  background: #fff;
  padding: 45px 15px;
  border: 1px solid #00dcd8;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 5px;
  transition: all .4s ease-in-out;
}

.article.special {
  background: #edf6fd;
  border: none;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 0px 0px 15px 0px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.intro .article.special {
  padding: 15px;
}

.service-img {
  width: 100%;
  min-height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

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

@media (max-width: 1400px) {
  .service-img img {
    max-height: 235px;
  }
}

.service-content {
  padding: 0px 15px;
}



.art-icon {
  background: linear-gradient(40deg, #121c3d, #0b4eb3);
  border-radius: 50%;
  padding: 20px;
  border: none;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.article.special2 img {
  border-color: #fff
}

.articlev2 {
  background: #fff;
  border: none;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 5px;
  transition: all .4s ease-in-out;
  padding: 35px 15px 15px;
  border-bottom: 3px solid orange
}

.articlev2 img {
  margin-bottom: 10px
}

.hos-article {
  border: 1px solid #00dcd8;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 5px;
  transition: all .4s ease-in-out;
}

.article__icon {
  font-size: 40px;
  position: relative;
  color: #00dcd8;
}

.article__icon .flag-img {
  position: absolute;
  bottom: 19.8%;
  width: 30px;
  right: 12.7%;
}

.article__title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #13287e;
}

.article p {
  color: #888;
  margin-bottom: 0
}

.article.special2 {
  background: #2da4ee;
  text-align: center;
  border: none;
}

.article.special2 img {
  margin-bottom: 20px
}

.article.special2 .article__title {
  color: #fff;
}

.article.special2 p {
  color: #f1ebeb
}

.intro {
  margin-top: -100px;
}

.cont-info {
  color: #fff !important;
  margin-top: 15px
}

.con-info {
  background: url(../img/panelbg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  text-align: left;
  position: relative;
  padding: 100px 0px;
}

.con-info:before {
  background: #37374a;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  opacity: 0.9;
  width: 100%;
  height: 100%
}

/*** 

====================================================================
  services-block-four style
====================================================================

***/
.features {
  position: relative;
}

.services-block-four {
  position: relative;
  margin-bottom: 30px;
  background: #fff
}

.icon-img-box {
  position: absolute;
  left: 0;
  top: 0;
}

.icon-font-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #2da4ee
}

.res-features {
  background: url(../img/team-img/food/res-features.html) no-repeat center center;
  background-size: cover
}

.res-features .services-block-four:hover .icon-img-box {
  background: #444
}

.res-features .icon-img-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 55px;
  width: 55px;
  transition: all .5s ease-in-out;
  line-height: 50px;
  text-align: center;
  background: #cb202d;
}

.icon-font-box i {
  font-size: 24px;
  font-weight: 500;
  color: #2da4ee;
}

@media (max-width: 480px) {

  .icon-img-box,
  .icon-font-box {
    position: relative;
    margin-bottom: 15px
  }

  .icon-font-box .width-80 {
    width: 100% !important
  }

  .services-block-four .inner-box {
    padding-left: 0px !important;
  }
}

.services-block-four .inner-box {
  position: relative;
  padding-left: 100px;
}

.services-block-four.v2 {
  background: transparent;
}

.services-block-four.v3 {
  background: #fff;
}

.has-border-bottom {
  border-bottom: 3px solid orange
}

.services-block-four.v2 .inner-box {
  position: relative;
  padding-left: 70px;
}

.services-block-four.v2 .inner-box .icon-img-box {
  max-width: 50px
}

.services-block-four.v3 .inner-box {
  padding-left: 70px;
}

.services-block-four.v4 {
  position: relative;
  background: transparent;
  padding: 20px 0;
}

.services-block-four.v4 .inner-box {
  padding-left: 85px;
}

.services-block-four.v4:after {
  content: '';
  position: absolute;
  width: 95%;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 15px;
  z-index: -1;
  background: rgba(106, 102, 102, 0.05)
}

.services-block-four.v4 .icon-img-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.services-block-four.v4 .inner-box .text {
  margin-bottom: 0
}

.bg-ring {
  background: url(../img/bg-img/bread-bg.html) no-repeat center center;
  background-size: cover;
}

.features .services-block-four {
  box-shadow: 0px 2px 27px 0px rgba(154, 161, 171, 0.18);
  -webkit-box-shadow: 0px 2px 27px 0px rgba(154, 161, 171, 0.18);
  padding: 30px 20px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.special .services-block-four {
  box-shadow: 0px 2px 27px 0px rgba(154, 161, 171, 0.18);
  -webkit-box-shadow: 0px 2px 27px 0px rgba(154, 161, 171, 0.18);
  padding: 20px 20px 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.special .services-block-four .inner-box {
  position: relative;
  padding-left: 160px;
}

.demo-video.features .services-block-four {
  padding: 25px 20px 15px;
  margin-bottom: 20px
}

.licenes .services-block-four .inner-box .icon-box {
  font-size: 56px;
  border-radius: 0%
}

.licenes .services-block-four .inner-box .icon-box:after {
  border-radius: 0%
}

.services-block-four .inner-box .icon-box:after,
.services-block-four .inner-box .icon-box:before {
  background: #25cbd3
}

.services-block-four .inner-box .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  border: 2px solid;
  font-size: 40px;
  line-height: 98px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px !important;
  transition: .3s ease;
}

.service-img-wrapper .image-box {
  position: relative;
}

@media (max-width: 1200px) {
  .service-img-wrapper .image-box .rings {
    left: 3% !important;
  }

  .service-img-wrapper .image-box {
    margin-top: 0 !important
  }
}

@media (min-width: 992px) {
  .special-size {
    max-width: 140%;
    margin-left: -100px
  }
}

@media (max-width: 992px) {
  .service-img-wrapper .image-box {
    margin-top: 30px !important
  }

  .service-img-wrapper .image-box.no-mt {
    margin-top: 0px !important
  }

  .service-img-wrapper .phone-img {
    padding: 0 10% !important
  }

  .service-img-wrapper .image-box .rings {
    left: 17% !important;
    width: 66%;
  }
}

.service-img-wrapper .image-box .rings {
  position: absolute;
  top: 50%;
  z-index: -1;
  margin: 0 auto;
  left: 50%;
  max-width: 90%;
  transform: translate(-50%, -50%);
}

.services-block-four .inner-box .icon-box span {
  position: relative;
  z-index: 99;
}

.services-block-four .inner-box:hover .icon-box,
.services-block-four .inner-box:hover .icon-box span {
  color: #fff;
  transition: .5s ease;
}

.services-block-four .inner-box .icon-box:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0);
  transition: .7s ease;

}

.services-block-four .inner-box:hover .icon-box:after {
  transform: scale(1);
  transition: .7s ease;
}

.services-block-four .inner-box .icon-box:before {
  position: absolute;
  content: '';
  left: 50%;
  top: 100%;
  width: 1px;
  height: 95%;
  background: #25cbd3
}

.services-block-four:last-child .inner-box .icon-box:before {
  display: none;
}

.services-block-four .inner-box h3 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.services-block-four.how .inner-box {
  padding-left: 70px
}

.services-block-four.how {
  padding: 30px;
  margin-bottom: 30px;
  background: #fff
}

@media (max-width: 992px) {
  .service-img-wrapper.how .image-box img {
    width: 100%;
    margin-bottom: 50px
  }
}

.services-block-four .inner-box .step {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  border: 2px solid;
  background: #7d60f9;
  border-color: #7d60f9;
  font-size: 18px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 20px !important;
  transition: .3s ease;
}

.services-block-four.how .inner-box .text {
  margin-bottom: 0
}

.services-block-four .inner-box h3 a {
  color: #fff;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-four .inner-box .icon-box {
  color: #25cbd3
}

.services-block-four .inner-box h3 a:hover {}

.services-block-four .inner-box .text {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
  margin-bottom: 10px;
}

.services-block-four .inner-box .read-more {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.services-block-four .inner-box .read-more:hover {
  color: #253267;
}

.floating {
  animation: floating2 7s infinite;
  -webkit-animation: floating2 7s infinite;
}

@media (min-width: 992px) {
  .service-img-wrapper .image-box {
    margin-top: 0px;
  }
}

@media (max-width: 992px) {
  .service-img-wrapper .image-box img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .services-block-four {
    margin-bottom: 40px
  }
}

@media (max-width: 480px) {
  .services-block-four .inner-box .step {
    position: relative;
  }
}

.service-img-wrapper .image-box {
  position: relative;
}

@keyframes floating2 {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    -webkit-transform: rotateX(0deg) translateY(15px);
    -moz-transform: rotateX(0deg) translateY(15px);
    -ms-transform: rotateX(0deg) translateY(15px);
    -o-transform: rotateX(0deg) translateY(15px);
    transform: rotateX(0deg) translateY(15px);
  }

  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}

@-webkit-keyframes floating2 {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    -webkit-transform: rotateX(0deg) translateY(15px);
    -moz-transform: rotateX(0deg) translateY(15px);
    -ms-transform: rotateX(0deg) translateY(15px);
    -o-transform: rotateX(0deg) translateY(15px);
    transform: rotateX(0deg) translateY(15px);
  }

  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}

.features-list {
  background: url(../img/core-img/feature-bg.html) no-repeat center center;
  background-size: cover;
  padding: 30px;
  border-radius: 20px;
}

.features-list.v2 {
  background-image: linear-gradient(35deg, #17EAD9 0%, #6078EA 100%);
  background-image: -webkit-linear-gradient(35deg, #17EAD9 0%, #6078EA 100%)
}

.features-list.v3 {
  background: #1e3953;
  padding: 50px 30px
}

.list-marked li {
  top: 8px;
  padding: 7px 0;
  color: #fff;
  left: 0;
}

.list-marked i {
  font-weight: normal;
  margin-right: 10px;
  color: cyan;
  border: 1px solid cyan;
  padding: 5px;
  line-height: 30px;
  text-align: center;
  background: transparent;
  width: 30px;
  height: 30px;
}

.counter-boxed-warrper {
  overflow: hidden;
  position: relative;
  box-shadow: 0px 2px 27px 0px rgba(154, 161, 171, 0.18);
  -webkit-box-shadow: 0px 2px 27px 0px rgba(154, 161, 171, 0.18);
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  border-radius: 0 20px 20px 0;
  padding-bottom: 30px;
}

.counter-boxed-warrper.v3 {
  background: #1e3953;
}

.counter-boxed-warrper:before {
  content: '';
  width: 100%;
  height: 64%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f1f6fc;
  z-index: -1;
  border-radius: 0 0px 274px 0px;
}

.counter-boxed {
  padding: 30px 20px 0;
}

.counter-boxed .counter {
  font-size: 36px
}

.box-list .text-bismark {
  color: #96aabf;
  font-size: 16px
}

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

/*** 

====================================================================
  Fun-Facts Section styles
====================================================================

***/

.fact-item {
  position: relative;
  margin-bottom: 30px
}

.fact-item img {
  width: 64px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.fact-item .fact-info {
  display: inline-block;
  padding-left: 85px;
}

.fact-item .fact-number {
  font-size: 32px;
  line-height: 33px;
}

.fact-item .fact-header {
  padding-top: 5px;
  font-size: 17px;
}

/* ===================================================================
        SCREENSHOTS SECTION
===================================================================  */
.swiper-container.screenshots-slider {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 80px 0;
}

.swiper-container.screenshots-slider::before {
  content: '';
  width: 400px;
  height: 100%;
  background: url(../img/core-img/transparent-iphone.html) no-repeat;
  background-position: center center;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.swiper-container.screenshots-slider img {
  width: 255px;
}

/* Screenshots Media Query -------------------------------------------- */
@media (max-width: 450px) {
  section.screenshots .screenshots-slider::before {
    display: none !important;
  }
}


/*
* ----------------------------------------------------------------------------------------
* Start Intro Style
* ----------------------------------------------------------------------------------------
*/


.intro {
  position: relative;
  z-index: 1;
}

.beans {
  background: url(../img/team-img/food/beans.html) no-repeat;
  background-size: 23% 100%;
  background-position: right;
}

.caffen {
  background: url(../img/team-img/food/coffee.html) no-repeat;
  background-size: 25% 100%;
  background-position: right;
}

@media (max-width: 992px) {

  .beans,
  .caffen {
    background: transparent;
  }
}

.intro .no-r-l {
  padding-right: 0px;
  padding-left: 0px;
}

.intro .intro-box {
  color: #fff;
  padding: 35px 25px;
}

.intro .intro-box h4 {
  margin-top: 25px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.intro .box-1 {
  background-color: #0487d9;
}

.intro .box-2 {
  background-color: #1998e7;
}

.intro .box-3 {
  background-color: #2da4ee;
}

.intro .box-4 {
  background-color: #43adf0;
}

.intro .intro-box p {
  color: #efefef;
  margin-bottom: 0px;
  font-size: 14px
}

.img-info {
  display: inline-block;
  text-align: center;
  height: 60px;
  padding-bottom: 15px;
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .intro {
    position: relative;
    z-index: 0;
  }
}

/* Start .agency-sec*/
.agency-sec {
  background: #fff;
  padding: 50px 30px 17px
}

.side-feature-list-item.v2 {
  font-size: 14px;
  padding: 3px 0;
}

.side-feature-list-item.v2 .check-mark-icon-font {
  color: #18d7a5;
  font-size: 16px;
  width: 25px;
}

/* ##### demo-video Area CSS ##### */
.demo-video {
  position: relative;
}

.demo-video .welcome-video-area {
  margin-top: 0
}

@media (max-width: 992px) {
  .vertical-social {
    display: none !important;
  }
}

.vertical-social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #0d003b;
  height: 370px !important;
  margin-left: 30px;
  border-radius: 40px;
  padding: 30px 15px;
  z-index: 999;
  transition: 1s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: 0px 4px 13px 0 rgba(168, 67, 253, .3);
  overflow: hidden;
  border-bottom: 3px solid #a843fd;
}

.vertical-social li {
  padding: 7px 0;
  text-align: center;
}

.vertical-social li a {
  color: #fff;
  opacity: .6;
  font-size: 22px;
}

.vertical-social li a:hover {
  opacity: 1;

}

.header-social {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  left: 0;
  height: 370px !important;
  margin-left: 30px;
}

.social-text {
  position: relative;
  margin-bottom: 0;
  transform: rotate(270deg);
  text-transform: uppercase;
}

.header-social-list {
  position: relative;
  text-align: center;
  margin-top: 120px
}

.header-social-list:before {
  content: '';
  position: absolute;
  top: -65px;
  left: 50%;
  width: 2px;
  height: 50px;
  background: #fff
}

.header-social-list li {
  padding: 3px
}

.header-social-list li a {
  font-size: 16px;
  color: #fff
}

@media (max-width: 767px) {
  .header-social {
    display: none;
  }
}

.restaurant-head {
  font: 500 44px 'Great Vibes', cursive;
  text-transform: capitalize;
  color: #cea676 !important;
  letter-spacing: 3px;
}

/* ##### trust Area CSS ##### */
.trust-section {
  position: relative;
  padding: 100px 0 60px
}

.trust-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 0 35px;
  min-height: 205px;
  padding-top: 37px;
  padding-bottom: 25px;
  box-shadow: 4px 4px 10px 0 rgba(168, 67, 253, .3);
  overflow: hidden;
  border-bottom: 3px solid #a843fd;
}

.ico-platform-logo {
  margin-bottom: 25px;
  min-height: 75px
}

.check {
  height: 40px;
  margin: 0 -10px;
  background-color: rgba(13, 0, 59, .9);
  border-radius: 5px;
  color: #25cbd3;
  position: relative;
}

.check .value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 243, 255, .5);
}

.check .check-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/svg/checkmark.html) 50% no-repeat;
  background-size: contain;
  width: 31px;
  height: 23px;
}

.gradient-section-bg {
  background-image: linear-gradient(106deg, #d787f5, #3634bb);
  background-image: -webkit-linear-gradient(106deg, #d787f5, #3634bb);
  overflow: hidden;
}

.sky-bg {
  background: url(../img/bg-img/fun-facts-bg.html) no-repeat center;
  background-size: cover;
  padding-bottom: 250px;
  position: relative;
}

.sky-bg:before {
  position: absolute;
  content: "";
  top: 0;
  background: rgb(23 52 195 / 70%);
  left: 0;
  width: 100%;
  height: 100%;
}

.after-sky {
  position: absolute;
  bottom: 0;
}

.gray-bg {
  background: #f4f4f7
}

.gray1-bg {
  background: #d5ddfe
}

.transparent {
  background: transparent !important
}

.hos-sec-1 {
  background: url(../img/bg-img/hos-sec-1.html) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.corporate-sec-bg {
  background: url(../img/bg-img/corporate-sec-bg.html) no-repeat center center;
  background-size: cover
}

.resturant-bg-2 {
  background: url(../img/bg-img/resturant-bg-2.html) no-repeat center bottom;
  background-size: cover
}

.world-map {
  background: url(../img/bg-img/world-map.html) no-repeat center center;
  background-size: cover
}

.coffee-bg {
  background: url(../img/bg-img/coffee-bg.html) no-repeat center bottom;
  background-size: cover
}

.coffee-sec {
  background: url(../img/team-img/food/coffee-bg.html) no-repeat center center;
  background-size: cover
}

.ico-about-bg {
  background: url(../img/svg/ico-about-bg.svg) no-repeat center center;
  background-size: cover
}

.ico-header4 {
  background: url(../img/team-img/ico/header-bg4.html) no-repeat top center;
  background-size: cover
}

.ico-header6 {
  background: url(../img/team-img/ico/header-bg6.html) no-repeat bottom center;
  background-size: cover
}

.striples-bg {
  position: relative;
}

.striples-bg:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  /*    background: url(../img/svg/striples-bg.svg) no-repeat top center;*/
  background-size: cover;
  -webkit-animation: floating2 7s infinite;
  -o-animation: floating2 7s infinite;
  animation: floating2 7s infinite;
}

.ico-bg1 {
  background-image: url(../img/bg-img/header-bg1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ico-bg1:before {
  content: '';
  background: rgb(17 25 66 / 20%);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.ico-bg3 {
  background-image: url(../img/bg-img/header-bg5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left
}

.ico-bg4 {
  background-image: url(../img/bg-img/header-bg2.jpg);
  background-position: top left;
  background-repeat: no-repeat;
  position: relative;
  min-height: 700px;
  padding-bottom: 100px;
  background-size: cover;
}

@media (min-width: 1200px) {
  .sity {
    max-width: 142%;
    margin-left: -30px;
    margin-top: 50px
  }

  .ico-bg1 .g-text {
    max-width: 85%
  }

  .big-font {
    font-weight: 700 !important;
    font-size: 50px !important;
  }

  .ico-bg4 {
    background-position: top right
  }
}

.w-bg {
  background: #fff !important;
}

.ico-bg4:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /*    background-color: #56220e99;*/
  background: rgb(255, 255, 255);
  background: linear-gradient(5deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.res-about {
  background: url(../img/team-img/food/about-bg.html) no-repeat center center;
  background-size: cover
}

.corporate-sec-bg2 {
  background: url(../img/bg-img/corporate-sec-bg2.html) no-repeat center center;
  background-size: cover
}

.hero-bg {
  background: url(../img/bg-img/hero-bg.html) no-repeat center;
  background-size: cover;
}

.image {
  position: relative;
  left: 0px;
  margin-bottom: -100px;
}

.image {
  position: relative;
  left: 0px;
  margin-bottom: -100px;
}

.image img {
  max-width: 72%
}

.fullscreen-bg {
  position: absolute;
  top: 0 right: 0;
  bottom: 0;
  left: 0px;
  width: 58vw;
  height: 120vh;
  overflow: hidden;
  z-index: 0;
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .8;
  width: 100%;
  height: 100%;
}

@media (min-width: 1200px) {
  .fullscreen-bg {
    top: -373px;
    left: -100px
  }
}

@media (max-width: 992px) {
  .fullscreen-bg {
    display: none
  }
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}

.globe-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  max-width: 60%;
}

.globe-text h3 {
  font-size: 36px;
  font-weight: 700 !important;
}

.numbers-box {
  margin-right: -50px
}

.numbers-box.v2 {
  margin-left: -50px;
  margin-right: 0;
}

.numbers-box h2 {
  font-size: 65px;
  font-weight: 700 !important
}

.apis-sec:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 500px;
  background: #fff;
  bottom: -200px;
  left: 0;
  -ms-transform: skewY(-6deg);
  transform: skewY(-6deg);

}

.api-box {
  padding: 50px;
  background: #fff;
  position: relative;
  margin-bottom: 30px
}

.api-box:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 42%;
  background: url(../img/team-img/ico/api1-bg.html) no-repeat;
  background-size: cover
}

.api-box.v2:before {
  background: url(../img/team-img/ico/api2-bg.html) no-repeat;
  height: 42%;
  background-size: 55%;
  background-position: right center;
}

@media (max-width: 991px) {
  .image {
    margin-bottom: 0px !important;
  }

  .image img {
    max-width: 77% !important
  }

  .numbers-box {
    margin-right: 0px
  }

  .numbers-box.v2 {
    margin-left: 0px
  }

  .clearfix-sp {
    clear: both;
  }

}

@media (max-width: 1200px) {
  .image {
    margin-bottom: -100px;
  }

  .image img {
    max-width: 90%
  }
}

.token-distribution {
  padding-bottom: 100px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .token-info-wapper {
    margin-top: 30px;
  }

  .globe-text h3 {
    font-size: 26px;
  }
}

.token-info {
  width: 100%;
  margin-bottom: 20px;
  float: left;
  display: -ms-flexbox;
  display: flex;
}

.token-info .info-wrapper {
  border: 1px solid #eee;
  border-radius: 0 10px 10px 0;
  padding: 19px 15px;
  background-color: #fff;
  width: 100%;
  position: relative;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  box-shadow: 0px 2px 27px 0px rgba(154, 161, 171, 0.18);
  -webkit-box-shadow: 0px 2px 27px 0px rgba(154, 161, 171, 0.18);
}

.token-info .info-wrapper.one {
  border-left: 7px solid #997dea
}

.token-info .info-wrapper.two {
  border-left: 7px solid #e66392
}

.token-info .info-wrapper.three {
  border-left: 7px solid #2acd72
}

.token-info .info-wrapper.four {
  border-left: 7px solid #9898ef
}

.token-info .info-wrapper.five {
  border-left: 7px solid #f5a67e
}

.info-wrapper .token-icon {
  right: 40px;
  width: 38px;
  height: 38px;
  font-size: 45px;
  line-height: 38px;
  font-weight: 700;
  opacity: 0.06;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.info-wrapper .token-icon.img {
  opacity: 1
}

.info-wrapper .token-descr {
  display: block;
  font-size: 16px;
  color: #333;
  padding-left: 10px;
  font-weight: 300;
  line-height: 1.25;
}

/* ##### steps Area CSS ##### */
.steps .item_single_content {
  background-image: linear-gradient(-177deg, #FCD3BB 7%, #F88691 90%, #F88691 100%);
  z-index: 5;
  padding: 120px 20px 40px;
  -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, .11);
  box-shadow: 0 5px 40px 0 rgba(0, 0, 0, .11);
}

.steps .box-wrapper1 {
  padding-top: 50px
}

.steps .service_icon {
  width: 125px;
  height: 125px;
  background: #fff;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 125px;
  border-radius: 50%;
}

.steps .item_single_content h6 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.steps .item_single_content p {
  margin-bottom: 0;
  color: #f8efef
}

.steps .item_single_content.specialitem {
  background: #fff;
  padding: 140px 20px 60px;
  z-index: 6;
  position: relative;
}

.steps .item_single_content.specialitem p {
  color: #888
}

.steps .item_single_content.specialitem .service_icon {
  background-image: linear-gradient(-177deg, #FCD3BB 7%, #F88691 90%, #F88691 100%);
  top: -50px
}

.car {
  max-width: 90%
}

/* ##### Service Area CSS ##### */

.service_single_content {
  position: relative;
  z-index: 1;
  transition: all .3s ease-in-out;
}

.light-version .service_single_content.food {
  background: #5a20c6;
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.light-version .service_single_content.food h6 {
  color: #fff
}

.light-version .service_single_content.food h5 {
  position: absolute;
  top: 17px;
  right: -49px;
  transform: rotate(41deg);
  background: red;
  padding: 10px 58px;
  color: #fff;
}

.pizza-prop {}

.pizza-prop li {
  padding: 5px 0
}

.pizza-prop p {
  display: inline-block;
  margin-bottom: 0;
  text-align: left;
  text-transform: uppercase;
  width: 50%;
  color: #cfc9c9 !important;
}

.pizza-prop span {
  width: 50%;
  color: #fff;
}

.service_single_content .service_icon i {
  font-size: 30px;
  margin-bottom: 20px;
  color: #fff;
  display: block;
}

.embed-video {
  max-width: 250px !important;
  height: auto !important;
}

.light-version .how .service_single_content {
  background: #fff
}

.how .service_icon {
  padding: 30px;
  position: relative;
  border: 2px solid #00dcd8;
  background-image: linear-gradient(to right, #21d397 0%, #121c3d 100%);
  max-width: 140px;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}

.how .service_icona {
  padding: 30px;
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  vertical-align: middle;
  margin-bottom: 30px;
  border: 2px solid #eee;
  max-width: 140px;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}

.how.v2 .service_icon {
  border-color: transparent;
  background-image: linear-gradient(to right, #ff9059 0, #fca336 100%)
}

@media (max-width: 992px) {
  .how {
    border-top: 1px solid #eee
  }
}

.how .service_icon .white-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.how .service_single_content:hover .service_icon {
  background: #fff
}

.how .service_single_content:hover .white-icon {
  visibility: hidden;
}

.service_icon .step-num {
  position: absolute;
  top: 0px;
  right: -10px;
  background: #21d397;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  color: #fff;
}

.service_icon {
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
}

.service_icon:before {
  content: '';
  position: absolute;
  top: -3px;
  left: -4px;
  width: 103%;
  height: 103%;
  z-index: -1;

}

.service_icon>img {
  border: 3px solid #ffdb3e;
}

.how_icon {
  margin-bottom: 20px;
  position: relative;
  ;
  display: inline-block;
}

.how_icon:before {
  content: '';
  position: absolute;
  top: -15px;
  left: -25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: -1;
  background: #ffdb3e;
}

.service_single_content h6 {
  margin-bottom: 15px;
  font-size: 22px
}

.light-version .service_single_content:hover,
.service_single_content.hovered {
  background: #287ff9
}

.service_single_content:hover h6,
.service_single_content:hover p,
.service_single_content.hovered h6,
.service_single_content.hovered p {
  color: #fff
}

.hos-features .feature_single_content {
  width: 90%;
  padding: 0;
  position: relative;
  margin-bottom: 30px
}

.feature_single_content .feature-info {
  border-radius: 5px;
  position: absolute !important;
  right: -35px;
  width: 80%;
  bottom: 18px;
  display: block;
  background: #3b61b9;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 15px 15px 14px 17px;
  color: #fff;
  overflow: hidden;
  transition: .2s ease-in-out;
  position: relative;
  text-align: left;
}

.feature_single_content.food {
  margin-bottom: 50px
}

.feature_single_content.food .service_img {
  overflow: hidden;
}

.feature_single_content.food .service_img img {
  transition: all .5s ease-in-out
}

.feature_single_content.food:hover .service_img img {
  transform: scale(1.2)
}

.feature_single_content.food .feature-info {
  width: 35%;
  background: #cb202d
}

.red-bg {
  background: #cb202d !important
}

.b-world__item-val {
  margin: 25px 0 10px 0;
  text-align: left;
}

.b-world__item-val-title {
  font: 400 10px 'Open Sans', sans-serif;
  margin-right: 10px;
}

.b-world__item-val-circles {
  display: inline-block;
}

.b-world__item-val-circles span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.b-world__item-val-circles span {
  background-color: #cb202d;
  fill: #cb202d;
}

.b-world__item-val-circles span.m-empty {
  border: 1px solid #dddddd;
  background: none !important;
}

.b-world__item-num {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 13px;
  font: 400 10px 'Open Sans', sans-serif;
  border: 1px solid #dddddd;
  margin-left: 10px;
}

.b-world__title {
  margin: 20px 0 25px 0;
  font: 600 16px 'Open Sans', sans-serif;
  padding: 0 0 0 10px;
  text-align: left;
  border-left: 3px solid #cb202d;
}

.label-chief {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #cb202d;
  font-family: 'Great Vibes', cursive;
  font-size: 25px;
  line-height: 17px;
  font-style: italic;
  text-align: center;
  border-radius: 50%;
  box-shadow: 2px 3px;
  transition: 350ms ease-out;
}

.feature_single_content .service_img img {
  width: 100%
}

.feature_single_content .feature-info:before {
  content: "\f178";
  font-family: "FontAwesome";
  font-size: 24px;
  color: #23D5AE;
  opacity: 0;
  transition: opacity .2s ease-in-out, transform .28s ease-in-out;
  -webkit-transform: translateX(-10px) scale(0);
  transform: translateX(-10px) scale(0);
  position: absolute;
  top: 10px;
  left: 14px;
}

.feature_single_content .feature-info:hover {
  background: #294481;
  padding-left: 48px;
}

.feature_single_content .feature-info:hover:before {
  opacity: 1;
  -webkit-transform: translateX(0) scale(1);
  transform: translateX(0) scale(1);
}

.side-feature-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.check-mark-icon {
  margin-right: 16px;
  width: 30px;
  height: 30px
}

.check-mark-icon-font {
  font-size: 20px;
  margin-right: 2px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  color: #5785e8;
}

.foot-c-info {
  font-weight: 500;
  color: #42526e
}

/* ##### 6.0 CTA Area CSS ##### */

.call_to_action_area {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px !important;
}

.cta-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-content-area {
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(72, 52, 212, 0.95);
  background: -webkit-linear-gradient(to right, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
  background: -webkit-linear-gradient(left, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
  background: linear-gradient(to right, rgba(72, 52, 212, 0.95), rgba(52, 31, 151, 0.95));
}

/*
* ----------------------------------------------------------------------------------------
*  START OURTEAM 2 STYLE
* ----------------------------------------------------------------------------------------
*/
.our-team {
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.our-team .team_img {
  position: relative;
  overflow: hidden;
}

.our-team .team_img:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: -100%;
  left: 0;
  transition: all 0.3s ease 0s;
}

.our-team:hover .team_img:after {
  bottom: 0;
}

.our-team img {
  width: 100%;
  height: auto;
}

.our-team .social {
  padding: 10px 0 10px 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: -100%;
  right: 30px;
  background: #cea676;
  border-radius: 0 0 20px 20px;
  z-index: 1;
  transition: all 0.3s ease 0s;
}

.our-team:hover .social {
  top: 0;
}

.our-team .social li a {
  display: block;
  padding: 10px 15px;
  font-size: 15px;
  color: #fff;
}

.our-team:hover .social li a:hover {
  color: #ffdb3e;
}

.our-team .team-content {
  padding: 20px 0;
  background: #fff;
}

.our-team .title {
  margin: 0;
  font: 600 16px 'Open Sans', sans-serif;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 30px;
  position: relative;
}

.our-team .title:before {
  content: "";
  width: 25px;
  height: 2px;
  background: #ffdb3e;
  position: absolute;
  bottom: -21px;
  right: 50%;
  margin-right: 9px;
  transition-duration: 0.25s;
}

.our-team .title:after {
  content: "";
  width: 25px;
  height: 2px;
  background: #ffdb3e;
  position: absolute;
  bottom: -21px;
  left: 50%;
  margin-left: 9px;
  transition-duration: 0.25s;
}

.our-team:hover .title:before,
.our-team:hover .title:after {
  width: 50px;
}

.our-team .post {
  display: inline-block;
  font: 500 14px 'Open Sans', sans-serif;
  color: #d8d0d0;
  text-transform: capitalize;
}

.our-team .post:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cea676;
  margin: 0 auto;
  position: relative;
  top: -13px;
}

.our-team.ico-team .social {
  background: #02298a
}

.our-team.ico-team .team-content {
  padding: 20px 0;
  background: #02298a;
}

.our-partners .team-member {
  border: 2px solid #eaeaea;
}

.our-partners .team-member {
  display: inline-block;
  padding: 10px;
  width: 100%;
  background: #fff;
  text-align: center;
  margin: 0 0 30px 0;
  transition: all .4s ease-in-out;
  border: 2px solid #eaeaea;
}

.our-partners .team-member:hover {
  cursor: pointer;
  border-color: #1d66f6;
}

.partner-img {
  margin-top: 30px
}

.half {
  width: 80px;
  height: 2px;
  background: #FFC107;
}

.who-we-contant.new {
  margin-right: -100px;
  padding: 50px;
  position: relative;
  padding-right: 100px;
  border: 10px solid #ba97f5;
  border-right: 0;
}

@media (max-width: 992px) {
  .who-we-contant.new {
    margin-right: 0;
    padding-right: 50px
  }
}

.who-we-contant.new:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 30%;
  top: 0;
  right: 0;
  background: #ba97f5
}

.seperator {
  width: 5px;
  background: #FFC107;
  text-align: center;
  height: 60%;
  margin: 0 auto
}

.icon-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  line-height: 74px;
  text-align: center;
  border-radius: 50%
}

.icon-icon img {
  max-width: 45px
}

.icon-icon.bg1 {
  background-image: linear-gradient(-12deg, #FF895B 0, #FFEC9E 100%);
}

.icon-icon.bg2 {
  background-image: linear-gradient(-151deg, #FCD3BB 0, #F88691 94%);
}

.icon-icon.bg3 {
  background-image: linear-gradient(145deg, #A2F8E4 0, #4BC39D 100%);
}

.icon-icon.bg4 {
  background: #2a57d7
}

/*
* ----------------------------------------------------------------------------------------
*  Documentaion STYLE
* ----------------------------------------------------------------------------------------
*/
.doc-box {
  position: relative;
  padding: 0 30px 30px;
  text-align: center;
  margin-bottom: 30px
}

.doc-content {
  z-index: 3;
  position: relative;
}

.doc-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to right, #14aff5, #23d0ec);
}

.indexed-label {
  background: url(../img/team-img/ico/doc-bg.html) no-repeat right center;
  color: #fff;
  font-weight: 700;
  padding: 5px 15px;
  position: absolute;
  top: 20px;
  left: 0;
  width: 60%
}

/*
* ----------------------------------------------------------------------------------------
*  compare STYLE
* ----------------------------------------------------------------------------------------
*/
.compare {
  position: relative;
  background-color: #2C225A;
  float: left;
  width: 100%;
  position: relative;
  background-image: url(../img/team-img/ico/ico-about-bg.html);
  background-size: 140%;
}

.compare .vs-text {
  position: absolute;
  top: 55px;
  border-radius: 50%;
  left: 50%;
  width: 50px;
  margin-left: -25px;
  background: rgba(7, 7, 52, 0.6);
  height: 50px;
  display: block;
  color: #fff;
  padding-top: 8px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.compare .title-box .title-center {
  color: #fff
}

.compare .title-box .description {
  color: #eaebfb
}

.compare-box {
  padding: 50px 60px 20px 60px;
  margin-bottom: 30px;
  background: linear-gradient(to right, #fe86a7, #ffa493);
}

@media (max-width: 767px) {
  .compare-box {
    padding: 30px 20px 1px;
  }
}

.compare-box-right {
  background: rgba(1, 7, 53, 0.1);
  border-bottom-right-radius: 80px;
  -webkit-box-shadow: 0 0 80px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.4);
  background: linear-gradient(to right, #14aff5, #23d0ec);
  margin-bottom: 30px
}

.compare-box .compare-heading .title {
  display: block;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 29px;
  padding-bottom: 20px;
}

.compare-box .compare-heading p {
  font-size: 18px;
  color: #41faa4;
  margin: 0;
}

.unfeat-list li {
  width: 100%;
  margin-bottom: 30px;
}

.unfeat-list li .icon {
  border: 2px solid #2cd3ee;
  border-radius: 50%;
  width: 74px;
  height: 74px;
  position: relative;
  float: left;
}

.unfeat-list li .icon img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.unfeat-list li .desc {
  overflow: hidden;
  padding-left: 20px;
}

.unfeat-list li .desc .title {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  padding-bottom: 12px;
}

.unfeat-list li .desc p {
  margin: 0;
  font-size: 14px;
  color: #eaebfb;
  line-height: 1.7;
}

.progress.prog,
.progress.prog .progress-bar {
  min-height: 25px
}

@media (max-width: 767px) {
  .progress.prog {
    display: none;
  }
}

.progress.prog .progress-bar.percent {
  margin-left: 3px;
  margin-right: 3px;
}

.br-10 {
  border-radius: 10px
}

.bg1 {
  background: #e82d53
}

.bg2 {
  background: #f2724a
}

.bg3 {
  background: #f2b94a
}

.bg4 {
  background: #94db21
}

.bg5 {
  background: #1ac995
}

.bg6 {
  background: #4cb8f5
}

.bg7 {
  background: #2f80ed
}

.bg8 {
  background: #8a27e5
}

.bg9 {
  background: #bb6bd9
}

.bg10 {
  background: #eb6cde
}

/*
* ----------------------------------------------------------------------------------------
*  START Roadmap 2 STYLE
* ----------------------------------------------------------------------------------------
*/
.section_5-content {
  width: 100%;
  padding-top: 200px;
  padding-bottom: 200px
}

.section_5-slider-trumb {
  display: inline-block;
  width: 100%;
  left: 0;
  height: 4px;
  background-color: #5892f5;
  position: relative;
  border-radius: 3px
}

#section_5-slider-circle {
  position: relative
}

#section_5-slider-circle .data_cir {
  top: 0;
  position: absolute;
  margin-left: -8px;
  margin-top: -16px;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #5892f5;
  border: 4px solid #000;
  -webkit-box-shadow: 0 0 6px 2px #5892f5;
  -moz-box-shadow: 0 0 6px 2px #5892f5;
  box-shadow: 0 0 6px 2px #5892f5
}

#section_5-slider-circle .data_cir-content {
  position: relative;
  width: 200px;
  height: auto;
  display: inline-block;
  margin-left: -60px;
  text-align: center
}

#section_5-slider-circle .data_cir-content p {
  font-size: 13px;
  color: #5892f5;
  line-height: 2
}

#section_5-slider-circle .data_cir-content>div {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center
}

.w-text {
  color: #fff !important
}

#section_5-slider-circle .data_cir-content div {
  font-size: 13px;
  color: #777;
  letter-spacing: 0;
  width: 100%;
  line-height: 20px
}

@media (max-width: 1200px) {
  #section_5-slider-circle .data_cir-content div {
    width: 94%;
    font-size: 11px
  }
}

#section_5-slider-circle .data_cir:nth-child(2n+1) .data_cir-content {
  bottom: 44px;
  -webkit-transform: translateY(-100%) translateX(-18%);
  -ms-transform: translateY(-100%) translateX(-18%);
  -moz-transform: translateY(-100%) translateX(-18%);
  -o-transform: translateY(-100%) translateX(-18%);
  transform: translateY(-100%) translateX(-18%)
}

#section_5-slider-circle .data_cir:nth-child(2n) .data_cir-content {
  top: 55px;
  -webkit-transform: translateX(-18%);
  -ms-transform: translateX(-18%);
  -moz-transform: translateX(-18%);
  -o-transform: translateX(-18%);
  transform: translateX(-18%)
}

#section_5-slider-circle .data_cir:nth-child(2n) .data_cir-content .roadmap_img {
  -ms-order: -1;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  -webkit-order: -1;
  -moz-box-ordinal-group: 0;
  order: -1
}

#section_5-slider-circle .data_cir:nth-child(2n) .roadmap_content_info {
  margin-top: 20px
}

#section_5-slider-circle .data_cir:nth-child(2n+1) .roadmap_content_info {
  margin-bottom: 20px
}

#section_5-slider-circle .data_cir .data_cir-content ul {
  text-align: left;
  position: relative
}

#section_5-slider-circle .data_cir .data_cir-content ul::before {
  content: '';
  position: absolute;
  border-left: 1px solid #5892f5;
  left: -14px;
  opacity: .2;
  width: 45%;
  height: -webkit-calc(100% + 37px);
  height: -moz-calc(100% + 37px);
  height: calc(100% + 37px)
}

#section_5-slider-circle .data_cir:nth-child(2n) .data_cir-content ul::before {
  border-top: 1px solid #5892f5;
  margin-top: -46px
}

#section_5-slider-circle .data_cir:nth-child(2n+1) .data_cir-content ul::before {
  border-bottom: 1px solid #5892f5;
  margin-top: 10px
}

#section_5-slider-circle .data_cir .data_cir-content ul li {
  padding-left: 5px;
  list-style: disc;
  color: #5892f5
}

#section_5-slider-circle .data_cir .data_cir-content ul li span {
  color: #777
}

.roadmap .section-heading>p {
  padding-left: 15px;
  padding-right: 15px
}

#section_5-slider-circle .data_cir .data_cir-content .roadmap_img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #5892f5;
  -webkit-box-shadow: 0 0 6px 1px rgba(0, 228, 255, .5);
  -moz-box-shadow: 0 0 6px 1px rgba(0, 228, 255, .5);
  box-shadow: 0 0 6px 1px rgba(0, 228, 255, .5)
}

#section_5-slider-circle .data_cir::before {
  content: '';
  opacity: .6;
  position: absolute;
  display: block;
  width: 1px;
  height: 40px;
  background-color: #5892f5;
  left: -webkit-calc(50% - 1px);
  left: -moz-calc(50% - 1px);
  left: calc(50% - 1px)
}

#section_5-slider-circle .data_cir:nth-child(2n+1)::before {
  top: -44px
}

#section_5-slider-circle .data_cir:nth-child(2n)::before {
  top: 17px
}

#section_5-slider-circle .data_cir::after {
  content: attr(data-date);
  position: absolute;
  display: block;
  color: #13287e;
  color: #777;
  width: 50px;
  color: #fff;
  font-size: 12px;
  left: 0;
  text-align: center;
  -webkit-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%)
}

.form-block-rcl>.login-message {
  color: #fff;
}

#section_5-slider-circle .data_cir:nth-child(2n+1)::after {
  top: 30px
}

#section_5-slider-circle .data_cir:nth-child(2n)::after {
  top: -45px
}

#section_5-slider-circle .data_cir.next {
  background-color: #000;
  border: 4px solid #000;
  -webkit-box-shadow: 0 0 6px 2px #5892f5;
  -moz-box-shadow: 0 0 6px 2px #5892f5;
  box-shadow: 0 0 6px 2px #5892f5
}

@media (max-width: 992px) {
  .section_5-slider-trumb {
    width: 4px;
    height: -webkit-calc(100% - 4px);
    height: -moz-calc(100% - 4px);
    height: calc(100% - 4px);
    top: 4px;
    position: absolute;
    left: -webkit-calc(45vw + 8px);
    left: -moz-calc(45vw + 8px);
    left: calc(45vw + 8px);
  }

  .section_5-content {
    position: relative;
  }

  .section_5-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  #section_5-slider-trumb {
    width: 4px;
    height: -webkit-calc(100% - 4px);
    height: -moz-calc(100% - 4px);
    height: calc(100% - 4px);
    top: 4px;
    position: absolute;
    left: -webkit-calc(45vw + 8px);
    left: -moz-calc(45vw + 8px);
    left: calc(45vw + 8px);
  }

  #section_5-slider-circle .data_cir {
    margin-top: 0px;
    margin-bottom: 150px;
    position: relative;
    left: 0 !important;
    margin-left: -webkit-calc(45vw + 2px);
    margin-left: -moz-calc(45vw + 2px);
    margin-left: calc(45vw + 2px);
  }

  #section_5-slider-circle .data_cir:last-child {
    margin-bottom: 0 !important
  }

  #section_5-slider-circle .data_cir::before {
    top: 3px !important;
    height: 1px;
    width: 40px;
    left: auto;
    right: 14px;
  }

  #section_5-slider-circle .data_cir-content {
    margin-left: 60px;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
    transform: translateY(0) !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 250px;
  }

  #section_5-slider-circle .data_cir-content div {
    width: 100%;
    font-size: 14px;
  }

  #section_5-slider-circle .data_cir:nth-child(2n) .data_cir-content ul::before,
  #section_5-slider-circle .data_cir:nth-child(2n+1) .data_cir-content ul::before {
    display: none;
  }

  #section_5-slider-circle .data_cir:first-child .data_cir-content>div {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
    text-align: left;
  }

  #section_5-slider-circle .data_cir-content>div {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    height: auto;
  }

  .roadmap_img {
    display: none !important;
  }

  #section_5-slider-circle .data_cir::after {
    left: auto;
    right: 55px;
    color: #13287e;
    padding: 5px 7px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    top: 4px !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #5892f5;
  }

  #section_5-slider-circle .data_cir::after {
    width: 70px;
  }

}


/*
* ----------------------------------------------------------------------------------------
*  START Roadmap STYLE
* ----------------------------------------------------------------------------------------
*/
.timeline-split {
  position: relative;
  width: 100%
}

.timeline-split .timeline {
  position: relative;
  padding: 50px;
  overflow: hidden
}

.timeline-split .timeline h3 {
  font-size: 22px;
  color: #25cbd3
}

.timeline-split .timeline span {
  color: #666;
  display: block;
  margin-bottom: 10px
}

/*top circle */
.timeline-split .timeline::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  background: #25cbd3;
  left: calc(50% - 10px);
}

/*vertival line */
.timeline-split .timeline::after {
  content: "";
  width: 2px;
  height: 4000px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  left: calc(50% - 1px);
  background: #25cbd3;
}

/*timeline block */
.timeline-split .timeline .block {
  width: 50%;
  padding: 30px;
  background: #0d003b;
  border: 1px solid #25cbd3;
  width: calc(50% - 74px);
  text-align: left;
  position: relative;
}

.timeline .block .date {
  padding: 5px 10px;
  display: inline-block;
  background: #25cbd3;
  margin: 10px 0;
  color: #fff;
  font-size: 13px;
  border-radius: 15px;
}

.timeline .block .between {
  padding: 5px 10px;
  display: inline-block;
  color: #fff;
}

/*block marker */
.timeline-split .timeline .block::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  background: #25cbd3;
  top: 30px;
}

.timeline-split .timeline .block.block-left::after,
.timeline-split .timeline .block.block-right::after {
  content: "";
  width: 79px;
  height: 2px;
  position: absolute;
  background: #25cbd3;
  top: 34px;
  z-index: 0;
  right: -78px;
}

.timeline-split .timeline .block.block-right::after {
  left: -80px
}

/*left block */
.timeline-split .timeline .block.block-left {
  text-align: right;
}

.timeline-split .timeline .block.block-left::before {
  right: -80px;
}

.timeline .block p {
  margin-bottom: 0
}

/*right block */
.timeline-split .timeline .block.block-right {
  text-align: left;
  margin-left: 50%;
  margin-left: calc(50% + 74px);
}

.timeline-split .timeline .block.block-right::before {
  left: -80px;
}

/*decrease the timeline heading text */
@media (max-width: 992px) {
  .timeline-split .timeline {
    padding: 50px 20px;
  }

  .timeline-split .timeline h3 {
    font-size: 19px;
  }
}

/*change timeline layout to fit tiny screen size */
@media (max-width: 992px) {
  .timeline-split .timeline .block.block-left::after {
    left: -80px;
  }

  .timeline-split .timeline::after {
    left: 9px;
  }

  .timeline-split .timeline::before {
    left: 0;
  }

  .timeline-split .timeline .circle {
    left: 2px;
  }

  .timeline-split .timeline .block {
    width: 100% !important;
    text-align: left;
    padding-left: 20px;
  }

  .timeline-split .timeline .block::before {
    left: -15px;
  }

  .timeline-split .timeline .block.block-left {
    text-align: left;
  }

  .timeline-split .timeline .block.block-right {
    margin-left: 0;
  }

  .timeline-split .timeline .block.block-right::before {
    left: -15px;
  }

  .mt-30 {
    margin-top: 30px
  }
}


/* Roadmap style 2*/

.main-timeline {
  position: relative
}

.main-timeline:before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #c6c6c6;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.main-timeline .timeline {
  margin-bottom: 40px;
  position: relative
}

.main-timeline .timeline:after {
  content: "";
  display: block;
  clear: both
}

.main-timeline .icon {
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0
}

.main-timeline .icon:before,
.main-timeline .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 0;
  transition: all 0.33s ease-out 0s
}

.main-timeline .icon:before {
  background: #fff;
  border: 2px solid #232323;
  left: -3px
}

.main-timeline .icon:after {
  border: 2px solid #c6c6c6;
  left: 3px
}

.main-timeline .timeline:hover .icon:before {
  left: 3px
}

.main-timeline .timeline:hover .icon:after {
  left: -3px
}

.main-timeline .date-content {
  width: 50%;
  float: left;
  margin-top: 22px;
  position: relative
}

.main-timeline .date-content:before {
  content: "";
  width: 36.5%;
  height: 2px;
  background: #00e0c4;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0
}

.main-timeline .date-outer {
  width: 125px;
  height: 125px;
  font-size: 16px;
  text-align: center;
  margin: auto;
  z-index: 1
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
  content: "";
  width: 125px;
  height: 125px;
  margin: 0 auto;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.33s ease-out 0s
}

.main-timeline .date-outer:before {
  background: #fff;
  border: 2px solid #232323;
  left: -6px
}

.main-timeline .date-outer:after {
  border: 2px solid #00e0c4;
  left: 6px
}

.main-timeline .timeline:hover .date-outer:before {
  left: 6px
}

.main-timeline .timeline:hover .date-outer:after {
  left: -6px
}

.main-timeline .date {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 27%;
  left: 0
}

.main-timeline .month {
  font-size: 18px;
  font-weight: 700
}

.main-timeline .year {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #232323;
  line-height: 36px
}

.main-timeline .timeline-content {
  width: 50%;
  padding: 20px 0 20px 50px;
  float: right
}

.main-timeline .title {
  font-size: 19px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  margin: 0 0 15px 0
}

.main-timeline .description {
  margin-bottom: 0;
  font-size: 14px;
  color: #d8d0d0
}

.main-timeline .timeline:nth-child(2n) .date-content {
  float: right
}

.main-timeline .timeline:nth-child(2n) .date-content:before {
  left: 10px
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
  padding: 20px 50px 20px 0;
  text-align: right
}

.main-timeline .timeline:last-child {
  margin-bottom: 0
}

@media only screen and (max-width: 991px) {
  .main-timeline .date-content {
    margin-top: 35px
  }

  .main-timeline .date-content:before {
    width: 22.5%
  }

  .main-timeline .timeline-content {
    padding: 10px 0 10px 30px
  }

  .main-timeline .title {
    font-size: 17px
  }

  .main-timeline .timeline:nth-child(2n) .timeline-content {
    padding: 10px 30px 10px 0
  }
}

@media only screen and (max-width: 767px) {
  .main-timeline:before {
    margin: 0;
    left: 7px
  }

  .main-timeline .timeline {
    margin-bottom: 30px
  }

  .main-timeline .timeline:last-child {
    margin-bottom: 0
  }

  .main-timeline .icon {
    margin: auto 0
  }

  .main-timeline .date-content {
    width: 95%;
    float: right;
    margin-top: 0
  }

  .main-timeline .date-content:before {
    display: none
  }

  .main-timeline .date-outer {
    width: 110px;
    height: 110px
  }

  .main-timeline .date-outer:before,
  .main-timeline .date-outer:after {
    width: 110px;
    height: 110px
  }

  .main-timeline .date {
    top: 30%
  }

  .main-timeline .year {
    font-size: 24px
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    width: 95%;
    text-align: center;
    padding: 10px 0
  }

  .main-timeline .title {
    margin-bottom: 10px
  }
}

.d-sec {
  background: #123d88;
  position: relative;
}

.d-sec:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/core-img/mapp.png) no-repeat center;
  background-size: cover;
}

/* ##### 7.0 Video Area CSS ##### */

.mfp-wrap {
  z-index: 6000;
}

.mfp-bg {
  z-index: 5500;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  right: 0;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  line-height: 40px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  padding-right: 0;
}

.mfp-iframe-holder .mfp-close {
  top: 0;
}

/* ##### 9.0 Gallry Item Area CSS ##### */

.single_gallery_item {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 30px;
}

.gallery-hover-overlay {
  position: absolute;
  width: calc(100% - 30px);
  height: 100%;
  top: 0;
  left: 15px;
  z-index: 10;
  background-color: rgba(72, 52, 212, 0.8);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  padding: 30px;
  text-align: center;
}

.single_gallery_item:hover .gallery-hover-overlay {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

.portfolio-menu button {
  line-height: 1;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 15px 5px;
  border-radius: 30px;
}

.portfolio-menu button.active {
  color: #fff;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.port-more-view i {
  color: #69dec4;
  font-size: 20px;
  margin-top: 30px;
}

.port-more-view>a {
  color: #fff;
}

.port-hover-text h3 {
  font-size: 14px;
  color: #d8d0d0 !important;
  margin-bottom: 0;
}

.port-hover-text>a {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: capitalize;
}

/* ##### 10.0 Cool Fact Area CSS ##### */

.cool-facts-area {
  padding: 100px 0;
  background: url(../img/bg-img/header-bg2.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}

.cool-facts-area .video-icon {
  position: relative;
  top: inherit;
  transform: translate(-50%)
}

.fact-wrapper {
  margin-top: -100px
}

.cool-facts-area:before {
  position: absolute;
  content: "";
  top: 0;
  background: rgb(8 19 74 / 50%);
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
}

.cool-facts-area .container {
  position: relative;
  z-index: 2;
}

.fact-bg1 {
  background-color: #d9261c;
}

.fact-bg2 {
  background-color: #171347;
}

.single_cool_fact {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 30px;
  margin-bottom: 30px
}


.cool_fact_icon i {
  font-size: 40px;
  margin-top: 15px;
  color: #fff;
}

.cool_fact_detail h3 {
  color: #fff !important;
  font-weight: 700;
  font-size: 54px;
  line-height: 1.2;
  margin-top: 15px;
}

.cool_fact_detail h2 {
  font-size: 14px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/*** 

====================================================================
    Facts
====================================================================

 ***/
.facts .left-crown {
  left: inherit;
  right: -6.7%
}

.facts .next-section {
  right: inherit;
}

.fact-box {
  position: relative;
  margin-top: 26px;
}

.fact-box .inner {
  position: relative;
  padding: 50px 15px 30px;
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid #2ec8a6;
  border-radius: 0px 0px 5px 5px;
  border-top: none;
}

.fact-box .inner:before {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  width: 60px;
  border-bottom: 2px solid #2ec8a6;
}

.fact-box .inner::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
  border-bottom: 2px solid #2ec8a6;
}

.fact-box .icon-box {
  position: absolute;
  left: 50%;
  top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  line-height: 48px;
  font-size: 42px;
}

.fact-box .content {
  position: relative;
}

.count-outer {
  position: relative;
  font-size: 42px;
  line-height: 1.4em;
  font-weight: 700;
  color: #333;
  margin-bottom: 7px;
}

.count-outer .count-text {
  font-weight: 700;
}

.fact-box .counter-title {
  position: relative;
  font-size: 13px;
  line-height: 30px;
  font-weight: 600;
  color: #333;
}

.about-con {
  background: #EEF1F4;
  padding: 50px 40px;
}

@media (max-width:992px) {
  .about-con {
    padding: 50px 30px
  }
}

@media (max-width:767px) {
  .about-con {
    padding: 50px 15px
  }
}

@media (max-width:992px) {
  .fact-box-sm {
    margin-top: 60px !important
  }
}

@media (max-width:767px) {
  .fact-box-xs {
    margin-top: 60px !important
  }
}



/* ##### 11.0 Price Table Area CSS ##### */

.single_price_table_content {
  margin-bottom: 30px;
  background: #fff;
  position: relative;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 6px;
}

.single_price_table_content.active {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.price_table_text {
  margin-bottom: 0px;
  background: #fff;
  padding: 40px 20px
}

.price_table_text .pricing-icon {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px
}

.price_table_text.differ {
  background: #ffdb3e
}

.price_table_text>h5 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;

}

.table_btn {
  margin: 50px
}

.price_table_text>h1 {
  font-size: 48px;
  margin-bottom: 0px;
  line-height: 1;
  color: #13287e
}

.price_table_text>p,
.table_text_details>p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
}

.differ {
  background: #287ff9 !important
}

.differ .table_text_details>p {
  color: #fff
}

.table_text_details>p {
  margin-bottom: 20px;
}

/* ##### 12.0 testimonial Area CSS ##### */
.single-testimonial {
  border-radius: 0px;
  border: 2px solid #eee;
  position: relative;
  margin: 30px 15px 0;
  overflow: visible;
  padding: 30px 20px;
  background: #fff;
}

.icon_wrapper:after {
  content: '';
  width: 100px;
  height: 100px;
  text-align: center;
  border-radius: 50%;
  background: #cb202d;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}

.single-testimonial .icon_wrapper:after {
  display: none;
}

.single-testimonial .icon_wrapper i {
  top: 30px;
  right: 35px;
  color: #d9261c;
  font-size: 75px;
  text-align: right;
  text-shadow: 0 4px 8px rgb(249 108 40 / 50%);
  z-index: 0;
  position: absolute;
}

.icon_wrapper img {
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 41px;
  color: #fff;
  z-index: 3;
  position: absolute;
}

.icon_wrapper i {
  top: 20px;
  left: 15px;
  color: #fff;
  font-size: 36px;
  z-index: 3;
  position: absolute;
}


.icon_foot:before {
  content: '';
  border-left: 80px solid transparent;
  border-bottom: 80px solid #2ec8a6;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.icon_foot img {
  top: 20px;
  left: 12px;
  max-width: 41px;
  color: #fff;
  z-index: 3;
  position: absolute;
}

.icon_foot i {
  bottom: 12px;
  right: 8px;
  color: #fff;
  font-size: 28px;
  z-index: 3;
  position: absolute;
  transition: all .4s ease-in-out;
}

.icon_foot:hover i {
  right: 5px;
}

.testimonial-description {
  position: relative;
  z-index: 2;
  background-color: transparent;
  text-align: left;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.testimonial_image {
  height: 100px;
  width: 100px;
  margin-right: 20px
}

.testimonial_image>img {
  border-radius: 50%;
}

.test-stars {
  position: relative;
}

.test-stars i {
  color: #f3961b
}

.testimonial_text>p {
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 25px;
  font-size: 14px;
}

.admin_text>h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 0;
  margin-bottom: 5px;
}

.admin_text>p {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}

.client_slides .owl-dots,
.service_slides .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}

.client_slides .owl-dot,
.service_slides .owl-dot {
  margin: 0 5px;
  line-height: 1;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.client_slides .owl-dot.active {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* ##### 13.0 Team Area CSS ##### */

.single-team-member {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  margin-bottom: 40px;
}

.single-team-member.hos {
  padding: 0 !important;
}

.team-member-thumb {
  width: 190px;
  height: 190px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.team-member-thumb.hos {
  overflow: hidden;
  width: auto;
  height: auto;
  border: 2px solid #d9261c;
  background: #fff;
  border-bottom: 0;
  border-radius: 0;
  position: relative;
  margin: 0 auto;
  margin-bottom: 0px;
  transition: all .4s ease-in-out;
}

.team-member-thumb.hos:hover {
  border-color: #5785e8
}

.team-info h5 {
  color: #13287e;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
  margin-bottom: 0px;
}

.team-info p {
  color: #a592b4;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 0;
  text-align: center;
}

.team-social-icon {
  text-align: center;
  position: relative;
}

.team-social-icon a {
  font-size: 20px;
  margin-top: 10px;
  width: 30px;
  height: 30px;
  background: #d9261c;
  color: #fff;
  display: inline-block;
}

.team-info {
  margin: 15px 0 5px
}

/*
* ----------------------------------------------------------------------------------------
*  START Subscribe STYLE
* ----------------------------------------------------------------------------------------
*/

.subscribe-wrapper {
  padding: 60px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 0 10px 80px rgba(15, 62, 153, .3);
}

.subscribe {
  position: relative;
}

.subscribe .section-heading>p {
  color: #eee
}

.subscribe .section-heading {
  margin-bottom: 30px
}

.subscribe .service-text {
  padding-top: 0
}

.subscribe .title-box {
  margin-bottom: 30px
}

.telegram-text {
  font-size: 20px;
  color: #fff;
  margin-right: 10px;
  position: relative;
  z-index: 2
}

.social-list {
  display: inline-block;
  margin-bottom: 0;
  height: 40px;
  position: relative;
  z-index: 2;
}

.social-list li {
  float: left;
  padding: 0 14px
}

.social-list li a {
  font-size: 34px;
  color: #fff;
  opacity: .8
}

.social-list li a:hover {
  opacity: 1
}

.subscribe .buy-tokens i {
  margin-right: 10px
}

.subscribe .info-btn {
  position: absolute;
  top: -2px;
  right: -10px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border-color: #fff;
}

.subscribe .info-btn:hover {
  cursor: pointer;
}

.button {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-block;
  padding: 14px 40px;
  font-size: 16px;
  z-index: 2;
  line-height: 1.25;
  color: #25cbd3;
  background: #fff;
  border: 0 solid;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
  transition: 250ms all ease-in-out;
  box-shadow: 0 3px 21px 4px rgba(41, 41, 58, 0.2);
}

.button:hover {
  background: #25cbd3;
  color: #fff
}

.button i {
  margin-right: 10px
}

/*** 

====================================================================
    What we do
====================================================================

 ***/
/*.dot-bg{
    background: url(../img/bg-img/dot-bg.jpg) no-repeat bottom center;
    background-size:cover;
    overflow: hidden;
 }*/
.what-we-do {
  position: relative;
}

.gray-bg {
  background: #ececec
}

@media(max-width: 767px) {
  .what-we-do {
    padding-bottom: 50px
  }
}

.what-we-do .outer {
  position: relative;
  padding-top: 20px;
}

.what-we-do .outer .inner-circle {
  position: absolute;
  left: 50%;
  margin-left: -170px;
  top: 65%;
  margin-top: -190px;
  width: 350px;
  height: 350px;
  border: 1px dashed #d0d0d0;
  line-height: 300px;
  text-align: center;
  border-radius: 50%;
  z-index: 2;
}

.what-we-do .outer .phone {
  position: absolute;
  width: 100%;
  left: 50%;
  top: -110px;
  transform: translateX(-50.5%);
}

.what-we-do .outer:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -250px;
  top: 50%;
  margin-top: -250px;
  width: 500px;
  height: 500px;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
}

.what-we-do .outer .header-wraperumn {
  float: right;
}

.service-box-three {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.what-we-do .outer .service-box-three {
  margin-bottom: 50px;
}

.what-we-do .outer .service-box-three:first-child {
  left: 0px;
  top: 10px;
}

.what-we-do .outer .service-box-three:last-child {
  margin-bottom: 0px;
  left: 0px;
  top: 0px;
}

.service-box-three .inner-box {
  position: relative;
  display: block;
  text-align: right;
  padding-right: 110px;
}

.service-box-three .icon-box {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 72px;
  height: 72px;
  text-align: center;
  line-height: 58px;
  color: #fff !important;
  font-size: 30px;
  background: #d9261c;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.service-box-three.v2 .icon-box {
  background-image: linear-gradient(135deg, #846FF4 0%, #F17674 100%)
}

.service-box-three .icon-box img {
  max-width: 50px;
  top: 43%;
  position: relative;
  transform: translateY(-50%);
}

.service-box-three h3 {
  position: relative;
  line-height: 1.6em;
  font-size: 17px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-box-three h3 a {
  position: relative;
  color: #13287e;
}

.service-box-three .text {
  position: relative;
  line-height: 1.7em;
  color: #888
}

.service-box-four {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.what-we-do .outer .service-box-four {
  margin-bottom: 50px;
}


.what-we-do .outer .service-box-four:last-child {
  margin-bottom: 0px;
  top: 0px;
}

.service-box-four .inner-box {
  position: relative;
  display: block;
  text-align: left;
  padding-left: 110px;
}

.service-box-four .icon-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 72px;
  height: 72px;
  text-align: center;
  line-height: 58px;
  color: #fff !important;
  font-size: 30px;
  background: #d9261c;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.service-box-four.v2 .icon-box {
  background-image: linear-gradient(135deg, #846FF4 0%, #F17674 100%)
}

.service-box-four .icon-box img {
  max-width: 50px;
  top: 43%;
  position: relative;
  transform: translateY(-50%);
}

.service-box-four h3 {
  position: relative;
  line-height: 1.6em;
  font-size: 17px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-box-four h3 a {
  position: relative;
  color: #13287e;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.service-box-four .text {
  position: relative;
  line-height: 1.7em;
  color: #888
}

@media (min-width: 1200px) {
  .outer .right-column {
    margin-left: 33.3%
  }

  .res-img-wrapper img {
    max-width: 128%;
    margin-top: -100px;
  }

  .extended {
    padding: 30px
  }

  .extended:before {
    content: '';
    position: absolute;
    width: 900px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: aliceblue
  }

  .extended.v2:before {
    background: linear-gradient(90deg, #5f36ff 0, #b719f6 100%);
    border-radius: 15px
  }
}

@media only screen and (max-width: 1200px) {
  .what-we-do .outer .inner-circle {
    display: none;
  }

  .what-we-do .outer .service-box-three:first-child,
  .what-we-do .outer .service-box-three:last-child,
  .what-we-do .outer .service-box-four:first-child,
  .what-we-do .outer .service-box-four:last-child {
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
  }
}

@media only screen and (max-width: 767px) {

  .what-we-do .outer:before,
  .what-we-do .outer:after {
    display: none;
  }

  .what-we-do .outer .service-box-three,
  .what-we-do .outer .service-box-four {
    padding: 0 20px
  }

  .what-we-do .outer .service-box-three:last-child,
  .what-we-do .outer .service-box-four:last-child,
  .what-we-do .outer .service-box-three,
  .what-we-do .outer .service-box-four {
    margin-bottom: 50px;
  }

  .service-box-three .inner-box,
  .service-box-four .inner-box {
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }

  .service-box-three .icon-box,
  .service-box-four .icon-box {
    position: relative;
    display: block;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0 auto 30px;
  }
}

/* Featured MEal*/
.featured-meal-wrapper {
  position: relative;
}

@media (min-width: 1200px) {
  .meal-pic {
    margin-left: -150px;
    max-width: 120%;
  }

  .featured-meal-desc .row.special-width {
    max-width: 70%
  }
}

@media (max-width: 767px) {
  .featured-meal-wrapper .featured-bg {
    max-width: 110%;
  }
}

@media (max-width: 650px) {
  .featured-meal-wrapper .featured-bg {
    max-width: 120%;
  }
}

@media (max-width: 550px) {
  .featured-meal-wrapper .featured-bg {
    max-width: 180%;
  }

  .res-header.special {
    padding-top: 50px
  }
}

.featured-meal-desc {
  position: absolute;
  left: 15%;
  top: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.featured-meal-desc p {
  max-width: 60%
}

/* ##### 14.0 Our Blog Area CSS ##### */

.news .news-post {
  float: left;
  width: 100%;
  background: #fff;
  position: relative;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 20px #DFDFDF;
  -moz-box-shadow: 0px 0px 20px #DFDFDF;
  -ms-box-shadow: 0px 0px 20px #DFDFDF;
  -o-box-shadow: 0px 0px 20px #DFDFDF;
  box-shadow: 0px 0px 20px #DFDFDF;

  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news .news-post img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.news .news-post:hover img,
.news .news-post:focus img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.news .news-post .news-post-image {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.news .news-post .news-post-image .news-overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.0);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.news .news-post .news-post-image .news-category {
  margin: 20px 0 0 15px;
  float: left;
  z-index: 2;
  position: absolute;
}

.news .news-post .news-post-image .news-category>a {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 15px;
  line-height: 1.5;
  font-family: "Open Sans", Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin: 0 4px 4px 0;
  background: linear-gradient(40deg, #d9261c, #f67c6b);
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.news .news-post .news-post-image .news-category>a:hover,
.news .news-post .news-post-image .news-category>a:active,
.news .news-post .news-post-image .news-category>a:focus {
  text-decoration: none;
}

.news .news-post .news-post-text {
  padding: 20px;
}

.news .news-post .news-post-text h3 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 500;
  min-height: 52px;
}

.news .news-post .news-post-text h3 a {
  color: #13287e;
}

.news .news-post .news-post-text h3 a:hover {
  color: #d9261c;
}

.news .news-post .news-post-text h3 a:hover,
.news .news-post .news-post-text h3 a:active,
.news .news-post .news-post-text h3 a:focus {
  text-decoration: none;
}

.news .news-post .news-post-text p {
  font-size: 14px;
  margin-bottom: 0;

}

.news .news-post .news-post-text p:last-child {
  margin-bottom: 0 !important;
}

.news .news-post .news-post-meta {
  border-top: 1px solid #f0f0f0;
  padding: 10px 20px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
}

.news .news-post .news-post-meta a {
  font-size: 13px;
  margin-right: 10px;
  margin-bottom: 20px;
  color: #b3b3b3;
}

.news .news-post .news-post-meta a i {
  display: inline-block;
  margin-right: 5px;
  color: #d9261c
}

.news .news-post .news-post-meta a:hover,
.news .news-post .news-post-meta a:active,
.news .news-post .news-post-meta a:focus {
  text-decoration: none;
}

.news .news-post .news-post-meta a:hover {
  color: #3b61b9;
}


.single-blog-area {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}

.post-meta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
}

.post-meta p a {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 30px;
}

.post-title {
  margin-bottom: 20px;
  display: block;
}

.blog_thumbnail img {
  width: 100%;
}

.single-blog-area blockquote {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 3px;
  margin: 30px 0;
  display: block;
}

.single-blog-area blockquote span {
  margin-bottom: 0;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.comment_area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
  padding-bottom: 50px;
}

.comment_area .title {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .comment_area .comment-content {
    padding: 20px 15px;
  }
}

.comment_area .comment-content .comment-author {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 79px;
  flex: 0 0 79px;
  min-width: 79px;
  margin-right: 55px;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .comment_area .comment-content .comment-author {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    min-width: 60px;
    margin-right: 15px;
  }
}

.more-info {
  color: #fff;
  font-size: 13px;
  background: #37374a;
  padding: 5px 20px;
  margin-top: 20px;
  display: inline-block;
  border-radius: 5px;
}

.more-info:hover {
  color: #fff;
  background: #d9261c;
}

.comment_area .comment-content .comment-author img {
  border-radius: 50%;
}

.comment_area .comment-content .comment-meta {
  margin-bottom: 30px;
}

.comment_area .comment-content .comment-meta .post-date {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
  display: block;
}

.comment_area .comment-content .comment-meta .post-author {
  margin-bottom: 15px;
  display: block;
  color: #fff;
}

.comment_area .comment-content .comment-meta p {
  margin-bottom: 15px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  line-height: 2;
}

.comment_area .comment-content .comment-meta .comment-reply {
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
}

.comment_area .single_comment_area {
  margin-bottom: 30px;
}

.comment_area .single_comment_area:last-of-type {
  margin-bottom: 0;
}

.comment_area .children .single_comment_area {
  margin-left: 50px;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .comment_area .children .single_comment_area {
    margin-left: 15px;
  }
}

.single_comment_area .children .single_comment_area .comment-meta {
  margin-bottom: 0;
}


/* ##### Contact Area CSS ##### */

.group {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.group input,
.group textarea {
  font-size: 12px;
  font-style: italic;
  padding: 10px;
  display: block;
  width: 100%;
  height: 45px;
  border: none;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.group input:focus,
.group textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.group label {
  color: #fff;
  font-style: italic;
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 14px;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  margin-bottom: 0;
}

.group .bar {
  position: relative;
  display: block;
  width: 100%;
}

.group .bar:before,
.group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

.group .bar:before {
  left: 50%;
}

.group .bar:after {
  right: 50%;
}

.group textarea {
  height: 130px;
}

/* Form Active State */

.group input:focus~label,
.group textarea:focus~label,
.group input:valid~label,
.group textarea:valid~label {
  top: -17px;
  font-size: 12px;
  color: #fff;
}

.group input:focus~.bar:before,
.group textarea:focus~.bar:before,
.group input:focus~.bar:after,
.group textarea:focus~.bar:after {
  width: 50%;
  background-color: #fff;
}

input:required,
textarea:required {
  box-shadow: none !important;
}

/* ##### Footer Area ##### */

.footer-area {
  position: relative;
  z-index: 1;
  padding: 0;
}

.footer-content-area {
  padding: 40px 0 40px 0;
  margin-top: 100px;
  background: #121c3d !important;
}

.footer-content-area.demo {
  margin-top: 70px
}

.footer-logo {
  margin-bottom: 15px
}

.footer-logo a {
  color: #fff;
  font-size: 20px
}

.footer-logo img {
  width: 40px
}

.footer-side-thumbnail {
  position: absolute;
  width: 50%;
  top: 0;
  left: 0;
  height: 100%;
  background-size: cover;
  background-position: top center;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.copywrite_text>p {
  margin-bottom: 10px;
  color: #d8d0d0 !important;
  font-size: 13px;
}

.copywrite_text>p>a {
  color: #fff;
}

.footer-social-info a i {
  font-size: 14px;
  color: #fff;
  margin-right: 15px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.footer-social-info a i:hover {
  color: #4a7aec;
}

.contact_info_area .contact_info {
  text-align: left !important;
}

.contact_info_area .contact_info h5 {
  font-size: 21px;
}

.contact_info_area .contact_info p {
  margin-bottom: 0;
  font-size: 14px;
  color: #d8d0d0
}

.contact_info_area .contact_info a:hover p {
  color: #fff
}

/* ##### Breadcumb Area ##### */
.breadcrumb-item+.breadcrumb-item::before {
  display: inline-block;
  padding-right: .5rem;
  color: #fff;
  content: "/";
}

.breadcumb-area {
  position: relative;
  z-index: 1;
  height: 400px !important;
  background: url(../img/bg-img/header-bg1.jpg) no-repeat center;
  background-size: cover;
}

.breadcumb-content {
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgb(17 25 66 / 42%)
}

.breadcumb--con {
  padding-top: 90px;
}

.breadcrumb {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}

.breadcumb--con .title {
  font-size: 42px;
  margin-bottom: 15px;
  margin-left: 0;
}

.breadcrumb-item,
.breadcrumb-item.active,
.breadcrumb-item>a {
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.page-link {
  color: #fff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 2px;
}

/* ##### Sidebar CSS ##### */

.search-widget-area form {
  position: relative;
  z-index: 1;
}

.search-widget-area form input {
  width: 100%;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  padding: 0 15px;
  color: #fff;
  font-size: 12px;
  border-radius: 30px;
}

.search-widget-area form button {
  width: 60px;
  height: 45px;
  background-color: transparent;
  padding: 0 15px;
  color: #fff;
  font-size: 14px;
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}

.widget-title h5 {
  margin-bottom: 30px;
  font-size: 18px;
  text-transform: capitalize;
  border-bottom: 1px solid #fff;
  padding: 0 0 5px 0;
}

.dont-miss-post-content>a {
  font-size: 16px;
  color: #fff;
  display: block;
  margin-top: 15px;
}

.dont-miss-post-content>span {
  font-size: 12px;
  color: #fff;
  display: block;
  text-transform: uppercase;
}

.subscribe-form input {
  width: 100%;
  height: 45px;
  border-radius: 45px;
  border: none;
  padding: 0 20px;
  font-size: 12px;
  font-style: italic;
  color: #fff;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.1);
}

.subscribe-form button {
  width: 100%;
  height: 45px;
  border-radius: 45px;
  border: none;
  font-size: 12px;
  padding: 0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

/* ##### Timeline CSS ##### */

.timelineBox {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 2px;
}

.timelineHeader {
  padding: 32px;
  padding: 32px;
  padding: 2rem;
  background: #e91e63;
  position: relative;
  z-index: 3;
}

.timelineHeader h3 {
  font-size: 32px;
  font-size: 32px;
  font-size: 2rem;
  margin: 0;
}

.timelineHeader h3+span {
  font-size: 19.2px;
  font-size: 19.2px;
  font-size: 1.2rem;
  color: #fff;
}

.timelineBody {
  max-height: 480px;
  overflow-x: hidden;
  overflow-y: auto;
}

.timelineBody .timeline {
  padding: 2em;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.timelineBody .timeline li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 1em 0;
  position: relative;
}

.timelineBody .timeline li:before {
  position: absolute;
  content: '';
  left: 7px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #25cbd3
}

.timelineBody .timeline li:last-child {
  margin-bottom: 0;
}

.timelineBody .timeline .timelineDot {
  height: 15px;
  width: 15px;
  background: #fff;
  border-radius: 2rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15px;
  flex: 0 0 15px;
  margin-right: auto;
  margin-top: 6px;
  box-shadow: 0 0 8px #56cb5f;
}

.timelineBody .timeline .timelineDot:after {
  content: '';
  position: absolute;
  top: 25px;
  left: 3px;
  height: 9px;
  width: 9px;
  background: #25cbd3;
  border-radius: 50%;
}

.timelineBody .timeline .timelineDate {
  font-size: 14px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  padding: 0;
}

.timelineBody .timeline .timelineDate p {
  color: #25cbd3;
}

.timelineBody .timeline .timelineWork {
  font-size: 16px;
  margin-left: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
}

.timelineBody .timeline .timelineWork h6 {
  color: #fff;
}

.timelineBody .timeline .timelineWork span {
  display: block;
  color: #bdbdbd;
  font-size: 13px;
}



.lock {
  position: relative;
  overflow: hidden;
}

.lock img {
  display: inline-block;
  vertical-align: middle;
  float: left;
  margin: 0px 20px;
}

.lock img:first-child {
  margin-left: 0;
}

.lock .ball {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 38px 4px 0 4px;
  vertical-align: middle;
  display: inline-block;
  float: left;
}

.lock .ball.ball_active {
  background: #1666ed;
  background: -moz-linear-gradient(45deg, #1666ed 0%, #57c6f3 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #1666ed), color-stop(100%, #57c6f3));
  background: -webkit-linear-gradient(45deg, #1666ed 0%, #57c6f3 100%);
  background: -o-linear-gradient(45deg, #1666ed 0%, #57c6f3 100%);
  background: -ms-linear-gradient(45deg, #1666ed 0%, #57c6f3 100%);
  background: linear-gradient(45deg, #1666ed 0%, #57c6f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1666ed', endColorstr='#57c6f3', GradientType=1);
}

.lock .ball.ball_blue {
  background: #22047a;
}

.hero-section .lock .ball {
  margin-top: 25px
}

.hero-section .lock .ball.ball_blue {
  background: #eee;
}

/*
================================================
   Map style
================================================
*/

.spread-map {
  overflow: hidden;
}

.spread-map .sec-title {
  margin-bottom: 0
}

.spread-map .counter-container {
  margin-top: 20px
}

@media (max-width: 767px) {
  .spread-map .map-container {
    margin-top: 30px
  }

  .token-allocation .visa {
    margin-bottom: 30px
  }
}

.spread-map .s-list-icon {
  position: absolute;
  top: 8px;
  padding: 7px;
  border: 1px solid;
  left: 0;
}

.spread-map .s-list-desc {
  padding-left: 45px;
}

.counter-wrapper {
  position: relative;
  margin-top: 20px;
  color: #13287e;
  z-index: 5;
}

.counter-wrapper .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border: 2px solid #ffb426;
}

.counter-wrapper .icon-box img {
  position: absolute;
  max-width: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.counter-wrapper .counter {
  color: #ffb426;
  font-size: 20px;
  text-align: left;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 5px;
}

.counter-wrapper h5 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

/*
================================================
   map section style
================================================
*/
.download {
  position: relative;
  background-image: url(../img/svg/download-bg2.html), url(../img/svg/download-bg3.html), -webkit-linear-gradient(-73deg, #d787f5, #3634bb);
  background-size: 894px 660px, 1005px 663px, 100%;
  box-shadow: rgba(6, 28, 66, 0.1) 0px 20px 40px;
  padding: 100px 0px;
  background-repeat: no-repeat;
  background-position: calc(50% - 370px) 50%, calc(50% - 455px) 50%, center center;
}

@media (max-width: 992px) {
  .download {
    margin-top: 0px;
    background-image: url(../img/svg/download-bg2.html), -webkit-linear-gradient(-73deg, #d787f5, #3634bb);
    ;
    background-size: 100%, 100%;
    padding: 100px 0px;
    background-position: 50% 100%, center center;
  }
}

.download .info-btn {
  border-radius: 0;
  height: 55px;
  line-height: 52px;
  font-size: 14px;
}

.download .info-btn img {
  padding-right: 10px
}

.spread-map .map-container {
  position: relative;
}

.indicator {
  position: absolute;
  z-index: 9;
  width: 2.2em;
  height: 2.2em;
  cursor: pointer;
}

.indicator-item {
  width: 30px;
  height: 30px;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  position: absolute;
  border-radius: 50%;
  border: 2px solid #e35583;
  -webkit-animation: pulse 0.6s infinite alternate;
  animation: pulse 0.6s infinite alternate;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(0.5, 0.5, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.indicator:hover .indicator-item {
  border-color: #071e33;
}

.indicator:first-child {
  top: 10%;
  left: 40%;
}

.indicator:nth-child(2) {
  top: 19%;
  left: 13%;
}

.indicator:nth-child(3) {
  top: 40%;
  left: 50%;
}

.indicator:nth-child(4) {
  top: 20%;
  left: 70%;
}

.indicator-content {
  position: absolute;
  z-index: 99;
  width: 250px;
  left: 50%;
  bottom: 100%;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  font-weight: 400;
  color: #fffaf0;
  background: transparent;
  opacity: 0;
  margin: 0 0 20px -150px;
  cursor: default;
  pointer-events: none;
  font-family: 'open-sans', cursive;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: opacity 0.3s 0.3s;
  transition: opacity 0.3s 0.3s;
}

.indicator:hover .indicator-content {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.indicator-content span {
  display: block;
}

.indicator-text {
  border-bottom: 3px solid #ffb426;
  overflow: hidden;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}

.indicator:hover .indicator-text {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.indicator-inner {
  background: #1e3953;
  padding: 10px 15px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.indicator:hover .indicator-inner {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.s-list li {
  margin-bottom: 10px;
  color: #777;
  position: relative;
  font-size: 15px
}

.s-list span.fa {
  font-size: 16px;
  color: #5892f5;
  margin-right: 10px;
}

.spread-map .s-list li {
  min-height: 50px
}

.spread-map .single-service-item {
  min-height: 519px
}

.hotel-item {
  position: relative;
  border-radius: 10px
}

.hotel-item img {
  border-radius: 5px !important;
}

.hotel-item .review {
  position: absolute;
  padding: 5px 9px;
  top: 15px;
  right: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #0066d6;
  border-radius: 5px;
}

.hotel-info {
  position: absolute;
  width: 100%;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000);
  padding: 25px 20px 5px;
  bottom: 0;
  left: 0;
}

.hotel-info h6 {
  color: #fff !important;
  text-align: left;
}

.hotel-item .stars i {
  font-size: 12px;
  color: #fff
}

/*
* ----------------------------------------------------------------------------------------
*  START counter-down STYLE
* ----------------------------------------------------------------------------------------
*/
.ico-counter {
  background-image: -webkit-linear-gradient(73deg, #d787f5, #3634bb);
  background-image: linear-gradient(73deg, #d787f5, #3634bb);
  padding: 45px 40px;
  border-radius: 20px
}

@media (max-width: 767px) {
  .ico-counter {
    padding: 45px 15px;
  }
}

.ico-counter .info-btn {
  min-width: 205px
}

.counter-down {
  position: relative;
}

.conuter-header {
  overflow: hidden;
  position: relative;
}

.timer-body-block {
  display: flex
}

.count-down .table-cell {
  position: relative;
  width: 25%
}

.count-down .tab-val {
  width: 90%;
  font-size: 30px;
  font-weight: 500;
  height: 75px;
  line-height: 75px;
  margin: 0 auto;
  background-color: #190345;
  color: #ffffff;
}

.count-down .tab-metr {
  margin-top: 15px;
  font-size: 16px;
  color: #ffffff;
}

@media (max-width: 480px) {
  .count-down .tab-metr {
    font-size: 14px
  }
}

.conuter-header h3 {
  font-weight: 600;
  font-size: 24px;
  color: #fff
}

.conuter-header h4 {
  font-size: 18px;
  text-transform: uppercase;
}

.counterdown-content {
  padding: 30px 0 0;

}

.clock-wrapper {
  position: relative;
  background: #fff;
  padding: 30px 0 15px 9px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid
}

.dollar-earning {
  font-size: 24px;
  font-weight: 600;
  padding-left: 10px;
  color: #fff;
}

.btc-earning {
  font-size: 24px;
  font-weight: 600;
  padding-right: 45px;
  color: #fff;
  position: relative;
}

.ico-sales-status {
  overflow: hidden;
}

.ico-sales-status p {
  font-size: 12px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62)
}

.btc-earning span {
  font-size: 13px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 6px;
}

.ico-progress {
  margin: 20px 10px;
}

.ico-progress ul {
  margin-bottom: 5px
}

.ico-progress li {
  font-size: 18px;
  font-weight: 400;
}

.ico-progress li.title {
  float: left;
  padding-left: 30px;
  font-weight: 500;
  color: #fff
}

.ico-progress li.strength {
  float: right;
  font-weight: 500;
  color: #fff
}

.ico-progress .current-progress {
  width: 100%;
  height: 16px;
  position: relative;
  background: rgba(191, 191, 191, .6);
  border-radius: 7px
}

.ico-progress .current-progress:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 26px;
  bottom: -5px;
  left: 12%;
  background: #fff
}

.current-progress .progress-bar {
  border-radius: 7px;
  height: 100%;
  background-image: -webkit-linear-gradient(left, #fb881d 0%, #ffad34 100%);
  background-image: -o-linear-gradient(left, #fb881d 0%, #ffad34 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(#fb881d), to(#ffad34));
  background-image: linear-gradient(to right, #fb881d 0%, #ffad34 100%);
}

.ico-progress span {
  color: #e8e0f3;
  font-size: 12px;
  font-weight: 700;
  padding-top: 7px;
  display: inline-block;
}

.doc-element {
  background-color: #1d025c;
  border-radius: 4px;
  border-bottom: 2px solid #25cbd3;
  position: relative;
  transition: .5s;
  cursor: pointer;
  padding: 20px;
  margin-top: 20px;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.doc-element:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition: .3s;
  right: 15px;
  width: 27px;
  height: 34px;
  background: url(../img/svg/pdf.html) 50% no-repeat;
  background-size: contain;
}

.doc-element:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition: .3s;
  right: 15px;
  width: 27px;
  height: 30px;
  background: url(../img/svg/view.html) 50% no-repeat;
  background-size: contain;
  opacity: 0;
}



/* demo page */
.demo-item {
  -webkit-box-shadow: 0 2px 28px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 28px rgba(0, 0, 0, .1);
  transition: all .3s ease-in;
  overflow: hidden;
  background: #fff;
  margin-bottom: 30px
}

.ico-video video {
  width: 135%;
  margin-left: -60px;
}

@media (min-width: 1200px) {
  .demo .container {
    max-width: 1280px;
  }

  .spec-ml {
    margin-left: -120px
  }

  .hero-section.gradient img {
    margin-bottom: -300px;
    margin-left: -100px
  }

  .hero-section .curved {
    max-width: 100%;
    margin-top: 30px
  }
}




/*harpreet css start*/
.slidervideo {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slidervideo:after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: url(../img/banner-lines-2.png) right bottom no-repeat;
}

/*.slidervideo:after { content: ""; position: absolute; left: 0;
    top: 0; width: 100%; height: 300px; background: -webkit-gradient(linear, left top, left bottom, from(#000), to(rgba(2, 2, 3, 0)));
    background: linear-gradient(180deg, #000 0%, rgba(2, 2, 3, 0) 100%);
    opacity: .7; z-index: 99; }*/

.slidervideo video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.topcontact {
  position: absolute;
  right: 15px;
  z-index: 10000;
  border-radius: 0px 5px 5px 0px;
  overflow-x: hidden;
  padding-left: 100px;
}

.topcontact:before {
  content: '';
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(18, 28, 61, 1) 27%, rgba(18, 28, 61, 1) 100%);

  z-index: -1
}


.topcontact li {
  float: left;
  margin: 5px 20px 5px 0px;
  font-size: 13px;
  color: #fff;
}

.topcontact li a {
  color: #fff;
  vertical-align: middle;
}

.topcontact li a i {
  color: #fff;
  vertical-align: middle;
  margin-right: 5px;
}

/*.navbar-collapse { margin-top: 25px; }
.menucontactbtn { margin-top: 25px; }*/
.bnr-btn {
  border: 1px solid #d9261c;
}

.bnr-btn:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.gridbg {
  background: url(../img/gridbg.jpg) center center;
  background-size: cover;
  background-attachment: fixed;
}

.gridbg:before {
  background: #010618;
}

.hotel-info span {
  display: block;
  color: #f5261b;
  text-align: left;
}

.bg {
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #fff 50%, #e1f2ff 50%);
  bottom: 0;
  left: -50%;
  opacity: .5;
  position: absolute;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.bg3 {
  animation-duration: 5s;
}

.content {
  background-color: rgba(255, 255, 255, .8);
  border-radius: .25em;
  box-shadow: 0 0 .25em rgba(0, 0, 0, .25);
  box-sizing: border-box;
  left: 50%;
  padding: 10vmin;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cool-facts-area {}

.overflowx-0 {
  overflow: hidden;
}

.animationvideo {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.animationvideo video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 120%;
  margin: -30px 0 0 0;
}

.solarvideo {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  z-index: 0;
}

.solarvideo video {
  background-size: cover;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.certificate {
  width: 350px;
  margin: 15px auto 0 auto;
  background: #fff;
  padding: 20px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.certificate img {
  max-width: 100%;
  margin: 0 auto;
}

.clientlogo {
  float: left;
  width: 200px;
  height: 100px;
  border: 1px solid #efefef;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.clientlogo img {
  max-width: 200px;
  max-height: 100px;
}

.client-list {
  margin: 0px;
  padding: 0px;
  min-width: 2200px;
}

.client-list li {
  float: left;
  margin-right: 15px;
}



.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}




.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -1px;
}

.dropdown-menu .dropdown-submenu-lefst {
  right: 100%;
  left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
  display: block;
}

/*.demo-video-sec img { width: 100%; }*/

.position-fix {
  position: fixed;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.logo2 {
  display: none;
  /*transition: all 0.3s ease-in-out;*/
}

.logo {
  /*transition: all 0.3s ease-in-out;*/
}

.shrink .logo {
  display: none;
}

.shrink .logo2 {
  display: block;
}

@media (min-width: 991px) {
  .counters {
    position: relative;
    margin-top: -130px;
  }

  .container-fluid {
    padding-left: 45px;
    padding-right: 45px;
    max-width: 1700px;
  }
}

@media (max-width: 768px) {
  .statcont {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .tp-funfact-item {
    margin-bottom: 15px;
  }

  .tp-funfact-number {
    font-size: 25px;
    color: #000 !important;
  }

  .tp-funfact-content span {
    color: #000 !important;
  }
}


@media (max-width: 480px) {
  .service-img {
    min-height: 200px;
  }

  .single-testimonial .icon_wrapper i {
    top: -20px;
    right: -10px;
  }
}


.navbar-white.shrink .navbar-brand,
.shrink .navbar-nav .nav-item .nav-link {
  color: #333;
}

.tp-funfact-number {
  font-size: 34px;
  margin-bottom: 0px;
  color: #fff !important;
}

.tp-funfact-number i {
  font-style: normal;
}


.tp-funfact-icon span img {
  max-width: 45px;
}

.tp-funfact-content span {
  font-weight: 500;
  font-size: 16px;
  color: #fff !important;
}

.tp-funfact-item {
  position: relative;
  z-index: 1;
  display: flex;
}

.tp-funfact-icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  margin-right: 20px;
  line-height: 149px;
  text-align: center;
  /* display: inline-block; */
  color: #fff;
  background-color: #e3e3e3;
  overflow: hidden;
}

.whiteactive {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.whiteactive.navbar-white .nav-item .nav-link {
  color: #000 !important;
}


/*harpreet css end*/




/* Himanshu CSS Start */
.aboutUsNew {
  background: linear-gradient(#ffffffc4, #ffffffc4), url(../images/new-img/aboug-bg.jpg);
  background-size: 100%;
  background-position: center;

}

.about-area.aboutUsNew .about-right-text .ab-title {
  display: inline-block;
  margin: 0px;
}

.about-area.aboutUsNew .about-right-text .ab-title::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #f5821f;
  position: absolute;
  right: -35px;
  bottom: 0px;
  top: 6px;
  margin: auto;
}

.about-area.aboutUsNew .about-right-text .ab-title::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 3px;
  background: #00a57d;
  position: absolute;
  right: -27px;
  bottom: 5px;
  top: 0px;
  margin: auto;
}

.aboutFeatIco {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 20px 0px;
}

.aboutFeatIco li {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 10px;
}

.aboutFeatIco li img {
  width: 44px;
  background: #f5821f;
  padding: 5px;
  border-radius: 9px;
}

.aboutFeatIco li p {}

.about-area .about-right-text .aboutFeatIco p {
  margin: 0px;
}

.aboutImg {
  width: 100%;
  position: relative;
}

.aboutImg::after {
  content: '';
  position: absolute;
  right: 98px;
  top: 0px;
  width: 8px;
  height: 110px;
  background: #f5821f;
  -webkit-animation: mover 1.5s infinite alternate;
  animation: mover 1.5s infinite alternate;
}

.aboutImg::before {
  content: '';
  position: absolute;
  right: 114px;
  top: 0px;
  width: 8px;
  height: 140px;
  background: #00a77e;
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

.aboutImg img {
  width: 95%;
}

/* up and down animation start */
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* up and down animation end */
.about-area.aboutUsNew .about-left-item .about-left-wrap {
  width: fit-content;
  height: fit-content;
  border: none;
  padding: 0px;
  position: unset;
  border-radius: 0px;
  position: absolute;
  left: 7px;
  bottom: 0px;
  transform: scale(0.9);
}


.features-area.featuresNew {
  background: linear-gradient(#111111e0, #111111e0), url(../images/new-img/features-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 60px 0px;
}

.featuresNew.features-area .features-wrap {
  background: none;
  box-shadow: none;
}

.featuresNew.features-area .features-item {
  background: #EFF4F9;
  min-height: 244px;
  text-align: center;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(6px);
  border-bottom: 4px solid #00a67d;
  border-radius: 30px;
}

.features-area.featuresNew .features-wrap .col:last-child .features-item {
  border-bottom: 4px solid #00a67d;
}



.service-area.productSection .service-wrap .service-item .service-text .service-img {
  margin-bottom: 18px;
}

.service-area.productSection .service-wrap .service-item {
  border-bottom: none;
  background: #f5f5f5;
  border-radius: 30px;
  /* border: 1px solid #ddd; */
}

.service-area.productSection .service-wrap .service-item .service-text {
  text-align: left;
  background: transparent;
  padding: 6px 15px 0px;
  padding-bottom: 13px;
  border-radius: 10px;
  overflow: hidden;
}

.service-area.productSection .service-wrap .service-item .service-text h3 {
  /* min-height: fit-content; */
  margin: 0px;
  padding: 0px 16px;
  font-size: 16px;
  min-height: 49px;
}

.service-area.productSection .service-wrap .service-item .service-text p {
  padding: 0px 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 14px;
  font-size: 14px;
  line-height: 23px;
}

.service-area.productSection .service-wrap .service-item .service-text a.read-more {
  padding-left: 16px;
  padding-bottom: 7px;
  display: inline-block;
}

.project-sec-wrapper .project-page-lists .certi-sec {
  border-radius: 10px;
}

.project-sec-wrapper .project-page-lists .project-lst {
  padding: 5px;
}

.project-page-lists .project-lst figure img {
  border-radius: 10px;
}

.project-page-lists .certi-sec .certi-content {
  text-align: center;
  padding-bottom: 15px;
  padding-top: 15px;
}

.certi-sec .certi-content h4 {
  position: relative;
  font-weight: 500;
  min-height: 58px;
}

.certi-sec .certi-content h4::after {
  content: '';
  width: 100px;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  height: 1px;
  background: #00a77e;
  margin: auto;
}

.certi-sec .certi-content h4::before {
  content: '';
  width: 50px;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  height: 3px;
  background: #00a77e;
  margin: auto;
}

.companyTimeline {
  padding: 30px 0px 0px;
  background: radial-gradient(#ffffffc7, #ffffff), url(../images/new-img/timeline-bg.jpg);
  background-size: 100%;
  background-position: center;
  background-blend-mode: inherit;
}

.certificationSection {
  background: linear-gradient(#111111e0, #111111e0), url(../images/new-img/features-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 40px 0px;
}

.certificationSection .project-page-wrapper {
  background: transparent;
}

.project-sec-wrapper .project-page-lists .project-lst {
  padding: 5px;
  margin: 20px 7px;
}

.brand-section .clients-logo img {
  border-radius: 30px;
}

.testimonialWrapper {
  background: linear-gradient(#f4811fcc, #d06000cc), url(../images/testimonial/shape.png) no-repeat center center;
  background-blend-mode: multiply;
  max-width: 93%;
  margin: auto;
  border-radius: 30px;
  padding: 30px 50px 50px 50px;
}

.testimonial-section .testimonial-items.testimonialCarousel .testimonial-item-inner {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  /* position: relative; */
  border-bottom: 5px solid #00a77e;
  min-height: 415px;
}

.testimonial-items.testimonialCarousel .info-item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-section .testimonial-items.testimonialCarousel .testimonial-item h4 {
  margin: 0px;
}

.testimonial-section .testimonial-items .testimonial-item-inner .info-img {
  bottom: 0px;
}

.ch-blog-area .blog-items .blog-item {
  background: transparent;
}

.ch-blog-area .blog-items .blog-item .blog-img {
  border-radius: 20px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 10px #ddd;
}

.ch-blog-area .blog-items .blog-item .blog-content {
  width: 94%;
  margin: auto;
  border: none;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: -13px;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 11px;
  min-height: 210px;
}

.ch-blog-area .blog-items .blog-item .blog-content h2 { font-size: 16px; font-weight: 600; line-height: normal; min-height: 65px; }
.ch-blog-area .blog-items .blog-item .blog-content p {
  line-height: normal;
  font-size: 14px;
}

.blog-bottom-btn .ch-btn-style-3 {
  padding: 6px 16px;
  border-radius: 19px;
}

.footer-section .link-widget {
  padding-left: 0px;
}

.footer-section .about-widget .logo {
  width: 130px;
}

.footer-section .about-widget .logo img {
  width: 100%;
}

.footer-section p {
  margin-top: 0px;
  font-size: 14px;
}

.footer-section .link-widget ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section .link-widget ul li i.fa-arrow-right {
  font-size: 11px;
  color: #e3781d;
}

.certificateCarousel.owl-theme .owl-dots button.active.owl-dot {
  background: #00a77e;
  width: 20px;
  height: 20px;
}

.certificateCarousel.owl-theme .owl-dots button.owl-dot {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

.owl-theme.certificateCarousel .owl-dots .owl-dot span {
  display: none;
}

.owl-theme.certificateCarousel .owl-nav button {
  display: none;
}

.owl-theme.certificateCarousel .owl-dots {
  margin: auto;
  margin-top: 30px;
}

.timelineWrapper {
  display: flex;
  align-items: center;
}

.timelineContent {
  width: 60%;
}

.timelineImg {
  width: 40%;
  border-radius: 13px;
  overflow: hidden;
}

.timelineImg img {
  width: 100%;
}

.navbar-brand {
  background: #fff;
  border-radius: 00px;
}

.whiteactive .navbar-brand {
  background: transparent;
}

.navbar-brand img {
  max-height: 131px;
  width: 124px;
}

.whiteactive .navbar-brand img {
  max-height: 90px;
  /* width: 71px; */
}

.brand-section .clients-logo .owl-nav button {
  display: block;
}

.brand-section .clients-logo .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  right: -40px;
  border: none;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 7px;
}

.brand-section .clients-logo .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  left: -40px;
  border: none;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 7px;
}

.footer-section .about-widget .logo {
  margin: 0px auto;
  background: #fff;
}

/* Himanshu CSS End */

.asso-sec {
  padding: 40px 0px 60px 0px;
}

.asso-sec h2 {
  color: #1B1A1A;
}

/*.associateCarousel .owl-nav { display: none; }*/

.assologo {
  padding: 10px 15px;
  border: 1px solid #dee2e6;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.assologo img {
  width: auto !important;
  margin: 0px auto;
}

.associateCarousel .owl-nav button {
  display: block;
}

.associateCarousel .owl-nav button.owl-next {
  position: absolute;
  top: 60%;
  transform: translateY(-100%);
  right: -40px;
  border: none;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 7px;
}

.associateCarousel .owl-nav button.owl-prev {
  position: absolute;
  top: 60%;
  transform: translateY(-100%);
  left: -40px;
  border: none;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 7px;
}

/* contact us css start */


.contact-us-sec {
  padding: 50px 0px 50px 0px;
  /* margin-top: 50px; */
}

.contact-us-sec {
  padding-top: 85px !important;
}

.contactInfoCard {
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #ffffff42;
  backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid #dddddd6b;
  transition: 0.4s ease-in-out;
  position: relative;
  min-height: 220px;
}

.contactInfoCard::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
  background: linear-gradient(45deg, #fff8f1, white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  visibility: hidden;
  opacity: 0;
}

.contactInfoCard:hover:after {
  height: 105%;
  width: 100.5%;
  visibility: visible;
  opacity: 1;
}

.contactinfoIoc {
  width: 90px;
  margin: auto;
  height: 90px;
  /* background: linear-gradient(180deg, #b4924d, #826042); */
  background: linear-gradient(180deg, #f5811e, #00a77e);
  padding: 22px;
  border-radius: 20px;
  margin-top: -58px;
  position: relative;
  z-index: 2;
  transition: 0.4s ease-in-out;
}

.contactInfoCard:hover .contactinfoIoc {
  transform: scale(1.04);
}

.contactinfoIoc img {
  filter: invert(3) brightness(5);
  width: 100%;
}

.contactinfoContent {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  text-align: center;
}

.contactinfoContent h5 {
  font-size: 20px;
  font-weight: 600;
  color: #f5811e;
  margin-bottom: 6px;
  margin-top: 22px;
}

.contactinfoContent a {
  display: block;
  color: #000;
  font-weight: 400;
  text-decoration: none;
}



.mapSection {
  width: 100%;
  height: 100%;
}

.contactusFromCard {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.contactUsForm {
  background: linear-gradient(180deg, #ffe3d8cf, #fff2d1d1), url(../img/bgs/main-texture.webp);
  background-size: 100%;
  background-blend-mode: darken;
}

.contactUsForm.ctbg2 {
  background: linear-gradient(180deg, #ffffffcf, #fffefdd1), url(../img/bgs/main-texture.webp);
}


.formsec {
  background: linear-gradient(90deg, #ffffffd6, #ffffff85), url(../images/bg-3.jpg);
  background-size: 100%;
  background-position: center;
  background-blend-mode: unset;
  padding: 50px 0px 60px 0px;
}

.hctFromContainer {
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  background: #fff;
}

.hctfTitle h4 {
  font-size: 20px;
  font-weight: 600;
}

.formWrapper {
  margin-top: 20px;
}

.form-group {
  display: block;
  margin-bottom: 14px;
}

.form-group span {
  margin-bottom: 10px;
  font-weight: 500;
  display: inline-block;
}

.form-group .lb {
  font-size: 15px;
  color: #000;
  font-weight: 500;
}

.form-control {
  /* border-radius: 12px; */
  padding: 8px 13px;
  font-weight: 500;
}


.contact-btn a {
  color: #fff;
}

.contact-btn {
  display: block;
  text-align: center;
}

.contact-btn:hover a {
  text-decoration: none;

}

.mapSection iframe {
  width: 100%;
  height: 420px;
}

.login .map-sec {
  float: left;
  width: 40%;
  /* padding: 45px; */
  position: absolute;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
  overflow: hidden;
}


.login .map-sec iframe {
  width: 100%;
  height: 100%;
}

.contant-form-sec {
  height: auto !important;
}

.contant-form-sec .rhs {
  height: auto;
}


/* map & form section css start */

.collaborate-us-sec {
  padding: 50px 0px 50px 0px !important;
  background-image: url(../images/bg-2.jpg) !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.login .inn {
  background: rgb(255, 255, 255);
  position: relative;
  margin: 0px auto;
  display: table;
  box-shadow: rgb(51, 51, 51) 0px 1px 19px -17px;
  border-radius: 10px;
  width: 100%;
  height: 600px;
  padding: 0;
}

.contant-form-sec {
  height: auto !important;
}

.login .map-sec {
  float: left;
  width: 40%;
  /* padding: 45px; */
  position: absolute;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
  overflow: hidden;
}

.login .map-sec iframe {
  width: 100%;
  height: 100%;
}

.contant-form-sec .rhs {
  height: auto;
}

.login .rhs {
  float: left;
  width: 60%;
  padding: 50px 40px;
  /* height: 600px; */
  margin-left: 40%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
}

.form-tit {
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(223, 223, 223);
  margin-bottom: 25px;
  color: rgb(52, 64, 85);
}

.form-tit h4 {
  text-transform: uppercase;
  font-size: 14px;
  color: #000;
}

.form-tit h1 {
  font-size: 22px;
  line-height: 36px;
  font-weight: 500;
  color: rgb(51, 51, 51);
}


.job-des-sec {
  margin: 40px auto;
}

.job-des-sec-wrapper tr th,
.job-des-sec-wrapper tr td {
  vertical-align: text-top;
  padding: 20px 20px 20px 21px;
  border: 1px solid #ddd;
  text-align: justify;
}

.job-des-sec-wrapper tbody th {
  width: 20%;
}

/* .job-des-sec-wrapper tr th{
  color:#000;
} */


.job-des-appy-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.mb-65 {
  margin-bottom: 40px;
}

.sec-title3 .title {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  color: #0a0a0a;
  margin: 0;
}

.pb-25 {
  padding-bottom: 15px;
}

.sec-title3 .heading-border-line {
  position: relative;
}

.sec-title3 .heading-border-line:before {
  content: "";
  width: 12px;
  height: 4px;
  background: #f5811e;
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -35px;
  transform: translateX(-50%);
  border-radius: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 1;
}

.sec-title3 .heading-border-line:after {
  content: "";
  width: 65px;
  height: 4px;
  background: #00a77e;
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 50%;
  margin-left: -20px;
  border-radius: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 0;
}

.career-sec {
  background-color: #EBEBEB;
  padding: 50px 0px;
}

.carer-img img {
  border-radius: 10px;
}

/* .pr-70 {
  padding-right: 70px;
} */


.sub-text {
  font-weight: 600;
  margin: 0 0 10px;
  display: inline-block;
  color: #f5811e;
  line-height: 28px;
  font-size: 15px;
}

.sec-title2 .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
}

.sec-title2 .title span {
  color: #00a77e;
}

.resume-writing-section {
  padding: 25px 0px 40px 0px;
}

.career-tit h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 5px;
}

.applition-form-table tr th {
  background-color: #00a77e;
  color: #fff;
  font-weight: 600;
  border: 1px solid #ddd;
}

.applition-form-table tr td {
  border: 1px solid #ddd;
}


.btn-area3 .view-details-btn {
  background: #f5811e;
  margin-right: 14px;
}

.btn-area3 .readon2 {
  border-radius: 0;
  padding: 7px 12px;
}

.readon2 {
  padding: 12px 35px 10px;
  border-radius: 30px;
  color: #ffffff !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #00a77e;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease !important;
}

.readon2 .btn-arrow {
  position: relative;
  width: 20px;
  height: 16px;
  overflow: hidden;
  margin-left: 8px;
}

.readon2 .btn-arrow:before {
  right: 1px;
}

.readon2 .btn-arrow:before,
.readon2 .btn-arrow:after {
  position: absolute;
  content: "\e912";
  font-family: 'icomoon' !important;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  transition: all 0.3s ease;
}

.readon2 .btn-arrow:after {
  right: 22px;
}

.career-section {
  background: url(../images/inner-banner-career-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 300px;
  display: flex;
  background-position: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}

.conatct-section {
  background: url(../images/contact-inner-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 300px;
  display: flex;
  background-position: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}

/* .career-section:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: #0000008c;
  opacity: 0.8;
} */

.looking-for-job-section {
  padding: 50px 0px;
}

.tourover-title {
  margin-bottom: 10px;
}

.clients-subtitle h3 {
  font-size: 32px;
  font-weight: 600;
  color: #ff7500;
}

.association-sec {
  padding-top: 0px !important;
}


/* industries we serve css start */

#domestic-therapies .domestic-therapies-icon .associates-box {
  background-repeat: no-repeat;
  background-position: 10px center;
  height: 80px;
  position: relative;
  display: block;
  padding-top: 24px;
  text-align: left;
  padding-left: 100px;
}

.Subsidiaries-Associates .associates-box {
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #f5811e;
  margin: 12px;
  background-color: #F5F5F5;
  transition: 0.8s;
}

.Subsidiaries-Associates .associates-box.therapies-box {
  background-color: #F5F5F5;
  margin: 8px;
  display: flex !important;
  align-items: center;
  height: 100px !important;
  transition: 0.8s;
  flex-direction: row;
  background-image: none !important;
  padding-left: 0 !important;
  padding-top: 0 !important;
  justify-content: normal;
  border-radius: 20px;
  border: 1px dashed #f5811e52;
  /* border: 1px dashed #00419836; */
}


.Subsidiaries-Associates .associates-box.therapies-box div {
  width: 80px;
  border-right: 1px solid #E0E0E0;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Subsidiaries-Associates .associates-box.therapies-box a {
  position: relative;
  top: 10px;
  line-height: 21px;
}

.Subsidiaries-Associates .associates-box.therapies-box a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: #f5811e !important;
  display: block;
  padding-left: 18px;
  transition: 0.5s;
}

.Subsidiaries-Associates .associates-box.therapies-box:hover {
  background-color: #00a77e;
}


.Subsidiaries-Associates .associates-box.therapies-box:hover a {
  top: 5px;
}

.Subsidiaries-Associates .associates-box.therapies-box:hover a {
  color: #fff !important;
}

.Subsidiaries-Associates .associates-box.therapies-box a small {
  top: 5px;
  position: relative;
  transition: 0.1s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.Subsidiaries-Associates .associates-box.therapies-box a small::after {
  width: 100%;
  height: 1px;
  content: '';
  position: absolute;
  background-color: #fff;
  bottom: 0px;
  left: 0px;
}

.Subsidiaries-Associates .associates-box.therapies-box:hover a small {
  top: 0px;
  visibility: visible;
  opacity: 1;
}

.serives-content-list {
  margin-top: 30px;
  padding-left: 20px;
}

.serives-content-list li {
  margin-bottom: 8px;
  list-style-type: disc;
  text-align: justify;
}



@media(max-width:992px) {
  .shrink {
    animation: none;
  }

  .login-btn {
    margin-left: 15px !important;
    margin-top: 15px !important
  }

  .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 5px 12px;
    color: #333
  }

  .navbar-expand-lg.navbar-dark {
    background: rgb(215, 223, 239);
  }

  .navbar-collapse {
    padding-top: 20px;
    width: 100%;
    position: absolute;
    margin-top: 25px;
    right: 0px;
    background: rgb(215, 223, 239)
  }

  .associateCarousel .owl-nav button.owl-next {
    right: -20px;
  }

  .associateCarousel .owl-nav button.owl-prev {
    left: -20px;
  }

  .brand-section .clients-logo .owl-nav button.owl-prev {
    left: -20px;
  }

  .brand-section .clients-logo .owl-nav button.owl-next {
    right: -20px;
  }

  .navbar-collapse .navbar-nav .nav-item {
    border-bottom: 1px solid #00000026;
    padding: 4px 20px;

  }
}


@media(max-width:991px) {
  .navbar-toggler {
    font-size: 18px;
    padding: 6px;
    position: absolute;
    right: 25px;
  }

  .blog-items .owl-dots {
    display: none;
  }
}

@media(max-width:860px) {
  .welcome-content {
    margin-top: 70px;
  }
}


@media(max-width:767px) {
  .associateCarousel .owl-nav button.owl-next {
    right: 0px;
  }

  .associateCarousel .owl-nav button.owl-prev {
    left: 0px;
  }

  .brand-section .clients-logo .owl-nav button.owl-prev {
    left: 0px;
  }

  .brand-section .clients-logo .owl-nav button.owl-next {
    right: 0px;
  }
}

@media(max-width:576px) {
  .navbar-brand img {
    max-height: 75px;
    width: auto;
  }

  .navbar-toggler {
    font-size: 16px;
    padding: 4px;
    position: absolute;
    right: 20px;
  }

  .navbar-collapse .navbar-nav .nav-item {
    border-bottom: 1px solid #00000026;
    padding: 0px 10px;

  }

  .welcome-content h1 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
  }

  .mob-none {
    display: none;
  }

  .tp-funfact-item {
    background: #f5821f;
    padding: 10px;
    border-radius: 5px;
    align-items: center;
    margin-bottom: 15px;

  }

  .statcont {
    padding-top: 25px;
    padding-bottom: 10px !important;
  }

  .tp-funfact-number {
    font-size: 24px;
  }

  .tp-funfact-icon span img {
    max-width: 35px;
  }

  .tp-funfact-icon span {
    height: 65px;
    width: 65px;
  }

  .features-area.featuresNew {
    padding: 30px 0px 15px 0px;

  }

  .featuresNew.features-area .features-item {
    min-height: auto;
    gap: 0px;
    padding: 15px;
    margin-bottom: 14px;

  }

  .service-area-pad .ch-top-title-s3 {
    margin-bottom: 0px;
  }

  .certificationSection {
    padding: 20px 0px 40px 0px;
  }

  .certificationSection .ch-top-title {
    margin-bottom: 0px;
  }

  .certificationSection .ch-top-title h2 {
    margin-bottom: 0px;
  }

  .owl-theme.certificateCarousel .owl-dots {
    margin-top: 0px;
  }

  .asso-sec {
    padding: 15px 0px 25px 0px;
  }

  .asso-sec .ch-top-title {
    margin-bottom: 5px;
  }

  .h--timeline-event-title {
    font-size: 30px !important;
    font-weight: 600;
  }

  .h--timeline-event-content {
    padding: 1rem !important;
    margin: 0rem auto 0px !important;
  }

  .companyTimeline .ch-top-title-s3 {
    margin-bottom: 0px;

  }

  .companyTimeline {
    padding-top: 20px;
  }

  .h--timeline-events {
    padding-bottom: 25px !important;
  }

  .brand-section .clients-logo img {
    margin-bottom: 15px;
  }

  .testimonialWrapper {
    padding: 10px 15px 40px 15px;
  }

  .testimonial-section .ch-top-title {
    margin-bottom: 5px;

  }

  .testimonial-section .testimonial-items.testimonialCarousel .testimonial-item-inner {
    padding: 15px;
  }

  .testimonial-items.testimonialCarousel .info-item {
    margin-top: 5px;
  }

  .testimonial-section .testimonial-items .testimonial-item h4 {
    font-size: 18px;
  }

  .testimonial-section .testimonial-items .testimonial-item p {
    line-height: 1.6em;
  }

  .ch-blog-area {
    padding-top: 15px;
  }


}



@media(max-width:480px) {
  .navbar-toggler {
    font-size: 16px;
    padding: 4px;
    position: absolute;
    right: 15px;
  }

  .welcome-content h1 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}

.infra-title {
  font-size: 32px;
}

.left-to-right-shade img {
  border-radius: 10px;
}

.infra-content {
  margin-bottom: 25px;
  transition: 0.8s;
}

.infra-content:hover {
  transform: translateY(-6px);
}

.infra-content img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
}

.infra-content h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  color: #fff;
  background-color: #dc8235;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.ch-blog-area .blog-items .blog-item .infra-contents {
  min-height: auto !important;
  text-align: center;
}

.ch-blog-area .blog-items .blog-item .infra-contents h2 {
  font-size: 22px;

}

.ch-blog-area .blog-items .owl-dots {
  display: none !important;
}

.infra-title-content {
  margin-bottom: 18px !important;
}

.infra-title-content h2 {
  font-size: 36px !important;
  line-height: 40px;

}



/* ********* 29/11/2024 *********** */

/* .bg-oranges {
  background: #f5811e !important;
}

.bg-greenish {
  background: #00a77e !important;
}

.industries .service-text h3,
.industries .service-text p,
.industries .service-text a {
  color: #fff !important;
} */


.textJust {
  text-align: justify;
}

.boxQ img {
  border-radius: 10px;
  box-shadow: 0 2px 5px 0 rgb(129 129 129 / 25%);
}

.flexbox {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
}

.flex {
  width: 25%;
  display: flex;
  flex-direction: column;
  padding: 4%;
  justify-content: center;
}

.flexbottom {
  border-bottom: 6px solid #009688;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.flextop {
  border-top: 5px solid #009688;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  position: relative;
}

.flextop:before {
  content: '';
  width: 1px;
  height: 250px;
  background: #009688;
  position: absolute;
  left: 0;
  /* border-radius: 64px; */
}

.flextop:after {
  content: '';
  width: 1px;
  height: 250px;
  background: #009688;
  position: absolute;
  right: 0;
}

.flexbottom {
  box-shadow: inset 0px -20px 0px #03a999;
}

.flex.flextop {
  box-shadow: inset 0px 20px 0px #03a999;
}

.stepNumber {
  width: 100%;
  text-align: center;
  border: 1px solid orange;
  border-radius: 50px 0px 50px 0px;
  background: orange;
  color: white;

}

.trainingCarousel img {
  border-radius: 10px;
}

.team-area .trainingCarousel .owl-dots {
  text-align: center;
  bottom: -39px;
  position: absolute;
  width: 100%;
}

.testing .title-2 {
  font-size: 42px;
  font-weight: 600;
}

.ww li {
  color: #fff;
}



/* ************** 26/12/24 **************** */
.uPVC-section .upvc img {
  border-radius: 10px;
}

.pv1 ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.pv1 i {
  color: #00a77e;
}

.uPVC-section .clients-logo img {
  padding: 10px 15px;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin-bottom: 25px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  border-radius: 10px;
}

.uPVC-section .owl-nav {
  display: none;
}

.bg-services {
  background: #EFF4F9;
}

.channel1 .channel-img {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background: #fff;
}

.channel-img img {
  border-radius: 15px;
  width: 100%;

}

.channel1 .channel-img p {
  padding-bottom: 10px;
  font-size: 18px;
}

/* ********* 02/01/25 *********** */

.services-sec .pvc-img .our-serv-img img {
  /* background: #EFF4F9; */
  min-height: 244px;
  text-align: center;
  /* flex-direction: column;
  gap: 10px; */
  backdrop-filter: blur(6px);
  border: 3px solid #00a67d;
  border-radius: 15px;
}

.sidebar-cta-box {
  position: relative;
  background: #EFF4F9;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  z-index: 1;
}

.sidebar-cta-logo {
  position: relative;
  margin-bottom: 10px;
}

.sidebar-cta-content {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-cta-content h3 {
  font-size: 32px;
  font-weight: 500;
  color: #00a67e;
  margin-bottom: 10px;
}

.sidebar-cta-content h3 span {
  font-weight: 700;
}

.sidebar-cta-content p {
  color: #636363;
  margin-bottom: 0;
}

.sidebar-cta-contact-list {
  position: relative;
}

.sidebar-cta-contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.sidebar-cta-contact-item .icon-box {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-right: 15px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
  z-index: 1;
}

.sidebar-cta-contact-item .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #636363;
  opacity: 16%;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  z-index: 0;
}

.cta-contact-item-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: #636363;
  transition: all 0.3s ease-in-out;
}

/* ************ 13/01/2025 ***************** */

.sidebar-why-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  z-index: 1;
  margin-top: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-bottom: 4px solid #00a67d;
}

.sidebar-why-box .sidebar-cta-content h3 {
  font-size: 32px;
  font-weight: 500;
  color: #f5811e;
  margin-bottom: 10px;
}

.sidebar-why-box .sidebar-cta-content h3 span {
  color: #00a67e;
}

.sidebar-why-box .sidebar-cta-contact-list ul {
  list-style: disc;
  padding: 0;
  margin: 0;
  padding-left: 20px;
}

.sidebar-why-box .sidebar-cta-contact-list ul li::marker {
  font-size: 18px;
  color: #f5811e;
}

.steelRein .our-serv-img {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.26);
  border-radius: 10px;
  object-fit: cover;
  margin: 5px;
}

.steelRein .our-serv-img img {
  border-radius: 10px;
}

.steelICarousel.owl-theme .owl-dots button.active.owl-dot {
  background: #00a77e;
  width: 20px;
  height: 20px;
}

.steelICarousel.owl-theme .owl-dots button.owl-dot {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

.owl-theme.steelICarousel .owl-dots .owl-dot span {
  display: none;
}

.owl-theme.steelICarousel .owl-nav button {
  display: none;
}

.owl-theme.steelICarousel .owl-dots {
  margin: auto;
  margin-top: 30px;
  text-align: center;
}

.table.alt-table>tbody {
  vertical-align: middle;
}

.solar-img .channel-img {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.26);
  border-radius: 10px;
  object-fit: cover;
  margin: 5px;
}

/* ****************** 30/01/2025 *************** */


.ch-blog-area .gb-items .blog-item {
  background: transparent;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.ch-blog-area .gb-items .blog-item .blog-img {
  border-radius: 20px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 10px #ddd;
  overflow: hidden;
}

.ch-blog-area .gb-items .blog-item img {
  width: 100%;
  transform: scale(1);
  transition: all 0.6s;
}

.ch-blog-area .gb-items .blog-item .blog-content {
  width: 94%;
  margin: auto;
  border: none;
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: -13px;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 11px;
  min-height: 210px;
  transition: all 0.3s;
}

.ch-blog-area .gb-items .blog-item .blog-content h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding-top: 15px;
  margin-bottom: 5px;
  min-height: 70px;
}

.ch-blog-area .gb-items .blog-item .blog-content h2 a {
  color: #1B1A1A;
}

.ch-blog-area .gb-items .blog-item .blog-content p {
  line-height: normal;
  font-size: 14px;
  margin-bottom: 0;
}

.blog-bottom-btn .ch-btn-style-3 {
  padding: 6px 16px;
  border-radius: 19px;
}


.gbPluse-details-section {
  padding-top: 30px;
  padding-bottom: 40px;
}

.gbPluse-details-section .blog-details-desc {
  padding-right: 40px;
}

.gbPluse-details-section .blog-details-desc .image1 {
  overflow: hidden;
  border-radius: 3px;
}

.gbPluse-details-section .blog-details-desc .mb-20 {
  margin-bottom: 20px;
}

.gbPluse-details-section .blog-details-desc .image1 img {
  transition: .5s;
}

.gbPluse-details-section .blog-details-desc img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  max-height: 450px !important;
}

.gbPluse-details-section .blog-details-desc .info-list {
  padding: 0;
  list-style: none;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gbPluse-details-section .blog-details-desc .info-list li {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 16px;
  color: #797979;
}

.gbPluse-details-section .blog-details-desc .info-list li:last-child {
  margin-right: 0;
}

.gbPluse-details-section .blog-details-desc .content1 h3 {
  margin-top: -4px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 500;
}

.gbPluse-details-section p {
  text-align: justify;
  line-height: 1.7;
}

.gbPluse-details-section .blog-details-desc .image1 {
  overflow: hidden;
  border-radius: 3px;
}

.gbPluse-details-section .blog-details-desc .mb-30 {
  margin-bottom: 30px !important;
}


.gbPluse-details-section .blog-details-desc .mb-30 {
  margin-bottom: 30px !important;
}

.gbPluse-details-section .blog-details-desc .blockquote {
  position: relative;
  padding: 25px 20px;
  margin-bottom: 25px;
  background: #f9f8fe;
  border-radius: 5px;
}

.gbPluse-details-section .blockquote {
  /* margin-bottom: 1rem; */
  font-size: 1.25rem;
}

.gbPluse-details-section blockquote {
  margin: 0 0 1rem;
}

.gbPluse-details-section .blog-details-desc .blockquote p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.gbPluse-details-section aside {
  display: block;
}

.gbPluse-details-section .gbPluse-details-section h3.sub-title {
  line-height: 1;
  margin-top: -2px;
  margin-bottom: 20px;
  font-size: 22px;
  text-transform: capitalize;
}

.gbPluse-details-section .widget-area .widget-article .article-item {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  margin-bottom: 20px;
}

.gbPluse-details-section .widget-area .widget-article .article-item .image1 {
  -webkit-box-flex: 0;
  flex: 0 0 131px;
  overflow: hidden;
}

.gbPluse-details-section .widget-area .widget-article .article-item .image1 img {
  transition: .5s;
  border-radius: 15px;
}

.gbPluse-details-section .widget-area .widget-article .article-item .content1 {
  background: #fff;
  padding-left: 10px;
}

.gbPluse-details-section .widget-area .widget-article .article-item .content1 h3 {
  margin-bottom: 0px;
  font-size: 18px;
}

.gbPluse-details-section .widget-area .widget-article .article-item .content1 h3 a {
    color: #1b1a1a;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.gbPluse-details-section .widget-area .widget-article .article-item .content1 .list {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.gbPluse-details-section .widget-area .widget-article .article-item .content1 .list li:last-child {
  margin-right: 0;
}
.gbPluse-details-section .widget-area .widget-article .article-item .content1 .list li {
  display: inline-block; color: #797979; font-size: 13px; margin-top: 5px;
}

.gbPluse-details-section .widget-area .widget-article .article-item .content1 .author span {
  font-size: 14px;
}

.gbPluse-details-section .blog-details-desc .image img:hover {
  transform: scale(1.1) !important;
}

.gbPluse-details-section .widget-area .widget-article .article-item .image1 img:hover {
  transform: scale(1.1) !important;
}

.gbPluse-details-section .widget-area .widget-article .article-item .content1 h3 a:hover {
  color: #00a77e;
  text-decoration: underline;
}
.blogdate { font-size: 13px; font-weight: 600; color: #ed750d; margin: 15px 0 0 0; }
.blogright-sec { padding: 15px; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; position: sticky; top: 60px; }


.our-services-content3 h1, .our-services-content3 h2, .our-services-content3 h3, 
.our-services-content3 h4, .our-services-content3 h5, .our-services-content3 h6 { font-family: "Montserrat", sans-serif; font-weight: 700!important; }

.our-services-content3 p, .our-services-content3 ul, 
.our-services-content3 ul li, .our-services-content3 span, 
.our-services-content3 strong, .our-services-content3 b, 
.our-services-content3 em { font-family: 'trebuchet_msregular'!important; }



/*//////////////// 13-03-2025 ////*/


/*@media screen and (max-width: 480px) {*/

/* .testing .title-2 {*/
/*    font-size: 34px !important;*/
/*    font-weight: 600;*/
/*}*/
/*.flexbox {*/
/*    display: flex;*/
/*   width: 100%; */
/*    flex-wrap: nowrap;*/
/*    align-content: center;*/
/*    justify-content: center;*/
/*    flex-direction: column;*/
/*}*/
/*.flex {*/
/*    width: 100%;*/
/*    display: flex*/
/*;*/
/*    flex-direction: column;*/
/*    padding: 4%;*/
/*    justify-content: center;*/
/*}*/
/*.boxQ {*/
/*    padding-left: 30px;*/
/*    padding-bottom: 20px;*/
/*}*/





/*}*/



@media screen and (max-width: 480px) {

 .testing .title-2 {
    font-size: 34px !important;
    font-weight: 600;
}
.flexbox {
    display: flex;
   width: 100%; 
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}
.flex {
    width: 100%;
    display: flex
;
    flex-direction: column;
    padding: 4%;
    justify-content: center;
}
.boxQ {
    padding-left: 30px;
    padding-bottom: 20px;
}
.login .map-sec {
    float: left;
    width: 100%;
    
}
.rhs {
    width: 100% !important;
}

.login .map-sec {
    / float: left; /
    / width: 40%; /
    / padding: 45px; /
    position: relative;

}
.login .rhs {
    float: left;
    width: 60%;
    padding: 20px 20px;
    / height: 600px; /
    margin-left: 0%;
}
.contactInfoCard {margin-bottom: 50px;}

.login .map-sec {position: relative!important;}

.login .rhs {
    float: left;
    width: 95%!important;
    padding: 50px 40px;
    / height: 600px; /
    margin-left: 2%!important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
          margin-left: 7px;
}


.footer-section .upper-footer {
    padding: 55px 0 45px;
    background: #000;
    position: static!important;
    z-index: -1;
}




}




