
body {
      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #444444;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: #993300;
  }
  
  a:hover {
    color: #F26720;
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  #main {
    margin-top: 90px;
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  /* .mobile-nav-toggle{
    margin-right: 150px;
  } */
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 998;
    background: #993300;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #86c0da;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # 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;
    transition: all 0.5s;
    padding: 14px 0;
    background: #fff;
    box-shadow: 0 0 5px #993300;
  }
  
  #header.header-transparent {
    background: transparent;
  }
  
  #header.header-scrolled {
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 0 15px #993300;
  }
  
  #header .logo h1 {
    font-size: 24px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
       font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
  }
  
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
  }
  
  @media (max-width: 768px) {
    #header.header-scrolled {
      padding: 15px 0;
    }
  }
  
  
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 5px;
    margin-left: 10px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #993300;
    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 {
    border-bottom:2px solid #993300;
    /* color: #fff; */
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 10px;
    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;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #2f4d5a;
  }
  
  .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: #2f4d5a;
  }
  
  .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 (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #993300;
    border: 2px solid #993300;
    border-radius: 10px;
    font-size:38px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(43, 111, 142, 0.9);
    transition: 0.3s;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #2f4d5a;
  }
  
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #993300;
  }
  
  .navbar-mobile .getstarted {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #993300;
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  
  a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
  }
  
  a:hover {
    transition: all 0.5s ease-in-out;
  }
  .card-body{
    box-shadow: 0 0 15px #000;
        border-radius: 20px;
  }
  #cards{
    background: linear-gradient(#ffffff, #f1f1f163) ,url("../img/spkbg.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    
  }
  
  #cards .card {
      border-radius: 20px;
      box-shadow: 0 0 45px #000;
      min-height: 100%;
  }
  
  #cards .heading-border {
      position: absolute;
      width: 100%;
      top: 60%;
  }
  
  #cards .card .user-picture img {
      position: absolute;
      top: -50%;
      right: 5%;
      background: #ccc  !important;
      padding: 5px;
  }
  
  #cards .card .user-content .user-name {
    margin-top: 38px;
    font-size: 16px;
    font-weight: 600;
  }
  #cards .card .user-content p{
    font-size: 14px;
  }
  
  #cards1{
    background: linear-gradient(#ffffff, #ffffff);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  #cards1 .card {
      border-radius: 20px;
      box-shadow: 0 0 45px #000;
      min-height: 100%;
  }
  
  #cards1 .heading-border {
      position: absolute;
      width: 100%;
      top: 60%;
  }
  
  #cards1 .card .user-picture img {
      position: absolute;
      top: 2%;
      right: 2%;
      padding: 5px;
  }
  
  #cards1 .card .user-content .user-name {
    margin-top: 38px;
    font-size: 16px;
    font-weight: 600;
  }
  #cards1 .card .user-content p{
    font-size: 14px;
  }
  
  
  #hero {
    width: 100%;
    /* background: url("../img/business-people-casual-meeting.jpg"); */
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
  }
  #hero::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #ffffffa8;
    z-index: 9;
  }
  
  #hero .hero-container {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 11;
  }
  #hero .img1{
    width: 100%;
    margin-top: 80px;
    margin-bottom: 20px;
  }

  #hero .img1{
    width: 70%;
    /* -webkit-animation: zoominout 5s linear infinite;
          animation: zoominout 5s linear infinite; */
  }
  @media(max-width: 480px){
    #hero .img{
      width: 100%;
    }
  }

  @-webkit-keyframes zoominout {
    0% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
    50% {
      -webkit-transform: scale(1.0);
              transform: scale(1.0);
    }
    100% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
  }
  
  @keyframes zoominout {
    0% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
    50% {
      -webkit-transform: scale(1.0);
              transform: scale(1.0);
    }
    100% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
  }

  @-webkit-keyframes movebounce {
    0% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
    50% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
  }
  
  @keyframes movebounce {
    0% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
    50% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
  }
  
  @media(max-width:650px) and (min-width: 480px){
    #hero .img{
      width: 70%;
    }
  }
  
  @media(max-width:850px) and (min-width: 650px){
    #hero .img{
      width: 50%;
    }
  }
  @media(max-width:1150px) and (min-width: 851px){
    #hero .img{
      width: 40%;
    }
  }
  
  #hero h3 {
    color: #993300;
    font-weight: 600;
  }
  
  #hero .btn-get-started {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 38px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    background:  linear-gradient(135deg , #F26720, #993300);
    border: 2px solid #40464d;
    color: #fff;
    transition: .3s ease-in-out;
    /* -webkit-animation: movebounce 5s linear infinite;
          animation: movebounce 5s linear infinite; */
  }
  
  #hero .btn-get-started:hover {
    border-color:2px solid #993300;
    background:  linear-gradient(175deg , #F26720, #993300);
    color: #fff;
    transform: scale(1.1);
    transition: .3s ease-in-out;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  @media (max-width: 991px){
    #hero img{
    width: 90%;
    padding: 10px;
  }
  }
  
  @media (max-width: 658px) {
    #hero h1 {
      font-size: 16px;
      line-height: 36px;
    }
    #hero h3 {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 958px) {
    #hero h1 {
      font-size: 20px;
      line-height: 36px;
    }
    #hero h3 {
      font-size: 20px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }

  #hero i{
    font-size: 42px;
    color:  linear-gradient(15deg , #F26720, #993300);
  }
  
  
  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 20px 0;
    overflow: hidden;
  }
  
  .section-bg {
    background-color: #f4f9fc;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }

  .section-title h2::before {
    content: "";
    width: 100px;
    height: 3px;
    border-radius: 50px;
    display: inline-block;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
    margin: 4px 10px;
  }
  
  .section-title h2::after {
    content: "";
    width: 100px;
    height: 3px;
    border-radius: 50px;
    display: inline-block;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
    margin: 4px 10px;
  }

  .section-title1{
    text-align: right;
  }
  .section-title1 img{
    max-width: 80px;
  }

  .section-title1 h1 {
    font-weight: bold;
    position: relative;
    margin-bottom: 10px;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    z-index: 2;
  }

  .section-title1 h2 {
    font-weight: bold;
    position: relative;
    margin-bottom: 30px;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    z-index: 2;
  }
  
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    z-index: 2;
  }
  
  /* .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 122px;
    height: 66px;
    background: url(../img/section-title-bg.png) no-repeat;
    z-index: -5;
  }
   */
  .section-title p {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
  .about{
    background-color: #f8f8f8;
  }
  .about .container {
    position: relative;
    z-index: 10;
  }
  
  .about img{
   width: 100%;
   transition: .3s ease-in-out;
  }
  .about img:hover{
    transform: scale(1.1);
    transition: .3s ease-in-out;
  }

  .partner{
    background-color: #fff;
  }
   .layout{
    box-shadow: 0 0 5px #000;
  }
  .layout1{
    box-shadow: 0 0 5px #fff;
    background-color: #000000cc;
  }
  .partner img{
    width: 80%;
    transition: .3s ease-in-out;
   }
   .partner img:hover{
     transform: scale(1.1);
     transition: .3s ease-in-out;
   }
  
  .about .content h3 {
    font-weight: 600;
    /* font-size: 34px; */
    color: #993300;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .about .content p {
    margin-bottom: 30px;
    text-align: justify;
    line-height: 20px;
  }

  .about .content p span{
    margin-bottom: 30px;
    text-align: justify;
    font-weight: 700;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
  }

  .about .content .about-btn {
    display: inline-block;
    background: #993300;
    padding: 6px 44px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
    position: relative;
  }
  
  .about .content .about-btn i {
    font-size: 18px;
    position: absolute;
    right: 18px;
    top: 9px;
  }
  
  .about .content .about-btn:hover {
    background: #7bbad7;
  }
  
  .about .icon-boxes .icon-box i {
    font-size: 40px;
    color: #993300;
    margin-bottom: 10px;
  }
  
  .about .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
  }
  
  .about .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
  }
  
  @media (max-width: 1200px) {
    .about .content {
      padding-right: 0;
    }
  }
  
  @media (max-width: 768px) {
    .about {
      text-align: center;
    }
  }
  
  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
 .services{
  background-color: #ffffff;
  padding: 20px;
}

  .services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 9px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
  }
  
  .services .icon-box::before {
    content: '';
    position: absolute;
    background: white;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
  }
  
  .services .icon-box:hover::before {
    background:  linear-gradient(135deg , #F26720, #993300);
    top: 0;
    border-radius: 0px;
  }
  .bbb{
   width: 80px;
   height: 160px;
  }
  
  .services .icon {
    margin-bottom: 15px;
  }
  
  .services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #993300;
    transition: all 0.3s ease-in-out;
  }
  
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services .title a {
    color: #111;
  }
  
  .services .description {
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 500;
  }
  
  .services .icon-box:hover .title a, .services .icon-box:hover .description {
    color: #fff;
  }
  
  .services .icon-box:hover .icon i {
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Counts
  --------------------------------------------------------------*/
  .counts {
    padding-bottom: 30px;
  }
  
  .counts .count-box {
    padding: 30px;
    width: 100%;
  }
  
  .counts .count-box i {
    display: block;
    font-size: 44px;
    color: #993300;
    float: left;
    line-height: 0;
  }
  
  .counts .count-box span {
    font-size: 48px;
    line-height: 40px;
    display: block;
    font-weight: 700;
    color: #2f4d5a;
    margin-left: 60px;
  }
  
  .counts .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 60px;
      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #49788c;
  }
  
  .counts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #49788c;
    font-size: 15px;
       font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: ease-in-out 0.3s;
  }
  
  .counts .count-box a:hover {
    color: #6e9fb4;
  }
  
  /*--------------------------------------------------------------
  # Cta
  --------------------------------------------------------------*/
  .cta {
    background: linear-gradient(#ffffffa1, #7585b582 );
    background-size: cover;
    padding: 60px 0;
  }
  
  .cta h3 {
    color: #993300;
    font-size: 32px;
    font-weight: bold;
  }
  
  .cta p {
    color: #fff;
  }
  
  .cta .cta-btn {
      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: none;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 38px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
  }
  .cta-btn {
      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 38px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    background:  linear-gradient(135deg , #F26720, #993300);
    border: 2px solid #40464d;
    color: #fff;
    transition: .3s ease-in-out;
  }
  .cta-btn:hover {
    border-color:2px solid #993300;
    background:  linear-gradient(175deg , #F26720, #993300);
    color: #fff;
    transform: scale(1.1);
    transition: .3s ease-in-out;
  }
  
  .cta .cta-btn:hover {
    border-color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #ecf5f9;
    border-radius: 50px;
    padding: 2px 15px;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #2f4d5a;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #993300;
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    opacity: 1;
    left: 0;
    right: 0;
    bottom: -60px;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
    display: flex;
    justify-content: center;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    font-size: 28px;
    text-align: center;
    background: rgba(103, 176, 209, 0.75);
    transition: 0.3s;
    width: 50%;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    background: rgba(103, 176, 209, 0.95);
  }
  
  .portfolio .portfolio-wrap .portfolio-links a + a {
    border-left: 1px solid #F26720;
  }
  
  .portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #993300;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #993300;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(47, 77, 90, 0.08);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  
  /*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
  .testimonials .testimonial-item {
    box-sizing: content-box;
    text-align: center;
    min-height: 320px;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: 0 auto;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #d5e9f2;
    font-size: 26px;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  .testimonials .testimonial-item .quote-icon-right1{
    display: inline-block;
    right: 5px;
    position: relative;
    top: 2px;
    font-size: 18px;
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 15px 15px;
    padding: 20px;
    background: #fff;
    position: relative;
    margin-bottom: 35px;
    border-radius: 6px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: justify;
  }
  
  .testimonials .testimonial-item p::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 20px);
  }
  
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #993300;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #993300;
  }
  
  /*--------------------------------------------------------------
  # Brands
  --------------------------------------------------------------*/

  .brands .brands-item {
    box-sizing: content-box;
    text-align: center;
    background-color: #fff;
    border-radius: 10%;
    min-height: 130px;
    position: relative;
  }
  
  .brands .brands-item .brands-img {
    max-height: 100%;
    max-width: 100%;
    padding: 15px;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  
  
  .brands .brands-item .quote-icon-left, .brands .brands-item .quote-icon-right {
    color: #d5e9f2;
    font-size: 26px;
  }
  
  .brands .brands-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .brands .brands-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  .brands .brands-item .quote-icon-right1{
    display: inline-block;
    right: 5px;
    position: relative;
    top: 2px;
    font-size: 18px;
  }
  
  .brands .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .brands .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #993300;
  }
  
  .brands .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #993300;
  }

 /*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
  .team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }
  
  .team .member .pic {
    overflow: hidden;
  }
  
  .team .member .member-info {
    position: absolute;
    top: 95%;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 0;
    color: #2f4d5a;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    max-height: 65px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
  
  .team .member:hover .member-info {
    max-height: 160px;
  }
  
  .team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #2f4d5a;
    position: relative;
    padding-bottom: 10px;
  }
  
  .team .member h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b1cbd7;
    bottom: 0;
    left: calc(50% - 25px);
  }
  
  .team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
  }
  
  .team .member .social {
    margin-top: 15px;
  }
  
  .team .member .social a {
    transition: color 0.3s;
    color: #fff;
  }
  
  .team .member .social a:hover {
    color: #fff;
  }
  
  .team .member .social i {
    font-size: 16px;
    margin: 0 2px;
  }
  
  @media (max-width: 992px) {
    .team .member {
      margin-bottom: 110px;
    }
  }
  
  /*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  .contact {
    padding-bottom: 80px;
  }
  
  .contact .info-box {
    color: #444444;
    background: #fff;
    text-align: justify;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 40px;
    margin-top: 50px;
  }
  
  .contact .info-box1{
    color: #444444;
    background: #fff;
    text-align: justify;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 40px;
  }
  
  
  
  .contact .info-box i {
    font-size: 22px;
    color: #993300;
    border-radius: 50%;
    padding: 10px;
  }
  
  .contact .info-box h3 {
    font-size: 24px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
  }
  
  .contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
  }
  .contact .info-box1 h3 {
    font-size: 24px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
  }
  .contact .info-box1 i {
    font-size: 22px;
    color: #993300;
    border-radius: 50%;
    padding: 10px;
  }
  .contact .info-box1 p {
    padding: 0;
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Attend
  --------------------------------------------------------------*/
  #attend1{
    background: #f8f8f8;
    color: #fff;
    font-size: 14px;
  }
  
  #attend1 .attend-top{
    padding: 60px 0 10px 0;
  }
  
  #attend1 .attend-top .attend-info{
    margin-top: -60px;
    background: white;
    color: #2f4d5a;
    border-top: 4px solid #993300;
    text-align: left;
    padding: 30px;
    box-shadow: 0 0 10px #993300;
  }
  
  #attend1 .attend-top .attend-info h2{
    font-size: 28px;
    font-weight: bold;
    position: relative;
    text-align: center;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    z-index: 2;
  }
  
  
  #attend1 .attend-top .attend-info h2::before {
    content: "";
    width: 50px;
    height: 3px;
    border-radius: 50px;
    display: inline-block;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
    margin: 4px 10px;
  }
  
  #attend1 .attend-top .attend-info h2::after {
    content: "";
    width: 50px;
    height: 3px;
    border-radius: 50px;
    display: inline-block;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
    margin: 4px 10px;
  }
  
  #attend1 .attend-top .attend-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  
  #attend1 .attend-top .attend-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  #attend1 .attend-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
  }
  
  
  #attend1 .attend-top .attend-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #attend1 .attend-top .attend-links ul i {
    padding-right: 2px;
    color: #993300;
    font-size: 20px;
    line-height: 1;
  }
  
  #attend1 .attend-top .attend-links ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
     font-weight: 600;
     font-size: 18px;
  }
  
  #attend1 .attend-top .attend-links ul li:first-child {
    padding-top: 0;
  }
  
  #attend1 .attend-top .attend-links ul a {
    color: #993300;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  
  @media (max-width: 575px) {
    #attend1 .attend-top .attend-info {
      margin: -20px 0 30px 0;
    }
  }
  
  .main-content5 {
    align-items: center;
    background-position: bottom;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    line-height: 1.5;
    padding-top: 20px;
    position: relative;
  }
    .main-title {
      color: #fff;
      font-size: 12px;
      letter-spacing: 8px;
      margin: 0px 0px 19px;
      text-align: center;
      text-transform: uppercase;
    }
    .container-countdown {
      display: flex;
      flex-flow: row nowrap;
    }
    .countdown-block {
      align-items: center;
      display: flex;
      flex-flow: column nowrap;
      margin-right: 30px;
    }
      .countdown-block :last-child {
        margin-right: 0;
      }
      .subtitle {
        color: #2a2a41;
        font-size: 22px;
      }
    .time-element {
      background-color: #33354d;
      border-radius: 8px;
      box-shadow: 0px 8px 0px 0px #16151d;
      color: #fff;
      font-size: 3.5em;
      height: 70px;
      line-height: 68px;
      margin-bottom: 17px;
      overflow: hidden;
      position: relative;
      text-align: center;
      width: 140px;
    }
      .time-element::before,
      .time-element::after {
        background: #24242e;
        border-radius: 50%;
        content: "";
        height: 10px;
        position: absolute;
        top: calc(50% - 5px);
        width: 10px;
        z-index: 6;
      }
      .time-element::before {
        left: -5px;
      }
      .time-element::after {
        right: -5px;
      }
      .time-element > span {
        left: 0;
        position: absolute;
        right: 0;
      }
      .top {
        background-color: #2a2a41;
        transform-origin: 50% 100%;
        transform: perspective(200px);
        z-index: 3;
      }
      .top::after,
      .bottom-back::after {
        border-bottom: 1px solid hsl(240, 12%, 16%);
        bottom: 0;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: -1;
      }
      .bottom {
        z-index: 1;
        }
        .bottom::before {
          background-color: #33354d;
          content: "";
          display: block;
          height: 50%;
          left: 0;
          position: absolute;
          top: 0;
          width: 100%;
        }
      .bottom-back {
        background-color: #33354d;
        height: 50%;
        overflow: hidden;
        top: 0;
        z-index: 2;
      }
       .bottom-back span {
          bottom: 0;
          left: 0;
          margin: auto;
          position: absolute;
          right: 0;
          top: 0;
        }
      .top,
      .top-back {
        backface-visibility: hidden;
        height: 50%;
        overflow: hidden;
      }
      .top-back {
        background-color: rgb(51, 53, 77);
        bottom: 0;
        transform-origin: 50% 0;
        transform: perspective(200px) rotateX(180deg);
        z-index: 4;
        }
        .top-back span {
          left: 0;
          margin: auto;
          position: absolute;
          right: 0;
          top: -100%;
        }
  @media only screen and (max-width: 768px) {
    .main-content5 .container-countdown {
      flex-direction: column;
    }
  }
  
  
  .site-footer {
    background: linear-gradient(135deg ,#993300, #b34d1a, #993300);
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
  }
  
  .site-footer hr {
    border-top-color: #bbb;
    opacity: 0.5
  }
  
  .site-footer hr.small {
    margin: 20px 0
  }
  
  .site-footer a {
    color: #ffffff;
  }
  
  .site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
  }
  
  .footer-links {
    padding-left: 0;
    list-style: none
  }
  
  .footer-links li {
    display: block
  }
  
  .footer-links a {
    color: #737373
  }
  
  .footer-links a:active,
  .footer-links a:focus,
  .footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
  }
  
  .footer-links.inline li {
    display: inline-block
  }
  
  .site-footer .social-icons {
    text-align: right
  }
  
  .site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #fff;
  }
  
  .copyright-text {
    margin: 0
  }
  
  @media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
  }
  
  @media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }
  
    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center
    }
  }
  
  .social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
  }
  
  .social-icons li {
    display: inline-block;
    margin-bottom: 4px
  }
  
  .social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
  }
  
  .social-icons a {
    background-color: #eceeef;
    color: #818a91;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
  }
  
  .social-icons a:active,
  .social-icons a:focus,
  .social-icons a:hover {
    color: #fff;
    background-color: #29aafe
  }
  
  .social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
  }
  
  .social-icons a.facebook:hover {
    background-color: #3b5998
  }
  
  .social-icons a.twitter:hover {
    background-color: #00aced
  }
  
  .social-icons a.linkedin:hover {
    background-color: #007bb6
  }
  
  .social-icons a.youtube:hover {
    background-color: red
  }
  
  .social-icons a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    ;
  
  }
  
  @media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
  }
  
  .userMain .userBlock {
    float: left;
    width: 100%;
    box-shadow: 0px 0px 7px 0px #993300;
    padding: 10px;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .userMain .userBlock .backgrounImg {
    float: left;
    overflow: hidden;
    height: 60px;
  }
  
  .userMain .userBlock .backgrounImg img {
    width: auto;
  }
  
  .userMain .userBlock .userImg {
    text-align: center;
  }
  
  .userMain .userBlock .userImg img {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    border: 2px solid #bc470d;
  }
  
  .userMain .userBlock .user-content {
    text-align: center;
    background-color: #fbfbfb;
    padding: 10px;
    border-radius: 8px;
    min-height: 150px;
  }
  
  .userMain .userBlock .user-content .user-name {
    font-weight: 700;
    background: -webkit-linear-gradient(23deg, #F26720, #993300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .userMain .userBlock .user-content p {
    margin-bottom: 10px;
    font-size: 14px;
    margin-top: 10px;
  }
  
  .serv-section-2 {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0px 20px 30px 0px rgba(50, 50, 50, 0.5);
    border-radius: 5px;
    overflow: hidden;
    padding: 30px;
  }
  
  .serv-section-2:before {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 0;
    content: " ";
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-bottom-left-radius: 136px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
  }
  
  .serv-section-2-icon {
    position: absolute;
    top: 10px;
    right: 12px;
    max-width: 60px;
    z-index: 1;
    text-align: center;
  }
  
  .serv-section-2-icon i {
    color: #993300;
    font-size: 40px;
    line-height: 45px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
  }
  
  .serv-section-desc {
    position: relative;
  }
  
  .serv-section-2 h5 {
  font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 500;
    margin-top: 20px;
  }
  
  .section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background:  linear-gradient(135deg , #F26720, #993300);
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  
  .serv-section-2 p {
    margin-top: 25px;
    padding-right: 50px;
  }
  
  .serv-section-2:hover .serv-section-2-icon i {
    color: #fff;
  }
  
  .serv-section-2:hover:before {
    background:  linear-gradient(135deg , #F26720, #993300);
  }
  .price{
    background-color: #ffffff;
  }
  .pricing-table {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .pricing-table .ptable-item {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
  }
  
  @media (max-width: 992px) {
    .pricing-table .ptable-item {
      width: 33.33%;
    }
  }
  
  @media (max-width: 768px) {
    .pricing-table .ptable-item {
      width: 50%;
    }
  }
  
  @media (max-width: 576px) {
    .pricing-table .ptable-item {
      width: 100%;
    }
  }
  
  .pricing-table .ptable-single {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .pricing-table .ptable-header,
  .pricing-table .ptable-body,
  .pricing-table .ptable-footer {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
  }
  
  .pricing-table .ptable-status ,
  .pricing-table .ptable-title,
  .pricing-table .ptable-price,
  .pricing-table .ptable-description,
  .pricing-table .ptable-action {
    position: relative;
    width: 100%;
    text-align: center;
  }
  
  .pricing-table .ptable-single {
    background: #f8f8f8;
    height: 420px;
  }
  
  .pricing-table .ptable-single:hover {
    box-shadow: 0 0 15px #333333;
  }
  
  .pricing-table .ptable-header {
    padding: 30px 0 45px 0;
    width: auto;
    background:  linear-gradient(135deg , #F26720, #993300);
  }
  
  .pricing-table .ptable-header::before,
  .pricing-table .ptable-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 100px solid #f8f8f8;
  }
  
  .pricing-table .ptable-header::before {
    right: 50%;
    border-right: 250px solid transparent;
  }
  
  .pricing-table .ptable-header::after {
    left: 50%;
    border-left: 250px solid transparent;
  }
  
  .pricing-table .ptable-item.featured-item .ptable-header {
    background: #FF6F61;
  }
  
  .pricing-table .ptable-status {
    margin-top: -30px;
  }
  
  .pricing-table .ptable-status span {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
    padding: 5px 0;
    text-align: center;
    color: #FF6F61;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    background: #2A293E;
  }
  
  .pricing-table .ptable-status span::before,
  .pricing-table .ptable-status span::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 10px solid #FF6F61;
  }
  
  .pricing-table .ptable-status span::before {
    right: 50%;
    border-right: 25px solid transparent;
  }
  
  .pricing-table .ptable-status span::after {
    left: 50%;
    border-left: 25px solid transparent;
  }
  
  .pricing-table .ptable-title h4 {
    color: #ffffff;
    font-weight: 600;
  }
  
  .pricing-table .ptable-price h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 300;
    margin-top: 16px;
    margin-left: -15px;
  }
  
  .pricing-table .ptable-price h2 span {
    margin-left: 3px;
    font-size: 16px;
    font-weight: 300;
  }
  
  .pricing-table .ptable-body {
    padding: 10px 0;
  }
  
  .pricing-table .ptable-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .pricing-table .ptable-description ul li {
    color: #993300;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 7px;
    border-bottom: 1px solid #dedede;
  }
  
  .pricing-table .ptable-description ul li:last-child {
    border: none;
  }
  
  .pricing-table .ptable-footer {
    padding-bottom: 30px;
   
  }
  
  .pricing-table .ptable-action a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    background:  linear-gradient(135deg , #F26720, #993300);
    border: 2px solid #444;
    border-radius: 24px;
  }
  
  .pricing-table .ptable-action a:hover {
    color: #993300;
    background: #ffF;
  }
  
  .pricing-table .ptable-item.featured-item .ptable-action a {
    color: #993300;
    background: #fff;
  }
  
  .pricing-table .ptable-item.featured-item .ptable-action a:hover {
    color: #FF6F61;
    background: #2A293E;
  }
  
  .sss {
    position: relative;
  }
  
  .sss .card {
    position: relative;
    width: 320px;
    height: 320px;
    background: rgba(203,54,0);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
  }
  
  .sss .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 153, 0.788);
    clip-path: circle(150px at 80% 20%);
    transition: 0.5s ease-in-out;
  }
  
  .sss .card:hover:before {
    clip-path: circle(300px at 80% -20%);
  }
  
  .sss .card:after {
    content: "Awards";
    position: absolute;
    top: 30%;
    left: -20%;
    font-size: 12em;
    font-weight: 200;
    font-style: italic;
    color: rgba(255, 255, 255, 0.094);
  
  }
  
  .sss .card .imgBx {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: .5s;
  }
  
  .sss .card:hover .imgBx {
    top: 0%;
    transform: translateY(-10%);
    /* bug  */
  }
  
  .sss .card .imgBx img {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 270px;
  }
  
  .sss .card .contentBx {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    text-align: center;
    transition: 1s;
    z-index: 90;
    font-size: 26px;
  }
  .sss .card .contentBx h2 {
   
    font-size: 26px !important;
  }
  
  .sss .card:hover .contentBx {
    height: 150px;
  }
  
  .sss .card .contentBx h2 {
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
  }
  
  .sss .card .contentBx .callta {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 12px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    opacity: 0;
    transform: translateY(50px);
    transition: .2s;
  }
  
  .sss .card:hover .contentBx .callta {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: .2s;
  } 
  
  .row.service-v1 img {
    border-bottom: 5px solid #E9931B;
    /* border-radius: 25px 25px 0 0; */
    border-top: 4px solid #E9931B;
  }
  .service-v1 h2 {
    color: #222;
    font-size: 24px;
    padding: 0px;
    margin: 12px 0;
  }
  .service-v1 span {
    padding: 10px 25px 20px;
    background-color: rgb(228, 228, 228);
    float: left;
  }
  
  #aaa {
      position:relative;
      background:#F9F9F9;
      padding:50px 0 0px 0;
  }
  
  #aaa img {
      max-width:100%;
      height:auto;
  }
  
  .yxz{
    border: 1px solid #000;
    padding: 15px;
  }
  
  /* .card5 {
    background:  linear-gradient(135deg , #F26720, #993300);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 320px;
    height: 380px;
    margin: 30px;
    border-radius: 20px;
    border-bottom-left-radius: 160px;
    border-bottom-right-radius: 160px;
    box-shadow: 0 10px 0 #fff,
    inset 0 -15px 0 rgba(255, 255, 255, 0.24),
    0 25px 0 rgba(186, 116, 90, 0.916);
    overflow: hidden;
     
  }
  
  .card5::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -40%;
    padding: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    transform: rotate(35deg);
    pointer-events: none;
    filter: blur(5px);
  }
  
  .card5:nth-child(1) {
    background: linear-gradient(to bottom, #993300, #993300);
  }
  
  .card5:nth-child(2) {
    background: linear-gradient(to bottom, #ffec61, #f321d7);
  }
  
  .card5:nth-child(3) {
    background: linear-gradient(to bottom, #24ff72, #9a4eff);
  }
  
  .card5 .icon {
    position: relative;
    width: 140px;
    height: 120px;
    background: #3c2846;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1),
            inset 0 -8px 0 #fff;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .card5 .icon::before {
    content: "";
    position: absolute;
    top: 0;
   
    width: 50px;
  
    background: transparent;
    border-top-right-radius: 50px;
    box-shadow: 15px -15px 0 15px #3c2846;
  }
  
  .card5 .icon::after {
    content: "";
    position: absolute;
    top: 0;
   
    width: 50px;
  
    background: transparent;
    border-top-left-radius: 50px;
    box-shadow: -15px -15px 0 15px #3c2846;
  }
  
  .card5 .icon ion-icon {
    color: #fff;
    position: relative;
    font-size: 6em;
    z-index: 1000;
    --ionicon-stroke-width: 24px;
  }
  
  
  .card5 .content {
    position: absolute;
    width: 100%;
    padding: 30px;
    padding-top: 150px;
    text-align: center;
  }
  
  .card5 .content h2 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 15px;
  }
  
  .card5 .content p {
    color: #fff;
    line-height: 1.5em;
  } */
  
  .awards{
    background: linear-gradient(#0000009a, #000000cf) ,url("../img/awardbg.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;  
  }
  
  /* .awards{
    background-image: url('../img/awardsbg.jpg');
    background-size: cover;
    background-attachment: fixed;
  } */
  .awards p::after {
    content: "";
    width: 100px;
    height: 1px;
    display: inline-block;
    background: #fff;
    margin: 4px 10px;
  }
  .awards .gold-text {
    color: #c3a343;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(#fbf088, #c3a343);
    background: -o-linear-gradient(#fbf088, #c3a343);
    -webkit-background-clip: text;
    font-weight: 700;
    text-align: center;
  }
  .awards .icon-box {
    display: flex;
    align-items: center;
    padding: 3px;
    background: #000000ad;
    transition: ease-in-out 0.1s;
    box-shadow: 0 0 7px #fff;
  }
  .awards .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
    color: #5578ff;
  }
  .awards .icon-box img {
   width: 30%;
   height: 100%;
   padding-right: 10px;
  }
  .awards .icon-box h3 {
    font-weight: 600;
    padding: 5px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    color: #fff;
    transition: ease-in-out 0.1s;
  }
  .awards .icon-box:hover h3{
    color: #993300;
  }
  .awards .icon-box:hover {
    background: #ffffff;
    box-shadow: 0 0 15px #993300fb;
  }
  .awards .icon-box:hover .btn-get-started{
    background: #993300fb;
    color: #fff;
    transform: scale(0.9);
  }
  .awards .btn-get-started {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    transition: ease-in-out 0.2s;
    color: #fff;
    background: #023bff59;
  }
  
  /* .dataai {
    width: 100%;
    min-height: 380px;
    text-align: center;
    position: relative;
    cursor: pointer;
  }
  
  .service {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform .8s;
    height: 300px;
  }
  
  
  .service-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: -90px auto 0;
    background: #fff;
    border: 15px solid #993300;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  .service h4 {
   
    padding: 5px 8px;
    margin: 50px auto;
    background: #fff;
    position: relative;
  }
  
  .service h4::after,
  .service h4::before {
    content: '';
    width: 40px;
    height: 30px;
   position: absolute;
   z-index: -1;
  }
  
  .service h4::after {
    background: linear-gradient(to right, #fff, #993300);
    right: -5px;
    top: -5px;
  }
  
  .service h4::before {
    background: linear-gradient(to right, #993300, #fff);
    left: -5px;
    bottom: -5px;
  }
  
  
  
  .dataai::after {
    content: '';
    height: 200px;
    width: 80%;
    background: #fff;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 10%;
    z-index: -1;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform .8s;
  }
  .dataai::before {
    content: '';
    height: 200px;
    width: 64%;
    background: #fff;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 18%;
    z-index: -2;
  }
  
  .dataai:hover .service {
    transform: translateY(-30px);
  }
  
  .dataai:hover::after {
    transform: translateY(-15px);
  }
  
  .service-logo img {
    transition: transform 1s;
  }
  
  .dataai:hover .service-logo img {
    transform: rotate(360deg);
  }
   */
  
   .slider {
    position: relative;
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    margin: auto auto;
  }
  
  .slider:hover > .button-wrapper {
    width: 100%;
  }
  
  .item-wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
    transition: transform 0.4s ease;
  }
  
  .item-wrapper img {
    width: 100%;
    object-fit: cover;
    flex-basis: 100%;
  }
  
  .button-wrapper {
    position: absolute;
    width: calc(100% + 200px);
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(calc(-50% - 25px));
    transition: width 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }
  
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: transform 0.25s ease;
  }
  
  .btn:hover {
    transform: scale(1.1);
  }
  
  .indicator-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
  }
  
  .indicator.current {
    background-color: #777;
  }
  
  .indicator:not(.current):hover {
    background-color: #ddd;
  }
  
  .flexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .flexcard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 20%;
    align-items: baseline;
    height: 250px;
    border-radius: 20px;
  }
  
  .flexcardNumber {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 10px 0px;
    border-radius: 0px 50px 50px 0px;
    font-family: 'Jost', sans-serif;
    color: white;
    text-shadow: 0px 3px 5px black;
    font-weight: 500;
    font-size: 20px;
    position: relative;
  }
  
  .flexcardTitle {
  
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    padding-top: 35px;
  }
  
  .flexcardText {
    font-family: 'Jost', sans-serif;
    text-align: center;
    font-weight: 300;
  }
  
  .flexcardNumber:before {
    content: '';
    width: 34px;
    height: 90px;
    position: absolute;
    left: -33px;
    top: 0px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
  /* background: #95B7A2; *//* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
    background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
  /* background: linear-gradient(to top, #95B7A2, #AED2BC); */;
  }
  
  .flexcardNumber:after {
    content: '';
    width: 25px;
    height: 40px;
    position: absolute;
    left: -25px;
    bottom: -40px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
  }
  
  .flex {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px auto;
  }
  
  img.flexcardimgItem {
    width: 50%;
  }
  
  /* GREEN CARD */
  
  .flexcardGreen {
    background: #f9fbfa;
    box-shadow: 4px 4px 4px #AED2BC;
  }
  
  .flexcardNumberGreen {
    background: #FCFCFC;
    background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
    background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
    background: linear-gradient(to left, #FCFCFC, #AED2BC);
    box-shadow: 0px 2px 2px #AED2BC;
  }
  
  .flexcardNumberGreen:before {
    background: #AED2BC;
  }
  
  .flexcardNumberGreen:after {
    background: #95b7a2;
  }
  
  /* BLUE CARD */
  
  .flexcardBlue {
    background: #f7ffff;
   box-shadow: 4px 8px 1px #92E8EB;
  }
  
  .flexcardNumberBlue {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
    background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
    background: linear-gradient(to left, #FDFFFE, #92E8EB);
    box-shadow: 0px 2px 2px #92E8EB;
  }
  
  .flexcardNumberBlue:before {
    background: #92E8EB;
  }
  
  .flexcardNumberBlue:after {
    background: #71bdbf;
  }
  
  /* ORANGE CARD */
  
  .flexcardOrange {
    background: #fdf8f3;
   box-shadow: 4px -2px 1px #F68404;
  }
  
  .flexcardNumberOrange {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
    background: -moz-linear-gradient(right, #FDFFFE, #F68404);
    background: linear-gradient(to left, #FDFFFE, #F68404);
    box-shadow: 0px 2px 2px #F68404;
  }
  
  .flexcardNumberOrange:before {
    background: #F68404;
  }
  
  .flexcardNumberOrange:after {
    background: #d06f02;
  }
  
  /* PİNK CARD */
  
  .flexcardPink {
    background: #fffafd;
    position: relative;
      box-shadow: 2px 2px 1px #40464d ;
      border-radius: 20px 20px 0px 20px;
  }
  .flexcardPink:before {
      content: '';
      width: 0px;
      height: 50px;
      /* background: red; */
      position: absolute;
      bottom: 0;
      right: 0;
      border-left: 100px solid transparent;
      border-bottom: 90px solid #40464d;
  }
  .flexcardNumberPink {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #993300);
    background: -moz-linear-gradient(right, #FDFFFE, #993300);
    background: linear-gradient(to left, #FDFFFE, #993300);
    box-shadow: 0px 2px 2px #1648eb;
  }
  
  .flexcardNumberPink:before {
    background: #1648eb;
  }
  
  .flexcardNumberPink:after {
    background: #1648eb;
  }
  
  /* RESPONSİVE */
  
  @media only screen and (max-width: 800px) {
  
    .flexcard {
      width: 35%;
      margin-top: 20px;
    }
  
    img.flexcardimgItem {
      width: 30%;
    }
  
  }
  
  @media only screen and (max-width: 500px) {
  
    .flexcard {
      width: 70%;
    }
  }
  
  .cast{
    background: linear-gradient(#ffffff, #f1f1f163) ,url("../img/bgimage1.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    
  }
  
  #myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    z-index: -1;
  }

  .whitebg{
    background-color: #fff;
  }
  .contactdetails i{
    font-size: 32px;
  }
  .contactdetails h5{
    line-height: 28px;
  }

  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 3px solid transparent;
    border-image: linear-gradient(130deg,  #F26720, #993300);
    border-image-slice: 1;  
    border-top-color: #993300;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }