.contact-left-items-style-3 {
    margin-right: 80px;
    margin-top: 220px;

     @include breakpoint (max-xl){
        margin-right: 20px;
    }

     @include breakpoint (max-lg){
       margin-right: 0;
    }

    .location-area {
        margin-top: 50px;
        display: flex;
        gap: 20px;

         @include breakpoint (max-lg){
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .icon {
            i {
                color: $theme-color;
                font-size: 57px;
            }
        }

        .content {
            h3 {
                font-size: 18px;
                font-weight: 500;
            }

            p {
                max-width: 343px;
                margin-top: 10px;
            }
        }
    }

    .contact-text {
        margin-top: 45px;

        @include breakpoint (max-lg){
            margin-top: 25px;
        }
    }

    p {
        margin-top: 24px;

        a {
            font-size: 32px;
            font-weight: 600;

             @include breakpoint (max-sm){
                font-size: 22px;
            }

            &:hover {
                color: $theme-color;
            }
        }
    }
}

.contact-right-content-style-3 {
    margin-top: 220px;

     @include breakpoint (max-lg){
        margin-top: 0;
    }

    .contact-form-box-3 {
        margin-left: 70px;
        

        @include breakpoint (max-xl){
            margin-left: 40px;
        }

         @include breakpoint (max-lg){
            margin-left: 0;
        }

        h3 {
            margin-bottom: 30px;
            color: $white;

             @include breakpoint (max-lg){
                color: $header-color;
            }
        }

        .form-clt {
            input,textarea {
                line-height: 1;
                padding: 17px 20px;
                width: 100%;
                text-transform: capitalize;
                color: $text-color;
                border-radius: 6px;
                border: 1px solid $white;
                background: $white;
            }

            textarea {
                padding-bottom: 120px;
            }
        }

        .theme-btn {
            background-color: $white;
            color: $theme-color;

            i {
                background-color: $theme-color;
                color: $white;
            }
        }
    }

    &.contact-style-8 {

        h3 {
            color: $header-color;
        }

        .form-clt {
            input,textarea {
                color: rgba(87, 125, 125, 0.7);
                border: 1px solid #D8E5E5;
                background: #D8E5E5;
            }

            textarea {
                padding-bottom: 120px;
            }
        }

        .contact-button {
            .theme-btn {
                background-color: $theme-color;
                color: $white;

                i {
                    background-color: $white;
                    color: $theme-color;
                }
            }
        }
    }
}

.contact-section-3 {
    position: relative;
    z-index: -1;
    margin-top: -220px;

    &::before {
        width: 50%;
        height: 100%;
        content: "";
        background-color: $theme-color;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        bottom: 0;
        border-radius: 0px 0px 0px 25px;

        @include breakpoint (max-lg){
            display: none;
        }
    }
}

.contact-section-8 {
    &::before {
        content: none;
    }
}

.contact-top {
    .icon-box-items-inners{
        display: flex;
        align-items: center;
        gap: 20px;
        border-radius: 20px;
        padding: 40px 20px;
        @include transition;
        background-color: $white;
        margin-top: 30px;

         @include breakpoint (max-xl){
            display: block;
        }

        .icon {
            max-width: 62px;
            height: 62px;
            line-height: 70px;
            text-align: center;
            background-color: rgba(20, 75, 36, 0.1);
            border-radius: 50%;
            width: 100%;
            @include transition;

             @include breakpoint (max-xl){
                margin-bottom: 15px;
            }

            i {
                @include transition;
                font-size: 26px;
                color: $theme-color;
            }
        }

        .content {
            p {
                font-size: 16px;
                font-weight: 500;
            }

           .title {
            font-size: 20px;
            font-weight: 600;

            @include breakpoint (max-xxl){
                font-size: 18px;
            }
           }
        }

        &:hover {
            .icon {
                background-color: $theme-color;

               i,img {
                    filter: brightness(0) invert(1);
                }
            }
        }
    }
}


.contact-middle-items {
    margin-top: 120px;

    @include breakpoint (max-xl){
        margin-top: 100px;
    }

     @include breakpoint (max-lg){
        margin-top: 80px;
    }

    .contact-form-box {
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: $white;
        padding: 50px 40px;

        h3 {
            font-size: 50px;
            font-weight: 600;
            margin-bottom: 20px;

             @include breakpoint (max-xxl){
                font-size: 42px;
            }

            @include breakpoint (max-sm){
                font-size: 35px;
            }
        }

        .form-clt {
            input,textarea {
                border-radius: 5px;
                border: 1px solid rgba(88, 109, 145, 0.15);
                background: $white;
                line-height: 1;
                padding: 20px 25px;
                width: 100%;
                text-transform: capitalize;
                color: $text-color;
                font-size: 16px;
                font-weight: 400;

                &::placeholder {
                    color: rgba(102, 102, 102, 1);
                }
            }

            textarea {
                padding-bottom: 110px;
            }
        }

        .theme-btn {
            @include transition;

            i {
                @include transition;
            }
        }
    }

    .google-map-items {
        iframe {
            width: 100%;
            height: 610px;
            border-radius: 10px;
        }
    }
}