//feature-area
.single-feature {
    position: relative;
    background: url(../img/feature//1.jpg) no-repeat top center;
    background-size: cover;
    padding: 77px 0 78px 70px;
    width: 100%;
    height: 100%;
    z-index: 2;

    @media #{$lg} {
        padding: 72px 0 78px 15px;
    }

    @media #{$xs} {
        padding: 72px 0 78px 15px;
    }

    &::before {
        position: absolute;
        content: "";
        background-color: rgb(8, 61, 89);
        opacity: 0.902;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: -1;
        @include transition(0.3s);
    }

    .f-icon {
        position: absolute;
        z-index: 1;
        right: 25px;
        top: 17px;
        @include transition(0.6s);
    }

    h6 {
        color: #a6b8c2;
        font-weight: 300;
        margin-bottom: 13px;

        & span {
            color: $white;
            font-weight: 400;
            margin-right: 18px;
        }
    }

    h2 {
        color: $white;
        font-size: 50px;
        line-height: 1.1;
        padding-left: 42px;

        @media #{$lg} {
            font-size: 30px;
        }

        @media #{$md} {
            font-size: 30px;
        }

        @media #{$xs} {
            font-size: 30px;
        }
    }

    &.feat-2 {
        h6 {
            color: #ffeedc;
        }

        &::before {
            background-color: rgb(255, 168, 75);
            opacity: 0.902;
        }
    }

    &.feat-3 {
        &::before {
            background-color: rgb(0, 101, 113);
            opacity: 0.902;
        }
    }

    &:hover {
        h6 {
            color: $white;
        }

        &::before {
            background-color: rgb(255, 168, 75);
        }

        .f-icon {
            top: 25px;
            right: 50px;
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
            -moz-transform: scale(1.1);
            -ms-transform: scale(1.1);
            -o-transform: scale(1.1);
        }
    }
}

//core-feature-area
.core-feature-area {
    position: relative;
    z-index: 2;

    &::before {
        content: "";
        position: absolute;
        background: url(../img/feature/core-1.jpg) no-repeat right;
        width: 615px;
        max-width: 100%;
        height: 100%;
        right: 0;
        top: 0;
        z-index: -1;

        @media #{$lg} {
            width: 100%;
            max-width: 50%;
        }

        @media #{$md} {
            display: none;
        }

        @media #{$xs} {
            display: none;
        }
    }
}

.core-wrapper {
    .section-title {
        @media #{$lg} {
            padding-right: 0;
        }

        @media #{$xs} {
            padding-right: 0;
        }
    }
}

.text-list {
    li {
        color: $heding;
        font-size: 16px;
        font-weight: 500;
        padding-left: 60px;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;

        &::before {
            content: "\f00c";
            position: absolute;
            font-family: "Font awesome 5 Pro";
            font-size: 16px;
            color: $theme-color;
            left: 0;
            top: -7px;
            z-index: 1;
            width: 40px;
            height: 40px;
            line-height: 40px;
            background: #fff0e1;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            text-align: center;
        }
    }
}

.video-wrapper {
    background: url(../img/feature/core-2.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    min-height: 500px;
    position: relative;

    @media #{$md} {
        min-height: 400px;
    }

    @media #{$xs} {
        min-height: 300px;
    }

    & .popup-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
}

//core-wrapper2
.core-wrapper2 {
    @media #{$laptop} {
        padding-left: 0;
    }

    @media #{$lg} {
        padding-left: 0;
    }

    @media #{$md} {
        padding-left: 0;
    }

    @media #{$xs} {
        padding-left: 0;
    }
}

.features-bg {
    background: url(../img/feature/feature-bg1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 20px;

    @media #{$xs} {
        display: block;
    }

    li {

        &:first-child,
        &:nth-child(3) {
            margin-top: -20px;
        }
    }
}

.single-feature2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: $white;
    padding: 25px 35px 27px 30px;
    position: relative;
    z-index: 1;

    @media #{$lg} {
        padding: 25px 10px 25px 10px;
    }

    @media #{$xs} {
        padding: 25px 15px 25px 15px;
        margin-bottom: 20px;
    }

    @media #{$sm} {
        padding: 25px 25px 25px 25px;
        margin-bottom: 20px;
    }

    &::before {
        content: " ";
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        width: 100%;
        height: 0px;
        line-height: 40px;
        background: transparent;
        @include transition(0.3s);
        z-index: -1;
    }

    h2 {
        color: #c4cdd2;
        font-size: 40px;
        margin-right: 20px;
    }

    h6 {
        line-height: 22px;
    }

    &:hover {
        &::before {
            background: $theme-color;
            height: 2px;
        }

        h2 {
            color: $theme-color;
        }
    }
}

.feature-img-wrapper {
    position: relative;
    z-index: 1;

    .feature-one {
        position: absolute;
        z-index: 2;

        &.two {
            border: 10px solid $white;
            right: 0;
            top: 180px;

            @media #{$md} {
                top: 0;
            }

            @media #{$xs} {
                display: none;
            }
        }

        &.three {
            right: 50px;
            top: 20px;
            animation: float-bob-x infinite 5s linear;
            -webkit-animation: float-bob-x infinite 5s linear;
        }
    }
}

//core-feature-area2
.feature-number {
    font-size: 120px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: $theme-color;

    @media #{$md} {
        font-size: 80px;
    }

    @media #{$xs} {
        font-size: 50px;
        text-align: center;
    }
}

.features-title {
    font-size: 40px;
    line-height: 1.2;

    @media #{$lg} {
        font-size: 30px;
    }

    @media #{$md} {
        font-size: 30px;
    }

    @media #{$xs} {
        font-size: 20px;
    }
}

.tab-wrapper2 {
    .nav-tabs {
        border: 0;
        display: block;
        width: 100%;

        .nav-link {
            text-align: start;
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: #b1b5b8;
            border: 0;
            border-bottom: 1px solid rgb(240, 240, 240);
            position: relative;
            width: 93%;
            padding: 24px 0 22px 0;

            @media #{$lg} {
                font-size: 16px;
                padding: 24px 0px 25px 0;
            }

            @media #{$xs} {
                font-size: 16px;
                padding: 24px 10px 25px 0;
            }

            img {
                margin-right: 18px;
                transform: translateY(-2px);
                -webkit-transform: translateY(-2px);
                -moz-transform: translateY(-2px);
                -ms-transform: translateY(-2px);
                -o-transform: translateY(-2px);
            }

            i {
                float: right;
            }

            &.active {
                color: $heding;
            }
        }
    }
}

.content-box {
    p {
        @media #{$md} {
            margin-bottom: 5px;
        }
    }

    .text-content {
        @media #{$lg} {
            padding-left: 0;
        }

        @media #{$md} {
            padding-left: 0;
        }

        @media #{$xs} {
            padding-left: 0;
        }
    }

    .text-list {
        margin: 0;

        li {
            font-size: 16px;
            font-weight: 500;
            padding-left: 30px;
            margin-bottom: 15px;

            @media #{$lg} {
                margin-bottom: 8px;
            }

            @media #{$md} {
                font-size: 15px;
            }

            &::before {
                background: transparent;
                font-weight: 400;
                left: 0;
                width: unset;
                height: unset;
            }
        }
    }
}

.video-bg-1 {
    background: url(../img/video/video-bg1.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;

    @media #{$lg} {
        min-height: 550px;
    }

    @media #{$md} {
        min-height: 450px;
    }

    @media #{$xs} {
        min-height: 400px;
    }
}

.tittle-inner {
    text-align: center;

    .h1 {
        color: blue;
    }
}

.core-feature-area2 {
    &.home-4 {
        .container {
            h2 {
                color: #333333;
            }

            .nav {
                .nav-link {
                    background: none;
                    color: #b1b5b8;

                    &:hover {
                        color: #0030b8;
                    }

                    &.active {
                        color: #0030b8;
                    }
                }
            }
        }
    }
}

.features-area.home-5 {
    background-color: #FFEFEF;
    @media(max-width:576px){
        padding-bottom: 0;
    }

    .container {
        .title-inner {
            position: relative;

            .sect-title5 {
                font-size: 66px;
                color: #040404;
                padding: 60px 0px 4px 11px;
                position: relative;

                @media(max-width:1200px) {
                    font-size: 43px;
                }

                @media(max-width:992px) {
                    font-size: 40px;
                }

                @media(max-width:450px) {
                    font-size: 25px;
                }

                .style-text5 {
                    color: #343A40;
                    font-size: 160px;
                    position: absolute;
                    font-weight: bold;
                    background: linear-gradient(0deg, rgba(2, 0, 36, 0) 0%, rgba(255, 255, 255, 0.3281687675) 0%, rgba(0, 0, 0, 0.2077205882) 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    top: -30px;

                    @media(max-width:1200px) {
                        font-size: 100px;
                        top: 0;
                    }

                    @media(max-width:992px) {
                        font-size: 95px;
                        top: 0;
                    }

                    @media(max-width:450px) {
                        font-size: 60px;
                        top: 20px;
                    }
                }

            }

            h6 {
                font-size: 16px;
                font-weight: bold;
                color: #BA0B0B;
                margin: 0px 0px 0px 13px;
                position: relative;

                @media(max-width:992px) {
                    font-size: 13px;
                }

                @media(max-width:450px) {
                    font-size: 10px;
                }
            }
        }

        .rttab-main {
            padding-top: 50px;

            .nav {
                &.nav-tabs {
                    border: none;

                    .nav-link {
                        background-color: #FFF5F5;
                        text-align: start;
                        display: block;
                        font-size: 18px;
                        font-weight: bold;
                        padding: 20px 15px 15px 30px;
                        color: #040404;
                        border: 0;
                        border-bottom: 1px solid #f0f0f0;
                        position: relative;
                        width: 93%;
                        margin-bottom: 10px;
                        transition: all 0.5s ease-in-out;

                        @media(max-width:450px) {
                            font-size: 16px;
                            padding: 10px 17px 15px 30px;
                        }

                        &.active {
                            color: #000;
                            transform: translateX(20px);
                        }

                        &:hover {
                            color: #000;
                            background-color: #fff;
                            transform: translateX(20px);
                        }

                        i {
                            float: right;
                        }
                    }
                }
            }

            .tab-content {
                position: relative;

                .before-image {
                    position: absolute;
                    z-index: 5;
                    border-radius: 5px;
                    left: 0;
                    top: 0;

                    @media(max-width:450px) {
                        width: 50%;
                    }
                }

                .after-image {
                    position: absolute;
                    z-index: 5;
                    right: 0;
                    bottom: 0;

                    @media(max-width:450px) {
                        width: 50%;
                    }
                }
            }
        }

        .brand-section {
            position: relative;
            top: 162px;
            padding: 28px 20px 27px 40px;
            @media(max-width:576px){
                top: 75px;
            }
        }

        .content {
            background-color: #FFFFFF;
            box-shadow: -16px 15px 65px -32px;
            padding: 27px 20px 27px 40px;

            @media(max-width:450px) {
                padding: 20px 20px 20px 30px;
            }

            h3 {
                color: #000;
                font-size: 25px;

                @media(max-width:1200px) {
                    font-size: 22px;
                }

                @media(max-width:768px) {
                    font-size: 15px;
                }
            }
        }

        .brand-button {
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
            padding: 24px;
            background-color: #B81313;
            cursor: pointer;
            border-radius: 5px 5px 5px 5px;
            transition: all 0.4s ease-in-out;

            &:hover {
                background: #000;
            }

            @media(max-width:1280px) {
                padding: 23px 14px;
            }

            @media(max-width:991px) {

                max-width: 220px;
                margin: 0 auto;
                margin-top: 15px;
            }

            @media(max-width:768px) {
                font-size: 14px;
                padding: 20px 14px;
            }

            @media(max-width:450px) {
                max-width: 125px;
                font-size: 10px;
                padding: 10px;
            }
        }
    }
}

.feature-area.features-bg {

    &.home-6 {
        background: none;
        padding-bottom: 90px;
        .container {
            .core-wrapper2 {
                .section-title {
                    .sect-title {
                        color: #3E4494;

                        @media(max-width:1400px) {
                            font-size: 50px;
                        }

                        @media(max-width:1200px) {
                            font-size: 45px;
                        }

                        @media(max-width:767px) {
                            font-size: 25px;
                        }
                    }

                    strong {
                        color: #3E4494;
                    }
                }

                .feature-list2 {
                    display: flex;
                    margin: 10px 80px 10px 0px;
                    padding: 30px 0px 30px 0px;

                    .services-icon {
                        padding: 0;
                        width: 80px;

                        img {
                            width: 71px;
                            height: 70px;

                            @media(max-width:500px) {
                                width: 61px;
                                height: 60px;
                            }
                        }
                    }

                    .services-text {
                        padding: 0;
                        margin: 0;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        width: 100%;

                        .services-title {
                            position: relative;

                            .title {
                                color: #3E4494;
                                padding: 0 0 0 35px;
                                max-width: 250px;
                                margin: 0;
                                font-size: 20px;
                                line-height: 30px;

                                @media(max-width:500px) {
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }

                .feature-list3 {
                    display: flex;
                    margin: 10px 80px 10px 0px;
                    padding: 30px 0px 30px 0px;
                    border-style: solid;
                    border-width: 1px 0px 0px 0px;
                    border-color: #E8E8E8;

                    .services-icon {
                        padding: 0;
                        width: 80px;

                        img {
                            width: 71px;
                            height: 70px;

                            @media(max-width:500px) {
                                width: 61px;
                                height: 60px;
                            }
                        }
                    }

                    .services-text {
                        padding: 0;
                        margin: 0;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        width: 100%;

                        .services-title {
                            position: relative;

                            .title {
                                color: #3E4494;
                                padding: 0 0 0 35px;
                                max-width: 250px;
                                margin: 0;
                                font-size: 20px;
                                line-height: 30px;

                                @media(max-width:500px) {
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }

                .features-button {
                    margin-top: 40px;

                    @media(max-width:991px) {
                        margin-bottom: 50px;
                    }

                    .btn-text {
                        width: 200px;
                        padding: 21px 40px 21px 40px;
                        font-size: 16px;
                        font-weight: 700;
                        text-align: center;
                        color: #fff;
                        background-color: #3E4494;
                        border-color: #f5f5f5;
                        border-style: solid;
                        border-width: 2px;
                        border-radius: 5px;
                        transition: all .3s ease-in-out;

                        &:hover {
                            color: #3E4494;
                            background-color: #fff;
                        }
                    }
                }
            }

            .feature-img-wrapper {
                .img-fluid.one {
                    max-width: 100%;
                    height: auto;

                    @media(max-width:768px) {
                        width: 100%;
                    }
                }

                .feature-one.two {
                    border: 10px solid #ffffff;
                    right: 0;
                    top: 180px;

                    @media(max-width:1200px) {
                        display: block;
                        width: 70%;
                    }

                    @media(max-width:992px) {
                        display: block;
                        width: 40%;
                        left: 140px;
                    }

                    @media(max-width:768px) {
                        display: block;
                        width: 55%;
                        left: 120px;
                    }

                    @media(max-width:500px) {
                        display: block;
                        width: 62%;
                        left: 110px;
                    }

                }

                .feature-one.three {
                    @media(max-width:500px) {
                        display: none;
                    }
                }
            }
        }
    }

}

.feature-area.home-7 {
    .container {
        .feature-img-wrapper3 {
            max-width: 100%;

            img {
                width: 100%;
            }
        }

        .feature-content-wrapper2 {
            padding-left: 20px;

            .section-title2 {
                .semi-title2 {
                    color: #FFFFFF;
                    font-size: 14px;
                    font-weight: bold;
                    background-color: #91c330;
                    padding: 5px 10px;
                }

                .sect-title2 {
                    font-size: 60px;
                    color: #201D1D;
                    margin: 10px 0px 10px 0px;

                    @media(max-width:1200px) {
                        font-size: 55px;
                        margin: 10px 0px 25px 0px;
                    }

                    @media(max-width:768px) {
                        font-size: 45px;
                    }

                    @media(max-width:578px) {
                        font-size: 30px;
                    }
                }
            }

            .feature-wrapper {
                border-bottom: 1px solid #dadada;

                .style-text7 {
                    color: #91c330;
                    font-size: 80px;
                    font-weight: bold;
                    padding: 10px 25px 10px 10px;

                    @media(max-width:1200px) {
                        font-size: 50px;
                    }

                    @media(max-width:500px) {
                        font-size: 45px;
                    }
                }

                .content-text {
                    padding: 15px;

                    .title {
                        font-size: 20px;
                        font-weight: bold;
                        color: #201D1D;
                        padding-bottom: 10px;
                    }

                    p {
                        font-size: 16px;
                        font-weight: 400;
                        color: #777777;
                        margin: 0px 0px 15px 0px;
                    }
                }
            }

            .feature-wrapper2 {
                border-bottom: 1px solid #dadada;

                .style-text7 {
                    color: #91c330;
                    font-size: 80px;
                    font-weight: bold;
                    padding: 10px 25px 10px 10px;

                    @media(max-width:1200px) {
                        font-size: 50px;
                    }

                    @media(max-width:500px) {
                        font-size: 45px;
                    }
                }

                .content-text {
                    padding: 30px 15px 15px 15px;

                    .title {
                        font-size: 20px;
                        font-weight: bold;
                        color: #201D1D;
                        padding-bottom: 10px;
                    }

                    p {
                        font-size: 16px;
                        font-weight: 400;
                        color: #777777;
                        margin: 0px 0px 15px 0px;
                    }
                }

            }

            .feature-wrapper3 {
                .style-text7 {
                    color: #91c330;
                    font-size: 80px;
                    font-weight: bold;
                    padding: 10px 25px 10px 10px;

                    @media(max-width:1200px) {
                        font-size: 50px;
                    }

                    @media(max-width:500px) {
                        font-size: 45px;
                    }
                }

                .content-text {
                    padding: 30px 15px 15px 15px;

                    .title {
                        font-size: 20px;
                        font-weight: bold;
                        color: #201D1D;
                        padding-bottom: 10px;
                    }

                    p {
                        font-size: 16px;
                        font-weight: 400;
                        color: #777777;
                        margin: 0px 0px 15px 0px;
                    }
                }
            }
        }
    }
}

.features-area2.home-7 {

    .container {

        .rttab-main {
            padding-top: 50px;

            .nav {
                display: block;

                &.nav-tabs {
                    border: none;


                    .nav-item {
                        text-align: center;
                        align-items: center;
                        margin: 30px 15px 0px 15px;
                        width: 185px;

                        .nav-link {

                            display: block;
                            font-size: 14px;
                            font-weight: bold;
                            padding: 30px 10px 30px 10px;
                            border-width: 1px !important;
                            border-style: solid !important;
                            border-color: #E9E9E9 !important;
                            border-radius: 8px;
                            box-shadow: 0 0 10px 1px rgba(233, 233, 233, 0.6);
                            color: #040404;
                            border: 0;
                            position: relative;
                            width: 93%;
                            margin-bottom: 10px;
                            transition: all 0.5s ease-in-out;

                            &.active {
                                border-color: #91c330 !important;
                            }

                            .tab-title {
                                margin-top: 20px;
                            }

                            @media(max-width:450px) {
                                font-size: 11px;
                                padding: 10px 17px 15px 30px;
                            }

                        }
                    }
                }
            }

            .tab-content {
                padding: 40px;
                border: 1px solid rgb(236, 236, 236);
                border-radius: 8px;

                .tab-pane {
                    &.active {
                        animation: slide-down 2s ease-out !important;
                    }

                    .contact-input-wrapper {
                        .section-title {
                            .sect-title {
                                font-size: 30px;
                                font-weight: bold;
                                color: #201D1D;
                                margin: 0 0 10px 0;
                                @media(max-width:576px){
                                    margin: 20px 0 10px 0;
                                }
                            }

                            .description {
                                font-size: 16px;
                                font-weight: 400;
                                color: #777777;
                                margin: 0 0 20px 0;
                            }
                        }

                        .contact-form2 {
                            .input-box {
                                position: relative;
                                z-index: 1;

                                &::before {
                                    content: "\f007";
                                    position: absolute;
                                    font-family: "Font awesome 5 Pro";
                                    font-size: 16px;
                                    color: #91c330;
                                    left: 28px;
                                    top: 17px;
                                    z-index: 2;
                                }

                                &.mail-input {
                                    &::before {
                                        content: "\f0e0";
                                    }
                                }

                                &.number-input {

                                    input[type=number]::-webkit-inner-spin-button,
                                    input[type=number]::-webkit-outer-spin-button {
                                        -webkit-appearance: none;
                                        margin: 0;
                                    }

                                    &::before {
                                        content: "\f879";
                                    }
                                }

                                &.insurance-type {
                                    &::before {
                                        content: "\f4be";
                                    }
                                }
                            }

                            input {
                                color: #c3c3c3;
                                font-size: 14px;
                                border: 1px solid rgb(236, 236, 236);
                                background-color: #FFFFFF;
                                position: relative;
                                width: 100%;
                                height: 58px;
                                z-index: 1;
                                padding-left: 55px;

                                &:focus {
                                    color: $heding;
                                }

                                &::placeholder {
                                    color: #c3c3c3;
                                }

                                &::-moz-placeholder {
                                    color: #c3c3c3;
                                }

                                &::-webkit-placeholder {
                                    color: #c3c3c3;
                                }

                                &::-o-placeholder {
                                    color: #c3c3c3;
                                }
                            }

                            textarea {
                                color: #c3c3c3;
                                font-size: 14px;
                                border: 1px solid rgb(236, 236, 236);
                                background-color: #FFFFFF;
                                position: relative;
                                width: 100%;
                                height: 180px;
                                z-index: 1;
                                padding-left: 55px;
                                padding-top: 16px;
                                resize: none;
                                position: relative;
                                z-index: 1;

                                .text-input {
                                    &::before {
                                        content: "\f007";
                                        left: 28px;
                                        top: 20px;
                                    }
                                }

                                &:focus {
                                    color: $heding;
                                }

                                &::placeholder {
                                    color: #c3c3c3;
                                }

                                &::-moz-placeholder {
                                    color: #c3c3c3;
                                }

                                &::-webkit-placeholder {
                                    color: #c3c3c3;
                                }

                                &::-o-placeholder {
                                    color: #c3c3c3;
                                }
                            }
                        }

                        .select-insurance {
                            color: #c3c3c3;
                            font-size: 14px;
                            border: 1px solid #ececec;
                            background-color: white;
                            position: relative;
                            width: 100%;
                            height: 58px;
                            z-index: 1;
                            padding-left: 55px;
                            line-height: 52px;
                            border-radius: 0px;
                            -webkit-border-radius: 0px;
                            -moz-border-radius: 0px;
                            -ms-border-radius: 0px;
                            -o-border-radius: 0px;

                            &::after {
                                border: 0;
                                content: "\f078";
                                position: absolute;
                                font-family: "Font awesome 5 Pro";
                                font-size: 16px;
                                font-weight: 300;
                                right: 30px;
                                top: 60%;
                                transform: translateY(-52%);
                                z-index: 1;
                                -webkit-transform: translateY(-52%);
                                -moz-transform: translateY(-52%);
                                -ms-transform: translateY(-52%);
                                -o-transform: translateY(-52%);
                            }

                            &.open {
                                &::after {
                                    top: 48%;
                                    transform: rotate(-180deg);
                                    -webkit-transform: rotate(-180deg);
                                    -moz-transform: rotate(-180deg);
                                    -ms-transform: rotate(-180deg);
                                    -o-transform: rotate(-180deg);
                                }
                            }
                        }

                        .input-box.insurance-type {
                            position: relative;
                            z-index: 11;

                            &::before {
                                z-index: 11;
                            }
                        }

                        .select-insurance {
                            color: #c3c3c3;
                            font-size: 14px;
                            border: 1px solid #ececec;
                            background-color: white;
                            position: relative;
                            width: 100%;
                            height: 58px;
                            z-index: 1;
                            padding-left: 55px;
                            line-height: 52px;
                            border-radius: 0px;
                            -webkit-border-radius: 0px;
                            -moz-border-radius: 0px;
                            -ms-border-radius: 0px;
                            -o-border-radius: 0px;

                            &::after {
                                border: 0;
                                content: "\f078";
                                position: absolute;
                                font-family: "Font awesome 5 Pro";
                                font-size: 16px;
                                font-weight: 300;
                                right: 30px;
                                top: 15%;
                                transform: translateY(-18%);
                                z-index: 1;
                                -webkit-transform: translateY(-18%);
                                -moz-transform: translateY(-18%);
                                -ms-transform: translateY(-18%);
                                -o-transform: translateY(-18%);
                            }

                            &:active,
                            &.open,
                            &:focus {
                                border-color: #ececec;
                            }

                            &.open {
                                border-color: 0;

                                &:active,
                                &:focus {
                                    border-color: 0;
                                }

                                .list {
                                    width: 100%;
                                    position: absolute;
                                    z-index: 100;
                                }

                                &::after {
                                    top: 52px;
                                    transform: rotate(-180deg);
                                    -webkit-transform: rotate(-180deg);
                                    -moz-transform: rotate(-180deg);
                                    -ms-transform: rotate(-180deg);
                                    -o-transform: rotate(-180deg);
                                }
                            }
                        }

                        .form-btn {
                            background: #91c330;
                            color: #FFFFFF;
                            font-size: 16px;
                            font-weight: 700;
                            line-height: 1;
                            margin-top: 10px;
                            padding: 21px 40px;
                            border-radius: 5px;
                            border: 0;
                            @include transition(0.3s);

                            & i {
                                @include transition(0.3s);
                            }

                            &:hover {
                                background: #201D1D;

                                & i {
                                    transform: translateX(5px);
                                    -webkit-transform: translateX(5px);
                                    -moz-transform: translateX(5px);
                                    -ms-transform: translateX(5px);
                                    -o-transform: translateX(5px);
                                }
                            }
                        }

                    }
                }
            }
        }
    }
}