/*STANDARD BLOCK*/

    .standard-block {
        position: relative;
    }
    /*BACKGROUNDS*/

        /*IMAGE*/

            .standard-block .image {
                position: absolute;
                background-size: cover;
                top: 0px;
                left: 0px;
                height: 100%;
                z-index: 10;
            }

        /*VIDEO*/

            .standard-block .background-video {
                position: absolute;
                object-fit: cover;
                top: 0px;
                left: 0px;
                height: 100%;
                z-index: 20;
            }

    /*CENTERING DIV*/

        .standard-block .center {
            position: relative;
            z-index: 100;
        }

        /*ALIGNMENTS*/

            /*LEFT ALIGN*/

                .standard-block .center.left-align {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: flex-start;
                    align-items: flex-start;
                    text-align: left;
                }

                .standard-block .center.left-align .buttons {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-start;
                }

                .standard-block .center.left-align .keyline-holder {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-start;
                }

            /*RIGHT ALIGN*/

                .standard-block .center.right-align {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: flex-end;
                    align-items: flex-start;
                    text-align: right;
                }

                .standard-block .center.right-align .buttons {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-end;
                }

                .standard-block .center.right-align .keyline-holder {
                    display: flex;
                    flex-direction: row;
                    justify-content: flex-end;
                }

            /*CENTER ALIGN*/

                .standard-block .center.center-align {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: center;
                    align-items: flex-start;
                    text-align: center;
                }

                .standard-block .center.center-align .buttons {
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                }

                .standard-block .center.center-align .keyline-holder {
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                }

        /*CONTENT*/

            /*IMAGES*/

                .standard-block img {
                    max-width: 100%;
                }
        
            /*BUTTONS*/

                /*IN A ROW*/

                    .standard-block .buttons .button-template:not(:last-of-type) {
                        margin-right: 25px;
                    }

            /*KEYLINES*/

                .standard-block .keyline-holder .keyline {
                    height: 3px;
                    border-top-left-radius: 2px;
                    border-top-right-radius: 2px;
                    border-bottom-left-radius: 2px;
                    border-bottom-right-radius: 2px;
                }

            /*SIDE BY SIDE*/

                /*FIGURE*/

                    .standard-block .side-by-side .side-by-side-image {
                        display: block;
                        width: calc(50% - 50px);
                    }

                /*ARTICLE*/

                    .standard-block .side-by-side article {
                        padding-top: 50px;
                        padding-bottom: 50px;
                        width: 50%;
                    }

            /*CARDS*/

                /*ALIGNMENTS*/

                    .standard-block .cards .card.left-align {
                        text-align: left;
                    }

                    .standard-block .cards .card.right-align {
                        text-align: right;
                    }

                    .standard-block .cards .card.center-align {
                        text-align: center;
                    }

                /*WIDTHS*/

                    .standard-block .cards.row-of-three .card {
                        width: calc(33.333% - 25px);
                    }

                    /*ADD MARGIN BOTTOM TO CARDS IN A ROW*/

                        .standard-block .cards.row-of-three .card {
                            margin-bottom: 50px;
                        }

                    .standard-block .cards.row-of-five .card {
                        width: calc(20% - 25px);
                    }

                /*IMAGE*/

                    .standard-block .cards .card-image {
                        max-width: 100%;
                    }

            /*DUAL IMAGES*/

                .standard-block .dual-images .dual-image {
                    width: calc(50% - 5px);
                }

            /*TEXT LINK*/

                .standard-block .center .text-link {
                    display: block;
                    text-decoration: underline;
                }

            /*CONTACT INFORMATION*/

                /*KEYLINE*/

                    .contact-information .keyline-holder .keyline {
                        margin-top: 25px;
                        margin-bottom: 25px;
                        width: 10%;
                        background-color: #DDD;
                    }

                /*INFORMATION*/

                    .contact-information .information {
                        width: calc(50% - 25px);
                    }

                    /*ADDRESS*/

                        .contact-information .information .address {
                            margin-bottom: 50px;
                        }

                /*FORM*/

                    .contact-information .contact-form {
                        width: calc(50% - 25px);
                    }

            /*COMPANY*/

                .standard-block .company {
                    background-color: #444;
                    padding: 100px;
                }

            /*TABS*/

                /*TABS LIST*/

                    .tabs-list {
                        list-style-type: none;
                    }

                    /*LIST ITEM*/

                        .tabs-list li {
                            font-family: "Heebo", sans-serif;
                            font-size: 23px;
                            font-weight: 800;
                            color: #444;
                            padding-right: 25px;
                            border-right: 1px solid #DDD;                    
                        }

                        /*IF SELECTED*/

                            .tabs-list li a[aria-selected="true"] {
                                color: #FF521F;
                            }

                        /*NOT FIRST OF TYPE*/

                            .tabs-list li:not(:first-of-type) {
                                padding-left: 25px;
                            }

                /*KEYLINE*/

                    .tabs-holder .keyline-holder .keyline {
                        margin-top: 25px;
                        width: 10%;
                        background-color: #DDD;
                    }

                /*TAB CONTENT*/

                    .tab-content {
                        padding-top: 25px;
                    }

/*MEDIA QUERIES*/

    @media (max-width: 1400px) {



    }

    @media (max-width: 1200px) {

        .standard-block .side-by-side .side-by-side-image {
            width: 100%;
            min-height: 400px;
        }

        .standard-block .side-by-side article {
            width: 100%;
        }

        .standard-block .cards .card {
            width: 100% !important;
            margin-bottom: 50px;
        }

        .standard-block .cards .card:last-of-type {
            margin-bottom: 0px;
        }

        .standard-block .company {
            padding: 50px;
        }

        .contact-information .information {
            width: 100%;
            margin-bottom: 50px;
        }

        .contact-information .contact-form {
            width: 100%;
        }

    }

    @media (max-width: 1000px) {

        .tabs-list li {
            width: 100%;
            border-right: none;
            padding-right: 0px;
        }

        .tabs-list li:not(:first-of-type) {
            padding-left: 0px;
        }

    }

    @media (max-width: 800px) {

        .standard-block .dual-images .dual-image {
            width: 100%;
            height: 400px;
            margin-bottom: 25px;
        }

        .standard-block .dual-images .dual-image:last-of-type {
            margin-bottom: 0px;
        }

        .standard-block {
            padding-top: 50px !important;
            padding-bottom: 50px !important;
        }

        .standard-block .buttons {
            flex-direction: column !important;
        }

        .standard-block .buttons .button-template {
            width: 100% !important;
            margin-bottom: 25px;
        }

        .standard-block .buttons .button-template:last-of-type {
            margin-bottom: 0px;
        }

    }