@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,400,500,600,700,800|Nunito:300,400,600,700,800");

@font-face { font-family: Poppins Regular; src: url(fonts/Poppins/Poppins-Regular.ttf); }
@font-face { font-family: Poppins Regular Italic; src: url(fonts/Poppins/Poppins-Italic.ttf); }
@font-face { font-family: Poppins SemiBold; src: url(fonts/Poppins/Poppins-SemiBold.ttf); }
@font-face { font-family: Poppins Bold; src: url(fonts/Poppins/Poppins-Bold.ttf); }

/* DSI COLORS
Cyan #0ec1ee
Yellow #ffcf01
Blue #007bc1
Navy #003c77
*/






#new-code body {
}
#new-code a {
  text-decoration: none;
  color: #231f20;
  cursor: pointer;
}
#new-code button {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
#new-code h1 {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 20px;
}
#new-code h2 {
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
#new-code h3, h5 {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.1px;
}
#new-code p {
  font-size: 14px;
  line-height: 18px;
  color: #231f20;
}


/* Container */
#new-code .container {
  width: auto;
}
#new-code .light {
  color: white;
}


/* Section */
#new-code section {
  padding: 2rem;
}
#new-code hr {
  margin: auto;
  margin-block-start: 2rem;
  margin-block-end: 2rem;
  width: 10%;
  border: solid 1px #0ec1ee;
}


/* Half Section */
#new-code .half-section {
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#new-code .half {
  width: 100%;
  display: flex;
  flex-direction: column;
}


#new-code #cover {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 9999;
  display: grid;
  place-items: center;
}
#new-code #cover svg {
  filter: grayscale(100%) opacity(10%);
  width: 4rem;
  height: auto;
}




/* Header */
#new-code .header2 video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#new-code .header2 img {
  height: 100px;
  width: auto;
  margin-bottom: 20px;
}
#new-code .header2 .cta {
  background-color: #003c77;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: .2s ease;
  transition: .2s ease;
}
#new-code .header2 .cta:hover {
  background-color: #0ec1ee;
}
#new-code .header2 #carousel1 .carousel-item {
  min-height: 65vh;
  max-height: 70vh;
}
/*#new-code .header2 #carousel0 .carousel-item {
  min-height: 30vh;
  max-height: 40vh;
}*/
#new-code .header2 .header-fg {
  display: flex;
  position: relative;
  flex-direction: column;
  z-index: 1;
  text-align: center;
  width: 70%;
  margin: auto;
  padding: 4rem;
  justify-content: center;
  align-items: center;
}
#new-code .header2 .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#new-code .header2 .bg-overlay {
  background: linear-gradient(to bottom right, rgba(0, 194, 243, 0.7), rgba(0, 123, 193, 0.7));
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
}
#new-code .header2 p {
  color: white;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.1px;
}
#new-code .header2 span {
  font-weight: 700;
  color: #ffcf01;
}
#new-code .header2 a {
  color: white;
  font-weight: 700;
  transition: 0.3s ease;
  text-decoration: underline 1px rgba(255, 207, 1, 0);
  text-underline-offset: 2px;

  &:hover {
    text-decoration-color: rgba(255, 207, 1, 1);
  }
}
#new-code .header2 .header-fg br {
  display: none;
}

.star-support-span {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 992px) { 
  .star-support-span {
    flex-direction: row;
  }
}




@media (min-width: 768px) {
  #new-code .half {
    flex-direction: row;
  }
}
@media (min-width: 992px) { 
  #new-code h1 {
    font-size: 56px;
    line-height: 56px;
  }
  #new-code h2 {
    font-size: 44px;
    line-height: 44px;
  }
  #new-code h3 {
    font-size: 24px;
    line-height: 32px;
  }
  #new-code .container {
    flex-wrap: nowrap;
    padding: 1rem 4rem;
  }
  #new-code .half-section {
    flex-direction: row;
  }
  #new-code .half {
    width: 50%;
    flex-direction: column;
  }
  #new-code .header2 img {
    height: 160px;
  }
  #new-code .header2 #carousel1 .carousel-item {
    min-height: 70vh;
  }
  #new-code .header2 #carousel0 .carousel-item {
/*    min-height: 30vh;*/
  }
  #new-code section {
    padding: 3rem 8rem;
  }
  #new-code .header2 .header-fg br {
    display: block;
  }
}






















/* Contact Map */
#contact-map {
  display: block;
  width: 100%;
  padding: 1rem 0 0 0;
/*  min-height: 30vh;
  max-height: 35vh;*/
}
#contact-map path {
  stroke: white;
  fill: #0ec1ee;
  transition: fill .3s ease;
}
#contact-map path:hover {
  fill: #007bc1;
  cursor: pointer;
}
#map h6 {
  margin-bottom: .25rem;
}
#map a {
  color: #007bc1;
  transition: .3s ease;
}
#map a:hover {
  color: #0ec1ee;
  transform: translateX(.5rem);
}
#map .half h6, #map .half p {
  font-size: 85%;
  margin-bottom: 0;
}
#contact-map .active-state {
  fill: #003c77 !important;
}
.agent-r [data-id].active-state, .agent-c [data-id].active-state {
  visibility: visible;
  opacity: 1;
  max-height: 1000px;
  margin-bottom: 1rem;
  position: relative;
  transition: .3s ease;
}
.agent-r, .agent-c {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  min-height: 16rem;
  width: 100%;
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.1);
}
.agent-r::after, .agent-c::after {
  content: "";
}
.agent-r div, .agent-c div {
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.agent-r div:first-child {
  background-color: #003c77;
  color: #ffcf01;
  padding: .75rem 1rem;
}
.agent-c div:first-child {
  background-color: #ffcf01;
  color: #003c77;
  padding: .75rem 1rem;
}
.agent-r [data-id], .agent-c [data-id] {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  position: absolute;
  top: 0;
}
.agent-r {
  margin: 0 0 1rem 0;
}


@media (min-width: 768px) {
  .agent-r {
    margin: 0 1rem 0 0;
  }
}
@media (min-width: 992px) { 
  #contact-map {
/*    min-height: 50vh;
    max-height: 65vh;*/
    padding: 0 0 0 1rem;
  }
  #map .half:first-child {
    width: 33%;
  }
  #map .half:last-child {
    width: 57%;
  }
  .agent-r {
    margin: 0 0 1rem 0;
  }
}