.primary {
  color: #193661 !important;
}

.secondary {
  color: #29abe2 !important;
}

.bg_primary {
  color: #193661 !important;
}

.bg_secondary {
  color: #29abe2 !important;
}

.black {
  color: #252a2f !important;
}

.white {
  color: #fff !important;
}

.comm_para {
  font-size: 16px;
  line-height: 26px;
  color: #6a6a6a;
  font-weight: 400;
  font-family: "Roboto";
}

.btn_primary {
  border-radius: 20px;
  background-color: #193661;
  text-transform: uppercase;
}

.btn_secondary {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #29abe2;
}

.common_bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*----------------------------------------*/
/*        Header  CSS
/*----------------------------------------*/
.header-section {
  position: relative;
  left: 0;
  top: 0;
  background: #fff;
  width: 100%;
  z-index: 999;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo a img {
  width: 150px;
}

.header-menu .main-menu {
  display: flex;
}
.header-menu .main-menu li {
  position: relative;
  padding: 6px 13px;
}
.header-menu .main-menu li:last-child:hover a {
  color: #fff;
}
.header-menu .main-menu li:last-child a {
  color: #fff;
  border-radius: 20px;
  background-color: #193661;
  text-transform: uppercase;
  padding: 6px 22px;
  margin-left: 30px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.header-menu .main-menu li:last-child a:hover {
  background-color: #29abe2;
  color: #fff;
}
.header-menu .main-menu li a {
  font-size: 15px;
  text-transform: uppercase;
  color: #252a2f;
  font-weight: 700;
  font-family: "Roboto";
}
.header-menu .main-menu li .menu-icon::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #94a0b9;
  margin-left: 5px;
  transition: all 0.3s linear;
}
.header-menu .main-menu li:hover > .menu-icon::after {
  color: #29abe2;
}
.header-menu .main-menu li:hover > a {
  color: #29abe2;
}
.header-menu .main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-menu .main-menu li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  width: 230px;
  background: #fff;
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  padding: 0 0;
  border-radius: 5px;
  border-top: 3px solid #086ad8;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  transition: all 0.3s linear;
}
.header-menu .main-menu li .sub-menu li {
  padding: 0;
  border-bottom: 1px solid;
}
.header-menu .main-menu li .sub-menu li:last-child a {
  color: #252a2f;
  border-bottom: 0;
  background-color: #fff;
  margin-left: 0;
}
.header-menu .main-menu li .sub-menu li a {
  padding: 5px 25px;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  position: relative;
  z-index: 1;
}
.header-menu .main-menu li .sub-menu li:hover > a {
  color: #086ad8;
}
.header-menu .main-menu li .sub-menu li.active > a {
  color: #086ad8;
}
.header-menu .main-menu li.active-menu > a {
  color: #29abe2;
}
.header-menu .main-menu li.active-menu > .menu-icon::after {
  color: #29abe2;
}

.header-meta {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.header-search {
  margin-left: 25px;
  padding-left: 15px;
  position: relative;
}
.header-search::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ebebeb;
  width: 1px;
  height: 30px;
}
.header-search .search-btn {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  color: #333333;
  transition: all 0.3s linear;
}
.header-search .search-btn:hover {
  color: #086ad8;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
  background: rgba(0, 0, 0, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-inner .search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s linear;
}
.search-wrap .search-inner .search-close:hover {
  transform: rotate(90deg);
  color: #086ad8;
}
.search-wrap .search-inner .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-inner .search-cell .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #fff;
  font-weight: 400;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #fff;
  font-weight: 400;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #fff;
  font-weight: 400;
}
.search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
  opacity: 0.95;
  font-size: 25px;
  color: #fff;
  font-weight: 400;
}

.header-btn {
  margin-left: 25px;
}
.header-btn .btn {
  height: 45px;
  line-height: 45px;
  padding: 0 45px;
}

.header-toggle {
  margin-left: 30px;
}
.header-toggle button {
  background: none;
  border: 0;
  padding: 0;
}
.header-toggle button span {
  width: 25px;
  height: 2px;
  background: #086ad8;
  margin: 5px 0;
  display: block;
}
.header-toggle button span:last-child {
  margin-bottom: 0;
}

.header-section-05 .header-social {
  position: relative;
  padding-right: 25px;
  margin-right: 20px;
}
.header-section-05 .header-social::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ebebeb;
  width: 1px;
  height: 30px;
}
.header-section-05 .header-social ul li {
  display: inline-block;
}
.header-section-05 .header-social ul li + li {
  margin-left: 10px;
}
.header-section-05 .header-social ul li a {
  font-size: 15px;
  display: block;
  color: #565656;
}
.header-section-05 .header-social ul li a:hover {
  color: #086ad8;
}
.header-section-05 .header-search {
  padding-left: 0;
}
.header-section-05 .header-search::before {
  display: none;
}

.header-top-section {
  background: #030213;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-top-wrapper .header-top-info ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  position: relative;
}
.header-top-wrapper .header-top-info ul li i {
  font-size: 20px;
  color: #11ddf5;
  position: relative;
  top: 1px;
  margin-right: 7px;
}
.header-top-wrapper .header-top-info ul li + li {
  padding-left: 30px;
  margin-left: 25px;
}
.header-top-wrapper .header-top-info ul li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: #353542;
  width: 1px;
  height: 45px;
  transform: translateY(-46%);
}
.header-top-wrapper .header-social {
  display: flex;
  align-items: center;
}
.header-top-wrapper .header-social span {
  font-size: 14px;
  color: #11ddf5;
  display: inline-block;
  margin-right: 20px;
}
.header-top-wrapper .header-social ul li {
  display: inline-block;
}
.header-top-wrapper .header-social ul li + li {
  margin-left: 10px;
}
.header-top-wrapper .header-social ul li a {
  display: inline-block;
  font-size: 14px;
  color: #8c8c8c;
}
.header-top-wrapper .header-social ul li a:hover {
  color: #11ddf5;
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation: sticky 1s;
  animation: sticky 1s;
}

.offcanvas {
  background: #252a2f;
  width: 320px;
}
.offcanvas .offcanvas-menu .main-menu li:last-child {
  border-radius: 0;
  background-color: transparent;
}

.offcanvas-header .close-btn {
  background: none;
  border: 0;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s linear;
}
.offcanvas-header .close-btn:hover {
  transform: rotate(90deg);
  color: #086ad8;
}

.offcanvas-logo a img {
  width: 130px;
}

.offcanvas-menu {
  padding: 30px 0;
}
.offcanvas-menu .main-menu li {
  position: relative;
  text-transform: uppercase;
}
.offcanvas-menu .main-menu li:last-child {
  border-radius: 20px;
  background-color: #193661;
  text-transform: uppercase;
}
.offcanvas-menu .main-menu li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Raleway";
  color: #fff;
  padding: 5px 0px;
  position: relative;
}
.offcanvas-menu .main-menu li .menu-expand {
  position: absolute;
  right: 20px;
  top: 14px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.offcanvas-menu .main-menu li .menu-expand::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
}
.offcanvas-menu .main-menu li .menu-expand::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 16px;
  left: 50%;
  top: 50%;
  bottom: 0;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
}
.offcanvas-menu .main-menu li:hover > a {
  color: #086ad8;
}
.offcanvas-menu .main-menu li ul {
  padding-left: 6%;
  display: none;
}
.offcanvas-menu .main-menu li.active > .menu-expand::after {
  height: 0;
}

@media only screen and (max-width: 991px) {
  .header-section {
    padding: 15px 0;
  }
  .search-wrap .search-inner .search-cell .search-field-holder {
    width: 60%;
  }
  .dropdown-cart {
    top: 56px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo a img {
    width: 130px;
  }
  .header-menu .main-menu li {
    padding: 30px 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
    padding: 0 35px;
    font-size: 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
    font-size: 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
    font-size: 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
    font-size: 20px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .search-wrap .search-inner .search-cell .search-field-holder {
    width: 80%;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
    font-size: 14px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
    font-size: 14px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
    font-size: 14px;
  }
  .offcanvas {
    width: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
    font-size: 16px;
    padding: 0 15px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
    font-size: 16px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
    font-size: 16px;
  }
  .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1399px) {
  .dropdown-cart {
    left: 0 !important;
    transform: translateX(-85%) !important;
  }
}
@media only screen and (max-width: 449px) {
  .dropdown-cart {
    left: 0 !important;
    transform: translateX(-72%) !important;
  }
}
/*----------------------------------------*/
/*               Hero CSS
/*----------------------------------------*/
.hero {
  position: relative;
  height: 710px;
  overflow: hidden;
}
.hero .slider_inner {
  position: relative;
}
.hero .slider_inner .bnr_img {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 683px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
  position: relative;
}
.hero .slider_inner .bnr_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  left: 0;
}
.hero .slider_inner .bg_bnr {
  background-color: #29abe2;
  width: 100%;
  height: calc(100% + 23px);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 87%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 87%, 0% 100%);
}
.hero .slider_inner .banner_content {
  position: absolute;
  top: calc(50% + 130px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.hero .slider_inner .banner_content h1 {
  font-size: 55px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  font-family: "Raleway";
}
.hero .slider_inner .banner_content h1 span {
  font-weight: 800 !important;
  background-color: #29abe2;
  padding: 0 5px;
}
.hero .slider_inner .banner_content h6 {
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-family: "Raleway";
}
.hero .slider_inner .banner_content p {
  font-size: 17px;
  line-height: 25px;
  color: #d6d6d6;
  font-weight: 400;
  font-family: "Roboto";
}
.hero .slider_inner .banner_content button {
  width: 190px;
  height: 62px;
  border-radius: 31px;
  background-color: rgba(41, 171, 226, 0);
  border: 2px solid #29abe2;
  color: #fff;
}
.hero .slider_inner .banner_content button:hover {
  background-color: #29abe2;
}
.hero .mouse {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border-radius: 39px;
  filter: drop-shadow(5.142px 6.128px 13px rgba(0, 31, 44, 0.08));
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*----------------------------------------*/
/*           Hero CSS
/*----------------------------------------*/
h2 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Raleway";
  text-align: center;
}
h2 span {
  color: #29abe2;
}

.about {
  padding-top: 40px;
}
.about p {
  font-size: 16px;
  line-height: 26px;
  color: #6a6a6a;
  font-weight: 400;
  font-family: "Roboto";
  padding: 20px 8% 40px 8%;
  text-align: center;
}
.about .ani_bot {
  border-bottom: 1px solid #e3e3e3;
  position: relative;
  width: 65%;
  margin: auto;
}
.about .ani_bot span {
  width: 32px;
  height: 32px;
  display: block;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: -15px;
}
.about .ani_bot span img {
  position: absolute;
}

.product {
  padding: 50px 0;
}
.product h5 {
  font-size: 20px;
  color: #6a6a6a;
  font-weight: 500;
  font-family: "Raleway";
  text-align: center;
}
.product .nav-tabs {
  border: 0 !important;
}
.product .nav-tabs li {
  width: 25%;
}
.product .nav-tabs li button {
  padding: 0 !important;
  border: none !important;
}
.product .nav-tabs li button:hover {
  border: none !important;
}
.product .nav-tabs li button.active {
  padding-bottom: 60px !important;
  border-bottom: 4px solid #29abe2 !important;
}
.product .nav-tabs li button.active .flip-card {
  background-color: #29abe2;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.product .nav-tabs li button.active .flip-card:hover {
  background-color: #fff;
}
.product .nav-tabs li button.active .flip-card .img_box {
  border: 6px solid rgba(41, 171, 226, 0.7215686275) !important;
}
.product .nav-tabs li button .flip-card .flip-card-front {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .nav-tabs li button .flip-card .flip-card-front .img_box {
  border-radius: 100%;
  filter: drop-shadow(1.928px 2.298px 10px rgba(1, 37, 52, 0.09));
  background-color: #fff;
  padding: 30px;
  border: 6px solid rgba(80, 79, 79, 0.1215686275);
}
.product .nav-tabs li button .flip-card .flip-card-front .img_box img {
  width: 58px;
  aspect-ratio: 1;
}
.product .nav-tabs li button .flip-card .flip-card-front span {
  width: 95px;
  height: 32px;
  border-radius: 16px;
  background-color: #193661;
  color: #fff !important;
  font-size: 20px;
  color: #252a2f;
  font-weight: 800;
  font-family: "Raleway";
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
}
.product .nav-tabs li button .flip-card .flip-card-back span {
  font-size: 14px;
}
.product .tab-content {
  background-color: #eef8fc;
  padding: 43px 50px;
}
.product .tab-content .map_box {
  padding-left: 3%;
  padding-right: 3%;
}
.product .tab-content .map_box h4 {
  font-size: 30px;
  text-transform: uppercase;
  color: #252a2f;
  font-weight: 800;
  font-family: "Raleway";
  margin-bottom: 20px;
}
.product .tab-content .ri_box {
  padding-top: 30px;
  padding-left: 28px;
  padding-right: 28px;
}
.product .tab-content .ri_box .col-sm-6 {
  padding-bottom: 20px;
}
.product .tab-content .ri_box .logo_box {
  width: 71px;
  height: 71px;
  background-color: #29abe2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .tab-content .ri_box h4 {
  padding-top: 20px;
  font-size: 20px;
  color: #252a2f;
  font-weight: 800;
  font-family: "Raleway";
}
.product .tab-content .ri_box p {
  font-size: 16px;
  line-height: 26px;
  color: #6a6a6a;
  font-weight: 400;
  font-family: "Roboto";
}
.product .tab-content .ri_box button {
  padding: 12px 0;
  width: 100%;
}

.project {
  position: relative;
}
.project .p_con {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.project .p_con .con_bx {
  padding-right: 42px;
  width: 50%;
  padding-top: 20px;
}
.project .p_con .con_bx h2 {
  text-align: start;
  margin-bottom: 25px;
}

.solution {
  padding: 40px 0;
  padding-bottom: 70px;
}
.solution .cmp_head {
  padding-bottom: 35px;
}
.solution .bg_light {
  padding: 60px;
}
.solution .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0;
}
.solution .nav-tabs li {
  width: 50%;
}
.solution .nav-tabs li .nav-link {
  width: 100%;
  padding: 0 !important;
  border-radius: 0 !important;
  width: 250px;
  height: 290px;
  margin-bottom: 20px;
}
.solution .nav-tabs li .nav-link.active {
  background-color: #29abe2;
}
.solution .nav-tabs li .nav-link.active span {
  color: #fff;
}
.solution .nav-tabs li .nav-link span {
  font-size: 21px;
  color: #252a2f;
  font-weight: 700;
  font-family: "Raleway";
  text-align: center;
  width: 190px;
  display: block;
  margin: auto;
  line-height: 30px;
}
.solution .content_box h6 {
  font-size: 30px;
  color: #252a2f;
  font-weight: 700;
  font-family: "Raleway";
  text-align: start;
}
.solution .content_box .accordion .accordion-item {
  border: none;
}
.solution .content_box .accordion .accordion-item .accordion-button.collapse {
  background-color: #eff8fd;
  color: #252a2f;
}
.solution .content_box .accordion .accordion-item .accordion-button.collapse::after {
  display: none;
}
.solution .content_box .accordion .accordion-item .accordion-button {
  background-color: #eff8fd;
  color: #252a2f;
  padding-left: 0;
  padding-bottom: 0;
  display: flex;
  align-items: start;
}
.solution .content_box .accordion .accordion-item .accordion-button::after {
  display: none;
}
.sweep .row:nth-child(even) {
  flex-direction: row-reverse;
}
.sweep .rev {
  padding-bottom: 30px;
}
.sweep .btn_sec {
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}
.sweep .btn_sec .tab-button {
  margin-right: 20px;
  border: 2px solid #29abe2;
  font-size: 18px;
  font-weight: 800;
  font-family: "Raleway";
  background-color: #fff;
  color: #252a2f;
}
.sweep .btn_sec .tab-button:hover {
  border: 2px solid #193661;
  color: #fff;
}
.sweep .btn_sec .tab-button.active {
  background-color: #29abe2 !important;
  color: #fff;
}
.sweep .center {
  height: 100%;
  padding-left: 50px;
}
.sweep .center:first-child {
  padding-left: 60px;
}
.sweep .center h2:first-child {
  text-align: start;
  padding-bottom: 18px;
}
.sweep .center ul li {
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 26px;
  color: #6a6a6a;
  font-weight: 400;
  font-family: "Roboto";
}
.sweep .center ul li i {
  color: #29abe2;
}

.team_slider {
  padding: 100px 10px;
  -webkit-clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
          clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  margin-bottom: 60px;
  background-color: #193661;
  position: relative;
}
.team_slider .team_member {
  padding: 15px 10px;
  cursor: pointer;
}
.team_slider .team_member .img_box {
  border-radius: 100%;
  overflow: hidden;
  width: 100%;
  background-size: contain;
  padding: 22px;
  position: relative;
}
.team_slider .team_member .img_box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 49.6%;
  width: 100%;
  height: 100%;
  background-image: url(../images/1.png);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  background-size: contain;
}
.team_slider .team_member .img_box img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.team_slider .team_member:hover .img_box::after {
  visibility: visible;
  opacity: 1;
}
.team_slider .team_member h4 {
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.team_slider .team_member p {
  font-size: 15px;
  color: #fff;
  text-align: center;
}
.team_slider .swiper-button-prev_team {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.team_slider .swiper-button-prev_team::after {
  content: "\f104";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate(-50%, -50%);
  background-size: contain;
  font-size: 15px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #000;
}
.team_slider .swiper-button-prev_team:hover {
  background-color: #29abe2;
}
.team_slider .swiper-button-prev_team:hover::after {
  color: #fff;
}
.team_slider .swiper-button-next_team {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.team_slider .swiper-button-next_team::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate(-50%, -50%);
  background-size: contain;
  font-size: 15px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #000;
}
.team_slider .swiper-button-next_team:hover {
  background-color: #29abe2;
}
.team_slider .swiper-button-next_team:hover::after {
  color: #fff;
}

.contact_us {
  padding-bottom: 40px;
}
.contact_us .col-md-5 {
  padding-right: 80px;
}
.contact_us .container {
  color: white;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #29abe2, rgba(41, 170, 226, 0.0901960784), #fff) border-box;
  border: 2px solid transparent;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transform-origin: right bottom;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 12px;
}
.contact_us .con_box {
  background-color: #29abe2;
  border-radius: 40px;
  padding: 40px 30px;
  padding-bottom: 25px;
}
.contact_us .con_box h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  font-family: "Raleway";
  text-align: center;
  margin-bottom: 20px;
}
.contact_us .con_box ul li {
  display: flex;
  padding-bottom: 22px;
  align-items: start;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Roboto";
  line-height: 20px;
}
.contact_us .con_box ul li a {
  display: flex;
}
.contact_us .con_box ul li i {
  color: #252a2f;
  background-color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_us .con_box ul li .icon {
  margin-right: 10px;
}
.contact_us .con_box .map_box {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid #fff;
}
.contact_us .con_box .map_box iframe {
  width: 100%;
  height: 100%;
}
.contact_us .form {
  padding-top: 45px;
  padding-right: 60px;
}
.contact_us .form h2 {
  color: #252a2f;
  text-align: start;
  padding-bottom: 15px;
}
.contact_us .form label {
  font-size: 16px;
  color: #121111;
  font-weight: 500;
  font-family: "Roboto";
}
.contact_us .form input {
  margin-bottom: 20px !important;
}
.contact_us .form button {
  height: 56px;
  border-radius: 28px;
  background-color: #29abe2;
  width: 100%;
}
.contact_us .form .captcha {
  margin-bottom: 15px;
}
.contact_us.page .container {
  border: 0;
  background: transparent;
}

/*----------------------------------------*/
/*            Footer CSS
/*----------------------------------------*/
.footer-widget-wrap {
  padding-top: 100px;
  padding-bottom: 50px;
}

.footer-widget {
  margin-top: 30px;
}
.footer-widget .footer-widget-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-family: "Raleway";
  text-wrap: nowrap;
}

.widget-info {
  padding-top: 20px;
}
.widget-info ul li {
  display: flex;
  align-items: start;
  flex-wrap: nowrap;
  margin-top: 10px;
}
.widget-info ul li:nth-child(2) {
  margin-top: 30px;
}
.widget-info ul li .info-icon i {
  display: inline-block;
  color: #29abe2;
  font-size: 18px;
  margin-right: 10px;
  margin-top: 2px;
}
.widget-info ul li .info-text {
  font-size: 16px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 500;
  font-family: "Roboto";
}

.footer-widget-about {
  margin-top: 30px;
}
.footer-widget-about h3 {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-family: "Raleway";
  padding-bottom: 15px;
}
.footer-widget-about p {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  font-family: "Roboto";
  opacity: 0.6;
}

.footer-social .social {
  margin-top: 25px;
}
.footer-social .social li {
  display: inline-block;
}
.footer-social .social li + li {
  margin-left: 5px;
}
.footer-social .social li a {
  width: 29px;
  height: 29px;
  border-radius: 15px;
  background-color: #29abe2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-social .social li a:hover {
  color: #252a2f;
  transform: rotate(360deg);
}

.widget-link {
  padding-top: 22px;
}
.widget-link .link li {
  margin-top: 7px;
  margin-bottom: 14px !important;
}
.widget-link .link li a {
  opacity: 0.6;
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
  font-family: "Roboto";
  transition: all 0.3s linear;
}
.widget-link .link li a:hover {
  color: #29abe2;
  padding-left: 10px;
}

.footer-section {
  -webkit-clip-path: polygon(0 12%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 12%, 100% 0%, 100% 100%, 0% 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.footer-copyright-area {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: rgba(255, 255, 255, 0.1647058824);
}

.copyright-text {
  margin-top: 15px;
}
.copyright-text p {
  opacity: 0.6;
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  font-family: "Roboto";
  text-align: center;
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(8, 105, 216, 0.4235294118);
  opacity: 0;
  visibility: hidden;
  transform: translateX(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  color: #193661;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #193661;
  stroke-width: 4;
  box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*----------------------------------------*/
/*        blog-page
/*----------------------------------------*/
.inner-ban {
  height: auto;
}
.inner-ban .bnr_img {
  padding: 10rem !important;
}

.blog-sec {
  padding: 80px 0;
}
.blog-sec .blog-hd {
  padding: 0 10%;
}

.each-blog-box {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  height: 95%;
  padding-bottom: 30px;
}
.each-blog-box .each-blog-img {
  webkit-clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
}
.each-blog-box .each-blog-img {
  position: relative;
}
.each-blog-box .each-blog-img img {
  width: 100%;
  aspect-ratio: 1/0.5;
  -o-object-fit: cover;
     object-fit: cover;
}
.each-blog-box .each-blog-txt {
  padding: 20px;
}
.each-blog-box .each-blog-txt h3 {
  font-family: "Roboto";
  text-transform: capitalize;
  margin-top: 20px;
  font-weight: 500;
  font-size: 20px;
}
.each-blog-box .each-blog-txt p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.each-blog-box .each-blog-txt span {
  font-size: 16px;
  color: #29abe2;
  font-weight: 700;
  font-family: "Roboto";
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.each-blog-box .each-blog-txt span:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #29abe2;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/*----------------------------------------*/
/*        publication-page
/*----------------------------------------*/
.public-sec .each-blog-box .dt-artcle {
  position: absolute;
  bottom: 18px;
  right: 0;
  background-color: #193661;
  width: auto;
  height: auto;
  padding: 5px 15px;
  color: #ffffff;
  font-family: "Roboto";
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  line-height: 1.2;
  text-transform: capitalize;
}
.public-sec .each-blog-box .dt-artcle span {
  position: relative;
  text-align: center;
  display: block;
  margin-top: 11px;
  font-size: 13px;
}
.public-sec .each-blog-box .dt-artcle span:after {
  content: "";
  width: 40%;
  height: 0.6px;
  background-color: #fff;
  display: block;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

.profile_card .profile_img {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid #fff;
}
.profile_card span {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.profile_card p {
  text-align: center;
  line-height: 18px;
  margin-top: 6px;
  padding: 0px 20px;
}

.swiper-pagination-bullet {
  border: 2px solid #fff;
  padding: 5px;
  background: #000;
  opacity: 1;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  background-color: rgba(255, 255, 255, 0.2901960784);
  padding: 2px 5px;
  border-radius: 15px;
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 15px 0;
  display: block;
}

.swiper-pagination-bullet-active {
  background: #29abe2;
}

.service_inner h1 {
  font-size: 35px !important;
}

.inner-ban .slider_inner .banner_content {
  top: 50%;
}

.solution .content_box .accordion .accordion-item .accordion-button {
  padding-bottom: 15px;
}

@media only screen and (max-width: 1500px) {
  .project .p_con .con_bx {
    width: 50%;
    padding-left: 40px;
  }
  .project .p_con .con_bx h2 {
    font-size: 27px;
  }
}/*# sourceMappingURL=style.css.map */