body,
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.breadcrumb {
  display: none;
}
#main:not(.main-homepage) {
  padding-top: 0px;
}

:root {
  --colored-background: #005185;
  --colored-text: #fff;
  --gotham-book: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book",
    Helvetica, Arial, sans-serif;
  --gotham-medium: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium",
    "GothamMedium", Helvetica, Arial, sans-serif;
  --margin: 60px;
  --margin_small: 25px;
}

.fathers-day {
  position: relative;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}
.fathers-day .fathers-day-profiles__player-bios {
  border: 0px solid;
  outline: 0;
}

.fathers-day .fathers-day-profiles__player-bios * {
  border: 0px solid;
  outline: 0;
}

.fathers-day-intro {
  position: relative;
  padding-top: 150px;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

.fathers-day-intro__background {
  display: block;
  width: 1600px;
  position: absolute;
  top: 0;
  left: calc(50% - 800px);
}

.fathers-day-intro__logo {
  width: 294px;
  margin: 40px auto;
  margin-bottom: 0;
}

.fathers-day-intro__logo img {
  width: 100%;
}

.fathers-day-intro__video {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 1230px;
  width: calc(100% - 80px);
  position: relative;
  cursor: pointer;
}

.fathers-day-intro__video::before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(../images/play-video.png);
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  pointer-events: none;
}

.fathers-day-intro__video img {
  max-width: 100%;
  display: block;
}

.fathers-day-intro__title {
  color: var(--colored-background);
  font-family: var(--gotham-medium);
  font-size: 80px;
  line-height: 1em;
  margin: 0;
  padding: 20px;
  display: block;
  text-transform: uppercase;
  text-align: center;
}

.fathers-day-intro__text {
  font-size: 16px;
  font-family: var(--gotham-book);
  margin: 0px auto;
  max-width: 970px;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}
.fathers-day-profiles {
  padding-top: 40px;
}

.fathers-day-profiles__player-item {
  width: 275px;
  box-sizing: border-box;
}

.fathers-day-profiles__name {
  margin: 15px auto;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--colored-background);
  text-align: center;
  font-family: var(--gotham-medium);
}

.fathers-day-profiles__photo {
  margin: 0 auto;
  display: block;
  max-width: 253px;
  cursor: pointer;
  overflow: hidden;
}

.fathers-day-profiles__photo img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  transition: all ease-in-out 0.5s;
  z-index: 1;
}
.fathers-day-profiles__photo:hover img {
  transform: scale(1.1);
}

.fathers-day-profiles__players {
  max-width: 1375px;
  width: 1375px;
  margin-left: -62px;
}

@media (max-width: 1374px) {
  .fathers-day-profiles__players {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1100px) {
  .fathers-day-profiles__players {
    max-width: 825px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1023px) {
  .fathers-day-profiles__players {
    max-width: 690px;
  }
  .fathers-day-profiles__player-item {
    max-width: 230px;
  }
  .fathers-day-profiles__photo {
    max-width: 210px;
  }
  .fathers-day-profiles__name {
    font-size: 18px;
  }
}
@media (max-width: 761px) {
  .fathers-day-intro {
    padding-top: 17vw;
  }
  .fathers-day-intro__title {
    font-size: 40px;
  }
  .fathers-day-intro__background {
    display: block;
    width: 100%;
    left: 0;
  }
  .fathers-day-intro__background img {
    width: 100%;
  }
  .fathers-day-intro__video {
    width: calc(100% - 40px);
  }
  .fathers-day-intro__logo {
    margin: 10px auto;
  }
  .fathers-day-intro__text {
    font-size: 14px;
  }
}
/*------------------------------------------------*/
.fathers-day-profiles__player-bio-wrapper {
  background-color: var(--colored-background);
  color: var(--colored-text);
  padding: 60px;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 1250px) {
  .fathers-day-profiles__player-bio-wrapper {
    margin-left: -175px;
    width: 1600px;
  }
}

.fathers-day-profiles__player-bio-wrapper::before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #fff;
  position: absolute;
  left: calc(50% - 30px);
  top: 0;
}

.fathers-day-profiles__player-bios {
  max-width: 970px;
  margin: 0 auto;
}

.fathers-day-profiles__player-bio-item {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap;*/
}

.fathers-day-profiles__video {
  position: relative;
  overflow: hidden;
}
.fathers-day-profiles__video[data-youtube] {
  cursor: pointer;
}

.fathers-day-profiles__video img {
  display: block;
  max-width: 100%;
  transition: all ease-in-out 0.5s;
  z-index: 1;
}
.fathers-day-profiles__video[data-youtube] img {
  transform: scale(1.1);
}
.fathers-day-profiles__video[data-youtube]::before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(../images/play-video.png);
  position: absolute;
  bottom: 15px;
  left: 15px;
  pointer-events: none;
  z-index: 2;
}

.fathers-day-profiles__content {
  flex: 1;
  padding-left: 130px;
  box-sizing: border-box;
  position: relative;
}

.fathers-day-profiles__player-name {
  font-size: 48px;
  font-family: var(--gotham-medium);
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
}

.fathers-day-profiles__player-biography::before {
  content: "“";
  display: block;
  font-family: "ClarinsRegular", "Clarins";
  font-size: 212px;
  width: 100px;
  position: absolute;
  top: -30px;
  left: -105px;
  z-index: 2;
  height: 100px;
  overflow: hidden;
  text-align: right;
  line-height: 1em;
}

.fathers-day-profiles__player-biography {
  font-size: 16px;
  margin: 0;
  font-family: var(--gotham-book);
  line-height: 1.4em;
  position: relative;
}
.fathers-day-profiles__player-biography-cta {
  margin: 40px auto;
  text-align: left;
  padding-bottom: 40px;
}
.fathers-day-profiles__player-biography-cta span {
  height: 50px;
  padding: 5px 20px;
  line-height: 40px;
  box-sizing: border-box;
  background-color: #000;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--gotham-medium);
  text-decoration: none;
  font-size: 11px;
  display: inline-block;
  cursor: pointer;
}
.fathers-day-challenge-intro {
  padding: 60px 40px;
}

.fathers-day-challenge-intro__title {
  margin: 0;
  font-size: 55px;
  text-transform: uppercase;
  font-family: var(--gotham-medium);
  font-weight: normal;
  color: #005185;
  text-align: center;
  line-height: 1em;
  font-weight: bold;
}
.fathers-day-challenge-intro__text {
  margin: 0px auto;
  max-width: 970px;
  text-align: center;
  font-family: var(--gotham-book);
  font-size: 16px;
  padding: 20px;
}

@media (max-width: 762px) {
  .fathers-day-profiles__player-bio-wrapper::before {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    left: calc(50% - 15px);
  }
  .fathers-day-profiles__player-bio-wrapper {
    padding: 0;
  }
  .fathers-day-profiles__player-bio-item {
    padding-top: 30px;
    flex-direction: column-reverse;
  }
  .fathers-day-profiles__content {
    flex: 0;
    width: 100%;
    padding: 0 60px;
  }
  .fathers-day-profiles__player-name {
    font-size: 24px;
  }

  .fathers-day-profiles__player-biography {
    font-size: 14px;
  }
  .fathers-day-profiles__player-biography::before {
    font-size: 130px;
    top: -10px;
  }
  .fathers-day-profiles__video {
    margin: 40px 60px;
  }
}
@media (max-width: 1023px) {
  .fathers-day-profiles__player-bio-item {
    flex-wrap: wrap;
  }
  .fathers-day-profiles__player-name {
    padding-top: 30px;
  }

  .fathers-day-challenge-intro__title {
    font-size: 40px;
    line-height: 1em;
    padding: 5px 0;
  }
}

/*------------------------------------------------*/
.fathers-day-challenge {
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.fathers-day-challenge__title {
  margin: 0;
  font-size: 22px;
  text-transform: uppercase;
  font-family: var(--gotham-medium);
  font-weight: normal;
  line-height: 1.2em;
}
.fathers-day-challenge__title span {
  margin: 0;
  font-size: 16px;
  color: #000;
  line-height: 1em;
  display: block;
}
.fathers-day-challenge__title strong {
  margin: 0;
  font-size: 55px;
  line-height: 1em;
  display: block;
  font-weight: bold;
}
.fathers-day-challenge[data-challenge="1"] .fathers-day-challenge__title {
  color: #005185;
}
.fathers-day-challenge[data-challenge="2"] .fathers-day-challenge__title {
  color: #005185;
}
.fathers-day-challenge[data-challenge="3"] .fathers-day-challenge__title {
  color: #005185;
}
.fathers-day-challenge__text {
  margin: 0px auto;
  max-width: 970px;
  text-align: center;
  font-family: var(--gotham-book);
  font-size: 16px;
  padding: 20px;
}
.fathers-day-challenge__slider {
  width: 100%;
  padding-top: 20px;
  text-align: center;
}
.fathers-day-challenge__video {
  margin: 10px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fathers-day-challenge__video img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  transition: all ease-in-out 0.5s;
}
.fathers-day-challenge__video::before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url(../images/play-video.png);
  position: absolute;
  bottom: 15px;
  left: 15px;
  pointer-events: none;
  z-index: 2;
}
.fathers-day-challenge__video:hover img {
  transform: scale(1.1);
}
@media (max-width: 762px) {
  .fathers-day-challenge__title strong {
    font-size: 40px;
    line-height: 1em;
    padding: 5px 0;
  }
  .fathers-day-challenge-intro {
    padding: 20px;
  }
  .fathers-day-challenge__text,
  .fathers-day-challenge-intro__text {
    font-size: 14px;
  }
}
/*------------------------------------------------*/

.fathers-day-collection {
  padding-top: 40px;
}

.fathers-day-collection__title {
  color: #005185;
  font-family: "ClarinsRegular", "Clarins";
  font-size: 45px;
  line-height: 1em;
  font-weight: normal;
  text-align: center;
  margin: 0;
}
.fathers-day-collection__text {
  margin: 0px auto;
  max-width: 970px;
  text-align: center;
  font-family: var(--gotham-book);
  font-size: 16px;
  padding: 20px;
}
.fathers-day-collection__slider {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
}

.fathers-day-collection__item {
  max-width: 366px;
  width: 100%;
  text-align: center;
}

.fathers-day-collection__visual {
  margin: 0 auto;
}
.fathers-day-collection__visual img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
.fathers-day-collection__name {
  margin: 20px auto;
  font-family: var(--gotham-book);
  font-size: 16px;
  text-transform: uppercase;
}
.fathers-day-collection__description {
  margin: 0 20px;
  font-family: var(--gotham-book);
  font-size: 16px;
}
.fathers-day-collection__shop-link {
  margin: 40px auto;
  text-align: center;
  padding-bottom: 40px;
}
.fathers-day-collection__shop-link a {
  height: 50px;
  padding: 5px 20px;
  line-height: 40px;
  box-sizing: border-box;
  background-color: #000;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--gotham-medium);
  text-decoration: none;
  font-size: 11px;
  display: inline-block;
}
@media (max-width: 762px) {
  .fathers-day-collection__text,
  .fathers-day-collection__description {
    font-size: 14px;
  }
  .fathers-day-collection__slider {
    padding-top: 0;
  }
  .fathers-day-collection__shop-link {
    margin: 20px auto;
    padding-bottom: 10px;
  }
  .fathers-day-collection__title {
    font-size: 35px;
  }
}
/*------------------------------------------------*/
.fathers-day-discover-more {
  background-color: var(--colored-background);
  color: var(--colored-text);
  padding: 60px 0;
}
@media (min-width: 1250px) {
  .fathers-day-discover-more {
    margin-left: -175px;
    width: 1600px;
  }
}

.fathers-day-discover-more__title {
  color: #fff;
  font-family: "ClarinsRegular", "Clarins";
  font-size: 45px;
  line-height: 1em;
  font-weight: normal;
  text-align: center;
  margin: 0;
}
.fathers-day-discover-more__slider {
  padding-top: 40px;
  max-width: 1250px;
  margin: 0 auto;
}
.fathers-day-discover-more__slider img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.fathers-day-discover-more__slider a {
  color: #fff;
  margin: 20px;
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 22px;
  line-height: 1em;
  text-transform: uppercase;
  font-family: var(--gotham-medium);
}
.fathers-day-discover-more__text {
  margin: 20px 0;
}
@media (max-width: 762px) {
  .fathers-day-discover-more__text {
    font-size: 14px;
  }
  .fathers-day-discover-more {
    padding: 30px 0;
  }
  .fathers-day-discover-more__slider {
    padding-top: 10px;
  }
  .fathers-day-discover-more__title {
    font-size: 35px;
  }
}
/*------------------------------------------------*/

.fathers-day-popin-video {
  position: fixed;
  width: 100vw;
  height: 100vh;

  top: 0;
  left: 0;
  z-index: 100;
}

.fathers-day-popin-video[data-open="0"] {
  pointer-events: none;
  opacity: 0;
}

.fathers-day-popin-video[data-open="1"] {
  display: block;
  opacity: 1;
}

.fathers-day-popin-video__background {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.fathers-day-popin-video__container {
  padding: 2.32vw;
  width: 90vw;
  height: 52.7vw;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 101;
  transform: translateX(-50%) translateY(-50%);
}

.fathers-day-popin-video #video-iframe {
  width: 100%;
  height: 100%;
}

.fathers-day-popin-video__close-btn {
  color: #cbcbcb;
  width: 14px;
  height: 14px;
  font-size: 0px;
  position: absolute;
  right: 4px;
  top: 4px;
  cursor: pointer;
  background-image: url(../images/close.svg);
  background-size: 100% 100%;
}

@media (min-width: 1000px) {
  .fathers-day-popin-video__container {
    padding: 20px;
    width: 920px;
    height: 535px;
  }
}
