/* fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* pulse */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

.btn:after {
     display: none;
}
.presentation-banner {
  background: #e6f7ff;
  animation: fadeIn 1s ease;
  padding: 12px 20px;
  border-radius: 6px;
  width: 100%;        /* fill available space up to… */
  max-width: 800px;   /* …but never exceed 800px */
  margin: 0 auto;   
}

/* Banner wrapper */
.presentation-content {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* Push text left, buttons right */
  flex-wrap: wrap;                 /* Allows wrapping on very small screens */
  gap: 12px;  
  width: 100% !important;
}

/* Group the two buttons horizontally */
.button-group {
  display: flex;
  gap: 20px;        /* space between the two buttons */
}

/* Optional: ensure the button-group doesn’t wrap */
.button-group {
  flex-shrink: 0;
}

.presentation-text {
  flex: 1;
  font-size: 1rem;
  color: #003366;
}

.btn {
  
  align-items: center;
  gap: 10px;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: background 0.2s, box-shadow 0.2s;
  width: auto;
    height: 40px;
    align-items: center;
}

.download-btn {
  background: #1c86ee;
}
.download-btn:hover {
  background: #297cc0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.more-btn {
  background: #297cc0;
}
.more-btn:hover {
  background: #297cc0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.more-btn .arrow {
  font-size: 1.2em;
}



.btn.with-icon::after {
  display: none;
}







html[lang="ru"] .swiper-container {
    padding: 0 27px 0 27px !important;
}

html[lang="en"] .swiper-container, html[lang="kz"] .swiper-container, html[lang="ru"] .swiper-container {
    padding: 0;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    max-height: 5%;
}



/* only affect the about‐us shortcode */
.shortcode-about-us-information .experience-year .icon {
  /* bump these up to whatever you need */
  height: 370px !important;
}
.experience-year .icon {
    width: 350px;
    height: 100px;
    position: relative;
    position: absolute;
    transform: translateX(-50%);
 	margin-bottom: 470px;
    margin-right: 30px;
}

.experience-year {
    background: none;
    border: none;
    bottom: 0;
    height: auto;
    position: relative;
    left: 50%;
    transform: unset;
    width: auto;
}



.brand-area .swiper-container {
  max-width: calc((90px + 10px) * 2); /* 2 slides × (slide width + margin) */
  overflow: hidden;
}


.team__area-two {
    padding: 120px 0 20px;
}

.brand-area {
    border-bottom: 0;
}

.team__social-two {
    display: none;
}

.team__content-two .title {
    font-size: 16px;
}

.pb-120 {
    padding-bottom: 0;
}





/* make any img inside scale to fill the new .icon */
.shortcode-about-us-information .experience-year .icon img {
  width: 100%;
  height: auto;
  display: block;
}
/* scope only to your about section */
.shortcode-about-us-information .experience-year .icon {
  /* hide the existing  */
  font-size: 0 !important;
  color: transparent !important;
  /* size & replace with your image */
  background: url('/storage/images/anuar-umirzhanov-af.png') no-repeat center;
  background-size: contain;
}


.about-list .list-wrap li {
    width: 70%;
}

.shortcode-about-us-information .row.align-items-center > .col-lg-6:nth-child(1) {
  /* image column → 50% */
  flex: 0 0 50%;
  max-width: 50%;
}

.pt-120 {
    padding-top: 70px;
}

.shortcode-about-us-information .about-content h2 {
  font-size: 22px !important;
}

.shortcode-about-us-information .row.align-items-center > .col-lg-6:nth-child(2) {
  /* content column → 50% */
  flex: 0 0 50%;
  max-width: 50%;
}


.mb-35 h2 {
  font-size: 20px;
}

.shortcode-about-us-information .container > .row {
  justify-content: space-between;
  flex-wrap: nowrap;
}

.about-img-wrap .mask-img-wrap {  
    mask-image: none;
}




.about-list .list-wrap li .icon {
    background: #e7f5fa;
}

.about-img-wrap .mask-img-wrap {
    height: 472px;
    width: 617px;
}

:root {
    --dot-size: 20px;
    --dot-color: #297cc0;
    --line-color: #ccc;
    --card-bg: #fff;
    --card-radius: 8px;
    --card-shadow: rgba(0, 0, 0, 0.05);
    --gap: 20px;
    --card-width: 280px;
    z-index: 9;
}

* { box-sizing: border-box; margin:0; padding:0; }
    



.timeline-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

/* dotted line behind circles */
.timeline-carousel::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0; right: 0;
  border-top: 2px dotted #ccc;
  z-index: 1;
}

/* hide scrollbars */
.timeline-items {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  -ms-overflow-style: none;  /* IE, Edge */
  scrollbar-width: none;     /* Firefox */
}
.timeline-items::-webkit-scrollbar { display: none; }
.timeline-items.active { cursor: grabbing; }

.timeline-item {
  flex: 0 0 33.333%;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  scroll-snap-align: center;
  text-align: center;
}

.icon-wrapper {
  width: 60px; height: 60px;
  margin: auto;
  border-radius: 80%;
  background: #e6f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.icon-wrapper img {
  width: 30px; height: 30px;
}

.card {
  position: relative;
  background: #f0f6fa;
  border-radius: 4px;
  padding: 16px;
  margin-top: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.3);
  transform: rotate(45deg) translate(-200%, 0);
  transition: transform 0.8s ease;
  pointer-events: none;
}
.card:hover::before {
  animation: shine 0.8s ease-in-out;
}

@keyframes shine {
  from { left: -75%; }
  to   { left: 150%; }
}

.card .year {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #102c4f;
}
.card .description {
  font-size: 15px;
  color: #102c4f;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}

/* nav below */
.timeline-nav {
  text-align: center;
  margin-top: 40px;
}

/* 2) Give the arrows their own stacking context */
.arrow {
  width: 40px; height: 40px;
  margin: 0 8px;
  border: none;
  border-radius: 50%;
  background: #102c4f;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
  transition: opacity 0.2s;
}

/* 3) Fully show the arrow when you hover it */
.arrow:hover {
  color: #fff;
}

/* 4) Disabled state still works, but remains visible */
.arrow--disabled {
  opacity: 0.3;
  pointer-events: none;
}


.choose__area-three {
    overflow: hidden;
    padding: 70px 20 !important;
    position: relative;
    z-index: 1;
}

.card-info h5 {
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.card-info p {
  text-align: left;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Full height card */
.card-services-type-01 {
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
  height: 100%;
}

.card-services-type-01:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}







.services__area-home8 {
    position: relative;
    top: -10px;
    z-index: 12;
}

.card-services-type-01 .card-info h5 {
    font-size: 15px;
    line-height: normal;
    margin-bottom: 24px;
}
.truncate-1-custom, .truncate-2-custom {
    display: block;
}

.card-services-type-01 {
    background-color: var(--tg-color-white-default);
    border: 2px solid #e7f5fa;
}



choose__area-three {
    padding: 70px 0;
}



.choose__img-wrap-three {
    position: relative;
    text-align: right;
    margin-right: 40px;
}

.section-title .title {
    font-size: 36px;
    margin-bottom: 0;
}
.section-title .sub-title {
    color: #0a2a50;
}
choose__content-three>p {
    color: #0a2a50;
}

.choose__list-icon {
    background: #e7f5fa;
}

.choose__img-wrap-three .main-img {
    -ms-box-shadow: 0 56px 80px 0 rgba(0,0,0,.15);
    -o-box-shadow: 0 56px 80px 0 rgba(0,0,0,.15);
    box-shadow: 0 16px 20px 0 rgba(0, 0, 0, .15);
}
.choose__img-wrap-three {
    margin-right: 20px;
}

.card-services-type-01 {
    margin-bottom: 0;
}



@media(max-width:1500px) {



.card-services-type-01 {
    margin-bottom: 20px;
}

.services__area-home8 {
        top: -60px;
    }


.services__area-home8 {
        padding-bottom: 10px;
        padding-top: 0px;
        top: auto;
    }

   }



@media (max-width: 991.98px) {

p {
    margin: auto;
    width: 300px;
    padding-bottom: 10px;
}

.presentation-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
}

.presentation-banner {
    width: 100%;
    max-width: 340px;
    margin: 30px 20px 10px 20px;
}

.presentation-actions {
        
        align-items: flex-start;
        text-align: center;
        margin: auto;
    }


.presentation-content {
    flex-direction: column;       /* move text and buttons into a column */
    align-items: flex-start;      /* keep left alignment */
  }

  .button-group {
    flex-direction: column;       /* stack buttons one on top of the other */
    width: 100%;                  /* allow them to fill container */
    gap: 12px;                    /* spacing between buttons */
  }

  .btn {
    width: 100%;                  /* full-width buttons */
    justify-content: center;      /* center icon+text */
  }

.presentation-content {
    flex-direction: column;       /* move text and buttons into a column */
    align-items: flex-start;      /* keep left alignment */
  }

  .button-group {
    flex-direction: column;       /* stack buttons one on top of the other */
    width: 100%;                  /* allow them to fill container */
    gap: 12px;                    /* spacing between buttons */
  }

  .btn {
    width: 100%;                  /* full-width buttons */
    justify-content: center;      /* center icon+text */
  }


.section-title .title {
    font-size: 32px;
    margin-bottom: 0;
}

.choose__area-three {
        padding: 90px 0;
    }


.timeline-item { flex: 0 0 66.667%; }

.tg-element-title {
  white-space: nowrap;          /* don’t let the browser break the whole heading */
}

.tg-element-title .split-line,
.tg-element-title .split-line > div,
.tg-element-title .split-line > div > div {
  display: inline !important;  /* override block behavior */
  margin: 0;                   /* clear any injected margins */
  padding: 0;
  white-space: normal;
}

.col-lg-7 {
    flex: 0 0 auto;
    width: 80% !important;
}

.choose__img-wrap-three {
    margin-right: 0 !important;
}

.col-lg-5 {
    flex: 0 0 auto;
    width: 100% !important;
}

.experience-year, .experience-year .icon {
    align-items: center;
    border-radius: 50%;
    display: block;
     margin-bottom: 270px;
 }   
    
.experience-year {
    height: 100px;

    position: relative;
    position: absolute;
    transform: translateX(-50%);
    width: 0; 
}

.pt-120 {
    padding-top: 0px;
}

.about-img-wrap .mask-img-wrap {
    height: 350px;
}

.about-img-wrap .mask-img-wrap img {
        display: none;
    }
    
    

.tgmenu__nav .logo img {
margin-left: 0px; 
}

.tg-header__area .mobile-nav-toggler {
        margin-right: 0px;
    }


.about-img-wrap {
        margin-bottom: 0;
    }


.about-list .list-wrap li {
    width: 100%;
}


/* target only this section’s row */
  .shortcode-about-us-information .row.align-items-center {
    flex-direction: column !important;
  }

  /* make each col fill 100% */
  .shortcode-about-us-information .row.align-items-center > .col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  
.centered-title {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
    .row > [class*="col-"] {
    display: flex;
    padding-bottom: 30px;
}
.card-services-type-01 .card-info h5 {
   font-size: 18px;
    margin-bottom: 24px;
}

/* Description: allow 7 lines */
.truncate-3-custom {
     font-size: 15px;
}
.choose__area-three {
    padding: 30px 0;
}
.services__area-home8 {
    top: -20px;
}
}