
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

@font-face {
    font-display: block;
    font-family: "bootstrap-icons";
    src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
  url("../fonts/bootstrap-icons.woff2") format("woff");
  }
  

@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto/Roboto-Bold-webfont.eot');
    src: url('../fonts/roboto/Roboto-Bold-webfontd41d.eot?#iefix') format('embedded-opentype'),
      /* url('../fonts/roboto/Roboto-Bold-webfont.woff2') format('woff2'),*/
    url('../fonts/roboto/Roboto-Bold-webfont.woff') format('woff'),
    url('../fonts/roboto/Roboto-Bold-webfont.ttf') format('truetype'),
    url('../fonts/roboto/Roboto-Bold-webfont.svg#robotobold') format('svg');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'robotoitalic';
    src: url('../fonts/roboto/Roboto-Italic-webfont.eot');
    src: url('../fonts/roboto/Roboto-Italic-webfontd41d.eot?#iefix') format('embedded-opentype'),
      /*url('../fonts/roboto/Roboto-Italic-webfont.woff2') format('woff2'),*/
    url('../fonts/roboto/Roboto-Italic-webfont.woff') format('woff'),
    url('../fonts/roboto/Roboto-Italic-webfont.ttf') format('truetype'),
    url('../fonts/roboto/Roboto-Italic-webfont.svg#robotoitalic') format('svg');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'robotolight';
    src: url('../fonts/roboto/Roboto-Light-webfont.eot');
    src: url('../fonts/roboto/Roboto-Light-webfontd41d.eot?#iefix') format('embedded-opentype'),
      /*url('../fonts/roboto/Roboto-Light-webfont.woff2') format('woff2'),*/
    url('../fonts/roboto/Roboto-Light-webfont.woff') format('woff'),
    url('../fonts/roboto/Roboto-Light-webfont.ttf') format('truetype'),
    url('../fonts/roboto/Roboto-Light-webfont.svg#robotolight') format('svg');
    font-weight: normal;
    font-style: normal;
  
  }
  @font-face {
    font-family: 'robotomedium';
    src: url('../fonts/roboto/Roboto-Medium-webfont.eot');
    src: url('../fonts/roboto/Roboto-Medium-webfontd41d.eot?#iefix') format('embedded-opentype'),
      /*url('../fonts/roboto/Roboto-Medium-webfont.woff2') format('woff2'),*/
    url('../fonts/roboto/Roboto-Medium-webfont.woff') format('woff'),
    url('../fonts/roboto/Roboto-Medium-webfont.ttf') format('truetype'),
    url('../fonts/roboto/Roboto-Medium-webfont.svg#robotomedium') format('svg');
    font-weight: normal;
    font-style: normal;
  
  }
  
  
  @font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto/Roboto-Regular-webfont.eot');
    src: url('../fonts/roboto/Roboto-Regular-webfontd41d.eot?#iefix') format('embedded-opentype'),
      /* url('../fonts/roboto/Roboto-Regular-webfont.woff2') format('woff2'),*/
    url('../fonts/roboto/Roboto-Regular-webfont.woff') format('woff'),
    url('../fonts/roboto/Roboto-Regular-webfont.ttf') format('truetype'),
    url('../fonts/roboto/Roboto-Regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
  
  }
  
body{
    font-family: 'robotoregular';
}
:root{
  --primay-color:#ee7b00;
  --seconder-color:#444444;
  --text-color:#111111;
  --header-color:#000000;
  --black-color:#000000;
  --white-color:#fff;
  --gray-color:#ccc;
  --light-color:#f5f5f5;
  --dark-color:#333333;
  --sky-color:#0097be;
  --blue-color:#002049;
  --facebook-color:#0866ff;
  --x-color:#000000;
  --instagram:#000000;
  --linkedin:#000000;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{font-weight: 600;}

.text-primary-color{color: var(--primay-color);}
.nav-pills .nav-link{text-align: left;}

.header {
    --background-color: rgba(0, 0, 0, 0.8);
    --heading-color: #ffffff;
    --contrast-color: #ffffff;
    color: var(--seconder-color);
    background-color: #ffffff;
    padding: 0px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0 0 10px #7a7a7a;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 140px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    color: #151515;
  }
  
  .header .logo span {
    color: var(--primay-color);
    font-size: 32px;
  }
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: #000;
    font-size: 14px;
    padding: 8px 30px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    border: 2px solid #e49501;
  }
  
  .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    color: var(--seconder-color);
    background: #e49501;
  }
  
  @media (max-width: 991px) {
    .header .logo {
      order: 1;
    }

    .header .download {
      order: 2;
    }
  
   /* .header .btn-getstarted {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }*/
  
    .header .navbar-toggler {
      order: 3;
    }
    .navbar-collapse{    position: absolute;        background: #002049;
    top: 107px;    text-align: center;
    left: 0;
    width: 100%;
   }


   .navbar-light .navbar-toggler {
    color: #FF9800;
    border-color: #FF9800;}

    .header .navbar-toggler{padding: 3px 2px;
        order: 3;
        width: 39px;
        color: var(--primay-color);

    }
    .navbar-toggler-icon{color: var(--primay-color);}

    .dropdown-item{text-align: center; font-size: 14px;}

    .navbar-light .navbar-nav .nav-link {
    color: var(--white-color) !important;
    padding: 10px 10px !important;
   
}
.navbar-nav .dropdown-menu{ background:var(--light-color); }
.navbar-nav .dropdown-item {color: var(--black-color);}
.boxed-btn {   
    font-size: 14px !important;
    display: flex;
    padding: 8px 14px !important;
    border-radius: 5px !important;
    transition: 0.5s;
    margin: 10px;

}

/*    .dropdown-item.active, .dropdown-item:active{background: var(--blue-color); color: var(--white-color) !important;}*/
  }



  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  
  .header {
    background-color: #fff;
  }
  
 body.scrolled .header {
    --background-color: rgb(249 243 243 / 80%);
    border-bottom: 1px solid #ddd;
  }
  

  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
        .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .footer-top .footer-links a.active,
    .footer-top .footer-links a.active:focus,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--primay-color);
    }

    .navmenu a,
    .navmenu a:focus {
      color: #000;
      padding: 18px 20px;
      font-size: 17px;
      font-family: var(--nav-font);
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      text-decoration: none;

    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: #ffffff;
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 0;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 16px;
      text-transform: none;
      color: #212529;
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      background-color: var(--primay-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }


  }
  
  /* Navmenu - Mobile */
  @media (max-width: 1199px) {

    .mobile-nav-toggle {
      color: rgba(255, 255, 255, 0.905);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
/*   .navmenu .dropdown ul{ display:none; }*/
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 100px 0px 20px 0px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: #ffffff;   
/*      overflow-y: auto;*/
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: #212529;
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
       background-color: #fff;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, #e49501, white 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: color-mix(in srgb, #e49501, white 90%);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      background-color: var(--primay-color);
      color: var(--white-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
/*      position: fixed;*/
/*      display: none;*/
      z-index: 99;
      padding: 0px 0;
      margin: 10px 20px;
      background-color: #e49501;
      border: 1px solid color-mix(in srgb, #444444, transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
      width: 100%;
      margin-top: -10px !important;

    }
    .navmenu .dropdown ul li a{background-color: #e49501; color: #fff;}
    .navmenu ul li a.active, .navmenu ul li a:focus{ color: #fff;}


    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
/*      position: absolute;*/
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
/*      position: fixed;*/
/*      overflow: hidden;*/
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }

    .mobile-nav-active .navmenu .dropdown ul{display: none;}
  }

  .carousel img {
    width: 100%;
/*    height: 400px;*/
    object-fit: cover;
    object-position: center;
}

#myCarousel{margin-top: 116px}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
section {
    margin-bottom: 40px;
  }
  .about .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primay-color);
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  
  .about img {
/*    height: 425px;*/
      width: 100%;
  }
 
  .about .content ul {
    list-style: none;
    padding: 0;
  }
  
  .about .content ul li {
    padding: 30px 0 0 0;
    display: flex;
  }
  
  .about .content ul i {
    color: #ffffff;
    margin-right: 0.5rem;
    line-height: 1.2;
    font-size: 1.25rem;
    font-size: 21px;
    font-weight: bold;
    border-radius: 100%;
    background: var(--primay-color);
    width: 29px;
    height: 32px;
    padding: 4px;
  }
  
  .about .content p:last-child {
    margin-bottom: 0;
  }
  

.animation-words{
    background: #002049;
      position: absolute;
      width: 100%;
      top: 120px;
      font-size: 16px;
      display: none;
  }


  @media screen and (max-width:767px){
     .carousel img {
/*    height: 400px;*/
}
    .animation-words{
/*     top:64px;   */
    }

    .info_social a {
      padding: 0 4px !important;
    font-size: 20px !important;

    }
    .header .logo img {
    max-height: 100px;
    margin-left: 18px;
}
  }
  
  .words {
    position: relative;
    animation: move-words 20s linear infinite;
    margin: 0;
    font-size: 14px;
    padding: 10px 0;
    color:#fff;
  }
  
  @keyframes move-words {
    0% {
      left: 100%;
    }
    100% {
      left: -100%;
    }
  }
  
  .bi-list::before {
  content: "\f479";
  color:var(--primay-color);
}
.bi-x::before {
  content: "\f62a";
}
  
  .carousel-indicators [data-bs-target] {
      border-top:10px solid var(--primay-color);
      border-bottom:10px solid var(--primay-color);
      background-color:var(--primay-color);
  }


.bi-check2-all::before {
    content: "\f26f";
}

.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
section,
.section {
  color: var(--seconder-color);
  scroll-margin-top: 80px;
  overflow: clip;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
  }
  
  .clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
  }
  
  .clients .swiper-wrapper {
    height: auto;
  }
  
  .clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, #444444, transparent 80%);
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primay-color);
  }

  .section-title {
    padding-bottom: 60px;
    position: relative;
}
.section-title {
    padding-bottom: 60px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    line-height: 24px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, #444444, transparent 10%);
    position: relative;
  }
  
  .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #e49501;
    margin: 4px 10px;
  }
  
  .section-title p {
    color: #151515;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #e49501;
    margin: 4px 10px;
}

.services .service-item {
    background-color: #f5f5f5;
    text-align: center;
    border: 1px solid #ddd;
    padding: 80px 20px;
    height: 100%;
    transition: all ease-in-out 0.3s;
}


.services .service-item .icon {
    margin: 0 auto;
    width: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
  }
  
  
  .services .service-item .icon img {
    width: 100%;
    height: 204px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
  }
  
  .services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: 0.3s;
  }
  
  a {
    text-decoration: none;
    color: #000;
  }
  a:hover {
    color: var(--primay-color);
  }
  .services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
  }
  
  .call-to-action .cta-btn, .cta-btn {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #000;
    color: #000;
}

.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
    background-image: url('../img/home/video-section-bg.jpg');
    background-repeat:no-repeat;
  }
  
  .call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  
  .call-to-action .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
  }
  
  .call-to-action p {
    color: #000;
  }
  .features .features-image {
    position: relative;
    min-height: 464px;
}
.features .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.features .features-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}
.features .features-item p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}


#contact {
    background-image: url('../img/home/office.jpg');
    background-repeat: no-repeat;
    height: 300px;
    background-position: center center;
    position: relative;
    background-size: cover;
  }
  
  #contact:before,.inner-page:before{
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    background: rgba(0,0,0,.5);
  }
  
  #contact .contact-section {
    transform: translate(-50%);
    top: 26%;
    position: absolute;
    margin: 0 auto;
    text-align: center;
    left: 50%;
    z-index: 9;
  }
  #contact h2 {
    color: #fff;
  }
  
  #contact a{
    border: 1px solid #fff;
    color: #fff;
  }

  .footer {
    color: #fff;
    background-color: #24336c;
    font-size: 14px;
    position: relative;
  }
  
  .footer .footer-top {
    padding: 50px 0 20px;
    background-color: #002049;
  }
  
  .footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 10px;
  }
  
  .footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .footer .footer-about .logo span {
        font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fea500;
  }
  

  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-links ul i {
    margin-right: 4px;
    font-size: 12px;
    line-height: 0;
    color: #fff;
  }
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  .footer-logo {
    margin: 0 auto;
    text-align: center;
    display: block;
    width: 200px;
    margin-bottom: 8%;
}
  
  .footer .footer-links ul a {
    color: #fff;
    display: inline-block;
    line-height: 1;
  }
  
  .footer .footer-links ul a:hover {
    color: var(--primay-color);
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
  }
 

  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--primay-color);;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }

  .bi-arrow-up-short::before {
    content: "\f145";
}



.inner-page h1 {
    position: absolute;
    top: 50%;
    text-transform: uppercase;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    /* background: rgba(0, 0, 0, .5);
    width: 100%;*/
    /* height: 16%; */
    text-align: center;
    line-height: 40px;
    color: #fff;
    z-index: 10;
    margin-top: -5px;
/*    margin-left: -5%;*/
}
.Address{position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--black-color);}

.Address i{position: absolute; left: 0; right: 0;}
.copy-right{padding-top: 20px; border-top: 1px solid #004051;}


.footer .Address{position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--white-color);}
.footer .Address a{color: var(--white-color);}
.footer .Address i{position: absolute; left: 0; right: 0;}

.hero{margin-top: 115px}
.hero .carousel-item{height: 300px; overflow: hidden;}
.hero .carousel img { height:400px }

#contact:before, .inner-page:before{    z-index: 9;}


/*.navmenu .dropdown-item.active ul a{color: var(--white-color);}*/
.card{box-shadow: 0 0 10px #ccc}
.info_social a{padding: 0 10px; color: var(--primay-color);  font-size: 15px; width: 30px; height: 30px; background: #fff; margin-right: 10px; border-radius: 50%; display: flex; justify-content:center; align-items: center; }

.info_social a:hover{background: var(--black-color);}
/*.info_social a .bi-facebook{ color:var(--facebook-color);}
.info_social a .bi-twitter-x{ color: #000}
.info_social a .bi-instagram{
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.info_social a .bi-linkedin{ color: #2764ac}
*/
.boxed-btn{font-weight: 500; border: 0px;
    font-size: 16px;
    display: flex;
    padding: 12px 20px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    background-color: var(--primay-color);    
    color: var(--white-color);}
  .boxed-btn:hover{background-color: var(--dark-color); color: var(--white-color);}


  /* =========================================
            Button
============================================*/

.blueBg {
   background-color: #0b8fd8!important;
    background-image: linear-gradient(90deg, #0b8fd8, #007fc5);
     right: 26px;
     top: 82%;
}
.greenBg {
    background-color: #03db0c!important;
    background-image: linear-gradient(90deg, #1ea824, #039908);
     left: 26px;
       top: 82%;

}

.intro-banner-vdo-play-btn {
    height: 60px;
    width: 60px;
    position: fixed;
  
   
    text-align: center;
    /* margin: -30px 0 0 -30px; */
    border-radius: 100px;
    z-index: 9999;
}
.intro-banner-vdo-play-btn i {
    line-height: 63px;
    font-size: 30px;
    color: #fff;
}
.intro-banner-vdo-play-btn .ripple{
    position:absolute;
    width:160px;
    height:160px;
    z-index:-1;
    left:50%;
    top:50%;
    opacity:0;
    margin:-80px 0 0 -80px;
    border-radius:100px;
    -webkit-animation:ripple 1.8s infinite;
    animation:ripple 1.8s infinite
}

@-webkit-keyframes ripple{
    0%{
        opacity:1;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes ripple{
    0%{
        opacity:1;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
.intro-banner-vdo-play-btn .ripple:nth-child(2){
    animation-delay:.3s;
    -webkit-animation-delay:.3s
}
.intro-banner-vdo-play-btn .ripple:nth-child(3){
    animation-delay:.6s;
    -webkit-animation-delay:.6s
}

/* scroll to top styles */
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #f47000;
    border: 2px solid #f47000;
    border-radius: 0%;
    color: #ffffff;
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    cursor: pointer;
    display: none;
    text-align: center;
    transition: all 500ms ease 0s;
    z-index: 99999999999;
    box-shadow: 0px 5px 10px -10px rgba(27,27,27,1);
}
.scroll-to-top:hover {
    opacity: .5;
}

 @media screen and (min-width:1200px){
/*  .navbar-light .navbar-nav .nav-link{ padding: 0 10px !important;}*/
  .navbar-light .navbar-nav .nav-link { border-radius: 0px 10px 0px 10px !important; font-size: 14px !important;  }
}


@media (min-width: 992px) {
   .navbar-light .navbar-nav .nav-link { font-size: 11px   }
}
/*   .navbar-light .navbar-nav .nav-link{ color: var(--black-color); padding: 0 20px; font-weight: 500}*/
.navbar-light .navbar-nav .nav-link {
    color: #ffffff;  
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    background: #002049;
    border-radius: 0px 10px 0px 10px;
    /* color: #fff; */
    padding: 5px 10px ;
    margin: 0 3px;
}

   .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{ background:var(--primay-color); color: var(--white-color);  }


   .dropdown-item.active, .dropdown-item:active {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--primay-color);
}

.career{background: var(--light-color); padding: 5px;}
.career .nav-pills.nav-pills .nav-link.active, .nav-pills .show>.nav-link{background-color: var(--primay-color);color: var(--white-color)  !important;}

.career .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{color: var(--white-color)  !important; background:var(--primay-color);}
.career .nav-pills.nav-pills .nav-link{color: var(--black-color); font-size: 15px; border-bottom: 1px solid var(--gray-color);}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {   
    color: #ffffff;
}

.dropdown-item{padding: 10px 16px;}
