html {
  scroll-behavior: smooth;
}

.is--desktop {
  display: none;
}

@media (min-width: 769px) {
  .is--mobile {
    display: none;
  }

  .is--desktop {
    display: block;
  }
}


/* Header Tissot */

.tissot__header {
  background-color: #000;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  z-index: 2;
}

.tissot__header--white {
  background-color: #fff;
  color: #000;
}

.tissot__header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tissot__header_nav, .tissot__header_menu_right {
  display: none;
}

.tissot__header_nav_mobile, .tissot__header_menu_right_mobile {
  width: calc(50% - 100px);
}

.tissot__header_nav_mobile {
  padding-left: 25px;
}

.tissot__header_logo {
  text-align: center;
  width: 200px;
}

.tissot__header_menu_right_mobile {
  text-align: end;
  padding-right: 25px;
}

.tissot__header_bottom {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #000;
}

.tissot__header--white .tissot__header_bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.tissot__header_title {
  display: none;
}

.tissot__header_nav {
  display: none;
}

.tissot__header_btn {
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 2px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  padding: 12px 30px;
}

.tissot__header_btn:first-of-type {
  color: red;
  background: white;
  margin-right: 10px;
}

.tissot__header_btn:last-of-type {
  color: #fff;
  background: linear-gradient(to right, #93291e 0%, #e32119 51%, #e32119 100%);
}

.tissot__page {
  background-color: #000;
  z-index: 1;
}

.is-header-stacked .tissot__page {
  padding-top: 152px;
}

.is-header-stacked .tissot__header {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100%;
  transition: transform 1.3s cubic-bezier(0.43, 0.195, 0.02, 1);
}

.is-header-stacked.is-header-reveal .tissot__header {
  transform: translateY(70px) translateZ(0);
}

@media (min-width: 769px) {
  .tissot__header_bottom {
    justify-content: space-between;
  }

  .tissot__header_title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4375;
    color: #fff;
    letter-spacing: 0.125em;
    margin: 0;
    display: block;
  }

  .tissot__header--white .tissot__header_title {
    color: #000;
  }
}

@media (min-width: 1280px) {
  .tissot__header_nav_mobile, .tissot__header_menu_right_mobile {
    display: none;
  }

  .tissot__header_nav, .tissot__header_menu_right {
    display: block;
    width: calc(50% - 100px);
  }

  .tissot__header_menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding-left: 10px;
    align-items: center;
    justify-content: flex-start;
  }

  .tissot__header_menu_item {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.66;
    margin: 0;
    font-family: Heebo, Roboto, Arial, Helvetica, sans-serif;
    padding: 15px;
    display: block;
    font-size: .8125em;
  }

  .tissot__header_menu_right {
    text-align: end;
    padding-right: 25px;
  }
}

/* Footer Tissot */

.tissot__footer {
  text-align: center;
  padding: 40px 0 34px;
  background-color: #000;
}


/* Common */

.seastar__section {
  min-height: calc(100vh - 80px);
  width: 100%;
  overflow: hidden;
  font-family: Heebo, Roboto, Arial, Helvetica, sans-serif;
}

.seastar__title {
  font-weight: bold;
  font-size: 1.56em;
  line-height: 1.175em;
  text-transform: uppercase;
}
/*.seastar__title { font-weight: bold; font-size: 8.125vw; line-height: 1.176; letter-spacing: 0.234375vw;
    text-transform: uppercase; } */

@media (min-width: 769px) {
  .seastar__title {
    font-size: 2.5em;
  }
    /*.seastar__title { font-size: 3.88888vw; letter-spacing: 0.06944vw }*/;
}

@media (min-width: 1440px) {
    /*.seastar__title { font-size: 56px; letter-spacing: 1px }*/;
}

/* Scrolldown */

.seastar__scrolldown {
  z-index: 100;
  position: fixed;
  bottom: 40px;
  left: calc(100% - 30px);
  transform: rotate(-45deg);
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-animation: seastar_scrolldown_anim 2s infinite;
  animation: seastar_scrolldown_anim 2s infinite;
}

.tissot__page--pro .seastar__scrolldown {
  border-color: #fff;
}

@media (min-width: 769px) {
  .seastar__scrolldown {
    left: calc(100% - 55px);
  }
}

/* Etape 0 : Intro */

.seastar__section_intro {
  position: relative;
  height: calc(100vh - 152px);
  min-height: initial;
}

.seastar__intro_seastar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: #000;
}

.seastar__intro_seastar_pro {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: calc(50% + 3px);
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.seastar__intro_content {
  position: absolute;
  left: auto;
  right: 0;
  width: 100vw;
  height: calc(100vw * 1160 / 640);
  top: calc(((100vh - 152px) - (100vw * 1160 / 640))/2);
  background-color: #000;
}

.seastar__section_intro--horizontal-cut .seastar__intro_content {
  width: calc((100vh - 152px) * 640 / 1160);
  height: 100%;
  right: calc(50vw - ((100vh - 152px) * 640 / 1160)/2);
  top: 0;
}

.seastar__intro_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.seastar__intro_title {
  z-index: 2;
  transform: translate(-50%, 0);
  left: 50%;
  top: calc(((100vw * 1160 / 640) - (100vh - 152px))/2 + 20px);
  position: absolute;
  margin: 0;
  opacity: 0;
  text-align: center;
}

.seastar__section_intro--horizontal-cut .seastar__intro_title {
  top: 20px;
}

.seastar__intro_seastar .seastar__intro_title {
  color: #213c54;
}

.seastar__intro_seastar_pro .seastar__intro_title {
  color: #fff;
}

.seastar__intro_link {
  width: 100%;
  height: 100%;
  display: inline-block;
  cursor: pointer;
}

.seastar__intro_link:hover .seastar__intro_img {
  transition: all 0.3s;
  opacity: 0.9;
}

.seastar__intro_cursor {
  position: absolute;
  top: 0;
  left: calc(50% - 3px);
  width: 100px;
  height: 100%;
  z-index: 3;
  cursor: pointer;
  transform: translate(-50%, 0);
}

.seastar__intro_cursor:hover {
  cursor: url('/assets/img/cursor.png'), pointer;
}

.seastar__intro_cursor:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 49px;
  background-color: #fff;
}

.seastar__intro_cursor:after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, 0);
  border-width: 20px 20px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #fff;
}

.tissot__page--iOSSafari .seastar__intro_cursor:after {
  bottom: 150px;
}

@media (min-width: 769px) {
  .seastar__intro_content {
    height: calc(100vw * 1002 / 1440);
    right: 0;
    width: 100vw;
    top: calc(((100vh - 152px) - (100vw * 1002 / 1440))/2);
  }

  .seastar__section_intro--horizontal-cut .seastar__intro_content {
    width: calc((100vh - 152px) * 1440 / 1002);
    right: calc(50vw - ((100vh - 152px) * 1440 / 1002)/2);
    height: 100%;
    top: 0;
  }

  .seastar__intro_title {
    top: calc(((100vw * 1002 / 1440) - (100vh - 152px))/2 + 20px);
  }

  .seastar__section_intro--horizontal-cut .seastar__intro_title {
    top: 20px;
  }
}

/* Etape 1 : Hero */

.seastar__section_hero {
  margin-top: -80px;
}

.seastar__hero {
 /*width: 400vw;*/
  height: calc(100vh - 80px);
  background-color: #000;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}

.seastar__hero_media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.seastar__hero_video {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
}

.seastar__hero_media--large .seastar__hero_video {
  height: 100%;
  width: auto;
  max-width: none;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seastar__hero_panel {
  position: absolute;
  height: 100%;
  width: 100vw;
  min-width: 100vw;
  overflow: hidden;
}

.seastar__hero_panel1, .seastar__hero_panel2 {
  background-color: #fff;
}

.seastar__hero_panel1:after {
  position: absolute;
  top: 0;
  height: 100%;
  content: '';
  width: 10px;
  right: -5px;
  background-color: white;
  z-index: 50;
}

.seastar__hero_panel--mask-initialized {
  background-color: transparent;
  overflow: visible;
}

.seastar__hero_panel_bg {
  background-color: #fff;
}

.seastar__hero_panel_bg--top {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
}

.seastar__hero_panel_bg--right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
}

.seastar__hero_panel_bg--bottom {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

.seastar__hero_panel_bg--left {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
}

.seastar__hero_panel1 .seastar__hero_panel_bg--top,
.seastar__hero_panel1 .seastar__hero_panel_bg--bottom {
  height: calc(50% - 4vw);
}

.seastar__hero_panel1 .seastar__hero_panel_bg--left,
.seastar__hero_panel1 .seastar__hero_panel_bg--right {
  width: 5.5vw;
}

.seastar__hero_panel2 .seastar__hero_panel_bg--top,
.seastar__hero_panel2 .seastar__hero_panel_bg--bottom {
  height: calc(50% - 40vw);
}

.seastar__hero_panel2 .seastar__hero_panel_bg--left,
.seastar__hero_panel2 .seastar__hero_panel_bg--right {
  width: 18vw;
}

.seastar__hero_mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: content-box;
  display: inline-block;
}

.seastar__hero_mask1 {
  width: 92vw;
}

.seastar__hero_mask2 {
  width: 65vw;
}

@-webkit-keyframes seastar_scrolldown_anim {
  0% {
    transform: rotate(-45deg);
  }

  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }

  40% {
    transform: rotate(-45deg);
  }
}

@keyframes seastar_scrolldown_anim {
  0% {
    transform: rotate(-45deg);
  }

  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }

  40% {
    transform: rotate(-45deg);
  }
}

@media (min-width: 360px) and (max-width: 360px) {
  .seastar__hero_panel1 .seastar__hero_panel_bg--left, 
    .seastar__hero_panel1 .seastar__hero_panel_bg--right {
    width: 4.5vw;
  }
}

@media (min-width: 375px) and (max-width: 375px) {
  .seastar__hero_panel1 .seastar__hero_panel_bg--left, 
    .seastar__hero_panel1 .seastar__hero_panel_bg--right {
    width: 4.5vw;
  }
}

@media (min-width: 411px) and (max-width: 411px) {
  .seastar__hero_panel1 .seastar__hero_panel_bg--left, 
    .seastar__hero_panel1 .seastar__hero_panel_bg--right {
    width: 5vw;
  }
}

@media (min-width: 768px) and (max-width: 768px) {
  .seastar__hero_panel1 .seastar__hero_panel_bg--left, 
    .seastar__hero_panel1 .seastar__hero_panel_bg--right {
    width: 4.5vw;
  }
}

@media (min-width: 769px) {
  .seastar__hero_mask1 {
    width: 82vw;
  }

  .seastar__hero_mask2 {
    width: auto;
    height: 75vh;
  }

  .seastar__hero_panel1 .seastar__hero_panel_bg--top,
    .seastar__hero_panel1 .seastar__hero_panel_bg--bottom {
    height: calc(50% - 4vw);
  }

  .seastar__hero_panel1 .seastar__hero_panel_bg--left,
    .seastar__hero_panel1 .seastar__hero_panel_bg--right {
    width: 9.5vw;
  }

  .seastar__hero_panel2 .seastar__hero_panel_bg--top,
    .seastar__hero_panel2 .seastar__hero_panel_bg--bottom {
    height: calc(15vh - 40px);
  }

  .seastar__hero_panel2 .seastar__hero_panel_bg--left,
    .seastar__hero_panel2 .seastar__hero_panel_bg--right {
    width: calc(50% - 19vh - 40px);
  }

  .seastar__scrolldown {
    border-color: #000;
  }
}

/* Etape 2 : Presentation */

.seastar__presentation {
  height: calc(100vh - 80px);
  position: relative;
}

.seastar__presentation_panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.seastar__presentation_panel_bg {
  z-index: 1;
}

.seastar__presentation_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.seastar__presentation_bg1 {
  z-index: 3;
}

.seastar__presentation_bg2 {
  z-index: 2;
}

.seastar__presentation_bg3 {
  z-index: 1;
}

.seastar__presentation_panel_mask {
  z-index: 2;
}

.seastar__presentation_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #000;
}

.seastar__presentation_panel_bubble {
  z-index: 3;
}

.seastar__presentation_panel_bubble_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 168vw;
  height: 152vw;
  transform: translate(-43%, -45%);
 /* transform: translate(-72.24vw, -68.4vw);*/;
}

.seastar__presentation_bubble_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 0.8;
}

.seastar__presentation_bubble_img_part1 {
  z-index: 1;
}

.seastar__presentation_bubble_img_part2 {
  z-index: 2;
}

.seastar__presentation_bubble_img_part3 {
  z-index: 3;
}

.seastar__presentation_bubble_img_part4 {
  z-index: 4;
}

.seastar__presentation_bubble_img_main {
  z-index: 5;
}

.seastar__presentation_panel_title {
  z-index: 4;
}

.seastar__presentation_title {
  color: #fff;
  text-align: center;
  padding-top: 8.90625vw;
}

.seastar__presentation_title span {
  display: inline-block;
  width: 100%;
}

.seastar__presentation_panel_product {
  z-index: 5;
}

.seastar__presentation_product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -40%);
    /*transform: translate(-38.740625vw, -48.5454vw);*/
  height: auto;
  width: 84.21875vw;
}

.seastar__presentation_product1 {
  z-index: 5;
  opacity: 0;
}

.seastar__presentation_product2 {
  z-index: 4;
  opacity: 0;
}

.seastar__presentation_product3 {
  z-index: 3;
  opacity: 0;
}

.seastar__presentation_product4 {
  z-index: 2;
  opacity: 0;
}

.seastar__presentation_product5 {
  z-index: 1;
  opacity: 0;
}

@media (min-width: 769px) {
  .seastar__presentation {
    background-color: #fff;
  }

  .seastar__presentation_panel {
    left: 0;
    width: 100vw;
    top: 0;
    height: 100.5%;
    overflow: hidden;
  }

  .seastar__presentation_panel_bubble_inner {
    width: 64vw;
    height: 57.888vw;
    transform: translate(-50%, -55%);
 /*transform: translate(-32vw, -31.838vw);*/;
  }

  .seastar__presentation_bubble_img {
    opacity: 1;
  }

  .seastar__presentation_title {
    display: flex;
    justify-content: space-between;
    padding-top: 7.912844vh;
  }

  .seastar__presentation_title span {
    display: inline-block;
    width: 38.5%;
  }

  .seastar__presentation_title span:first-of-type {
    text-align: right;
  }

  .seastar__presentation_title span:last-of-type {
    text-align: left;
  }

  .seastar__presentation_product {
    width: 39.79166vw;
    max-width: 540px;
 /*transform: translate(-47%, -50%);*/
    transform: translate(-18.702vw, -28.7214vw);
  }
}

@media (min-width: 1357px) {
  .seastar__presentation_product {
    width: 540px;
    transform: translate(-253.8px, -389.5px);
  }
}

/* Etape 3 : Description */

.seastar__description {
  position: relative;
  background-color: #fff;
}

.seastar__description_inner {
  position: relative;
  height: calc(100vh - 80px);
}

.seastar__description_header {
  z-index: 2;
  position: relative;
}

.seastar__description_content {
  background-color: #fff;
 /*padding: 27px;*/
  color: #213c54;
  padding: 30px 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seastar__description_title {
  text-align: center;
}
/*.seastar__description_txt { text-align: center; font-size: 16px; line-height: 1.375 }*/
.seastar__description_txt {
  text-align: center;
  font-size: 1.125em;
  line-height: 1.66em;
}

.seastar__description_media {
  width: 100%;
  position: relative;
  height: 146.71875vw;
  background: #000;
}

.seastar__description_media1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
/*.seastar__description_media1_mask1 { z-index: 2; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; }
.seastar__description_media1_mask1_img { position: absolute; top: 50%; left: 50%; height: 400%; width: 400%;
    background-image: radial-gradient(circle 28vw at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%) } */
.seastar__description_media1_mask2 {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.seastar__description_media1_mask2_img {
  position: absolute;
  top: 63.8%;
  left: 50.2%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}

.seastar__description_media2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.seastar__description_media_img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.seastar__description_media_img_main {
  z-index: 2;
}

.seastar__description_media_img_masked {
  z-index: 1;
}

.seastar__description_footer {
  position: relative;
  background-color: #fff;
}

.seastar__description_footer_content--positioned {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media (min-width: 769px) {
  .seastar__description_content {
 /*padding: 65px 65px 90px;*/
    padding: 50px 60px;
  }

  .seastar__description_title {
    margin-bottom: 19px;
  }
    /*.seastar__description_txt { font-size: 21px; max-width: 70vw; margin: 0 auto; letter-spacing: 0.5px; }*/
  .seastar__description_txt {
 /*font-size: 21px;*/
    max-width: 70vw;
    margin: 0 auto;
    letter-spacing: 0.5px;
  }

  .seastar__description_media {
    height: 45.694444vw;
  }
    /*.seastar__description_media1_mask1 { background-image: radial-gradient(circle 20vw at top 50% left 53%, transparent 0%, rgba(0, 0, 0, 0.8) 100%) }
    .seastar__description_media1_mask2_img { top: 50%; left: 50%; transform: translate(-50%, -37%); }*/;
}


/* Etape 4 : Pro */

.seastar__pro_media {
  height: 160vw;
  position: relative;
  overflow: hidden;
}

.seastar__pro_media_container {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.seastar__pro_content {
  background-color: #1f2833;
  color: #fff;
  padding: 6vw 15vw;
  position: relative;
}

.seastar__pro_content--big {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seastar__pro_title {
  font-weight: bold;
  margin-bottom: 3vw;
}

.seastar__pro_title span {
  display: inline-block;
  width: 100%;
}

.seastar__pro_title span:first-of-type {
  text-align: left;
}

.seastar__pro_title span:last-of-type {
  text-align: right;
}
/*.seastar__pro_description { text-align: center; font-size: 16px; line-height: 1.375  }*/
.seastar__pro_description {
  text-align: center;
  font-size: 1.125em;
  line-height: 1.66em;
}

@media (min-width: 769px) {
  .seastar__pro {
    height: 100%;
    width: 100%;
 /*padding: 20px;*/
    box-sizing: border-box;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    height: calc(100vh - 80px);
    background-color: #1f2833;
  }

  .seastar__pro--width-padding {
    padding: 20px;
  }

  .seastar__pro_media {
    width: 50%;
    height: 100%;
  }

  .seastar__pro_media_container {
    overflow: hidden;
  }

  .seastar__pro_content {
    width: 50%;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .seastar__pro_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    transform-origin: center;
    height: 100%;
    width: auto;
    max-width: none;
  }

  .seastar__pro_title {
    padding: 0 40px;
  }

  .seastar__pro_description {
 /*font-size: 21px;*/
    letter-spacing: 0.5px;
  }
}


/* Etape 4bis : Pro vidéo */

.seastar__section_pro_media {
  position: relative;
  min-height: calc(100vh - 80px);
  width: 100%;
}

.seastar__pro_media_video {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
}

.seastar__pro_media_video--large {
  height: 100%;
  width: auto;
  max-width: none;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* Etape 5 : Collection */

.seastar__collections {
  background: #fff;
  overflow: hidden;
}

.seastar__collection {
  display: flex;
  align-items: center;
  padding: 0 3.125vw;
  margin-bottom: 6.5625vw;
  justify-content: space-between;
  flex-direction: column;
}

.seastar__collection:last-of-type {
  margin-bottom: 5.3125vw;
}

.seastar__collection_title {
  padding: 34px 10px 23px;
  text-align: center;
  color: #213c54;
    /*font-size: 7.5vw; font-weight: bold; line-height: 1.1*/;
}

.seastar__collection_media {
  width: 50%;
  height: 100%;
  font-size: 0;
  margin-bottom: 10px;
}

.seastar__collection_img {
  height: 100%;
}

.seastar__collection_content {
  width: 50%;
  color: #213c54;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.seastar__collection_cta {
  padding: 0 0 30px;
  text-align: center;
}

.seastar__collection_cta_link {
  transition: opacity 0.1s;
  color: #fff;
  padding: 14px 30px;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(to right, #93291e 0%, #e32119 51%, #e32119 100%);
  line-height: 1.33;
  border-radius: 2px;
  margin-right: 12px;
}

.seastar__collection_cta_link:hover {
  opacity: 0.9;
  color: #fff;
}

.seastar__collection_quartz .seastar__collection_img {
  position: relative;
  left: 4%;
}

.seastar__collection_pro .seastar__collection_img {
  position: relative;
  left: 3%;
}

.seastar__collection_automatic .seastar__collection_img {
  position: relative;
  left: 6%;
}

@media (min-width: 414px) {
  .seastar__collection_content {
    font-size: 3.75vw;
  }
    /*.seastar__collection_cta_link { font-size: 3.75vw; }*/;
}

@media (min-width: 769px) {
  .seastar__collection {
    padding: 0;
    margin-bottom: 0;
    flex-direction: row;
  }

  .seastar__collection:last-of-type {
    margin-bottom: 0;
  }

  .seastar__collection_container {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 70px;
  }

  .seastar__collection {
    flex-direction: column-reverse;
    width: 33%;
    justify-content: center;
  }

  .seastar__collection_title {
 /*font-size: 4.79166vw; letter-spacing: 0.06944vw;*/
    padding: 2.36111vw 20px;
  }

  .seastar__collection_media {
    width: 100%;
    height: auto;
    max-width: 450px;
    margin-bottom: 0;
  }

  .seastar__collection_img {
    margin: 0 auto;
  }

  .seastar__collection_content {
    font-size: 2.08333vw;
    line-height: 1.1;
    width: 100%;
    padding: 0 2.5vw 2.36111vw;
  }
    /*.seastar__collection_cta_link { font-size: 2.08333vw; padding: 0.97222vw 2.70833vw 0.69444vw }*/

  .seastar__collection_quartz .seastar__collection_img {
    left: 0;
  }

  .seastar__collection_pro .seastar__collection_img {
    left: 0;
  }

  .seastar__collection_automatic .seastar__collection_img {
    left: -4.5%;
  }
}

@media (min-width: 1440px) {
  .seastar__collection_title {
 /*font-size: 69px; letter-spacing: 1px;*/
    padding: 34px 20px;
  }

  .seastar__collection_content {
    font-size: 30px;
 /*font-size: 40px; padding-bottom: 34px;*/;
  }
    /*.seastar__collection_cta_link { font-size: 30px; padding: 10px 30px 8px; }*/;
}