/* Fonts */
:root {
  --default-font: "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";
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* 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;
}
p{
  font-size: 15px!important;
  line-height: 25px!important;
}
/*--------------------------------------------------------------
# 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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #000000;
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}




/*--------------------------------------------------------------
# Share Your Ideas Image
--------------------------------------------------------------*/
.call-to-action {
  --background-color: #000000;
  --default-color: #ffffff;
  --contrast-color: #ffffff;
  height:290px;
  position: relative;
  overflow: hidden;
  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%;
  }
}

@media (max-width: 376px) {
  .call-to-action h3 {
    font-size: 42px!important;
  }
}

@media (max-width: 320px) {
  .call-to-action h3 {
    font-size: 36px!important;
  }

  .call-to-action p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Overview
--------------------------------------------------------------*/
.overview {
  padding: 40px 0 !important;
}

.overview .overview-title {
  color: var(--Blue, #2F82C3);
  text-align: center;
  font-family: "Mulish", Helvetica;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 50px;
}

.overview .overview-text {
  color: #383838;
  text-align: center;
  font-family: "Mulish", Helvetica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.overview .horizontal-line {
  color: #ccc4c4;
}
@media (max-width: 768px) {
  .overview .overview-title {
    text-align: left !important;
   
  }
  .overview .overview-text {
    text-align: left !important;
  }
}
@media (max-width: 425px) {
  .overview {
    padding-bottom: 0px !important;
  }

}

@media (max-width: 376px) {
  .overview .overview-title {
    font-size: 26px!important;
  }
  
  .overview .overview-text {
    font-size: 16px!important;
  }

  .overview .horizontal-line {
    margin-top: 1rem!important;
  }
}

@media (max-width: 320px) {
  .overview .overview-title {
    font-size: 24px!important;
  }
  
  .overview .overview-text {
    font-size: 16px!important;
  }
}
/*--------------------------------------------------------------
# Innovative Ideas Form
--------------------------------------------------------------*/
.innovative-ideas{
  padding:  0px !important;
}

.innovative-ideas .form-title {
    font-family: "Mulish", Helvetica;
    font-weight: 800;
    color: #2F82C3;
    font-size: 40px;
    line-height: 50px;
    justify-content: center;
    align-items: center;
}

.innovative-ideas .form-subtitle {
  font-family: "Mulish", Helvetica;
  color: #383838;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  justify-content: center;
  align-items: center;
}

.innovative-ideas .small-text {
  color: #383838;
  font-size: 16px;
  font-style: normal;
  font-family: "Mulish", Helvetica;
  font-weight: 700;
  line-height: normal;
}

.innovative-ideas .error {
  color: #BF2A2D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.innovative-ideas .custom-bg {
  background-color: #F5F5F5;
  height: 60px;
  padding: 1.375rem 1.5rem !important;
  font-weight: 400;
  line-height: 24px;
  font-family: "Mulish";
  font-size: 18px;
  font-style: normal;
  border-radius: 0px;
  border: none;
  
}
.form-control.custom-bg.no-border::placeholder {
  color: #9198A2;
  
}

#custom-text {
  color: #9198A2 !important;
  padding-top: 3.5% !important;
}

.file-format {
  color: #9198A2;
  font-family: "Mulish", Helvetica;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  line-height: 5px
}

.pitch-format {
  color: #9198A2;
  font-family: "Mulish", Helvetica;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  line-height: 5px
}

.innovative-ideas .form-check {
  display: flex;
  align-items: center; 
}

.innovative-ideas .form-check-input {
  display: none; 
}

.innovative-ideas .custom-checkbox {
  width: 28px;
  height: 28px;
  background-color: #F5F5F5;
  border: none;
  margin-right: 10px; 
  position: relative;
  cursor: pointer;
}

.innovative-ideas .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;
}

.innovative-ideas .form-check-input:checked + .custom-checkbox::after {
  display: block;
}

.innovative-ideas .form-check-label {
  color: #383838;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.innovative-ideas .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;
}

.innovative-ideas .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;
}

.innovative-ideas .btn-submit-now:hover:after {
  opacity: 1;
}

.innovative-ideas .btn-submit-now span {
  position: relative;
  z-index: 3;
}

.innovative-ideas .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;
}

.innovative-ideas .btn-submit-now:hover span i {
  color: #FFF;
  transform: translateX(4px);
}

.innovative-ideas .captcha-card {
  width: 280px;
  height: 80px;
  border: 1px solid #F5F5F5;
  background: #ffffff;
  border-radius: 0px;
}

.innovative-ideas .card-body {
  display: flex;
  align-items: center;
}


/* .RED-link-2 {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
} */

/* .view-business {
  white-space: nowrap;
  position: relative;
  font-family: "Mulish";
  font-weight: 700;
  font-size: 16px;
  color: white;
  background: #BF2A2D;
  border-radius: 60px;
  padding: 16px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--background-color) 1s ease-in-out;
} */

/* .view-business:hover{
  background: var(--Blue-Gredient, linear-gradient(90deg, #2F82C3 0%, #163E5D 100%));
} */

/* .view-business:hover .text-wrapper-12 {
  transform: translateX(4px); */
  /* Moves the element to the right by 4px on hover */
/* } */

/* .text-wrapper-12 {
  display: inline-block;
  position: relative;
  width: fit-content;
  margin-left: 4px;
  font-family: "Font Awesome 6 Free-Solid", Helvetica;
  font-weight: 400;
  color: white;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: normal;
  white-space: nowrap;
  transition: transform 0.4s ease-in-out;
  /* Adds transition effect */
/* } */

/* .text-wrapper-12 .fas {
  color: white;
  font-size: 12px;
} */ 


.input-group-with-button {
  position: relative;
  margin-right: 10px;
}

.input-group-with-button .form-control {
  padding-right: 110px; 
}

#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; 
}



@media (max-width: 768px) {
  .innovative-ideas .form-title{
    text-align: left !important;
  }
  .innovative-ideas .form-subtitle{
    text-align: left !important;
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 425px) {
  .innovative-ideas .form-title{
    font-size: 29px;
    line-height: 40px;
  }
  .innovative-ideas .form-subtitle {
  margin-bottom: 0rem !important;
  }

}

@media (max-width: 376px) {
  .innovative-ideas .form-title{
    font-size: 26px!important;
  }
}

@media (max-width: 320px) {
  .innovative-ideas .form-title{
    font-size: 21px!important;
  }
}

@media (max-width: 992px) {
  .innovative-ideas .btn-submit-now {
    height: auto ;
  }
}

.custom-bg-2 {
  height: 125px !important;
  padding: .375rem 1.5rem;
  /* background-color: #F5F5F5 !important; */
  font-weight: 400;
  line-height: 24px;
  font-family: "Mulish";
  font-size: 18px;
  font-style: normal;
  border-radius: 0px;
  border: none;
  }

  @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;
    }
  }


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

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

.svg-icon {
  opacity: 1;
  font-size: 16px;
  margin-bottom: 35px;
  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;
  }
}