/* Fonts */
:root {
    --careers-font: "Mulish", Helvetica;
  }
  
  /* Global Colors */
  :root {
    /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
    /* --background-color: #ffffff; */
  
    /* Default Color - This is the default color used for the majority of the text content. */
    --default-color: #364d59;
  
    /* Heading Color - This color is used for titles, headings and secondary elements. */
    --heading-color: #52565e;
  
    /* Accent Color - This is the main accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out. */
    /* --accent-color: #feb900; */
  
    /* Contrast Color - This is a color used for text when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors. */
    --contrast-color: #ffffff;
  }
  
  
  /*--------------------------------------------------------------
    # General
    --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  a {
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    text-decoration: none;
  }
  
   /*--------------------------------------------------------------
    # Call To Action Section
    --------------------------------------------------------------*/
    .call-to-action {
      --background-color: #000000;
      --default-color: #ffffff;
      --contrast-color: #ffffff;
      height:290px;
      position: relative;
      overflow: hidden;
      padding: 60px 0 !important;
      clip-path: inset(0);
    }
    
    .call-to-action img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 290px;
      object-fit: cover;
      z-index: 1;
    }
    
    .call-to-action:before {
      content: "";
      background: rgba(0, 43, 77, 0.45);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
    }
    
    .call-to-action .container {
      position: relative;
      height: 100%;
      display: flex;
      align-items: left;
      justify-content: left;
      z-index: 3;
      text-align: left;
    }
    
    .call-to-action h3 {
      color: #FFF;
      font-family: Mulish, sans-serif;
      font-size: 48px;
      font-style: normal;
      font-weight: 800;
      line-height: 54px;
    }
    
    .call-to-action p {
      color: #FFF;
      font-family: Mulish, sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
      margin-top: 35px;
          word-spacing: 4px;
    }
    @media (max-width: 1440px) {
      .call-to-action {
        height: 100%;
      }
      
      .call-to-action img {
        height: 100%;
      }
  }

  /*--------------------------------------------------------------
# icon  Section
--------------------------------------------------------------*/


.images-column {
  display: flex;
  flex-direction: column;
  align-items:center; 
  text-align: end;
  margin-top: -925px !important
}

.svg-icon {
  opacity: 1;
  font-size: 16px;
  margin-bottom: 25px;
  margin-right: -125px;
  color: #2F82C3 !important; 
  cursor: pointer;
  transition: color 0.5s;
}

.images-column .svg-icon:hover {
  color: #064f8b !important;
}

.apple {
  &:hover path {

    transition: fill 0.5s ease-in-out;
    opacity: 1;
    fill: #064f8b !important;
  }
}

@media (max-width: 1200px) {
  .svg-icon-main {
      display: block; 
  }
}
@media (min-width: 1024px) {
  .images-column .svg-icon {
    display: block;
  }
}

@media (max-width: 1023px) {
  .images-column .svg-icon {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .images-column {
    margin-top: 0px!important;
    display: none;
  }
}
  
  /*--------------------------------------------------------------
  # Leave Us Your Info Form
  --------------------------------------------------------------*/
 
  .form .form-title {
    font-family: var(--careers-font);
    font-weight: 800;
    color: #2F82C3;
    font-size: 40px;
    line-height: 50px;
    margin-top: 55px;
  }
  
  .form .form-subtitle {
    font-family: var(--careers-font);
    color: #383838;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
  }
  
  .form .small-text {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: "Mulish", Helvetica;
  }
  
  .form .error {
    color: #BF2A2D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .form .custom-bg {
    background-color: #F5F5F5;
    height: 60px;
    padding: .375rem 1.5rem !important;
    font-weight: 400;
    line-height: 24px;
    font-family: "Mulish";
    font-size: 18px;
    font-style: normal;
    border-radius: 0px;
    border: none;
  }
  
  #inputName::placeholder,
  #inputEmail::placeholder,
  #inputNumber::placeholder,
  #coverLetter::placeholder {
    font-family: var(--careers-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #9198A2;
  }
  
  .form .custom-bg-2 {
    background-color: #F5F5F5;
    height: 125px;
    padding: 1.375rem 1.5rem;
  }
  
  .form .no-border {
    border: none;
    border-radius: 0px;
  }
  
  .form .custom-dropdown {
    background-color: #F5F5F5;
    height: 60px;
    border: none;
    border-radius: 0px;
    color: #9198A2;
    font-family: var(--careers-font);
    font-size: 18px;
    padding: .375rem 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
  
  .form .custom-dropdown:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  .form .custom-dropdown option:disabled {
    color: #9198A2;
  }
  
  .form .form-check {
    display: flex;
    align-items: center;
   
  }
  
  /* .form .form-check-input {
    background-color: #F5F5F5;
    border: none;
  
    height: 28px;
    width: 28px;
    margin-right: 10px;
  
    appearance: none;
  
    display: inline-block;
    position: relative;
    border-radius: 0px;
  }
  
  .form .form-check-input:checked {
    background-color: #FFF;
    border-color: green;
  }
  
  .form .form-check-input:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 9px;
    width: 8px;
    height: 16px;
    border: solid green;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
  } */
  
  .form .form-check-label {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
  
  .form .file-format {
    color: #9198A2;
    font-family: "Mulish", Helvetica;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    line-height: 5px
  }
  
  .input-group-with-button {
    position: relative;
    margin-right: 10px;
  }
  
  .input-group-with-button .form-control {
    padding-right: 110px; 
  }
  
  .form .btn-submit-now {
    display: inline-block;
    position: relative;
    background-image: linear-gradient(90deg, #BF2A2D 0%, #BF2A2D 100%);
    -webkit-backface-visibility: hidden;
    z-index: 1;
    white-space: nowrap;
    font-size: 18px;
    font-family: "Mulish";
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #FFF;
    padding: 16px 30px;
    border-radius: 60px;
    height: 55px;
    cursor: pointer;
    border: none;
    margin-bottom: 10px;
  }

  .form .btn-submit-now:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    background-image: linear-gradient(90deg, #2F82C3 0%, #163E5D 100%);
    transition: opacity 0.5s ease-out;
    z-index: 2;
    opacity: 0;
  }
  
  .form .btn-submit-now:hover:after {
    opacity: 1;
  }
  
  .form .btn-submit-now span {
    position: relative;
    z-index: 3;
  }
  
  .form .btn-submit-now span i{
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.4px;
    transition: transform 0.4s ease-in-out;
  }
  
  .form .btn-submit-now:hover span i {
    color: #FFF;
    transform: translateX(4px);
  }
  
  .form .captcha-card {
    width: 280px;
    height: 80px;
    border: 1px solid #F5F5F5;
    background: #ffffff;
    border-radius: 0;
  }
  
  .form .card-body {
    display: flex;
    align-items: center;
  
  } 

  /* new additional css for form */
  
  .form .form-check-input {
    display: none; 
  }
  
  .form .custom-checkbox {
    width: 28px;
    height: 28px;
    background-color: #F5F5F5;
    border: none;
    margin-right: 10px; 
    position: relative;
    cursor: pointer;
  }
  
  .form .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 16px;
    border: solid green;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    display: none;
  }
  
  .form .form-check-input:checked + .custom-checkbox::after {
    display: block;
  }
  
  .form .form-control.custom-bg.no-border::placeholder {
    color: #9198A2;
  }
  
  #custom-text {
    color: #9198A2 !important;
    padding-top: 3.5% !important;
  }
  
  #button-addon2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: #2F82C3;
    color: #FFF;
     font-family: Mulish;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    position: absolute;
    right: 10px;
    top: 10px; 
    bottom: 10px;
    height: calc(100% - 20px); 
    border: none;
    width: 100px; 
  }

  .form .no-margin-bottom {
    margin-bottom: 0 !important;
}

.form .no-margin-top {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
  #custom-text {
      padding-top: 2.5% !important;
  }
}

@media (max-width: 767px) and (min-width: 425px) {
  #custom-text {
      padding-top: 4.5% !important;
  }
}

@media (max-width: 376px) and (min-width: 320px) {
  #custom-text {
      padding-top: 5.5% !important;
  }
}

@media (min-width: 320px) and (max-width: 376px) {
  .form .form-title {
    font-size: 30px;
  }
}