@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    background-color: #333333;
    color: #ffffff;
    font-family: 'Chivo', sans-serif;
}

header {
    background-color: #4A4A4A;
    box-shadow: 0px 3px 6px 0px #00000029;

}

.header-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 20px;
}

.header-container {
    display: flex;
    align-items: center;
}

.header-logo {
    max-width: 100px;
    margin-right: 10px;
    display: block;
}
.emovid-hubspot-logo {
    max-width: 100%;
    height: auto;
    width: 400px;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 76px 20px;
}

.container-center {
    text-align: center;
}

.integration-section {
    text-align: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.headline {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}
.headline span {
    font-weight: 400;
    font-style: italic;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 23px;
    color: #ffffff;
}
.section-title-prerequisites {
    margin-bottom: 40px;
}

.prerequisites-list {
    list-style: none;
    margin-bottom: 60px;
}

.prerequisites-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #ffffff;
}

.prerequisites-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 20px;
}
.install-button-container {
    margin-top: 60px;
}

.install-button {
    background-color: #DD4F5D;
    width: 516px;
    max-width: 100%;
    color: #ffffff;
    text-align: center;
    border: none;
    padding: 19px 0px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.section-title-demo {
   font-weight: 600;
}

.video-container {
    width: 100%;
    position: relative;
    margin-top: 20px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #1a1a1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 0;
}

.play-button {
    width: 160px;
    height: 100px;
    background: #33333380;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 1;
}

.play-button:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 42px solid #FFFFFF;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    margin-left: 5px;
}

.demo-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 4px;
    display: none;
    object-fit: contain;
    background-color: #1a1a1a;
}

.success-message-1 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
.checkmark {
    margin: 60px 0px;
}

.success-message-2 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 60px;
}

.dashboard-button {
    background-color: #DD4F5D;
    width: 516px;
    max-width: 100%;
    color: #ffffff;
    text-align: center;
    border: none;
    padding: 19px 0px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    /* .headline {
        font-size: 24px;
    }
    .prerequisites-list li{
        font-size: 24px;
    } */
}
@media (max-width: 650px) {
    .play-button {
        width: 100px;
        height: 75px;
    }
    .play-button:before {
        border-left: 34px solid #FFFFFF;
        border-top: 16px solid transparent;
        border-bottom: 16px solid transparent;
    }
    .dashboard-button, .install-button {
        padding: 20px 15px;
        /* font-size: 20px; */
    }
    .prerequisites-list,.section-title-prerequisites {
        margin-bottom: 30px;
    }
    .content-grid {
        gap: 60px;
    }
}
