@font-face {
  font-family: "eurostile";
  src: url(../fonts/eurostile/eurostile_next_lt_pro.ttf);
}
@font-face {
  font-family: "eurostile-bold";
  src: url(../fonts/eurostile/eurostile_next_lt_pro_bold.ttf);
}
@font-face {
  font-family: "eurostile-semibold";
  src: url(../fonts/eurostile/eurostile_next_lt_pro_semibold.ttf);
}
@font-face {
  font-family: "eurostile-light";
  src: url(../fonts/eurostile/eurostile_next_lt_pro_light.ttf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --mainColor: #0956a6;
  --subColor: #b4ae74;
  /* --subColor2: #77643d; */
}

.mainColor {
  color: var(--mainColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !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: "eurostile";
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
  font-family: "eurostile-semibold";
}

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;
}

a:hover {
  color: #999;
}

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.8;
}

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;
}

/* --------------- section_head --------------- */
.section_head {
  position: relative;
  text-transform: capitalize;
}
.section_head h2 {
  position: relative;
  display: inline-block;
  font-size: 56px;
  color: var(--mainColor);
}
.section_head h2 span {
  color: #000;
  font-weight: 400;
}
.section_head h2 .icon {
  position: absolute;
  height: 20px;
  top: -5px;
  left: -30px;
}
.section_head h2 .float_small {
  position: absolute;
  top: -6px;
  left: 15px;
  color: var(--subColor);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section_head h4 {
  font-size: 36px;
  color: var(--subColor);
}

/* --------------- 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;
  text-align: center;
  box-shadow: none;
  padding: 13px 40px;
  background-color: var(--mainColor);
  border-radius: 30px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
.butn * {
  color: #fff;
}
.butn i {
  color: var(--subColor);
}
.butn:hover {
  background-color: var(--subColor);
}
.butn:hover * {
  color: #fff;
}
.butn.sub-butn {
  background-color: var(--subColor);
}

/* --------------- navbar --------------- */
.navbar {
  padding: 20px;
}
.navbar .navbar-brand {
  height: 70px;
  padding-inline-end: 5vw;
}
.navbar .navbar-nav {
  position: relative;
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-link {
  font-size: 16px;
  color: #282c32;
  font-weight: 600;
  margin: 0 20px;
}
.navbar .dropdown-menu {
  width: -moz-max-content;
  width: max-content;
  min-width: 300px;
  left: 0;
  border-radius: 0 0 20px 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.navbar .dropdown-menu::after {
  position: absolute;
  content: "";
  right: -30px;
  bottom: -10px;
  width: 100px;
  height: 100%;
  background-image: url(../images/title_icon.png);
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 0.15;
}
.navbar .dropdown-menu .dropdown-item {
  position: relative;
  padding: 10px 15px 10px 30px;
  width: -moz-max-content;
  width: max-content;
}
.navbar .dropdown-menu .dropdown-item::before {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  left: 10px;
  top: 12px;
  font-size: 11px;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--subColor);
  padding: 10px 15px 10px 40px;
}

@media screen and (min-width: 991px) {
  .dropdown, .dropend, .dropstart, .dropup {
    position: static;
  }
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
  }
}
/* --------------- header --------------- */
.header-slider {
  position: relative;
  margin: 50px 0;
  overflow: hidden;
}
.header-slider .hero-card {
  transition: all 1s ease;
  border-radius: 20px;
  overflow: hidden;
}
.header-slider .hero-card .img {
  height: 600px;
}
.header-slider .hero-card .img img {
  border-radius: 20px;
}
.header-slider .hero-card .img .video {
  border-radius: 20px;
}
.header-slider .hero-card .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 20;
  border-radius: 0 0 20px 20px;
  padding: 150px 4vw 4vw;
  color: #fff;
  background-image: linear-gradient(to top, #000, transparent);
}
.header-slider .swiper-slide .hero-card {
  opacity: 0;
}
.header-slider .swiper-slide-active .hero-card {
  opacity: 1;
}
.header-slider .swiper-container {
  padding-bottom: 50px;
}
.header-slider .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 6px;
}
.header-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

/* --------------- about --------------- */
.about {
  position: relative;
  padding: 100px 0;
}
.about .content {
  text-align: center;
}
.about .content .logo {
  height: 60px;
}
.about .content .main_text {
  font-size: 30px;
  margin-top: 40px;
  line-height: 1.7;
}
.about .content .more_link {
  font-size: 20px;
  color: var(--mainColor);
  margin-top: 30px;
  text-decoration: underline;
}

/* --------------- success --------------- */
.success {
  position: relative;
  padding: 100px 0;
  background-color: #f9f9f9;
}
.success .success-slider {
  position: relative;
}
.success .success-slider .swiper-slide .success-card {
  opacity: 0;
}
.success .success-slider .swiper-slide .success-card .img {
  transform: scale(0.7) rotate(10deg);
  transition: all 1s ease;
}
.success .success-slider .swiper-slide-active .success-card {
  opacity: 1;
}
.success .success-slider .swiper-slide-active .success-card .img {
  transform: scale(1) rotate(0);
}
.success .success-slider .swiper-slide-active .info {
  transform: translateY(0);
}
.success .success-card {
  position: relative;
  transition: all 1s ease;
}
.success .success-card .info {
  position: relative;
  text-align: center;
  transform: translateY(30px);
  transition: all 1s ease;
}
.success .success-card .info .num {
  font-size: calc(10vw + 30px);
  font-weight: bold;
  color: var(--mainColor);
  opacity: 0.05;
  line-height: 1;
  display: block;
  font-family: "eurostile-bold";
}
.success .success-card .info .main_text {
  font-size: 20px;
  text-transform: capitalize;
  min-height: 100px;
}
.success .success-card .imgs .img {
  position: relative;
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  overflow: hidden;
  height: 300px;
  margin-top: 10vw;
}
.success .success-card .imgs .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.success .row .col-lg-4:first-of-type .imgs .img:first-of-type {
  width: 80%;
  height: 200px;
  margin-inline-start: -20px;
  margin-inline-end: auto;
  margin-top: 5vw;
}
.success .row .col-lg-4:first-of-type .imgs .img:last-of-type {
  width: 90%;
  height: 400px;
}
.success .row .col-lg-4:last-of-type .imgs .img:first-of-type {
  width: 70%;
  height: 400px;
  margin-inline-start: auto;
  margin-inline-end: 0;
  margin-top: 0;
}
.success .row .col-lg-4:last-of-type .imgs .img:last-of-type {
  width: 60%;
  height: 200px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1400px) {
  .success .container, .success .container-lg, .success .container-md, .success .container-sm, .success .container-xl, .success .container-xxl {
    max-width: 1450px;
  }
}
.success .arrows {
  position: relative;
  margin-top: 30px;
}
.success .arrows .swiper-prev,
.success .arrows .swiper-next {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.success .arrows .swiper-prev:hover,
.success .arrows .swiper-next:hover {
  background-color: var(--mainColor);
  color: #fff;
}

/* --------------- timeline --------------- */
.timeline {
  position: relative;
  padding: 100px 0;
  background-color: #F0F4F9;
  overflow: hidden;
}
.timeline .title {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 30px;
  text-align: center;
}
.timeline .line {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
  height: 20%;
  width: 100%;
  animation-delay: 0.5s;
  transition: all 2s linear;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  z-index: 2;
  pointer-events: none;
}
.timeline .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%);
}
.timeline .line_cr {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20%;
  width: 100%;
  transition: all 1s linear;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  pointer-events: none;
}
.timeline .line_cr.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.timeline .timeline_slider {
  position: relative;
  padding-bottom: 150px;
}
.timeline .timeline_slider .swiper-slide:nth-of-type(even) .time_card {
  top: 100px;
  transition: all 1s ease;
}
.timeline .timeline_slider .swiper-slide:nth-of-type(even) .time_card .main_side {
  order: 1;
}
.timeline .timeline_slider .swiper-slide:nth-of-type(even) .time_card .item_line {
  top: auto;
  bottom: 90px;
  transform: rotateX(180deg);
}
.timeline .timeline_slider .swiper-slide:nth-of-type(even) .year_side {
  order: 2;
  margin-bottom: 30px;
}
.timeline .timeline_slider .swiper-slide:nth-of-type(even) .year_side .year::before {
  top: auto;
  bottom: 90%;
  background-image: linear-gradient(to top, #fff, transparent);
}
.timeline .cards {
  position: relative;
  margin-top: 100px;
  padding: 0;
}
.timeline .cards .time_card {
  position: relative;
  margin-top: 0;
  top: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 1s ease;
  cursor: pointer;
  padding: 0 30px;
}
.timeline .cards .time_card .item_line {
  position: absolute;
  left: 0;
  top: 130px;
  width: 100%;
  z-index: -1;
  height: 275px;
}
.timeline .cards .time_card .year_side {
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
}
.timeline .cards .time_card .year_side .year {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  transition: all 0.3s ease;
}
.timeline .cards .time_card .year_side .year::before {
  position: absolute;
  content: "";
  left: 45px;
  top: 90%;
  height: 100px;
  width: 16px;
  background-image: linear-gradient(to bottom, #fff, transparent);
  transition: all 0.3s ease;
}
.timeline .cards .time_card .year_side .year .dash {
  width: 15px;
  height: 1px;
  background-color: #ccc;
  margin: 10px 0;
}
.timeline .cards .time_card .year_side .year h6 {
  font-size: 20px;
  line-height: 1;
}
.timeline .cards .time_card .card-title {
  text-transform: capitalize;
  font-size: 18px;
  min-height: 60px;
  order: 0;
}
.timeline .cards .time_card .main_side {
  text-align: center;
  transition: all 0.3s ease;
}
.timeline .cards .time_card .main_side .img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
  display: inline-block;
}
.timeline .cards .time_card .text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 20px;
  order: 3;
}

.float_box_container {
  position: relative;
}
.float_box_container * {
  cursor: none !important;
}

.float-cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
  z-index: 10;
  transition: all 0.02 linear;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0666666667);
}
.float-cursor.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(153, 153, 153, 0.6);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: #999;
}

/* --------------- philosophy --------------- */
.philosophy {
  position: relative;
  background-image: linear-gradient(to bottom, rgba(9, 86, 166, 0.062745098), transparent, transparent);
  padding: 120px 0 75px;
}
.philosophy .item {
  position: relative;
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.philosophy .item .icon {
  height: 60px;
  width: 60px;
  margin: 0 auto 20px;
}
.philosophy .item .icon img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.philosophy .item h6 {
  font-size: 27px;
  margin-bottom: 15px;
  color: var(--mainColor);
}
.philosophy .item p {
  font-size: 15px;
}

/* --------------- partners --------------- */
.partners {
  position: relative;
  background-color: rgba(9, 86, 166, 0.062745098);
  padding: 75px 0;
}
.partners .partners_slider {
  position: relative;
  overflow: hidden;
}
.partners .partners_slider .swiper-slide-active .item .bg {
  opacity: 0.15;
}
.partners .arrows {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.partners .arrows .swiper-button-next,
.partners .arrows .swiper-button-prev {
  position: static;
  margin: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--mainColor);
  transition: all 0.3s ease;
}
.partners .arrows .swiper-button-next::after,
.partners .arrows .swiper-button-prev::after {
  font-size: 14px;
  color: var(--mainColor);
}
.partners .arrows .swiper-button-next:hover,
.partners .arrows .swiper-button-prev:hover {
  background-color: var(--mainColor);
}
.partners .arrows .swiper-button-next:hover::after,
.partners .arrows .swiper-button-prev:hover::after {
  color: #fff;
}
.partners .butn {
  font-weight: 400;
  text-transform: capitalize;
  padding: 10px 40px;
  background-color: transparent;
  border: 1px solid var(--mainColor);
  margin: 0 10px;
}
.partners .butn * {
  color: var(--mainColor);
}
.partners .butn:hover {
  background-color: var(--mainColor);
}
.partners .butn:hover * {
  color: #fff;
}
.partners .item {
  display: block;
  position: relative;
  padding: 25px;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #000;
}
.partners .item:hover .bg {
  opacity: 0.15;
}
.partners .item .cont {
  position: relative;
  z-index: 20;
}
.partners .item h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.partners .item p {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.partners .item .more {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--mainColor);
  margin-top: 20px;
}
.partners .item .logo {
  height: 50px;
  margin-bottom: 20px;
  display: flex;
}
.partners .item .logo img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 35%;
  margin-inline-end: 15px;
}
.partners .item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  opacity: 0;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  padding: 80px 0;
  background-color: var(--mainColor);
  color: #fff;
}
.footer .container {
  position: relative;
  z-index: 20;
}
.footer .foot_shap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.footer .foot_info .foot_logo {
  height: 50px;
  margin-bottom: 30px;
}
.footer .foot_info .text {
  font-size: 20px;
  opacity: 0.7;
}
.footer .foot_title {
  position: relative;
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 25px;
}
.footer .foot_title span {
  color: var(--subColor);
  font-weight: 400;
}
.footer .foot_title .icon {
  position: absolute;
  height: 20px;
  top: -10px;
  left: -30px;
}
.footer .information_group .item {
  display: flex;
  align-items: center;
  margin: 10px 0 30px;
}
.footer .information_group .item .icon {
  color: var(--subColor);
  margin-inline-end: 15px;
  flex-shrink: 0;
  font-size: 18px;
  margin-inline-end: 15px;
}
.footer .information_group .item p {
  font-size: 15px;
}
.footer .links a {
  position: relative;
  font-size: 15px;
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
}
.footer .links a i {
  color: var(--subColor);
  margin-inline-end: 10px;
}
.footer .social-links {
  position: relative;
  margin-bottom: 20px;
  margin-top: 50px;
}
.footer .social-links a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-inline-end: 10px;
}
.footer .social-links a:hover {
  background-color: var(--subColor);
}
.footer .foot_subscribe .form {
  padding: 40px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.0666666667);
}
.footer .foot_subscribe .form .form-group {
  display: flex;
  align-items: center;
}
.footer .foot_subscribe .form .form-group .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  padding: 15px 0;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
}
.footer .foot_subscribe .form .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer .foot_subscribe .form .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer .foot_subscribe .form .form-group button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background-color: #fff;
  font-size: 20px;
  color: var(--mainColor);
  margin-inline-start: 15px;
  flex-shrink: 0;
}
.footer .foot {
  position: relative;
  padding: 50px 0;
}

/* --------------- our-philosophy --------------- */
.our-philosophy {
  position: relative;
  padding-top: 100px;
  z-index: 20;
}
.our-philosophy::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-color: rgba(9, 86, 166, 0.062745098);
  z-index: -1;
  -webkit-clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
}
.our-philosophy .main_text {
  font-size: 23px;
  text-align: center;
}
.our-philosophy .main_img {
  position: relative;
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}

/* --------------- philosophy-cards --------------- */
.philosophy-cards {
  position: relative;
  padding: 100px 0;
  background-color: rgba(9, 86, 166, 0.062745098);
}
.philosophy-cards .cards .item {
  position: relative;
  padding: 40px;
  background-color: #fff;
  border-radius: 15px;
  padding-inline-start: 120px;
  margin-bottom: 24px;
  height: calc(100% - 24px);
  cursor: pointer;
  transition: all 0.3s ease;
}
.philosophy-cards .cards .item::after {
  position: absolute;
  content: "";
  left: 85px;
  top: 50px;
  height: calc(100% - 100px);
  width: 1px;
  background-color: rgba(153, 153, 153, 0.2);
}
.philosophy-cards .cards .item::before {
  position: absolute;
  content: "";
  left: 85px;
  top: 50%;
  height: 0;
  width: 1px;
  background-color: var(--mainColor);
  transition: all 0.5s ease;
}
.philosophy-cards .cards .item .icon {
  height: 60px;
  margin-inline-end: 25px;
  flex-shrink: 0;
  margin-top: 10px;
  margin-bottom: 30px;
}
.philosophy-cards .cards .item h5 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 25px;
  width: 95px;
  text-align: center;
  white-space: nowrap;
  display: flex;
  justify-content: center;
}
.philosophy-cards .cards .item .text {
  font-size: 20px;
}
.philosophy-cards .cards .item .list h6 {
  position: relative;
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
  text-transform: capitalize;
}
.philosophy-cards .cards .item:hover {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1333333333);
}
.philosophy-cards .cards .item:hover::before {
  top: 50px;
  height: calc(100% - 100px);
}

/* --------------- success-stories --------------- */
.success-stories {
  position: relative;
}
.success-stories .success-content {
  position: relative;
  padding: 100px 0;
}
.success-stories .stories-slider {
  position: relative;
  overflow: hidden;
}
.success-stories .stories-slider .arrows {
  position: absolute;
  left: calc((100vw - 1320px) / 2);
  bottom: 30px;
  z-index: 30;
  display: flex;
}
.success-stories .stories-slider .arrows .swiper-button-next, .success-stories .stories-slider .arrows .swiper-button-prev {
  position: relative;
  margin: 0 20px;
  position: static;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  border: 0;
  background-color: rgba(9, 86, 166, 0.062745098);
  transition: all 0.3s ease;
}
.success-stories .stories-slider .arrows .swiper-button-next::after, .success-stories .stories-slider .arrows .swiper-button-prev::after {
  font-size: 20px;
}
.success-stories .stories-slider .arrows .swiper-button-next:hover, .success-stories .stories-slider .arrows .swiper-button-prev:hover {
  background-color: #0956a6;
}
.success-stories .story-card {
  position: relative;
}
.success-stories .story-card .logo {
  margin-bottom: 15px;
}
.success-stories .story-card .logo img {
  height: 80px;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}
.success-stories .story-card h4 {
  font-size: 25px;
  margin-bottom: 20px;
}
.success-stories .story-card .main_text {
  font-size: 21px;
  color: #666;
  line-height: 2.2;
}
.success-stories .story-card .images {
  position: relative;
  margin-top: 50px;
  width: 100%;
}
.success-stories .story-card .images .imgs {
  background-image: linear-gradient(to right, rgba(9, 86, 166, 0.062745098), transparent);
  padding: 30px;
  border-radius: 15px 0 0 15px;
  display: flex;
  justify-content: flex-end;
}
.success-stories .story-card .images .imgs .img {
  position: relative;
  width: 30%;
  height: 250px;
  margin: 0 15px;
}
.success-stories .story-card .images .imgs .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.success-stories .story-card .images .imgs .img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: var(--mainColor);
  color: #fff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.success-stories .story-card .numb {
  position: relative;
  font-size: 200px;
  color: rgba(9, 86, 166, 0.1882352941);
  font-weight: bolder;
}
.success-stories .story-card .rotate-box {
  position: relative;
  width: 220px;
  height: 220px;
  display: block;
  margin-top: 40px;
  margin-inline-start: auto;
  margin-inline-end: -135px;
}
.success-stories .story-card .rotate-box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0666666667);
}
.success-stories .story-card .rotate-box .rotate-text {
  animation: rotateText 20s linear infinite;
  font-weight: 300;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  border-radius: 50%;
  color: #151515;
  font-size: 30px;
}
.success-stories .story-card .rotate-box .rotate-circle svg {
  width: 220px;
  height: 220px;
  fill: #000;
  transform: scale(1);
}
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.success-stories .story-card .text-content {
  position: relative;
  height: 300px;
  overflow-x: hidden;
  padding-inline-end: 30px;
}
.success-stories .story-card .text-content::-webkit-scrollbar {
  height: 10px;
  width: 7px;
  background: #F0F4F9;
  border-radius: 10px;
}
.success-stories .story-card .text-content::-webkit-scrollbar-thumb {
  background: rgba(9, 86, 166, 0.1882352941);
  border-radius: 10px;
}
.success-stories .story-card .text-content::-webkit-scrollbar-corner {
  background: #F0F4F9;
  border-radius: 10px;
}

.fancybox-content {
  height: 80vh !important;
}

/* --------------- innerheader-img --------------- */
.innerheader-img {
  position: relative;
  padding: 0 35px;
}
.innerheader-img .content {
  position: relative;
  z-index: 20;
  background-image: url(../images/hero.png);
  background-size: cover;
  background-position: center;
  height: 300px;
  min-height: -moz-max-content;
  min-height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
  text-transform: uppercase;
}
.innerheader-img .content::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: -1;
}
.innerheader-img .content h3 {
  font-size: 45px;
}

/* --------------- contact page --------------- */
.contact-pg-contact {
  position: relative;
  padding: 100px 0;
}
.contact-pg-contact .info .title {
  position: relative;
  margin-bottom: 40px;
}
.contact-pg-contact .info .title h6 {
  font-size: 20px;
  color: var(--mainColor);
  margin-bottom: 20px;
}
.contact-pg-contact .info .title h2 {
  font-size: 45px;
  text-wrap: balance;
  line-height: 1.2;
}
.contact-pg-contact .info .title .text {
  font-size: 17px;
  color: #777;
  margin-top: 15px;
}
.contact-pg-contact .info .social-icons {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.contact-pg-contact .info .social-icons a {
  font-size: 16px;
  margin-inline-end: 20px;
}
.contact-pg-contact .info .social-icons a:hover {
  color: var(--mainColor);
}
.contact-pg-contact .info .contact-info-slider {
  position: relative;
  overflow: hidden;
}
.contact-pg-contact .info .contact-info-slider .arrows {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 30;
  display: flex;
}
.contact-pg-contact .info .contact-info-slider .arrows .swiper-button-next, .contact-pg-contact .info .contact-info-slider .arrows .swiper-button-prev {
  position: relative;
  margin: 0 5px;
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  background-color: rgba(9, 86, 166, 0.062745098);
  transition: all 0.3s ease;
}
.contact-pg-contact .info .contact-info-slider .arrows .swiper-button-next::after, .contact-pg-contact .info .contact-info-slider .arrows .swiper-button-prev::after {
  font-size: 14px;
}
.contact-pg-contact .info .contact-info-slider .arrows .swiper-button-next:hover, .contact-pg-contact .info .contact-info-slider .arrows .swiper-button-prev:hover {
  background-color: #0956a6;
}
.contact-pg-contact .info .contact-info {
  position: relative;
  padding: 10px 30px;
  background-color: #F0F4F9;
  border-radius: 15px;
}
.contact-pg-contact .info .contact-info .item {
  position: relative;
  font-size: 16px;
  margin: 20px 0;
  display: block;
}
.contact-pg-contact .info .contact-info .item i {
  color: var(--mainColor);
  width: 30px;
}
.contact-pg-contact .contact-form {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 15px;
  height: 100%;
}
.contact-pg-contact .contact-form .form-group {
  position: relative;
  margin-top: 30px;
}
.contact-pg-contact .contact-form .form-group label {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.contact-pg-contact .contact-form .form-group .form-control {
  position: relative;
  border: 0;
  background-color: #F0F4F9;
  border-radius: 10px;
  min-height: 50px;
}
.contact-pg-contact .contact-form h4 {
  color: var(--mainColor);
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  margin-bottom: 30px;
}

.contact-map {
  position: relative;
  height: 390px;
  border-radius: 15px;
  overflow: hidden;
}
.contact-map .map {
  position: relative;
  margin-bottom: -6px;
}

/* --------------- history page --------------- */
.history-pg-slider {
  position: relative;
  z-index: 20;
}
.history-pg-slider .banner {
  position: relative;
  padding: 100px 0 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #F0F4F9;
}
.history-pg-slider .banner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--mainColor), transparent);
}
.history-pg-slider .banner .bg {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.history-pg-slider .banner .banner-img {
  position: relative;
  width: 100%;
  z-index: 20;
  color: #fff;
}
.history-pg-slider .banner .banner-img .tag {
  position: relative;
  padding: 10px 40px;
  border-radius: 50px;
  background-color: #fff;
  color: #0956a6;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
.history-pg-slider .banner .banner-img h2 {
  font-size: 50px;
}
.history-pg-slider .banner .text-date {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3333333333);
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.history-pg-slider .banner .text-date .date {
  width: 33%;
  font-size: 18px;
}
.history-pg-slider .info-content {
  position: relative;
  margin-top: -100px;
  background-color: #fff;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0666666667);
  border-radius: 15px;
  padding: 50px;
  z-index: 20;
}
.history-pg-slider .info-content .main-text {
  display: block;
  font-size: 18px;
  line-height: 2.2;
  text-align: center;
}

/* --------------- history-pg-more --------------- */
.history-pg-more {
  position: relative;
  padding: 120px 0;
}
.history-pg-more .fav {
  position: absolute;
  right: 0;
  top: 50px;
  width: 20%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
  filter: blur(10px);
}
.history-pg-more .shap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: -1;
}
.history-pg-more .slider-content {
  position: relative;
}
.history-pg-more .slider-content .swiper-button-next, .history-pg-more .slider-content .swiper-rtl .swiper-button-prev {
  right: -70px;
}
.history-pg-more .slider-content .swiper-button-prev, .history-pg-more .slider-content .swiper-rtl .swiper-button-next {
  left: -70px;
}
.history-pg-more .history-slider {
  position: relative;
  overflow: hidden;
}
.history-pg-more .history-slider .item {
  position: relative;
  margin-top: 30px;
  display: block;
}
.history-pg-more .history-slider .item .img {
  position: relative;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}
.history-pg-more .history-slider .item .img img {
  transition: all 2s ease;
}
.history-pg-more .history-slider .item .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8470588235));
}
.history-pg-more .history-slider .item .info {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid var(--subColor);
  border-radius: 20px;
  color: #fff;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.3s ease;
}
.history-pg-more .history-slider .item .info .text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.history-pg-more .history-slider .item .card-title {
  font-size: 20px;
}
.history-pg-more .history-slider .item .date {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 30px;
  background-color: var(--subColor);
  color: #000;
  border-radius: 20px 0 20px 0;
  z-index: 20;
  font-size: 12px;
}
.history-pg-more .history-slider .item .butn {
  background-color: #fff;
}
.history-pg-more .history-slider .item .butn * {
  color: var(--mainColor);
}
.history-pg-more .history-slider .item:hover .img img {
  transform: scale(1.2);
}
.history-pg-more .history-slider .item:hover .info {
  background-color: rgba(255, 255, 255, 0.1333333333);
}

/* --------------- family page --------------- */
.family-pg .navbar {
  background-color: rgba(180, 174, 116, 0.3333333333);
  border-bottom: 1px solid rgba(180, 174, 116, 0.5333333333);
}

.family-pg-header {
  position: relative;
  padding: 50px;
  background-image: linear-gradient(to bottom, rgba(180, 174, 116, 0.3333333333), transparent);
}
.family-pg-header .slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 600px;
}
.family-pg-header .slider .img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
}
.family-pg-header .title-1 {
  position: absolute;
  left: 0;
  top: 50px;
  transform: rotate(-90deg) translate(-50%, -50%);
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bolder;
  color: transparent;
  background-image: linear-gradient(290deg, var(--subColor) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.family-pg-header .title-2 {
  position: absolute;
  right: 0;
  bottom: 50px;
  transform: rotate(-90deg) translate(50%, 0);
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bolder;
  color: transparent;
  background-image: linear-gradient(290deg, transparent 0%, var(--subColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.family-pg-header .swiper-button-next, .family-pg-header .swiper-rtl .swiper-button-prev {
  right: 60px;
  left: auto;
  top: 75px;
  transform: rotate(-90deg);
  border-color: var(--subColor);
}
.family-pg-header .swiper-button-next::after, .family-pg-header .swiper-rtl .swiper-button-prev::after {
  color: var(--subColor);
}
.family-pg-header .swiper-button-prev, .family-pg-header .swiper-rtl .swiper-button-next {
  left: 60px;
  right: auto;
  bottom: 55px;
  top: auto;
  transform: rotate(-90deg);
  border-color: var(--subColor);
}
.family-pg-header .swiper-button-prev::after, .family-pg-header .swiper-rtl .swiper-button-next::after {
  color: var(--subColor);
}

.family-pg-info {
  position: relative;
  padding: 50px;
}
.family-pg-info .main-title {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--subColor);
  margin-bottom: 30px;
}
.family-pg-info .main-title h2 {
  font-size: 50px;
}
.family-pg-info .main-title .site-link {
  font-size: 16px;
  color: var(--mainColor);
  font-size: 18px;
}
.family-pg-info .logo img {
  height: 80px;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 30px;
}
.family-pg-info .info .text {
  font-size: 18px;
  margin-top: 20px;
  color: #666;
}
.family-pg-info .services-list {
  position: relative;
  padding-top: 30px;
}
.family-pg-info .services-list h4 {
  position: relative;
  padding-inline-start: 50px;
}
.family-pg-info .services-list h4::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--mainColor);
}
.family-pg-info .services-list ul {
  display: flex;
  flex-wrap: wrap;
}
.family-pg-info .services-list ul li {
  font-size: 16px;
  margin-top: 30px;
  display: flex;
  width: 50%;
}
.family-pg-info .services-list ul li .num {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 15px;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: -2px;
}

/* --------------- sector-pg-main --------------- */
.sector-pg-main {
  position: relative;
  padding: 80px 0;
}
.sector-pg-main .sector-card {
  padding: 30px 0;
}
.sector-pg-main .sector-card:nth-of-type(even) .row {
  flex-direction: row-reverse;
}
.sector-pg-main .img-slider {
  position: relative;
  overflow: hidden;
}
.sector-pg-main .img-slider .img {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
.sector-pg-main .img-slider .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sector-pg-main .img-slider .swiper-button-prev,
.sector-pg-main .img-slider .swiper-button-next {
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}
.sector-pg-main .img-slider:hover .swiper-button-prev,
.sector-pg-main .img-slider:hover .swiper-button-next {
  opacity: 1;
}
.sector-pg-main .info h6 {
  font-size: 14px;
  color: var(--mainColor);
  margin-bottom: 10px;
}
.sector-pg-main .info h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.sector-pg-main .info .text {
  font-size: 18px;
  margin-top: 20px;
}
.sector-pg-main .info .logos {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(153, 153, 153, 0.6);
  margin-top: 30px;
}
.sector-pg-main .info .logos img {
  height: 80px;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 30px;
}

/* --------------- sector-pg-features --------------- */
.sector-pg-features {
  position: relative;
  padding: 120px 0;
  background-color: #EFF4F9;
}
.sector-pg-features .cards {
  position: relative;
}
.sector-pg-features .cards .feat-card {
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  z-index: 20;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sector-pg-features .cards .feat-card .icon {
  height: 50px;
  margin-bottom: 20px;
}
.sector-pg-features .cards .feat-card:hover {
  border: 1px solid var(--subColor);
  background-color: rgba(180, 174, 116, 0.0666666667);
}
.sector-pg-features .another-sectors {
  position: relative;
  margin-top: 150px;
  padding: 100px 50px;
  background-image: linear-gradient(to bottom, #fff, transparent);
  border-radius: 30px;
}
.sector-pg-features .another-sectors .sec-card {
  position: relative;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0196078431);
  margin-top: 15px;
  display: flex;
  align-items: center;
  color: #000;
  z-index: 20;
  overflow: hidden;
  border: 1px solid transparent;
}
.sector-pg-features .another-sectors .sec-card .icon {
  position: relative;
  height: 50px;
  width: 50px;
  margin-inline-end: 30px;
  flex-shrink: 0;
  filter: invert(71%) sepia(29%) saturate(415%) hue-rotate(17deg) brightness(91%) contrast(92%);
}
.sector-pg-features .another-sectors .sec-card .arrow {
  margin-inline-start: auto;
}
.sector-pg-features .another-sectors .sec-card .icon-pat {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-80px, -80px);
  width: 250px;
  height: 250px;
  z-index: -1;
  opacity: 0.5;
  max-width: none;
  max-height: none;
}
.sector-pg-features .another-sectors .sec-card:hover {
  border-color: var(--mainColor);
}

/* --------------- content-pg-details --------------- */
.content-pg-details {
  position: relative;
  padding: 100px 0 150px;
}
.content-pg-details .text {
  font-size: 20px;
  margin-top: 15px;
  color: #777;
}

/* --------------- timeline-pg-timeline --------------- */
.timeline-pg-timeline {
  position: relative;
  padding: 120px 0;
  background-color: #fff;
}
.timeline-pg-timeline::after {
  position: absolute;
  content: "";
  top: 0;
  left: calc(50% - 10px);
  width: 20px;
  height: 100%;
  background-color: #F0F4F9;
}
.timeline-pg-timeline .cards {
  position: relative;
  margin-top: -110px;
}
.timeline-pg-timeline .cards .timeline-card:nth-of-type(odd) .row {
  justify-content: end;
}
.timeline-pg-timeline .cards .timeline-card:nth-of-type(even)::after {
  left: auto;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.timeline-pg-timeline .cards .timeline-card:nth-of-type(even) .row .item {
  flex-direction: row-reverse;
}
.timeline-pg-timeline .cards .timeline-card:nth-of-type(even) .row .item .year-cir {
  margin-inline-start: 0;
  margin-inline-end: -80px;
}
.timeline-pg-timeline .cards .timeline-card:nth-of-type(even) .row .item .cont {
  margin-inline-start: 0;
  margin-inline-end: 50px;
}
.timeline-pg-timeline .timeline-card {
  position: relative;
  margin-bottom: 100px;
  z-index: 20;
}
.timeline-pg-timeline .timeline-card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  height: 200px;
  background-color: #F0F4F9;
  z-index: -1;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.timeline-pg-timeline .timeline-card .item {
  position: relative;
  display: flex;
}
.timeline-pg-timeline .timeline-card .item .year-cir {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #F0F4F9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-inline-start: -80px;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: bold;
  color: var(--mainColor);
  letter-spacing: 2px;
  z-index: 20;
}
.timeline-pg-timeline .timeline-card .item .year-cir span {
  display: block;
  text-align: center;
}
.timeline-pg-timeline .timeline-card .item .year-cir span.icon {
  margin: 7px 0;
  font-size: 12px;
}
.timeline-pg-timeline .timeline-card .item .cont {
  position: relative;
  margin-inline-start: 50px;
  padding-top: 40px;
  width: 100%;
}
.timeline-pg-timeline .timeline-card .item .cont .title {
  position: relative;
  font-size: 21px;
  color: var(--mainColor);
  margin-bottom: 25px;
}
.timeline-pg-timeline .timeline-card .item .cont .img {
  position: relative;
  height: 160px;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}
.timeline-pg-timeline .timeline-card .item .cont .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.timeline-pg-timeline .timeline-card .item .cont .text {
  margin-top: 15px;
  color: #777;
}
.timeline-pg-timeline .timeline-card .item .cont .info-card {
  position: relative;
  padding: 30px 20px;
  border-radius: 15px;
  background-color: #F0F4F9;
}

/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    margin-top: 30px;
  }
  .header-slider {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
  .header-slider .swiper-slide .img {
    height: 250px;
    margin-bottom: 30px;
  }
  .success .row .col-lg-4:first-of-type .imgs .img:first-of-type {
    margin-inline-start: 0;
    width: 100%;
  }
  .success .row .col-lg-4:last-of-type .imgs .img:first-of-type {
    display: none;
  }
  .timeline .line {
    display: none;
  }
  .timeline .cards {
    margin-top: 0;
  }
  .timeline .timeline_slider {
    padding-bottom: 0;
  }
  .about .content .main_text {
    font-size: 20px;
  }
  .section_head {
    margin-inline-start: 30px;
  }
  .section_head h2 {
    font-size: 25px;
  }
  .success .success-card .info {
    margin: 50px 0;
  }
  .success .row .col-lg-4:first-of-type .imgs .img:last-of-type,
  .success .row .col-lg-4:last-of-type .imgs .img:last-of-type {
    display: none;
  }
  .footer .foot_title {
    margin-inline-start: 30px;
  }
  .footer .foot_subscribe .form {
    margin-top: 30px;
  }
  .success-stories .story-card .rotate-box {
    display: none;
  }
  .success-stories .story-card .images .imgs img {
    width: 25%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 5px;
    flex-grow: 1;
  }
  .success-stories .story-card h3 {
    font-size: 15px;
  }
  .history-pg-more .slider-content {
    position: relative;
  }
  .history-pg-more .slider-content .swiper-button-next, .history-pg-more .slider-content .swiper-rtl .swiper-button-prev {
    right: 0;
  }
  .history-pg-more .slider-content .swiper-button-prev, .history-pg-more .slider-content .swiper-rtl .swiper-button-next {
    left: 0;
  }
  .family-pg-info .services-list ul li {
    width: 100%;
  }
  .timeline-pg-timeline .cards {
    margin-top: 60px;
  }
  .timeline-pg-timeline .cards .timeline-card .item {
    display: block;
  }
  .timeline-pg-timeline .cards .timeline-card .item .year-cir {
    display: flex;
    margin: 0 auto !important;
  }
  .timeline-pg-timeline .cards .timeline-card .item .cont {
    margin-inline-start: 0;
  }
}
/* ======= */
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 */