.page-template-contact-us-page{

    .hero-section{
        padding-top: 15vh;
        padding-bottom: 50px;
        .wrapper{
            display: flex;
            align-items: baseline;
            gap: 30px;
        }
        .hero-content{
            width: 40%;
        }
        .heading-section{
            margin-bottom: 4px;
        }
        .sub-heading-section{
            color: $primary-color;
            font-size: 22px;
        }
        .info-list{
            margin-top: 20px;
            .info-item{
                .label{
                    color: $primary-color;
                }
                .text{
                    color: #9FA2B9;
                }
            }
        }
        .form-container{
            width: 60%;
            div.gform_wrapper{
                form div.gform_body.gform-body{
                    .gform_fields{
                        column-gap: 10px;
                        row-gap: 10px;
                        .gfield{
                            .gform-field-label{
                                display: none;
                            }
                            .ginput_container{
                                input{
                                    background-color: #FFF;
                                    margin-bottom: 0;
                                }
                                textarea{
                                    background-color: #FFF;
                                }
                            }

                        }
                    }
                }
            }

        }

        @media screen and (max-width: $break-lg) {
            .wrapper{
                width: 100%;
                max-width: 720px;
                margin-left: auto;
                margin-right: auto;
                flex-direction: column;
            }
            .hero-content{
                width: 100%;
            }
            .form-container{
                width: 100%;
            }
        }

    }

    .address-section{
        padding-bottom: 90px;
        .address-heading{
            font-size: 28px;
            color: $primary-color;
            font-weight: 400;
            line-height: 1.5em;
            margin-bottom: 20px;
        }
        .locations{
            width: calc(100% + 30px);
            margin-left: -15px;
            margin-right: -15px;
            display: flex;
            flex-wrap: wrap;
            .location-item{
                width: calc( (100% / 3));
                padding: 0 15px;
                margin-bottom: 30px;
                &:nth-child(1){
                    width: 25%;
                }
                &:nth-child(2){
                    width: 25%;
                }
                &:nth-child(3){
                    width: 50%;
                }
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
            .label{
                text-transform: uppercase;
                font-size: 16px;
                color: #fff;
            }
            .content{
                font-size: 16px;
                color: #9FA2B9;
                b{
                    color: $primary-color;
                } 
            }
            .map-list{
                display: flex;
                gap: 5px;
                .map{
                    width: 100%;
                    display: block;
                    iframe{
                        width: 100%;
                        height: 250px;
                    }
                }
            }
        }

        @media screen and (max-width: $break-lg) {
            .locations{
                .location-item{
                    &:nth-child(1){
                        width: 50%;
                    }
                    &:nth-child(2){
                        width: 50%;
                    }
                    &:nth-child(3){
                        width: 100%;
                    }
                }
            }
        }

        @media screen and (max-width: $break-md) {
            .locations{
                .location-item{
                    width: 100% !important;
                }
                // .map-list{
                //     flex-wrap: wrap;
                // }
            }
        }

    }
}