.release-hero {
  margin-top: 160px;
  padding: 60px 0;
  position: relative;
}

.release-hero h1 {
  font-size: 67px;
  line-height: 1.3;
  margin: 0;
}

.release-hero h6 {
  font-size: 35px;
  margin: 0;
}

.release-hero.theme-sky {
  background-color: var(--sky);
}

.release-hero.theme-cobalt {
  background-color: var(--primary);
}

.release-hero.theme-denim {
  background-color: var(--secondary);
}

.release-hero.theme-canary {
  background-color: var(--canary);
}

.release-hero.theme-carrot {
  background-color: var(--carrot);
}

.release-hero.theme-grey {
  background-color: var(--cold-cloud);
}

.release-hero-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  margin: 20px 0;
  justify-content: center;
  width: 100%;
  z-index: 1;
}

.release-hero-row .col-6 {
    flex: 0 0 auto;
    padding: 0 20px;
    width: 50%;
}

.release-hero .container {
    align-items: center;
    display: flex;
    margin: auto;
    justify-content: center;
    min-height: 60vh;
    max-width: 1440px;
    padding: 0 30px;
    position: relative;
}

.release-hero .image-container {
    align-content: center;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.release-hero .image-container img {
    height: 100%;
    position: relative;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}

.release-hero .btn {
  -webkit-transition: all .25s ease-in-out 0s;
  -o-transition: all .25s ease-in-out 0s;
  border-radius: 50px;
  box-shadow: 0 0 0 grba(0, 0, 0, 0);
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Neurial Grotesk Bold',Arial,Verdana,Serif !important;
  padding: 15px 30px;
  position: relative;
  text-decoration: none;
}

.release-hero .btn-secondary {
  -webkit-transition: all .25s ease-in-out 0s;
  -o-transition: all .25s ease-in-out 0s;
  border: solid 1px rgba(0,0,0, 0.3);
  background-color: rgba(0,0,0,0);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  color: var(--secondary);
}

.release-hero .btn-primary {
  -webkit-transition: all .25s ease-in-out 0s;
  -o-transition: all .25s ease-in-out 0s;
  background-color: var(--primary);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
  color: white;
}

.release-hero .btn-primary.btn-carrot {
  background-color: var(--carrot);
  color: var(--secondary);
}

.release-hero .btn-primary.btn-carrot:hover {
  color: white !important;
}

.release-hero .btn-secondary:hover {
  transform: translateY(-3px);
  background-color: rgba(255,255,255,1);
  border: solid 1px rgba(0,0,0, 0.1);
  color: var(--primary) !important;
  box-shadow: 0 5px 10px rgb(46 135 250 / 30%);
}

.release-hero-cta-row {
  margin: 30px 0;
  min-height: 60px;
}

.absolute-image-container {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.absolute-image-container img {
  max-width: 68vw;
}

.align-bottom {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-top {
  align-items: flex-start;
}

.justify-right {
  justify-content: flex-end;
}

.justify-left {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}


@media screen and (max-width: 820px) {
  .absolute-image-container img {
    max-width: 90vw;
  }
}


@media screen and (max-width: 768px) {
  .release-hero-row {
      flex-direction: column;
  }
  
  .release-hero-row .col-6{
      width: calc(100% - 40px);
  }
}

@media screen and (max-width: 640px) {
  .release-hero .container {
    padding: 0;
  }
  
  .release-hero h1 {
    font-size: 45px;
   }
  
  .release-hero h6 {
    font-size: 20px;
  }
  
  .absolute-image-container img {
    max-width: 130vw;
  }
}

