* {
   /* font-family: Courier Prime;*/
    color: black;
    font-family: Share Tech Mono;
}


:root {
    --main_gradient: linear-gradient(-45deg, #f7f1e3, #dfe7ea, #cfdfe3, #f7f1e3);
    --light_color: #f5f6fa;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    background: var(--main_gradient);
    color: var(--light_color);
    scroll-behavior: smooth;
}
span {
  color: #3e8e09;
  font-weight: bold;
}

h2 {
  font-size: 27px !important;
}

#area {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none; 
}

#wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 100%;
    height: 100%;
    min-height: calc(100vh - 100px);
}

#page_title {
  margin-top: 140px;
  text-align: center;
  font-size: 30px;
  font-style: auto;
  color: black;
  text-shadow: 2px 2px 4px white;
}

#page_sub_title {
  text-align: center;
  margin-top: 130px;
  font-size: 33px;
  line-height: 25px;
}

#about_section {
  height: 500px;
  border: 1px solid black;
  margin-top: 20px;
}

.description {
  font-size: 19px;
  max-width: 600px;
  min-width: 600px;
}

.page_ul {
  font-size: 19px;
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

.page_ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.page_alert {
  width: auto;
  height: auto;
  background: var(--main_gradient);
  color: black;
  font-size: 18px;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 2px 2px 30px black;
  z-index: 999999999;
}

[id^=item_] {
    border: 0px solid black;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 30px;
    width: 80%;
    margin: 0 auto;
    scroll-margin-top: 80px;
    border-bottom: 1px solid grey;
}

#banner {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 2px 2px 10px black;
    background: var(--main_gradient);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row !important;
    z-index: 999999;
}

#banner a {
    font-size: 19px;
    text-decoration: none;
    margin-right: 30px;
}

#banner a:hover {
  transform: scale(1.1);
    transition: 0.3s;
    color: deeppink;
    cursor: pointer;
}

#hold_menu_items {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
}

#hold_menu_items a {
  font-size: calc(0.9vw + 0.9vh);
  white-space: nowrap;
}

#conceptual_button, #formal_button {
  height: 40px;
  border: none;
  margin: 10px;
  background: var(--light_color);
  cursor: pointer;
  font-size: 18px;
}

#conceptual_button {
  border: 2px solid deeppink;
}

#hold_blog_description {
  font-size: 20px;
  margin-top: 20px;
  line-height: 24px;
  display: block;
}

#footer {
  width: auto;
  height: 100px;
  box-shadow: 2px 2px 10px black;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#x_logo, #medium_logo, #substack_logo {
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
}

#medium_logo {
  width: 47px;
}

#substack_logo {
  width: 55px;
}

.policies {
  text-decoration: none;
  cursor: pointer;
}

.policies:hover {
  transform: scale(1.2);
  transition: 0.3s;
  color: darkblue;
}

.list_icons {
  width: 40px;
  filter: invert(0.8);
}

#logic_app_icon {
  filter: invert(1);
}

.sec_image {
    width: 250px;
    border-radius: 6px;
    margin: 40px;
}

[id^=list_wrapper_] {
  display: grid;
  gap: 20px;
  width: 200px;
  height: auto;
  grid-template-rows: auto auto auto;
  grid-template-columns: auto auto;
}

.list_text {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px solid white;
}

.list_text {
  justify-content: start;
  white-space: nowrap;
}

#hold_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}


#contact_wrapper {
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto;
    width: 60%;
    height: 100%;
    gap: 20px;
  }
  
  [id^=contact_item_] {
      padding: 0px;
      background: transparent;
      border: 0px solid white;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  [id^=contact_item_] > input, textarea {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: none;
    font-size: 19px;
    padding-left: 5px;
    resize: none;
  }

  #contact_message {
    padding: 10px;
  }
  
  textarea {
    height: 150px;
  }

  #logo {
    width: 300px;
    margin-left: 20px;
  }

  #submit_button {
    border-radius: 4px;
    padding: 10px;
    background: green;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    height: 40px;
    line-height: 13px;
    margin-right: 10px;
  }

  #explore_modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 390px;
    height: auto;
    padding: 10px;
    box-shadow: 2px 2px 10px black;
    background: var(--main_gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    z-index: 9999999999;
  }


.explore_modal_text {
  width: 100%;
  font-size: 18px;
  text-decoration: auto;
  margin: 10px;
  cursor: pointer;
  text-align: center;
}

.explore_modal_text:hover {
  color: #9c88ff;
  transform: scale(1.1);
  transition: 0.3s;
}

#close_modal {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  font-size: 18px;
  cursor: pointer;
  font-family: arial;
  color: black;
}

.explore_icons {
  width: 30px;
  border-radius: 6px;
  pointer-events: none;
  margin-right: 10px;
}

.subtitle_icon {
  filter: invert(1);
  width: 30px;
}

.join_now_button {
  height: 40px;
  border: none;
  border-radius: 4px;
  background: green;
  color: white;
  font-size: 18px;
  cursor: pointer;
  outline: 0;
}


/* blocks */


.blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blocks li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.blocks li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.blocks li:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.blocks li:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.blocks li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.blocks li:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.blocks li:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.blocks li:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.blocks li:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.blocks li:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.blocks li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }




/* menu icon */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 10px;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    z-index: 4;
  }
  
  .bar {
    visibility: visible;
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  .menu-icon.open .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-16px, 4px);
  }
  
  .menu-icon.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-icon.open .bar:nth-child(3) {
    transform: rotate(45deg) translate(-17px, -5px);
  }


  .side_panel {
    position: fixed;
    left: 0;
    width: 200px;
    height: auto;
    top: 80px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    color: white;
    border: none;
    box-shadow: 2px 2px 10px black;
    animation: moveRight 0.2s ease-in-out forwards, gradient 4s ease infinite;
    background: var(--main_gradient);
    background-size: 400% 400%;
    z-index: 10;
  }
  
  .side_panel_items {
    width : 100%;
    height : 100%;
    background : transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid grey;
    font-size: 17px;
    text-align: center;
  }
  
  .side_panel_items:hover {
    background: #218c74;
    cursor: pointer;
  }




/****** fancy button ******/

[id^=listen_now_button_] {
  height: auto;
  color: black;
  margin-left: -140px;
}

[id^=listen_now_button_] > span {
  color: #227093;
}

  
.fancy_a {
  position: relative;
  background: #444;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px;
  transition: 0.5s;
}

.fancy_demo {
  position: relative;
  background: green;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px;
  transition: 0.5s;
}

.fancy_a:hover {
  letter-spacing: 0.25rem;
  background: var(--color);
  color: var(--color);
  box-shadow: 0 0 35px var(--color);
}

.fancy_demo:hover {
  letter-spacing: 0.25rem;
  background: var(--color);
  color: var(--color);
  box-shadow: 0 0 35px var(--color);
}

.fancy_a::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: #27282c;
}

.fancy_demo::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: #ffda79;
}

.fancy_a span {
  position: relative;
  z-index: 1;
}

.fancy_demo span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.fancy_a i {
  position: absolute;
  inset: 0;
  display: block;
}

.fancy_demo i {
  position: absolute;
  inset: 0;
  display: block;
}

.fancy_a i::before {
  content: '';
  position: absolute;
  top: -3.5px;
  left: 80%;
  width: 10px;
  height: 5px;
  border: 2px solid var(--color);
  background: #27282c;
  transform: translateX(-50%);
  transition: 0.5s;
}

.fancy_demo i::before {
  content: '';
  position: absolute;
  top: -3.5px;
  left: 80%;
  width: 10px;
  height: 5px;
  border: 2px solid var(--color);
  background: green;
  transform: translateX(-50%);
  transition: 0.5s;
}

.fancy_a:hover i::before {
  left: 20%;
  width: 20px;
}

.fancy_demo:hover i::before {
  left: 20%;
  width: 20px;
}

.fancy_a i::after {
  content: '';
  position: absolute;
  bottom: -3.5px;
  left: 20%;
  width: 10px;
  height: 5px;
  border: 2px solid var(--color);
  background: #27282c;
  transform: translateX(-50%);
  transition: 0.5s;
}

.fancy_demo i::after {
  content: '';
  position: absolute;
  bottom: -3.5px;
  left: 20%;
  width: 10px;
  height: 5px;
  border: 2px solid var(--color);
  background: green;
  transform: translateX(-50%);
  transition: 0.5s;
}

.fancy_a:hover i::after {
  left: 80%;
  width: 20px;
}

.fancy_demo:hover i::after {
  left: 80%;
  width: 20px;
}

.testimonial_avatar {
  width: 60px;
  border-radius: 8px;
  margin-right: 10px;
}

.no_bullet_ul {
  list-style-type: none; 
}

.no_bullet_ul li {
  display: flex;
  align-items: center; 
}

/* TOOLTIP */

[tooltip] {
    position: relative;
  }
  
  [tooltip]::before,
  [tooltip]::after {
    text-transform: none;
    font-size: 14px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
    border: 1px solid #f7f1e3;
    box-shadow: 2px 2px 10px black;
  }
  [tooltip]::before {
    content: '';
    border: 5px solid transparent;
    z-index: 9999;
  }
  [tooltip]::after {
    content: attr(tooltip);  
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
    min-width: 3em;
    max-width: 500px; /* controls text truncation with ellipses */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1ch 1.5ch;
    border-radius: 4px;
    box-shadow: 2px 2px 10px black;
    background: #333;
    color: #fff;
    z-index: 9999;
  }
  
  [tooltip]:hover::before,
  [tooltip]:hover::after {
    display: block;
  }
  
  [tooltip='']::before,
  [tooltip='']::after {
    display: none !important;
  }
  
  [tooltip]:not([flow])::before,
  [tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
  }
  [tooltip]:not([flow])::after,
  [tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
  }
  [tooltip]:not([flow])::before,
  [tooltip]:not([flow])::after,
  [tooltip][flow^="up"]::before,
  [tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
  }
  
  [tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #333;
  }
  [tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
  }
  [tooltip][flow^="down"]::before,
  [tooltip][flow^="down"]::after {
    left: 50%;
    transform: translate(-50%, .5em);
  }
  
  [tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #333;
    left: calc(0em - 5px);
    transform: translate(-.5em, -50%);
  }
  [tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -50%);
  }
  
  [tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
  }
  [tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
  }

  .smokey_text {
    font-size: 60px;
    font-family: Share Tech Mono;
    color: white;
    background-image: url(../img/lines.gif);
    background-size: cover;
    color: transparent;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    margin: 10px 0;
    display: inline-block;
    text-transform: uppercase;
    /*transform: rotate(353deg);*/
    line-height: normal;
    
}
  
  @keyframes tooltips-vert {
    to {
      opacity: .9;
      transform: translate(-50%, 0);
    }
  }
  
  @keyframes tooltips-horz {
    to {
      opacity: .9;
      transform: translate(0, -50%);
    }
  }
  
  [tooltip]:not([flow]):hover::before,
  [tooltip]:not([flow]):hover::after,
  [tooltip][flow^="up"]:hover::before,
  [tooltip][flow^="up"]:hover::after,
  [tooltip][flow^="down"]:hover::before,
  [tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
  }
  
  [tooltip][flow^="left"]:hover::before,
  [tooltip][flow^="left"]:hover::after,
  [tooltip][flow^="right"]:hover::before,
  [tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
  }
  
  .tooltip-adjust {
    position: relative;
  }
  
  .tooltip-adjust:hover::before,
  .tooltip-adjust:hover::after {
    margin-left: 30px;
  }

   #home_icon {
    cursor: pointer;
   }

  

  /* scroll back to top button */

  #scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 10px 15px;
    font-size: 22px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

#scrollToTop:hover {
    background-color: #555;
}

.check_out {
  cursor: pointer;
}

.member_icons {
  -webkit-filter: invert(1) drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: invert(1) drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

.rubberband {
  animation: rubberband 1s alternate ease-out;
}

.rubberband_infinite {
  animation: rubberband 1s infinite alternate ease-out;
}

.expand_infinite {
  animation: expand 1s infinite alternate ease-out;
}

/*************** keyframes ****************************/

@keyframes rubberband {
  0% {
    transform: scaleX(1);
  }
  40% {
    transform: scaleX(1.12) scaleY(0.75);
  }
  55% {
    transform: scaleX(0.85) scaleY(1);
  }
  65% {
    transform: scaleX(1.09) scaleY(0.85);
  }
  75% {
    transform: scaleX(0.9) scaleY(1);
  }
  90% {
    transform: scaleX(1.05) scaleY(0.95);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}

@keyframes expand {
  0% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1.2);
  }
  55% {
    transform: scale(1.3);
  }
  65% {
    transform: scale(1.4);
  }
  75% {
    transform: scale(1.3);
  }
  90% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}


@keyframes animate {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 0; }
    100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}

@media only screen and (max-width: 1150px) {
     #logo {
        width: 200px;
     }

    [id^=item_] {
        flex-direction: column;
    }

    [id^=list_item_] {
      width: 250px;
      white-space: wrap;
    }

    .sec_image {
      width: 300px !important;
    }

    .smokey_text {
      font-size: 45px;
      margin-top: 0px;
    }

    .description {
      max-width: auto;
      min-width: auto;
    }

    #contact_wrapper {
      width: 90%;
    }

    .sec_image:nth-child(even) {
        margin-top: 30px;
    }
    [id^=slide_in_box_]:nth-child(odd) {
        margin-top: 30px;
    }

    [id^=listen_now_button_] {
        order: 2;
        margin-left: 0px;
        margin-top: 30px;
    }

    [id^=slide_in_content_] {
      order: 2
    }

    [id^=sec_image_] {
      order: 1
    }

    #banner a {
        display: none;
    }

    .menu-icon {
        display: flex;
    }

    #footer {
      padding: 20px;
      height: auto;
      flex-direction: column;
    }

    .policies {
      margin: 10px;
    }

    #explore_modal {
      width: 80%;
    }

    #close_modal {
      font-size: 26px;
    }

    #page_sub_title {
      padding: 20px;
      font-size: 34px;
      line-height: 40px;
    }

    #home_icon {
      margin-right: 70px !important;
    }
    #scheduleButton {
      top: 120px !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
    }
}



/* page specific styling */

.builders_ai_subtitle {
  line-height: 36px;
  margin-top: 0px;
}

.hyper_alert {
  color: blueviolet;
  font-size: 22px;
}

/* calendly */

#scheduleButton {
  position: absolute;
  top: 100px;
  right: 50px;
  width: 150px;
  border: none;
  border-radius: 6px;
  box-shadow: 2px 2px 10px black;;
  color: white;
  background: #227093;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
}


