.contactTopSec {
    padding-top: 80px !important;

    .contactTopCol {
        position: relative;

        &:not(:last-child) {
            &::after {
                content: '';
                position: absolute;
                right: 0;
                top: 0;
                width: 1px;
                height: 100%;
                background: rgba(255, 255, 255, 0.65);
            }
        }

        &:not(:first-child) {
            .contTopCard {
                padding-left: 30px;
            }
        }

        .contTopCard {
            display: flex;
            align-items: center;
            gap: 30px;

            .contTopImgDiv {
                position: relative;
                padding-left: 15px;

                .contTopImg {
                    width: 82px;
                    height: 94px;
                    background-color: #E0B432;
                    border: 5px solid #FFF;
                    border-radius: 17px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                    z-index: 2;

                    img {
                        width: 50px;
                        height: 50px;
                        object-fit: contain;
                    }
                }

                &::before {
                    content: '';
                    position: absolute;
                    width: 55px;
                    height: 80px;
                    transform: rotate(-20deg);
                    bottom: 5px;
                    left: 0;
                    background-color: #E0B432;
                    border-radius: 17px;
                    z-index: 1;
                }
            }

            .contTopText {
                h6 {
                    a {
                        color: #FFF;
                        font-family: 'Zolina';
                        font-size: 25px;
                        font-weight: 400;
                    }
                }
            }
        }
    }
}

.contactFormSec {
    .contactFormBtm {
        background-color: #E0B432;
        padding: 50px;

        form {
            .inpSubWrap {
                margin-left: auto;

                &:hover {
                    background-color: #FFF;
                    border-color: transparent;

                    &::after {
                        border-color: #FFF;
                    }
                }
            }
        }
    }
}

.contactFormBtm {
    .wpcf7-spinner {
        position: absolute;
        right: -50px;
        bottom: 38px;
    }
    
}

/* Responsive */

@media (max-width: 1600px) {
    .contactTopSec {
        .contactTopCol {
            &:not(:first-child) {
                .contTopCard {
                    padding-left: 15px;
                }
            }

            .contTopCard {
                gap: 20px;

                .contTopImgDiv {
                    .contTopImg {
                        width: 70px;
                        height: 82px;

                        img {
                            width: 42px;
                            height: 42px;
                        }
                    }
                }

                .contTopText {
                    h6 {
                        a {
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1366px) {
    .contactTopSec {
        .contactTopCol {
            .contTopCard {
                .contTopImgDiv {
                    &::before {
                        width: 48px;
                        height: 62px;
                    }

                    .contTopImg {
                        width: 60px;
                        height: 70px;

                        img {
                            width: 38px;
                            height: 38px;
                        }
                    }
                }

                .contTopText {
                    h6 {
                        a {
                            font-size: 17px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1199px) {
    .contactFormSec {
        .contactFormBtm {
            padding: 32px;
        }
    }
}

@media (max-width: 1100px) {
    .contactTopSec {
        .contactTopCol {
            width: 100%;

            &::after {
                content: normal !important;
            }

            &:not(:last-child) {
                margin-bottom: 25px;
            }

            .contTopCard {
                padding-left: 20px;
            }
        }
    }
}

@media (max-width: 991px) {
    .contactFormSec {
        .contactFormBtm {
            margin-top: 20px;

            .row {
                row-gap: 20px;
            }

            form {
                .inpSubWrap {
                    width: 220px;
                    background-color: #FFF;
                    border-color: transparent;
                    margin: 0px auto;

                    input[type='submit'] {
                        letter-spacing: 1.5px;
                        font-size: 16px;
                    }

                    &::after {
                        opacity: 1;
                        top: 10px;
                        left: -10px;
                        border-color: #FFF;
                    }
                }
            }
        }
    }

    .contactTopSec {
        .contactTopCol {
            .contTopCard {
                padding-left: 0 !important;
            }
        }
    }
}

@media (max-width: 840px) {
    .contactTopSec {
        .contactTopCol {
            .contTopCard {
                .contTopImgDiv {
                    &::before {
                        width: 42px;
                        height: 52px;
                    }

                    .contTopImg {
                        width: 52px;
                        height: 62px;

                        img {
                            width: 35px;
                            height: 35px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .contactTopSec {
        .contactTopCol {
            .contTopCard {
                .contTopText {
                    h6 {
                        a {
                            font-size: 15px;
                        }
                    }
                }
            }
        }
    }

    .contactFormSec {
        .contactFormBtm {
            padding: 20px;
        }
    }
}