/* Large Screen */

@media (min-width: 1170px) {
    .container {
        width: 1200px
    }
}


/* -------------------------------------------------
  Old Desktop
---------------------------------------------------*/

@media (min-width: 992px) and (max-width: 1169px) {
    .container {
        width: 970px
    }
    /* Header */
    .logo {
        max-width: 350px;
        margin-left: 70px;
    }
    .date {
        max-width: 300px;
    }
    /* Video */
    .video-info p {
        font-size: 18px;
    }

}


/* -------------------------------------------------
  Tablet Screen 
---------------------------------------------------*/

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 750px
    }
    /* Header */
    .logo {
        max-width: 300px;
        margin-left: 30px;
    }
    .date {
        max-width: 300px;
        margin-right: -20px;
    }
    /* Exhibitor */
    .exh-title h3 {
        font-size: 24px;
    }
    .exh-title h4 {
        font-size: 24px;
    }
    .int-btn.int-btn-group a {
        font-size: 16px;
    }
    /* Video */
    .video-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .video-info p {
        font-size: 18px;
    }
    /* Cycle */
    .cycle-wrap {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }
    .cycle img {
        width: 170px;
    }
    /* Countdown  */
    .sec-title h2 {
        font-size: 24px;
    }
    /* Footer */
    .footer-logo img {
        max-width: 250px;
    }
}


/* -------------------------------------------------
  Small Mobile
---------------------------------------------------*/

@media (max-width: 767px) {
    .container {
        width: 300px
    }
    body {
        font-size: 16px;
    }
    /* Header */
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .logo {
        max-width: 250px;
        margin-left: 0px;
    }
    .date {
        max-width: 250px;
    }
    /* Exhibitor */
    .exh-logo {
        margin-bottom: 30px;
    }
    .exh-logo h3 {
        font-size: 20px;
    }
    .exh-title h4 {
        font-size: 20px;
    }
    .exh-details p {
        font-size: 18px;
    }
    .int-btn a {
        font-size: 20px;
    }
    .int-btn.int-btn-group a {
        font-size: 16px;
        margin: 10px 0;
    }
    .int-btn p br {
        display: none;
    }

    /* Video */
    .video-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .video-info p {
        font-size: 16px;
    }
    /* Cycle */
    .cycle-wrap {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
    .cycle img {
        width: 170px;
    }
    /* Countdown */
    .sec-title h2 {
        font-size: 24px;
    }
    .cdown {
        width: 150px;
    }
    .cdown strong {
        font-size: 48px;
    }
    .cdown p {
        font-size: 20px;
    }
    /* Footer */
    .footer-wrap {
        flex-direction: column;
        gap: 15px;
    }
    .footer-logo img {
        max-width: 250px;
    }
}


/* -------------------------------------------------
  Large Mobile :480px. 
---------------------------------------------------*/

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 450px
    }
}