@import url(https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Poppins:wght@100;300;400;500;600;700;800;900&family=Robert+Sans&family=Open+Sans&family=Montserrat:wght@100;300;400;500;600;700;800;900);
@import url(https://fonts.googleapis.com/css?family=Merriweather:300,400,700,900&display=swap);
:root {
  --default-green:#97B500;
}

.utter-modal {
  position: fixed;
  margin: auto;
  z-index: 1000;
  transition: 0.3s;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  width: 60%;
}
.utter-modal.active {
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
}
.utter-modal .close-video-modal {
  position: absolute;
  right: 11px;
  top: 9px;
  font-size: 1.5rem;
  background: #97b500;
  color: #fff;
  border-radius: 100%;
  width: 30px;
  padding: 2px 5.5px;
  height: 30px;
  z-index: 30;
}
@media (min-width: 1024px) {
  .utter-modal .modal-holder {
    background-color: #fff;
    margin: auto;
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    border-radius: 20px;
  }
  .utter-modal .modal-holder video {
    border-radius: 20px;
    margin-bottom: -10px;
  }
  .utter-modal .modal-holder .modal-body {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .utter-modal .modal-holder {
    width: 100%;
    padding: 56px 10px 20px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
  }
  .utter-modal.modal-video {
    width: 95%;
  }
}

.modal-share .modal-holder {
  padding: 45px 6px 2px 6px;
}

*, *::after, *::before {
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  line-height: 1.74;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "Poppins", serif;
  color: #172541;
  position: relative;
  background-color: #ffffff;
}
body.no-overflow {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #7C7C7C;
  font-family: "Poppins", serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.41;
}

h1 {
  font-size: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 25px;
  }
}

h2 {
  font-size: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 21px;
  }
}

h4 {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 17px;
  }
}

h5 {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 13px;
}

p:last-child {
  margin-bottom: 0;
}

a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a, button, img, input, span {
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

*:focus {
  outline: none !important;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

.btn.focus, .btn:focus {
  outline: none;
  box-shadow: none;
}

a:hover {
  text-decoration: none;
  color: #97B500;
}

.input-text[type=text], .input-text[type=email], .input-text[type=number] {
  border: 1px solid #777;
  outline: 0;
  padding: 0 8px;
  border-radius: 10px;
  line-height: 33px;
}

button, input[type=submit] {
  cursor: pointer;
}

[disabled] {
  cursor: not-allowed;
}

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

.mark, mark {
  padding: 0 0;
  background-color: transparent;
}

.font-weight--ex-bold {
  font-weight: 800;
}

.font-weight--bold {
  font-weight: 600;
}

.font-weight--reguler {
  font-weight: 500;
}

.font-weight--normal {
  font-weight: 400;
}

.font-weight--light {
  font-weight: 300;
}

.letter-space-1 {
  letter-spacing: 1px;
}

.letter-space-2 {
  letter-spacing: 2px;
}

.font-italic {
  font-style: italic;
}

.text-underline {
  text-decoration: underline;
}

/*--
    Default Class
*/
.text-color-primary, .title--default {
  color: #7C7C7C;
}

.text-color-secondary {
  color: #97B500;
}

.text-black {
  color: #333333 !important;
}

.bg-white {
  background: #ffffff;
}

.bg-gray {
  background: #F8F8F8;
}

.bg-gray-2 {
  background: #f1f1f1;
}

.bg-gray-3 {
  background: #f6f2ed;
}

.theme-bg-default {
  background: #7C7C7C;
}

.theme-bg-secondary {
  background: #97B500;
}

.theme-bg-three {
  background: #707070;
}

.theme-bg-lt-grren {
  background: #EDF5E3;
}

.theme-color-default {
  color: #7C7C7C;
}

.theme-color-secondary {
  color: #97B500;
}

.theme-color-three {
  color: #707070;
}

.theme-color-four {
  color: #97B500;
}

.transparent-bg {
  background: rgba(255, 255, 255, 0.85);
}

.sub-heading {
  color: #E0E2DE;
}

.heading-title {
  color: #7C7C7C;
}

.black-bg {
  background: #000000;
}

.border-radus-5 {
  border-radius: 5px;
}

.text-green {
  color: #97B500;
}

.bg-gradient {
  background: -webkit-linear-gradient(top, #FFF 0, #F5F5F5 100%);
}

.x-index-1 {
  z-index: 1;
}

.overflow-hiden {
  overflow: hidden;
}

.box-shadow--default {
  box-shadow: 0px 0px 54px 0px rgba(39, 50, 114, 0.14);
}

.mgt-80 {
  margin-top: 80px !important;
}

.mgt-60 {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .mgt-60 {
    margin-top: -75px;
  }
}

.mgt-110 {
  margin-top: 80px !important;
}

.img-size {
  max-width: 90%;
}
@media only screen and (max-width: 767px) {
  .img-size {
    max-width: 100%;
  }
}

.img-size-1 {
  max-width: 80%;
}
@media only screen and (max-width: 767px) {
  .img-size-1 {
    max-width: 90%;
  }
}

.img-size-2 {
  max-width: 60%;
}
@media only screen and (max-width: 767px) {
  .img-size-2 {
    max-width: 90%;
  }
}

.img-size-3 {
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .img-size-3 {
    max-width: 70%;
  }
}

.img-size-4 {
  max-width: 60%;
}
@media only screen and (max-width: 767px) {
  .img-size-4 {
    max-width: 50%;
  }
}

.zinde1 {
  z-index: 1;
}

.zinde2 {
  z-index: 2;
}

.zinde10 {
  z-index: 10;
}

span {
  color: #97B500;
}

/*-- Tab Content & Pane Fix --*/
select {
  padding: 3px 20px;
  height: 56px;
  max-width: 100%;
  width: 100%;
  outline: none;
  border: 1px solid #f8f8f8;
  border-radius: 5px;
  background: #f8f8f8 url("../assets/images/icons/selector-icon.png") no-repeat center right 20px;
  background-color: rgb(248, 248, 248);
  -moz-appearance: none;
  -webkit-appearance: none;
}
select:focus {
  background: #f8f8f8 url("../assets/images/icons/selector-icon.png") no-repeat center right 20px !important;
}

.fixed-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/*------- Defauld Class --------*/
.text-black {
  color: #333;
}

.box-shadow-top {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.border {
  border: 1px solid #ededed !important;
}

.border-top {
  border-top: 1px solid #ededed !important;
}

.border-right {
  border-right: 1px solid #ededed !important;
}

.border-bottom {
  border-bottom: 1px solid #ededed !important;
}

.border-left {
  border-left: 1px solid #ededed !important;
}

.border-top-dash {
  border-top: 1px dashed #ddd !important;
}

.border-bottom-dash {
  border-bottom: 1px dashed #ddd !important;
}

.border-top-thick {
  border-top: 2px solid #ededed !important;
}

.border-bottom-thick {
  border-bottom: 2px solid #ededed !important;
}

.border-top-drak {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.border-bottom-drak {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.section-title {
  color: #707070;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 36px;
    letter-spacing: 0px;
  }
}

.section-title-srv {
  text-transform: uppercase;
  font-family: "Poppins", serif;
  font-weight: 900;
}
.section-title-srv__immigration {
  line-height: 65px !important;
  color: #E0E2DE !important;
  font-size: 54px;
  letter-spacing: 0px;
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-srv__immigration {
    font-size: 50px;
    letter-spacing: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-srv__immigration {
    font-size: 54px;
    letter-spacing: -1px;
  }
}
.section-title-srv__immigration span {
  font-size: 54px;
}
.section-title-srv__student {
  line-height: 65px !important;
  color: #E0E2DE !important;
  font-size: 54px;
  letter-spacing: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-srv__student {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-srv__student {
    font-size: 52px;
    letter-spacing: -3px;
  }
}
.section-title-srv__student span {
  font-size: 54px;
}
.section-title-srv__travel {
  line-height: 65px !important;
  color: #E0E2DE !important;
  font-size: 85px;
  letter-spacing: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-srv__travel {
    font-size: 85px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-srv__travel {
    font-size: 59px;
    letter-spacing: -3px;
  }
}
.section-title-srv__travel span {
  font-size: 45px;
}
.section-title-srv__transit {
  line-height: 45px !important;
  color: #E0E2DE !important;
  font-size: 54px;
  letter-spacing: -1px;
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-srv__transit {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-srv__transit {
    font-size: 59px;
    letter-spacing: -3px;
  }
}
.section-title-srv__transit span {
  font-size: 34px;
  display: block;
}
.section-title-srv__work {
  line-height: 65px !important;
  color: #E0E2DE !important;
  font-size: 54px;
  letter-spacing: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-srv__work {
    font-size: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-srv__work {
    font-size: 60px;
    letter-spacing: -3px;
  }
}
.section-title-srv__work span {
  font-size: 54px;
}
.section-title-srv__pship {
  line-height: 55px !important;
  color: #E0E2DE !important;
  font-size: 54px;
  letter-spacing: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-srv__pship {
    font-size: 55px;
    letter-spacing: 6px;
    text-align: left !important;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-srv__pship {
    font-size: 47px;
    letter-spacing: 3px;
    text-align: left !important;
  }
}
.section-title-srv__pship span {
  font-size: 54px;
}

#des-svg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50vmin;
  height: 15vmin;
}

.auto__right-slider {
  margin: 0 5%;
}

.section-sub-title {
  color: #7C7C7C;
  letter-spacing: 0px;
  line-height: 1.43;
  margin-top: -15px;
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  .section-sub-title {
    letter-spacing: 0px;
    font-size: 15px;
  }
}
.section-sub-title .more-spacey {
  margin-top: -5px;
}
@media only screen and (max-width: 767px) {
  .section-sub-title h4 {
    letter-spacing: 0px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .section-sub-title h6 {
    letter-spacing: 0px;
  }
}
.section-sub-title strong {
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  .section-sub-title strong {
    font-size: 15px;
  }
}

.sec-title {
  margin-top: 50px;
}
.sec-title .about-us-content .fs-4 {
  font-size: 22px;
}
@media (max-width: 767px) {
  .sec-title .about-us-content .fs-4 {
    font-size: clamp(0.8rem, 13px, 1rem);
  }
}

@media only screen and (max-width: 767px) {
  .section-title-wrap .section-title-srv h6.text-right {
    text-align: left !important;
  }
}
.section-title-wrap h2 {
  font-size: 42px;
}
@media only screen and (max-width: 767px) {
  .section-title-wrap h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .section-title-wrap h2 {
    font-size: clamp(1.3rem, 20px, 1.5rem);
  }
}
.section-title-wrap small {
  font-size: 110%;
}
.section-title-wrap h3 {
  font-size: 26px;
}
@media only screen and (max-width: 767px) {
  .section-title-wrap h3 {
    letter-spacing: 0px;
    font-size: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-wrap h4 {
    letter-spacing: 1px;
    font-size: 16px;
  }
}
.section-title-wrap h6 {
  font-size: 17px;
}
@media only screen and (max-width: 767px) {
  .section-title-wrap h6 {
    letter-spacing: 0px;
    font-size: 14px;
    line-height: 30px;
  }
}
.section-title-wrap p {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .section-title-wrap p {
    letter-spacing: 0px;
    font-size: 16px;
  }
}
.section-title-wrap strong {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .section-title-wrap strong {
    font-size: 14px;
  }
}
.section-title-wrap .flags {
  width: 30px;
  height: 20px;
}
@media only screen and (max-width: 767px) {
  .section-title-wrap .flags {
    width: 15px;
    height: 10px;
  }
}

.op-map {
  opacity: 0.5;
  margin-bottom: -30px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .op-map {
    font-size: 14px;
    text-align: center;
  }
}

.un-bdr {
  padding-bottom: 0px;
  border-bottom: 1px dashed #333;
}

.unp-bdr {
  padding-bottom: 5px;
  border-bottom: 1px dashed #333;
}

.section-under-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
}
.section-under-heading a {
  color: #7C7C7C;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.section-under-heading a::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: -1px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}
.section-under-heading a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.row-changers {
  flex-direction: column-reverse;
}
@media only screen and (max-width: 767px) {
  .row-changers {
    flex-direction: row-reverse;
  }
}

.img-width {
  width: 100%;
}

.title-dec-text {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

::-moz-selection {
  color: #ffffff;
  background-color: #7C7C7C;
}

::selection {
  color: #ffffff;
  background-color: #7C7C7C;
}

form {
  /* FF 4-18 */
  /* FF 19+ */
  /* IE 10+ */
}
form input:focus::-moz-placeholder {
  color: transparent;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input::placeholder, form textarea::placeholder {
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=range]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=time]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=color]:focus, textarea:focus, select:focus, select:focus, textarea:focus {
  color: #7C7C7C;
  border-color: #7C7C7C;
}

input[type=checkbox] {
  position: relative;
  background: 0 0;
  border-width: 0;
  box-shadow: none;
  margin: 0 10px 0 3px;
  cursor: pointer;
}

.input-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.input-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.input-col-5 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}
@media only screen and (max-width: 575px) {
  .input-col-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.input-col-3 {
  flex: 0 0 33%;
  max-width: 33%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Overlay styles */
[data-overlay],
[data-secondary-overlay],
[data-black-overlay],
[data-white-overlay] {
  position: relative;
}

[data-overlay] > div,
[data-overlay] > *,
[data-secondary-overlay] > div,
[data-secondary-overlay] > *,
[data-black-overlay] > div,
[data-black-overlay] > *,
[data-white-overlay] > div,
[data-white-overlay] > * {
  position: relative;
  z-index: 2;
}

[data-overlay]:before,
[data-secondary-overlay]:before,
[data-black-overlay]:before,
[data-white-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

/*[data-overlay]:before {
	background-color: $theme-color--default;
}*/
[data-secondary-overlay]:before {
  background-color: #97B500;
}

[data-black-overlay]:before {
  background-color: #000000;
}

[data-white-overlay]:before {
  background-color: #ffffff;
}

[data-overlay="1"]:before,
[data-secondary-overlay="1"]:before,
[data-black-overlay="1"]:before,
[data-white-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before,
[data-secondary-overlay="2"]:before,
[data-black-overlay="2"]:before,
[data-white-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before,
[data-secondary-overlay="3"]:before,
[data-black-overlay="3"]:before,
[data-white-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before,
[data-secondary-overlay="4"]:before,
[data-black-overlay="4"]:before,
[data-white-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before,
[data-secondary-overlay="5"]:before,
[data-black-overlay="5"]:before,
[data-white-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before,
[data-secondary-overlay="6"]:before,
[data-black-overlay="6"]:before,
[data-white-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before,
[data-secondary-overlay="7"]:before,
[data-black-overlay="7"]:before,
[data-white-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before,
[data-secondary-overlay="8"]:before,
[data-black-overlay="8"]:before,
[data-white-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay="9"]:before,
[data-secondary-overlay="9"]:before,
[data-black-overlay="9"]:before,
[data-white-overlay="9"]:before {
  opacity: 0.9;
}

[data-overlay="10"]:before,
[data-secondary-overlay="10"]:before,
[data-black-overlay="10"]:before,
[data-white-overlay="10"]:before {
  opacity: 1;
}

/* swiper default styles */
.swiper-pagination {
  position: static;
  display: block;
  line-height: 1;
}
.swiper-pagination--vertical {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  bottom: auto;
  left: auto;
}
.swiper-pagination--vertical .swiper-pagination-bullet {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  margin-right: 0;
}
.swiper-pagination--vertical .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  position: relative;
  outline: none;
  margin-right: 20px;
}
.swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 8px;
  height: 8px;
  background: #d8d8d8;
  z-index: 1;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.swiper-pagination .swiper-pagination-bullet:hover:before {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #7C7C7C;
}
.swiper-pagination .swiper-pagination-bullet-active:before {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #7C7C7C;
}

.site-wrapper-reveal {
  background-color: #ffffff;
}

.swiper-nav-button {
  background-image: none;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  width: 30px;
  height: 48px;
  font-size: 24px;
  color: #6d70a6;
  border: 0;
  margin: 0;
  bottom: 0;
  /*&::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      border-radius: inherit;
      color: #fff;
      background: #fff;
  }*/
}

/*===================================
    - Breadvrumb
=================================*/
.breadcrumb-area {
  padding-top: 260px;
  padding-bottom: 184px;
  background-color: #f6f2ed;
  background-repeat: no-repeat;
  background-position: center center;
  border-bottom-width: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .breadcrumb-area {
    padding-top: 174px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-area {
    padding-top: 174px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .breadcrumb-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.creative_breadcrumb-area {
  padding-top: 220px;
  padding-bottom: 120px;
  background-color: #fafdf8;
  background-repeat: no-repeat;
  background-position: center center;
  border-bottom-width: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .creative_breadcrumb-area {
    padding-top: 174px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .creative_breadcrumb-area {
    padding-top: 174px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .creative_breadcrumb-area {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .inner-images .img-size-1, .features-images .img-size-1, .startup-features .img-size-1 {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb_box h2 {
    padding-top: 50px;
    padding-bottom: 10px;
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb_box h6 {
    line-height: 30px;
    font-size: 15px;
  }
}

.architecture_breadcrumb-area {
  padding-top: 350px;
  padding-bottom: 120px;
  background-color: #f6f2ed;
  background-repeat: no-repeat;
  background-position: center center;
  border-bottom-width: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .architecture_breadcrumb-area {
    padding-top: 174px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .architecture_breadcrumb-area {
    padding-top: 174px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .architecture_breadcrumb-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.breadcrumb-list {
  margin-top: 20px;
}
.breadcrumb-list li {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.58;
  text-transform: uppercase;
}
.breadcrumb-list li a {
  position: relative;
}
.breadcrumb-list li a::after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}
.breadcrumb-list li a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 0;
}
.breadcrumb-list li.active {
  color: #6D70A6;
}

.page-pagination li {
  display: inline-block;
  color: #7C7C7C;
}
.page-pagination li a {
  font-weight: 500;
  padding: 0 7px;
  display: block;
  text-align: center;
  line-height: 25px;
  width: 25px;
  height: 25px;
  text-transform: uppercase;
  color: #7C7C7C;
  border-radius: 500px;
}
.page-pagination li a.current {
  background: #97B500;
  color: #ffffff;
}
.page-pagination li a:hover {
  color: #97B500;
}

/*=============================================
=                - Preloader                =
=============================================*/
.preloader-active {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 99999;
}
.preloader-active .preloader-area-wrap {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  display: block;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999999;
}
.preloader-active .preloader-area-wrap .spinner div {
  background-color: #7C7C7C;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.preloader-active .preloader-area-wrap .spinner div.bounce1 {
  animation-delay: -0.32s;
}
.preloader-active .preloader-area-wrap .spinner div.bounce2 {
  animation-delay: -0.16s;
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.preloader-area-wrap {
  display: none;
}

.open_tm_preloader {
  position: fixed;
  background-color: transparent;
  z-index: 9999;
  height: 100%;
  width: 100%;
  transition: 0.2s all ease;
  transition-delay: 0.5s;
}
.open_tm_preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.open_tm_preloader.loaded:before, .open_tm_preloader.loaded:after {
  width: 0%;
}
.open_tm_preloader:before, .open_tm_preloader:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}
.open_tm_preloader:before {
  top: 0;
  left: 0;
}
.open_tm_preloader:after {
  bottom: 0;
  right: 0;
}

/*=============================================
   - Scroll top
=============================================*/
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  z-index: 999;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  display: block;
  padding: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  line-height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: #7C7C7C;
  background-size: 200% auto;
  background-position: left center;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}
@media only screen and (max-width: 479px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}
.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}
.scroll-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.scroll-top .arrow-top {
  transform: translate(-50%, -50%);
}
.scroll-top .arrow-bottom {
  transform: translate(-50%, 80px);
}
.scroll-top:hover {
  background-position: right center;
}
.scroll-top:hover .arrow-top {
  transform: translate(-50%, -80px);
}
.scroll-top:hover .arrow-bottom {
  transform: translate(-50%, -50%);
}

.ellipsis-1 {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ellipsis-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ellipsis-3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ellipsis-4 {
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.form-messege {
  margin-top: 20px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 100px;
}
.form-messege.success {
  background: #EDF5E3;
  color: #97B500;
}
.form-messege.error {
  background: red;
  color: #fff;
}

@media (min-width: 1024px) {
  .mobile-device {
    display: none !important;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 900;
  background-color: rgba(165, 165, 165, 0.3803921569);
  display: none;
}

.pointer {
  cursor: pointer;
}

#hs-eu-cookie-confirmation {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 1000;
  background-color: #fff;
  padding: 25px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin: 10px;
}
.gray-text {
  color: #7C7C7C;
}

.black-text {
  color: #000000;
}

span.v2 {
  color: #5A5FEF;
  font-weight: 500;
}
@media (max-width: 767px) {
  span.v2 {
    display: inline-block !important;
  }
}

span.v3 {
  color: #D650D1;
}
@media (max-width: 767px) {
  span.v3 {
    display: inline-block !important;
  }
}

span.vgray {
  color: #999;
}

.w-fit {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

.badge-theme-blue {
  background-color: #5A5FEF;
  padding: 4px 13px;
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
}

.badge-theme-green {
  background-color: #97B500;
  padding: 4px 13px;
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
}

.badge-theme-gray {
  background-color: #707070;
  padding: 4px 13px;
  color: #fff;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
}

.circle-shape {
  min-width: 50px;
  min-height: 50px;
  border-radius: 100%;
  position: absolute;
}
.circle-shape.bg-gray {
  background-color: #9C9C9C;
}
.circle-shape.bg-green {
  background-color: #CBE54B;
}
.circle-shape.bg-light-gray {
  background-color: rgba(243, 243, 243, 0.92);
  box-shadow: 0 0px 30px rgba(112, 112, 112, 0.14), inset 0 10px 153px rgba(112, 112, 112, 0.14);
}
.circle-shape.bg-light-green {
  background-color: #E7F2D9;
}
.circle-shape.bg-blue {
  background-color: #5A5FEF;
}
.circle-shape.bg-light-blue {
  background-color: #585DE7;
}
.circle-shape.bg-light-pink {
  background-color: #CEADD6;
}
.circle-shape.bg-black {
  background-color: #000000;
}

.btn-theme-blue {
  color: #fff;
  background-color: #5A5FEF;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
  transition: 0.3s;
}
.btn-theme-blue:hover {
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 0px;
  background-color: #accc02;
}
.btn-theme-blue:hover i {
  background-color: transparent !important;
}

.btn.btn-theme-black {
  color: #fff;
  background-color: #000000;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
  transition: 0.3s;
}
.btn.btn-theme-black:hover {
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 0px;
  background-color: #accc02;
}
.btn.btn-theme-black:hover i {
  background-color: transparent !important;
}
.btn.btn-theme-black:has(svg) svg {
  background-color: #CEADD6;
  color: #000;
  margin-right: 15px;
}

.btn-theme-pink {
  color: #fff;
  background-color: #CEADD6;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
}
.btn-theme-pink:hover {
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 0px;
  background-color: #accc02;
}
.btn-theme-pink:hover i {
  background-color: transparent !important;
}

.btn-theme-white {
  color: #000 !important;
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.btn-theme-white:hover {
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #accc02;
}

.btn-theme-green {
  color: #000 !important;
  background-color: #accc02;
  border-color: #accc02;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.btn-theme-green:hover {
  background-color: #ffffff;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.btn-theme-light-green {
  color: #000 !important;
  background-color: rgb(231, 242, 217);
  border-color: rgb(231, 242, 217);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 0px 0px, rgba(60, 64, 67, 0.15) 0px 0px 0px 0px;
}
.btn-theme-light-green:hover {
  background-color: #ffffff;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.btn-theme-border {
  color: #707070 !important;
  background-color: transparent;
  border-color: #707070;
}
.btn-theme-border:hover {
  background-color: #accc02;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.btn-theme-simple {
  color: #7c7c7c !important;
  background-color: transparent;
  transition: 0.3s;
}
.btn-theme-simple:hover {
  color: #accc02 !important;
}

.btn.btn-icon-mode {
  height: 60px;
  padding: 5px 2px 2px 40px;
  font-size: 30px;
}
.btn.btn-icon-mode i {
  transition: 0.3s;
  border-radius: 100%;
  padding: 28px;
  width: 10px;
  margin-bottom: 3px;
  height: 10px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #accc02;
}
@media only screen and (max-width: 575px) {
  .btn.btn-icon-mode i {
    border-radius: 100%;
    padding: 24px;
    width: 10px;
    height: 10px;
    margin-right: 4px;
  }
}
.btn.btn-icon-mode i::before {
  margin-left: 6px;
}
.btn:hover i {
  background-color: #accc02;
  color: #ffffff;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.notifications-container {
  max-width: 350px;
  animation: fadeIn 0.5s ease;
}

.notification {
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.btn-close-notification {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

.hero-spacer {
  margin-top: 15vh;
}

.rating {
  color: #ccc;
  cursor: pointer;
}
.rating .star {
  transition: color 0.2s;
  color: gold;
}
.rating .star.active {
  position: relative;
}
.rating .star.active::after {
  content: "\f005";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: gold;
}
.rating .star.half {
  position: relative;
}
.rating .star.half::after {
  content: "\f123";
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: gold;
}

.admin-bar {
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  top: 0;
  background-color: #000;
  padding: 3px 0;
  color: #fff;
}
.admin-bar p {
  font-size: 11px;
}

section .btn:has(svg, i) {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px 5px 10px;
}
section .btn:has(svg, i) svg, section .btn:has(svg, i) i {
  background-color: #fff;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  color: #5A5FEF;
  padding: 7px;
  margin-left: 20px;
  margin-right: 8px;
}

.balls .ball {
  z-index: -2;
}

.floating-label {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floating-label input {
  font-size: 12px;
  outline: none;
  padding: 0.5rem;
  border-radius: 4px;
  background: none;
  width: 100%;
}
.floating-label input:not(:-moz-placeholder) + label {
  transform: translateY(-1.75rem);
  font-size: 12px;
  color: #accc02;
  background: #fff;
  padding: 0 5px;
  border-radius: 10px;
  top: 40%;
}
.floating-label input:focus + label, .floating-label input:not(:placeholder-shown) + label, .floating-label input:not([value=""]) + label {
  transform: translateY(-1.75rem);
  font-size: 12px;
  color: #accc02;
  background: #fff;
  padding: 0 5px;
  border-radius: 10px;
  top: 40%;
}
.floating-label:has(i):has(input) input {
  width: 100%;
}
.floating-label:has(i):has(input) i {
  width: 30px;
}
.floating-label select {
  font-size: 12px;
  outline: none;
  border-radius: 4px;
  width: 100%;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 40px;
  padding: 0 0.5rem;
}
.floating-label select:focus {
  border-color: #accc02;
}
.floating-label select:valid + label, .floating-label select:not([value=""]) + label {
  transform: translateY(-1.75rem);
  font-size: 0.75rem;
  color: #accc02;
  background: #fff;
  top: 40%;
  padding: 0 5px;
  border-radius: 10px;
}
.floating-label label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  font-size: 12px;
  color: #aaa;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  background-color: transparent;
}
.floating-label .arrow-icon {
  position: absolute;
  right: 9px;
  top: 0px;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
}

.floating-label-container {
  width: 300px;
}

.floating-label-container .floating-label input {
  padding-top: 1.25rem;
}

.otp-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  position: relative;
}
.otp-wrapper .otp-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.otp-wrapper .otp-input input {
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 0.5rem;
  background: #f9f9f9;
  transition: all 0.3s ease;
}
.otp-wrapper .otp-input input:focus {
  border-color: #007bff;
  background: white;
  outline: none;
  transform: scale(1.05);
}
.otp-wrapper .otp-input input::-webkit-outer-spin-button, .otp-wrapper .otp-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.otp-wrapper .otp-input input[type=number] {
  -moz-appearance: textfield;
}
.otp-wrapper .otp-timer {
  font-size: 1.1rem;
  color: #555;
}
.otp-wrapper .message {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: none;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
.otp-wrapper .otp-resend {
  display: none;
}
.otp-wrapper.error .otp-input input {
  border-color: #cc0000;
}
.otp-wrapper.error .message {
  display: block;
  color: #cc0000;
}
.otp-wrapper.otp-expired .otp-input input {
  background: #cdcaca;
  pointer-events: none;
  cursor: not-allowed;
  border-color: #ddd;
}
.otp-wrapper.otp-expired .otp-resend {
  display: block;
}
.otp-wrapper.otp-expired .otp-timer {
  display: none;
}
.otp-wrapper.otp-expired .otp-verify {
  display: none;
}

.weave {
  position: relative;
  width: 100%;
  height: 80px;
}
.weave > * {
  position: absolute;
  margin: 0;
}
.weave .first {
  color: #000;
}
.weave .second {
  color: #838EEB;
  -webkit-text-stroke: 2px #838EEB;
  animation: waves 4s ease-in-out infinite;
}

@keyframes waves {
  0%, 100% {
    clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
/*=====  End of Default CSS  ======*/
@keyframes transform-horizental {
  5% {
    transform: translateX(-25%) translateY(30%);
  }
  15% {
    transform: translateX(0) translateY(10%);
  }
  18% {
    transform: translateX(25%) translateY(10%);
  }
  20% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(35%) scale(1) rotate(180deg);
  }
  65% {
    transform: translateX(0) scale(1) rotate(180deg);
  }
  75% {
    transform: translateX(-30%) translateY(80%) scale(1) rotate(180deg);
  }
  85% {
    transform: translateX(-20%) translateY(40%) scale(1) rotate(180deg);
  }
  95% {
    transform: translateX(-10%) translateY(15%) scale(1) rotate(180deg);
  }
  100% {
    transform: translateX(0) translateY(0) scale(1) rotate(180deg);
  }
}
@keyframes transform-vertical {
  5% {
    transform: translateY(-25%) translateY(20%);
  }
  15% {
    transform: translateY(-75%) translateX(0);
  }
  20% {
    transform: translateY(-45%) translateX(-20%) scale(1);
  }
  25% {
    transform: translateY(-10%) translateX(-45%) scale(1);
  }
  50% {
    transform: translateY(0) scale(1) rotate(180deg);
  }
  65% {
    transform: translateY(25%) scale(1) rotate(180deg);
  }
  75% {
    transform: translateX(-20%) translateY(-20%) scale(1) rotate(180deg);
  }
  85% {
    transform: translateX(-45%) translateY(-80%) scale(1) rotate(180deg);
  }
  95% {
    transform: translateX(-10%) translateY(-45%) scale(1) rotate(180deg);
  }
  100% {
    transform: translateX(0) translateY(0) scale(1) rotate(180deg);
  }
}
.flow-section {
  padding-top: 60px;
}
@media only screen and (max-width: 575px) {
  .flow-section {
    margin-top: 0px;
    padding-top: 30px;
  }
}
.flow-section .bg-image {
  background-image: url(../../../../images/public/pages/about/flow-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .flow-section .bg-image {
    background-image: none;
  }
}
.flow-section .bg-image .bg-container {
  background-color: rgba(229, 234, 255, 0.63);
  border-radius: 20px;
  padding: 50px 100px 75px 100px;
  margin: 0 -15px;
}
@media only screen and (max-width: 575px) {
  .flow-section .bg-image .bg-container {
    padding: 50px 0px 5px 0px;
    margin: 0 2%;
  }
}
.flow-section .bg-image .circle-shape.bg-green {
  top: 95%;
  left: 5%;
  animation: transform-vertical 10s infinite ease-in-out both;
}
.flow-section .bg-image .circle-shape.bg-gray {
  height: 100px;
  right: 95%;
  top: -176px;
  width: 100px;
  background-color: rgba(156, 156, 156, 0.4784313725);
  animation: transform-horizental 40s infinite ease-in-out both;
}
.flow-section .content {
  background-color: white;
  border-radius: 20px;
}
@media only screen and (max-width: 575px) {
  .flow-section .content {
    padding: 60px 30px 35px !important;
    margin-top: -30px;
  }
}
.flow-section .content p {
  line-height: 38px;
  font-size: 16px;
}
@media only screen and (max-width: 575px) {
  .flow-section .content p {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }
}
.flow-section .circle-icon {
  width: 300px;
  height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 100%;
  background-color: rgba(90, 95, 239, 0.5803921569);
  color: white;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .flow-section .circle-icon {
    width: 100%;
    height: 240px;
    margin: -20px auto 0 auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background-color: #5a5fef;
  }
}
.flow-section .circle-icon h3 {
  color: white;
  margin-bottom: 0;
  font-size: 45px;
}
.flow-section .flow-items-in .section-header h2 {
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: -2px;
}
@media only screen and (max-width: 575px) {
  .flow-section .flow-items-in .section-header h2 {
    font-size: 2rem;
    text-align: center;
    padding: 0 50px;
  }
}
.flow-section .flow-items-in .section-header h2 span {
  font-weight: 600;
}
.flow-section .flow-items-in .section-header h2 strong {
  font-weight: 600;
  color: #000;
}
.flow-section .top-side-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 575px) {
  .flow-section .top-side-section {
    margin: 0px auto 10px auto;
  }
}
.flow-section .top-side-section .side-content p {
  line-height: 28px;
  font-size: 1.1rem;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .flow-section .top-side-section .side-content p {
    text-align: center;
    font-size: 17px;
  }
}
.flow-section .top-side-section .side-section {
  background-color: rgba(255, 255, 255, 0.6705882353);
  padding: 10px 10px;
  border-radius: 20px;
  margin-bottom: -15px;
  z-index: 3;
}
@media only screen and (min-width: 992px) {
  .flow-section .top-side-section .side-section {
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .flow-section .top-side-section .side-section {
    padding: 30px 10px;
    display: none;
  }
}
.flow-section .top-side-section .side-section h3 {
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 2px;
  font-weight: 400;
}
.flow-section .top-side-section .side-section ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 575px) {
  .flow-section .top-side-section .side-section ul {
    justify-content: space-around;
  }
}
.flow-section .top-side-section .side-section ul li {
  border-radius: 25px;
  color: #fff;
  margin-left: 5px;
  padding: 7px 11px;
  font-size: 12px;
}
.flow-section .top-side-section .side-section ul li:nth-child(1) {
  background-color: #5A5FEF;
}
.flow-section .top-side-section .side-section ul li:nth-child(2) {
  background-color: #CEADD6;
}
.flow-section .top-side-section .side-section ul li:nth-child(3) {
  background-color: #707070;
}

.hero-section .circle-shape.bg-blue:nth-child(1) {
  right: 93%;
  width: 115px;
  height: 115px;
  background-color: rgba(90, 95, 239, 0.7411764706);
  animation: transform-horizental 35s infinite ease-in-out both;
}
@media only screen and (max-width: 575px) {
  .hero-section .circle-shape.bg-blue:nth-child(1) {
    width: 60px;
    height: 60px;
    transform: scale(0.8);
    right: 0;
  }
}
.hero-section .circle-shape.bg-blue:nth-child(2) {
  height: 30px;
  left: 0%;
  bottom: -50%;
  width: 30px;
  background-color: rgba(131, 142, 235, 0.3);
  animation: transform-horizental 20s infinite ease-in-out both;
}
@media only screen and (max-width: 575px) {
  .hero-section .circle-shape.bg-blue:nth-child(2) {
    transform: scale(0.8);
    bottom: 10%;
  }
}
.hero-section .circle-shape.bg-gray:nth-child(4) {
  height: 110px;
  left: 10px;
  bottom: -75%;
  width: 110px;
  background-color: rgba(198, 244, 3, 0.5);
  animation: transform-horizental 30s infinite ease-in-out both;
}
@media only screen and (max-width: 575px) {
  .hero-section .circle-shape.bg-gray:nth-child(4) {
    width: 40px;
    height: 40px;
    transform: scale(0.8);
    left: 50px;
    bottom: 75%;
  }
}
.hero-section .circle-shape.bg-green {
  height: 150px;
  right: 19%;
  top: 7%;
  width: 150px;
  z-index: 3;
  background-color: rgba(198, 244, 3, 0.5);
  animation: transform-vertical 20s infinite ease-in-out both;
}
@media only screen and (max-width: 575px) {
  .hero-section .circle-shape.bg-green {
    width: 60px;
    height: 60px;
    transform: scale(0.8);
  }
}
.hero-section .circle-shape.bg-gray:nth-child(5) {
  height: 45px;
  right: -10%;
  top: 93%;
  width: 45px;
  background-color: rgba(131, 142, 235, 0.3);
  animation: transform-vertical 70s infinite ease-in-out both;
}
@media only screen and (max-width: 575px) {
  .hero-section .circle-shape.bg-gray:nth-child(5) {
    transform: scale(0.8);
    right: 10%;
    top: 85%;
  }
}
.hero-section .hero-holder {
  height: 100%;
  padding-top: 20px;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder {
    height: 80vh;
  }
}
.hero-section .hero-holder .content-holder .left-side {
  padding-top: 340px;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .left-side {
    padding-top: 0px;
  }
}
.hero-section .hero-holder .content-holder .left-side .tlt-we {
  font-size: 13.5rem;
  color: #CEADD6;
  letter-spacing: -5px;
  font-weight: 100;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .left-side .tlt-we {
    display: none;
  }
}
.hero-section .hero-holder .content-holder .left-side .navi-ul {
  margin-top: -5rem;
  margin-left: 25px;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .left-side .navi-ul {
    margin: 70px auto 0 auto;
    width: 300px;
  }
}
.hero-section .hero-holder .content-holder .left-side .navi-ul li {
  list-style: none;
  padding-left: 15px;
  letter-spacing: -1px;
  font-size: 1.1em;
  margin-bottom: 5px;
  cursor: pointer;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .left-side .navi-ul li {
    letter-spacing: 0px;
    background: rgba(233, 233, 233, 0.6392156863);
    border-radius: 100px;
    padding: 5px 25px;
    font-size: 15px;
  }
}
.hero-section .hero-holder .content-holder .left-side .navi-ul li i {
  font-size: 1.4rem;
  margin-bottom: 5px;
  padding-right: 7px;
  position: relative;
  top: 1px;
  transition: 0.3s;
}
.hero-section .hero-holder .content-holder .left-side .navi-ul li:hover {
  color: #97b500;
}
.hero-section .hero-holder .content-holder .left-side .navi-ul li:hover i {
  padding-right: 14px;
}
.hero-section .hero-holder .content-holder .right-side {
  padding-top: 370px;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .right-side {
    padding-top: 0px;
  }
}
.hero-section .hero-holder .content-holder .right-side .shapes {
  position: absolute;
  z-index: -1;
  top: 10%;
  left: -5%;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .right-side .shapes {
    top: -105%;
  }
}
@media screen and (min-width: 1440px) {
  .hero-section .hero-holder .content-holder .right-side .shapes .circle-shape-img {
    transform: scale(0.97);
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .right-side .shapes .circle-shape-img {
    transform: scale(0.8);
  }
}
.hero-section .hero-holder .content-holder .right-side .shapes .circle-shape-flip {
  transform: scaleX(-1);
  width: 34vw;
}
@media only screen and (min-width: 992px) {
  .hero-section .hero-holder .content-holder .right-side .shapes .circle-shape-flip {
    width: auto;
  }
}
.hero-section .hero-holder .content-holder .right-side .tlt-sub-top {
  font-size: 5.0625rem;
  color: #CFFF03;
  letter-spacing: -1px;
  font-weight: 100;
  line-height: 30px;
  position: relative;
  z-index: 2;
  text-align: right;
  margin-right: 12%;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .right-side .tlt-sub-top {
    font-size: 1.6rem;
    margin-right: 27%;
    line-height: 45px;
    font-weight: 300;
  }
}
.hero-section .hero-holder .content-holder .right-side .tlt-sub-top span {
  color: #CFFF03;
}
.hero-section .hero-holder .content-holder .right-side .tlt-are-here {
  font-size: 13.5rem;
  color: #fff;
  font-weight: 100;
  position: relative;
  letter-spacing: -12px;
  z-index: 2;
  line-height: 16rem;
  left: 1%;
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .right-side .tlt-are-here {
    font-size: 2.5rem;
    line-height: 2.2rem;
    letter-spacing: -1px;
    left: 0;
    font-weight: 400;
  }
}
.hero-section .hero-holder .content-holder .right-side .tlt-sub-bottom {
  color: #fff;
  font-size: 1.7rem;
  margin-right: 32%;
  margin-top: 30%;
  position: relative;
  z-index: 2;
  text-align: right;
}
@media screen and (min-width: 1440px) {
  .hero-section .hero-holder .content-holder .right-side .tlt-sub-bottom {
    margin-top: 28%;
  }
}
@media only screen and (max-width: 575px) {
  .hero-section .hero-holder .content-holder .right-side .tlt-sub-bottom {
    font-size: 1rem;
    margin-top: 15%;
    display: block;
    text-align: center;
    width: 100%;
    line-height: 1.5rem;
  }
}

.lead-section {
  padding: 200px 0 150px 0;
}
@media only screen and (max-width: 575px) {
  .lead-section {
    padding: 80px 0 50px 0;
  }
}
@media only screen and (max-width: 575px) {
  .lead-section .content-right {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .lead-section .content-right .text-section {
    text-align: center;
  }
}
.lead-section .content-right .text-section h2 {
  font-size: 6rem;
  font-weight: 100;
  color: #000000;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .lead-section .content-right .text-section h2 {
    font-size: 3.1rem;
    padding-left: 0px;
  }
}
.lead-section .content-right .text-section h2 strong {
  font-weight: 600;
}
.lead-section .content-right .text-section small {
  font-size: 0.89rem;
  font-weight: 300;
  text-transform: uppercase;
  padding-left: 10px;
}
@media only screen and (max-width: 575px) {
  .lead-section .content-right .text-section small {
    font-size: 1rem;
    padding-left: 0px;
  }
}
.lead-section .content-right .text-section p {
  font-size: 1.5rem;
  line-height: 2.1rem;
  padding: 20px 135px 20px 20px;
}
@media only screen and (max-width: 575px) {
  .lead-section .content-right .text-section p {
    padding-bottom: 30px;
    text-align: center;
    padding-right: 0;
  }
}
.lead-section .content-right .text-section p strong {
  font-weight: 600;
}
.lead-section .content-right .text-section p a {
  font-weight: 600;
  color: #CEADD6;
}
.lead-section .content-right .btn-getstarted {
  padding: 10px 50px;
  height: auto;
  font-size: 22px;
  font-weight: 400;
  background-color: transparent;
  border-color: #707070;
  color: #707070 !important;
}
.lead-section .content-right .btn-getstarted:hover {
  background-color: #CEADD6;
  border-color: #CEADD6;
  color: #000 !important;
}
.lead-section .img-lead img {
  transform: scale(1.5);
}
@media only screen and (max-width: 575px) {
  .lead-section .img-lead img {
    transform: scale(1);
  }
}
.lead-section .circle-shape.bg-green:nth-child(2) {
  height: 70px;
  left: 23%;
  opacity: 0.6;
  top: 0;
  width: 70px;
  animation: transform-horizental 20s infinite ease-in-out both;
}
.lead-section .circle-shape.bg-green:nth-child(3) {
  left: 16%;
  min-height: 30px;
  min-width: 30px;
  opacity: 0.7;
  top: 77%;
}
.lead-section .circle-shape.bg-blue {
  top: 70%;
  left: 7%;
  background-color: rgba(90, 95, 239, 0.568627451);
}
.lead-section .circle-shape.bg-gray {
  height: 70px;
  left: 60%;
  opacity: 0.6;
  top: 80%;
  width: 70px;
  animation: transform-horizental 35s infinite ease-in-out both;
}

.success-section {
  margin-bottom: 100px;
}
.success-section .header-section h2 {
  font-size: 6rem;
  font-weight: 100;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.success-section .header-section h2 strong {
  font-weight: 600;
  font-size: 6rem;
}
.success-section .flex-container {
  height: 75vh;
  width: 100%;
  /* Safari */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .success-section .flex-container {
    flex-direction: column;
  }
}
.success-section .flex-title {
  position: relative;
  margin: auto;
  transform: rotate(-90deg);
  top: 30%;
  transition: all 500ms ease;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.success-section .flex-title .title-holder {
  color: #f1f1f1;
  font-size: 1.5vw;
  text-align: center;
  font-weight: 100;
}
.success-section .flex-title .title-holder .fix-flex-title {
  text-wrap: nowrap;
}
.success-section .flex-title .title-holder span {
  font-size: 1vw;
  display: block;
  color: #fff;
  line-height: 10px;
}
.success-section .flex-title .title-holder strong {
  font-weight: 900;
}
.success-section .flex-title .title-holder .year-counter {
  font-size: 62px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  line-height: 85px;
  letter-spacing: 10px;
}
@media screen and (max-width: 768px) {
  .success-section .flex-title {
    transform: rotate(0deg) !important;
  }
}
.success-section .flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 100%;
  font-size: 1vw;
  padding: 0;
  bottom: 0;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  transition: all 500ms ease;
  z-index: 2;
}
.success-section .flex-about-purple {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 100%;
  font-size: 1vw;
  padding: 0;
  bottom: 0;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  transition: all 500ms ease;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(89, 102, 209, 0.5)), to(rgba(141, 132, 145, 0.75)));
  background: -o-linear-gradient(rgba(89, 102, 209, 0.5), rgba(141, 132, 145, 0.75));
  background: linear-gradient(rgba(89, 102, 209, 0.5), rgba(141, 132, 145, 0.75));
  top: 35vh;
  text-align: center;
  border-top: 5px solid rgba(255, 255, 255, 0.8);
  border-bottom: 0;
}
.success-section .flex-about-pink {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 100%;
  font-size: 1vw;
  padding: 0;
  bottom: 0;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  transition: all 500ms ease;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(151, 181, 0, 0.75)), to(rgba(172, 205, 0, 0.75)));
  background: -o-linear-gradient(rgba(151, 181, 0, 0.75), rgba(172, 205, 0, 0.75));
  background: linear-gradient(rgba(151, 181, 0, 0.75), rgba(172, 205, 0, 0.75));
  top: 35vh;
  text-align: center;
  border-top: 5px solid rgba(255, 255, 255, 0.8);
}
.success-section .flex-about-green {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 100%;
  font-size: 1vw;
  padding: 0;
  bottom: 0;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  transition: all 500ms ease;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(206, 173, 214, 0.75)), to(rgba(166, 47, 194, 0.75)));
  background: -o-linear-gradient(rgba(206, 173, 214, 0.75), rgba(166, 47, 194, 0.75));
  background: linear-gradient(rgba(206, 173, 214, 0.75), rgba(166, 47, 194, 0.75));
  top: 35vh;
  text-align: center;
  border-top: 5px solid rgba(255, 255, 255, 0.8);
}
.success-section .flex-about-gray {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 100%;
  font-size: 1vw;
  padding: 0;
  bottom: 0;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  transition: all 500ms ease;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(125, 125, 125, 0.75)), to(rgba(96, 96, 96, 0.75)));
  background: -o-linear-gradient(rgba(125, 125, 125, 0.75), rgba(96, 96, 96, 0.75));
  background: linear-gradient(rgba(125, 125, 125, 0.75), rgba(96, 96, 96, 0.75));
  top: 35vh;
  text-align: center;
  border-top: 5px solid rgba(255, 255, 255, 0.8);
}
.success-section .flex-about .contant-hdr {
  padding: 5%;
  height: 30vh;
}
.success-section .flex-about .contant-hdr h2 {
  font-weight: 100;
  font-size: 28px;
  margin-bottom: 0;
  color: #fff;
}
.success-section .flex-about .contant-hdr p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .success-section .flex-about {
    padding: 0%;
    border: 0px solid #f1f1f1;
  }
}
.success-section .flex-slide {
  width: 16%;
  /* Safari 6.1+ */
  /* IE 10 */
  flex: 1;
  border-right: 5px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  .success-section .flex-slide {
    overflow: auto;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) {
  .success-section .flex-slide p {
    font-size: 2em;
  }
}
@media screen and (max-width: 768px) {
  .success-section .flex-slide ul li {
    font-size: 2em;
  }
}
.success-section .flex-slide:hover {
  flex-grow: 3;
}
.success-section .flex-slide:hover .home::after {
  visibility: hidden;
}
.success-section .flex-slide:hover .home::after, .success-section .flex-slide:hover .about::after, .success-section .flex-slide:hover .contact::after, .success-section .flex-slide:hover .work::after {
  visibility: hidden;
}
.success-section .home {
  height: auto;
  background: url(../../../../images/public/pages/about/innovative-solutions.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.success-section .home::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(89, 102, 209, 0.85)), to(rgba(141, 132, 145, 0.85)));
  background: -o-linear-gradient(rgba(89, 102, 209, 0.85), rgba(141, 132, 145, 0.85));
  background: linear-gradient(rgba(89, 102, 209, 0.85), rgba(141, 132, 145, 0.85));
  content: "";
  height: 54vh;
  position: absolute;
  top: 0;
  bottom: 20%;
  width: 100%;
  border-bottom: 5px solid rgba(255, 255, 255, 0.8);
}
.success-section .home:hover::after {
  background: none;
  position: absolute;
  top: 54vh;
  transition: all 500ms ease;
}
@media screen and (min-width: 768px) {
  .success-section .home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes aboutFlexSlide {
  0% {
    flex-grow: 1;
  }
  50% {
    flex-grow: 3;
  }
  100% {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .success-section .flex-title-home {
    transform: rotate(-90deg);
    top: 30%;
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes homeFlextitle {
  0% {
    transform: rotate(-90deg);
    top: 20%;
  }
  50% {
    transform: rotate(0deg);
    top: 20%;
  }
  100% {
    transform: rotate(-90deg);
    top: 20%;
  }
}
.success-section .flex-about-home {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .success-section .flex-about-home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes flexAboutHome {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.success-section .about {
  background: url(../../../../images/public/pages/about/endorsment.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
}
.success-section .about::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(206, 173, 214, 0.85)), to(rgba(166, 47, 194, 0.85)));
  background: -o-linear-gradient(rgba(206, 173, 214, 0.85), rgba(166, 47, 194, 0.85));
  background: linear-gradient(rgba(206, 173, 214, 0.85), rgba(166, 47, 194, 0.85));
  content: "";
  height: 54vh;
  position: absolute;
  top: 0;
  bottom: 20%;
  width: 100%;
  border-bottom: 5px solid rgba(255, 255, 255, 0.8);
}
.success-section .about:hover::after {
  background: none;
  position: absolute;
  top: 54vh;
  transition: all 500ms ease;
}
.success-section .contact {
  background: url(../../../../images/public/pages/about/our_growth.jpg);
  background-size: cover;
  background-position: left center;
  position: relative;
  transform: scale(1.01);
}
.success-section .contact::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(151, 181, 0, 0.85)), to(rgba(172, 205, 0, 0.85)));
  background: -o-linear-gradient(rgba(151, 181, 0, 0.85), rgba(172, 205, 0, 0.85));
  background: linear-gradient(rgba(151, 181, 0, 0.85), rgba(172, 205, 0, 0.85));
  content: "";
  height: 54vh;
  position: absolute;
  top: 0;
  bottom: 20%;
  width: 100%;
  border-bottom: 5px solid rgba(255, 255, 255, 0.8);
}
.success-section .contact:hover::after {
  background: none;
  position: absolute;
  top: 54vh;
  transition: all 500ms ease;
}
.success-section .work {
  background: url(../../../../images/public/pages/about/global_impact.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
}
.success-section .work::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(125, 125, 125, 0.85)), to(rgba(96, 96, 96, 0.85)));
  background: -o-linear-gradient(rgba(125, 125, 125, 0.85), rgba(96, 96, 96, 0.85));
  background: linear-gradient(rgba(125, 125, 125, 0.85), rgba(96, 96, 96, 0.85));
  content: "";
  height: 54vh;
  position: absolute;
  top: 0;
  bottom: 20%;
  width: 100%;
  border-bottom: 5px solid rgba(255, 255, 255, 0.8);
}
.success-section .work:hover::after {
  background: none;
  position: absolute;
  top: 54vh;
  transition: all 500ms ease;
}

services-banner {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1680px;
  overflow: visible;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  -webkit-user-select: none;
  -moz-user-select: none;
      user-select: none;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  services-banner h2 {
    font-size: clamp(1.8rem, 1.9642857143vw + 1.4821428571rem, 1.25rem);
  }
  services-banner .services-banner__explore-all {
    top: 11.5%;
  }
  services-banner .services-banner__explore-all a.button {
    border-radius: 15px;
    width: clamp(7rem, 8.714286vw + 2.857143rem, 2rem);
    height: clamp(1rem, 7.714286vw + 2.857143rem, 5rem);
  }
}
services-banner .circle-shape.bg-green {
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
  right: 8%;
  top: 0;
}
services-banner .circle-shape.bg-green h4 {
  line-height: 17px;
  font-size: 28px;
  color: #000;
}
services-banner .circle-shape.bg-green p {
  font-size: 14px;
  color: #000;
}
services-banner h2 {
  font-size: clamp(2rem, 1.9642857143vw + 1.4821428571rem, 2.25rem);
  color: #000;
}
@media only screen and (max-width: 575px) {
  services-banner h2 {
    font-size: clamp(1.4rem, 1.9642857143vw + 1.4821428571rem, 0.85rem);
  }
}
@media only screen and (max-width: 575px) {
  services-banner .services-banner__explore-all {
    top: auto;
    bottom: 34%;
    right: 33%;
  }
}
services-banner .services-banner__explore-all a.button {
  border-radius: 15px;
  width: clamp(7rem, 8.714286vw + 2.857143rem, 2rem);
  height: clamp(1rem, 7.714286vw + 2.857143rem, 5rem);
}
services-banner .services-banner__slide .slide-image .shape {
  z-index: 1;
}
services-banner .services-banner__slide .slide-image .lang-sw {
  border-radius: 100%;
}
services-banner .services-banner__slide .slide-image .lang-sw.active {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  animation: pulse-animation 2s infinite;
}
@media only screen and (max-width: 991px) {
  services-banner .services-banner__slide .slide-image .shape-1, services-banner .services-banner__slide .slide-image .shape-2, services-banner .services-banner__slide .slide-image .shape-3, services-banner .services-banner__slide .slide-image .shape-4 {
    display: none;
  }
  services-banner .services-banner__slide .slide-image .lang-1 {
    left: 1%;
    top: 8%;
  }
  services-banner .services-banner__slide .slide-image .lang-2 {
    left: 1%;
    top: 23%;
  }
  services-banner .services-banner__slide .slide-image .lang-3 {
    left: 1%;
    top: 38%;
  }
  services-banner .services-banner__slide .slide-image .lang-4 {
    left: 1%;
    top: 53%;
  }
}
services-banner .services-banner__slide h2 {
  font-size: 82px;
  text-transform: uppercase;
  line-height: 85px;
}
services-banner .video-container {
  position: relative;
}
services-banner .video-container:hover .play-btn {
  opacity: 1 !important;
}
services-banner .video-container video {
  aspect-ratio: 9/9;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
services-banner .video-container .play-button-wrapper {
  position: absolute;
  top: 400px;
  left: auto;
  right: 200px;
  bottom: auto;
}
@media only screen and (max-width: 991px) {
  services-banner .video-container .play-button-wrapper {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
services-banner .video-container .play-button-wrapper .play-holder {
  padding: 0.25rem;
  border-radius: 100%;
  border: 1px solid #CBE54B;
  background-color: #CBE54B;
  cursor: pointer;
  transition: 0.3s;
}
services-banner .video-container .play-button-wrapper .play-holder:hover {
  background-color: #fff;
}
services-banner .video-container .play-button-wrapper .play-holder .play-gif, services-banner .video-container .play-button-wrapper .play-holder .pause-gif {
  height: 5rem;
  width: 5rem;
  color: #000;
  background-color: #CBE54B;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border-radius: 100%;
}
@media only screen and (max-width: 991px) {
  services-banner .video-container video {
    border-radius: 20px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 992px) {
  services-banner .video-container {
    width: 600px;
    height: 600px;
  }
  services-banner .video-container video {
    clip-path: url(#clip-path);
    width: 90%;
    height: 90%;
  }
}

@media screen and (min-width: 1024px) {
  .services-banner__pagination {
    background-color: var(--white);
    border-radius: 3rem;
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, 1fr);
    padding: 0.4375rem 0.625rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.1), inset 0 6px 5px 0 rgba(237, 237, 237, 0.93);
    border: 2px solid #fff;
  }
  .services-banner__pagination .active-state {
    grid-column: 1;
    grid-row: 1;
  }
  .services-banner__pagination button {
    color: var(--black);
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    grid-row: 1;
    mix-blend-mode: darken;
    padding: 0.125rem 1.25rem 0.125rem;
  }
  .services-banner__pagination button.active {
    color: #fff !important;
    background-color: var(--safe);
    border-radius: 3rem;
    box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.2), inset -2px -2px 5px 0 rgba(255, 255, 255, 0.2);
  }
  .services-banner__pagination button:first-of-type {
    grid-column: 1;
  }
  .services-banner__pagination button:nth-of-type(2) {
    grid-column: 2;
  }
  .services-banner__pagination button:nth-of-type(3) {
    grid-column: 3;
  }
  .services-banner__pagination button:nth-of-type(4) {
    grid-column: 4;
  }
  .services-banner__pagination button:nth-of-type(5) {
    grid-column: 5;
  }
  .services-banner__pagination button:nth-of-type(6) {
    grid-column: 6;
  }
  .services-banner__pagination button:nth-of-type(7) {
    grid-column: 7;
  }
  .services-banner__pagination button:nth-of-type(8) {
    grid-column: 8;
  }
  .services-banner__pagination button:nth-of-type(9) {
    grid-column: 9;
  }
  .services-banner__pagination button:nth-of-type(10) {
    grid-column: 10;
  }
}
.services-banner__slides {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .services-banner__slide {
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.services-banner__slide .slide-text {
  margin-top: 1rem;
  text-align: right;
}
.services-banner__slide .slide-text > p {
  font-size: 25px;
  border-bottom: 3px solid;
}
.services-banner__slide .slide-text a {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
.services-banner__slide .slide-text p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 991px) {
  .services-banner__slide .slide-text {
    margin-bottom: 1rem;
  }
}
.services-banner__slide .slide-text h3 {
  font-size: clamp(1.9rem, 1.9642857143vw + 1.4821428571rem, 1.45rem);
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .services-banner__slide .slide-text h3 {
    font-size: clamp(1em, 1.9642857143vw + 1.4821428571rem, 1.4rem);
    margin-top: 33px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .services-banner__slide .slide-text {
    align-self: center;
    grid-column: 7/span 6;
    grid-row: 1;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .services-banner__slide .slide-text {
    grid-column: 7/span 6;
  }
}
.services-banner__slide .slide-image {
  color: var(--stone);
  position: relative;
  width: 100%;
}
.services-banner__slide .slide-image .shape-1 {
  width: clamp(1.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
  height: clamp(1.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
  background-color: #5A5FEF;
  border-radius: 100%;
  position: absolute;
  left: 30%;
  top: 0;
  opacity: 0.8;
  animation: transform-horizental 20s infinite ease-in-out both;
}
.services-banner__slide .slide-image .shape-2 {
  width: clamp(1.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
  height: clamp(1.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
  background-color: #5A5FEF;
  border-radius: 100%;
  position: absolute;
  left: 33%;
  bottom: 17%;
  animation: transform-vertical 15s infinite ease-in-out both;
}
.services-banner__slide .slide-image .shape-3 {
  width: clamp(4.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
  height: clamp(4.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
  background-color: var(--acid);
  border-radius: 100%;
  position: absolute;
  left: 60%;
  bottom: 16%;
  animation: transform-horizental 45s infinite ease-in-out both;
}
.services-banner__slide .slide-image .shape-4 {
  width: clamp(3.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
  height: clamp(3.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
  background-color: #D2D2D2;
  border-radius: 100%;
  position: absolute;
  left: 80%;
  bottom: 28%;
  animation: transform-vertical 35s infinite ease-in-out both;
}
.services-banner__slide .slide-image .lang-1 {
  left: 15.5%;
  position: absolute;
  top: 7%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
.services-banner__slide .slide-image .lang-2 {
  cursor: pointer;
  height: 45px;
  left: 7%;
  position: absolute;
  top: 16.5%;
  width: 45px;
}
.services-banner__slide .slide-image .lang-3 {
  cursor: pointer;
  height: 45px;
  left: 3%;
  position: absolute;
  top: 27.5%;
  width: 45px;
}
.services-banner__slide .slide-image .lang-4 {
  cursor: pointer;
  height: 45px;
  left: 2%;
  position: absolute;
  top: 38.3%;
  width: 45px;
}

.services-banner__slide .slide-image > .inner, .services-banner__slide .slide-image > img, .services-banner__slide .slide-image > video {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.services-banner__slide .slide-image img {
  padding: 1px;
}

@media screen and (min-width: 1024px) {
  .services-banner__slide .slide-image {
    grid-column: 1/span 6;
    grid-row: 1;
  }
}
@media screen and (min-width: 1200px) {
  .services-banner__slide .slide-image {
    grid-column: 1/span 5;
    margin-right: -1.5rem;
    width: auto;
  }
}
.services-banner__slide lottie-animation {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.services-banner__slide-title {
  font-size: clamp(1.875rem, 1.9642857143vw + 1.4821428571rem, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.27;
  margin-bottom: clamp(1rem, 0.7142857143vw + 0.8571428571rem, 1.5rem);
}

.services-banner__slide-text {
  font-size: clamp(1.125em, 0.7142857143vw + 0.9821428571rem, 1.35rem);
  font-weight: 500;
  line-height: 1.44;
  margin-bottom: clamp(1.8125rem, 1.9642857143vw + 1.4196428571rem, 3.1875rem);
}

.services-banner__slide-button {
  align-items: center;
  border: 2px solid var(--black);
  border-radius: 3rem;
  color: var(--black);
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: inherit;
  font-size: clamp(0.95rem, 0.6818181818vw + 0.8136363636rem, 1.25rem);
  font-weight: 500;
  justify-content: center;
  letter-spacing: normal;
  line-height: 1;
  padding: -webkit-calc(1.1rem - 0.05em) 1.25rem 1.1rem;
  padding: calc(1.1rem - 0.05em) 1.25rem 1.1rem;
  position: relative;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  transition-property: background-color, border-color, color;
  -webkit-user-select: none;
  -moz-user-select: none;
      user-select: none;
}

@media screen and (min-width: 375px) {
  .services-banner__slide-button {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .services-banner__slide-button {
    padding: -webkit-calc(1.375rem - 0.1em) 2rem 1.375rem;
    padding: calc(1.375rem - 0.1em) 2rem 1.375rem;
  }
}
.services-banner__slide-button .icon, .services-banner__slide-button .text {
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .services-banner__slide-button .text {
    transform: translateX(0.8125rem);
    transition: all 0.2s ease-in-out;
    transition-property: transform;
  }
}
@media (hover: hover) and (pointer: fine) {
  .services-banner__slide-button:hover:not(:disabled) {
    background-color: var(--black);
    color: var(--white);
  }
  .services-banner__slide-button:hover:not(:disabled) .text {
    transform: translateX(0);
  }
  .services-banner__slide-button:hover:not(:disabled) .icon {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.2s ease-in-out;
    transition-property: color, transform, opacity;
  }
}
.services-banner__slide-button .icon {
  color: var(--acid);
  display: none;
  margin-left: 0.5625rem;
  margin-top: 0.15em;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .services-banner__slide-button .icon {
    display: block;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.2s ease-in-out, opacity 0s;
  }
}
.services-banner__slide-button.dark {
  background-color: var(--black);
  color: var(--white);
}

.services-banner__slide-button.dark .text {
  transform: translateX(0);
}

.services-banner__slide-button.dark .icon {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.2s ease-in-out;
  transition-property: color, transform, opacity;
}

@media (hover: hover) and (pointer: fine) {
  .services-banner__slide-button.dark:hover:not(:disabled) .icon-arrow {
    transform: translateX(0.5rem);
  }
  .services-banner__slide-button.dark:hover:not(:disabled) .text {
    color: var(--acid);
  }
}
.services-banner__slide-button.back {
  flex-direction: row-reverse;
}

.services-banner__slide-button.back:not(.dark) .icon {
  color: var(--black);
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .services-banner__slide-button.back:not(.dark):hover:not(:disabled) .icon {
    color: var(--acid);
  }
}
.services-banner__slide-button.back .icon {
  margin-right: 1rem;
  transform: scaleX(-1) translateX(50%);
}

.services-banner__slide-button.back .text {
  transform: translateX(-0.8125rem);
}

@media (hover: hover) and (pointer: fine) {
  .services-banner__slide-button.back:hover:not(:disabled) .icon {
    transform: scaleX(-1) translateX(100%);
  }
  .services-banner__slide-button.back:hover:not(:disabled) .text {
    transform: translateX(-0.8125rem);
  }
}
.services-banner__explore-all {
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 42%;
  z-index: 1;
}

.services-banner__all-languages {
  pointer-events: none;
  position: absolute;
  right: 5%;
  top: 4%;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .services-banner__explore-all {
    grid-column-gap: 1.25rem;
    bottom: 0;
    -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
  }
  .services-banner__explore-all p {
    text-transform: capitalize;
    line-height: 20px;
    font-size: 15px;
  }
  .services-banner__explore-all .button.active {
    grid-column: 6/span 6;
    width: 490px;
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
  }
  .services-banner__explore-all .button.active .text-1 {
    display: none;
  }
  .services-banner__explore-all .button.active .text-2 {
    display: block;
  }
  .services-banner__explore-all .button.active small {
    transition: 0.3s;
    position: absolute;
    left: 16px;
    top: 13px;
  }
  .services-banner__explore-all .button.active svg {
    transition: 0.3s;
    position: absolute;
    top: 103%;
    transform: rotate(90deg);
  }
  .services-banner__explore-all .button.active:after {
    transition: 0.3s;
    content: " ";
    width: 100px;
    height: 100px;
    background-color: var(--black);
    border-radius: 100%;
    position: absolute;
    top: 52%;
    z-index: -1;
  }
}
.services-banner__explore-all .button {
  align-items: center;
  background-color: var(--black);
  border-radius: 50%;
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  font-size: clamp(0.875rem, 1.3392857143vw + 0.6071428571rem, 0.25rem);
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  margin-bottom: 10%;
  padding: clamp(1.125rem, 0.2272727273vw + 1.0795454545rem, 1.25rem);
  pointer-events: auto;
  row-gap: clamp(0.5rem, 0.909091vw + 0.318182rem, 0rem);
  text-align: center;
  transition: all 0.2s ease-in-out;
  width: clamp(1rem, 7.714286vw + 2.857143rem, 8rem);
  height: clamp(1rem, 7.714286vw + 2.857143rem, 8rem);
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .services-banner__explore-all .button {
    border-radius: 100% !important;
  }
}
.services-banner__explore-all .button .text-1 {
  display: block;
}
.services-banner__explore-all .button .text-2 {
  display: none;
}

.services-banner__all-languages p {
  align-items: center;
  background-color: var(--acid);
  border-radius: 50%;
  color: var(--black);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  font-size: clamp(0.875rem, 0.592857143vw + 0.6071428571rem, 0.8rem);
  font-weight: 500;
  height: clamp(4rem, 3.714286vw + 2.857143rem, 8rem);
  justify-content: center;
  line-height: 1.29;
  margin-bottom: 10%;
  padding: clamp(1.125rem, 0.2272727273vw + 1.0795454545rem, 1.25rem);
  pointer-events: auto;
  row-gap: clamp(0.5rem, 0.9090909091vw + 0.3181818182rem, 1rem);
  text-align: center;
  transition: all 0.2s ease-in-out;
  transition-property: transform;
  width: clamp(4rem, 3.714286vw + 2.857143rem, 8rem);
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .services-banner__explore-all .button {
    align-self: end;
    grid-column: 1/span 12;
    justify-self: end;
    margin-bottom: 7%;
  }
}
@media screen and (min-width: 1200px) {
  .services-banner__explore-all .button {
    grid-column: 2/span 10;
  }
}
@media (hover: hover) and (pointer: fine) {
  .services-banner__explore-all .button:hover:not(:disabled) {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px) {
  .services-banner__explore-all .icon {
    width: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .services-banner__explore-all button {
    width: 100px !important;
    height: 100px !important;
    border-radius: 20px !important;
  }
}
.goal-section {
  padding: 200px 0 150px 0;
  background: #f5f5f5;
  padding: 100px 0 50px 0;
  margin-bottom: 100px;
}
.goal-section .content-right .text-section h2 {
  font-size: 6rem;
  font-weight: 100;
  color: #000000;
  text-transform: uppercase;
}
.goal-section .content-right .text-section h2 strong {
  font-weight: 600;
}
.goal-section .content-right .text-section small {
  font-size: 0.89rem;
  font-weight: 100;
  text-transform: uppercase;
  padding-left: 10px;
}
.goal-section .content-right .text-section p {
  font-size: 1.5rem;
  line-height: 2.1rem;
  padding: 20px 135px 20px 20px;
}
.goal-section .content-right .text-section p strong {
  font-weight: 600;
}
.goal-section .content-right .text-section p a {
  font-weight: 600;
  color: #CEADD6;
}
.goal-section .content-right .btn-getstarted {
  padding: 10px 50px;
  height: auto;
  font-size: 22px;
  font-weight: 100;
  background-color: transparent;
  border-color: #707070;
  color: #707070 !important;
}
@media only screen and (max-width: 575px) {
  .goal-section .goal-item {
    margin: 20px;
    border: 1px solid #e7e7e7;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 5px #eee;
  }
}
.goal-section .goal-item .img-holder {
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .goal-section .goal-item .img-holder {
    text-align: center;
    padding: 50px 50px 20px 50px;
  }
}
.goal-section .goal-item .img-holder img {
  height: 290px;
}
@media only screen and (max-width: 575px) {
  .goal-section .goal-item .text-holder {
    text-align: center;
    padding: 20px 50px 50px 50px;
  }
}
.goal-section .goal-item .text-holder h3 {
  font-size: 1.2rem;
  color: #000;
  letter-spacing: 0;
}
.goal-section .goal-item .text-holder p {
  text-align: center;
  font-size: 0.94rem;
  line-height: 22px;
  padding-top: 17px;
}
@media only screen and (max-width: 575px) {
  .goal-section .items-ineer {
    margin-top: -75px;
  }
}
.goal-section .header-section {
  margin-top: -40px;
  margin-bottom: 50px;
  padding: 20px 0;
}
@media only screen and (max-width: 575px) {
  .goal-section .header-section {
    padding: 0px;
  }
}
.goal-section .header-section h2 {
  font-size: clamp(3.9rem, 4rem, 4.1em);
  font-weight: 100;
  color: #000000;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .goal-section .header-section h2 {
    font-size: 3rem;
    text-align: center;
  }
}
.goal-section .header-section h2 span {
  font-weight: 600;
  color: #ACCD00;
  font-size: 5.7rem;
  margin-top: -30px;
  display: block;
}
@media only screen and (max-width: 575px) {
  .goal-section .header-section h2 span {
    font-size: 4.8rem;
    margin-top: -30px;
  }
}
.goal-section .header-section .sunli {
  font-size: 1.38rem;
  padding-left: 5px;
  text-transform: capitalize;
  margin-top: -20px;
  color: #000;
}
@media only screen and (max-width: 575px) {
  .goal-section .header-section .sunli {
    text-align: center;
    display: none;
  }
}
.goal-section .header-section p {
  text-align: left;
  font-size: 1.2rem;
  padding-top: 45px;
  padding-right: 50px;
}
@media only screen and (max-width: 575px) {
  .goal-section .header-section p {
    text-align: center;
    padding-bottom: 45px;
    padding-top: 0px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 17px;
  }
}
.goal-section .header-section p strong {
  font-weight: 600;
}
.goal-section .header-section p small {
  font-size: 0.89rem;
  font-weight: 100;
  text-transform: uppercase;
  padding-left: 10px;
}
.goal-section .circle-shape.bg-green:nth-child(2) {
  height: 70px;
  left: 23%;
  opacity: 0.6;
  top: 0;
  width: 70px;
  animation: transform-horizental 20s infinite ease-in-out both;
}
.goal-section .circle-shape.bg-green:nth-child(3) {
  left: 16%;
  min-height: 30px;
  min-width: 30px;
  opacity: 0.7;
  top: 77%;
}
.goal-section .circle-shape.bg-blue {
  top: 70%;
  left: 7%;
  background-color: rgba(90, 95, 239, 0.568627451);
}
.goal-section .circle-shape.bg-gray {
  height: 70px;
  left: 60%;
  opacity: 0.6;
  top: 80%;
  width: 70px;
  animation: transform-horizental 35s infinite ease-in-out both;
}

.unique-section {
  padding: 200px 0 150px 0;
}
@media only screen and (max-width: 575px) {
  .unique-section {
    padding-top: 0;
  }
}
.unique-section .content-right {
  text-align: right;
}
@media only screen and (max-width: 575px) {
  .unique-section .content-right {
    text-align: center;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .unique-section .content-right .text-section {
    text-align: center;
  }
}
.unique-section .content-right .text-section h2 {
  font-size: 5.2rem;
  font-weight: 100;
  color: #000000;
  text-transform: uppercase;
  margin-left: 80px;
  line-height: 72px;
}
@media only screen and (max-width: 575px) {
  .unique-section .content-right .text-section h2 {
    font-size: 3.4rem;
    padding-left: 0px;
    margin-left: 0px;
    line-height: 50px;
    margin-top: 50px;
    text-align: center;
  }
}
.unique-section .content-right .text-section h2 strong {
  font-weight: 600;
}
.unique-section .content-right .text-section hr {
  height: 3px;
  width: 50%;
  text-align: right;
}
.unique-section .content-right .text-section small {
  font-size: 1.12rem;
  font-weight: 300;
  padding-right: 3px;
  text-transform: uppercase;
  padding-top: 10px;
  display: block;
}
@media only screen and (max-width: 575px) {
  .unique-section .content-right .text-section small {
    font-size: 1rem;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    line-height: 50px;
    margin-top: -20px;
  }
}
.unique-section .content-right .text-section small:after {
  content: " ";
  border: 1px solid #000;
  display: block;
  max-width: 60%;
  position: relative;
  right: 5px;
  left: 40%;
}
@media only screen and (max-width: 575px) {
  .unique-section .content-right .text-section small:after {
    max-width: 98%;
    left: 2%;
  }
}
.unique-section .content-right .text-section p {
  font-size: 1.4rem;
  line-height: 2.1rem;
  padding: 20px 0px 20px 135px;
}
@media only screen and (max-width: 575px) {
  .unique-section .content-right .text-section p {
    padding-bottom: 30px;
    text-align: center;
    padding-left: 0;
    font-size: 20px;
  }
}
.unique-section .content-right .text-section p strong {
  font-weight: 600;
}
.unique-section .content-right .text-section p a {
  font-weight: 600;
  color: #CEADD6;
}
.unique-section .content-right .btn-getstarted {
  padding: 10px 50px;
  height: auto;
  font-size: 22px;
  font-weight: 400;
  background-color: transparent;
  border-color: #707070;
  color: #707070 !important;
  min-width: 300px;
}
@media only screen and (max-width: 575px) {
  .unique-section .content-right .btn-getstarted {
    min-width: unset;
  }
}
.unique-section .content-right .btn-getstarted:hover {
  background-color: #CEADD6;
  border-color: #CEADD6;
  color: #000 !important;
}
.unique-section .img-lead img {
  transform: scale(1.5);
}
@media only screen and (max-width: 575px) {
  .unique-section .img-lead img {
    transform: scale(1);
  }
}
.unique-section .circle-shape.bg-green:nth-child(2) {
  height: 70px;
  left: 23%;
  opacity: 0.6;
  top: 0;
  width: 70px;
  animation: transform-horizental 20s infinite ease-in-out both;
}
.unique-section .circle-shape.bg-green:nth-child(3) {
  left: 16%;
  min-height: 30px;
  min-width: 30px;
  opacity: 0.7;
  top: 77%;
}
.unique-section .circle-shape.bg-blue {
  top: 70%;
  left: 7%;
  background-color: rgba(90, 95, 239, 0.568627451);
}
.unique-section .circle-shape.bg-gray {
  height: 70px;
  left: 60%;
  opacity: 0.6;
  top: 80%;
  width: 70px;
  animation: transform-horizental 35s infinite ease-in-out both;
}

.charity-section {
  margin-top: 100px;
}
@media only screen and (max-width: 575px) {
  .charity-section {
    margin-top: -50px;
  }
}
.charity-section .section-header {
  position: relative;
  z-index: 1;
}
.charity-section .section-header h2 {
  font-size: 4rem;
  font-weight: 100;
  color: #000000;
  text-transform: uppercase;
  margin-left: 80px;
  line-height: 72px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .charity-section .section-header h2 {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 575px) {
  .charity-section .section-header h2 {
    font-size: 2rem;
    margin: 20px auto;
    line-height: 40px;
  }
}
.charity-section .section-header h2 strong {
  font-weight: 600;
  color: #CEADD6;
}
@media only screen and (max-width: 575px) {
  .charity-section .section-header .cleaner-heads {
    margin-bottom: 300px;
  }
}
.charity-section .section-header p {
  text-align: center;
  font-size: 36px;
}
@media only screen and (max-width: 575px) {
  .charity-section .section-header p {
    font-size: 12px;
    margin-top: -20px;
  }
}
.charity-section .section-content {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .charity-section .section-content {
    min-height: 70vh;
    background: url("https://uttervision.com/assets/images/public/pages/about/charity.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (max-width: 575px) {
  .charity-section .section-content {
    background: url("https://uttervision.com/assets/images/public/pages/about/charity.jpg");
    width: 90%;
    border-radius: 20px;
    padding: 20px;
    margin: 0px auto;
  }
}
.charity-section .section-content:before {
  background-color: #fff;
  border-radius: 0 0 134% 121%;
  content: "";
  height: 188px;
  left: 0;
  position: absolute;
  top: -90px;
  width: 100%;
  z-index: 0;
}
@media only screen and (max-width: 575px) {
  .charity-section .section-content:before {
    margin: 0 auto;
    border-radius: 20px;
    width: 90%;
    position: unset;
    height: 88px;
    display: none;
  }
}
.charity-section .section-content .absolute-content {
  background: rgb(42, 42, 47);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(16%, rgba(42, 42, 47, 0.7343312325)), to(rgba(0, 0, 0, 0.001)));
  background: -o-linear-gradient(bottom, rgba(42, 42, 47, 0.7343312325) 16%, rgba(0, 0, 0, 0.001) 100%);
  background: linear-gradient(0deg, rgba(42, 42, 47, 0.7343312325) 16%, rgba(0, 0, 0, 0.001) 100%);
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  margin: auto;
  padding: 25px 0;
  color: #fff;
}
.charity-section .section-content .absolute-content a {
  color: #fff !important;
  border-color: #fff;
}
.charity-section .section-content .absolute-content p {
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .charity-section .section-content .absolute-content p {
    text-align: center;
    padding: 50px 0;
  }
}

.prince-section {
  background-image: url(../../../../images/public/pages/about/pr-bg.svg);
  padding: 100px 0 0 0;
}
@media screen and (min-width: 1280px) {
  .prince-section {
    margin-top: 25%;
  }
}
@media screen and (min-width: 1440px) {
  .prince-section {
    margin-top: 14%;
  }
}
@media screen and (min-width: 1599px) {
  .prince-section {
    margin-top: 7%;
  }
}
@media only screen and (max-width: 575px) {
  .prince-section {
    padding: 30px 0 0 0;
    background-image: none;
  }
}
.prince-section .section-header {
  margin-bottom: 3%;
  font-weight: 300;
  margin-left: 5%;
  color: #000;
}
@media only screen and (max-width: 575px) {
  .prince-section .section-header {
    margin-left: 0;
    text-align: center;
    margin: -30px auto 0 auto;
  }
}
.prince-section .section-header h2 {
  color: #000;
}
@media only screen and (max-width: 575px) {
  .prince-section .section-header h2 {
    font-size: 30px;
  }
}
.prince-section .section-header p {
  color: #000;
}
@media only screen and (max-width: 575px) {
  .prince-section .section-header p {
    font-size: 13px;
  }
}
.prince-section .white-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px 30px 0 0;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .prince-section .white-box {
    margin: 35px auto;
    background: rgb(249, 250, 255);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.prince-section .white-box .des-long {
  padding: 20px 50px;
  font-size: 1.5rem;
  line-height: 2.5rem;
}
@media screen and (min-width: 1200px) {
  .prince-section .white-box .des-long {
    font-size: 1.1rem;
    line-height: 2.1rem;
  }
}
@media screen and (min-width: 1440px) {
  .prince-section .white-box .des-long {
    font-size: 1.25rem;
    line-height: 2.1rem;
  }
}
@media screen and (min-width: 1920px) {
  .prince-section .white-box .des-long {
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
}
@media only screen and (max-width: 575px) {
  .prince-section .white-box .des-long {
    color: #000;
    font-size: 0.99em;
    font-weight: 500;
    line-height: 1.3rem;
    padding: 22px 15px;
    position: relative;
    text-align: center;
    text-shadow: 0 -5px 5px #fff;
    z-index: 2;
  }
}
.prince-section .white-box .des-long span {
  color: #838EEB;
  font-size: 1.5rem;
}
.prince-section .img-right {
  margin-top: -15%;
  position: relative;
  right: 0%;
}
@media screen and (min-width: 1200px) {
  .prince-section .img-right {
    right: -15%;
  }
}
@media only screen and (max-width: 575px) {
  .prince-section .img-right {
    margin-top: -2%;
    position: relative;
    right: 0;
  }
}
.prince-section .img-right img {
  transform: scale(1.2);
}
@media screen and (min-width: 1200px) {
  .prince-section .img-right img {
    transform: scale(0.8);
  }
}
@media screen and (min-width: 1440px) {
  .prince-section .img-right img {
    transform: scale(0.9);
  }
}
@media screen and (min-width: 1920px) {
  .prince-section .img-right img {
    transform: scale(1.2);
  }
}
@media only screen and (max-width: 575px) {
  .prince-section .img-right img {
    transform: scale(1);
    padding-top: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .prince-section .img-right img {
    transform: scale(1);
    padding-top: 0px;
  }
}

.travel-section {
  padding: 100px 0 0 0;
}
@media only screen and (max-width: 575px) {
  .travel-section {
    padding: 0px 0 0 0;
  }
}
.travel-section .img-left {
  margin-top: 0;
  position: relative;
  left: 0%;
}
@media only screen and (max-width: 575px) {
  .travel-section .img-left {
    margin: 0;
  }
}
.travel-section .img-left:after {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  content: "";
  height: 140%;
  left: -85%;
  position: absolute;
  width: 145%;
  z-index: -1;
  top: -20%;
}
@media only screen and (max-width: 575px) {
  .travel-section .img-left:after {
    display: none;
  }
}
.travel-section .img-left img {
  transform: scale(1.6);
}
@media screen and (min-width: 1200px) {
  .travel-section .img-left img {
    transform: scale(1.2);
  }
}
@media only screen and (max-width: 575px) {
  .travel-section .img-left img {
    transform: scale(1);
    padding: 0;
  }
}
.travel-section .des-long {
  font-size: 1.43rem;
  line-height: 2.1rem;
  padding: 20px 50px;
  margin-top: -10%;
}
@media only screen and (max-width: 575px) {
  .travel-section .des-long {
    padding: 20px 15px;
    text-align: center;
    font-size: 1rem;
    margin-top: 0;
  }
}
.travel-section .des-long h3 {
  font-size: 2.28rem;
  color: #000;
  letter-spacing: -1px;
  line-height: 6rem;
  margin-left: -25%;
  font-weight: 600;
}
@media only screen and (max-width: 575px) {
  .travel-section .des-long h3 {
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 2rem;
    margin-left: 0;
  }
}
.travel-section .des-long p {
  text-align: right;
}
@media only screen and (max-width: 575px) {
  .travel-section .des-long p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 575px) {
  .w-fit small {
    margin-top: -10px;
  }
}

@media screen and (min-width: 375px) {
  services-banner {
    padding-left: clamp(1.375rem, 5.8035714286vw + 0.2142857143rem, 3rem);
    padding-right: clamp(1.375rem, 5.8035714286vw + 0.2142857143rem, 3rem);
  }
}
@media screen and (min-width: 768px) {
  services-banner {
    padding-left: clamp(3rem, 7.03125vw - 0.375rem, 4.125rem);
    padding-right: clamp(3rem, 7.03125vw - 0.375rem, 4.125rem);
  }
}
@media screen and (min-width: 1440px) {
  services-banner {
    padding-left: 5.375rem;
    padding-right: 5.375rem;
  }
}
.services-banner__title {
  display: inline-block;
  font-size: clamp(1.875rem, 1.9642857143vw + 1.4821428571rem, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.27;
  margin-bottom: clamp(1.75rem, 0.8928571429vw + 1.5714285714rem, 2.375rem);
}

.services-banner__title:after {
  background-color: var(--acid);
  content: "";
  display: block;
  height: 5px;
  margin-top: clamp(0.5rem, 1.0714285714vw + 0.2857142857rem, 1.25rem);
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.3s ease;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .services-banner__title:not([data-aos]):hover:not(:disabled):after {
    transform: scaleX(1);
  }
}
.services-banner__title[data-aos].animate:after {
  transform: scaleX(1);
}

@media screen and (min-width: 1024px) {
  .services-banner__title {
    max-width: 33.3333333333%;
  }
}
.services-banner__content {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .services-banner__content {
    margin-top: -60px;
  }
}

.services-banner__carousel .swiper-wrapper, .services-banner__carousel.swiper {
  overflow: visible;
}

.services-banner__carousel .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.33, 0, 0.23, 1);
}

.services-banner__carousel .swiper-slide {
  opacity: 0;
  transition: opacity 0.7s linear;
}

.services-banner__carousel .swiper-slide-active {
  opacity: 1;
}

.services-banner__carousel .swiper-navigation {
  justify-content: flex-end;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .services-banner__carousel .swiper-navigation {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .services-banner__carousel .swiper-navigation button {
    height: 2rem;
    width: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .services-banner__carousel .swiper-navigation {
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }
}
.services-banner__pagination {
  display: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font: inherit;
  padding: 0;
}

/*# sourceMappingURL=about.min.css.map*/