
/* Fonts */

@font-face {
    font-family: 'tajawal';
    src: url('../font/tajawal-black.ttf') format('truetype');
}

@font-face {
    font-family: 'tajawal';
    src: url('../font/tajawal-bold.ttf') format('truetype');
}
@font-face {
    font-family: 'tajawal';
    src: url('../font/tajawal-extrabold.ttf') format('truetype');
}
@font-face {
    font-family: 'tajawal';
    src: url('../font/tajawal-medium.ttf') format('truetype');
}
@font-face {
    font-family: 'tajawal';
    src: url('../font/tajawal-regular.ttf') format('truetype');
}
/* Colors */
:root {
    --color-default: #71717A;
    --color-primary: #0307FF;
    --color-secondary: #010133;
    --font-default: 'tajawal', sans-serif;
    --font-primary: 'tajawal', sans-serif;
    --font-secondary: 'tajawal', sans-serif;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default) !important;
    color: var(--color-default) !important;
 overflow-x:hidden !important;
 position:relative
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
}

    .section-header h2 {
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        font-size: 34px;
        color: var(--color-secondary);
    }


.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    /*  position: fixed;*/
    position: relative;
    visibility: hidden;
    opacity: 0;
    left: 35px;
    bottom: -15px;
    z-index: 99999;
    background: transparent;
    border: 1px solid #fe0000;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: #fe0000;
        line-height: 0;
    }

/*.scroll-top:hover {*/
/*  background: var(--color-primary);*/
  /*color: #fff;
}*/

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
 /* height: 90px;*/
  background-color: var(--color-primary);
}

    .header.sticked {
        position: sticky;
        top: 0;
        right: 0px;
       /* height: 120px;*/
        background: #fff;
        left: 0px;
        padding: 10px 20px 15px 20px;
        border-radius: 0px 0px 10px 10px;
        box-shadow: 0px 2px 25px 0px #AEBAC533;
        flex-direction: column;
        justify-content: space-between;
        max-width: 1140px;
        margin: 0 auto;
    }
@media (min-width: 1400px) {
    .header.sticked {
        max-width: 1320px;
    }
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .header.sticked {
        max-width: 1140px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .header.sticked {
        max-width: 960px;
    }
}
@media (max-width: 992px) {
    .header.sticked {
      border-radius:0
    }
}
.headerrow {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items:center
}
.languagerow {
    display: inline-flex;
    width: 100%;
    padding: 0 20px;
    justify-content: end;
    margin: 0px 0;
}
    .languagerow a {
        color: #010133;
        font-weight: 700;
        cursor: pointer;
    }
.header .logo img {
    /*  max-height: 86px;*/
    max-height: 70px;
    margin-right: 6px;
}
.right-logo {
    display: flex;
    margin-right: 10px;
}
    .right-logo img {
        height: 60px;
        margin: 0 5px;
    }
.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #fff;
    font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 0px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

    .navbar a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 400;
        color: var(--color-secondary);
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: var(--color-primary)
    }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

    .mobile-nav-show {
        color: #010133;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: #0101335e;
        z-index: 9996;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.scroll-container {
    width: 100% !important;
    overflow-x: scroll;
    white-space: nowrap;
    text-align: center;
}

/*.scroll-content {
    display: inline-block;
    width: 200px;*/ /* Adjust the width of your content */
    /*height: 100px;*/ /* Adjust the height of your content */
    /*background-color: #f0f0f0;
    margin: 5px;
}*/

.clients {
    padding: 40px 0;
 /*   background: linear-gradient(90deg, #F4F4F4 28.89%, #FFFFFF 96.7%);*/
}
.languge-icon{
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 99999;
    background: #fe0000;
    border: 1px solid #fe0000;
    width: 110px;
    color: #fff !important;
    height: 40px;
    border-radius: 0px 10px 10px 0px;
    transition: all 0.4s;
    box-shadow: 1px 1px 103px 0 #ff5656;
}
    .languge-icon svg {
        color: #fff;
        margin-left: 6px;
    }
    .languge-icon svg path{
        fill: #fff;
    }
.Partners-box {
    /*  height: 295px;
    width: 573px;*/
    height: 180px;
    width: 330px;
    margin: 10px;
    display: inline-flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    /* gap: 35px; */
    /* border: 1px solid #CFCFD3; */
    padding: 35px;
    text-align: center;
    background: #ffffff94;
    border-radius: 20px;
}
    .Partners-box img {
        height: 120px;
        width: 100%;
       /* margin-bottom: 20px;*/
        object-fit: contain;
    }

@media (min-width:300px) and (max-width: 518px) {
    .Partners-box {
        padding: 10px;
        width: 120px;
        height: 95px;
        margin: 10px 0px;
    }
    .Partners-box img{
        height:100%
    }
}

.Partners-box  h2{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color:var(--color-secondary);
    white-space:normal
}
    .Partners-box p {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: center;
        color: #71717A ;
        white-space:normal
    }
    .clients .swiper {
        padding: 10px 0;
    }
.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container {
    scrollbar-width: none;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    margin-top: 80px;
    background: #ffffff;
    background-image: url(/assets/img/bg2.png);
    padding: 0;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
/*.call-to-action .container {
    background: #2C30FF;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    height: 266px;
}*/
    .call-to-action .container img {
        height: 400px;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }
.rightcontent {
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 15px 40px;
    text-align: left;
}
.call-to-action h1 {
    color: #0307ff;
    margin-bottom: 20px;
    width: 80%;
    font-size: 40px;
    font-weight: bold;
    text-align: left;
}

.call-to-action p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    width: 90%;
}


.call-to-action .cta-btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    transition: 0.5s;
    margin: 0;
    background: #fff;
    color: var(--color-secondary);
    width: 146px;
    height: 52px;
    display: flex;
    padding: 10px 30px 10px 30px;
    border-radius: 33px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-primary);
}


}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
  color:#fff;
  border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
    padding: 60px 0 100px;
    position: relative;
    overflow: visible;
}
.servicespatternbg {
    position: absolute;
    top: -300px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: -1;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
}
.services-all-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.services .service-item {
    padding: 25px;
    height: 160px;
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border: 1px dashed #fe0002;
    border-radius: 15px;
    margin: 10px;
}
.icon {
    border: 1px dashed #fe0002;
    border-radius: 60px;
    padding: 5px;
    margin-top: -80px;
    background: #fff;
}
        .services .service-item .icon img {
            width: 92px;
           /* margin-right: 20px;*/
        }


        .services .service-item h3 {
            color: var(--color-secondary);
            font-weight: 600;
            margin: 15px 0 0 0;
           /* padding-bottom: 8px;*/
            font-size: 18px;
            position: relative;
            display: inline-block;
            transition: 0.3s;
        }

        .services .service-item p {
            line-height: 24px;
            font-size: 16px;
            margin-bottom: 0;
            color: #71717A;
        }

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: #00b6a1;
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}
.stretched-link::after{
    display:none !important
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio{
    position:relative
}
    .portfolio::before {
        position: absolute;
        content: "";
       /* background: linear-gradient(101.58deg, #2F68FA 41.5%, #1C3E94 85.16%);*/
        background: linear-gradient(181deg, #ffffff 41.5%, #1C3E94 85.16%);
        height: 385px;
        top: 0px;
        left: 0px;
        right: 0;
    }
.portfolio-header h2 {
    position: relative;
    font-size: 34px;
    font-weight: 600;
    line-height: 43px;
    text-align: left;
    color: var(--color-secondary);
}
.portfolio-header p {
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    text-align: left;
}
.switchbuttons {
    width: 230px;
    height: 56px;
    margin-bottom: 35px;
    padding: 6px;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #FFFFFF;
}
a.switchlink {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 40px;
    transition: all 0.3s ease-in-out;
}
    a.switchlink.active{
        background:#fff;
        color:var(--color-secondary);
        font-weight:600
    }
    .portfolio .portfolio-flters {
        padding: 0 0 20px 0;
        margin: 20px 0;
        list-style: none;
        text-align: left;
    }
.portfolio-item{
    height:310px
}

.portfolio-content {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
    color: #71717A;
    font-size: 12px;
    font-weight: 400;
}
    .portfolio-content span {
        display: inline-flex;
        align-items: center;
        margin: 0 10px 0 0;
    }
.bottomcard {
    position: absolute;
    bottom: 10px;
}
.portfolio-content span:last-child {
    margin: 0
}
        .portfolio-content span svg {
            margin-right: 5px;
        }
.portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-flex;
    margin: 5px 5px;
    transition: all 0.3s ease-in-out;
    height: 40px;
    padding: 8px 20px 8px 20px;
    border-radius: 40px;
    background: #fff;
    border: 1px solid #D0D5DD;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    color: var(--color-secondary);
}

        .portfolio .portfolio-flters li:hover,
        .portfolio .portfolio-flters li.filter-active {
            color: #fff;
            background: var(--color-secondary);
            border: 1px solid var(--color-secondary);
        }

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-wrap {
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    /* border: 1px solid #CFCFD3;*/
}

    .portfolio .portfolio-wrap img {
        transition: 0.3s;
        position: relative;
        z-index: 1;
        height: 172px;
        object-fit: cover;
        width: 100%;
        object-position: bottom;
    }

    .portfolio .portfolio-wrap .portfolio-info {
        padding: 15px 15px;
        background-color: #fff;
        position: relative;
        z-index: 2;
        height: 136px;
        border: 1px solid #CFCFD3;
        border-radius: 0 0 20px 20px;
    }

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
}

    .portfolio .portfolio-wrap .portfolio-info h4 a {
        color: var(--color-secondary);
        font-size: 18px;
        font-weight: 600;
        text-align: left;
        transition: 0.3s;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
        .portfolio .portfolio-wrap .portfolio-info h4 a small {
            font-size: 10px;
            font-weight: 500;
        }
        .portfolio .portfolio-wrap .portfolio-info h4 a:hover {
            color: var(--color-primary);
        }

    .portfolio .portfolio-wrap .portfolio-info p {
        color: #6c757d;
        font-size: 12px;
        margin: 5px;
    }

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
    .portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  font-size: 16px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #9c9c9c;
  font-size: 12px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: #009d8b;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: white;
  height: 100%;
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.hero-img {
    width: 65%;
}

.hero {
    width: 100%;
    position: relative;
    background: linear-gradient(90deg, #E9F0FF 28.89%, #FFFFFF 96.7%);
    padding: 245px 80px 185px;
    margin-top: -155px;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.hero p {
    font-weight: 400;
    color: var(--color-default);
    font-size: 16px;
    width: 35%;
    text-align: center;
    margin: 0 auto 35px;
}

.hero .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff;
    background: var(--color-primary);
    cursor:pointer
}

.hero .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }

}
.number-boxes {
    text-align: center;
    padding: 0 50px 50px;
    margin-top:-125px
}
.number-title {
    font-size: 30px;
    color: var(--color-secondary);
    font-weight: 600;
}
.student-icon {
    width: 60px;
    height: 60px;
}
.number-box {
    background: #ffffff;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
    box-shadow: 1px 1px 20px 0 #f1f1f1;
    padding: 30px;
    border-radius: 10px;
}
    .number-box h2 {
        font-size: 55px;
        color: var(--color-primary);
        margin: 0;
        font-weight: 600;
    }
    .number-box .plus{
        font-size: 55px;
        color: var(--color-primary);
        font-weight: 600;
    }
    .number-box .title {
        font-weight: 500;
        margin-bottom: 0px;
        font-size: 24px;
        color:var(--color-secondary)
    }
.counter {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
  /*  background: linear-gradient(90deg, #030399 0%, #010133 100%);*/
    padding: 90px 0;
    color: white;
    background:#fff
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  height: 120px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

    .footer .footer-info p {
        font-size: 15px;
        font-weight: 400;
        width: 100%;
    }
.social-links{
    justify-content:end
}
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-right: 18px;
    transition: 0.3s;
}
    .footer .social-links a:last-child {
        margin-right: 0px;
        margin-left: 0;
    }
    .footer .social-links a svg path {
        fill: var(--color-primary);
    }
    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

.footer .footer-links {
    align-items: center;
    display: flex;
    margin-top: 68px;
    justify-content: center;
    color: #fff;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

    .footer .footer-links ul li {
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        line-height: 20.72px;
        text-align: center;
        color: #000;
    }

.footer .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}
.social-item {
    flex-direction: column;
    align-items: center !important;
    /*    margin-top: 55px !important;*/
    margin-top: 0px !important;
}
@media (max-width: 767px) {
    .counter-in-mobile {
        width: 33.33%;
        padding: 5px;
    }
    .portfolio-header h2 {
        font-size: 26px;
    }
    .number-box {
        padding: 20px;
    }
    .number-box h2, .number-box .plus {
        font-size: 32px;
    }
    .number-box .title {
        font-size: 14px;
    }
    .header .logo img {
        max-height: 65px;
    }
    .right-logo img {
        height: 40px;
    }
    .hero {
        padding: 230px 30px 125px;
    }
    .portfolio-header h2, .portfolio-header p, .portfolio .portfolio-flters, .rightcontent {
        text-align: center;
    }
    .switchbuttons {
        margin: 0 auto 35px;
    }
    .portfolio .portfolio-flters li {
        margin: 5px 5px;
    }
    .services-all-item {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 100px;
    }
    .services .service-item {
        padding: 40px 25px;
        align-items: center;
        text-align: center;
    }
  /*  .Partners-box {
        height: 415px;
        width: 350px;
    }*/
    .call-to-action {
        padding: 10px 15px 60px;
        margin-top: 10px;
    }
    .footer .footer-links {
        margin-top: 35px;
        justify-content: flex-start;
    }
    .social-item {
       /* margin-top: 25px !important;*/
        margin-top: 0px !important;
    }

}
@media (max-width: 992px) {
    .hero-img {
        width: 100%;
    }
}

    @media (min-width: 767px) and (max-width: 992px) {
        .footer .footer-links {
            justify-content: flex-start;
        }
        .hero p {
            width: 70%;
        }
    }

    @media (min-width:519px) and (max-width: 992px) {
        .portfolio::before {
            height: 478px;
        }
    }

    @media (min-width:300px) and (max-width: 518px) {
        .portfolio::before {
            height: 528px;
        }
    }

    @media (min-width:300px) and (max-width: 600px) {
        .number-boxes {
            padding: 0px 10px 50px;
        }
    }

    @media (min-width:992px) and (max-width: 1200px) {
        .services .service-item {
            padding: 25px 15px;
        }

            .services .service-item h3 {
                font-size: 16px;
            }
    }

    @media (min-width:768px) and (max-width: 991px) {
        .services-all-item {
            flex-wrap: wrap;
        }

        .services .service-item {
            margin: 0px 10px 75px;
        }
    }

    @media (min-width:300px) and (max-width: 767px) {
        .services-all-item {
            flex-wrap: wrap;
        }

        .services .service-item {
            margin: 0px 10px 60px;
        }
        .hero p {
            width: 100%;
        }
        .rightcontent {
            align-items: center;
            justify-content: center;
            padding: 40px 0 15px 0;
        }
        .call-to-action h1 {
            text-align: center !important;
        }
    }