
@font-face {
  font-family: 'Ogilvy Sans';
  src: url('../fonts/OgilvySans-Bold.html');
  src: url('../fonts/OgilvySans-Boldd41d.html?#iefix') format('embedded-opentype'),
      url('../fonts/OgilvySans-Bold.woff2') format('woff2'),
      url('../fonts/OgilvySans-Bold-2.html') format('woff'),
      url('../fonts/OgilvySans-Bold-3.html') format('truetype'),
      url('../fonts/OgilvySans-Bold-4.html#OgilvySans-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ogilvy Sans';
  src: url('../fonts/OgilvySans-Light.html');
  src: url('../fonts/OgilvySans-Lightd41d.html?#iefix') format('embedded-opentype'),
      url('../fonts/OgilvySans-Light.woff2') format('woff2'),
      url('../fonts/OgilvySans-Light-2.html') format('woff'),
      url('../fonts/OgilvySans-Light-3.html') format('truetype'),
      url('../fonts/OgilvySans-Light-4.html#OgilvySans-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ogilvy Sans';
  src: url('../fonts/OgilvySans-Regular.html');
  src: url('../fonts/OgilvySans-Regulard41d.html?#iefix') format('embedded-opentype'),
      url('../fonts/OgilvySans-Regular.woff2') format('woff2'),
      url('../fonts/OgilvySans-Regular-2.html') format('woff'),
      url('../fonts/OgilvySans-Regular-3.html') format('truetype'),
      url('../fonts/OgilvySans-Regular-4.html#OgilvySans-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ogilvy Serif';
  src: url('../fonts/OgilvySerif-Light.woff2') format('woff2'),
      url('../fonts/OgilvySerif-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ogilvy Serif';
  src: url('../fonts/OgilvySerif-BoldItalic.woff2') format('woff2'),
      url('../fonts/OgilvySerif-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Ogilvy Serif';
  src: url('../fonts/OgilvySerif-Regular.woff2') format('woff2'),
      url('../fonts/OgilvySerif-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Ogilvy Serif';
  src: url('../fonts/OgilvySerif-RegularItalic.woff2') format('woff2'),
      url('../fonts/OgilvySerif-RegularItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Ogilvy Serif';
  src: url('../fonts/OgilvySerif-LightItalic.woff2') format('woff2'),
      url('../fonts/OgilvySerif-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Ogilvy Serif';
  src: url('../fonts/OgilvySerif-Bold.woff2') format('woff2'),
      url('../fonts/OgilvySerif-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --red: #17ba6d;
}
html {
  scroll-behavior: smooth;
}
*{
  padding: 0;
  margin: 0;
  border:0;
  box-sizing: border-box;
}
.text-center{
  text-align: center;
}
.blockInteraction {pointer-events: none;}
.marginbot50 {margin-bottom: 50px !important;}
button, input, textarea {
  font-family: 'Ogilvy Sans';
}
body {
  font-family: 'Ogilvy Sans';
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
main{
  flex-grow: 1;
}
a{
  text-decoration: none;
}
.navContainer.mobile .menuControl {display: block;}
.logoGral {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  top: 28px;
}
.logoGral path {
  fill: var(--red);
}
.menuControl {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 9999;
  background: white;
  margin: 10px 0 0 20px;
  display: none;
}
nav a {
  transition: .3s linear;
}
.menuControl:before, .menuControl:after {
  content: '';
  width: 80%;
  position: absolute;
  height: 2px;
  background: black;
  left: 10%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: .3s ease-in-out;
}
.menuControl:before {
  top: 16px;
}
.menuControl:after {
  top: 23px;
}
.menuControl.active:before {
  top: 20px;
  -webkit-transform: rotate(137deg);
  transform: rotate(137deg);
}
.menuControl.active:after {
  top: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navContainer {
  width: 100%;
  transition: .3s ease;
}
.navContainer.homer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.navContainer.homer a, .navContainer.homer a:hover {
  color: transparent !important;
  pointer-events: none;
}
.navContainer.glow {
  background: white;
  /* box-shadow: 0px 10px 20px 15px white; */
}
.logoOgilvy.glow{
  opacity: 1 !important;
}
.navContainer.glow a {
  color: black !important;
  pointer-events: initial;
}
.navContainer.glow a:hover {
  pointer-events: initial;
}
.navContainer.glow .language {
  background: black;
  color: white;
}
.navContainer.glow path {
  fill: var(--red);
}
nav a:hover, nav a.active {
  color: var(--red) !important;
}
.navContainer.glow nav a:hover, .navContainer.glow nav a.active {
  color: var(--red) !important;
}
nav {
  padding: 0 35px;
  width: 100%;
  max-width: 1440px;
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  transition: .3s ease;
}
.logoControl {display: none;}
.logoControl svg {
  width: 100%;
  height: auto;
}
.logoControl path{ fill: var(--red);}
.navContainer.mobile .logoGral {display: none;}
.navContainer.mobile .logoControl {
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 110px;
  z-index: 999999999;
}
.navContainer.mobile {
  width: 100%;
  background: white;
  height: 65px;
  /* box-shadow: 0px 10px 20px 15px white; */
}
.navContainer.mobile nav {
  position: absolute;
  top: -200%;
  flex-flow: column;
  width: 100%;
  background: white;
  align-items: flex-start;
  justify-content: flex-start;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.navContainer.mobile .menuControl.active + nav {
  top: 0;
  padding: 100px 0;
  height: 100vh;
}
.navContainer.mobile nav a {
  display: block;
  margin-bottom: 20px;
  font-size: 30px;
}
.navContainer.mobile nav a.language {
  background: black;
  color: white;
  display: inline-block;
}
nav a{
  text-decoration: none;
  font-size: 18px;
  margin: 0 17px;
  color: black;
}
.logoOgilvyMenu {
  max-width: 180px;
}
.logoOgilvyMenu svg {
  width: 100%;
  height: auto;
}
.logoOgilvyMenu path{
  fill: white;
}
nav a.language {
  font-size: 12px;
  padding: 3px 12px;
  background: transparent;
  border-radius: 15px;
  color: black;
  background: white;
}
nav a.contact{
  padding:5px 30px;
  border-radius:100px;
  border:solid 2px #FFFFFF;
}
.videoHero {
  position: relative;
}
.videoHero iframe {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: block;
}
.videoHero .protectionScreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.videoHero .sounder {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  position: absolute;
  bottom: 40px;
  left: 80px;
}
.videoHero .scroller {
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  cursor: pointer;
}
.introHome {
  background: var(--red);
  padding: 80px 10px;
  position: relative;
}
.introHome .introInfo {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
}
.introHome .introInfo p {
  font-size: 40px;
  line-height: 50px;
  color: white;
  font-family: 'Ogilvy Serif';
}
.introHome .nameProject {
  color: white;
  opacity: 0;
  transition: .3s linear;
  min-height: 32px;
}
.linkProject:hover .nameProject {
  opacity: 1;
}
.logoOgilvy {
  width: 100%;
  max-width: 600px;
  position: absolute;
  /* top: 1300px;
  left: 50%;
  transform: translateX(-50%); */
  z-index: 9;
  transition: .3s linear;
  top: 25%;
  z-index: 9;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.logoOgilvy.fx {
  position: fixed;
  top: 10px;
}
.logoOgilvy img {
  width: 100%;
  height: auto
}
.hero {
  width: 100%;
  background-color: var(--red);
  height: auto;
  padding: 150px 0;
}
.hero .control-hero {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .control-hero .image-holder {
  width: 60%;
}
.hero .control-hero .image-holder img{
  width: 100%;
}
.hero .control-hero .text {
  color: white;
  width: 40%;
  padding: 25px;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.4;
}
.hero .downer {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.og-container{
    width: 80%;
    margin: 100px auto 0;
    overflow: hidden;
  }
  .filter-button-group {
      text-align: center;
      padding: 20px 0px;
      width: 40%;
      margin: 50px auto;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
  }
  @media only screen and (max-width: 768px) {
    .filter-button-group {
      padding: 30px 0 20px;
    }
  }
  .filter-button-group input{
    visibility: hidden;
    width: 0;
    height: 0;
  }
   .filter-button-group label{
    background: none;
    font-size: 32px;
    text-align: center;
    color: #000;
    cursor: pointer;
    font-family: 'Ogilvy Sans';
  }
  .filter-button-group label:hover, .filter-button-group label.active{
    color: var(--red);
    transition: 0.5s;
  }
  @media (max-width: 768px) {
    .filter-button-group label:hover{
      color: black;
    }
    .filter-button-group label.active{
      color: var(--red);
    }
  }
  .filter-button-group label:hover span, .filter-button-group label.active span{
    color: initial;
  }
  .anTop {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: .3s ease .3s;
    -moz-transition: .3s ease .3s;
    -ms-transition: .3s ease .3s;
    -o-transition: .3s ease .3s;
    transition: .3s ease .3s;
  }
  .fadeTop {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .fadex {
    opacity: 0;
    -webkit-transition: 2.5s ease;
    -moz-transition: 2.5s ease;
    -ms-transition: 2.5s ease;
    -o-transition: 2.5s ease;
    transition: 2.5s ease;
  }
  .fadex-reaction {
      opacity: 1;
  }
  .anBot {
      opacity: 0;
      -webkit-transform: translateY(-100px);
      -moz-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
      -o-transform: translateY(-100px);
      transform: translateY(-100px);
      -webkit-transition: 1s ease;
      -moz-transition: 1s ease;
      -ms-transition: 1s ease;
      -o-transition: 1s ease;
      transition: 1s ease;
  }
  .fadeBot {
      opacity: 1;
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
  }
  .anRight {
      opacity: 0;
      -webkit-transform: translateX(-50px);
      -moz-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
      -o-transform: translateX(-50px);
      transform: translateX(-50px);
      -webkit-transition: 1s ease;
      -moz-transition: 1s ease;
      -ms-transition: 1s ease;
      -o-transition: 1s ease;
      transition: 1s ease;
  }
  .fadeRight {
      opacity: 1;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
  }
  .anLeft {
      opacity: 0;
      -webkit-transform: translateX(50px);
      -moz-transform: translateX(50px);
      -ms-transform: translateX(50px);
      -o-transform: translateX(50px);
      transform: translateX(50px);
      -webkit-transition: 1s ease;
      -moz-transition: 1s ease;
      -ms-transition: 1s ease;
      -o-transition: 1s ease;
      transition: 1s ease;
  }
  .fadeLeft {
      opacity: 1;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
  }
  .inputControl .inputGroup:last-child  label span {display: none;}

      .grid-container {
        margin: 0;
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        max-width: 1300px;
    }
    @media only screen and (max-width: 768px) {
      .grid-container {
        grid-template-columns: repeat(1, 1fr);
      }
    }
    .grid-sizer, .grid-item {
      width: 100%;
      box-sizing: border-box;
      box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
  .grid-item img {
    width: 100%;
    display: block;
  }

.projectsGrid .nameProject{
    background: var(--red);
    font-family: 'Ogilvy Sans';
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}
.projectsGrid .nameProject:hover{
  opacity: 1;
  transition: 0.4s;
}
.ourWork{
  -webkit-animation: 1s ease 0s normal forwards 1 fadein;
  animation: 1s ease 0s normal forwards 1 fadein;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ourWork a{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  color: #000;
  position: absolute;
  left: 0;
  transition: 1s;
}
.ourWork a:hover{
  color: var(--red);
  transition: 1s;
}
.ourWork a::before{
  content: '';
  background: url(../img/back.svg);
  width: 34px;
  height: 34px;
  display: inline-block;
  background-size: contain;
  scale: 1;
  transition: 1s;
}
.ourWork a:hover::before{
  background: url(../img/backHover.svg);
  scale: 1.1;
  transition: 1s;
}
@media only screen and (orientation: portrait) {
  .ourWork {
    flex-flow: column;
    margin-top: 0;
  }
  .ourWork .return {
    position: relative;
    align-self: flex-start;
  }
  .ourWork .projectBrandName {
    margin-top: 20px !important;
    display: flex;
    flex-flow: column;
  }
  .ourWork .d-none {display: none;}
}
.projectBrandName {
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-size: 21px;
}
footer {
  width: 90%;
  margin: 100px auto 50px;
  width: 100%;
  max-width: 1440px;
  padding: 0 52px;
}
@media (max-width: 1024px) {
  footer {
    padding: 0 20px;
  }
}
  footer a{
    font-family: 'Ogilvy Sans';
    font-size: 16px;
    text-align: left;
    color: #000;
  }
  .animated {
    margin-top: 10px;
    width: 100%;
    height: 1px;
    animation: expand 1s ease 1s normal forwards 1;
    background: #000000;
    opacity: 0;
  }

@keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}
  @keyframes expand {
   0%{
    width: 0;
    background: var(--red);
    opacity: 0;
   }
   100%{
    width: 100%;
    background: #000000;
    opacity: 1;
   }
  }
 .overview {
    font-size: 16px;
    text-align: left;
    color: #000;
  }
  .work{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .work h2{
    margin:20px 0;
  }
  .details{
    margin: 20px 0 0 130px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .work .details {
    font-weight: bold;
  }
  .work .details div {
    padding-right: 15px;
  }
  .work .details .data {
    font-weight: initial;
  }
  .data{
    display: block;
    margin-top: 20px;
  }
  .videoItem{
    margin-bottom: 20px;
  }
  .relatedContainer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
  .relatedContainer {
    flex-flow: column;
  }
}
.relatedItem {
  width: 32%;
  height: auto;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .relatedItem {
    width: 100%;
    margin-bottom: 50px;
  }
}
.relatedItem * {
  transition: .3s ease;
}
.relatedItem h3 {
  margin-top: 8px;
  color: black;
  position: absolute;
}
.relatedItem:hover img {
  opacity: .8;
}
.relatedItem:hover h3{
  color: var(--red);
}
  .related img{
    width: 100%;
    height: auto;
    display: block;
  }
  .awards{
    position: absolute;
    bottom: 10px;
    width: 90%;
    margin: 0 auto;
    left: 0;
    display: flex;
    right: 0;
  }
  .effie {
    background: url(../img/effie.png);
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
}
  .grid-item a{
    position: relative;
    height: 100%;
    display: block;
  }
  #projectsSection {
      width: 90%;
      margin:0 auto;
      position: relative;
      max-width: 1300px;
  }
  #lgbt {
    width: 100%;
    max-width: 220px;
    position: absolute;
    right: 0;
    display: block;
    top: 20px;
  }
  @media only screen and (max-width: 960px) {
      #lgbt {
          position:relative;
          margin: 80px auto 0;
      }
  }
  .filter-control {
    width: 100%;
    margin: 0 auto 25px;
    display: none;
    max-width: 1300px;
  }
  .filter-control .filters, .filter-control .shower-title {
    padding: 0 15px;
  }
  .filter-control .filters {
    margin-top: 20px;
  }
  .filter-control .filters .filter-label {
    width: auto;
    padding: 10px 60px 10px 20px;
    border: 2px solid black;
    color: var(--red);
    display: inline-block;
    border-radius: 35px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    margin-left: 20px;
  }
  .filter-control .filters .filter-label:first-child {
    margin-left: initial;
  }
  .filter-control .filters .filter-label:after {
    content: 'X';
    position: absolute;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 8px;
    right: 20px;
    width: 20px;
    height: 20px;
  }
  .project-list {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }
  .aboutUs .control-hero .text{
    max-width: 1220px;
    width: 100%;
    font-family: 'Ogilvy Serif';
    font-size: 60px;
    line-height: 70px;
  }
  .hero.aboutUs {
    padding: 100px 0;
  }
  .ourTeam{
    font-family: 'Ogilvy Serif';
    font-size: 40px;
    font-weight: normal;
    color: var(--red);
  }
  .team .animated{
    background: var(--red)!important;
  }
  .teamMembers{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
    overflow: hidden;
  }
  .teamMemberInfo{
    overflow: hidden;
    position: relative;
  }
  .teamMembers img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
  .info {
    opacity: 0;
    transition: 0.5s;
    width: 100%;
    background: var(--red);
    height: 100%;
    color: #FFFFFF;
    position: absolute;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
}
.info:hover{
  opacity: 1;
  transition: 0.5s;
}
  .memberName{
    font-size: 23px;
    font-family: 'Ogilvy Serif';
    font-weight: 300;
  }
  .memberPosition{
    font-family: 'Ogilvy Serif';
    font-size: 23px;
    font-weight: 300;
    font-stretch: normal;
    font-style: italic;
    margin-top: 80px;
  }
  .more{
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 300;
    color: #FFFFFF;
    position: absolute;
  }
  .fullInfo{
    position: absolute;
    width: 80%;
    grid-template-columns: 1fr 4fr;
    z-index: 1;
    gap: 20px;
    background: #FFFFFF;
    height: 350px;
    display: grid;
  }
  .fullInfoTxt {
    color: #FFF;
    background: var(--red);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-gap: 20px;
    align-content: center;
    justify-content: center;
    align-items: start;
}
.arrow:before, .dataContact a:before {
  content: "→";
  display: inline-block;
  width: 20px;
  color: #FFF;
  position: relative;
  height: 20px;
}
.recentPress{
  color:#FFFFFF;
}
.recentPress p{
  margin: 20px 0;
}
.contact{
  margin: 20px 0;
}
.dataContact a{
  color: #FFFFFF;
  display: block;
}
.close{
  content:"X";
  font-size: 20px;
  color:#FFF;
  position: absolute;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
}
#main{
  width: 80%;
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
}
.fullBox{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  height: 350px;
}
.boxInfo {
  grid-template-columns: 1fr 1fr 1fr;
  top: 50%;
  right: 0;
  width: 75%;
  transform: translateY(-50%);
  gap:20px;
  background: var(--red);
  height: 350px;
  display: grid;
  position:absolute;
  visibility: hidden;
}
.boxInfo.visible{
  visibility: visible;
}
.item{
  cursor: pointer;
}
  @media only screen and (max-width: 600px) {
    nav {
      flex-flow: column;
      height: auto;
      padding: 0 20px;
    }
    .ogilvy-logo {
      margin: 30px auto;
    }
    .og-navigation {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      margin: 0 auto 30px;
    }
    a.contact {
      margin-left: initial;
    }
    .hero {
      padding: 40px 0;
    }
    .hero .control-hero {
      flex-wrap: wrap;
    }
    .hero .control-hero .image-holder, .hero .control-hero .text {
      width: 100%;
    }
    .hero .control-hero .text {
      font-size: 20px;
      text-align: center;
      line-height: 30px;
    }
    .hero .downer {
      position: relative;
      bottom: initial;
    }
    .grid-sizer, .grid-item {
      width: 100%;
      padding:10px;
  }
  .filter-button-group {
    width: 85%;
  }
  .filter-button-group label {
    font-size: 22px;
    display: flex;
  }
  .work {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .details {
    margin: 20px 0 0;
  }
  
  .relatedContainer {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ogilvyLogo{
    max-width: 100px;
  }
.brand{
  display: block;
}
.d-none{
  display: none;
}
.effie {
  width: 20px;
  height: 20px;
}
/*INTERNA*/
.ourWork {
  margin-top: 30px;
  display: block;
  margin-bottom: 30px !important;
}
.ourWork .return {
  position: relative;
}
.ourWork .projectBrandName {
  text-align: left;
  display: block;
  margin-top: 30px;
}
.filter-control .filters {
  margin-top: 0;
}
.filter-control .filters .filter-label {
  margin: 20px 20px 0 0;
}
  }

.team-members {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
  margin-top: 10px;
}
.team-members * {
  box-sizing: border-box;
}
.team-members .member {
  width: 100%;
  max-width: 19%;
  flex-shrink: 0;
  margin-top: 10px;
  transition: .3s ease;
  cursor: pointer;
}
.team-members .member .member-control {
  position: relative;
  transition: left .3s ease-in-out;
}
.poser0 .member-control{
  left: 0;
  transform: translateX(0);
  transition: .3s ease-in-out;
}
.poser20 .member-control{
  left: 20%;
  transform: translateX(-20%);
}
.poser40 .member-control{
  left: 40%;
  transform: translateX(-40%);
}
.poser60 .member-control{
  left: 60%;
  transform: translateX(-60%);
}
.poser80 .member-control{
  left: 80%;
  transform: translateX(-80%);
}
.team-members .member .member-control .image-holder {}
.team-members .member .member-control .image-holder img {
  width: 100%;
  transition: .3s ease;
}
.team-members .member .member-control .member-hov {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  color: white;
  padding: 15px;
  opacity: 0;
  transition: .3s ease-in-out;
}
.team-members .member:hover .member-hov{
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .team-members .member:hover .member-hov{
    opacity: 0;
  }
}
@media only screen and (orientation: portrait) {
  .team-members .member:hover .member-hov{
    opacity: 0;
  }
}
.team-members .member .member-control .member-hov .ogx-name {
  font-size: 1.5vw;
  font-family: 'Ogilvy Serif';
}
.team-members .member .member-control .member-hov .ogx-position {
  font-size: 1.5vw;
  margin-top: 100px;
  font-family: 'Ogilvy Serif';
  font-style: italic;
}

.member .member-info {
  left: 100vw;
  top: 0;
  position: absolute;
  padding: 20px;
  background: var(--red);
  color: white;
  display: flex;
  justify-content: space-between;
}
.member .member-info > div {
  width: 100%;
  max-width: 15%;
}
.member .member-info > div.cont {
  max-width: 45%;
}
.member .member-info > div.contact-person {
  max-width: 35%;
}
@media only screen and (max-width: 960px) {
    .member .member-info > div.contact-person {
          max-width: 100%;
          margin-top:20px;
          margin-bottom:20px;
        }
}
.member .member-info .name {
  font-size: 20px;
  font-family: 'Ogilvy Serif';
}
.member .member-info .posch {
  font-size: 20px;
  font-family: 'Ogilvy Serif';
  font-style: italic;
  margin-top: 20px;
}
.member .member-info .cont {
  overflow: auto;
}
.member .member-info .cont p {
  line-height: initial;
  margin-bottom: 10px;
}
.member .member-info .contact-person .option {
  margin-top: 20px;
}
.member .member-info .contact-person .option a {
  color: white;
  transition: .3s linear;
  opacity: 1;
  position: relative;
  word-break: break-all;
}
.member .member-info .contact-person .option a:after {
  width: 0;
  position: absolute;
  content: '';
  height: 1px;
  background: white;
  left: 0;
  bottom: 0;
  transition: .3s linear;
}
/* .member .member-info .contact-person .option a:hover:after {
  width: 100%;
} */
.member .member-info .contact-person .option a:hover {
  opacity: .8;
}
.member .member-info .close {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  font-size: 20px;
}
@media only screen and (min-width: 961px){
    .member.active .member-control {
      position: absolute;
      left: 0 !important;
      transform: translateX(0) !important;
      transition: .3s ease;
      max-width: 19%;
    }
}

.member.active:hover .member-hov{
  opacity: 0;
}
.member.active .member-info {
  width: 80%;
  left: 20%;
  z-index: 2;
  height: 100%;
  top: 10px;
  transition: left .3s ease-in-out, background .3s ease-in-out;
}
.member-info.pos10 {
  transform: translateY(10px);
  transform: translateY(0px);
}
.member-info.pos20 {
  transform: translateY(20px);
  transform: translateY(0px);
}
.container{
  width: 60%;
  margin:0 auto 30px;
}
.forms {
  margin: 100px auto 0;
}
.forms .cta{
  text-align: right;
}

.forms h1{
  font-size: 32px;
  font-weight: bold;
}
.forms p{
  padding:20px 0;
}
form .data{
  width: 100%;
  margin-top: 50px;
  display: flex;
}
.col-6{
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .col-6 {
    width: 100%;
    margin-top: 50px;
  }
}
.col-12{
  width: 100%;
  position: relative;
}
.effect-16 {
  border: 0;
  padding: 4px 0;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
  width:90%;
  outline: none;
}
.effect-16.textarea{
  width: 100%;
  resize: none;
}
.effect-16 ~ .focus-border{
  position: absolute;
  bottom:0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: 0.4s;
}
 .effect-16.textarea ~ .focus-border {
  bottom: 2px;
}
.effect-16:focus ~ .focus-border {
  width: 90%;
  transition: 0.4s;
}
.effect-16.textarea:focus ~ .focus-border {
  width: 100%;
  transition: 0.4s;
}
.has-content.effect-16 ~ .focus-border {
  width: 90%;
  transition: 0.4s;
}
.has-content.effect-16.textarea ~ .focus-border {
  width: 100%;
  transition: 0.4s;
}

.effect-16 ~ label, .effect-16.textarea ~ label {
  position: absolute;
  left: 0;
  width: 90%;
  top: -20px;
  color: #aaa;
  transition: 0.3s;
  z-index: 2;
  letter-spacing: 0.5px;
}
.effect-16:focus ~ label, .effect-16.textarea:focus ~ label {
  top: -16px;
  font-size: 12px;
  color: var(--red);
  transition: 0.3s;
}

.has-content.effect-16 ~ label, .has-content.effect-16.textarea ~ label {
  top: -16px;
  font-size: 12px;
  color: var(--red);
  transition: 0.3s;
}

.checkBox{
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #000000;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--red);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--red);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.forms button{
  width: 162px;
  height: 42px;
  border-radius: 35px;
  border: solid 2px #000;
  background: #FFF;
  cursor: pointer;
  transition: 0.5s;
}
.forms button:hover{
  background: var(--red);
  transition: 0.5s;
  color: #FFF;
}
button {
    color:black;
}
/*@media (max-width: 1024px) {*/
/*    button {*/
/*        background: var(--red);*/
/*        color: #FFF;*/
/*            }*/
/*}*/
.adress{
  color:#959596;
  font-size: 15px;
  margin-bottom: 30px;
}
.social {
  margin-bottom: 30px;
}
.social a path {
  transition: .3s ease;
}
.social a:hover path {
  fill: var(--red);
}
.adress strong{
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}
.contactSecondary {
  width: 90%;
  margin: 20px 0 ;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  font-size: 15px;
}
.contactSecondary a{
  color:#000;
  transition: 0.6s;
}
.contactSecondary a:hover{
  color:var(--red);
  transition: 0.6s;
}
.og-navigation{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
}
.language{
  background: #000;
  color: #FFF;
  padding: 5px;
}

@media (max-width: 960px) {
  .team-members .member {
    max-width: 49%;
  }
  .member.active .member-info {
    width: 100% !important;
    left: 0 !important;
    height: calc(100vh - 55px) !important;
    top: 0 !important;
  }
  .member-info.pos10 {
    transform: translateY(0);
  }
  .member-info.pos20 {
    transform: translateY(0);
  }
  .member .member-info {
    flex-flow: column;
    overflow: auto;
    justify-content: initial;
  }
  .member .member-info > div, .member .member-info > div.cont {
    max-width: 100%;
  }
  .member .member-info .pres {
    position: sticky;
    margin-top: -20px;
    margin-left: -20px;
    padding: 20px;
    top: -20px;
    left: -20px;
    background: var(--red);
  }
  .member .member-info .cont {
    overflow: initial;
  }
  .member .member-info .close {display: none;}
  .member .member-info .pres .close {
    display: block;
    bottom: initial;
    background: var(--red);
    height: 100%;
    top: 0;
    right: -40px;
    width: 40px;
    padding: 20px 0;
  }
  .container{
    width: 90%;
  }
  .contactSecondary {
    width: 100%;
    flex-direction: column;
    gap: 10px;
}
.forms .cta {
  text-align: center;
  margin-bottom: 50px;
}

}

/* .videoHero, .logoOgilvy, .introHome {
  display: none;
} */
.fl {
  z-index: 999;
}
.fl svg {
  width: 100%;
  height: auto;
}
.fl path {fill: white}
.fl.rex path {fill: var(--red);}

/*Estrategias styles*/
.gen {
  margin-top: 20px;
}
.grid-download-holder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 30px;
}
@media (max-width: 1400px) {
  .grid-download-holder {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1080px) {
  .grid-download-holder {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .grid-download-holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .grid-download-holder {
    grid-template-columns: repeat(1, 1fr);
  }
}
.download-asset {
  /* max-width: 225px; */
}
.cardAsset {
  color: white;
  cursor: pointer;
}
.cardAsset img {
  width: 100%;
  display: block;
}
.cardAsset .infox {
  background: rgba(235, 63, 67, .6);
  width: 100%;
  height: auto;
  padding: 15px;
  min-height: 121px;
  transition: .3s ease;
}
.cardAsset:hover .infox {
  background: rgba(235, 63, 67, 1);
}
.cardAsset .cat-n-date {
  display: flex;
  justify-content: space-between;
}
.cardAsset .title {
  font-size: 20px;
  margin-top: 15px;
}
.visual .downloadex {
  display: flex;
  margin-left: auto;
  padding: 10px 0;
  background: transparent;
}
.download-asset .content {
  display: none;
}

/*Overlay Estrategias*/
.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0 ,0 ,0 ,.8);
  z-index: 999999999;
  opacity: 0;
  transition: .3s ease-in-out;
  display: none;
}
.templatePop {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 90vh;
  background: white;
  position: relative;
}
.popHead, .popFoot {
  background: var(--red);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
}
.popFoot {
  justify-content: right;
}
.popFoot .downloadex {
  margin-left: 20px;
  color: white;
  font-size: 13px;
}
.popContent {
  height: auto;
  max-height: 500px;
  overflow: auto;
}
.popContent .former {
  display: none;
  padding: 50px;
}
@media (max-width: 768px) {
  .popContent .former {
    padding: 20px;
  }
}
.popContent .former h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .popContent .former h2 {
    font-size: 24px;
    line-height: initial;
  }
}
.popContent .former .cta {
  text-align: right;
}
@media (max-width: 768px) {
  .popContent .former .cta {
    margin-top: 30px;
    text-align: center;
  }
  form .data {
    display: block;
  }
  .data input {
    width: 100%;
  }
}
.popContent .former .cta button {
  width: 162px;
  height: 42px;
  border-radius: 35px;
  border: solid 2px #000;
  background: #FFF;
  cursor: pointer;
  transition: 0.5s;
}
.popContent .former .cta button:hover {
  background: var(--red);
  color: white;
}
.fixer input, .fixer input:focus  ~ .focus-border, .fixer .has-content.effect-16 ~ .focus-border {
  width: 100%;
}
@media (max-width: 768px) {
  input, input:focus  ~ .focus-border, .has-content.effect-16 ~ .focus-border {
    width: 100% !important;
  }
}
.closeOverlay, .downloadex {
  background: transparent;
  cursor: pointer;
}
.preview img {
  width: 100%;
  display: block;
}
.downloadex {
  display: flex;
  align-items: center;
  transition: .3s ease;
}
path {
  transition: .3s ease;
}
.popFoot .downloadex:hover, .popFoot .downloadex:hover svg path {
  opacity: .8;
  color: white;
  fill: white;
}
.downloadex:hover, .downloadex:hover svg path {
  color: var(--red);
  fill: var(--red);
}
.downloadex svg {
  margin-right: 10px;
}
.errorText {
  text-align: right;
  padding-top: 20px;
  color: var(--red);
}

/*PAGINA INTERNA DE PROYECTOS*/
.customCont img, .customCont iframe {
  width: 100%;
  display: block;
}
.customCont img, .customCont .embeditem {
  margin-bottom: 20px;
}
.customCont img {
  height: auto;
}
/*PRIV POLICY*/
.privPolicy {
    margin-top:130px;
}
.privPolicy .work {
    display:block;
}
/*FIXING*/
.fixi {
    display:inline-flex;
    width:100%;
}