/*======================
   01. Google fonts
========================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap");
/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0; }

body {
  line-height: 1.5;
  font-family: "poppins", sans-serif;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 400; }
  @media (max-width: 1199.98px) {
    body {
      font-size: 15px; } }
  @media (max-width: 575.98px) {
    body {
      font-size: 15px;
      line-height: 1.6; } }

ol,
ul {
  list-style: none; }

a {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }

a:hover {
  text-decoration: none; }

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none; }

h1, h2, h3, h4, h5 {
  color: #333b55; }

p, span {
  font-family: "Open Sans", sans-serif;
  color: #333b55; 
  margin-bottom: 1rem;
 }
li{
  color: #333b55;
}
.font_medium {
  font-weight: 500; }

.font_bold {
  font-weight: bold; }

.font_black {
  font-weight: 900; }

.black {
  color: #000; }

.button {
  padding: 16px 20px;
  color:#ffffff !important;
  background-color:#f9f19a;
  font-size: 16px !important;
  border: none;
  box-shadow: 0 2px 16px rgb(0 0 0 / 12%);
    min-width: 200px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-transform: capitalize !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
  z-index: 1; }
  .button:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    color:#fff;
    width: 0;
    border: none;
    background-color: #333b55;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: -1; }
  .button:hover:before {
    width: 100%;
    right: auto;
    left: 0; }
.net-btn-datum{
  padding: 12px 20px;
  color: #ffffff !important;
  background-color:transparent;
  border: 1px solid #ffffff;
  border-radius: 3.5rem;
  font-size: 16px !important;
  width: 240px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-transform: capitalize !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-weight: 600;
  z-index: 1;
}
@media(min-width: 576px) {
  .container-sm,.container {
      max-width:540px
  }
}

@media(min-width: 768px) {
  .container-md,.container-sm,.container {
      max-width:720px
  }
}

@media(min-width: 992px) {
  .container-lg,.container-md,.container-sm,.container {
      max-width:960px
  }
}

@media(min-width: 1200px) {
  .container-xl,.container-lg,.container-md,.container-sm,.container {
      max-width:1140px
  }
}

@media(min-width: 1400px) {
  .container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container {
      max-width:1320px
  }
}

.section-title {
  margin-bottom: 40px;
  }
  @media (max-width: 575.98px) {
    .section-title {
      margin-bottom: 10px; } }
  .section-title h2 {
    font-size: 32px;
    color: #333b55;
    font-weight: 600;
    margin-bottom: 20px; }
    @media (max-width: 1399.98px) {
      .section-title h2 {
        font-size: 36px; } }
    @media (max-width: 991px) {
      .section-title h2 {
        font-size: 28px; } }
    @media (max-width: 575.98px) {
      .section-title h2 {
        font-size: 26px;
        margin-bottom: 10px; } }
  .section-title p {
    font-size: 16px;
    color: #333b55;
    max-width: 700px;
     }
    @media (max-width: 575.98px) {
      .section-title p {
        font-size: 14px; } }
/* ------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999; }

header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 1024;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; 
   background:#00000000;
}
  header.nav-active {
    background-color: #fff;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  @media (max-width: 575.98px) {
    header {
      height: 80px; } }
  @media (max-width: 991px) {
    header .menu-wrap {
      position: fixed;
      top: 0;
      left: -100%;
      background-color: #fff;
      z-index: -1;
      height: 100%;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-top: 80px;
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; } }
  @media (max-width: 575.98px) {
    header .menu-wrap {
      padding-top: 70px; } }
  header .menu-wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
    @media (max-width: 991px) {
      header .menu-wrap ul {
        display: block;
        width: 100%;
        overflow: auto; } }
    header .menu-wrap ul li {
      display: inline-block;
      margin: 0; }
      header .menu-wrap ul li .fa-search {
        margin-right: 40px;
        color: #333b55;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        @media (max-width: 1199.98px) {
          header .menu-wrap ul li .fa-search {
            margin-right: 15px; } }
        @media (max-width: 991px) {
          header .menu-wrap ul li .fa-search {
            margin-left: calc((100% - 720px) / 2 + 15px); } }
        @media (max-width: 767.98px) {
          header .menu-wrap ul li .fa-search {
            margin-left: calc((100% - 540px) / 2 + 15px); } }
        @media (max-width: 575.98px) {
          header .menu-wrap ul li .fa-search {
            margin-left: 15px;
            margin-right: 15px; } }
        header .menu-wrap ul li .fa-search:hover {
          color: #fb7c63;
          -webkit-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
      @media (max-width: 991px) {
        header .menu-wrap ul li.search-open {
          margin-bottom: 30px !important; } }
      @media (max-width: 991px) {
        header .menu-wrap ul li {
          display: block;
          text-align: left;
          padding: 10px 0;
          border-bottom: 1px solid #ddd; }
          header .menu-wrap ul li:first-child {
            border-top: 1px solid #ddd; } }
      header .menu-wrap ul li a {
        color: #333b55;
        margin-right:20px;
        font-size: 15px;
        font-weight: 500;
        text-transform: capitalize;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        header .menu-wrap ul li a.nav-link {
          padding: 0; }
        @media (max-width: 991px) {
          header .menu-wrap ul li a {
            margin: 0;
            margin-left: calc((100% - 720px) / 2 + 15px); } }
        @media (max-width: 767.98px) {
          header .menu-wrap ul li a {
            margin-left: calc((100% - 540px) / 2 + 15px); } }
        @media (max-width: 575.98px) {
          header .menu-wrap ul li a {
            margin-left: 15px;
            margin-right: 15px; } }
        @media (max-width: 1199.98px) {
          header .menu-wrap ul li a {
            margin-right: 25px;
            font-size: 14px; } }
        header .menu-wrap ul li a.active {
          color: #ffc107; }
        header .menu-wrap ul li a:hover {
          color: #ffc107; }
      header .menu-wrap ul li.header-btn-box {
        border: none; }
        @media (max-width: 991px) {
          header .menu-wrap ul li.header-btn-box .header-btn {
            margin-left: calc((100% - 720px) / 2 + 15px); } }
        @media (max-width: 767.98px) {
          header .menu-wrap ul li.header-btn-box .header-btn {
            margin-left: calc((100% - 540px) / 2 + 15px); } }
        @media (max-width: 575.98px) {
          header .menu-wrap ul li.header-btn-box .header-btn {
            margin-left: 15px;
            margin-right: 15px; } }
  header .show-menu {
    left: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  header .logo img {
    width: 142px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    @media (max-width: 575.98px) {
      header .logo img {
        width: 110px; } }
  header .humberger-menu {
    display: none;
    cursor: pointer; }
    @media (max-width: 991px) {
      header .humberger-menu {
        display: block;
        position: absolute;
        top: -15px;
        right: 16px; } }
    header .humberger-menu span {
      background: #333b55;
      border-radius: 5px;
      width: 30px;
      height: 1.5px;
      display: block;
      margin: 7px 0;
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      @media (max-width: 575.98px) {
        header .humberger-menu span {
          width: 25px; } }
    header .humberger-menu .frist-line.current {
      -webkit-transform: translateY(9px) rotate(135deg);
      transform: translateY(9px) rotate(135deg); }
    header .humberger-menu .center-line.current {
      opacity: 0; }
    header .humberger-menu .last-line.current {
      -webkit-transform: translateY(-8px) rotate(-135deg);
      transform: translateY(-8px) rotate(-135deg); }

.home-area {
  padding-top: 170px;
  padding-bottom: 150px;
  background-color: #070707;
  background:linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)), url(../img/bg1.jpg);
  background-position:center;
  background-repeat: no-repeat;
  background-size: cover;
}
  .home-text img{
    width:180px;
  }
  @media only screen and (max-width: 1400px) {
    .home-area {
      min-height: 730px; } }
  @media (max-width: 1199.98px) {
    .home-area {
      min-height: 670px; } }
  @media (max-width: 991px) {
    .home-area {
      min-height: 610px; } }
  @media (max-width: 575.98px) {
    .home-area {
      padding-top:100px;
      padding-bottom: 50px; } }
  .home-area .home-text h2 {
    font-size: 58px;
    color: #333b55;
    font-weight: 600; }
    @media (max-width: 1399.98px) {
      .home-area .home-text h2 {
        font-size: 45px; } }
    @media (max-width: 1199.98px) {
      .home-area .home-text h2 {
        font-size: 45px; } }
    @media (max-width: 991px) {
      .home-area .home-text h2 {
        font-size: 34px; } }
    @media (max-width: 575.98px) {
      .home-area .home-text h2 {
        font-size: 29px; } }
  .home-area .home-text p {
    font-size: 16px;
    line-height: 29px;
    color: #333b55; }
    @media (max-width: 1199.98px) {
      .home-area .home-text p br {
        display: none; } }
    @media (max-width: 991px) {
      .home-area .home-text p {
        font-size: 14px;
        line-height: 1.6; } }

.feature-area {
  padding: 100px 0;
  background: #ffffff;
}
  @media (max-width: 575.98px) {
    .feature-area {
      padding: 60px 0; }
    }
  .feature-area .feature-box {
    padding: 16px 12px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1);
    border-left:4px solid #ff630b;
  }
    .feature-area .feature-box:hover{
      transition: all 0.4s;
      transform: translateY(-5px);
    }
    @media (max-width: 1199.98px) {
      .feature-area .feature-box {
        padding: 20px 14px; } }
    .feature-area .feature-box.active {
      background-color: #fb7c63; }
      .feature-area .feature-box.active h3 {
        color: #fff; }
      .feature-area .feature-box.active p {
        color: #fff; }
    .feature-area .feature-box h3 {
      font-size: 16px;
      font-family: "Open Sans", sans-serif;
      font-weight: 700;
      margin-top: 15px; }
    .feature-area .feature-box p {
      font-size: 13px;
      margin-top: 15px; }
      @media (max-width: 575.98px) {
        .feature-area .feature-box p {
          font-size: 14px; } }

  .datum-scholarship-bg{
    padding:150px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
  }
/* -------------- */

.feature-area-skill {
  padding: 100px 0;
  background-color: #fffbf3;
}
  @media (max-width: 575.98px) {
    .feature-area-skill {
      padding: 60px 0; } }
  .feature-area-skill .feature-box-skill {
    padding: 16px 10px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1);
    border: 1px dashed #ff630b;
  }
    @media (max-width: 1199.98px) {
      .feature-area-skill .feature-box-skill {
        padding: 20px 14px; } }
    .feature-area-skill .feature-box-skill.active {
      background-color: #fb7c63; }
      .feature-area-skill .feature-box-skill.active h3 {
        color: #fff; }
      .feature-area-skill .feature-box-skill.active p {
        color: #fff; }
    .feature-area-skill .feature-box-skill h3 {
      font-size: 14px;
      font-family: "Open Sans", sans-serif;
      font-weight: 700;}
    .feature-area-skill .feature-box-skill p {
      font-size: 13px;
      margin-top: 15px; }
      @media (max-width: 575.98px) {
        .feature-area-skill .feature-box-skill p {
          font-size: 14px; } }

          .dark .feature-area-skill .feature-box-skill {
            background-color: #ffffff; }
            .dark .feature-area-skill .feature-box-skill.active {
              background-color: #ffc107; }
            .dark .feature-area-skill .feature-box-skill h3, .dark .feature-area-skill .feature-box-skill p {
              color: rgba(24, 24, 24, 0.95); }
.network-area {
  padding: 100px 0 100px;
  background-color: #F0FAFF; }
  .bg-datum-2 .net-text {
    padding: 40px 40px;
  }
  .bg-datum-2 .net-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600; }
    @media (max-width: 1199.98px) {
      .bg-datum-2 .net-text h2 {
        font-size: 32px; } }
    @media (max-width: 991px) {
      .bg-datum-2 .net-text h2 {
        font-size: 25px; } }
        .bg-datum-2 .net-text p {
    margin-bottom: 12px;
    font-size: 16px; }
    .bg-datum-2 .net-text ul li{
    color: #212121;
    font-size:16px;
    margin-bottom: 12px;
  }
  .bg-datum-2 .net-text ul li i{
    line-height: 24px;
    margin-right:10px;
  }
    @media (max-width: 575.98px) {
      .bg-datum-2 .net-text p {
        max-width: 100%;
        font-size: 14px; } }
        .bg-datum-2 .net-text .net-btn-box {
    display: inline-block; }
    .bg-datum-2 .net-text .net-btn-box a {
      border-radius: 10px;
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }

      /* ..... */
      .bg-datum-3{
        background-color: #ffffff;
      }
      .bg-datum-3{
        padding: 100px 0;
      }
      .bg-datum-5{
        padding: 50px 0;
        background-color: #ffffff;
      }
      .bg-datum-3 .net-text-3 h2 {
        font-size: 32px;
        margin-bottom: 20px;
        font-weight: 600; }
        @media (max-width: 1199.98px) {
          .bg-datum-3 .net-text-3 h2 {
            font-size: 32px; } }
        @media (max-width: 991px) {
          .bg-datum-3 .net-text-3 h2 {
            font-size: 25px; } }
            .bg-datum-3 .net-text-3 p {
        margin-bottom: 45px;
        font-size: 16px; }
        .bg-datum-3 .net-text-3 ul li{
        color: #212121;
        font-size:16px;
        margin-bottom: 24px;
      }
      .bg-datum-3 .net-text-3 ul li i{
        line-height: 24px;
        margin-right:10px;
      }
        @media (max-width: 575.98px) {
          .bg-datum-3 .net-text-3 p {
            max-width: 100%;
            font-size: 14px; } }
            .bg-datum-3 .net-text-3 .net-btn-box-3 {
        display: inline-block; }
        .bg-datum-3 .net-text-3 .net-btn-box-3 a {
          border-radius: 10px;
          -webkit-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }


          
          .bg-datum-5 .net-text-3 h2 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 600; }
            @media (max-width: 1199.98px) {
              .bg-datum-5 .net-text-3 h2 {
                font-size: 32px; } }
            @media (max-width: 991px) {
              .bg-datum-5 .net-text-3 h2 {
                font-size: 25px; } }
                .bg-datum-5 .net-text-3 p {
            margin-bottom: 45px;
            font-size: 16px; }
            .bg-datum-5 .net-text-3 ul li{
            color: #212121;
            font-size:16px;
            margin-bottom: 24px;
          }
          .bg-datum-5 .net-text-3 ul li i{
            line-height: 24px;
            margin-right:10px;
          }
            @media (max-width: 575.98px) {
              .bg-datum-5 .net-text-3 p {
                max-width: 100%;
                font-size: 14px; } }
                .bg-datum-5 .net-text-3 .net-btn-box-3 {
            display: inline-block; }
            .bg-datum-5 .net-text-3 .net-btn-box-3 a {
              border-radius: 10px;
              -webkit-transition: all 0.3s ease-out 0s;
              transition: all 0.3s ease-out 0s; }
      /* ..... */

.mobileapp_wrapper {
  padding-top: 100px; }
  @media (max-width: 575.98px) {
    .mobileapp_wrapper {
      padding-top: 60px; } }
  .mobileapp_wrapper .mobile-img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden; }
  .mobileapp_wrapper .mobile_active .owl-dots {
    margin-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .mobileapp_wrapper .mobile_active .owl-dots button {
      background: none;
      margin-right: 10px; }
      .mobileapp_wrapper .mobile_active .owl-dots button:last-child {
        margin: 0; }
      .mobileapp_wrapper .mobile_active .owl-dots button.active span {
        width: 20px; }
      .mobileapp_wrapper .mobile_active .owl-dots button span {
        width: 10px;
        background: #fb7c63;
        height: 6px;
        border-radius: 4px;
        display: block;
        -webkit-transition: all 0.4s ease-out 0s;
        transition: all 0.4s ease-out 0s; }

.pricing-area {
  padding: 100px 0; }
  @media (max-width: 575.98px) {
    .pricing-area {
      padding: 60px 0; } }
  .pricing-area .price-box {
    padding: 40px 0 50px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(51, 59, 85, 0.1); }
    .pricing-area .price-box h4 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 20px; }
      @media (max-width: 991px) {
        .pricing-area .price-box h4 {
          font-size: 26px; } }
    .pricing-area .price-box .price-circle-box {
      width: 150px;
      margin: 0 auto;
      position: relative; }
      .pricing-area .price-box .price-circle-box .price-big {
        height: 140px;
        width: 140px;
        line-height: 140px;
        text-align: center;
        border-radius: 50%;
        border: 3px solid #fb7c63;
        z-index: 1;
        background-color: #fff;
        position: relative; }
        .pricing-area .price-box .price-circle-box .price-big P {
          font-size: 36px;
          font-weight: 700;
          font-family: "poppins", sans-serif;
          z-index: 20;
          position: relative; }
          .pricing-area .price-box .price-circle-box .price-big P span {
            font-size: 17px !important; }
        .pricing-area .price-box .price-circle-box .price-big::before {
          position: absolute;
          content: '';
          top: 16px;
          left: 100px;
          height: 53px;
          width: 53px;
          background-color: #fff;
          border-radius: 50%; }
      .pricing-area .price-box .price-circle-box .price-small {
        height: 60px;
        width: 60px;
        line-height: 57px;
        position: absolute;
        right: -15px;
        top: 12px;
        text-align: center;
        border-radius: 50%;
        border: 3px solid #fb7c63;
        font-size: 22px;
        font-weight: 700;
        color: #333b55;
        background-color: #fff; }
        .pricing-area .price-box .price-circle-box .price-small span {
          z-index: 20;
          position: relative; }
    .pricing-area .price-box .price-feature p {
      margin-top: 20px;
      font-size: 16px; }
    .pricing-area .price-box .price-btn {
      padding: 10px 40px;
      background-color: #333b55; }
      .pricing-area .price-box .price-btn:before {
        background-color: #fb7c63; }
    .pricing-area .price-box.box-2 {
      background-color: #fb7c63; }
      .pricing-area .price-box.box-2 h4 {
        color: #fff; }
      .pricing-area .price-box.box-2 .price-small, .pricing-area .price-box.box-2 .price-big {
        border-color: #fff; }
      .pricing-area .price-box.box-2 .price-feature p {
        color: #fff; }
      .pricing-area .price-box.box-2 .price-btn {
        background-color: #fff;
        color: #333b55 !important; }
        .pricing-area .price-box.box-2 .price-btn:before {
          background-color: #333b55; }
        .pricing-area .price-box.box-2 .price-btn:hover {
          color: #fff !important; }

.counter-area {
  padding: 120px 0 150px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1; }
  @media (max-width: 575.98px) {
    .counter-area {
      padding: 30px 0 60px; } }
  .counter-area .counter-box {
    padding: 20px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .counter-area .counter-box .media {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .counter-area .counter-box .media .img-area {
        height: 50px;
        width: 50px;
        line-height: 50px;
        text-align: center;
        background-color: #fff;
        border-radius: 50%;
        -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 40, 178, 0.2);
        box-shadow: 0px 2px 7px 0px rgba(0, 40, 178, 0.2); }
      .counter-area .counter-box .media i {
        font-size: 20px;
        color: #333b55; }
      .counter-area .counter-box .media .media-body h3 {
        font-size: 30px;
        font-weight: 600;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .counter-area .counter-box .media .media-body h3 span {
          font-family: "poppins", sans-serif; }
      .counter-area .counter-box .media .media-body p {
        font-size: 18px;
        font-weight: 600;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
      .counter-area .counter-box .media .media-body span {
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
    .counter-area .counter-box:hover {
      background-color: #fb7c63; }
      .counter-area .counter-box:hover .media i {
        color: #fb7c63;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
      .counter-area .counter-box:hover .media-body h3, .counter-area .counter-box:hover .media-body p, .counter-area .counter-box:hover .media-body span {
        color: #fff;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
  .counter-area::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    background-image: url(../img/line.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 90%;
    width: 100%; }
  .counter-area::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1; }

.testimonial-area {
  padding-top: 100px; 
  padding-bottom:100px;
  background-color: #292726;
}
  @media (max-width: 575.98px) {
    .testimonial-area {
      padding-top: 60px; } }
  @media (max-width: 575.98px) {
    .testimonial-area .section-title {
      margin-bottom: 40px; } }
  .testimonial-area .owl-carousel .testi-box {
    padding: 30px 20px 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    position: relative;
    text-align: center; }
    .testimonial-area .owl-carousel .testi-box .img-area {
      position: absolute;
      top: -52px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
      .testimonial-area .owl-carousel .testi-box .img-area img {
        width: 100px;
        height: 100px;
        -o-object-fit: cover;
           object-fit: cover;
        border: 5px solid #fff;
        border-radius: 50%; }
    .testimonial-area .owl-carousel .testi-box .icon-area i {
      color: #fb7c63; }
    .testimonial-area .owl-carousel .testi-box .name-area h4 {
      font-size: 20px;
      margin-bottom: 5px; }
    .testimonial-area .owl-carousel .testi-box .name-area span {
      color: #fb7c63;
      margin-top: 10px;
      font-size: 16px; }
  .testimonial-area .owl-carousel .owl-stage {
    padding: 52px 0 20px; }
    .testimonial-area .owl-carousel .owl-stage .owl-item {
      border-radius: 10px; }
      .testimonial-area .owl-carousel .owl-stage .owl-item.center {
        -webkit-box-shadow: 0px 3px 22.8px 1.2px rgba(88, 91, 255, 0.1);
        box-shadow: 0px 3px 22.8px 1.2px rgba(88, 91, 255, 0.1);
        border: none;
        background-color: #fb7c63; }
        .testimonial-area .owl-carousel .owl-stage .owl-item.center h4, .testimonial-area .owl-carousel .owl-stage .owl-item.center p, .testimonial-area .owl-carousel .owl-stage .owl-item.center span {
          color: #fff; }
        .testimonial-area .owl-carousel .owl-stage .owl-item.center .icon-area i {
          color: #fff; }

.blog-area {
  padding: 100px 0 100px; 
  background-color: #292726;
}
  @media (max-width: 575.98px) {
    .blog-area {
      padding-top: 60px; } }
  .blog-area .news-box {
    -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden; }
    .blog-area .news-box .img-area {
      overflow: hidden; }
      .blog-area .news-box .img-area img {
        width: 100%;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .blog-area .news-box .img-area img.main {
          width: 100%; }
    .blog-area .news-box .text-box {
      padding: 20px;
     border-left:4px solid #ff630b;
    }
      .blog-area .news-box .text-box h4 {
        font-size: 20px; }
      .blog-area .news-box .text-box.b-1 {
        position: relative; }
        .blog-area .news-box .text-box.b-1 p {
          margin-top: 15px;
          font-size: 16px; }
      .blog-area .news-box .text-box.b-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .blog-area .news-box .text-box.b-2 .media {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          .blog-area .news-box .text-box.b-2 .media img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            -o-object-fit: cover;
               object-fit: cover; }
          .blog-area .news-box .text-box.b-2 .media .media-body p {
            font-weight: 600;
            font-size: 16px; }
            .blog-area .news-box .text-box.b-2 .media .media-body p span {
              font-weight: 500; }
            @media (max-width: 1199.98px) {
              .blog-area .news-box .text-box.b-2 .media .media-body p {
                font-size: 12px; } }
        .blog-area .news-box .text-box.b-2 .message-num img {
          height: 15px;
          width: 15px;
          -o-object-fit: cover;
             object-fit: cover; }
    .blog-area .news-box .date {
      position: absolute;
      top: 21px;
      right: 20px;
      padding: 10px 16px;
      background-color: #fb7c63;
      border-top-right-radius: 35px;
      border-bottom-right-radius: 35px;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
      .blog-area .news-box .date span {
        color: #fff; }
    .blog-area .news-box:hover .img-area img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }

.faq-area {
  padding-top: 100px;
  padding-bottom:100px;
  background-color:#ffffff;
}
  @media (max-width: 575.98px) {
    .faq-area {
      padding-top: 60px; } }
  .faq-area .faq-collapse-area .accordion .question {
    margin-bottom: 30px;
    border: none; }
    .faq-area .faq-collapse-area .accordion .question button {
      border: 1px solid #ddd;
      padding: 10px 35px 10px 20px;
      font-size: 18px;
      color: #333b55;
      text-decoration: none;
      position: relative; }
      @media (max-width: 575.98px) {
        .faq-area .faq-collapse-area .accordion .question button {
          padding: 9px 20px;
          font-size: 16px; } }
      .faq-area .faq-collapse-area .accordion .question button.btn:focus {
        -webkit-box-shadow: none;
                box-shadow: none; }
      .faq-area .faq-collapse-area .accordion .question button::before {
        position: absolute;
        content: "\f107";
        right: 20px;
        font-family: "Font Awesome 5 Pro"; }
      .faq-area .faq-collapse-area .accordion .question button[aria-expanded="true"]::before {
        content: "\f106";
        font-family: "Font Awesome 5 Pro"; }
      .faq-area .faq-collapse-area .accordion .question button[aria-expanded="true"] {
        background-color: #fb7c63;
        color: #fff;
        border-color: #fb7c63; }
  .faq-area .popup-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 575.98px) {
      .faq-area .popup-area {
        height: 270px; } }

.contact-area {
  padding: 100px 0; }
  @media (max-width: 575.98px) {
    .contact-area {
      padding: 60px 0; } }
  .contact-area .contact-wrap {
    position: relative; }
    @media only screen and (min-width: 1200px) {
      .contact-area .contact-wrap .row {
        padding-right: calc((100% - 1200px) / 2 + 15px); } }
    @media (max-width: 1199.98px) {
      .contact-area .contact-wrap .row {
        padding-right: calc((100% - 960px) / 2 + 15px); } }
    @media (max-width: 991px) {
      .contact-area .contact-wrap .row {
        padding-right: calc((100% - 720px) / 2 + 15px); } }
    @media (max-width: 767.98px) {
      .contact-area .contact-wrap .row {
        padding-right: calc((100% - 540px) / 2 + 15px);
        padding-left: calc((100% - 540px) / 2 + 15px); } }
    @media (max-width: 575.98px) {
      .contact-area .contact-wrap .row {
        padding-right: 15px;
        padding-left: 15px; } }
    .contact-area .contact-wrap .row .iframe-wrap iframe {
      width: 100%;
      border: 0;
      height: 438px; }
      @media (max-width: 767.98px) {
        .contact-area .contact-wrap .row .iframe-wrap iframe {
          height: 300px; } }
    .contact-area .contact-wrap .row form .input_group input, .contact-area .contact-wrap .row form .input_group textarea {
      width: 100%;
      height: 50px;
      padding: 0 20px;
      outline: none;
      color: #333b55;
      border: 1px solid #ddd; }
      .contact-area .contact-wrap .row form .input_group textarea{
          padding-top: 10px;
      }
      .contact-area .contact-wrap .row form .input_group input::-webkit-input-placeholder, .contact-area .contact-wrap .row form .input_group textarea::-webkit-input-placeholder {
        color: #333b55; }
      .contact-area .contact-wrap .row form .input_group input:-ms-input-placeholder, .contact-area .contact-wrap .row form .input_group textarea:-ms-input-placeholder {
        color: #333b55; }
      .contact-area .contact-wrap .row form .input_group input::-ms-input-placeholder, .contact-area .contact-wrap .row form .input_group textarea::-ms-input-placeholder {
        color: #333b55; }
      .contact-area .contact-wrap .row form .input_group input::placeholder, .contact-area .contact-wrap .row form .input_group textarea::placeholder {
        color: #333b55; }
    .contact-area .contact-wrap .row form .input_group textarea {
      height: 150px;
      resize: none;
      outline: none; }
  .contact-area .success {
    color: #468847; }
  .contact-area .error {
    color: #b94a48; }

.search-modal-wrapper .modal {
  z-index: 99999; }
  .search-modal-wrapper .modal.show::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); }
  .search-modal-wrapper .modal .modal-dialog {
    padding: 0 20px;
    max-width: 800px; }
    @media (max-width: 575.98px) {
      .search-modal-wrapper .modal .modal-dialog {
        max-width: 100%; } }
    .search-modal-wrapper .modal .modal-dialog .modal-content {
      padding: 30px 30px 80px 30px;
      overflow: hidden; }
      @media (max-width: 575.98px) {
        .search-modal-wrapper .modal .modal-dialog .modal-content {
          padding: 30px 0px 80px 0; } }
      .search-modal-wrapper .modal .modal-dialog .modal-content::before {
        position: absolute;
        content: "";
        top: -82px;
        left: -14px;
        height: 150px;
        width: 150px;
        background-color: #fb7c63;
        border-radius: 50%; }
        @media (max-width: 575.98px) {
          .search-modal-wrapper .modal .modal-dialog .modal-content::before {
            top: -107px;
            left: -26px; } }
      .search-modal-wrapper .modal .modal-dialog .modal-content::after {
        position: absolute;
        content: "";
        bottom: -82px;
        right: -14px;
        height: 150px;
        width: 150px;
        background-color: #fb7c63;
        border-radius: 50%; }
        @media (max-width: 575.98px) {
          .search-modal-wrapper .modal .modal-dialog .modal-content::after {
            bottom: -107px;
            right: -26px; } }
      .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss {
        position: absolute;
        right: 30px;
        opacity: 1; }
        .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss i {
          font-size: 30px;
          color: #fb7c63;
          cursor: pointer; }
          .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss i:hover {
            opacity: .7; }
      .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body {
        margin-top: 30px; }
        .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body h2 {
          font-size: 32px; }
          @media (max-width: 575.98px) {
            .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body h2 {
              font-size: 20px; } }
        .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form input {
          height: 50px;
          line-height: 50px;
          width: 100%;
          padding: 0 20px;
          border: 2px solid #fb7c63;
          color: #333b55; }
          .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form input:placeholder {
            color: #333b55; }
        .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form button {
          height: 50px;
          line-height: 50px;
          width: 70px;
          color: #fff;
          border: none;
          position: relative;
          background-color: #fb7c63; }

footer {
  background-color: #F0FAFF; }
  @media (max-width: 575.98px) {
    footer {
      padding-top: 30px; } }
  footer .footer-top .footer-box {
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 575.98px) {
      footer .footer-top .footer-box {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
    footer .footer-top .footer-box p {
      max-width: 270px; }
      @media (max-width: 575.98px) {
        footer .footer-top .footer-box p {
          margin-top: 15px; } }
    footer .footer-top .footer-box a {
      display: block; }
    footer .footer-top .footer-box h4 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase; }
      @media (max-width: 1199.98px) {
        footer .footer-top .footer-box h4 {
          font-size: 18px; } }
    footer .footer-top .footer-box .contact-deatils-box .item {
      display: block; }
      footer .footer-top .footer-box .contact-deatils-box .item .contact-img-area {
        height: 35px;
        width: 35px;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        background-color: #333b55;
        display: inline-block;
        margin-right: 15px;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        footer .footer-top .footer-box .contact-deatils-box .item .contact-img-area:hover {
          background-color: #fb7c63;
          -webkit-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
        footer .footer-top .footer-box .contact-deatils-box .item .contact-img-area i {
          color: #fff; }
    @media (max-width: 575.98px) {
      footer .footer-top .footer-box .links {
        margin-top: 15px; } }
    footer .footer-top .footer-box .links a {
      font-family: "Open Sans", sans-serif;
      font-size: 16px;
      color: #333b55; }
      @media (max-width: 575.98px) {
        footer .footer-top .footer-box .links a {
          margin-top: 8px; } }
      footer .footer-top .footer-box .links a:hover {
        color: #fb7c63;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
    footer .footer-top .footer-box form input {
      height: 42px;
      width: 100%;
      border: 1px solid #fb7c63;
      padding: 0 20px;
      background: none;
      font-family: "Open Sans", sans-serif;
      color: #333b55; }
      footer .footer-top .footer-box form input::-webkit-input-placeholder {
        color: #333b55; }
      footer .footer-top .footer-box form input:-ms-input-placeholder {
        color: #333b55; }
      footer .footer-top .footer-box form input::-ms-input-placeholder {
        color: #333b55; }
      footer .footer-top .footer-box form input::placeholder {
        color: #333b55; }
    footer .footer-top .footer-box form button {
      height: 42px;
      width: 70px;
      color: #fff;
      text-align: center;
      background-color: #fb7c63;
      border: none;
      position: relative; }
    footer .footer-top .footer-box .footer-icon-area a {
      display: inline-block;
      margin-right: 25px;
      color: #fff;
      height: 35px;
      width: 35px;
      line-height: 35px;
      text-align: center;
      background-color: #333b55;
      border-radius: 50%; }
      footer .footer-top .footer-box .footer-icon-area a:hover {
        background-color: #fb7c63; }
      footer .footer-top .footer-box .footer-icon-area a.last {
        margin-right: 0; }
  footer .footer-bottom {
    padding: 20px 0 20px; }
    footer .footer-bottom .copyright {
      font-size: 16px; }
      @media (max-width: 767.98px) {
        footer .footer-bottom .copyright {
          text-align: center; } }
    @media (max-width: 767.98px) {
      footer .footer-bottom ul {
        text-align: center !important;
        margin-top: 10px; } }
    footer .footer-bottom ul li {
      display: inline-block; }
      footer .footer-bottom ul li a {
        margin-right: 25px;
        font-family: "Open Sans", sans-serif;
        color: #333b55;
        font-size: 16px; }
        footer .footer-bottom ul li a:hover {
          color: #fb7c63; }
      footer .footer-bottom ul li:last-child a {
        margin-right: 0; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 60px;
  height: 45px;
  width: 45px;
  font-size: 20px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  opacity: 0;
  z-index: 1024;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s; }
  .back-to-top img {
    width: 54px;
}

  .back-to-top.top-btn-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s; }

.dark {
  background-color: #121212; }
  .dark .button {
    background: linear-gradient(270deg,#ff630b 0,#f90 100%);
  }
    .dark .button:before {
      background-color: #121212;
      color:#fff;
    }
  .dark #preloader {
    background-color: #ffffff; }
  .dark header.nav-active {
    background-color: #021927;
    border:none;
  }
  @media (max-width: 991px) {
    .dark header .menu-wrap {
      background-color: #121212; } }
  .dark header .menu-wrap ul li {
    border-color: rgba(255, 255, 255, 0.1); }
    .dark header .menu-wrap ul li a {
      color: rgba(255, 255, 255, 0.95); }
      .dark header .menu-wrap ul li a:hover {
        color: #ffc107; }
      .dark header .menu-wrap ul li a.active {
        color: #ffc107; }
    .dark header .menu-wrap ul li .fa-search {
      color: rgba(255, 255, 255, 0.95); }
      .dark header .menu-wrap ul li .fa-search:hover {
        color: #ffc107;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
  .dark header .humberger-menu span {
    background-color: rgba(255, 255, 255, 0.95); }
  .dark .home-area {
    background-color: #212121; }
    .dark .home-area .home-text h2, .dark .home-area .home-text p {
      color: rgba(255, 255, 255, 0.95); }
  .dark .feature-area .feature-box {
    background-color: #212121; }
    .dark .feature-area .feature-box.active {
      background-color: #ffc107; }
    .dark .feature-area .feature-box h3, .dark .feature-area .feature-box p {
      color: rgba(255, 255, 255, 0.95); }
      .bg-datum-2{
        background-color:#f6f6f6;
      }
  .dark .network-area {
    background-color: #212121; }
    .dark .bg-datum-2 .net-text h2, .dark .bg-datum-2 .net-text p {
      color:#212121 }
  .dark .mobileapp_wrapper .mobile_active .owl-dots button span {
    background-color: #ffc107; }
  .dark .pricing-area .price-box {
    background-color: #212121; }
    .dark .pricing-area .price-box.box-2 {
      background-color: #ffc107; }
      .dark .pricing-area .price-box.box-2 .price-big, .dark .pricing-area .price-box.box-2 .price-small {
        background-color: #fff;
        border-color: #fff; }
        .dark .pricing-area .price-box.box-2 .price-big p, .dark .pricing-area .price-box.box-2 .price-big span, .dark .pricing-area .price-box.box-2 .price-small p, .dark .pricing-area .price-box.box-2 .price-small span {
          color: #212121; }
          .dark .pricing-area .price-box.box-2 .price-big p span, .dark .pricing-area .price-box.box-2 .price-big span span, .dark .pricing-area .price-box.box-2 .price-small p span, .dark .pricing-area .price-box.box-2 .price-small span span {
            color: #212121; }
      .dark .pricing-area .price-box.box-2 .price-big:before {
        background-color: #fff; }
      .dark .pricing-area .price-box.box-2 .price-btn {
        background-color: rgba(255, 255, 255, 0.95);
        color: #ff5a3a !important; }
        .dark .pricing-area .price-box.box-2 .price-btn:before {
          background-color: #121212; }
        .dark .pricing-area .price-box.box-2 .price-btn:hover {
          color: rgba(255, 255, 255, 0.95) !important; }
    .dark .pricing-area .price-box h4 {
      color: rgba(255, 255, 255, 0.95); }
    .dark .pricing-area .price-box .price-big, .dark .pricing-area .price-box .price-small {
      background-color: #121212;
      border-color: rgba(255, 255, 255, 0.95); }
      .dark .pricing-area .price-box .price-big p, .dark .pricing-area .price-box .price-small p {
        color: rgba(255, 255, 255, 0.95); }
        .dark .pricing-area .price-box .price-big p span, .dark .pricing-area .price-box .price-small p span {
          color: rgba(255, 255, 255, 0.95); }
    .dark .pricing-area .price-box .price-big::before {
      background-color: #121212; }
    .dark .pricing-area .price-box .price-small span {
      color: rgba(255, 255, 255, 0.95); }
    .dark .pricing-area .price-box .price-feature p {
      color: rgba(255, 255, 255, 0.95); }
    .dark .pricing-area .price-box .price-btn {
      background-color: #121212;
      color: #fff; }
      .dark .pricing-area .price-box .price-btn:before {
        background-color: #ffc107; }
  .dark .counter-area .counter-box .media i {
    color: #121212; }
  .dark .counter-area .counter-box .media .media-body h3, .dark .counter-area .counter-box .media .media-body p, .dark .counter-area .counter-box .media .media-body span {
    color: #121212; }
  .dark .counter-area .counter-box:hover {
    background-color: #ffc107; }
    .dark .counter-area .counter-box:hover .media i {
      color: #ffc107; }
    .dark .counter-area .counter-box:hover .media-body h3, .dark .counter-area .counter-box:hover .media-body p, .dark .counter-area .counter-box:hover .media-body span {
      color: #fff; }
  .dark .testimonial-area .owl-carousel .testi-box {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: #212121; }
    .dark .testimonial-area .owl-carousel .testi-box .img-area img {
      border-color: #121212; }
    .dark .testimonial-area .owl-carousel .testi-box .icon-area i {
      color: #ffc107; }
    .dark .testimonial-area .owl-carousel .testi-box p {
      color: rgba(255, 255, 255, 0.95); }
    .dark .testimonial-area .owl-carousel .testi-box .name-area h4 {
      color: rgba(255, 255, 255, 0.95); }
    .dark .testimonial-area .owl-carousel .testi-box .name-area span {
      color: rgba(255, 255, 255, 0.95);}
  .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box {
    background-color: #f9f19a; }
    .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box p, .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box h4 {
      color: #212121; }
    .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box .icon-area i {
      color: #212121; }
    .dark .testimonial-area .owl-carousel .owl-stage .owl-item.center .testi-box .name-area span {
      color:#212121; }
  .dark .blog-area .news-box {
    background-color: #fffbf3; }
    .dark .blog-area .news-box h4, .dark .blog-area .news-box p, .dark .blog-area .news-box span {
      color:#212121; }
    .dark .blog-area .news-box .date {
      background-color: #ffc107; }
    
  .dark .faq-area .faq-collapse-area .accordion .question button {
    color:#212121;
    border-color: rgba(0, 0, 0, 0.25);
    background-color: #fff;
  }
    .dark .faq-area .faq-collapse-area .accordion .question button[aria-expanded="true"] {
      background-color: #f6f6f6;
      color: #212121; }
  .dark .faq-area .faq-collapse-area .accordion .question .card-body p {
    color:#212121}
  .dark .contact-area form .input_group input, .dark .contact-area form .input_group textarea {
    background-color: #212121;
    border: none !important;
    color: rgba(255, 255, 255, 0.95) !important; }
    .dark .contact-area form .input_group input::-webkit-input-placeholder, .dark .contact-area form .input_group textarea::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.95) !important; }
    .dark .contact-area form .input_group input:-ms-input-placeholder, .dark .contact-area form .input_group textarea:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.95) !important; }
    .dark .contact-area form .input_group input::-ms-input-placeholder, .dark .contact-area form .input_group textarea::-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.95) !important; }
    .dark .contact-area form .input_group input::placeholder, .dark .contact-area form .input_group textarea::placeholder {
      color: rgba(255, 255, 255, 0.95) !important; }
  .dark .contact-area form .btn-contact:before {
    background-color: #212121; }
  .dark footer {
    background-color: #212121; }
    .dark footer .footer-box p, .dark footer .footer-box h4, .dark footer .footer-box span {
      color: rgba(255, 255, 255, 0.95); }
    .dark footer .footer-box .links a {
      color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box .links a:hover {
        color: #ffc107; }
    .dark footer .footer-box .contact-deatils-box .item .contact-img-area {
      background-color: #121212; }
      .dark footer .footer-box .contact-deatils-box .item .contact-img-area:hover {
        background-color: #ffc107; }
    .dark footer .footer-box form input {
      border-color: #ffc107;
      color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box form input::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box form input:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box form input::-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-box form input::placeholder {
        color: rgba(255, 255, 255, 0.95); }
    .dark footer .footer-box form button {
      background-color: #ffc107; }
    .dark footer .footer-box .footer-icon-area a {
      background-color: #121212; }
      .dark footer .footer-box .footer-icon-area a:hover {
        background-color: #ffc107; }
    .dark footer .footer-bottom {
      border-color: rgba(255, 255, 255, 0.1); }
      .dark footer .footer-bottom p, .dark footer .footer-bottom a {
        color: rgba(255, 255, 255, 0.95); }
      .dark footer .footer-bottom a:hover {
        color: #ffc107; }
  .dark .search-modal-wrapper .modal .modal-dialog .modal-content {
    background-color: #212121; }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss {
      text-shadow: none; }
      .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-dismiss i {
        color: #ffc107; }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body h2, .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body p {
      color: rgba(255, 255, 255, 0.95); }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form input {
      border-color: #ffc107; }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content .modal-body form button {
      background-color: #ffc107; }
    .dark .search-modal-wrapper .modal .modal-dialog .modal-content:before, .dark .search-modal-wrapper .modal .modal-dialog .modal-content:after {
      background-color: #ffc107; }
  .dark .section-title h2 {
   color: #212121;}
  .dark .section-title p {
    color:#333b55;}
.dark .title-2 h2{
  color: #fffbf3;
}
.dark .title-2 p{
  color:#afafaf;
}
/*# sourceMappingURL=style.css.map */
.popup-contact-form {
  background-color: #ffffff;
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px rgba(233, 120, 74, 0.16);
  box-shadow: 0 3px 6px rgba(233, 120, 74, 0.16);
  border-top: 5px solid #ff630b;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.popup-contact-form .form-group {
  position: relative;
  text-align: left;
  margin-bottom: 18px;
}
.popup-contact-form .form-group label {
  background-color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 8px;
  z-index: 1;
  color: #000000;
}
.popup-contact-form .form-group .form-control {
  border: 1px solid #6b6b6b;
  border-radius: 12px;
  line-height: 50px;
  height: 40px;
  margin-bottom: 0;
  padding-left: 12px;
  padding-right: 12px;
  overflow: hidden;
  font-size: 14px;
}
.faq-collapse-area .datum-curri{
display: flex;
align-items: center;
}
.course-details-purchase {
  margin-top: -100px;
  padding-top: 100px;
  top: 20px;
}
.upcoming-event-container{
  padding:52px 0 10px;
}
.upcoming-event-wrapper {
  border: 1px solid#3e3e3e;
  margin-bottom: 30px;
  padding:18px 10px;
  position: relative;
}
.upcoming-event-details {
  display:flex;
  width: 100%;
}
.upcoming-event-details .upcoming-event-logo {
  width: 75px;
  float: left;
  text-align: center;
}
.upcoming-event-logo h2 {
  background-color:#fffbf3;
  font-size: 34px;
  margin-bottom: 0;
  color: #212121;
  padding: 13px;
  height: 73px;
}
.upcoming-event-logo h5 {
  background-color: #292726;
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 300;
  text-transform: capitalize;
  padding: 10px;
}
.upcoming-event-details .upcoming-event-content {
  padding-left: 25px;
  float: left;
}
.upcoming-event-content h4 {
  color: #fff;
  font-size:18px;
  margin-bottom: 10px;
}
.upcoming-event-content .upcoming-event-meta {
  margin-bottom: 15px;
}
.upcoming-event-content .upcoming-event-meta li {
  color: #999;
  margin-right: 25px;
}
ul.upcoming-event-meta.list-inline i {
  margin-right: 5px;
}
.upcoming-event-content .upcoming-event-btn {
  background:linear-gradient(270deg,#ff630b 0,#f90 100%);
  border-radius: 0;
  padding: 6px 16px;
  text-transform: capitalize;
  color: #f7f7f7;
  margin-top: 0;
  display: inline-block;
  font-size: 16px;
  font-weight:600;
}
@media (max-width: 575.98px){
  .upcoming-event-logo{
    display: none;
  }
  .upcoming-event-details .upcoming-event-content{
    padding: 0;
  }
}
.scrolling-ticker {
  padding: 15px 0;
  color:#000;
  background-color:#fff;
}
#about-1 {
  padding-top: 25px;
  padding-bottom: 22px;
}
.bg-05 {
  background-color: #f9f19a;
}
.abox-1 {
  padding-left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abox-1 img, .abox-4 img, .abox-1 span, .abox-4 span {
  float: left;
  text-align: center;
}
.abox-1-txt, .abox-4-txt {
  overflow: hidden;
  padding-left: 20px;
}

.abox-1 h5 {
  line-height: 1;
  margin-bottom: 1px;
}
.abox-1 p, .a4-txt p, .abox-4 p {
  margin-bottom: 0;
}
@media (min-width: 321px) and (max-width: 479.95px) {
  #about-1 {
      padding-top: 30px;
      padding-bottom: 12px;
  }
}

@media (min-width: 321px) and (max-width: 479.95px) {
    .abox-1 {
        text-align: center;
        padding-left: 0;
        margin-bottom: 18px;
    }
}
@media (min-width: 321px) and (max-width: 479.95px) {
  .abox-1 img, .abox-1 span {
      display: none;
  }
}
@media (min-width: 321px) and (max-width: 479.95px) {
  .abox-1-txt {
      padding-left: 0;
  }
}
@media (min-width: 321px) and (max-width: 479.95px) {
  .abox-1 h5 {
      font-size: 1.35rem;
      margin-bottom: 3px;
  }
}
@media (min-width: 321px) and (max-width: 479.95px) {
  .abox-1 p, .abox-4 p {
      font-size: 1.05rem;
  }
}
.datum-badge{
  background-color: #0000003b;
  border: 1px solid #ffffff2b;
  display: inline-block;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom:10px;
}
.datum-badge:hover{
  background-color: #0000003b;
  border: 1px solid #ffffff2b;
}
.staff__widget {
  text-align: center;
  background-color:#ff630b;
  padding: 20px 0px;
 margin-top:30px;
}
.staff__widget span {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #ffffff;
}
.staff__widget span a {
  text-decoration: underline;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
  margin-left: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.wptb-icon-box3 {
  margin-left: 36px;
  margin-bottom: 30px;
}
.wptb-icon-box3 .wptb-item--inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  background-color:#fffbf3;
  padding: 30px 30px 30px 0px;
  height: 270px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0px 20px rgba(225, 56, 51,0.05);
  box-shadow: 0 0px 20px rgba(225, 56, 51,0.05);
  border: 2px solid #ff630b;
}
.wptb-icon-box3 .wptb-item--icon {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  line-height: 72px;
  font-size: 20px;
  color:#fff;
  background-color: #ff630b;
  border-radius: 50%;
  margin-left: -36px;
  margin-right: 30px;
}
.wptb-item--icon img{
  width:40px;
}
.wptb-icon-box3 .wptb-item--icon:before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background-color:#ff630b40;
  z-index: -1;
}
.wptb-icon-box3 .wptb-item--title {
  margin: 0px 0px 10px 0px;
  font-size: 20px;
}
.wptb-icon-box3 .wptb-item--description {
  margin-bottom: 0px;
}
@media (max-width: 575.98px){
  .bg-datum-2 .net-text {
    padding: 40px 0px;
}
  .wptb-icon-box3{
    margin-left:0;
  }
  .wptb-item--icon{
    display: none !important;
  }
  .wptb-icon-box3 .wptb-item--inner{
    height: auto;
    padding: 20px 20px 20px 20px;
  }
}

.blog-area-datum-course {
  padding: 100px 0 100px; 
  background-color: #fffbf3;
}
  @media (max-width: 575.98px) {
    .bg-datum-3{
      padding:60px 0;
    }
    .blog-area-datum-course {
      padding-top: 60px; } }
      .blog-area-datum-course .news-box {
    -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden; }
    .blog-area-datum-course .news-box .img-area {
      overflow: hidden; }
      .blog-area-datum-course .news-box .img-area img {
        width: 100%;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .blog-area-datum-course .news-box .img-area img.main {
          width: 100%; }
          .blog-area-datum-course .news-box .text-box {
      padding: 20px;
    }
    .blog-area-datum-course .news-box .text-box h4 {
        font-size: 20px; }
        .blog-area-datum-course .news-box .text-box.b-1 {
        position: relative; 
        text-align: center;
      }
        .blog-area-datum-course .news-box .text-box.b-1 p {
          margin-top: 15px;
          font-size: 16px; }
          .blog-area-datum-course .news-box .text-box.b-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content:center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
                .blog-area-datum-course .news-box .text-box.b-2 .media {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
                  .blog-area-datum-course .news-box .text-box.b-2 .media img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            -o-object-fit: cover;
               object-fit: cover; }
               .blog-area-datum-course .news-box .text-box.b-2 .media .media-body p {
            font-weight: 600;
            font-size: 16px; }
            .blog-area-datum-course .news-box .text-box.b-2 .media .media-body p span {
              font-weight: 500; }
            @media (max-width: 1199.98px) {
              .blog-area-datum-course .news-box .text-box.b-2 .media .media-body p {
                font-size: 12px; } }
                .blog-area-datum-course .news-box .text-box.b-2 .message-num img {
          height: 15px;
          width: 15px;
          -o-object-fit: cover;
             object-fit: cover; }
             .blog-area-datum-course .news-box .date {
      position: absolute;
      top: 21px;
      right: 20px;
      padding: 10px 16px;
      background-color: #fb7c63;
      border-top-right-radius: 35px;
      border-bottom-right-radius: 35px;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
              .blog-area-datum-course .news-box .date span {
        color: #fff; }
        .blog-area-datum-course .news-box:hover .img-area img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }

      .dark .blog-area-datum-course .news-box {
        background-color: #ffffff; }
        .dark .blog-area-datum-course .news-box h4, .dark .blog-area-datum-course .news-box p, .dark .blog-area-datum-course .news-box span {
          color:#212121; }
        .dark .blog-area-datum-course .news-box .date {
          background-color: #ffc107; }
/* ------------------------------------------------------------------------------- */

.blog-area-datum-course-category {
  padding: 100px 0 100px; 
  background-color:#f9f19a;
}
  @media (max-width: 575.98px) {
    .blog-area-datum-course-category {
      padding-top: 60px; } }
      .blog-area-datum-course-category .news-box {
    -webkit-box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden; 
    height: 150px;
    display: flex;
    align-items: center;
    border-left: 4px solid #ff630b;
  }
    .blog-area-datum-course-category .news-box .img-area {
      overflow: hidden; }
      .blog-area-datum-course-category .news-box .img-area img {
        width: 100%;
        -webkit-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .blog-area-datum-course-category .news-box .img-area img.main {
          width: 100%; }
          .blog-area-datum-course-category .news-box .text-box {
      padding: 20px;
    }
    .blog-area-datum-course-category .news-box .text-box h4 {
        font-size: 20px; }
        .blog-area-datum-course-category .news-box .text-box.b-1 {
        position: relative; 
        text-align: center;
      }
        .blog-area-datum-course-category .news-box .text-box.b-1 p {
          margin-top: 15px;
          font-size: 16px; }
          .blog-area-datum-course-category .news-box .text-box.b-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content:center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
                .blog-area-datum-course-category .news-box .text-box.b-2 .media {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
                  .blog-area-datum-course-category .news-box .text-box.b-2 .media img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            -o-object-fit: cover;
               object-fit: cover; }
               .blog-area-datum-course-category .news-box .text-box.b-2 .media .media-body p {
            font-weight: 600;
            font-size: 16px; }
            .blog-area-datum-course-category .news-box .text-box.b-2 .media .media-body p span {
              font-weight: 500; }
            @media (max-width: 1199.98px) {
              .blog-area-datum-course-category .news-box .text-box.b-2 .media .media-body p {
                font-size: 12px; } }
                .blog-area-datum-course-category .news-box .text-box.b-2 .message-num img {
          height: 15px;
          width: 15px;
          -o-object-fit: cover;
             object-fit: cover; }
             .blog-area-datum-course-category .news-box .date {
      position: absolute;
      top: 21px;
      right: 20px;
      padding: 10px 16px;
      background-color: #fb7c63;
      border-top-right-radius: 35px;
      border-bottom-right-radius: 35px;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
              .blog-area-datum-course-category .news-box .date span {
        color: #fff; }
        .blog-area-datum-course-category .news-box:hover .img-area img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }

      .dark .blog-area-datum-course-category .news-box {
        background-color: #ffffff; }
        .dark .blog-area-datum-course-category .news-box h4, .dark .blog-area-datum-course-category .news-box p, .dark .blog-area-datum-course-category .news-box span {
          color:#212121;
          font-weight:400;
        }

        @media (max-width: 767.98px){
          .blog-area-datum-course-category .news-box{
            height: auto;
          }
          .blog-area-datum-course-category .news-box .text-box h4 {
            font-size: 18px;
        }
        }

        .scrolling-ticker{
          padding: 15px 0;
          color:#fff;
          background:linear-gradient(270deg,#ff630b 0,#f90 100%);
        }
        
        .scrolling-ticker-box{
          --gap: 20px;
          position: relative;
          overflow: hidden;
          user-select: none;
          gap: var(--gap);
        }
        
        .scrolling-content{
        display: flex;
        justify-content: center;
        align-items: center;
      
        }
        
        .scrolling-content span{
          font-size:24px;
          line-height: 1.4em;
          font-weight: 600;
          color:#212121;
          margin:0;
          text-align: center;
        }
        .datum-layout-main {
          position:sticky;
          bottom: -2px;
          left: 0;
          width: 100%;
          z-index: 2;
      }
      .datum-layout-buyprice h3{
       color:#fff;
       text-align: center;
       font-size:18px;
      }
      .datum-layout-buynow {
        align-items: center;
        background: #021927;
        padding: 14px 16px 14px;
    }
.datum-center-scholarship{
  margin-top: 50px;
}
.contact-result {
  font-size: 16px; /* Adjust the font size as needed */
  color: green; /* Change the color for success messages */
  font-weight: bold; /* Optional: make the text bold */
  margin-top: 10px; /* Optional: add space above the message */
}

.contact-result.error {
  color: red; /* Change the color for error messages */
}
.btn-submitting {
  pointer-events: none;
  opacity: 0.6;
  background-color: #007bff;
  color: white;
}