@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all .2s linear;
    text-decoration: none;
}

html{
    font-size: 62.5%;
}

body{
    overflow-x: hidden;
}



:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Poppins", sans-serif;
  }
  
  /* Colors */
  :root {
    --color-default: #0a0d13;
    --color-primary: #090909;
    --color-secondary: #0e1d34;
  }
  
 
  :root {
    scroll-behavior: smooth;
  }

  /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
  }
  
  a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  a:hover {
    color: #406aff;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-primary);
  }
  
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.847);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .scroll-top:hover {
    background: rgb(255, 196, 0);
    color: #fff;
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  
  #loader-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      background-color: #fff;
      width: 100%;
      height: 100%;
      z-index: 1000;
    }
    #loader {
      display: block;
      position: relative;
      left: 50%;
      top: 50%;
      width: 150px;
      height: 150px;
      margin: -75px 0 0 -75px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #3498db;
      -webkit-animation: spin 2s linear infinite; 
      animation: spin 2s linear infinite;
    }
    
    #loader:before {
      content: "";
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #e74c3c;
      -webkit-animation: spin 3s linear infinite; 
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }
    
    #loader:after {
      content: "";
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #f9c922;
      -webkit-animation: spin 1.5s linear infinite; 
        animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }
    
    @-webkit-keyframes spin {
      0%   {
          -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: rotate(0deg);  /* IE 9 */
          transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
      }
      100% {
          -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: rotate(360deg);  /* IE 9 */
          transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
      }
    }
    @keyframes spin {
      0%   {
          -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: rotate(0deg);  /* IE 9 */
          transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
      }
      100% {
          -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
          -ms-transform: rotate(360deg);  /* IE 9 */
          transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
      }
    }
  
  
  
  
  
  /*--------------------------------------------------------------
  # 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;
      padding: 20px 0;
    }
    
   .header {
     background: rgb(255, 255, 255);
      padding: 15px 0;
      box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
    }
    
    .header .logo img {
      max-height: 40px;
      margin-right: 6px;
      margin-left: -60px;
      min-width: 50px;
      min-height: 50px;
    }
    
    .header .logo h1 {
      font-size: 36px;
      margin: 0;
      font-weight: 700;
      color: #ff9900;
      font-family: var(--font-primary);
    }
  
  /*--------------------------------------------------------------
  # Desktop Navigation
  --------------------------------------------------------------*/
  @media (min-width: 1280px) {
    .navbar {
      padding: 0;
    }
  
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navbar li {
      position: relative;
    }
  
    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0 10px 30px;
      font-family: var(--font-primary);
      font-size: 19px;
      font-weight: 500;
      color: #1c1a1a;
      
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }
  
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
      color: #ff9900;
    }
  
    .navbar .get-a-quote,
    .navbar .get-a-quote:focus {
      background: var(--color-primary);
      padding: 8px 20px;
      margin-left: 30px;
      border-radius: 4px;
      color: #fff;
    }
  
    .navbar .get-a-quote:hover,
    .navbar .get-a-quote:focus:hover {
      color: #fff;
      background: #ff9900;
    }
  
    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 14px;
      top: calc(100% + 30px);
      margin: 0;
      padding: 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background:rgb(255, 255, 255);
      box-shadow: 0px 0px 30px rgba(76, 79, 83, 0.25);
      transition: 0.3s;
      border-radius: 4px;
    }
  
    .navbar .dropdown ul li {
      min-width: 200px;
      
    }
  
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 17px;
      text-transform: none;
      font-weight: 400;
      color: #1c1a1a;
    }
  
    .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: #ff9900;
    }
  
    .navbar .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navbar .dropdown .dropdown ul {
      top: 0;
      left: calc(100% - 30px);
      visibility: hidden;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: 100%;
      visibility: visible;
    }
  }
  
  @media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  @media (min-width: 1280px) {
  
    .mobile-nav-show,
    .mobile-nav-hide {
      display: none;
    }
  }
  
    /*--------------------------------------------------------------
    # Mobile Navigation
    --------------------------------------------------------------*/
    @media (max-width: 1279px) {
      .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
      }
    
      .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(229, 231, 233, 0.9);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
      }
    
      .navbar a,
      .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        font-family: var(--font-primary);
        font-size: 16px;
        font-weight: 500;
        color: rgba(18, 18, 18, 0.7);
        white-space: nowrap;
        transition: 0.3s;
      }
    
      .navbar a i,
      .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
      }
    
      .navbar a:hover,
      .navbar .active,
      .navbar .active:focus,
      .navbar li:hover>a {
        color: #ff9900;
      }
    
      .navbar .get-a-quote,
      .navbar .get-a-quote:focus {
        background: var(--color-primary);
        padding: 8px 20px;
        border-radius: 4px;
        margin: 15px;
        color: #fff;
      }
    
      .navbar .get-a-quote:hover,
      .navbar .get-a-quote:focus:hover {
        color: #fff;
        background: rgba(13, 66, 255, 0.8);
      }
    
      .navbar .dropdown ul,
      .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #19335c;
      }
    
      .navbar .dropdown>.dropdown-active,
      .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
      }
    
       .mobile-nav-show {
      color: #141313;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
      }
    
      @media (max-width: 767px) {
        .logo {
          position: relative; /* Position the logo absolutely */ /* Adjust top position */
          margin-left: 50px; /* Adjust left position */
        }
      }
      .mobile-nav-hide {
        color: #141313;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
      }
    
      .mobile-nav-active {
        overflow: hidden;
      }
    
      .mobile-nav-active .navbar {
        right: 0;
      }
    
      .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(14, 29, 52, 0.8);
        z-index: 9996;
      }
    }
  





  
  .career-heading{
    text-align: center;
    margin-top: 60px;
  }
  
  .heading{
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #ff9900;
    position: relative;
    letter-spacing: .2rem;
    margin: -2rem auto 2rem auto;
  }
  
  .career-heading p{
    font-size: 2rem;
    color: #333;
    
  }
  
  
  
  
  .career
    {
      width: 80%;
      height: auto;
      margin: 5rem auto 5rem auto;
      display: flex;
      flex-wrap: wrap;
      padding: 10px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0px 0px 10px 0px #666;
    }
    .career-form
    {
            margin-top: .5rem;
      width: 100%;
      height: auto;
      flex: 50%;
      text-align: left;
    }
    .career-form-txt, .career-form-experience
    {
            margin-left: 2rem;
      width: 96.5%;
      height: 40px;
      color: #000;
      border: 1px solid #bcbcbc;
      border-radius: 50px;
      outline: none;
      margin-bottom: 20px;
      padding: 15px;
            font-size: 1.5rem;
    }
        .career-form-email
    {
            margin-left: 2rem;
      width: 96.5%;
      height: 40px;
      color: #000;
      border: 1px solid #bcbcbc;
      border-radius: 50px;
      outline: none;
      margin-bottom: 20px;
      padding: 15px;
      text-transform: lowercase;
            font-size: 1.5rem;
    }
    .career-form-txt::placeholder, .career-form-experience::placeholder
    {
      color: #aaa;
            font-size: 1.5rem;
    }
        .career-form-email::placeholder
    {
      color: #aaa;
            font-size: 1.5rem;
            text-transform: capitalize;
    }
        .radio-class
    {
         margin-left: 1rem;
         width: 110%;
         margin-top: -2rem;
         height: 40px;
         color: #000;
         margin-bottom: 5rem;
         padding: 15px;
    }
        .radio
        {
           
            margin-top: .75rem;
            font-size: 1.5rem;
            margin-right: 9.5rem;
        }
        
    .career-form-txtarea
    {
            margin-left: 2rem;
      width: 96.5%;
      height: 130px;
      color: #000;
      border: 1px solid #bcbcbc;
      border-radius: 10px;
      outline: none;
      margin-bottom: 20px;
      padding: 15px;
      font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
    }
    .career-form-txtarea::placeholder
    {
      color: #aaa;
            font-size: 1.5rem;
    }
        .file   
    {
            margin-left: 1rem;
      width: 100%;
            margin-top: -2.5rem;
      height: 40px;
      color: #000;
      margin-bottom: 5rem;
      padding: 15px;
    }
        .upload
        {
            margin-top: .75rem;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
    .career-form-btn
    {
            margin-left: 2rem;
            outline: none;
            border: none;
            border-radius: 5rem;
            background: white;
            border-style: groove;
            border-color: #FF9900;
            font-size: 1.5rem;
            cursor: pointer;
            height: 3.5rem;
            margin-top: 1rem;
            margin-bottom: .5rem;
            width: 15rem;
            box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
    }
        .career-form-btn:hover{
            letter-spacing: .1rem;
            opacity: .9;
            color: white;
            background: #FF9900;
        }
    .career-form-phone
    {
            margin-left: 2rem;
      width: 96.5%;
      height: 40px;
      color: #000;
      border: 1px solid #bcbcbc;
      border-radius: 50px;
      outline: none;
      margin-bottom: 20px;
      padding: 15px;
            font-size: 1.5rem;
    }
    .career-form-phone::placeholder
    {
      color: #aaa;
            font-size: 1.5rem;
    }
  
    @media (max-width: 1500px){
      .career
      {
          width: 80%;
          height: auto;
          margin: 5rem auto 5rem auto;
          display: flex;
          flex-wrap: wrap;
          padding: 10px;
          border-radius: 10px;
          background: #fff;
          box-shadow: 0px 0px 10px 0px #666;
      }
      .career-form
      {
          margin-top: .5rem;
          width: 100%;
          height: auto;
          flex: 50%;
          text-align: left;
      }
      .career-form-txt, .career-form-experience
      {
          margin-left: 1rem;
          width: 96.5%;
          height: 40px;
          color: #000;
          border: 1px solid #bcbcbc;
          border-radius: 50px;
          outline: none;
          margin-bottom: 20px;
          padding: 15px;
          font-size: 1.5rem;
      }
      .career-form-email
      {
          margin-left: 1rem;
          width: 96.5%;
          height: 40px;
          color: #000;
          border: 1px solid #bcbcbc;
          border-radius: 50px;
          outline: none;
          margin-bottom: 20px;
          padding: 15px;
          font-size: 1.5rem;
      }
      .career-form-txt::placeholder, .career-form-experience::placeholder
      {
          color: #aaa;
          font-size: 1.5rem;
      }
      .career-form-email::placeholder
      {
          color: #aaa;
          font-size: 1.5rem;
      }
      .radio-class
      {
          margin-left: 0;
          width: 110%;
          margin-top: -2.5rem;
          height: auto;
          color: #000;
          margin-bottom: auto;
          padding: 15px;
      }
      .radio
      {
          font-size: 1.5rem;
          margin-right: 5rem;
      }
      .career-form-txtarea
      {
          margin-left: 1rem;
          width: 96.5%;
          height: 130px;
          color: #000;
          border: 1px solid #bcbcbc;
          border-radius: 10px;
          outline: none;
          margin-bottom: 20px;
          padding: 15px;
          font-family: 'Poppins', sans-serif;
          font-size: 1.5rem;
      }
      .career-form-txtarea::placeholder
      {
          color: #aaa;
          font-size: 1.5rem;
      }
      .file   
      {
          margin-left: 0;
          width: 100%;
          margin-top: -2.5rem;
          height: 40px;
          color: #000;
          margin-bottom: 5rem;
          padding: 15px;
      }
      .upload
      {
          margin-top: .75rem;
          font-size: 1.5rem;
          margin-bottom: 1rem;
      }
      .career-form-btn
      {
          margin-left: 1rem;
          outline: none;
          border: none;
          border-radius: 5rem;
          background: white;
          border-style: groove;
          border-color: #FF9900;
          font-size: 1.5rem;
          cursor: pointer;
          height: 3.5rem;
          margin-top: 1rem;
          margin-bottom: .5rem;
          width: 15rem;
          box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
      }
      .career-form-btn:hover{
          letter-spacing: .1rem;
          opacity: .9;
          color: white;
          background: #FF9900;
      }
      .career-form-phone
      {
          margin-left: 1rem;
          width: 96.5%;
          height: 40px;
          color: #000;
          border: 1px solid #bcbcbc;
          border-radius: 50px;
          outline: none;
          margin-bottom: 20px;
          padding: 15px;
          font-size: 1.5rem;
      }
      .career-form-phone::placeholder
      {
          color: #aaa;
          font-size: 1.5rem;
      }
  }


  /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background-color: rgb(235, 235, 235);
    padding: 50px 0;
    color: #1c1a1a;
  }
  
  .footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
  }
  
  .footer .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff9900;
    font-family: var(--font-primary);
  }
  
  .footer .footer-info p {
    font-size: 14px;
    font-family: var(--font-primary);
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: #1c1a1a;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: #1c1a1a;
    border-color: #ff9900;
  }
  
  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #101010;
  }
  
  .footer .footer-links {
    margin-bottom: 20px;
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-links ul i {
    padding-right: 2px;
    color: rgba(13, 66, 255, 0.8);
    font-size: 12px;
    line-height: 0;
  }
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    color: #1c1a1a;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  .footer .footer-links ul a:hover {
    color: #ff9900;
  }
  
  .footer .footer-contact p {
    line-height: 26px;
  }
  
  .footer .copyright {
    text-align: center;
  }
  
  .footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
  }
  
  .footer .credits a {
    color: #1c1a1a;
  }
  .footer .copyright span{
    color: #000000;
  }
  