/*-------Index-------
    1.Header section

    */
html {
  scroll-behavior: smooth;
}

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {

  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #313133;
  /* background: #4FD1C5; */
  /* background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%); */
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 70px rgba(241, 244, 244, 0.89);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
}

.button::before {
  content: '';
  border-radius: 1000px;

  /* border: 6px solid #00FFCB; */
  box-shadow: 0 0 60px rgba(0, 255, 203, .64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button:hover,
.button:focus {
  color: #313133;
  transform: translateY(-6px);
}

.button:hover::before,
.button:focus::before {
  opacity: 1;
}

.button::after {
  content: '';

  border-radius: 100%;
  border: 5px solid white;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.button:hover::after,
.button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }

  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.container {
  padding-left: 0;
  padding-right: 0;
}

.header-top-area .align-items-center {
  padding: 11px 0;
}

.header-top-area {
  background: #271151;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.header-top-left-single-item {
  display: inline-block;
  margin-right: 20px;
}

.header-top-left-single-item a {
  color: #fff;
  font-size: 15px;
}

.header-top-left-icon i {
  margin-right: 6px;
}

.header-top-right-items ul {
  text-align: right;
}

.header-top-right-icon-area ul li {
  display: inline-block;
  margin-left: 8px;
}

.header-top-right-icon-area ul li a {
  color: #fff;
  font-size: 14px;
}

.header-search-icons i {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.header-top-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 54%;
  height: 100%;
  z-index: -1;
  transform: skew(38deg);
  padding-left: 20px;
  background: #2513d1;
}


/*----1.Header section  Transparent Header*/
header {
  background: #fff;
  transition: .5s;
}

header.transparent-header {
  margin-bottom: -140px;
  background: transparent;
  z-index: 9999;
  position: relative;
}

header.transparent-header .menu-wrapper nav ul li a {
  margin: 37px 7px;
  transition: .5s;
  color: #fff;
}

header.transparent-header .menu-wrapper .sub-menu li a {
  margin: 0;
}

.transparent-header.sticky-nav .menu-wrapper .sub-menu li a {
  margin: 0;
}

.transparent-header.sticky-nav {
  background: #2513d1;
}

.transparent-header.sticky-nav .menu-wrapper nav ul li a {
  margin: 31px 9px;
}

header.transparent-header .nav-btn:hover a {
  background: #c216db;
  border-color: transparent;
}

.transparent-header.sticky-nav .nav-btn a {
  background: #7744D9;
  color: #fff;
  border-color: #7744D9;
}

header.transparent-header .menu-wrapper nav ul li a i {
  color: #fff;
  opacity: .5;
  transition: .5s;
}

.transparent-header.sticky-nav .menu-wrapper nav ul li a i {
  color: #f0b9f8;
}

.transparent-header.sticky-nav .menu-wrapper nav ul li:hover a {
  color: #fff;
}

header.transparent-header .menu-wrapper .sub-menu {
  top: 150px;
  transition: .5s;
  border-radius: 1rem;
}

header.transparent-header .menu-wrapper ul li:hover .sub-menu {
  top: 78px;
}

.transparent-header.sticky-nav .menu-wrapper ul li:hover .sub-menu {
  top: 82px;
}


/*----Transparent Header Style Two--*/
header.transparent-header.style-two .menu-wrapper nav ul li a,
header.transparent-header.style-two .menu-wrapper nav ul li a i {
  color: #1e1666;
}

.transparent-header.style-two.sticky-nav {
  background: #fff;
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}

.transparent-header.style-two.sticky-nav .menu-wrapper nav ul li:hover a {
  color: #1e1666;
}

/*----Transparent Header Style Three--*/
.transparent-header.style-three .query-btn a {
  border: 2px solid #fff;
}

.transparent-header.style-three.sticky-nav .menu-wrapper nav ul li a {
  margin: 31px 7px;
}

/*----Transparent Header Style Four--*/
header.transparent-header.style-four {
  margin-bottom: 0;
  background: #6A1CE1;
  z-index: 9999;
  height: 78px;
  position: relative;
}



/*--Sicky Menu--*/
.sticky-nav {
  left: 0;
  margin: auto;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 9999;
  animation: 300ms ease-in-out none fadeInDown;
  transition: .5s !important;
}

.query-menu i {
  height: 30px;
  text-align: center;
  width: 30px;
  line-height: 30px;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  margin-top: 0px;
  background: transparent;
}

.query-menu.color-two i {
  color: #1e1666;
  transition: .5s;
}

.sticky-nav .color-two i {
  color: #fff !important;
}

sub-menu .query-btn a {
  color: #fff;
  border: 1px solid #fff;
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 14px;
}

.query-btn a:hover {
  background: #fff;
  color: #2513d1;
}

.query-btn.style-two {
  margin-left: 10px;
}

.query-btn.style-two a {
  border: 2px solid #2513D1;
  background: #2513D1;
}

.query-btn.style-two a:hover {
  background: #fff;
  color: #2513d1;
  border: 2px solid #2513d1;
}

.sticky-nav .query-btn.style-two a {
  color: #2513d1;
  border: 2px solid #fff;
  background: #fff;
}

.sticky-nav .style-two .menu-wrapper nav ul li a i {
  color: #fff;
  opacity: .5;
}

.style-two.sticky-nav .menu-wrapper nav ul li a {
  color: #fff;
}

/*-----Header Menu style ------*/
.menu-wrapper nav ul li a {
  display: block;
  margin: 30px 6px;
  transition: .5s;
  position: relative;
  color: #232323;
  font-size: 16px;
  font-weight: 500;
  transition: .1s;
  text-transform: capitalize;
}

.color-two .menu-wrapper nav ul li a {
  color: #1e1666;
}

.menu-wrapper nav ul li a i {
  color: #888;
  font-size: 14px;
  margin-left: 5px;
  background: transparent;
}

.nav-btn a {
  background: #7744D9;
  border: 1px solid #7744D9;
  border-radius: 3px;
  color: #fff;
  padding: 12px 25px;
  font-size: 15px;
  transition: .3s;
  display: inline-block;
  margin-left: 11px;
  transition: .5s;
}

.nav-btn:hover a {
  background: #C216DB;
  border: 1px solid #C216DB;
}

.sticky-nav .nav-btn a {
  background: #fff;
  border: 1px solid #fff;
  color: #7744D9;
}

.sticky-nav {
  background: #2513D1;
}

.logo img:nth-child(2) {
  display: none;
}

.sticky-nav .logo img:nth-child(1) {
  display: none;
}

.sticky-nav .logo img:nth-child(2) {
  display: block;
}

.sticky-nav .menu-wrapper nav ul li a {
  color: #fff;
}

.sticky-nav .menu-wrapper nav ul li a i {
  color: #f0b9f8;
  opacity: 1;
}

/*------Header sub-menu style--------*/
.menu-wrapper ul li {
  position: relative;
}

.menu-wrapper .sub-menu {
  position: absolute;
  top: 120px;
  left: 0px;
  width: 230px;
  background: #fff;
  transition: .5s;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.menu-wrapper ul li:hover .sub-menu {
  top: 81px;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.menu-wrapper .sub-menu li {
  position: relative;
  line-height: 2;
  display: block;
  text-align: left;
  transition: .3s;
  cursor: pointer;
}

.menu-wrapper .sub-menu li a::before {
  position: absolute;
  left: 14px;
  top: 12px;
  height: 15px;
  width: 1px;
  content: "";
  background: #fff;
  transform: rotate(25deg);
  opacity: 0;
}

.menu-wrapper .sub-menu li a::after {
  position: absolute;
  left: 18px;
  top: 12px;
  height: 15px;
  width: 1px;
  content: "";
  background: #fff;
  transform: rotate(25deg);
  opacity: 0;
}

.menu-wrapper .sub-menu li:hover {
  background: #2513d1;
}

.menu-wrapper .sub-menu li:hover a {
  color: #fff;
}

.menu-wrapper .sub-menu li:hover a::after,
.menu-wrapper .sub-menu li:hover a::before {
  opacity: 1;
}

.menu-wrapper .sub-menu li:hover a i {
  color: #7744D9 !important;
}

.menu-wrapper .sub-menu li a {
  font-size: 14px;
  padding: 12px 30px;
  display: block;
  line-height: 1.3;
  transition: .1s;
  -webkit-transition: .1s;
  -o-transition: .1s;
  letter-spacing: normal;
  text-transform: capitalize;
  margin: 0 !important;
  color: #232323 !important;
  font-weight: 400;
  position: relative;
}

.menu-wrapper .sub-menu li a i {
  color: #555 !important;
  background: #fff !important;
  transition: .3s;
}

.btn-get-quote a {
  -moz-user-select: none;
  background: #2513d1;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 0;
  padding: 14px 28px;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 3px;
  border: 2px solid #2513d1;
}

.btn-get-quote a:hover {
  background: #fff;
  color: #2513d1;
  border: 2px solid #2513d1;
}

/*------Inner sub-menu style--------*/
.menu-wrapper .sub-menu .inner-sub-menu {
  position: absolute;
  left: 230px;
  top: 65px;
  background: #fff;
  width: 230px;
  transition: .5s;
  opacity: 0;
  box-shadow: 0 0 5px rgb(0, 0, 0, 0.1);
}

.menu-wrapper .sub-menu li:hover .inner-sub-menu {
  top: 0;
  opacity: 1;
}

.menu-wrapper .sub-menu .inner-sub-menu li {
  position: relative;
}

.menu-wrapper .sub-menu .inner-sub-menu li a {
  color: #232323 !important;
}

.menu-wrapper .sub-menu .inner-sub-menu li:hover a {
  color: #fff !important;
}

/*sub menu two 2*/
header.transparent-header .menu-wrapper ul.sub-menu ul.sub-menu {
  left: 230px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
}

header.transparent-header .menu-wrapper ul.sub-menu li:hover>ul.sub-menu {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  top: 0%;
}

header.transparent-header .menu-wrapper ul.sub-menu ul.sub-menu li a {
  color: #232323 !important;
  transition: .5s;
}

header.transparent-header .menu-wrapper ul.sub-menu ul.sub-menu li a:hover {
  color: #fff !important;
}



/*---Sticky Menu---*/

.mobile-menu-top-logo {
  z-index: 999;
  position: relative;
  background: #fff;
}

.logo {
  position: absolute;
}

.menu-wrapper {
  display: flex;
  justify-content: space-between;
}

.menu-wrapper nav ul {
  display: inline-block;
}

.menu-wrapper nav ul li {
  display: inline-block;
}

.menu-toggle {
  display: none;
}

.menu-toggle .open_bar,
.menu-toggle .close_bar {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  right: 30px;
  position: absolute;
  top: 16px;
  cursor: pointer;
}

.menu-toggle .close_bar {
  display: none;
}

.menu-toggle.closee .open_bar {
  display: none !important;
}

.menu-toggle.closee .close_bar {
  display: block !important;
}

.logo-txt {
  display: none;
}

.logo-txt::before {
  content: '';
  display: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  top: 17px;
  left: 20px;
  display: none;
}

.menu-toggle {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  right: 0;
  position: absolute;
  top: 0;
  z-index: 999;
}

.menu-wrapper nav ul li a span i {
  display: none;
}

.mm-social-icon {
  text-align: left;
  margin-top: 40px;
}

.mm-social-icon span {
  padding: 0 22px;
}

.mm-social-icon a {
  color: #2513D1;
  background: transparent;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  position: absolute;
  border: 1px solid #2513D1;
  border-radius: 5px;
  transition: .3s;
}

.mm-social-icon a:hover {
  color: #fff;
  background: #2513D1;
}



/*<!-- ============================================================== -->
    <!-- petech - career-team Css -->
    <!-- ============================================================== -->*/
.career-team-section {
  padding: 100px 0px;
}

.career-team-section .left-content .team-title h4 {
  font-size: 18px;
  color: #007aff;
  font-weight: 700;
}

.career-team-section .left-content .team-title h2 {
  font-size: 35px;
  color: #232323;
  font-weight: 700;
  margin: 23px 0px;
}

.career-team-section .left-content .team-title span {
  color: #007aff;
}

.career-team-section .left-content .team-title p {
  font-size: 16px;
  color: #6d6d6d;
  margin-bottom: 35px;
}

.career-team-section .left-content .button a {
  padding: 15px 35px;
  background-color: #007aff;
  color: #fff;
}

.career-team-section .right-content .single-box {
  text-align: center;
  padding: 25px 40px;
  box-shadow: 0px 10px 50px 0px rgba(28, 35, 41, 0.07);
  margin-bottom: 30px;
}

.career-team-section .right-content .single-box i {
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 40px;
  background-color: #f6f7f8;
  color: #007aff;
  font-size: 35px;
}

.career-team-section .right-content .single-box h3 {
  font-size: 18px;
  color: #222222;
  font-weight: 700;
  line-height: 1.9;
}

/*<!-- ============================================================== -->
    <!-- petech - career-Current Openings Css -->
    <!-- ============================================================== -->*/
.Current-openings-section {
  background-color: #f5f6f9;
  padding: 100px 0px 70px 0px;
}

.Current-openings-section .openings-title {
  text-align: center;
  margin-bottom: 60px;
}

.Current-openings-section .openings-title h4 {
  font-size: 18px;
  color: #007aff;
  font-weight: 700;
}

.Current-openings-section .openings-title h2 {
  font-size: 35px;
  color: #232323;
  font-weight: 700;
  margin: 23px 0px;

}

.Current-openings-section .openings-title span {
  color: #007aff;
}

.Current-openings-section .openings-single-box {
  background-color: #fff;
  padding: 28px 30px;
  border-radius: 7px;
  transition: 1s;
  margin-bottom: 30px;
}

.Current-openings-section .openings-single-box:hover {
  background-color: #007aff;
  transition: 1s;
}

.Current-openings-section .openings-single-box:hover .left-box .text h3 {
  color: #fff;
  transition: 1s;
}

.Current-openings-section .openings-single-box:hover .left-box .text p {
  color: #fff;
  transition: 1s;
}

.Current-openings-section .openings-single-box .left-box {
  display: flex;
  align-items: center;
}

.Current-openings-section .openings-single-box .left-box i {
  height: 80px;
  width: 80px;
  line-height: 80px;
  border-radius: 4px;
  background-color: #f6f7f8;
  color: #007aff;
  font-size: 35px;
  text-align: center;
  margin-right: 20px;
}

.Current-openings-section .openings-single-box .left-box .text h3 {
  font-size: 20px;
  color: #222222;
  font-weight: 600;
  margin-bottom: 0px;
}

.Current-openings-section .openings-single-box .left-box .text p {
  font-size: 16px;
  color: #6d6d6d;
  margin: 10px 0px;
}

.Current-openings-section .openings-single-box .button {
  text-align: end;
}

.Current-openings-section .openings-single-box .button a {
  padding: 15px 35px;
  background-color: #fff;
  color: #007aff;
  border: 1px solid #007aff;
}

/*<!-- ============================================================== -->
    <!-- petech - career-Current Openings Css -->
    <!-- ============================================================== -->*/

.career-subscribe-section {
  background-image: url('assets/images/bg-img56756.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -23px;
}

.career-subscribe-section .subscribe-title {
  text-align: center;
  margin-bottom: 80px;
}

.career-subscribe-section .subscribe-title h2 {
  font-size: 35px;
  color: #232323;
  font-weight: 700;
  margin: 23px 0px;
}

.career-subscribe-section .subscribe-title span {
  color: #007aff;
}

.career-subscribe-section .subscribe-title p {
  font-size: 20px;
  color: #222222;
  margin-bottom: 35px;
}

.career-subscribe-section .subscribe-title .button a {
  padding: 15px 35px;
  background-color: #007aff;
  color: #fff;
}

.career-subscribe-section .subscribe-box {
  background-image: url('assets/images/bg5674564.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 50px;
  border-radius: 7px;
}

.career-subscribe-section .subscribe-box .title h2 {
  color: #fff;
}

.career-subscribe-section .subscribe-box .title p {
  color: #fff;
  margin: 10px 0px 0px 0px;
}

.career-subscribe-section .subscribe-box .form-wraper {
  position: relative;
}

.career-subscribe-section .subscribe-box .form-wraper input {
  padding: 28px 20px;
}

.career-subscribe-section .subscribe-box .form-wraper input::placeholder {
  /* padding-left: 20px;
        margin-left: 30px; */
}

.career-subscribe-section .subscribe-box .form-wraper .btn-submit {
  /* position: absolute; */
}

.career-subscribe-section .subscribe-box .form-wraper button {
  padding: 14px 40px;
  border: 0;
  background-color: #007aff;
  border: 1px solid #007aff;
  color: #fff;
  border-radius: 0px 5px 5px 0px;
  right: 0;
  top: -5px;
  transition: .5s;
  position: relative;
  transition: .5s;
  z-index: 1;
}

.career-subscribe-section .subscribe-box .form-wraper button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  transition: .5s;
  border-radius: 5px;
  z-index: -1;
}

.career-subscribe-section .subscribe-box .form-wraper button:hover::before {
  width: 100%;
}

.career-subscribe-section .subscribe-box .form-wraper button:hover {
  color: #007aff;
  border: 2px solid #007aff;

}

/* =================================Start itsolve career-detail Area============================ */


/*====================================================
    --< .career-details  Css -->
    ======================================================*/
.career-details {
  padding: 100px 0 90px;
}

.details-title h2 {
  font-size: 46px;
  color: #000000;
  margin: 0;
}

.details-title h3 {
  font-size: 26px;
  color: #000000;
  font-weight: 600;
  margin: 15px 0;
}

.details-title p {
  font-size: 16px;
  margin: 0;
  color: #5c727d;
  line-height: 1.4;
}

.details-text {
  margin-top: 30px;
}

.details-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
}

.details-text p {
  margin: 0 0 5px 30px;
  position: relative;
}

.details-text p::before {
  position: absolute;
  content: "";
  top: 14px;
  left: -33px;
  height: 1px;
  width: 15px;
  background: #007aff;
}

.details-text p::after {
  position: absolute;
  content: "";
  top: 12px;
  left: -18px;
  height: 6px;
  width: 6px;
  border-radius: 5px;
  background: #007aff;
}

.details-text h3 {
  font-size: 26px;
  color: #000000;
  font-weight: 600;
  margin: 16px 0 0;
}

.singles-details-box {
  box-shadow: 0px 10px 100px 0px rgba(34, 34, 34, 0.07);
  padding: 25px 30px 20px;
  position: relative;
  border-radius: 5px;
}

.singles-details-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #007aff;
}

.singles-details-box h4 {
  font-weight: 600;
  font-size: 25px;
  color: #000000;
}

.details-thumb {
  margin: 20px 0 0;
}

.details-thumb img {
  float: left;
  margin: 6px 20px 25px 0;
}

.deta-title span {
  font-size: 16px;
  color: #5c727d;
}

.deta-title h5 {
  margin: 0;
  font-size: 16px;
  color: #222222;
  font-weight: 500;
  line-height: 30px;
}

.deta-title {
  margin-left: 37px;
}

.details-button {
  margin-top: 40px;
  margin-bottom: 20px;
}

.career-details .details-button .button a {
  padding: 15px 35px;
  background-color: #007aff;
  color: #fff;
}


/* =================================Start itsolve mission Area============================ */


/*====================================================
    --<  .mission  Css -->
    ======================================================*/
.mission-section {
  padding: 100px 0px;
}

.mission-section .image-tham {
  position: relative;
}

.mission-section .image-tham img {
  width: 100%;
}

.mission-section .video-icon {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  padding-top: 8px;
}

.mission-section .video-icon a {
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  position: relative;
  color: #007aff;
  -webkit-animation: ripple-white 1s linear infinite;
  animation: ripple-blue 1s linear infinite;
  -webkit-transition: .5s;
  background: #fff;
  font-size: 28px;
  z-index: 1;
}

@-webkit-keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
  }
}

@keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
  }
}

/*====================================================
    --<  .planning-section  Css -->
    ======================================================*/
.planning-section {
  padding: 100px 0px;
  background-color: #f5f6f9;
}

.planning-section .title {
  text-align: center;
  margin-bottom: 60px;
}

.planning-section .title h4 {
  font-size: 18px;
  color: #007aff;
}

.planning-section .title h2 {
  font-size: 35px;
  color: #232323;
}

.planning-section .title span {
  color: #007aff;
}

.planning-section .planning-item {
  background-color: #fff;
  padding-bottom: 20px;
  border-radius: 9px;
  margin-bottom: 30px;
}

.planning-section .planning-item .image img {
  width: 100%;
}

.planning-section .planning-item .text {
  padding: 0px 20px;
}

.planning-section .planning-item .text h3 {
  font-size: 22px;
  color: #222222;
  margin-top: 20px;
}

.planning-section .planning-item .text p {
  font-size: 16px;
  color: #616161;
}

/*====================================================
    --<  .mission-section  Css -->
    ======================================================*/
.mission-section2 {
  background: url(assets/images/Mission-and-Vission-Recoveredlmlk.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  padding: 100px 0px;
}

.mission-section2 .right-content {
  margin-left: 30px;
}

.mission-section2 .right-content h4 {
  font-size: 16px;
  color: #007aff;
  margin-top: 0px;
}

.mission-section2 .right-content h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.mission-section2 .right-content span {
  color: #007aff;
}

.mission-section2 .right-content p {
  font-size: 15px;
  color: #f0f0f0;
}

.mission-section2 .right-content .icon p {
  font-size: 18px;
  color: #f0f0f0;
}

.mission-section2 .right-content .icon i {
  color: #fff;
  background-color: #007aff;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 30px;
  margin-right: 15px;
}

/*====================================================
    --<  vission-section  Css -->
    ======================================================*/
.vission-section {
  background: url(assets/images/Mission-and-Vission-Recoveresdd.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  padding: 100px 0px;
}

.vission-section .left-content {
  margin-left: 30px;
}

.vission-section .left-content h4 {
  font-size: 16px;
  color: #007aff;
  margin-top: 0px;
}

.vission-section .left-content h2 {
  font-size: 40px;
  color: #232323;
  font-weight: 600;
  margin-bottom: 20px;
}

.vission-section .left-content span {
  color: #007aff;
}

.vission-section .right-content p {
  font-size: 15px;
  color: #616161;
}

.vission-section .left-content .icon p {
  font-size: 18px;
  color: #232323;
}

.vission-section .left-content .icon i {
  color: #fff;
  background-color: #007aff;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 30px;
  margin-right: 15px;
}

/*====================================================
    --<  mission-brandn  Css -->
    ======================================================*/
.mission-brand {
  background-image: url('assets/images/bg-img56756.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mission-brand .mission-brand-slider {
  padding: 100px 0px;
}

.mission-brand .mission-brand .brand-image img {
  width: 100%;
}

.mission-brand .subscribe-box {
  background-image: url('assets/images/bg5674564.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 50px;
  border-radius: 7px;
}

.mission-brand .subscribe-box .title h2 {
  color: #fff;
  margin-bottom: 0px;
}

.mission-brand .subscribe-box .title p {
  color: #fff;
  margin-top: 0px;
}

.mission-brand .subscribe-box .form-wraper {
  position: relative;
}

.mission-brand .subscribe-box .form-wraper input {
  padding: 28px 20px;
}

.mission-brand .subscribe-box .form-wraper input::placeholder {
  /* padding-left: 20px;
        margin-left: 30px; */
}

.mission-brand .subscribe-box .form-wraper .btn-submit {
  position: absolute;
}

.mission-brand .subscribe-box .form-wraper button {
  padding: 14px 40px;
  border: 0;
  background-color: #007aff;
  border: 1px solid #007aff;
  color: #fff;
  border-radius: 0px 5px 5px 0px;
  right: 0;
  top: -5px;
  transition: .5s;
  position: relative;
  transition: .5s;
  z-index: 1;
}

.mission-brand .subscribe-box .form-wraper button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  transition: .5s;
  border-radius: 5px;
  z-index: -1;
}

.mission-brand .subscribe-box .form-wraper button:hover::before {
  width: 100%;
}

.mission-brand .subscribe-box .form-wraper button:hover {
  color: #007aff;
  border: 2px solid #007aff;
}














/*==========================
    ===========video
    ==========================*/

.video i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  position: relative;
  color: #fff;
  animation: ripple-white 1s linear infinite;
  background: #2513d1;
  font-size: 28px;
  z-index: 1;
}

@keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
  }
}

.video.color-two i {
  color: #2513d1;
  animation: ripple-blue 1s linear infinite;
  background: #fff;
}

@keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(37, 19, 209, 0.3), 0 0 0 10px rgb(37, 19, 209, 0.3), 0 0 0 20px rgb(37, 19, 209, 0.3);
    box-shadow: 0 0 0 0 rgb(37, 19, 209, 0.3), 0 0 0 10px rgb(37, 19, 209, 0.3), 0 0 0 20px rgb(37, 19, 209, 0.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px rgb(37, 19, 209, 0.3), 0 0 0 20px rgb(37, 19, 209, 0.3), 0 0 0 30px rgb(37, 19, 209, 0);
    box-shadow: 0 0 0 10px rgb(37, 19, 209, 0.3), 0 0 0 20px rgb(37, 19, 209, 0.3), 0 0 0 30px rgb(37, 19, 209, 0);
  }
}

/*-------Hero Section--------*/
.hero-section {
  height: 670px;
  position: relative;
  z-index: 9;
  opacity: 1;
}

.hero-section.style-one {
  /* background: url("assets/images/bg/bg-blue-lines.jpg") no-repeat center/cover scroll !important; */
}

.hero-content {
  position: relative;
  text-align: left;
}

.hero-thumb {
  position: absolute;
  bottom: -150px;
  right: -55px;
}

.alltuchtopdown {
  -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 2.5s;
}

@keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }

  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}

.shape-three {
  position: absolute;
  left: 212px;
  top: 351px;
}

.hero-content h5 {
  font-size: 19px;
  text-transform: uppercase;
  margin: 0 0 24px;
  letter-spacing: 2px;
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  font-size: 60px;
  line-height: 1.2;
}

.hero-content p {
  margin: 18px 0 50px;
  font-size: 18px;
}

.btn-common.btn-hero {
  float: left;
}

.btn-common.btn-hero {
  margin-right: 30px;
}

.btn-common a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  padding: 12px 40px;
  font-weight: 500;
  overflow: hidden;
  background: #2513d1;
  border-radius: 3px;
  text-transform: capitalize;
  transition: .5s;
  z-index: 1;
}

.btn-common a:hover {
  color: #000;
}

.btn-common a::before {
  position: absolute;
  content: '';
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: -50px;
  border-bottom: 55px solid #ffffff;
  border-right: 30px solid transparent;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: -1;
}

.btn-common a::after {
  position: absolute;
  content: '';
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: -50px;
  border-left: 30px solid transparent;
  border-bottom: 55px solid #ffffff;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  z-index: -1;
}

.btn-common a:hover::before {
  -webkit-transform: translateX(-40%);
  transform: translateX(-40%);
}

.btn-common a:hover::after {
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
}

.hero-section .shape-one {
  position: absolute;
  left: -74px;
  top: 130px;
}

.hero-section .shape-two {
  position: absolute;
  right: 200px;
  top: 240px;
}

.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*-----Hero Section Style-Two---*/
.hero-section.style-two {
  background: transparent url("assets/images/bg/bg-7.jpg") top right/auto no-repeat scroll;
  height: 800px;
}

.hero-section.style-two .hero-content h1,
.hero-section.style-two .hero-content h2 {
  font-weight: 800;
  font-size: 65px;
  line-height: 1.1;
}

.hero-section.style-two .hero-content p {
  width: 60%;
  margin: 18px 0 37px;
}

.hero-section.style-two .btn-common.btn-hero {
  margin-right: 10px;
}

.hero-section.style-two .btn-common.style-two a {
  padding: 9px 56px;
  border: 2px solid #2513d1;
  border-radius: 30px;
}

/*-----Hero Section Style-Three---*/
.intro__bg,
.intro__bg canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-section.style-three {
  background: transparent url("assets/images/bg/bg-5.png") center center/cover no-repeat scroll;
}

.hero-section.style-three .hero-content {
  text-align: center;
  margin-top: -250px;
}

.hero-section.style-three .btn-common.btn-hero {
  float: none;
  margin-top: 40px;
}

.hero-section.style-three .hero-content h1 {
  font-size: 65px;
}

.hero-section.style-three .hero-content h2 {
  font-size: 65px;
  font-weight: 500;
  margin-bottom: 30px;
}

.btn-common-two.btn-hero.btn-learn-more a {
  background: #2513d1;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  padding: 12px 35px;
  margin-right: 10px;
  position: relative;
  z-index: 1;
  transition: .5s;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: 500;
}

.btn-common-two.btn-hero.btn-learn-more a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  z-index: -1;
  opacity: 0;
  transition: .5s;
  border-radius: 5px;
}

.btn-common-two.btn-hero.btn-learn-more a:hover::before {
  opacity: 1;
  width: 100%;
}

.btn-common-two.btn-hero.btn-learn-more a:hover {
  color: #2513d1;
}

/*-----Hero Section Style-Four---*/
.hero-section.style-four {
  background: url("assets/images/bg/bg-10.png") no-repeat center/cover scroll !important;
}

.hero-section.style-four .hero-thumb img {
  width: 540px;
}

.hero-section.style-four .hero-thumb {
  bottom: -91px;
  right: -132px;
}

/*-----Hero Section Style-Five---*/
.hero-section.style-five {
  background: url(assets/images/bg/bg-12.jpg) no-repeat center/cover scroll !important;
}

.hero-section.style-five .hero-content h1,
.hero-section.style-five .hero-content h2,
.hero-section.style-five .hero-content h3 {
  font-size: 60px;
  font-weight: 800;
}


/*-----Hero Section Style-Six---*/
.hero-section.style-six {
  background: url(assets/images/bg/bg-17.jpg) no-repeat center/cover scroll !important;
}

.hero-section.style-six .hero-content p {
  width: 65%;
  margin: 18px 0 40px;
}

.hero-section.style-six .hero-thumb {
  right: -138px;
  width: 540px;
}


/*-----Hero Section Style-Seven---*/
.hero-section.style-seven {
  height: 1232px;
}

.hero-section.style-seven h1,
.hero-section.style-seven h2 {
  font-size: 65px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1;
}

.ah-headline.clip .ah-words-wrapper::after {
  background-color: red !important;
}

.hero-section.style-seven .hero-content h5 {
  font-size: 21px;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-section.style-seven .hero-content p {
  margin: 5px 0 30px;
  font-size: 18px;
  width: 63%;
}

.btn-common.style-three a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  z-index: -1;
  opacity: 0;
  transition: .5s;
  border-radius: 5px;
}

.btn-common.style-three a::after {
  display: none;
}

.btn-common.style-three:hover a {
  color: #2513d1;
}

.btn-common.style-three a:hover::before {
  opacity: 1;
  width: 100%;
  transform: none;
}

/*-----Hero Section Style-Eight---*/
.hero-section.style-eight {
  background: url(assets/images/bg/bg-10.png) no-repeat center/cover scroll !important;
}

.hero-section.style-eight .hero-content h1 {
  font-weight: 400;
  text-transform: capitalize;
}

.hero-section.style-eight .hero-content h2 {
  font-weight: 800;
}

.hero-section.style-eight .hero-content p {
  width: 60%;
}

.hero-section.style-eight .video.hero-video {
  float: left;
  margin-right: 35px;
}

.hero-section.style-eight .video-meta-text {
  margin: 10px 0 0;
  display: inline-block;
}

.hero-section.style-eight .hero-thumb {
  bottom: -91px;
  right: -210px;
}

.hero-section.style-eight .hero-thumb img {
  width: 82%;
}


/*-----Hero Section Style-Nine---*/
.hero-section.style-nine {
  background: url(assets/images/bg/bg-11.jpg) no-repeat center/cover scroll !important;
  height: 900px;
  position: relative;
  padding-top: 298px;
}

.hero-section.style-nine .section-head h1 {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-section.style-nine .section-head.style-two {
  margin-bottom: 20px;
}

/*-----Hero Section Style-Ten---*/
.hero-section.style-ten {
  background: url(assets/images/bg/bg-21.jpg) no-repeat center/cover scroll !important;
  height: 850px;
  position: relative;
}

.hero-section.style-ten .hero-content h1,
.hero-section.style-ten .hero-content h2 {
  font-size: 65px;
}

.hero-section.style-ten .hero-content h5 {
  margin: 0;
  width: 55%;
  color: #6a7c92;
  padding: 30px 0 12px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-btns {
  margin-top: 30px;
}

.btn-style-four {
  display: inline-block;
}

.btn-style-four a {
  background: #2513d1;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  padding: 12px 35px;
  margin-right: 10px;
  position: relative;
  z-index: 1;
  transition: .5s;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: 500;
}

.btn-style-four.bg-2 a {
  background: #e5f8ff;
  color: #000;
}

.btn-style-four.bg-2 a:hover {
  color: #000;
}

.btn-style-four a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #e5f8ff;
  z-index: -1;
  opacity: 0;
  transition: .5s;
  border-radius: 5px;
}

.btn-style-four a:hover {
  color: #2513d1;
}

.btn-style-four a:hover::before {
  opacity: 1;
  width: 100%;
}

.btn-style-four a::after {
  display: none;
}


/*-----Hero Section Style-Eleven---*/
.hero-section.style-eleven {
  background: url(assets/images/bg/bg-14.jpg) no-repeat center/cover scroll !important;
  height: 850px;
  position: relative;
}

.hero-section.style-eleven::before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  background: rgb(37, 19, 209, 0.5);
}

.hero-section.style-eleven .hero-content h1 {
  font-weight: 800;
  line-height: 1;
}

.hero-section.style-eleven .hero-content h1 span {
  font-size: 70px;
}

.hero-section.style-eleven .hero-content p {
  width: 60%;
  margin: 18px auto 30px;
}

.hero-btn-area {
  display: inline-block;
}

.hero-btn-area .btn-common.style-two a {
  padding: 12px 40px;
  border: 1px solid #2513d1;
}

.hero-btn-area .btn-common.style-two.btn-about a {
  background: #fff;
  color: #2513d1;
}

.hero-btn-area .btn-common.style-two.btn-about:hover a {
  background-color: #2513d1;
  border: 1px solid #2513d1;
}

.hero-section .shape-four {
  position: absolute;
  bottom: -78px;
  left: 0;
  right: 0;
  width: 100%;
}


/*-----Hero Section Style-Twelve---*/
.hero-section.style-twelve {
  background: url(assets/images/bg/bg-25.jpg) no-repeat center/cover scroll !important;
  height: 870px;
  position: relative;
}

.hero-section.style-twelve .hero-content h5 {
  margin: 0 0 30px;
  color: #6a7c92;
}

.hero-section.style-twelve .hero-content h1 {
  font-weight: 800;
}

.hero-section.style-twelve .hero-content h1 span {
  color: #2513d1;
}

.hero-section.style-twelve .hero-content p {
  margin: 18px 0 63px;
}





/*------------Animation Hero section----------*/
.circles {
  overflow: hidden;
  width: 100%;
  position: absolute;
  height: 1200px;
}

.point {
  border-radius: 50%;
  z-index: 999;
  position: absolute;
}

.animated-point-1 {
  background-color: red;
  height: 12px;
  width: 12px;
  position: relative;
  animation-name: p1;
  animation-duration: 80s;
  animation-iteration-count: infinite;
}

.animated-point-2 {
  background-color: green;
  height: 15px;
  width: 15px;
  position: relative;
  animation-name: p2;
  animation-duration: 90s;
  animation-iteration-count: infinite
}

.animated-point-3 {
  background-color: orange;
  height: 8px;
  width: 8px;
  position: relative;
  ;
  animation-name: p3;
  animation-duration: 80s;
  animation-iteration-count: infinite
}

.animated-point-4 {
  background-color: pink;
  height: 10px;
  width: 10px;
  position: relative;
  animation-name: p4;
  animation-duration: 80s;
  animation-iteration-count: infinite
}

.animated-point-5 {
  background-color: #ffc64c;
  height: 12px;
  width: 12px;
  position: relative;
  animation-name: p5;
  animation-duration: 50s;
  animation-iteration-count: infinite
}

.animated-point-6 {
  background-color: #ffc64c;
  height: 10px;
  width: 10px;
  position: relative;
  animation-name: p6;
  animation-duration: 70s;
  animation-iteration-count: infinite
}

.animated-point-7 {
  background-color: orange;
  height: 14px;
  width: 14px;
  position: relative;
  animation-name: p7;
  animation-duration: 70s;
  animation-iteration-count: infinite
}

.animated-point-8 {
  background-color: purple;
  height: 8px;
  width: 8px;
  position: relative;
  animation-name: p8;
  animation-duration: 50s;
  animation-iteration-count: infinite
}

.animated-point-9 {
  background-color: purple;
  height: 12px;
  width: 12px;
  position: relative;
  animation-name: p9;
  animation-duration: 100s;
  animation-iteration-count: infinite
}

/*animation shape*/

@-webkit-keyframes p1 {
  0% {
    left: 0px;
    top: 0px
  }

  50% {
    left: 0;
    top: 800px
  }

  100% {
    left: 0px;
    top: 0px
  }
}

@keyframes p1 {
  0% {
    left: 800px;
    top: 0px
  }

  50% {
    left: 0px;
    top: 800px
  }

  100% {
    left: 800px;
    top: 0px
  }
}

@-webkit-keyframes p2 {
  0% {
    left: 0;
    top: 100px
  }

  50% {
    left: 0;
    top: 800px
  }

  100% {
    left: 0;
    top: 100px
  }
}

@keyframes p2 {
  0% {
    left: 0;
    top: 100px
  }

  50% {
    left: 0px;
    top: 800px
  }

  100% {
    left: 0;
    top: 100px
  }
}

@-webkit-keyframes p3 {
  0% {
    left: 300px;
    top: 900px
  }

  50% {
    left: 500px;
    top: 0px
  }

  100% {
    left: 300px;
    top: 900px
  }
}

@keyframes p3 {
  0% {
    left: 300px;
    top: 900px
  }

  50% {
    left: 500px;
    top: 0px
  }

  100% {
    left: 300px;
    top: 900px
  }
}

@-webkit-keyframes p4 {
  0% {
    left: 1000px;
    top: 500px
  }

  50% {
    left: 00px;
    top: 500px
  }

  100% {
    left: 1000px;
    top: 500px
  }
}

@keyframes p4 {
  0% {
    left: 1000px;
    top: 500px
  }

  50% {
    left: 0px;
    top: 500px
  }

  100% {
    left: 1000px;
    top: 500px
  }
}

@-webkit-keyframes p5 {
  0% {
    left: 500px;
    top: 1000px
  }

  50% {
    left: 50%;
    top: 0px
  }

  100% {
    left: 500px;
    top: 1000px
  }
}

@keyframes p5 {
  0% {
    left: 500px;
    top: 1000px
  }

  50% {
    left: 50%;
    top: 0px
  }

  100% {
    left: 500px;
    top: 1000px
  }
}

@-webkit-keyframes p6 {
  0% {
    left: 500px;
    top: 200px
  }

  50% {
    left: 50%;
    top: 70%
  }

  100% {
    left: 500px;
    top: 200px
  }
}

@keyframes p6 {
  0% {
    left: 500px;
    top: 200px
  }

  50% {
    left: 50%;
    top: 70%
  }

  100% {
    left: 500px;
    top: 200px
  }
}

@-webkit-keyframes p7 {
  0% {
    left: 50px;
    top: 10%
  }

  50% {
    left: 50%;
    top: 10%
  }

  100% {
    left: 50px;
    top: 10%
  }
}

@keyframes p7 {
  0% {
    left: 50px;
    top: 10%
  }

  50% {
    left: 50%;
    top: 10%
  }

  100% {
    left: 50px;
    top: 10%
  }
}

@-webkit-keyframes p8 {
  0% {
    left: 0;
    top: 20%
  }

  50% {
    left: 50%;
    top: 20%
  }

  100% {
    left: 0;
    top: 20%
  }
}

@keyframes p8 {
  0% {
    left: 0;
    top: 20%
  }

  50% {
    left: 50%;
    top: 20%
  }

  100% {
    left: 0;
    top: 20%
  }
}

@-webkit-keyframes p9 {
  0% {
    left: 1000px;
    top: 100px
  }

  50% {
    left: 500px;
    top: 950px
  }

  100% {
    left: 1000px;
    top: 100px
  }
}

@keyframes p9 {
  0% {
    left: 1000px;
    top: 100px
  }

  50% {
    left: 500px;
    top: 950px
  }

  100% {
    left: 1000px;
    top: 100px
  }
}


/*-----------------------
    Bubble-Animation
    ------------------------*/
.bubble-animate {
  position: absolute;
  left: -215px;
  bottom: 0;
  width: 162%;
  height: 100%;
  overflow: hidden;
}

.circle {
  background:
    #0C5ADB;
  bottom: 0;
  position: absolute;
  border-radius: 50%;
}

.circle.small {
  width: 15px;
  height: 15px;
  opacity: 0.7;
}

.circle.small.square1 {
  left: 18%;
  top: 100%;
  -webkit-animation-name: smallBubble;
  animation-name: smallBubble;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.small.square2 {
  left: 36%;
  top: 100%;
  -webkit-animation-name: smallBubble;
  animation-name: smallBubble;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.small.square3 {
  left: 54%;
  top: 100%;
  -webkit-animation-name: smallBubble;
  animation-name: smallBubble;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.small.square4 {
  left: 72%;
  top: 100%;
  -webkit-animation-name: smallBubble;
  animation-name: smallBubble;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.small.square5 {
  left: 90%;
  top: 100%;
  -webkit-animation-name: smallBubble;
  animation-name: smallBubble;
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.medium {
  width: 35px;
  height: 35px;
  opacity: 0.45;
}

.circle.medium.square1 {
  left: 21%;
  top: 100%;
  -webkit-animation-name: mediumBubble;
  animation-name: mediumBubble;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.medium.square2 {
  left: 42%;
  top: 100%;
  -webkit-animation-name: mediumBubble;
  animation-name: mediumBubble;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.medium.square3 {
  left: 63%;
  top: 100%;
  -webkit-animation-name: mediumBubble;
  animation-name: mediumBubble;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.medium.square4 {
  left: 84%;
  top: 100%;
  -webkit-animation-name: mediumBubble;
  animation-name: mediumBubble;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.medium.square5 {
  left: 105%;
  top: 100%;
  -webkit-animation-name: mediumBubble;
  animation-name: mediumBubble;
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.medium.square5 {
  left: 5%;
  top: 100%;
  -webkit-animation-name: mediumBubble;
  animation-name: mediumBubble;
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.large {
  width: 100px;
  height: 100px;
  opacity: 0.35;
}

.circle.large.square1 {
  left: 21%;
  top: 100%;
  -webkit-animation-name: bigBubble;
  animation-name: bigBubble;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.large.square2 {
  left: 42%;
  top: 100%;
  -webkit-animation-name: bigBubble;
  animation-name: bigBubble;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.large.square3 {
  left: 63%;
  top: 100%;
  -webkit-animation-name: bigBubble;
  animation-name: bigBubble;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 13s;
  animation-delay: 13s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.large.square4 {
  left: 84%;
  top: 100%;
  -webkit-animation-name: bigBubble;
  animation-name: bigBubble;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.circle.large.square5 {
  left: 105%;
  top: 100%;
  -webkit-animation-name: bigBubble;
  animation-name: bigBubble;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 13s;
  animation-delay: 13s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes smallBubble {
  0% {
    top: 100%;
    margin-left: 10px;
  }

  25% {
    margin-left: -10px;
  }

  50% {
    margin-left: 10px;
  }

  75% {
    margin-left: -10px;
  }

  100% {
    top: 0%;
    opacity: 0;
    margin-left: 0px;
  }
}

@keyframes smallBubble {
  0% {
    top: 100%;
    margin-left: 10px;
  }

  25% {
    margin-left: -10px;
  }

  50% {
    margin-left: 10px;
  }

  75% {
    margin-left: -10px;
  }

  100% {
    top: 0%;
    opacity: 0;
    margin-left: 0px;
  }
}

@-webkit-keyframes mediumBubble {
  0% {
    top: 100%;
    margin-left: 15px;
  }

  25% {
    margin-left: -15px;
  }

  50% {
    margin-left: 15px;
  }

  75% {
    margin-left: -15px;
  }

  100% {
    top: 0%;
    opacity: 0;
    margin-left: 0px;
  }
}

@keyframes mediumBubble {
  0% {
    top: 100%;
    margin-left: 15px;
  }

  25% {
    margin-left: -15px;
  }

  50% {
    margin-left: 15px;
  }

  75% {
    margin-left: -15px;
  }

  100% {
    top: 0%;
    opacity: 0;
    margin-left: 0px;
  }
}

@-webkit-keyframes bigBubble {
  0% {
    top: 100%;
    margin-left: 20px;
  }

  25% {
    margin-left: -20px;
  }

  50% {
    margin-left: 20px;
  }

  75% {
    margin-left: -20px;
  }

  100% {
    top: 0%;
    opacity: 0;
    margin-left: 0px;
  }
}

@keyframes bigBubble {
  0% {
    top: 100%;
    margin-left: 20px;
  }

  25% {
    margin-left: -20px;
  }

  50% {
    margin-left: 20px;
  }

  75% {
    margin-left: -20px;
  }

  100% {
    top: 0%;
    opacity: 0;
    margin-left: 0px;
  }
}

/*-----Nivo Slider---*/
.nivo_slider_area {
  position: relative;
}

.nivo-caption {
  background: rgba(0, 0, 0, 0.0);
  height: 100%;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.em_slider_inner {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9999;
}

#mainSlider img {
  width: 100%;
}

.em-slider-main-title {
  font-size: 60px;
  text-transform: uppercase;
  color: #1E1666;
  font-weight: 900;
  display: block;
  margin: 0;
  line-height: 1.1;
}

.em-slider-txt {
  width: 65%;
  text-align: left;
  color: #6a7c92;
  margin: 20px 0 20px;
  font-size: 18px;
}

.em-button-button-area a {
  border: 1px solid #ccc;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  margin-right: 10px;
  margin-top: 12px;
  padding: 15px 41px;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 999;
  letter-spacing: 1px;
  border-radius: 5px;
}

a.em-active-button {
  background: #2513d1;
  border-color: #2513d1;
}

.em-active-button:hover {
  color: #fff;
  background: #1E1666;
  border-color: #1E1666;
}


/*--directionNav--**/
.em-nivo-slider-wrapper .nivo-directionNav a {
  top: 50%;
  transform: translateY(-50%);
  height: 75px;
  width: 50px;
  line-height: 75px;
  text-align: center;
  display: block;
  color: #0c5adb;
  font-size: 40px;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  border-radius: 0;
  background: #fff;
  margin-right: 30px;
}

.em-nivo-slider-wrapper .nivo-directionNav .nivo-nextNav {
  left: auto;
  right: 0;
}

.em-nivo-slider-wrapper .nivo-directionNav a:hover {
  background: #7744D9;
  border-color: #7744D9;
  color: #fff;
}

.em-nivo-slider-wrapper:hover .nivo-directionNav a {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  left: 50px;
}

.em-nivo-slider-wrapper:hover .nivo-directionNav .nivo-nextNav {
  left: auto;
  right: 50px;
}

/*-----Carousel Section---*/
.carousel-slider-section {
  position: relative;
}

.section-height {
  height: 850px;
}

.carousel-slider-one {
  background: url("assets/images/carousel/bg-1.jpg") no-repeat center/cover scroll;
}

.carousel-slider-two {
  background: url("assets/images/carousel/bg-2.jpg") no-repeat center/cover scroll;
}

.slider-content {
  float: left;
}

.video.carousel-video {
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
}

.slider-content h1 {
  font-size: 70px;
  margin: 0;
  line-height: 1;
  font-weight: 800;
}

.slider-content h2 {
  font-size: 60px;
  margin: 0;
  line-height: 1;
  font-weight: 800;
}

.slider-content p {
  font-size: 18px;
  margin: 25px 0 36px;
}



/*-----Swiper Section---*/
.swiper-container {
  width: 100%;
  height: 870px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-wrapper .hero-content h2,
.swiper-wrapper .hero-content h1 {
  font-weight: 800;
}

.hero-content h2 span {
  color: #2513D1;
}

.swiper-wrapper .hero-video {
  margin-bottom: 65px;
}

.swiper-wrapper .hero-content p {
  margin: 18px 0 35px;
}

.swiper-wrapper .hero-content h5 {
  color: #6a7c92;
}

.swiper-btn {
  display: inline-block;
  margin-right: 25px;
}

.swiper-btn a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 500;
  overflow: hidden;
  background: #2513d1;
  text-transform: capitalize;
  transition: .5s;
  padding: 10px 35px;
  border-radius: 5px;
  z-index: 1;
}

.swiper-btn:hover a {
  color: #fff;
  background: #1e1666;
}

.swiper-btn.style-two a {
  color: #fff;
  background: #1e1666;
}

.swiper-btn.style-two:hover a {
  background: #2513d1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  height: 60px;
  width: 60px;
  border-radius: 5px;
  transition: .5s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #2513D1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 26px;
  font-weight: 900;
}

.swiper-container:hover .swiper-button-prev {
  left: 40px;
}

.swiper-container:hover .swiper-button-next {
  right: 40px;
}





/*-------Owl Nav---*/
.owl-prev,
.owl-next {
  position: absolute;
  background-color: #2513d1;
  border-radius: 3px;
  height: 60px;
  top: 50%;
  transform: translate(0px, -50%);
  width: 60px;
  z-index: 1;
  transition: all 0.3s ease 0s;
  line-height: 60px;
  color: #fff;
  border: 2px solid #2513d1;
  text-align: center;
  font-size: 25px;
}

.owl-prev {
  left: 0;
}

.owl-next {
  right: 0;
}

.carousel-slider-section:hover .owl-prev {
  left: 30px;
}

.carousel-slider-section:hover .owl-next {
  right: 30px;
}

/*-------Owl Dots---*/
.owl-dots {
  text-align: center;
}

.owl-dot {
  background: #bfcadc;
  height: 5px;
  width: 25px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 5px;
  transition: .5s;
}

.owl-dot.active {
  background: #2513d1;
  width: 35px;
}

.service-carousel .owl-dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
}



/*-------Breadcumb Style---*/
.breadcumb-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(assets/images/bg/bg-2.jpg) no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-career {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url(assets/images/bg/career-photo.avif) no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-lifeatlp {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url(assets/images/bg/Team\ Image.png) no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-finetech {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/fintech-1.jpg") no-repeat center/cover !important;
  height: 560px;
  position: relative;
}
.breadcumb-section-email {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/email.jfif") no-repeat center/cover !important;
  height: 560px;
  position: relative;
}
.breadcumb-section-delivery {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/delivery.cms") no-repeat center/cover !important;
  height: 560px;
  position: relative;
}
.breadcumb-section-auto {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/Mercedes+GLB+200+1.jpg") no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-logistic {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/logistics_header_sp.png") no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-healthcare {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/HEALTHCARE.png") no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-pod {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/what-is-print-on-demand-gearment.jpeg") no-repeat center/contain !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-project {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url(assets/images/bg/Untitled\ design.png) center/contain !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-manu {
  background: linear-gradient(to right, rgba(05, 45, 70, 0.7), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/Manufacturing-warehouse.jpg") center/contain !important;
  height: 560px;
  position: relative;
}

.breadcumb-section.faq-bd {
  height: 520px;
}

.breadcumb-section-aboutus {
  background: linear-gradient(rgba(05, 45, 70, 0.9), rgba(05, 45, 70, 0.7)), url("./assets/images/blog/Untitled\ design.gif") no-repeat center/cover !important;
  height: 560px;
  position: relative;
}
.breadcumb-section-aboutus2 {
  background: linear-gradient(rgba(05, 45, 70, 0.9), rgba(05, 45, 70, 0.7)), url(./assets/images/bg/MicrosoftTeams-image\ \(2\).png) no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-edu {
  background: linear-gradient(rgba(05, 45, 70, 0.9), rgba(05, 45, 70, 0.7)), url("./assets/images/bg/E-learning-facility-for-Pakistani-Students.jpg") no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-contactUS {
  background: linear-gradient(rgba(05, 45, 70, 0.9), rgba(05, 45, 70, 0.7)), url(./assets/images/bg/bg-5.jpg) no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-ERP {
  background: linear-gradient(rgba(05, 45, 70, 0.9), rgba(05, 45, 70, 0.7)), url('./assets/images/bg/difference-between-erp-and-mrp-system.jpg') no-repeat center/cover !important;
  height: 560px;
  position: relative;
}
.breadcumb-section-lifeatlp {
  background: linear-gradient(rgba(05, 45, 70, 0.9), rgba(05, 45, 70, 0.7)), url('./assets/images/blog/lifeatlpcloudbanner.webp') no-repeat center/cover !important;
  height: 560px;
  position: relative;
}

.breadcumb-section-service {
  background: linear-gradient(rgba(05, 45, 70, 0.9), rgba(05, 45, 70, 0.7)), url(./assets/images/bg/MicrosoftTeams-image\ \(4\).png) center !important;
  height: 560px;
  position: relative;
}


.breadcumb-content {
  position: relative;
  top: 95%;
  transform: translateY(-50%);
}

.breadcumb-content h1 {
  font-size: 45px;
  color: #fff;
  margin-bottom: 20px;
}

.breadcumb-content ul li {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 5px;
}

.breadcumb-content ul li a {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}



/*-----About Section---*/
.about-content-wrapper {
  padding-left: 25px;
}

.section-head h2 {
  font-size: 39px;
  margin-bottom: 0px;
  text-transform: capitalize;
  margin-top: 0;
  line-height: 1.2;
  font-weight: 800;
}

.section-head h2 span {
  color: #2513d1;
}

.bar {
  margin: 20px 0 20px;
}

.bar {
  width: 52px;
  height: 4px;
  border: 4px solid transparent;
  border-top-color: #2513d1;
}

.about-feature .single-content {
  margin-bottom: 12px;
}

.about-feature .content-icon i {
  color: #2513d1;
  font-size: 18px;
  margin-right: 32px;
}

.content-desc p {
  margin-bottom: 0;
}

.btn-common.style-two a {
  padding: 9px 40px;
  border: 2px solid #2513d1;
}

.btn-common.style-two a:hover {
  color: #2513d1;
}

.block-text p {
  color: #232323;
  font-size: 21px !important;
  font-weight: 300;
}

/*-----About Section Style-Two---*/
.about-section.style-two .about-content-wrapper {
  padding-left: 14px;
}

.about-section.style-two .about-feature {
  margin-top: 33px;
}

.about-section.style-two .about-feature .content-icon i {
  font-size: 26px;
}

/*-----About Section Style-Two  > about-counter-inner---*/
.about-section.style-two .about-counter-inner h4 {
  color: #1e1666;
  font-size: 18px;
  font-weight: 500;
}

.about-section.style-two .content-desc p {
  margin-top: 0;
}

/*-----About Section Style-Three---*/
.about-section.style-three .about-feature .content-icon i {
  font-size: 26px;
  margin-right: 28px;
}

.about-section.style-three .single-content p {
  margin-top: 5px;
}


/*-----About Section Style-Four---*/
.about-experience {
  background: #002C47;
  display: block;
  padding: 35px 40px 35px;
  width: 60%;
  border-top: 5px solid #0c5adb;
  margin-left: 135px;
  position: relative;
  margin-top: -70px;
}

.experience-year h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  margin-bottom: -7px;
  margin-top: -10px;
}

.experience-year span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
}

.experience-desc p {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-left: 40px;
}

.about-section.style-four .about-content-wrapper {
  padding-left: 14px;
}

.about-section.style-four .content-icon i {
  color: #ffffff;
  background-color: #2513d1;
  font-size: 30px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 100px 100px 100px 100px;
  display: inline-block;
  text-align: center;
}

.about-section.style-four .content-desc h4 {
  margin-bottom: 5px;
}

.about-section.style-four .content-desc p {
  margin: 0;
  color: #6a7c92;
  font-weight: 500;
}

.about-section.style-four .content-icon i {
  margin-right: 25px;
}

/*-----About Section Style-Five---*/
.about-section.style-five .section-thumb {
  position: relative;
}

.about-section.style-five .section-thumb .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-section.style-five .about-content-wrapper {
  padding-left: 14px;
}

.about-section.style-five .content-icon i {
  color: #ffffff;
  background-color: #2513d1;
  font-size: 25px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
}

.about-section.style-five .content-desc h4 {
  margin-bottom: 5px;
}

.about-section.style-five .content-desc p {
  margin: 0;
  color: #6a7c92;
  font-weight: 500;
}

.about-section.style-five .content-icon i {
  margin-right: 25px;
}

.about-section.style-five .about-feature p {
  margin-top: 10px;
}

/*-----About Section Style-Six---*/
.about-section.style-six .about-single-feature {
  text-align: center;
  box-shadow: 0 0 3px #cccccc;
  padding: 20px 15px 20px;
  transition: .5s;
  background: #fff;
  margin-bottom: 30px;
}

.about-section.style-six .about-single-feature h4 {
  font-size: 22px;
  padding-top: 20px;
  margin-bottom: 5px;
}

.about-section.style-six .about-single-feature p {
  margin: 0;
}

.about-section.style-six .about-single-feature:hover {
  box-shadow: 0 0 10px #cccccc;
  transform: translate3d(0, -10px, 0);
}

.about-section.style-six .about-content-wrapper {
  padding-left: 30px;
}

.about-section.style-six .change-position {
  margin-top: -30px;
  z-index: 10;
}

/*-----About Section Style-Seven---*/
.about-section.style-seven .about-content p {
  font-size: 17px;
  margin-bottom: 45px;
}

.about-section.style-seven .about-content i {
  color: #2513d1;
  font-size: 20px;
  margin-right: 10px;
}

.about-section.style-seven .about-content ul li {
  color: #1e1666;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 25px;
}

/*-----About Section Style-Eight---*/
.about-section.style-eight .about-text {
  color: #616161;
  font-family: Rubik;
}


/*-----About Section Style-Nine---*/
.about-section.style-nine .bold-text p {
  font-weight: bold;
  font-style: italic;
  color: #343a40;
  font-size: 21px;
}

.about-section.style-nine .about-text {
  color: #616161;
  font-family: Rubik;
  font-size: 15px;
  margin-bottom: 30px;
}

.video.color-two h3 {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  padding-left: 26px;
}


/*--------About Section Style-Nine Flip Box Style---------*/
.single-flip-box {
  position: relative;
  text-align: center;
  height: 220px;
  width: 100%;
  display: block;
}

.flip-box-one .front-side {
  background: linear-gradient(rgb(36, 18, 201, 0.89), rgb(36, 18, 201, 0.89)), url(assets/images/team/tm-4.jpg) no-repeat center/cover;
}

.flip-box-one .back-side {
  background: linear-gradient(rgb(36, 18, 201, 0.89), rgb(36, 18, 201, 0.89)), url(assets/images/team/tm-2.jpg) no-repeat center/cover;
}

.flip-box-two .front-side {
  background: linear-gradient(rgb(245, 58, 0, 0.87), rgb(245, 58, 0, 0.87)), url(assets/images/team/tm-2.jpg) no-repeat center/cover;
}

.flip-box-two .back-side {
  background: linear-gradient(rgb(245, 58, 0, 0.87), rgb(245, 58, 0, 0.87)), url(assets/images/team/tm-3.jpg) no-repeat center/cover;
}

.flip-box-three .front-side {
  background: linear-gradient(rgb(251, 35, 154, 0.87), rgb(251, 35, 154, 0.87)), url(assets/images/team/tm-1.jpg) no-repeat center/cover;
}

.flip-box-three .back-side {
  background: linear-gradient(rgb(251, 35, 154, 0.87), rgb(251, 35, 154, 0.87)), url(assets/images/team/tm-4.jpg) no-repeat center/cover;
}

.flip-box-four .front-side {
  background: linear-gradient(rgb(123, 199, 77, 0.86), rgb(123, 199, 77, 0.86)), url(assets/images/team/tm-3.jpg) no-repeat center/cover;
}

.flip-box-four .back-side {
  background: linear-gradient(rgb(123, 199, 77, 0.86), rgb(123, 199, 77, 0.86)), url(assets/images/team/tm-1.jpg) no-repeat center/cover;
}

.front-side,
.back-side {
  height: 100%;
  width: 100%;
  position: absolute;
  transition: 1s;
  transform-style: preserve-3d;
}

.front-side h3 {
  color: #fff;
  font-size: 22px;
}

.back-side p {
  color: #fff;
  padding: 0 15px;
}

.back-side .btn-flip-box a {
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 18px;
  background: #fff;
  transition: .5s;
  color: #2513D1;
}

.back-side .btn-flip-box a:hover {
  color: #fff;
  background: #2513D1;
}

.flip-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.front-side {
  transform: rotateY(0deg);
  z-index: 1;
}

.back-side {
  transform: rotateY(-180deg);
  z-index: 0;
}

.single-flip-box:hover .front-side {
  transform: rotateY(-180deg);
  z-index: 0;
}

.single-flip-box:hover .back-side {
  transform: rotateY(0deg);
  z-index: 1;
}


/*--------About Section Style-Ten---------*/
.about-single-thumb {
  position: relative;
}

.about-single-thumb .video.about-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/*--Start Tabs Section---*/
.ui-widget.ui-widget-content {
  border: none;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  padding: 1em 2.1em;
}

.ui-widget-header {
  border: none;
  background: transparent;
}

#tabs {
  border: none;
  background: transparent;
  margin-top: 15px;
}

#tabs .tabs-btn-list li {
  border: 1px solid #ddd;
  background: transparent;
  margin-right: 10px;
  transition: .3s;
}

#tabs .tabs-btn-list li:hover {
  border: 1px solid #2513D1;
  background: #2513D1;
  color: #fff;
}

#tabs .tabs-btn-list li a {
  color: #6b6b6b;
}

#tabs .tabs-btn-list li:hover a {
  color: #fff;
}

#tabs .tabs-btn-list .ui-state-active {
  border-color: #2513D1;
  background: #2513D1;
  margin-right: 10px;
}

#tabs .tabs-btn-list .ui-state-active a {
  color: #fff;
}

.ui-tabs,
.ui-tabs .ui-tabs-panel {
  padding: 0;
}

.tabs-content-area {
  padding-top: 30px;
  color: #6d6d6d;
}

.tabs-inner-list {
  padding-left: 15px;
  padding-bottom: 25px;
}

.tabs-inner-list li {
  list-style: square;
}

.tabs-content-area p {
  font-family: 'Rubik', sans-serif;
}

.btn-common.tabs-inner-btn {
  margin-top: 10px;
}

.btn-common.tabs-inner-btn a:hover {
  border: 1px solid #FF3C00;
  border-radius: 6px;
  color: #FF3C00;
}

.award-content {
  text-align: center;
  padding: 0 16px;
  margin-top: 20px;
}

.award-single-title h5 {
  color: #444;
  font-weight: 700;
}

.award-content p {
  text-align: center !important;
  margin: 0;
}








/*-----Video Section---*/
.video-section {
  background: transparent url("assets/images/bg/bg-8.jpg") center center/cover no-repeat scroll;
}

/*-----Video Section Style-Two---*/
.video-section.style-two {
  background: transparent url("assets/images/bg/bg-6.jpg") center center/cover no-repeat scroll;
}

.video-wrapper .section-head.style-two p {
  width: 56%;
}


/*-----Video Section Style-Three---*/
.video-section.style-three {
  background: transparent url("assets/images/bg/bg-6.jpg") center center/cover no-repeat scroll;
  position: relative;
}

.video-section.style-three .video-wrapper {
  position: relative;
}

.video-section.style-three .video {
  left: 0;
  right: 0;
  position: absolute;
  top: -125px;
  text-align: center;
}

.video-section.style-three .section-head h5 {
  color: #fff;
  margin: 0 0 10px;
}

/*-----Video Section Style-Four---*/
.video-section.style-four {
  background: transparent url("assets/images/bg/bg-6.jpg") center center/cover no-repeat scroll !important;
}

.video-section.style-four .video i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
}

/*-----Video Section Style-Five---*/
.video-section.style-six {
  /* background: transparent url("assets/images/bg/AiDE_banner.jpg") center center/cover no-repeat scroll !important; */
  background: linear-gradient(to right, rgba(30, 71, 220, 0.7), rgba(32, 70, 205, 0.7)), transparent url("assets/images/bg/healthcare.webp") center center/cover no-repeat scroll !important;
}

.video-section.style-Seven {
  /* background: transparent url("assets/images/bg/AiDE_banner.jpg") center center/cover no-repeat scroll !important; */
  background: linear-gradient(to right, rgba(30, 71, 220, 0.7), rgba(32, 70, 205, 0.7)), transparent url("assets/images/bg/e") center center/cover no-repeat scroll !important;
}

.video-section.style-five {
  /* background: transparent url("assets/images/bg/AiDE_banner.jpg") center center/cover no-repeat scroll !important; */
  background: linear-gradient(to right, rgba(30, 71, 220, 0.7), rgba(32, 70, 205, 0.7)), transparent url("assets/images/bg/AiDE_banner.jpg") center center/cover no-repeat scroll !important;
}


.video-section.style-six.bg_two {
  background: linear-gradient(rgba(17, 26, 58, 0.75), rgba(17, 26, 58, 0.75)), transparent url("assets/images/bg/bg-6.jpg") center center/cover no-repeat scroll !important;
  padding-bottom: 230px;
}

.video-section.style-six.bg_three {
  background: transparent url("assets/images/bg/bg-11.jpg") center center/cover no-repeat scroll !important;
  padding-bottom: 230px;
}

.video-section.bg_three.pt-80 {
  padding-bottom: 165px;
}

.video-section.style-five.bg_four {
  background: transparent url("assets/images/bg/bg-3.jpg") center center/cover no-repeat scroll !important;
}

.video-section.style-five.bg_two {
  background: linear-gradient(rgba(17, 26, 58, 0.75), rgba(17, 26, 58, 0.75)), transparent url("assets/images/bg/bg-6.jpg") center center/cover no-repeat scroll !important;
  padding-bottom: 230px;
}

.video-section.style-five.bg_three {
  background: transparent url("assets/images/bg/bg-11.jpg") center center/cover no-repeat scroll !important;
  padding-bottom: 230px;
}

.video-section.bg_three.pt-80 {
  padding-bottom: 165px;
}

.video-section.style-five.bg_four {
  background: transparent url("assets/images/bg/bg-3.jpg") center center/cover no-repeat scroll !important;
}

.video.video-icon-two a {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100%;
  color: #2513d1;
  background: #fff;
  display: inline-block;
  text-align: center;
  position: relative;
  -webkit-animation: murad 1s linear infinite;
  animation: murad 1.5s linear infinite;
  -webkit-transition: .5s;
  font-size: 28px;
  z-index: 1;
}

.video.video-icon-two i {
  color: #2513d1;
  background: #fff;
}

@-webkit-keyframes murad {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.4)
  }

  100% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3), 0 0 0 40px rgba(255, 255, 255, 0)
  }
}

@keyframes murad {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.4)
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 40px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 40px rgba(255, 255, 255, 0)
  }
}

.video-section.style-five p {
  color: rgba(255, 255, 255, 0.90);
  width: 30%;
  margin: 20px auto;
}

.video-section.style-six p {
  color: rgba(255, 255, 255, 0.90);
  width: 50%;
  margin: 20px auto;
}

.btn-video a {
  display: inline-block;
  text-transform: capitalize;
  background-color: #2513d1;
  border-radius: 4px;
  color: #fff;
  padding: 12px 31px;
  -webkit-transition: .5s;
  transition: .5s;
  font-weight: 500;
  font-family: 'Fira Sans', sans-serif;
}

.btn-video a:hover {
  background: #fff;
  color: #2513d1;
}

/*-----Service-Section---*/
.section-head.style-two {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.section-head.style-two .bar {
  display: inline-block;
  margin: 20px auto 0px;
}

.section-head h5 {
  color: #2513d1;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
  margin: 0 0 5px;
}

.section-head p {
  font-size: 17px;
}

.section-head.style-two p {
  width: 65%;
  margin: 10px auto 0;
}

.single-service {
  background: #fff;
  padding: 40px 30px 35px;
  text-align: center;
  transition: .5s;
  margin-bottom: 30px;
}

.single-service:hover {
  -webkit-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, .1);
  box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, .1);
}

.service-icon i {
  display: inline-block;
  height: 120px;
  width: 120px;
  font-size: 45px;
  line-height: 115px;
  color: #fff;
  transition: .5s;
  background: url(assets/images/shape/shape-4.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  text-align: center;
}

.service-icon.bg-2 i {
  background: url(assets/images/shape/shape-5.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  text-align: center;
}

.service-icon.back-three i {
  background: url(assets/images/shape/shape-6.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  text-align: center;
}

.service-icon.bg-four i {
  background: url(assets/images/shape/shape-7.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  text-align: center;
}

.service-icon.bg-five i {
  background: url(assets/images/shape/shape-8.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  text-align: center;
}

.service-icon.bg-six i {
  background: url(assets/images/shape/shape-9.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center center !important;
  text-align: center;
}

.service-title h4 {
  margin: 10px 0;
}

.service-content p {
  margin-top: 0;
  transition: .5s;
}

.service-btn a {
  color: #2513d1;
  margin-top: 5px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}

.service-btn a i {
  transition: .5s;
}

.service-btn a:hover i {
  margin-left: 10px;
}

.service-section.style-one.bg-two .single-service:hover .service-icon i {
  transform: rotateY(180deg);
}

/*-----Service-Section Style Two---*/
.service-section.style-two .single-service {
  border: 1px solid #ddd;
  padding: 74px 30px 40px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 2;
}

.service-section.style-two .single-service::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: url(assets/images/bg/bg-4.jpg) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  transform: scale(1.2);
  opacity: 0;
  transition: .5s;
}

.service-section.style-two .single-service:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-section.style-two .single-service::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(37, 19, 209, 0.8);
  opacity: 0;
  transition: .5s;
  z-index: -1;
}

.service-section.style-two .single-service:hover::after {
  opacity: 1;
}

.service-section.style-two .single-service .service-icon i {
  font-size: 60px;
  color: #2513d1;
  background: none;
  height: 0;
  width: 0;
  line-height: 0;
  transition: .5s;
}

.service-section.style-two .single-service .service-title h4 {
  margin: 20px 0;
  font-size: 26px;
  transition: .5s;
  padding-right: 15px;
}

.read-more-btn a {
  text-transform: capitalize;
  font-weight: 700;
  color: #1e1666;
  font-family: 'Nunito', sans-serif;
  transition: .5s;
}

.service-section.style-two .single-service p {
  transition: .5s;
}

.service-content {
  z-index: 5;
}

.service-section.style-two .single-service:hover .service-title h4,
.service-section.style-two .single-service:hover .service-icon i,
.service-section.style-two .single-service:hover p,
.service-section.style-two .single-service:hover .read-more-btn a {
  color: #fff;
}

.btn-see-all {
  margin: auto;
}


/*-----Service-Section Style-Three---*/
.service-section.style-three .single-service {
  padding: 40px 25px 38px;
  box-shadow: 0 0 1px #cccccc;
  border-radius: 10px;
}

.service-section.style-three .single-service:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 50px 0 rgba(0, 0, 0, .08);
  box-shadow: 0 5px 50px 0 rgba(0, 0, 0, .08);
}

.service-section.style-three .single-service p {
  margin-bottom: 0;
}

.service-section.style-three .service-icon {
  position: relative;
  display: inline-block;
}

.service-section.style-three .service-icon i {
  height: 70px;
  width: 70px;
  font-size: 28px;
  line-height: 70px;
  color: #2513d1;
  background: #ECECFF;
  border-radius: 50%;
}

.service-section.style-three .service-icon span i {
  position: absolute;
  top: -27px;
  right: 19px;
  font-size: 16px;
  background: none;
  height: 0;
  width: 0;
}


/*-----Service-Section Style-Four---*/
.service-section.style-four .services-single-feature {
  display: flex;
  background: #fff;
  border-radius: 5px;
  position: relative;
  padding: 14px 14px 14px 73px;
  transition: .5s;
  z-index: 1;
  margin-bottom: 23px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}

.service-section.style-four .services-single-feature::before {
  background: #2513d1;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  border-radius: 5px;
  transition: .5s;
}

.service-section.style-four .services-single-feature:hover::before {
  width: 100%;
}

.service-section.style-four .services-single-feature .feature-icon i {
  position: absolute;
  left: 0;
  width: 55px;
  height: 100%;
  line-height: 50px;
  background: #2513d1;
  text-align: center;
  top: 0;
  border-radius: 5px 0 0 5px;
  transition: .5s;
  font-size: 23px;
  color: #fff;
}

.service-section.style-four .services-single-feature .service-title h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  transition: .5s;
}

.service-section.style-four .services-single-feature:hover .service-title h5 {
  color: #fff;
}

.service-section.style-four .feature-title h4 {
  font-size: 22px;
}

.service-section.style-four .single-feature-right .feature-icon i {
  font-size: 55px;
}

/*-----Service-Section Style-Five---*/
.service-section.style-five .single-service {
  padding: 45px 30px 35px;
  text-align: center;
  position: relative;
  background: #fff;
  transition: .5s;
  z-index: 1;
  -webkit-box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  margin-bottom: 30px;
}

.service-section.style-five .single-service::before {
  width: 100%;
  height: 0px;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #2513d1;
  border-radius: 10px;
}

.service-section.style-five .single-service:hover::before {
  height: 100%;
}

.service-section.style-five .single-service .service-icon i {
  display: inline-block;
  height: 70px;
  width: 90px;
  line-height: 70px;
  background: #f4f7fc;
  text-align: center;
  font-size: 30px;
  color: #2513d1;
  border-radius: 30px 5px 30px 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.service-section.style-five .service-title h4 {
  margin: 25px 0 5px;
}

.service-section.style-five .read-more-btn a {
  color: #2513d1;
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.service-section.style-five .service-content p {
  transition: .5s;
}

.service-section.style-five .single-service:hover .service-title h4,
.service-section.style-five .single-service:hover .read-more-btn a,
.service-section.style-five .single-service:hover .service-content p {
  color: #fff;
}


/*-----Service-Section Style-Six---*/
.service-section.style-six .single-service {
  background: #f4f7fc;
  padding: 20px 30px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  text-align: left;
}

.service-section.style-six .single-service::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #2513d1;
  content: "";
  border-radius: 50px;
  z-index: -1;
  transition: .5s;
}

.service-section.style-six .single-service:hover::before {
  width: 100%;
}

.service-section.style-six .service-icon {
  float: left;
  margin-right: 20px;
  margin-top: 7px;
}

.service-section.style-six .service-icon i {
  font-size: 35px;
  background: #2513d1;
  height: 70px;
  width: 70px;
  display: inline-block;
  line-height: 70px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  transition: .5s;
}

.service-section.style-six .service-content h4 {
  font-size: 24px;
  margin-bottom: 5px;
  transition: .5s;
  padding-top: 20px;
}

.service-section.style-six .service-content p {
  margin-bottom: 0;
  transition: .5s;
}

.service-section.style-six .single-service:hover .service-content h4,
.service-section.style-six .single-service:hover .service-content p {
  color: #fff;
}

.service-section.style-six .single-service:hover .service-icon i {
  background: #fff;
  color: #2513d1;
}


/*-----Service-Section Style-Seven---*/
.service-section.style-seven .single-service {
  background: #fff;
  text-align: center;
  box-shadow: 0 0 10px #cccccc;
  border-radius: 7px;
  padding: 50px 20px 55px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.service-section.style-seven .single-service::before {
  position: absolute;
  content: "";
  left: 0;
  top: 100%;
  height: 100%;
  width: 100%;
  background: #2513d1;
  z-index: -1;
  transition: .5s;
}

.service-section.style-seven .single-service:hover::before {
  top: 0%;
}

.service-section.style-seven .single-service .service-title h4 {
  margin: 20px 0 10px;
}

.service-section.style-seven .single-service .service-icon {
  margin-bottom: 20px;
}

.service-section.style-seven .single-service .service-icon i {
  font-size: 55px;
  color: #2513d1;
  transition: .5s;
  display: inline-block;
  height: 0;
  background: none;
  line-height: 85px;
}

.service-section.style-seven .single-service .read-more-btn a {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
  display: inline-block;
  transition: .5s;
  border: 1px solid #e7e7e7;
  padding: 10px 30px;
  border-radius: 30px;
  color: #2513d1;
}

.service-section.style-seven .single-service .read-more-btn.style-two a {
  font-family: 'Roboto', sans-serif;
}

.service-section.style-seven .single-service .read-more-btn a i {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  color: #437eeb;
  font-size: 15px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 3px #cccccc;
  z-index: 1;
  margin-left: 5px;
  background: #ffffff;
}

.service-section.style-seven .single-service:hover .service-title h4,
.service-section.style-seven .single-service:hover .service-icon i,
.service-section.style-seven .single-service:hover .read-more-btn a,
.service-section.style-seven .single-service:hover p {
  color: #fff;
}

/*-----Service-Section Style-Eight---*/
.service-section.style-eight .single-service {
  padding: 20px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  margin: 5px 0 25px;
  box-shadow: 0 0 5px #cccccc;
}

.service-section.style-eight .service-thumb {
  position: relative;
}

.service-section.style-eight .single-service img {
  border-radius: 10px;
}

.service-section.style-eight .service-icon {
  position: absolute;
  right: 21px;
  bottom: -46px;
}

.service-section.style-eight .service-icon i {
  margin-bottom: 15px;
  display: inline-block;
  color: #2513d1;
  width: 70px;
  height: 70px;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  text-align: center;
  font-size: 35px;
  line-height: 70px;
}

.service-section.style-eight .service-content {
  overflow: hidden;
  padding: 33px 6px 0 3px;
}

.service-section.style-eight .service-title h4 {
  margin-top: 0;
  font-size: 22px;
}

.service-section.style-eight .service-btn {
  margin-top: 30px;
  position: relative;
}

.service-section.style-eight .service-btn a {
  border-radius: 0;
  color: #202220;
  display: block;
  -webkit-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: .3s;
  text-transform: capitalize;
  font-weight: 500;
  background: #F4F7FC;
  padding: 16px 22px;
  position: relative;
  font-size: 16px;
  z-index: 1;
  overflow: hidden;
}

.service-section.style-eight .service-btn a i {
  margin-left: 5px;
}

.service-section.style-eight .service-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  background: #fff;
  width: 29px;
  height: 2px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.service-section.style-eight .service-btn a::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 23%;
  height: 100%;
  z-index: -1;
  transform: skew(-29deg);
  padding-left: 20px;
  background: #2513d1;
  transition: .3s;
}

.service-section.style-eight .service-btn a::before {
  content: '';
  width: 0;
  height: 0;
  border-width: 5px 0 5px 7px;
  border-style: solid;
  display: block;
  right: 13px;
  border-color: transparent transparent transparent #f5f5f5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.service-section.style-eight .single-service:hover a {
  background: #2513d1;
  color: #fff;
}

.service-section.style-eight .single-service:hover .service-btn a::after {
  background: #000;
}

.service-section.style-eight .service-carousel .single-service {
  margin-left: 15px;
  margin-right: 15px;
}

/*-----Service-Section Style-Nine---*/
.service-section.style-nine .single-service {
  background: #ffffff;
  position: relative;
  -webkit-box-shadow: 0px 0px 11px 8px rgba(249, 249, 249, 1);
  -moz-box-shadow: 0px 0px 11px 8px rgba(249, 249, 249, 1);
  box-shadow: 0px 0px 11px 8px rgba(249, 249, 249, 1);
  padding: 30px 30px 25px;
  margin-bottom: 40px;
  text-align: left;
}

.service-section.style-nine .single-service::before {
  position: absolute;
  left: 0;
  content: "";
  height: 0%;
  width: 5px;
  top: 0;
  background: #2513d1;
  transition: .5s;
}

.service-section.style-nine .single-service:hover::before {
  height: 100%;
}

.service-section.style-nine .single-service .service-title h4 {
  margin: 0 0 20px 0;
  font-size: 22px;
  padding: 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.service-section.style-nine .single-service .service-title h4:hover {
  color: #2513d1;
}

.service-section.style-nine .service-icon i {
  margin-bottom: 15px;
  display: inline-block;
  color: #fff;
  background: #2513d1;
  height: 75px;
  width: 75px;
  text-align: center;
  line-height: 75px;
  font-size: 35px;
  margin-right: 30px;
}

.service-section.style-nine .content-inner p {
  margin: 0 0 5px;
}

.service-section.style-nine .btn-read-more a {
  border-radius: 30px;
  color: #2513d1;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-section.style-nine .service-content::after {
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  background-image: url(assets/images/shape/shape-13.png) !important;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
}


/*-----Service-Section Style-Ten---*/
.service-section.style-ten {
  padding-bottom: 350px;
}

.service-section.style-ten.no-p {
  padding-bottom: 40px;
}

.service-section.style-ten .service-items {
  margin-bottom: 30px;
}

.service-section.style-ten .service-items-icon {
  margin-right: 30px;
  margin-top: 10px;
}

.service-section.style-ten .service-items-icon i {
  color: #fff;
  font-size: 45px;
}

.service-section.style-ten .service-title h4 {
  margin: 0 0 15px;
  color: #fff;
}

.service-section.style-ten .service-content p {
  color: #fff;
}

.thumb-section .change-position {
  margin-top: -350px;
}

.section-thumb.margin-right {
  margin-right: 20px;
}

/*-----Service-Section Style-eleven---*/
.service-section.style-eleven .service-items {
  margin-bottom: 30px;
}

.service-section.style-eleven .service-items-icon {
  margin-right: 30px;
  margin-top: 10px;
}

.service-section.style-eleven .service-items-icon i {
  color: #2513d1;
  font-size: 45px;
}

.service-section.style-eleven .service-title h4 {
  margin: 0 0 15px;
  font-size: 22px;
}


/*-----Service-Section Style-Twelve---*/
.service-section.style-twelve {
  background: url(assets/images/bg/bg-11.jpg) no-repeat center/cover scroll !important;
}

.service-icon-list ul li {
  display: inline-block;
}

.service-icon-list ul {
  margin-bottom: 20px;
  margin-left: -5px;
}

.service-icon-list ul li a i {
  font-size: 45px;
  color: #fff;
  height: 80px;
  width: 80px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  line-height: 80px;
  text-align: center;
  margin: 8px;
  transition: .5s;
}

.service-icon-list ul li:hover i {
  color: #2513D1;
  background: #fff;
  border-color: #fff;
}

.service-section.style-twelve .service-content h3 {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

.service-section.style-twelve .service-content p {
  color: rgba(255, 255, 255, 0.83);
}

.service-section.style-twelve .section-content-area {
  margin-left: 25px;
}

/*-----Service-Section Style-thirteen---*/
.service-section.style-thirteen {
  padding-bottom: 350px;
}

.service-section.style-thirteen.no-p {
  padding-bottom: 40px;
}

.service-section.style-thirteen .service-items {
  margin-bottom: 30px;
}

.service-section.style-thirteen .service-items-icon {
  margin-right: 30px;
  margin-top: 10px;
}

.service-section.style-thirteen .service-items-icon i {
  color: #2513d1;
  font-size: 45px;
}

.service-section.style-thirteen .service-title h4 {
  margin: 0 0 15px;
  color: #1e1666;
}

.service-section.style-thirteen .service-content p {
  color: #6a7c92;
}

/*---Single Service Section----*/
.widget-title a {
  background: #2513d1;
  color: #fff;
  display: block;
  padding: 14px 15px 14px 18px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  font-family: Rubik;
  position: relative;
}

.widget-title a i {
  position: absolute;
  right: 16px;
  top: 40%;
  font-size: 13px;
  color: #8e8b8b;
}

.widget-title a:hover i {
  color: #fff;
}

.widget-pack {
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 20px 25px 0px 25px;
}

.widget-pack .pack-icon {
  color: #2513d1;
  font-size: 50px;
  margin-top: 10px;
  padding-right: 25px;
}

.pack-title h5 {
  color: #232323;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 2px;
}

.get-pack {
  margin-bottom: 25px;
}

.get-pack a {
  color: rgba(86, 86, 86, .8);
}

#single-service .pack-thumb {
  background: #2513d1;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.15);
}

.pack-thumb .call-to-action {
  padding: 15px 0;
}

.pack-thumb .call-to-action h4 {
  color: #ffffff;
  font-size: 18px;
  text-transform: capitalize;
  margin: 10px 0;
}

.pack-thumb .call-to-action h3 {
  color: #ffffff;
  font-size: 20px;
}

#single-service .appointment-form {
  background: #fff;
  padding: 41px 50px 15px;
  border-radius: 7px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

#single-service .appoinment-title h4 {
  font-size: 25px;
  font-weight: 800;
}

#single-service .appointment-form .form-control {
  background-color: #F4F7FC;
  color: #666;
}

#single-service .appointment-form textarea::placeholder {
  color: #666 !important;
  font-size: 17px;
}

#single-service .appointment-form .btn-submit {
  width: 100%;
  margin-bottom: 45px;
}

.overview-content h4 {
  color: #232323;
  font-size: 30px;
  text-transform: capitalize;
  margin-top: 30px;
  margin-bottom: 20px;
}

.overview-content h5 {
  font-size: 25px;
  text-transform: capitalize;
  margin-top: 25px;
  margin-bottom: 25px;
}

.single-feature-inner {
  background: #f4f7fc;
  height: 260px;
  border-radius: 10px 10px 10px 10px;
  margin-bottom: 20px;
  padding: 45px 15px 10px 15px;
  text-align: center;
}

.single-feature-inner i {
  font-size: 55px;
  color: #2513d1;
}

.single-feature-inner .feature-content h4 {
  font-size: 18px;
  text-transform: capitalize;
  margin: 10px 0px 15px 0px;
  color: #444;
}

.single-feature-inner .feature-content p {
  margin-bottom: 25px;
  color: rgba(86, 86, 86, .8);
}

.single-feature-box {
  display: flex;
  margin-bottom: 20px;
}

.single-feature-box:last-child {
  margin-bottom: 0;
}

.icon-inner i {
  font-size: 29px;
  text-align: center;
  color: #2513d1;
}

.right-text-inner {
  color: #616161;
  font-family: Rubik;
  font-weight: 300;
  padding-left: 25px;
}

/*-----Portfolio Section---*/
.portfolio_nav {
  margin: 0 auto 42px;
  text-align: center;
}

.portfolio_nav ul li {
  background: transparent;
  border: 1px dashed #2513d1;
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease 0s;
  text-transform: capitalize;
  padding: 10px 23px;
  font-weight: 500;
  position: relative;
  margin: 0 3px;
  margin-bottom: 7px;
  display: inline-block;
  color: #2513d1;
  cursor: pointer;
}

.portfolio_nav ul li:hover {
  color: #fff;
  background: #2513d1;
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio-thumb img {
  width: 100%;
}

.portfolio-thumb::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  top: 25px;
  content: "";
  opacity: 1;
  transition: .5s;
}

.portfolio-thumb:hover::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(37, 19, 209, .2)), to(blue));
  background-image: linear-gradient(to bottom, rgba(37, 19, 209, .4), #2513d1);
  top: 0;
  opacity: 1;
}

.portfolio-content {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  right: 0;
  bottom: 10%;
  left: 0;
  opacity: 1 !important;
  /* background: inherit; */
  margin: auto;
  /* padding: 0 18px; */
}

.portfolio-thumb:hover .portfolio-content {
  bottom: 15%;
}

.portfolio-content p {
  line-height: 1.2;
  margin: 5px 0 0;
  color: #fff;
}

.portfolio-content h4 {
  margin: 8px 0 0px;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
}

.portfolio-content h4 a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
}

.portfolio-content .btn-read-more a {
  background: #fff;
  display: inline-block;
  padding: 2px 20px;
  border-radius: 30px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #0C5ADB;
}


/*-----Portfolio Section Style-Two---*/
.portfolio-section.style-two .single-portfolio {
  box-shadow: 0 0 10px #cccccc;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.portfolio-section.style-two .portfolio-thumb {
  margin-bottom: 0;
}

.portfolio-section.style-two .portfolio-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  top: 25px;
  content: "";
  opacity: 1;
  transition: .5s;
}

.portfolio-section.style-two .portfolio-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  margin: auto;
  padding: 5px 18px 15px;
  background: #fff;
}

.portfolio-section.style-two .portfolio-content h4 a {
  color: #2513d1;
  font-weight: 700;
}

.portfolio-section.style-two .portfolio-content p {
  color: inherit;
  margin: 10px 0 10px;
}

.portfolio-social-link {
  opacity: 1;
  background: inherit;
  padding: 0;
  bottom: 0;
  top: 50%;
  right: 0;
  left: inherit;
  position: absolute;
}

.portfolio-social-link li {
  display: inline-block;
}

.portfolio-social-link li a {
  background: #2513d1 none repeat scroll 0 0;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  width: 45px;
  text-align: center;
  margin: 0 8px 0;
  transition: .5s;
  transform: rotate(1deg);
  opacity: 0;
}

.single-portfolio:hover .portfolio-social-link li a {
  transform: rotate(180deg);
  margin: 0 8px 0;
  opacity: 1;
}

.current_menu_item {
  background: #2513d1 !important;
  color: #fff !important;
}

/*icon style two*/
.single_portfolio_icon {
  opacity: 1;
  background: inherit;
  padding: 0;
  bottom: 0;
  top: 50%;
  right: 0;
  left: inherit;
  position: absolute;
}

.single_portfolio_icon a i {
  background: #2513d1 none repeat scroll 0 0;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  width: 45px;
  text-align: center;
  margin: 0 8px 0;
  transition: .5s;
  transform: rotate(1deg);
  opacity: 0;
}

.single-portfolio:hover .single_portfolio_icon a i {
  transform: rotate(180deg);
  margin: 0 8px 0;
  opacity: 1;
}


/*-----Portfolio Section Style-Three---*/
.portfolio-section.style-three .portfolio-social-link {
  padding: 0;
  top: 50%;
  right: 0;
  left: 0;
  text-align: center;
}

.portfolio-section.style-three .portfolio-social-link li a {
  height: 40px;
  line-height: 40px;
  width: 40px;
  transform: rotate(0deg);
  opacity: 0;
  border-radius: 50%;
  margin: 0 20px;
}

.portfolio-section.style-three .single-portfolio:hover .portfolio-social-link li a {
  margin: 0 3px;
  opacity: 1;
}

.portfolio-section.style-three .portfolio-content {
  right: 0;
  bottom: -100%;
  left: 0;
  opacity: 1;

  /* background-size: contain; */

  margin: auto;
  /* padding: 22px 25px 30px; */
}

.portfolio-section.style-three .portfolio-content img {
  width: 100%;
  height: 100%;
}

.portfolio-section.style-three .portfolio-content .redirectbutton {
  width: 100%;
  padding: 0 4px;
  background: blue;
  position: absolute;
  bottom: 0%;



}

.portfolio-section.style-three .portfolio-content .redirectbutton a {
  text-transform: none;
  color: white;
  font-weight: bold;

}

.portfolio-section.style-three .single-portfolio:hover .portfolio-content {
  opacity: 1;
  bottom: 0;
}

.portfolio-section.style-three .portfolio-thumb::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.60);
  top: 0;
  content: "";
  opacity: 0;
  transition: .5s;
}

.portfolio-section.style-three .single-portfolio:hover .portfolio-thumb::before {
  opacity: 1;
  bottom: 0;
}

.portfolio-section.style-three .portfolio-content h4 a {
  font-size: 20px;
  font-weight: 500;
}

/*-----Portfolio Section Style-Four---*/
.portfolio-social li {
  display: inline-block;
}

.portfolio-social li a {
  background: #fff;
  border-radius: 50%;
  color: #2513d1;
  display: inline-block;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  margin: 10px 5px 15px;
  transition: .5s;
}

.single-portfolio .btn-details {
  margin-top: 10px;
}

.single-portfolio .btn-details a {
  color: #fff;
}


/*-----Process Section---*/
.single-process {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.process-icon {
  position: relative;
  z-index: 1;
}

.process-icon::before {
  position: absolute;
  left: 76%;
  top: 50%;
  width: 100%;
  content: "";
  width: 200px;
  /* border: 1px dashed #2513D1; */
  transform: translateY(-50%);
  opacity: 0.4;
  z-index: -1;
}

.process-icon.style-four::before {
  display: none;
}

.process-icon img {
  background-color: #ffffff;
  color: #FF930E;
  width: 100px;
  height: 100px;
  padding: 10px;
  display: inline-block;
  line-height: 150px;
  font-size: 60px;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 1.5625rem 0 rgba(54, 186, 254, 0.1);
  box-shadow: 0 0 1.5625rem 0 rgba(54, 186, 254, 0.1);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.process-icon.style-two img {
  color: #18DC59;
}

.process-icon.style-three img {
  color: #2513d1;
}

.process-icon.style-four img {
  color: #fb239a;
}

.process-icon.style-five img {
  color: #fb239a;
}

.single-process:hover .process-icon img {
  color: #fff;
  background: #FF930E;
}

.single-process:hover .process-icon.style-two img {
  background: #18DC59;
}

.single-process:hover .process-icon.style-three img {
  background: #2513d1;
}

.single-process:hover .process-icon.style-four img {
  background: #ffc64c;
}

.single-process:hover .process-icon.style-five img {
  background-color: #18DC59;
}

.single-process:hover .process-icon.style-six img {
  background-color: #1e1666;
}

.process-title h4 {
  padding-top: 24px;
}

.process-content p {
  margin-top: 0;
}

/*-----Process Section Style-Two---*/
.process-section.style-two .process-icon::before {
  display: none !important;
}

/*----Counter Section---*/
.counter-section.style-one {
  background: linear-gradient(rgba(37, 19, 209, 0.43), rgba(37, 19, 209, 0.43)), transparent url(assets/images/bg/bg-2.jpg) no-repeat center/cover fixed !important;
}

.single-counter {
  margin-bottom: 30px;
}

.counter-icon {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin-right: 25px;
  position: relative;
  color: #fff;
  font-size: 42px;
  z-index: 1;
  display: inline-block;
}

.counter-icon i {
  margin-top: 30px;
}

.counter-icon::before {
  content: '';
  position: absolute;
  left: -23px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -30px;
  width: 85px;
  height: 85px;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background-image: url(assets/images/shape/shape-10.png) !important;
  transform: rotate(-70deg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.single-counter:hover .counter-icon::before {
  transform: rotate(-130deg);
}

.counter-text h1,
.counter-text h3 {
  font-size: 34px;
  display: inline-block;
  font-weight: 500;
  margin: 0;
  font-family: "Rubik", Sans-serif;
}

.counter-text h4 {
  font-size: 20px;
  color: #fff;
}

/*----Counter Section Style-Two---*/
.counter-section.style-two .change-position {
  background: #fff;
  box-shadow: 0 0 10px #cccccc;
  margin-top: -70px;
}

.counter-section.style-two .single-counter {
  margin-bottom: 30px;
  padding: 41px 10px 15px 10px;
  text-align: center;
  display: block;
}

.counter-section.style-two .counter-text h4 {
  color: #1e1666;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.counter-section.style-two .counter-text {
  text-align: center;
}

/*----Counter Section Style-Three---*/
.counter-section.style-three {
  background: linear-gradient(rgba(37, 19, 209, 0.43), rgba(37, 19, 209, 0.43)), transparent url(assets/images/bg/bg-9.jpg) no-repeat center/cover fixed !important;
}

/*----Counter Section Style-Four---*/
.counter-section.style-four .change-position {
  background: transparent url(assets/images/bg/bg-13.jpg) no-repeat center/cover scroll !important;
  padding-top: 45px;
  padding-bottom: 30px;
  margin-top: -90px;
  padding-left: 30px;
}

/*----Counter Section Style-Five---*/
.counter-section.style-five {
  text-align: center;
  background: transparent url(assets/images/bg/bg-23.png) no-repeat center/cover scroll !important;
}

.counter-section.style-five .counter-text h4 {
  font-size: 18px;
  color: #1e1666;
  font-weight: 500;
}

/*----Counter Section Style-Six---*/
.counter-section.style-six .change-position {
  background: transparent url(assets/images/bg/bg-6.jpg) no-repeat center/cover scroll !important;
  padding-top: 45px;
  padding-bottom: 30px;
  margin-top: -90px;
  padding-left: 30px;
}



/*----Skill Section------*/
.skill-section.style-one {
  background: url(assets/images/bg/bg-6.jpg) no-repeat center/cover scroll !important;
}

.skill-section .section-thumb {
  position: relative;
}

.video.skill-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-skills {
  padding-left: 30px;
}

.skill-content-text p {
  margin-bottom: 50px;
  font-size: 16px;
  color: #fff;
}

.skill-item {
  margin-top: 25px;
  position: relative;
}

.skill-title,
.skill-percentage {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

.skill-percentage {
  position: absolute;
  top: -7px;
  right: 0;
  background: #2513D1;
  border-radius: 5px;
  padding: 1px 7px;
}

.skill-percentage span {
  position: relative;
}

.skill-percentage span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  border: 4px solid transparent;
  border-top-color: #2513d1;
  transform: translateX(-50%);
}

.count-box {
  float: left;
  font-size: 12px;
}

.bar-inner {
  width: 100%;
  height: 5px;
  background: #d9d9d9;
  border-radius: 5px;
  position: relative;
}

.progress-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: #2513D1;
  border-radius: 5px;
  transition: 3s;
}

.skill-item.style-two .progress-line {
  background: #FD4A7B;
}

.skill-item.style-three .progress-line {
  background: #FFA700;
}

.about-skills .section-head h5 {
  color: #fff;
}

/*----Skill Section Style Two------*/
.skill-section.style-two .about-skills {
  padding-left: 0;
}

.skill-section.style-two .skill-title {
  color: inherit;
  font-weight: 600;
}

.skill-item.style-four .progress-line {
  background: #FF3C00;
}

.skill-item.style-five .progress-line {
  background: #7673FF;
}

/*----Skill Section Style Three------*/
.skill-section.style-three {
  background: transparent url(assets/images/bg/bg-13.jpg) no-repeat center/cover scroll;
}

.skill-section.style-three .skill-title,
.skill-section.style-three .skill-percentage {
  font-size: 14px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif
}

.skill-section.style-three .progress-line,
.skill-section.style-three .bar-inner {
  height: 10px;
  border-radius: 0;
}

.skill-section.style-three .section-thumb {
  z-index: 1;
  margin-left: 30px;
}

.skill-section.style-three .section-thumb::after {
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-bottom: 550px solid #2513d1;
  border-left: 400px solid transparent;
  z-index: -1;
}

/*----Skill Section Style Four------*/
.skill-section.style-four .section-head h5 {
  color: #2513d1;
}

.skill-section.style-four .section-head p {
  color: #232323;
  font-size: 21px;
  font-weight: 300;
}

.skill-section.style-four .skill-item {
  padding-bottom: 10px;
}

.skill-section.style-four .skill-title {
  color: #232323;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
}

.skill-section.style-four .about-skills {
  padding-right: 30px;
  padding-left: 0;
}

.skill-section.style-four .section-thumb {
  padding-left: 30px;
}

/*----FAQ-Section------*/
.uk-accordion-title {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e1666;
  background: #fff;
  border: 1px solid #e0e0e0;
  text-transform: capitalize;
  padding: 20px 15px;
  position: relative;
  transition: .5s;
}

.uk-accordion-title:hover {
  color: #2513d1;
}

.uk-accordion-title span {
  position: absolute;
  right: 35px;
  font-size: 14px;
  color: #aaa;
  top: 38%;
  transition: .1s;
}

.uk-open .uk-accordion-title span {
  transform: rotate(180deg);
  top: 32%;
}

.uk-accordion-title::before {
  display: none;
}

.uk-accordion-content {
  box-shadow: 0px 20px 30px 0px rgba(26, 46, 85, 0.1);
  background: #fff;
  padding: 15px 15px 30px;
  margin: 0;
  transition: .3s;
}


/*----FAQ-Section Style-Two------*/
.faq-section.style-two .uk-accordion-title {
  font-size: 16px;
  font-weight: 500;
  background: #E5F8FF;
  padding: 13px 15px;
}

.faq-section.style-two .uk-accordion-title span {
  top: 35%;
  right: 20px;
}

.faq-section.style-two .uk-open .uk-accordion-title span {
  top: 25%;
}

/*----FAQ-Section Style-three------*/
.faq-section.style-three .uk-accordion-title {
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  padding: 13px 15px;
}

.faq-section.style-three .uk-accordion-title span {
  top: 35%;
  right: 20px;
}

.faq-section.style-three .uk-open .uk-accordion-title span {
  top: 25%;
}

/*----------------
    ============== Start FAQ Style
    ------------------*/
#accordion h3,
#accordion-2 h3 {
  font-size: 20px;
  color: #1e1666;
  background: #fff;
  border-color: #e6e6e6;
  margin-bottom: 20px;
  padding: 22px 5px;
  transition: .5s;
  font-weight: 700;
}

#accordion .acc-title i,
#accordion-2 .acc-title i {
  float: right;
  margin-right: 20px;
  font-size: 15px;
  color: #999;
}

.ui-state-active i {
  transform: rotate(180deg);
}

#accordion .acc-content p,
#accordion-2 .acc-content p {
  color: #727272;
  font-family: 'Roboto', sans-serif;
  padding-right: 30px;
}

#accordion h3:hover,
#accordion-2 h3:hover {
  color: #2513d1;
}

#accordion .acc-content,
#accordion-2 .acc-content {
  border: none;
  box-shadow: 0px 15px 10px 0 rgba(0, 0, 0, 0.1);
}

.ui-accordion .ui-accordion-content {
  padding: 10px;
}


/*----Feature-Section------*/
.feature-number h1 {
  color: rgba(221, 221, 221, 0.59);
  font-size: 80px;
}

.block-text em {
  font-style: italic;
  font-weight: bold;
  font-size: 16px;
  color: inherit;
}

.feature-content p {
  margin: 15px 0 30px;
}

.feature-video-area {
  margin-top: 35px;
}

.feature-video-area .btn-common {
  float: left;
  margin-right: 25px;
}

.feature-video-area .video.feature-video {
  display: inline-block;
}




/*----Feature Section Style-two------*/
.feature-section.style-two .header-text p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
}

.service-feature .content-icon i {
  color: #2513d1;
  font-size: 18px;
  margin-right: 32px;
}

.service-feature .single-content {
  margin-bottom: 12px;
}

/*----Feature Section Style-Three------*/
.feature-content-wrapper {
  margin-left: 15px;
}

.feature-section.style-three .single-feature-inner {
  margin-bottom: 10px;
  background: transparent;
  text-align: left;
  padding: 0;
}

.feature-section.style-three .feature-content p {
  margin-bottom: 15px;
}

.feature-section.style-three .feature-icon-inner i {
  color: #2513d1;
  font-size: 25px;
  margin-right: 25px;
}

.feature-content-inner h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-content-inner p {
  margin-top: 0;
}

/*----Feature Section Style-Four------*/
.feature-section.style-four .single-feature {
  background: #ffffff;
  margin-bottom: 30px;
  box-shadow: 0 0 5px #cccccc;
  padding: 40px 28px 20px 28px;
}

.single-feature .feature-content {
  padding: 0 0 0 25px;
}

.single-feature .feature-icon i {
  color: #2513d1;
  font-size: 50px;
  margin-top: 30px;
  display: block;
}

.feature-title h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.single-feature .feature-content p {
  margin: 0 0 22px;
  line-height: 28px;
}

.feature-section.style-four .single-feature.style-one {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.feature-section.style-four .single-feature.style-three {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.feature-section.style-four .single-feature.style-two {
  background: #2513d1;
}

.single-feature.style-two .feature-icon i,
.single-feature.style-three .feature-icon i {
  color: #fff;
}

.feature-section.style-four .single-feature.style-three {
  background: #e30909;
}

.change-position {
  margin-top: -60px;
  z-index: 99;
  position: relative;
}


/*----Feature Section Style-Five------*/
.feature-section.style-five .feature-content {
  padding-left: 0;
}

.feature-section.style-five .feature-content p {
  margin: 0 0 15px;
}

/*----Feature Section Style-Six------*/
.feature-section.style-six {
  background: linear-gradient(rgba(0, 0, 0, 0.51), rgba(0, 0, 0, 0.96)), transparent url(assets/images/bg/bg-5.jpg) center center/cover no-repeat scroll;
  z-index: 1;
  position: relative;
}

.feature-section.style-six .section-head.style-two {
  margin-bottom: 30px;
}

.feature-section.style-six .single-feature {
  background: transparent;
  padding: 55px 30px 38px;
  transition: .5s;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border: 1px solid #525a68;
}

.feature-section.style-six .single-feature::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 0%;
  width: 100%;
  background: #2513d1;
  z-index: -1;
  transition: .5s;
}

.feature-section.style-six .single-feature:hover {
  border-color: transparent;
}

.feature-section.style-six .single-feature:hover::before {
  height: 100%;
}

.feature-section.style-six .single-feature .feature-icon i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 30px;
  margin-top: 0;
}

.feature-section.style-six .single-feature .feature-title h4 {
  font-size: 22px;
  margin-bottom: 22px;
  color: #fff;
}

.feature-section.style-six .single-feature .btn-read-more a {
  color: #fff;
}


/*----Feature Section Style-Seven------*/
.feature-section.style-seven .single-feature {
  position: relative;
  margin-bottom: 30px;
}

.feature-section.style-seven .single-feature .feature-thumb {
  position: relative;
}

.feature-section.style-seven .single-feature .feature-thumb::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 0%;
  width: 100%;
  background: rgba(37, 19, 209, 0.50);
  bottom: 0;
  transition: .5s;
}

.feature-section.style-seven .single-feature:hover .feature-thumb::before {
  height: 100%;
}

.feature-section.style-seven .single-feature .feature-thumb img {
  width: 100%;
}

.feature-section.style-seven .single-feature .feature-content {
  position: relative;
  padding: 15px 18px 40px;
  background: #ffffff;
  -webkit-box-shadow: 0px 15px 29px 10px rgba(51, 124, 232, 0.15);
  box-shadow: 0px 15px 29px 10px rgba(51, 124, 232, 0.15);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
  text-align: center;
  border-radius: 5px;
  margin-top: -55px;
  margin-left: 25px;
  margin-right: 25px;
}

.feature-section.style-seven .single-feature:hover .feature-content {
  margin-top: -65px;
}

.feature-section.style-seven .single-feature .feature-content h4 {
  margin-bottom: 5px;
  padding-top: 20px;
}

.feature-section.style-seven .single-feature .feature-content .btn-read-more a {
  text-transform: capitalize;
  font-size: 16px;
  position: relative;
  display: inline-block;
  color: #1e1666;
  margin-top: 20px;
  padding: 8px 35px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-weight: 600;
  transition: .5s;
}

.feature-section.style-seven .single-feature:hover .btn-read-more a {
  background: #2513d1;
  border-color: #2513d1;
  color: #fff;
}

.feature-section.style-seven .change-position {
  margin-top: -90px;
  z-index: 99;
}


/*----Feature Section Style-Eight------*/
.feature-section.style-eight .change-position {
  background: #1E1666;
}

.feature-section.style-eight .single-feature {
  background: #1E1666;
  text-align: center;
  padding: 0 15px 1px;
}

.feature-section.style-eight .feature-icon {
  display: inline-block;
}

.feature-section.style-eight .feature-icon i {
  color: #ffffff;
  background-color: #2513d1;
  font-size: 30px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border: 2px solid #ffffff;
  border-radius: 100%;
  margin-top: -32px;
}

.feature-section.style-eight .feature-content {
  padding-left: 0;
  margin-top: 25px;
}

.feature-section.style-eight .feature-content h5 {
  color: #ffffff;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.feature-section.style-eight .feature-content p {
  margin-bottom: 25px;
  color: #fff;
}

.single-feature.style-one {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.feature-section.style-eight .single-feature.style-one,
.feature-section.style-eight .single-feature.style-three {
  background-color: #2513d1;
}

.feature-section.style-eight .single-feature.style-two .feature-content {
  margin-top: 15px;
}

.feature-section.style-eight .single-feature.style-two h3 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
}

.single-feature.style-three {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}



/*----Feature Section Style-Nine------*/
.feature-section.style-nine .feature-single-item {
  transition: .5s;
  text-align: center;
  z-index: 99;
  position: relative;
  padding: 40px 30px 15px 30px;
  box-shadow: 0 0 5px #cccccc;
  border-radius: 5px;
  background: #fff;
  margin-bottom: 30px
}

.feature-section.style-nine .feature-icon {
  color: #2513d1;
  display: inline-block;
  position: relative;
  font-size: 56px;
  padding-top: 24px;
}

.feature-section.style-nine .feature-icon::before {
  position: absolute;
  content: '';
  background: url(assets/images/shape/shape-14.png) !important;
  width: 56px;
  height: 71px;
  right: -20px;
  top: 0px;
  background-repeat: no-repeat;
  transition: .5s;
}

.feature-section.style-nine .feature-single-item:hover .feature-icon::before {
  transform: rotate(25deg);
}

.feature-section.style-nine .feature-content {
  padding-left: 0;
}

.feature-section.style-nine .feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 8px;
  padding-top: 20px;
}

.feature-section.style-nine .feature-content p {
  padding: 5px 0 15px;
  margin: 0;
}

.feature-section.style-nine .change-position-two {
  margin-top: 0;
  position: relative;
  z-index: 99;
}



/*----Feature Section Style-Ten------*/
.feature-section.style-ten {
  background: url(assets/images/bg/bg-11.jpg) no-repeat center/ cover scroll !important;
}

.btn-download {
  text-align: center;
  margin-top: 5px;
}

.btn-download a {
  color: #2513d1;
  background: #fff;
  text-transform: capitalize;
  border: 1px #ffffff;
  margin-bottom: 10px;
  padding: 10px 30px;
  display: inline-block;
  transition: .5s;
}

.btn-download a:hover {
  color: #ffffff;
  background-color: #2513d1;
}

.btn-download.style-two a {
  position: relative;
  color: #fff;
  background: #ff930e;
  border: 1px #ff930e;
  z-index: 1;
}

.btn-download.style-two a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: .3s;
}

.btn-download.style-two a:hover {
  color: #ff930e;
}

.btn-download.style-two a:hover::before {
  width: 100%;
}


/*----Feature Section Style-Eleven------*/
.feature-section.style-eleven {
  background: url(assets/images/bg/bg-22.png) 0% 0%/auto no-repeat scroll !important;
}




/*----Shape-Section------*/
.shape-section .dashed1 {
  stroke-dasharray: 872;
}

.shape-section .section-thumb {
  float: right;
  margin-right: 61px;
  margin-top: 10px;
}

/*----Shape-Section Style-Two------*/
.shape-section.style-two .shape-section .dashed1 {
  stroke-dasharray: 872;
  transform: rotateX(180deg);
}

.shape-section.style-two .section-thumb {
  float: left;
  margin-top: 12px;
  margin-left: -22px;
}

/*----Testimonial Section------*/
.testimonial-section.style-one .container {
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
}

.testimonial-single-carousel {
  padding: 57px 15px 0;
  background: #fff;
  -webkit-box-shadow: 0 15px 46px rgba(0, 0, 0, .1);
  -ms-box-shadow: 0 15px 46px rgba(0, 0, 0, .1);
  box-shadow: 0 15px 46px rgba(0, 0, 0, .1);
  margin: 50px 80px 55px;
  border-radius: 100px 70px 70px 200px;
  position: relative;
  text-align: center;
}

.testimonial-content::before {
  content: "";
  background: rgba(12, 90, 219, 0.60);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px 70px 70px 200px;
  -ms-transform: skewX(-8deg);
  -webkit-transform: skewX(-8deg);
  transform: skewX(-8deg);
  z-index: -1;
}

.testimonial-content::after {
  content: "";
  background: rgba(12, 90, 219, 0.70);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px 70px 70px 200px;
  -ms-transform: skewX(-16deg);
  -webkit-transform: skewX(-16deg);
  transform: skewX(-16deg);
  z-index: -1;
}

.testimonial-section .carousel-thumb {
  position: absolute;
  display: inline-block;
  top: -40px;
  left: 35%;
}

.testimonial-section .carousel-thumb img {
  border-radius: 100%;
  width: 90px;
}

.testimonial-content {
  padding-bottom: 20px;
  padding-top: 20px;
}

.testimonial-title h5 {
  font-size: 18px;
  padding-top: 5px;
}

.testimonial-title span {
  color: #2513d1;
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding-top: 8px;
}

.testimonial-title {
  position: relative;
}

.icon-shape i {
  font-size: 55px;
  position: absolute;
  top: 0px;
  right: 45px;
  color: rgba(12, 90, 219, 0.15);
}

.testimonial-section .change-position {
  margin-top: -175px;
}

.testimonial-section.style-two .change-position .testimonial-single-carousel {
  border-radius: 5px;
}

.testimonial-section.expand .container {
  max-width: 1070px;
}

.testimonial-section.expand .testimonial-single-carousel {
  margin: 50px 55px 55px;
}


/*----Testimonial Section Style Two-----*/
.testimonial-section.style-two .testimonial-content::before,
.testimonial-section.style-two .testimonial-content::after {
  display: none;
}

.testimonial-section.style-two .testimonial-single-carousel {
  box-shadow: none;
  margin: 0 15px;
  border-radius: 0;
  border: 1px solid #eee;
  padding: 42px 15px 5px;
}

.testimonial-section.style-two .carousel-thumb {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
}

.testimonial-section.style-two .icon-shape i {
  display: none;
}

.testimonial-section.style-two .testimonial-content p {
  font-size: 16px;
  font-family: Rubik;
  margin-bottom: 30px;
}

.testimonial-section.style-two .testimonial-content {
  padding-top: 0;
}

.testimonial-section.style-two .testimonial-title h5 {
  padding-top: 20px;
  position: relative;
}

.testimonial-section.style-two .testimonial-title h5::before,
.testimonial-section.style-two .testimonial-title h5::after {
  position: absolute;
  top: 0;
  content: "";
  height: 1px;
  width: 25px;
}

.testimonial-section.style-two .testimonial-title h5::before {
  background-color: #2513d1;
  left: calc(50% - 25px);
}

.testimonial-section.style-two .testimonial-title h5::after {
  background-color: #ddd;
  left: 50%;
}

.testimonial-section.style-two .owl-dots {
  margin-top: 18px;
}

/*----Testimonial Section Style Three-----*/
.testimonial-section.style-three .section-head.style-two {
  margin-bottom: 0;
}

.testimonial-section.style-three .testimonial-content::before,
.testimonial-section.style-three .testimonial-content::after {
  display: none;
}

.testimonial-section.style-three .testimonial-single-carousel {
  box-shadow: none;
  margin: 0 15px;
  border-radius: 0;
  padding: 30px 15px 5px;
}

.testimonial-section.style-three .carousel-thumb {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
}

.testimonial-section.style-three .icon-shape i {
  display: none;
}

.testimonial-section.style-three .testimonial-content p {
  font-size: 16px;
  width: 54%;
  margin: 0 auto 30px;
}

.testimonial-section.style-three .testimonial-content {
  padding-top: 0;
  padding-bottom: 0;
}

.testimonial-section.style-three .testimonial-title h5 {
  padding-top: 20px;
  position: relative;
}

.testimonial-section.style-three .testimonial-title h5::before,
.testimonial-section.style-three .testimonial-title h5::after {
  position: absolute;
  top: 0;
  content: "";
  height: 1px;
  width: 25px;
}

.testimonial-section.style-three .testimonial-title h5::before {
  background-color: #2513d1;
  left: calc(50% - 25px);
}

.testimonial-section.style-three .testimonial-title h5::after {
  background-color: #ddd;
  left: 50%;
}

.testimonial-section.style-three .owl-dots {
  margin-top: 0;
}


/*----Testimonial Section Style Four-----*/

.testimonial-section.style-four {
  background: url(assets/images/bg/bg-2.jpg) no-repeat center/cover scroll !important;
}

.testimonial-section.style-four .container {
  max-width: 1000px;
}

.testimonial-section.style-four .testimonial-content::before {
  background: rgba(255, 255, 255, 0.60);
}

.testimonial-section.style-four .testimonial-content::after {
  background: rgba(255, 255, 255, 0.70);
}








/*----Feaure Section------*/
.feaure-section .section-head p {
  font-size: 15px;
  margin-bottom: 30px;
}

.feaure-section .feature-icon i {
  margin-top: 15px;
  margin-right: 25px;
  font-size: 55px;
}

.feaure-section .feature-content p {
  margin: 15px 0 25px;
}

.feaure-section.style-one .feature-content {
  padding-left: 0;
}

.single-feature-right {
  background: #fff;
  text-align: center;
  box-shadow: 6px 5px 30px 0px rgba(0, 0, 0, 0.12);
  border-radius: 7px;
  padding: 52px 20px 35px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.single-feature-right::before {
  position: absolute;
  content: "";
  left: 0;
  top: 99%;
  height: 100%;
  width: 100%;
  background: #2513d1;
  z-index: -1;
  transition: .5s;
}

.single-feature-right:hover::before {
  top: 0%;
}

.single-feature-right .feature-icon i {
  margin-top: 0;
  margin-right: 0;
  color: #3727D4;
  transition: .5s;
}

.single-feature-right .feature-icon {
  margin-bottom: 30px;
}

.single-feature-right .feature-content-inner p {
  margin-bottom: 15px;
  transition: .5s;
}

.single-feature-right .btn-read-more a {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  margin-top: 15px;
  display: inline-block;
  transition: .5s;
  color: #616161;
  transition: .5s;
}

.single-feature-right:hover .feature-icon i,
.single-feature-right:hover .btn-read-more a,
.single-feature-right:hover .feature-content-inner p,
.single-feature-right:hover .feature-title h4 {
  color: #fff;
}







/*----Pricing Section------*/
.single-plan {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  padding: 0;
  position: relative;
  border: inherit;
  text-align: center;
  border-radius: 8px;
}

.pricing-top-bar {
  position: relative;
  background: #2513d1;
  padding-top: 42px;
}

.pricing-top-bar::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: url(assets/images/bg/bg-4.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto;
}

.plan-title h4 {
  font-size: 28px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.plan-title h4::after,
.plan-title h4::before {
  content: '';
  top: 48px;
  right: 0;
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  background: #fff;
  left: 40px;
  margin: auto;
}

.plan-title h4::before {
  width: 25px;
  left: 0;
  right: 0;
  margin: auto;
}

.price-item {
  margin-bottom: 30px;
  margin-top: 55px;
}

.price-item span {
  display: inline-block;
  color: #fff;
}

.price-item .currency {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  top: -28px;
}

.price-item .amount {
  font-size: 70px;
  font-weight: 700;
}

.price-item .duration {
  font-size: 20px;
  font-weight: 500;
}

.pricing-img {
  background: #fff;
  display: inline-block;
  border: 1px solid #2513d1;
  border-radius: 100%;
  margin-bottom: -15px;
  position: relative;
}

.pricing-body {
  padding: 40px 0 50px;
  background: #fff;
}

.pricing-feature ul li {
  font-size: 16px;
  padding: 7px 0;
  text-transform: capitalize;
  font-weight: 300;
}

.purchase-btn a {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  padding: 13px 37px;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #2513d1;
  border: 1px solid #2513d1;
  border-radius: 3px;
}

.purchase-btn.style-two a {
  background: #2513d1;
  color: #fff;
}

.single-plan:hover .purchase-btn a {
  background: #2513d1;
  color: #fff;
}



/*----Pricing Section Style Two------*/
.pricing-section.style-two .single-plan {
  box-shadow: none;
  border: 1px solid #e6e6e6;
}

.pricing-section.style-two .single-plan:hover,
.pricing-section.style-two .single-plan:hover .pricing-feature ul,
.pricing-section.style-two .single-plan.style-two,
.pricing-section.style-two .single-plan.style-two .pricing-feature ul {
  border-color: #2513d1;
}

.pricing-section.style-two .plan-title h4::after,
.pricing-section.style-two .plan-title h4::before {
  display: none;
}

.pricing-section.style-two .pricing-top-bar::before {
  background: none;
}

.pricing-section.style-two .pricing-top-bar {
  background: transparent;
}

.pricing-section.style-two .pricing-body {
  background: transparent;
  padding: 0 0 50px;
}

.pricing-section.style-two .price-item {
  margin-bottom: 15px;
}

.pricing-section.style-two .pricing-feature ul {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  transition: .5s;
  padding: 31px 0 35px;
}

.pricing-section.style-two .pricing-feature ul li {
  font-size: 17px;
  padding: 8px 0;
  text-transform: capitalize;
  font-weight: 400;
}

.pricing-section.style-two .plan-title h4,
.pricing-section.style-two .price-item span {
  color: #2513d1;
}

.pricing-section.style-two .price-item .amount {
  font-size: 55px;
}

.pricing-section.style-two .pricing-content {
  padding: 10px 38px 20px;
}

.pricing-section.style-two .purchase-btn a {
  font-weight: 600;
  color: #616161;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 16px 42px;
}

.pricing-section.style-two .single-plan:hover .purchase-btn a,
.pricing-section.style-two .single-plan.style-two .purchase-btn a {
  color: #fff;
}

/*----Pricing Section Style Three------*/
.pricing-section.style-three .single-pricing-plan {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  margin-bottom: 30px;
  margin-top: 30px;
  transition: .5s;
}

.pricing-section.style-three .single-pricing-plan.style-two {
  margin-top: 10px;
}

.pricing-section.style-three .single-pricing-plan:hover {
  border-radius: 15px;
  overflow: hidden;
}

.pricing-section.style-three .single-pricing-plan .plan-title {
  background-color: rgba(241, 243, 245, 1);
  width: 100%;
  padding: 15px 0;
}

.pricing-section.style-three .single-pricing-plan .plan-title h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e1666;
  margin: 0;
}

.pricing-section.style-three .single-pricing-plan .plan-title h4::before,
.pricing-section.style-three .single-pricing-plan .plan-title h4::after {
  display: none;
}

.pricing-section.style-three .single-pricing-plan .section-icon i {
  color: #4b37ff;
  font-size: 80px;
  margin-top: 45px;
}

.pricing-section.style-three .price-item {
  margin-top: 36px;
}

.pricing-section.style-three .price-item span {
  color: #1e1666;
}

.pricing-section.style-three .price-item .currency {
  font-size: 22px;
  font-weight: 500;
  top: 0;
  color: rgba(23, 61, 80, 0.75);
}

.pricing-section.style-three .price-item .amount {
  font-size: 55px;
}

.pricing-section.style-three .price-item .duration {
  color: rgba(23, 61, 80, 0.75);
  font-weight: 300;
  font-size: 16px;
}

.pricing-section.style-three .pricing-body {
  padding: 0 0 25px;
}

.pricing-section.style-three .pricing-feature ul li:nth-child(odd) {
  background: #F1F3F5;
}

.pricing-section.style-three .single-pricing-plan .plan-title {
  transition: .5s;
}

.pricing-section.style-three .single-pricing-plan.style-two .plan-title {
  background-color: #2513d1;
  padding-top: 23px;
  padding-bottom: 23px;
}

.pricing-section.style-three .single-pricing-plan:hover .plan-title {
  background-color: #2513d1;
}

.pricing-section.style-three .single-pricing-plan:hover .plan-title h4 {
  color: #ffffff;
}

.pricing-section.style-three .single-pricing-plan.style-two .plan-title h4 {
  color: #ffffff;
  font-size: 30px;
}

.pricing-section.style-three .btn-read-more a {
  background-color: #2513d1;
  padding: 7px 28px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
}







/*----Pricing Section Style Four------*/
.pricing-section.style-four .single-plan {
  border: none;
  background: #fff;
  border-radius: 0;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.pricing-section.style-four .single-plan.style-two .pricing-top-bar {
  padding-top: 55px;
}

.pricing-section.style-four .pricing-top-bar {
  padding-top: 35px;
}

.pricing-section.style-four .single-plan.style-two {
  background: #2513d1;
  margin-top: 10px;
  padding-bottom: 25px;
}

.pricing-section.style-four .single-plan.style-two .pricing-feature ul li,
.pricing-section.style-four .single-plan.style-two .plan-title h4,
.pricing-section.style-four .single-plan.style-two .price-item span {
  color: #fff;
}

.pricing-section.style-four .plan-title h4,
.pricing-section.style-four .price-item span {
  color: #2513D1;
}

.pricing-section.style-four .plan-title h4::after,
.pricing-section.style-four .plan-title h4::before {
  display: none;
}

.pricing-section.style-four .pricing-top-bar::before {
  background: none;
}

.pricing-section.style-four .pricing-top-bar {
  background: transparent;
}

.pricing-section.style-four .pricing-body {
  background: transparent;
  padding: 0 0 50px;
}

.pricing-section.style-four .price-item .currency {
  top: -15px;
}

.pricing-section.style-four .price-item {
  margin-bottom: 15px;
  margin-top: 46px;
}

.pricing-section.style-four .pricing-feature ul {
  border: none;
  padding: 15px 0 0px;
}

.pricing-section.style-four .pricing-feature ul li {
  font-size: 17px;
  padding: 8px 0;
  text-transform: capitalize;
  font-weight: 400;
}

.pricing-section.style-four .price-item .amount {
  font-size: 55px;
}

.pricing-section.style-four .purchase-btn a {
  font-weight: 600;
  color: #616161;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 16px 42px;
}

.pricing-section.style-four .single-plan.style-two .purchase-btn a {
  color: #fff;
}

.pricing-section.style-four .single-plan:hover .purchase-btn a,
.pricing-section.style-four .single-plan.style-two .purchase-btn a {
  color: #fff;
}



/*-------Team Section---*/
.single-team {
  position: relative;
  background-size: cover;
  background-position: center center;
  margin-bottom: 30px;
  background: #fff;
  -webkit-box-shadow: 0 8px 16px rgba(207, 228, 255, 0.2);
  box-shadow: 0 8px 16px rgba(207, 228, 255, 0.2);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 4px;
}

.team-thumb {
  position: relative;
  overflow: hidden;
  background: url("assets/images/team/CEO.jpg");
  background-position: 240px;
  background-size: cover;
  transition: .5s;
  /* background-size: 100% 100%; */


}

.team-thumb2 {
  position: relative;
  overflow: hidden;
  background: url("assets/images/team/amit.jpg");
  background-position: 240px;
  background-size: cover;
  transition: .5s;
  /* background-size: 100% 100%; */


}

.team-thumb3 {
  position: relative;
  overflow: hidden;
  background: url("assets/images/team/img-2.jpg");
  background-position: 240px;
  background-size: cover;
  transition: .5s;
  /* background-size: 100% 100%; */


}

.team-thumb:hover {
  /* background-size: 150% 150%; */
  /* background-position: 376px; */

}

.team-thumb2:hover {
  /* background-size: 150% 150%; */
  /* background-position: 376px; */

}

.team-thumb3:hover {
  /* background-size: 150% 150%; */
  /* background-position: 376px; */

}

.team-thumb img {
  width: 100%;
  ;
}

.single-team:hover .team-thumb img {
  transform: scale(1.2);
}

.member-social-link {
  position: absolute;
  top: 50%;
  right: -52%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  width: 90%;
  margin: auto;
}

.single-team:hover .member-social-link {
  right: -40%;
}

.member-social-link ul {
  background: #fff;
  display: inline-block;
  padding: 5px 35px;
  border-radius: 30px 0 0 30px;
}

.member-social-link ul li {
  display: inline-block;
}

.member-social-link ul li a {
  display: inline-block;
  font-size: 16px;
  color: #2513d1;
  text-align: center;
  margin: 0 5px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.team-content {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  background: #fff;
  padding: 22px 20px 24px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.team-title h4 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-content .designation {
  text-transform: uppercase;
  font-size: 13px;
}


/*-------Team Section Style-Two---*/
.team-section.style-two .single-team {
  text-align: center;
  margin-bottom: 30px;
  box-shadow: none;
  background: transparent;
}

.team-section.style-two .team-thumb {
  border: 8px solid #fff;
  box-shadow: 0 0 10px #cccccc;
  display: inline-block;
  border-radius: 100%;
}

.team-section.style-two .team-thumb img {
  border-radius: 100%;
  transform: none;
}

.team-section.style-two .team-social-link {
  position: relative;
  margin-top: -35px;
}

.team-section.style-two .team-social-link ul {
  background: #2513d1;
  padding: 10px 42px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}

.team-section.style-two .team-social-link li {
  display: inline-block;
}

.team-section.style-two .team-social-link li a {
  color: #fff;
  font-size: 16px;
  margin: 0 5px;
  width: inherit;
  height: inherit;
  line-height: inherit;
}

.team-section.style-two .team-intro {
  padding-top: 18px;
}

.team-section.style-two .team-intro h4 {
  margin-bottom: 5px;
}

.team-section.style-two .team-intro p {
  margin-top: 0;
}


/*-------Team Section Style-Three---*/
.team-background {
  background: linear-gradient(rgba(37, 19, 209, 0.81), rgba(37, 19, 209, 0.81)), transparent url(assets/images/bg/bg-14.jpg) center center/cover no-repeat scroll !important;
  padding-top: 90px;
  padding-bottom: 255px;
}

.team-background .section-head h5 {
  color: #fff;
}

.team-section.style-three .change-position {
  margin-top: -240px;
}


/*-------Single Team Style Four---*/
.team-single-widget {
  padding: 50px 70px;
  box-shadow: 6px 5px 30px rgba(0, 0, 0, 0.12);
  margin-bottom: 70px;
}

.team_details {
  padding-left: 80px;
}

.team_details h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team_details p {
  text-transform: uppercase;
  font-size: 15px;
  color: #2513d1;
  margin-top: 0;
}

.team-info-list {
  margin: 20px 0 20px;
}

.team-info-list li {
  padding: 10px 0;
}

.team-social-link ul li {
  display: inline-block;
}

.team-social-link ul li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #2513d1;
  text-align: center;
  color: #fff;
  margin: 0 2px;
  border-radius: 5px;
}

.team-bio h2,
.team-single-widget h2 {
  margin-bottom: 35px;
  font-size: 35px;
}

.team-single-widget .skill-title {
  color: #232323;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.team-single-widget .about-skills {
  padding-left: 0;
}

.team-appointment .appointment-form {
  background: #fff;
  padding: 41px 50px 15px;
  border-radius: 7px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

.team-appointment .form-control,
.team-appointment textarea {
  background-color: #F4F7FC;
}

.team-appointment .btn-submit {
  width: 100%;
  margin-bottom: 40px;
}


/*-------Appointment Section---*/
.form-control,
textarea {
  height: 54px;
  background-color: #fff;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border: 1px solid #e6e6e6;
  padding: 6px 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 5px;
}

.form-control:focus,
textarea:focus {
  color: #495057;
  background-color: #fff !important;
  border-color: #2513d1 !important;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(37, 19, 209, .25) !important;
}

textarea::placeholder {
  color: #000 !important;
}

.btn-submit {
  background: #2513d1;
  display: inline-block;
  text-align: center;
  padding: 14px 39px;
  border-radius: 4px;
  transition: .3s;
  color: #fff;
  border: 1px solid #2513D1;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.btn-submit:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid #2513D1;
  transform: scale(0);
  transition: .5s;
}

.btn-submit:hover:before {
  transform: scale(1);
}

.btn-submit:hover {
  color: #2513D1;
}

/*-------Appointment Section Style-Two---*/
.appointment-wrapper {
  background: #fff;
  z-index: 2;
  position: relative;
  box-shadow: 0 0 5px #cccccc;
}

.appointment-wrapper .change-position {
  margin-top: -100px;
}

.appoimtment-content {
  background: linear-gradient(rgba(37, 19, 209, 0.73), rgba(37, 19, 209, 0.73)), transparent url(assets/images/bg/bg-4.jpg) center center/cover no-repeat scroll;
  padding: 50px 30px 50px 40px;
}

.appointment-wrapper .appointment-form {
  padding: 0 40px 0 10px;
}

.appoimtment-content .section-title h2 {
  font-size: 38px;
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1.2;
}

.content-text p {
  font-size: 17px;
  margin-bottom: 45px;
}

.appoimtment-content .content-icon i {
  color: #fff;
}

.appoimtment-content .about-feature .content-desc {
  font-weight: 600;
}


/*-------Appointment Section Style-Three---*/
.contact-info {
  padding: 40px 20px 2px 40px;
  box-shadow: 0 0 10px #cccccc;
}

.info-icon i {
  color: #2513d1;
  font-size: 40px;
}

.info-content {
  width: 585px;
  height: 490px;
  background-image: url("./assets/images/thumb/contact.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.info-content h5 {
  color: #1e1666;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.info-content p {
  margin-top: 0;
}


/*-------Appointment Section Style-Four---*/
.appointment-form.style-four .form-wrapper {
  background: #fff;
  padding: 41px 50px 15px;
  border-radius: 7px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  margin-left: -60px;
  margin-right: 60px;
}

.appointment-form.style-four .form-wrapper .form-title h4 {
  font-size: 25px;
  font-weight: 800;
}

.appointment-form.style-four .form-wrapper p {
  margin-top: 10px;
  margin-bottom: 30px;
}

.appointment-form.style-four .form-wrapper .btn-submit {
  margin-bottom: 45px;
  width: 100%;
}

.appointment-form.style-four .form-control,
.appointment-form.style-four textarea {
  background-color: #F4F7FC;
}

.appointment-thumb img {
  width: 100%;
}

/*-------contact-form style---*/
#contact-form .appointment-form {
  background: #ffffff;
  padding: 40px 40px 55px 40px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

#contact-form .appoinment-title h4 {
  font-weight: 500;
  font-size: 25px;
}

#contact-form .contact-info-wrapper {
  background: #252628;
  padding: 60px 40px 40px 40px;
}

.single-info .info-icon i {
  color: #ffffff;
  background-color: #2513d1;
  font-size: 40px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 5px 5px 5px 5px;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
}

.single-info .info-content h4 {
  font-size: 20px;
  color: #fff;
}

.single-info .info-content p {
  color: rgba(255, 255, 255, 0.74);
}

.single-info {
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  margin-bottom: 20px;
}

/*-------Case Study Section---*/
.single-case-study {
  position: relative;
  margin-bottom: 60px;
}

.single-case-study .section-thumb {
  position: relative;
  z-index: 1;
}

.single-case-study .section-thumb::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(37, 19, 209, 0.5);
  content: "";
  opacity: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 5px;
}

.single-case-study:hover .section-thumb::before {
  opacity: 1;
}

.case-study-content {
  position: absolute;
  left: 0;
  bottom: -10%;
  right: 0;
  text-align: center;
  background: #271151;
  margin: auto;
  padding: 23px 30px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  width: 90%;
  z-index: 1;
}

.case-study-title h4 {
  margin: 0;
}

.case-study-title h4 a {
  font-weight: 800;
  color: #fff;
}

.case-catagory li {
  display: inline-block;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 5px;
}

.btn-case-study {
  margin-top: 20px;
  position: absolute;
  right: 0;
  z-index: 1;
  top: -19px;
  background: #3a1e71;
  height: 90px;
  width: 100px;
  line-height: 75px;
  border-radius: 0 0 0 80px;
  transition: .5s;
}

.btn-case-study a {
  color: #fff;
}

.single-case-study:hover .btn-case-study {
  background: #2513d1;
}

.case-study.style-one .section-head.style-two {
  margin-bottom: 25px;
}

.case-study .owl-dots {
  margin-top: 33px;
}

.section-thumb img {
  width: 100%;
}

/*-------Case Study Section Style-Two---*/
.case-study.style-two .change-position {
  margin-top: -100px;
}


/*-------Block Feature Section---*/
/* .feature {
  background: rgba(37, 19, 209, 0.86) url("./assets/images/bg/bg-3.png") center center/cover no-repeat scroll !important;
  padding-top: 60px;
  padding-bottom: 20px;
} */

.feature .feature-title {
  margin-bottom: 45px;
}

.feature .feature-title h2 {
  margin-bottom: 0;
}


/*-------Block Feature Section Style two---*/
.feature.style-two {
  background: rgba(37, 19, 209, 0.86) url("./assets/images/bg/bg-11.jpg") center center/cover no-repeat scroll !important;
  padding-top: 70px;
  padding-bottom: 30px;
}

.feature.style-two .feature-title h2 {
  line-height: 1.4;
  font-weight: 800;
}


/*-------Block Feature Section Style Three---*/
.feature.style-two.bg-style-two {
  background: rgba(37, 19, 209, 0.86) url("assets/images/bg/bg-11.jpg") center center/cover no-repeat fixed !important;
}



/*-------Brand Section---*/
.single-brand img {
  width: 100%;
  height: 100%;
}


/*-------Newsletter Section---*/
.newsletter .container {
  max-width: 1170px;
}

.newsletter-wrapper {
  background: linear-gradient(rgba(37, 19, 209, 0.86), rgba(37, 19, 209, 0.86)), transparent url("assets/images/bg/bg-10.jpg") center center/cover no-repeat scroll;
  padding-top: 70px;
  padding-bottom: 70px;
}

.newsletter-content h2 {
  color: #fff;
  padding-bottom: 20px;
  font-size: 35px;
}

.newsletter-box {
  position: relative;
}

.newsletter button {
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: medium none;
  font-size: 17px;
  background: #2513d1;
  color: #fff;
  font-weight: 600;
  margin: auto;
  padding: 0 33px;
  height: 84%;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  position: absolute;
  right: 6px;
  top: 4px;
  border-radius: 2px;
}

.newsletter button:hover {
  background: #1e1666;
}


/*-------Newsletter Section Style-Two---*/
.newsletter.style-two {
  background: url(assets/images/bg/bg-1.png) no-repeat center/ cover scroll !important;
}

.newsletter.style-two .newsletter-wrapper {
  background: transparent;
}

.newsletter.style-two .newsletter-content h2 {
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 39px;
}

.newsletter-content p {
  margin-top: 0;
  padding-right: 62px;
}

.newsletter.style-two .newsletter-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}

/*-------Blog Section---*/
.single-blog {
  margin-bottom: 30px;
  overflow: hidden;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  background: #fff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.single-blog:hover {
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}

.blog-thumb {
  position: relative;
}

.blog-thumb img {
  width: 100%;
}

.blog-meta-top {
  position: absolute;
  left: 7px;
  top: 10px;
  z-index: 1;
}

.blog-meta-top li {
  display: inline-block;
}

.blog-meta-top li a {
  display: inline-block;
  background: #2513d1;
  padding: 5px 16px;
  line-height: 19px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  border-radius: 2px;
  letter-spacing: 1px;
  margin-right: 5px;
}

.blog-content {
  padding: 40px 21px 0px;
  text-align: center;
  position: relative;
}

.blog-meta {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  border-radius: 3px;
  text-align: center;
  position: absolute;
  top: -24px;
  background: #fff;
  left: 0;
  right: 0;
  margin: 0 20px;
}

.blog-meta a,
.blog-meta span {
  -o-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
  margin: 0 10px;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #6a7c92;
}

.blog-meta a:hover,
.blog-meta span:hover {
  color: #2513d1;
}

.blog-meta a::before {
  content: "";
  background: #616161;
  width: 8px;
  height: 1px;
  position: absolute;
  right: -17px;
  top: 13px;
}

.blog-title h4 {
  font-size: 22px;
  margin: 10px 0 7px;
  line-height: 1.2;
  font-weight: 600;
  transition: .5s;
}

.blog-title h4:hover a {
  color: #2513d1;
}

.blog-text p {
  margin: 16px 0 15px;
}

/*-------Blog Section Style-Two---*/
.blog-section.style-two .single-blog {
  padding: 0;
  box-shadow: 0 0 10px #cccccc;
  margin-left: 15px;
  margin-right: 15px;
}

.blog-section.style-two .single-blog .blog-thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(37, 19, 209, 0.7);
  opacity: 0;
  transition: .5s;
}

.blog-section.style-two .single-blog:hover .blog-thumb::before {
  opacity: 1;
}

.blog-section.style-two .blog-content {
  text-align: left;
  padding: 25px 36px 20px;
}

.blog-section.style-two .blog-meta {
  box-shadow: none;
  padding: 10px 0;
  border-radius: 0;
  text-align: left;
  position: relative;
  top: inherit;
  background: #fff;
  left: inherit;
  right: inherit;
  margin: 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.blog-section.style-two .blog-title h4 {
  margin: 10px 0 22px;
  font-weight: 700;
}

.blog-meta .no-m {
  margin-left: 0;
}

.blog-meta .no-m a {
  margin-left: 0;
}

.blog-meta span:nth-child(3)::after {
  content: "";
  background: #616161;
  width: 8px;
  height: 1px;
  position: absolute;
  left: -10px;
  top: 13px;
}

.blog-meta span:nth-child(3) a::before {
  display: none;
}

.blog-section.style-two .owl-prev,
.blog-section.style-two .owl-next {
  border-radius: 50%;
}

.blog-carousel-two .owl-nav,
.blog-carousel-three .owl-nav {
  visibility: hidden;
}

.blog-carousel-two:hover .owl-nav,
.blog-carousel-three:hover .owl-nav {
  visibility: visible;
}

.blog-section.style-two .owl-prev {
  left: -50px;
}

.blog-section.style-two .owl-next {
  right: -50px;
}

.blog-section.style-two .single-blog:hover {
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}


/*-------Blog Grid Style---*/
#blog-grid .single-blog {
  padding: 0;
  border: 1px solid #e6e6e6;
  box-shadow: none;
  transition: .5s;
}

#blog-grid .single-blog:hover {
  -webkit-box-shadow: 6px 5px 30px rgba(0, 0, 0, 0.12);
  box-shadow: 6px 5px 30px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

#blog-grid .blog-content {
  padding: 45px 35px 20px;
}

#blog-grid .blog-title h4 {
  font-size: 20px;
  font-weight: 700;
}


/*-------Blog List Style---*/
#blog-list .single-blog {
  padding: 0;
}

#blog-list .blog-content {
  padding: 45px 50px 20px 20px;
  text-align: left;
}

#blog-list .blog-title h4 {
  font-size: 30px;
  font-weight: 700;
}

.widget-items {
  padding: 35px 29px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.widget-items form {
  position: relative;
}

.src-input-box {
  border: 1px solid #ccc;
  padding: 17px 9px;
  width: 100%;
}

.src-input-box:focus {
  border: 1px solid #ccc;
}

.src-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #777;
  background: transparent;
  border: none;
}

.widget-title {
  margin-bottom: 40px;
  position: relative;
}

.widget-items .widget-title h2 {
  color: #232323;
  display: block;
  font-size: 24px;
  padding-bottom: 0;
  position: relative;
  margin-bottom: 8px;
}

.widget-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #AEC6EF;
}

.widget-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 36px !important;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #2513D1;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

@keyframes MOVE-BG {
  0% {
    left: 0px;
    top: 0px;
  }

  100% {
    left: 80px;
    top: 0px;
  }
}

.bg-three {
  background: #F6F6F6;
}

.hr-3 {
  border-top: 1px solid #e6e6e6;
  padding-top: 15px;
}

.catagory-item ul li {
  padding-top: 15px;
  margin-top: 18px;
  list-style: none;
}

.catagory-item ul li a {
  color: #616161;
  transition: .3s;
}

.catagory-item ul li:hover a {
  color: #2513d1;
}

.rpost-thumb {
  float: left;
  overflow: hidden;
}

.rpost-thumb img {
  border-radius: 5px;
}

.rpost-thumb {
  margin-right: 25px;
}

.rpost-title h4 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  transition: .3s;
}

.rpost-title h4:hover {
  color: #2513d1;
}

.rpost-content {
  overflow: hidden;
}

.rpost-title span {
  font-size: 14px;
}

.widget-recent-post {
  margin-bottom: 20px;
}

.tag-item a {
  border: 1px solid #e6e6e6;
  padding: 5px 8px;
  text-transform: capitalize;
  display: inline-block;
  margin: 2px 3px 10px;
  color: #616161;
}

.tag-item a:hover {
  color: #fff;
  background: #2513D1;
  border-color: #2513D1;
}


/* Calender*/
.curr-month {
  width: 100%;
  height: 40px;
  background: #d6d6d6;
  color: #000;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
}

.all-days {
  width: 100%;
  height: 40px;
  background-color: #fff;
  float: left;
}

.tag-item .all-days ul,
.tag-item .all-date ul {
  list-style: none;
  display: block;
  height: 30px;
  width: 100%;
  margin: 0 auto;
  float: left;
  font-size: 15px;
  font-weight: 300;
}

.tag-item .all-days ul li,
.tag-item .all-date ul li {
  float: left;
  width: 43px;
  text-align: center;
  line-height: 41px;
  border: 1px solid #ccc;
  color: #333;
}

.tag-item .all-days ul li {
  font-weight: 600;
}

.all-date {
  width: 100%;
  height: 305px;
  float: left;
}

.all-date li {
  height: 40px;
  width: 50px;
  line-height: 40px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.all-date li.monthdate:hover {
  background-color: #2513D1;
  color: #fff;
}

.calender-area {
  height: 435px;
}

#blog-list .widget-items p {
  margin-bottom: 0;
}


/*--Single Blog--*/
#single-blog .blog-content {
  text-align: left;
  box-shadow: 0 3px 19px rgba(0, 0, 0, .08);
  padding: 20px 45px 45px;
}

#single-blog .blog-content h2 {
  padding: 0;
  text-transform: unset;
  color: #232323;
  font-weight: 700;
  font-size: 35px;
}

.blog-meta-mid,
.blog-meta-mid a {
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  color: #6a7c92;
}

.blog-meta-mid span {
  position: relative;
  margin-right: 12px;
  padding-right: 10px;
}

.blog-meta-mid span::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: #6a7c92;
}

.blog-meta-mid span:last-Child::after {
  display: none;
}

blockquote {
  padding: 26px 30px;
  font-size: 19px;
  border-left: 4px solid #2513d1;
  background: 0 0;
  font-style: normal;
  color: #232;
  font-weight: 400;
  position: relative;
  line-height: 1.5;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.10);
  border-radius: 4px;
  margin-top: 30px;
  font-style: italic;
}

blockquote p {
  margin: 0 0 20px 0 !important;
  font-style: italic;
}

blockquote i {
  display: block;
  line-height: 1.42857143;
  color: #616161;
  text-transform: capitalize;
  font-size: 16px;
}

.blog-feature-list li {
  list-style: number;
}

.blog-social-link li {
  display: inline-block;
}

.blog-social-link a i {
  border: 1px solid #e6e6e6;
  color: #565872;
  display: inline-block;
  font-size: 15px;
  height: 40px;
  line-height: 41px;
  margin: 0 9px 0 0;
  text-align: center;
  width: 40px;
  border-radius: 5px;
}

.blog-social-link a i:hover {
  background: #2513d1;
  border-color: #2513d1;
  color: #fff;
}

.appointment-form .widget-title h2 {
  font-size: 24px;
}


/*--Case Study Detais--*/
.project-info {
  overflow: hidden;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
  padding: 65px 50px 50px;
  background: #f4f7fc;
}

.project-info-inner {
  padding-left: 60px;
}

.project-info-inner h4 {
  font-size: 25px;
  font-family: muli;
  padding-bottom: 17px;
}

.project-info-list li {
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  font-weight: 300;
  padding: 13px 0;
  text-transform: capitalize;
  list-style: none;
}

.project-info-list li:first-child {
  padding-top: 0;
}

.project-info-list li:last-child {
  border-bottom: none;
}

.project-info-list li strong {
  font-size: 20px;
  margin-right: 5px;
}

.project-social-icon li strong {
  font-size: 20px;
  font-weight: 700;
  margin-right: 20px;
  display: block;
}

.project-social-icon li {
  display: inline-block;
}

.project-social-icon li a i {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #2513d1;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  margin-right: 10px;
  line-height: 35px;
}


/*--Pagination--*/
.pagination {
  display: inline-block;
}

.pagination a {
  font-size: 18px;
  font-weight: 500;
  color: #2513d1;
  background: #fff;
  float: left;
  text-decoration: none;
  transition: background-color .3s;
  margin: 0 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
}

.pagination a.active {
  background-color: #2513d1;
  color: white;
  border: 1px solid #2513d1;
}

.pagination a:hover {
  background: #2513d1;
  color: #fff;
}

.filter {
  background-color: rgba(30, 22, 102, 0.8);
}

/*-------Footer Section---*/
.footer {
  background: url("assets/images/bg/bg-5.jpg");
  background-size: 100% 100%;
  background-position: center center;

  color: #fff;
}

.footer-address {
  padding-bottom: 35px;
}

.single-footer-address {
  margin-bottom: 30px;
}

.address-icon i {
  color: #fff;

  color: transparent;
  background: url('./assets/images/bg/india.jpg');
  font-size: 18px;
  background-position: center;
  background-size: cover;
  /* background: #2513d1; */
  height: 45px;
  width: 45px;
  display: inline-block;
  line-height: 45px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.address-icon1 i {
  color: #fff;

  color: transparent;
  background: url('./assets/images/bg/india.jpg');
  font-size: 18px;
  background-position: center 0.1px;
  background-size: cover;
  /* background: #2513d1; */
  height: 45px;
  width: 45px;
  display: inline-block;
  line-height: 45px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.address-icon2 i {
  color: #fff;

  color: transparent;
  background: url('./assets/images/bg/america.png');
  font-size: 18px;
  background-position: center;
  background-size: cover;
  /* background: #2513d1; */
  height: 45px;
  width: 45px;
  display: inline-block;
  line-height: 45px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.address-icon3 i {
  color: #fff;

  color: transparent;
  background: url('./assets/images/bg/germany.jfif');
  font-size: 18px;
  background-position: center;
  background-size: cover;
  /* background: #2513d1; */
  height: 45px;
  width: 45px;
  display: inline-block;
  line-height: 45px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.single-footer-address h5 {
  color: #fff;
}

.single-footer-address p {
  margin-top: 0;
}

.footer-menu {
  margin-bottom: 20px;
}

.footer-menu li,
.footer-social-icon li {
  display: inline-block;
}

.footer-menu li a {
  color: #f8f9fe;
  text-transform: capitalize;
  margin: 0 16px;
  font-size: 16px;
  font-weight: 500;
}

.copyright-text {
  margin-bottom: 30px;
}

.footer-social-icon i {
  font-size: 15px;
  margin: 0 6px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #2513d1;
  text-align: center;
  color: #fff;
  border-radius: 100%;
}

.footer-social-icon i:hover {
  color: #2513d1;
  background-color: #fff;
}

#to-top {
  position: fixed;
  bottom: 13px;
  color: #fff;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  right: 91px;
  text-align: center;
  width: 50px;
  background: #2513d1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 25%;
  cursor: pointer;
  display: none;
  z-index: 99999;
  border: none;
}

#to-top:hover {
  transform: scale(1.1);
  /* background: red; */
}


/*Loader*/

.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s 1s ease;
  z-index: 666;
}

.loader {
  position: relative;
  display: block;
  z-index: 201;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  transition: all 1s 1s ease;
  border: 3px solid transparent;
  border-top-color: #9A241C;
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.loader:before {
  position: absolute;
  content: '';
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: #FF3C00;
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:after {
  position: absolute;
  content: '';
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-right-color: #fff;
  -webkit-animation: spin 2.5s linear infinite;
  -moz-animation: spin 2.5s linear infinite;
  -o-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}

/* Here comes the Magic */

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader-wrapper .loder-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #111;
  z-index: 2;
}

.loader-wrapper .loder-section.left-section {
  left: 0;
  transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
  right: 0;
  transition: 1s 1.4s ease;
}

/* When page loaded */
.loaded .loder-section.left-section {
  left: -100%;
}

.loaded .loder-section.right-section {
  right: -100%;
}

.loaded .loader-wrapper {
  visibility: hidden;
}

.loaded .loader {
  top: -100%;
  opacity: 0;
}

/*particles js*/
div#particles {
  position: relative;
}

#webcoderskull {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 20px;
  width: 100%;
}

div#particles .hero-section.style-one {
  background: inherit;
}

div#particles .hero-section.style-six {
  background: inherit;
}


.containerslider {
  overflow: hidden;
}

.fab123 {
  width: calc(100% / 7);
  padding: 1rem;
  /* margin: 0 1rem; */
  animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}

.logos {
  width: 100%;
  display: inline-block;
  margin: 0px 1rem;
}

.slider {
  animation: slidein 30s linear infinite;
  white-space: nowrap;
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.about-section1 {
  width: 100%;
  margin-top: 50px;
  height: 500px;
  background: url(./assets/images//bg/erp.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 770px) {
  .footer {
    /* background: url("assets/images/bg/bg-5.jpg"); */
    background: transparent url("assets/images/MicrosoftTeams-image\ \(7\).png") center center/cover no-repeat scroll;
    background-size: 100% 100%;
    background-position: center center;


    /* color: #fff; */
  }

  .logo-txt {
    display: block;
  }

  .about-section1 {
    height: 300px;
    background-size:cover;
    display: none;
    background-position:100 100;
  }
}

@media screen and (max-width: 1000px) {

  .logo-txt {
    display: block;
  }
}

/* Default styles for large screens */
.brand-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Adjust styles for smaller screens using media queries */
@media (max-width: 768px) {
  .fab123 {
    width: (100%/7);
    padding: 0.5rem;
    /* margin: 0 1rem; */
    animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
  }

  .logos {
    width: 700px;
    display: inline-block;
    margin: 0px;
  }
}

/* Add more media queries and styles as needed for different screen sizes */