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

:root {
  --primary: #002840;
  --primary-hover: #00141e;
  --secondary: #2e8bdd;
  --secondary-hover: #0e4269;
  --tertiary: #FFCC64;
  --tertiary-hover: #d1a03e;
  --primary-font-color: #243036;
  --secondary-font-color: #6a7781;
  --light-shadow: #d0d9e4;
  --light-block: #f1f5f8;
}

body {
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5 {
  color: var(--primary);
  font-weight: 400;
}

h1 { font-size: 3.4rem; }
h4, h5 { color: var(--secondary); }
h5 { color: var(--tertiary-hover); }

p, span { font-size: 1.1rem; }

p {
  color: var(--primary-font-color);
  margin: 20px 0;
  line-height: 28px;
}

.emphasis { font-size: 1.2rem; }

th { color: var(--primary); }

td {
  font-size: 1.1rem;
  color: var(--primary-font-color);
}

a { color: var(--secondary); }

.margin-top-alot { margin-top: 120px; }

.color-block { background: var(--light-block); }

.box-shadow { box-shadow: 0 0 3px 0 var(--light-shadow); }

/* Buttons */
.btn {
  padding: 10px 12px;
  border: 2px solid transparent;
  border-radius: 0;
  transition: 200ms ease-out;
}

.btn-primary {
  border: 2px solid var(--secondary);
  background: var(--secondary);
  color: white;
  background-image: linear-gradient(to left, var(--secondary) 50%, var(--secondary-hover) 50%);
  background-position: right center;
  background-size: 202% 100%;
  background-repeat: no-repeat;
}

.btn-primary:hover {
  border: 2px solid var(--secondary-hover);
  background-position: left;
  color: white;
}

.btn-primary:disabled {
  background: var(--secondary);
  color: white;
  border: 2px solid transparent;
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  background-image: linear-gradient(to left, white 50%, var(--secondary-hover) 50%);
  background-position: right center;
  background-size: 202% 100%;
  background-repeat: no-repeat;
}

.btn-outline-primary:hover {
  border: 2px solid var(--primary);
  background-position: left;
  color: white;
}

/* Navbar */
.navbar {
  background: #fff;
  transition: 200ms;
}

.navbar .btn { margin-top: -3px; }

#logo { height: 3.3rem; }

.navbar-toggler { border: 1px solid transparent; }

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid rgb(188, 188, 188);
}

.nav-link.active {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--primary);
}

/* Footer */
footer img { height: 6rem; }

/* Hero */
#optibot-column { position: relative; }

/* Info section */
.info-img {
  width: 100%;
}

/* Steps */
.steps-section { overflow-x: hidden; }

#start {
  background-color: var(--secondary);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: white;
  top: -90px;
  right: -60px;
}

.node {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--secondary);
  top: calc(50% - 0.6rem);
}

.node-end { right: calc(-0.6rem - 1px); }
.node-start { left: calc(-0.6rem - 1px); }

.pseudo-element::after {
  content: '';
  display: block;
  margin-bottom: 3rem;
}

.border-style-dashed { border-right-style: dashed !important; }

.accordion-button:not(.collapsed){
  background: transparent;
}

@media (max-width: 767px) {
  .border-2:not(#round-start) {
    border-width: 0 !important;
  }
}

/* Connect */
#connect { height: 400px; }

@keyframes connect-animation {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0%); }
  100% { transform: translateY(-100%); }
}

.connect-logo { position: absolute; }

.connect-logo img {
  height: 24px;
  animation: connect-animation 4000ms ease-in-out infinite;
}

/* Project cards */
.image-top { height: 200px; }

/* Contact */
.form-error { font-size: 1rem; }
