:root {
    --titleSize: 46px;
    --titleLineHeight: 46px;
    --borderContainer: 1px solid black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
}

header {
    max-width: 100vw;
    height: 87px;
    border-bottom: var(--borderContainer);
}

footer {
    font-size: 16px;
    border-top: 2px solid black;
    max-width: 100vw;
    height: 170px;
    padding-top: 67px;
}

footer a {
    text-decoration: none;
    color: black;
}

form {
    padding: 0px 82px;
}

h1 {
    width: calc(100% - 49px);
    max-width: 940px;
    color: white;
    font-size: 100px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    position: relative;
    top: 84px;
    left: 49px;
}

h2 {
    max-width: 451px;
    font-size: var(--titleSize);
    line-height: var(--titleLineHeight);
    font-weight: 700;
    padding-bottom: 29px;
    font-family: 'Syne', sans-serif;
}

h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    padding-bottom: 37px;
}

#mainTitle {
    max-width: 100vw;
    padding-top: 105px;
    padding-bottom: 70px;
}

#mainTitle p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    padding-right: 155px;
}

#meetingTime {
    max-width: 100vw;
}

#meetTheTeam {
    background-color: #010101;
    max-width: 100vw;
    height: auto;
    padding-top: 80px;
    padding-bottom: 66px;
}

#meetTheTeam h3 {
    color: white;
    font-size: var(--titleSize);
    line-height: var(--titleLineHeight);
}

#validationForm {
    width: 100%;
    max-width: 600px;
    height: auto;
    background-color: #FFFFFF;
    position: relative;
    margin-top: 2%;
    left: 50%;
    transform: translateX(-50%);
}

#meetingFormContainer {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 10;
}

#buttonFormClose {
    position: relative;
    top: 29px;
    left: 90%;
}

.menuHamburgesa {
    display: none;
}

.logo {
    max-width: 207px;
    height: auto;
    padding-left: 45px;
}

nav {
    padding-right: 45px;
}

nav a {
    text-decoration: none;
    font-size: 16px;
    color: #0A0E17;
    ;
}

#navbarNav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 10;
    top: 0;
    left: 0;
    padding: 20px;
    font-size: 7vw;
    text-transform: uppercase;
}

#navbarNav ul {
    margin-top: 90px;
}

#navbarNav .navbar-toggler {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
}

#navbarNav .cross {
    width: 30px;
    height: 1px;
    background: black;
    display: block;
    transform: rotate(45deg) !important;
}

#navbarNav .cross-2 {
    width: 30px;
    transform: rotate(-45deg) !important;
}

.hero {
    position: relative;
    background-image: url("../img/hero.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100vw;
    height: 640px;
    border-radius: 12px;
    margin: 20px;
}

.heroButton {
    width: 263px;
    height: 73px;
    border-radius: 46px;
    position: relative;
    top: 100px;
    left: 48px;
    font-size: 24px;
    font-weight: 400;
}

.heroButton:hover {
    background-color: black;
    color: white;
    border: 1px solid black;
}

.hero p {
    width: 263px;
    color: white;
    font-size: 24px;
    font-weight: 400;
    position: relative;
    top: 108px;
    left: 54px;
}

.hero img {
    position: absolute !important;
    width: 176px;
    height: auto;
    position: relative;
    bottom: 47px;
    right: 26px;
}

.brandingBand {
    height: 50px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  .slider {
    height: 50px;
    margin: auto;
    overflow: hidden;
    position: relative;
    transform: translateY(10px);
  }
  .slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 50px;
    position: absolute;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }

  
  .slider .slide {
    height: auto;
    width: 250px;
  }


.logoExte {
    width: 90px;
    height: auto;
}

.logoSunMedia {
    width: auto;
    height: 22px;
}

.logoRichAudience {
    width: auto;
    height: 14px;
}

.logoAdpone {
    width: auto;
    height: 15px;
}

.schedules {
    border-top: 1px solid black;
    max-width: 100vw;
    padding: 43px 43px 43px 0px;
}

.schedules h3 {
    font-family: 'Syne', sans-serif;
    font-size: var(--titleSize);
    line-height: var(--titleLineHeight);
    font-weight: 400;
    margin: 0 24px;
    padding: 0;
    width: 100%;
}

.schedules img {
    width: 100%;
    max-width: 250px;
}

.schedules button {
    width: 166px;
    height: 45px;
    border: 1px solid black;
    background-color: white;
    border-radius: 25px;
    color: black;
}

.schedules button:hover {
    background-color: black;
    color: white !important;
    border: 1px solid white;
}

.mobilePosition{
    display:flex !important;
    align-items: center;
}

.imagesTeamContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(auto, auto);
}

.imagesTeamContainer img {
    width: 100%;
    max-width: 261px;
    height: auto;
    padding-bottom: 50px;
    margin: 0 auto;
}

.alert {
    display: none;
}

.alert.show {
    display: block;
}

.imageTeam1 {
    width: 261px;
}

.imageTeam2 {
    width: 261px;
}

.imageTeam3 {
    width: 261px;
}

.imageTeam4 {
    width: 261px;
}

.imageTeam5 {
    width: 261px;
}

.imageTeam6 {
    width: 261px;
}

.adSolutions {
    max-width: 100vw;
}

.rrss {
    padding-left: 65px;
}

.footerLogo {
    width: 230px;
}

.legalNotice {
    padding-right: 65px;
}

.formButton {
    border-radius: 25px;
}

.rrssIg {
    margin: 0px 10px;
}

.rrssLinkedIn {
    margin-left: 10px;
}

@media only screen and (max-width: 820px) {
    header {
        height: 91px;
    }

    h1 {
        top: 20px;
        max-width: 465px;
        font-size: 50px;
    }

    Footer {
        height: 291px;
    }

    #mainTitle {
        padding-top: 48px;
        padding-bottom: 50px;
    }

    #mainTitle p {
        padding-right: 0px;
    }

    #meetingTime h3 {
        width: 100%;
    }

    #meetTheTeam h3 {
        color: white;
        font-size: 46px;
        line-height: 46px;
    }

    #buttonFormClose {
        left: 90%;
    }

    .menuHamburgesa {
        display: none;
    }


    .hero {
        background-image: url("../img/heroTablet.png");
        width: auto;
        height: 318px;
    }

    .hero p {
        top: 35px;
        font-size: 16px;
    }

    .hero img {
        width: 100px;
        bottom: 22px;
        right: 32px;
    }

    .heroButton {
        top: 35px;
    }

    .schedules {
       padding:43px 0px 43px 0px;
    }

    .schedules img {
        width: 33px;
        content: url("../img/arrowTablet.svg");
    }

    .schedules h3 {
        padding-left: 0 !important;
        padding-bottom: 0 !important;
    }

    .mobilePosition{
        display:flex !important;
        align-items: center;
    }

    .imagesTeamContainer {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(auto, auto);
    }

    .imageTeam1 {
        width: 274px;
        grid-row: 1;
        grid-column: 1/2;
    }

    .imageTeam2 {
        width: 274px;
        grid-row: 1;
        grid-column: 2/3;
    }

    .imageTeam3 {
        width: 274px;
        grid-row: 2;
        grid-column: 1/2;
    }

    .imageTeam4 {
        width: 274px;
        grid-row: 2;
        grid-column: 2/3;
    }

    .imageTeam5 {
        width: 274px;
        grid-row: 3;
        grid-column: 1/2;
    }

    .imageTeam6 {
        width: 274px;
        grid-row: 3;
        grid-column: 2/3;
    }

    .footerItems {
        flex-direction: column;
    }

    .rrss {
        padding: 0;
    }

    .legalNotice {
        padding: 0;
    }

    .footerLogo {
        margin: 25px 0px;
    }

    @media only screen and (max-width: 575px) {

        nav {
            display: none;
        }

        h1 {
            margin-bottom: 35px;
            top: 232px;
            left: 0px;
            width: 315px;
            font-size: 33px;
            text-align: center;
        }

        Footer {
            height: 291px;
        }

        form {
            padding: 0px 82px;
        }

        #mainTitle {
            padding-top: 48px;
            padding-left: 35px;
            padding-bottom: 50px;
            padding-right: 36px;
        }

        #meetTheTeam {
            margin-top: 29px;
            padding-top: 48px;
        }

        #meetingTime h3 {
            font-size: 1.75rem !important;
        }

        #meetingTime h3.title {
            padding-left: 2.5rem;
        }

        #meetTheTeam h3 {
            color: white;
            font-size: 46px;
            line-height: 46px;
            text-align: center;
            padding: 0;
            margin-bottom: 60px;
        }

        #mainTitle p {
            padding-right: 0px;
        }

        #meetingFormContainer {
            padding-bottom: 80%;
        }

        .menuHamburgesa {
            display: block;
            margin-top: 18px;
            margin-right: 10px;
        }

        .menuHamburgesa button {
            border: 0;
        }


        .logo {
            width: 207px;
            padding-left: 30px;
            padding-top: 27px;
        }

        .hero {
            background-image: url("../img/heroMobile.png");
            height: 773px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero p {
            top: 244px;
            left: 25px;
            font-size: 20px;
        }

        .hero img {
            width: 120px;
            bottom: 67px;
            left: 50%;
            transform: translateX(-50%);
        }

        .heroButton {
            top: 237px;
            left: 0px;
        }

        .animationContainer img {
            animation: translateinfinite s linear infinite;
        }

        .logoExte {
            animation-delay: 0.4s !important;
            width: 90px;
            height: auto;
        }

        .logoSunMedia {
            animation-delay: 2.8s !important;
            width: auto;
            height: 22px;
        }

        .logoRichAudience {
            animation-delay: 5.7s !important;
            width: auto;
            height: 14px;
        }

        .logoAdpone {
            animation-delay: 8.5s !important;
            width: auto;
            height: 15px;
        }


        .schedules {
            padding: 49px 0px;
            flex-direction: column;
            align-items: center;
            justify-content: center !important;
        }

        .schedules img {
            width: 33px;
            content: url("../img/arrowTablet.svg");
        }

        .schedules h3 {
            font-size: 35px !important;
            padding-left: 0 !important;
            padding-bottom: 0 !important;
            margin: 0;
        }

        .schedules button {
            margin-top: 29px;
        }
        .mobilePosition{
            display:flex !important;
            justify-content: space-evenly;
            align-items: center;
        }

        .mobileButton{
            margin-top: 0;
            display: flex;
            justify-content: center;
        }

    .imageTeam1{
        width: 335px;
    } 
    
    .imageTeam2{
        width: 335px;
    }    

    .imageTeam3{
        width: 335px;
    }  
    
    .imageTeam4{
        width: 335px;
    } 

    .imageTeam5{
        width: 335px;
    } 

    .imageTeam6{
        width: 335px;
    } 

    

        .adSolutions {
            max-width: 97vw;
        }

        .footerItems {
            flex-direction: column;
        }

        .rrss {
            padding: 0;
        }

        .legalNotice {
            padding: 0;
        }

        .footerLogo {
            margin: 25px 0px;
        }
    }
}