/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: brandon-grotesque, sans-serif;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* end of global */

@media(min-width: 1366px) {
    .bubble-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
    .bubble-item {
        background: #faf5ea;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .bubble-left {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 100%;
        width: 150px;
        min-width: 150px;
    }
    .bubble-right {
        padding: 25px;
    }
    .bubble-right h4 {
        font-size: 25px;
        font-weight: 500;
        color: #b57c0d;
        margin: 10px 0;
    }
    .bubble-right p {
        font-size: 18px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .video-grid {
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-gap: 50px;
    }
    .video-grid iframe {
        width: 100%;
        height: 400px;
    }
    .step-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
    .step-item {
        background: #b57c0d;
        border-radius: 10px;
        padding: 50px;
    }
    .step-item div {
        font-size: 25px;
        font-weight: 400;
        color: #b57c0d;
        background: #fff;
        border-radius: 25px;
        padding: 25px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .step-item h4 {
        font-size: 25px;
        font-weight: 500;
        color: #fff;
        margin: 10px 0;
    }
    .step-item p {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        margin: 10px 0;
    }
    .flex-section {
        width: 100%;
        margin: 0;
        padding: 50px 15%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .reverse-flex {
        flex-direction: row-reverse;
    }
    .flex-text {
        margin: 0 50px 0 0;
    }
    .reverse-text {
        margin: 0 0 0 50px;
    }
    .flex-text h2 {
        font-size: 40px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-text h3 {
        font-size: 30px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-text p {
        font-size: 20px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-img {
        width: 460px;
    }
    .picture-section {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        min-height: 600px;
        margin: 0;
        padding: 0 0 0 15%;
    }
    .picture-img {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .picture-text {
        padding: 50px 50px 50px 0;
    }
    .picture-text h2 {
        font-size: 40px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .picture-text ul {
        list-style-type: none;
    }
    .picture-text li {
        margin: 10px 0;
        font-size: 25px;
        font-weight: 400;
        color: #555555;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .bubble-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
    .bubble-item {
        background: #faf5ea;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .bubble-left {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 100%;
        width: 150px;
        min-width: 150px;
    }
    .bubble-right {
        padding: 25px;
    }
    .bubble-right h4 {
        font-size: 25px;
        font-weight: 500;
        color: #b57c0d;
        margin: 10px 0;
    }
    .bubble-right p {
        font-size: 18px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .video-grid {
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-gap: 50px;
    }
    .video-grid iframe {
        width: 100%;
        height: 300px;
    }
    .step-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
    .step-item {
        background: #b57c0d;
        border-radius: 10px;
        padding: 50px;
    }
    .step-item div {
        font-size: 25px;
        font-weight: 400;
        color: #b57c0d;
        background: #fff;
        border-radius: 25px;
        padding: 25px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .step-item h4 {
        font-size: 25px;
        font-weight: 500;
        color: #fff;
        margin: 10px 0;
    }
    .step-item p {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        margin: 10px 0;
    }
    .flex-section {
        width: 100%;
        margin: 0;
        padding: 50px 5%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .reverse-flex {
        flex-direction: row-reverse;
    }
    .flex-text {
        margin: 0 50px 0 0;
    }
    .reverse-text {
        margin: 0 0 0 50px;
    }
    .flex-text h2 {
        font-size: 30px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-text h3 {
        font-size: 25px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-text p {
        font-size: 20px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-img {
        width: 460px;
    }
    .picture-section {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        min-height: 500px;
        margin: 0;
        padding: 0 0 0 5%;
    }
    .picture-img {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .picture-text {
        padding: 50px 50px 50px 0;
    }
    .picture-text h2 {
        font-size: 25px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .picture-text ul {
        list-style-type: none;
    }
    .picture-text li {
        margin: 10px 0;
        font-size: 20px;
        font-weight: 400;
        color: #555555;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .bubble-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
    .bubble-item {
        background: #faf5ea;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .bubble-left {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 100%;
        width: 150px;
        min-width: 150px;
    }
    .bubble-right {
        padding: 25px;
    }
    .bubble-right h4 {
        font-size: 25px;
        font-weight: 500;
        color: #b57c0d;
        margin: 10px 0;
    }
    .bubble-right p {
        font-size: 18px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .video-grid {
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-gap: 50px;
    }
    .video-grid iframe {
        width: 100%;
        height: 300px;
    }
    .step-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
    .step-item {
        background: #b57c0d;
        border-radius: 10px;
        padding: 25px;
    }
    .step-item div {
        font-size: 25px;
        font-weight: 400;
        color: #b57c0d;
        background: #fff;
        border-radius: 25px;
        padding: 25px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .step-item h4 {
        font-size: 25px;
        font-weight: 500;
        color: #fff;
        margin: 10px 0;
    }
    .step-item p {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        margin: 10px 0;
    }
    .flex-section {
        width: 100%;
        margin: 0;
        padding: 50px 25px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .reverse-flex {
        flex-direction: row-reverse;
    }
    .flex-text {
        margin: 0 50px 0 0;
    }
    .reverse-text {
        margin: 0 0 0 50px;
    }
    .flex-text h2 {
        font-size: 30px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-text h3 {
        font-size: 25px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-text p {
        font-size: 20px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-img {
        width: 460px;
    }
    .picture-section {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        min-height: 500px;
        margin: 0;
        padding: 0 0 0 25px;
    }
    .picture-img {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .picture-text {
        padding: 50px 25px 50px 0;
    }
    .picture-text h2 {
        font-size: 30px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .picture-text ul {
        list-style-type: none;
    }
    .picture-text li {
        margin: 10px 0;
        font-size: 20px;
        font-weight: 400;
        color: #555555;
    }
}

@media(max-width: 769px) {
    .bubble-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(1, 100%);
        grid-gap: 50px;
    }
    .bubble-item {
        background: #faf5ea;
        min-height: 200px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .bubble-left {
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 100%;
        width: 120px;
        min-width: 120px;
    }
    .bubble-right {
        padding: 25px;
    }
    .bubble-right h4 {
        font-size: 20px;
        font-weight: 500;
        color: #b57c0d;
        margin: 10px 0;
    }
    .bubble-right p {
        font-size: 15px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .video-grid {
        margin: 50px auto;
        display: grid;
        grid-template-columns: repeat(1, 100%);
        grid-gap: 50px;
    }
    .video-grid iframe {
        width: 100%;
        height: 300px;
    }
    .step-container {
        margin: 50px 0;
        display: grid;
        grid-template-columns: repeat(1, 100%);
        grid-gap: 50px;
    }
    .step-item {
        background: #b57c0d;
        border-radius: 10px;
        padding: 25px;
    }
    .step-item div {
        font-size: 25px;
        font-weight: 400;
        color: #b57c0d;
        background: #fff;
        border-radius: 25px;
        padding: 25px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .step-item h4 {
        font-size: 25px;
        font-weight: 500;
        color: #fff;
        margin: 10px 0;
    }
    .step-item p {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        margin: 10px 0;
    }
    .flex-section {
        width: 100%;
        margin: 0;
        padding: 50px 5%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .reverse-flex {
        flex-direction: column;
    }
    .flex-text {
        margin: 0 0 0 0;
    }
    .reverse-text {
        margin: 0 0 0 0;
    }
    .flex-text h2 {
        font-size: 25px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-text h3 {
        font-size: 20px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-text p {
        font-size: 15px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .flex-img {
        width: 100%;
    }
    .picture-section {
        display: grid;
        grid-template-columns: repeat(1, 100%);
        /* min-height: 400px; */
        margin: 0;
        padding: 0 0 0 0;
    }
    .picture-img {
        background-size: cover;
        min-height: 300px;
        background-repeat: no-repeat;
    }
    .picture-text {
        padding: 50px 5%;
    }
    .picture-text h2 {
        font-size: 20px;
        font-weight: 400;
        color: #555555;
        margin: 10px 0;
    }
    .picture-text ul {
        list-style-type: none;
    }
    .picture-text li {
        margin: 10px 0;
        font-size: 15px;
        font-weight: 400;
        color: #555555;
    }
}
