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

:root {
    /* Monochrome */
    --white-color: #FFF;
    --black-color: #000;
    --primary-color: #2f91a0;
    --secondary-color: #97cfd8;
    --orange-color: #fa5a38;
    --blue-color: #0b0989;
    --grey-color--1: #333;
    --grey-color--2: #9d9d9d;
}

/* Header Section */
.title-page {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--blue-color);

    padding-top: 10px;
    padding-bottom: 10px;
}

.title-page--orange {
    color: var(--orange-color);
}




.margin-top-120 {
    margin-top: 150px;
    text-align: center;

}

.title-above-btn {
    font-size: 38px;
    text-align: center;
    font-weight: 700;
}


.video-disclaimer {
    font-family: arial;
    font-size: 10px;
    line-height: 17px;
    color: #58595b;
    padding-bottom: 5px;
    text-align: center;
}

.custom-logo-size {
    width: 25%;
}

.line-bottom {
    border-bottom: 1px solid #ddd;
}

.title-list {
    font-size: 40px;
    text-align: center;
}

.list-box {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 0 10px hsl(0deg 0% 0% / 10%);
}

.custom-list {
    display: flex;
    padding: 20px 20px 20px 50px;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
    list-style: none;
}

.custom-list li {
    position: relative
}

.custom-list li:before {
    content: "\2713";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.custom-bgr {
    background-color: var(--secondary-color);
    padding: 20px 30px 20px 30px;
}

.john-picture {
    width: 100%;
    border-radius: 20px;
}

.gaps {
    gap: 30px
}

.about-first p {
    font-weight: 500;
}

.about-box {
    max-width: 1200px;
    margin: 0 auto;
}

.card-body p {
    color: var(--grey-color--2);
}

.card {
    width: 1200px;
}

/* Queries */
@media (max-width: 420px) {
    .video_vimeo {
        height: 580px !important;
    }

    .margin-top-120 {
        margin-top: 20px;
    }

    .title-page {
        font-size: 23px;
        line-height: 1.5;
    }

    .custom-logo-size {
        width: 50%;
    }
}

@media(max-width: 1199px) {
    .card {
        width: 900px;
    }
}

@media(max-width: 991px) {
    .card {
        width: 750px;
    }
}

@media(max-width: 767px) {
    .card {
        width: 500px;
    }

    .d-flex.fix {
        flex-direction: column;
    }

    .john-picture {
        width: 60%;
    }

    body {
        background: var(--white-color) !important;
    }
}

@media(max-width: 575px) {
    .card {
        width: 350px;
    }
}

@media(max-width: 420px) {
    .card {
        width: 200px;
    }

    .john-picture {
        width: 100%;
    }
}