@import url("helper.css");
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #203765;
  --sub-color: #006738;
  --sub-color2: #CED7A4;
}

.main-color {
  color: var(--main-color) !important;
}

.main-back {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
  color: #fff;
}

.hover-bg-main:hover {
  background-color: var(--main-color);
  color: #fff !important;
}

.sub-color {
  color: var(--sub-color) !important;
}

.sub-back {
  background-color: var(--sub-color) !important;
  border-color: var(--sub-color) !important;
  color: #fff;
}

.hover-bg-sub:hover {
  background-color: var(--sub-color);
  color: #fff !important;
}

.sub-color2 {
  color: var(--sub-color2) !important;
}

.sub-back2 {
  background-color: var(--sub-color2) !important;
  border-color: var(--sub-color2) !important;
  color: var(--sub-color);
}

.hover-bg-sub2:hover {
  background-color: var(--sub-color2);
  color: var(--sub-color) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  color: var(--main-color);
}
body .body-shap {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.6;
  color: #68747A;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* Preloader
-----------------------------------------------------------------*/
body.loaded .loader {
  opacity: 1;
  transition: all 0.3s ease;
}

.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}
.loader-wrap .loader {
  position: relative;
  z-index: 9999;
  opacity: 0;
}
.loader-wrap .loader img {
  width: 200px;
  height: 200px;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #f0f0f0;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- butn --------------- */
.butn {
  position: relative;
  padding: 13px 35px;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
  text-align: center;
}
.butn:hover {
  background-color: var(--sub-color);
}
.butn.sub-butn {
  background-color: var(--sub-color);
  border-color: var(--sub-color);
}
.butn.sub-butn:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

/* --------------- form --------------- */
.form-control {
  min-height: 45px;
  box-shadow: none;
  outline: 0;
  border-radius: 0;
}

/* --------------- navbar --------------- */
.navbar {
  position: relative;
  padding: 20px 0;
  z-index: 99;
}
.navbar .navbar-brand {
  width: 200px;
}
.navbar .navbar-nav {
  position: relative;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  margin: 0 15px;
}
.navbar .dropdown-search {
  width: 300px;
  left: auto;
  right: 0;
}
.navbar .dropdown-search .search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.navbar .dropdown-search .search-box button {
  border: 1px solid var(--main-color);
  border-radius: 0;
  margin-inline-start: 8px;
  flex-shrink: 0;
  background-color: var(--main-color);
  color: #fff;
  width: 45px;
  height: 45px;
}

.float-nav {
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;

}

.navbar .nav-side .lang_butn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border: 1px solid #dee2e6;*/
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    
}

/* --------------- header --------------- */
header {
  position: relative;
  padding-top: 100px;
}
header .info {
  position: relative;
  z-index: 10;
}
header .main-img {
  height: 450px;
  margin-top: -25px;
}

/* --------------- about --------------- */
.about {
  position: relative;
}

.about .shap {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90%;
  object-fit: contain;
}

.about .about-cards {
  position: relative;
}
.about .about-cards .item {
  position: relative;
  margin-top: 50px;
}
.about .about-cards .item .icon {
  width: 130px;
  height: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(270deg, rgba(179, 192, 206, 0) 0%, rgba(179, 192, 206, 0.08) 100%);
  margin-bottom: 20px;
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.0666666667);
}
.about .about-cards .item .dot-list {
  display: flex;
  flex-wrap: wrap;
}
.about .about-cards .item .dot-list li {
  position: relative;
  display: flex;
  width: 50%;
  padding-inline-start: 20px;
  margin-top: 15px;
  white-space: nowrap;
  min-width: -moz-max-content;
  min-width: max-content;
}
.about .about-cards .item .dot-list li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #CED7A4;
  inset-inline-start: 0;
  top: 6px;
}

/* --------------- services --------------- */
.services {
  position: relative;
  background: linear-gradient(180deg, rgba(179, 192, 206, 0.2) 0%, rgba(179, 192, 206, 0.15) 100%);
}
.services .service-card {
  position: relative;
  display: block;
  margin-top: 30px;
}
.services .service-card .info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 30px;
}
.services .service-card .info .icon {
  position: relative;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(206, 215, 164, 0.3333333333);
  margin-inline-end: 20px;
  flex-shrink: 0;
}
.services .service-card .info .icon img {
  height: 45px;
}

/* --------------- proccess --------------- */
.proccess {
  position: relative;
}
.proccess .cards {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
}
.proccess .cards .line {
  position: absolute;
  content: "";
  left: 30px;
  bottom: 22px;
  width: calc(100% - 60px);
  height: 1px;
  background-color: var(--sub-color);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 3s ease;
}
.proccess .cards .line.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.proccess .cards .item {
  position: relative;
  text-align: center;
  margin-top: 30px;
  z-index: 10;
}
.proccess .cards .item .icon {
  position: relative;
  width: 130px;
  height: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(270deg, rgba(179, 192, 206, 0) 0%, rgba(179, 192, 206, 0.08) 100%);
  box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.0666666667);
  border: 6px solid #fff;
  margin-bottom: 15px;
}
.proccess .cards .item .title {
  position: relative;
  max-width: 220px;
  min-height: 50px;
}
.proccess .cards .item .numb-wrapper {
  width: 130px;
  display: inline-block;
  background-color: #fff;
}
.proccess .cards .item .numb-wrapper .num {
  position: relative;
  width: 45px;
  height: 45px;
  border: 2px solid var(--sub-color);
  color: var(--sub-color);
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

/* --------------- achievements --------------- */
.achievements {
  position: relative;
  padding: 0 3vw;
}
.achievements .achievements-box {
  position: relative;
  background-color: var(--sub-color);
  background-image: url(../images/ach-vec.png);
  background-size: cover;
  color: #fff;
  padding: 80px 0;
}
.achievements .achievements-box .card-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.achievements .achievements-box .card-item .icon {
  position: relative;
  width: 95px;
  height: 95px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.0666666667);
  box-shadow: 1px -1px 1px rgba(179, 192, 206, 0.3333333333);
  border: 5px solid var(--sub-color);
  margin-inline-end: 20px;
  flex-shrink: 0;
}
.achievements .achievements-box .card-item .icon img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* --------------- testimonials --------------- */
.testimonials {
  position: relative;
}
.testimonials .img-side {
  position: relative;
  padding-inline-start: 4vw;
  padding-bottom: 45px;
}
.testimonials .img-side .prc-box {
  position: absolute;
  left: 0;
  bottom: 45px;
  width: 240px;
  padding: 40px 20px;
  background-color: var(--sub-color);
  color: #fff;
}
.testimonials .img-side .prc-box h2 {
  font-weight: 400;
  color: var(--sub-color2);
  font-size: 100px;
  line-height: 0.8;
  margin-bottom: 20px;
}
.testimonials .img-side .prc-box h2 small {
  font-size: 40px;
}
.testimonials .img-side .qt-icon {
  position: absolute;
  left: 240px;
  bottom: 0;
}
.testimonials .testi-slider {
  position: relative;
  overflow: hidden;
}
.testimonials .testi-slider .swiper-arrows {
  transform: translateY(-100%);
}

.swiper-arrows {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  z-index: 30;
}
.swiper-arrows .swiper-prev,
.swiper-arrows .swiper-next {
  font-size: 16px;
  cursor: pointer;
}

.swiper-notification {
  display: none;
}

/* --------------- clients --------------- */
.clients {
  position: relative;
  padding: 80px 0;
}
.clients .clients-slider {
  position: relative;
  overflow: hidden;
}
.clients .clients-slider .swiper-wrapper {
  align-items: center;
}
.clients .clients-slider .swiper-wrapper .swiper-slide {
  width: -moz-max-content !important;
  width: max-content !important;
}
.clients .clients-slider .brand {
  max-height: 90px;
  max-width: 140px;
}
.clients .clients-slider .brand img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* --------------- footer --------------- */
footer {
  position: relative;
  background-color: #051B2E;
  background-image: url(../images/footer-shap.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  color: #B3C0CE;
  padding-top: 60px;
}
footer .social-links {
  position: relative;
}
footer .social-links li a {
  position: relative;
  margin-top: 15px;
  display: inline-flex;
}
footer .links-group .links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
footer .links-group .links li {
  width: 100%;
}
footer .links-group .links li a {
  position: relative;
  display: flex;
  margin-top: 15px;
  padding-inline-start: 20px;
  font-size: 13px;
}
footer .links-group .links li a::before {
  position: absolute;
  content: "";
  top: 6px;
  inset-inline-start: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #B3C0CE;
  border-right: 1px solid #B3C0CE;
}
footer .links-group .links.links-half li {
  width: 50%;
}
footer .foot {
  position: relative;
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
}
footer .social-icons a {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.0666666667);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

/* --------------- services page --------------- */
.services-pg {
  position: relative;
}
.services-pg .services-tabs {
  position: relative;
}
.services-pg .services-tabs .nav-pills {
  position: relative;
}
.services-pg .services-tabs .nav-pills .nav-item {
  width: 33.3%;
  flex-grow: 1;
}
.services-pg .services-tabs .nav-pills .nav-item .nav-link {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  background-color: #F9FAFB;
  color: rgba(32, 55, 101, 0.3333333333);
  padding: 50px 4vw;
  height: 100%;
  border-inline-end: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 0;
  width: 100%;
}
.services-pg .services-tabs .nav-pills .nav-item .nav-link.active {
  background-color: rgba(32, 55, 101, 0.1333333333);
  color: var(--main-color);
  border: 0;
  border-radius: 5px;
}
.services-pg .services-tabs .nav-pills .nav-item:last-of-type .nav-link {
  border: 0;
}
.services-pg .icon-list-item {
  position: relative;
  display: flex;
  margin-top: 30px;
}
.services-pg .icon-list-item .icon {
  height: 25px;
  margin-inline-end: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.services-pg .feat-cards {
  position: relative;
}
.services-pg .feat-cards .item {
    position: relative;
    margin-top: 40px;
    background: #f7f7f7;
    padding: 40px;
    border-radius: 15px;
    height: calc(100% - 30px);
}
.services-pg .feat-cards .item .icon {
  position: relative;
  height: 50px;
  margin-bottom: 30px;
}
.services-pg .feat-cards .item .icon img {
  height: 60px;
}
.services-pg .solutions {
  padding-top: 20px;
}
.services-pg .solutions .sl-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 15px;
  margin-top: 24px;
  height: calc(100% - 24px);
}
.services-pg .solutions .sl-card .icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(270deg, rgba(179, 192, 206, 0) 0%, rgba(179, 192, 206, 0.08) 100%);
  margin-bottom: 30px;
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.0666666667);
}
.services-pg .solutions .sl-card .icon img {
  height: 50px;
}

/* --------------- inner-header --------------- */
.inner-header {
  position: relative;
  padding: 50px 0;
}
.inner-header .content {
  position: relative;
  display: flex;
}
.inner-header .content .back-link {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(102, 124, 144, 0.0666666667);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 30px;
  flex-shrink: 0;
  font-size: 30px;
}
.inner-header .social-icons {
  position: relative;
  margin-top: 20px;
  padding-inline-start: 115px;
}
.inner-header .social-icons a {
  position: relative;
  margin-top: 10px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 5px;
  font-size: 16px;
}
.inner-header .social-icons a:hover {
  border-color: var(--main-color);
  background-color: var(--main-color);
  color: #fff;
}

/* --------------- blog-pg --------------- */
.blog-pg {
  position: relative;
}
.blog-pg .posts .item {
  position: relative;
  margin-top: 40px;
}
.blog-pg .posts .item .img {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}
.blog-pg .posts .item .info {
  position: relative;
  z-index: 10;
  margin-top: -13px;
}
.blog-pg .posts .item .info .tag {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 20px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 6px;
  text-transform: uppercase;
  margin: 0 auto 15px;
  font-size: 13px;
}
.blog-pg .sub-posts {
  position: relative;
  padding: 30px;
  background-color: #EBEEF3;
  border-radius: 10px;
  height: 100%;
}
.blog-pg .sub-posts .post .txt-small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-pg .post-det {
  position: relative;
}
.blog-pg .post-det .main-img {
  position: relative;
}
.blog-pg .post-det .main-img .tag {
  position: absolute;
  left: 30px;
  top: 30px;
  padding: 8px 20px;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  z-index: 10;
}

.blog-search-form .flex-group {
  position: relative;
  display: flex;
  margin-bottom: 50px;
}
.blog-search-form .flex-group .form-control {
  flex-grow: 1;
  min-height: 50px;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid rgba(153, 153, 153, 0.2);
  box-shadow: none;
}
.blog-search-form .flex-group button {
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: 1px solid rgba(153, 153, 153, 0.2);
  background-color: var(--main-color);
  color: #fff;
}

/* --------------- lines-title --------------- */
.lines-title {
  position: relative;
  padding-bottom: 30px;
}
.lines-title .lines {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.lines-title .lines::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background-color: var(--main-color);
  z-index: 10;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

/* --------------- contact-pg --------------- */
.contact-pg {
  position: relative;
  padding-top: 50px;
}
.contact-pg .form-group {
  position: relative;
  margin-bottom: 30px;
}
.contact-pg .form-group .form-control {
  position: relative;
  padding: 15px 0;
  min-height: 50px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #CACACA;
  font-size: 20px;
  color: #000;
  box-shadow: none;
}
.contact-pg .form-group .form-control::-moz-placeholder {
  color: #000;
}
.contact-pg .form-group .form-control::placeholder {
  color: #000;
}
.contact-pg .contact-info {
  position: relative;
  padding: 80px 0;
  background-image: url(../images/contact-bg.jpg);
  background-size: cover;
}
.contact-pg .contact-info .info-items .item {
  position: relative;
  margin-bottom: 50px;
}
.contact-pg .contact-info .info-items .item .icon-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 20px;
}
.contact-pg .contact-info .info-items .item .icon-title::after {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--main-color);
}

/* --------------- about page --------------- */
.about-pg {
  position: relative;
}
.about-pg .about-header {
  position: relative;
  border-radius: 35px;
  background-image: url(../images/about-bg.jpg);
  background-size: cover;
  margin: 30px 3vw 0;
  color: #fff;
  padding-top: 150px;
  overflow: hidden;
}
.about-pg .about-header .clients {
  padding: 30px 0;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 30px;
}
/*.about-pg .about-header .clients .brand img {*/
/*  filter: brightness(100000%);*/
/*}*/

/* --------------- vision page --------------- */
.about-pg-vision {
  position: relative;
  padding: 40px 0;
  background-image: url(../images/vision-bg.png);
  background-size: cover;
}
.about-pg-vision .nav-pills {
  display: block;
}
.about-pg-vision .nav-pills .nav-link {
  position: relative;
  font-size: 35px;
  font-weight: bold;
  color: #CACACA;
  background-color: transparent;
  padding: 0;
  line-height: 1;
  width: 100%;
  text-align: start;
  margin: 30px 0;
}
.about-pg-vision .nav-pills .nav-link::after {
  position: absolute;
  content: "";
  right: 0;
  top: calc(50% - 1px);
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  opacity: 0;
  transition: all 0.3s ease;
}
.about-pg-vision .nav-pills .nav-link.active {
  color: var(--main-color);
}
.about-pg-vision .nav-pills .nav-link.active::after {
  width: 120px;
  opacity: 1;
}

@media screen and (min-width: 991px) {
  .clippy-img {
    -webkit-clip-path: polygon(25% 0, 75% 0, 75% 100%, 25% 100%);
            clip-path: polygon(25% 0, 75% 0, 75% 100%, 25% 100%);
    opacity: 0;
    transform: rotate(-7deg) scale(1.3);
    transition: all 1s ease !important;
    transition-delay: 0.2s;
  }
  .clippy-img.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
/* ======== */
@media screen and (max-width: 991px) {
  .fsz-55 {
    font-size: 30px !important;
  }
  .fsz-45 {
    font-size: 30px !important;
  }
  .fsz-15 {
    font-size: 13px !important;
  }
  .fsz-65 {
    font-size: 35px !important;
  }
  header {
    padding-top: 50px;
  }
  header .main-img {
    height: 350px;
    margin-top: 30px;
  }
  .about .about-cards .item {
    margin-top: 20px;
    padding: 30px;
    background-color: #f5f5f5;
  }
  .proccess .cards::after {
    display: none;
  }
  .proccess .cards .item {
    margin-top: 50px;
    width: 50%;
  }
  .proccess .cards .item .icon {
    width: 110px;
    height: 110px;
  }
  .achievements .achievements-box {
    padding: 50px 0;
  }
  .achievements .achievements-box .card-item {
    display: block;
    margin-top: 12px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.0666666667);
  }
  .achievements .achievements-box .card-item .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  footer .links-group {
    margin-top: 30px;
  }
  .float-nav {
    padding: 0 15px;
  }
  .clients .clients-slider .swiper-wrapper .swiper-slide {
    width: 100% !important;
    text-align: center;
  }
  .about-pg-vision .nav-pills .nav-link.active::after {
    display: none;
  }
  .fsz-35 {
    font-size: 22px !important;
  }
  .blog-pg .sub-posts {
    padding: 20px 10px;
  }
  .fsz-50 {
    font-size: 30px !important;
  }
  .inner-header .content .back-link {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-inline-end: 20px;
  }
  .inner-header .social-icons {
    padding-inline-start: 0;
  }
  .services-pg .services-tabs .nav-pills .nav-item {
    width: 100%;
  }
  .services-pg .services-tabs .nav-pills .nav-item .nav-link {
    font-size: 20px;
    padding: 20px 4vw;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */