<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Oswald:wght@200..700&amp;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

/***** General CSS *****/

.heading {
    text-align: center;
    margin: 0 0 50px 0;
}

.heading h4 {
    font-family: "Montserrat", system-ui;
}

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

/* Buttons css Starts */

    .theme1 {
        border: 1px solid #0000!important;
        text-align: center;
        position: relative;
        overflow: hidden!important;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        background: #25a0fe!important;
        z-index: 10;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        padding: 0 30px;
        height: 50px;
        /* border-radius: 10px; */
        font-size: 16px;
        font-family: 'Montserrat';
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .theme1:hover {
        border: 1px solid #fff!important;
        color: #fff!important
    }

    .theme1::before {
        content: '';
        width: 0%;
        height: 100%;
        display: block;
        background: #000;
        position: absolute;
        -ms-transform: skewX(-20deg);
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
        left: -10%;
        opacity: 1;
        top: 0;
        z-index: -12;
        -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
        -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
        -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
        transition: all .7s cubic-bezier(.77, 0, .175, 1);
        box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
        border-color: #a30000!important
    }

    .theme1::after {
        content: '';
        width: 0%;
        height: 100%;
        display: block;
        background: #fff;
        position: absolute;
        -ms-transform: skewX(-20deg);
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
        left: -10%;
        opacity: 0;
        top: 0;
        z-index: -15;
        -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
        -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
        -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
        transition: all .4s cubic-bezier(.2, .95, .57, .99);
        box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
        border-color: #a30000!important
    }

    .theme1:hover::before,
    .btn1O:hover::before {
        opacity: 1;
        width: 116%
    }

    .theme1:hover::after,
    .btn1O:hover::after {
        opacity: 1;
        width: 120%
    }







    .theme2 {
        font-size: 16px;
        line-height: 20px;
        font-family: 'Oswald';
        text-transform: uppercase;
        color: #25a0fe;
        position: relative;
        font-weight: 500;
        transition: ease-in;
        transition-duration: 0.2s;
    }
    
    .theme2:hover {
        color: #000;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .theme2::before {
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: 0;
        width: 100%;
        border-bottom: 1px solid #25a0fe;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .theme2:hover::before {
        width: 0;
        transition: ease-in;
        transition-duration: 0.2s;
    }



























/* Buttons css Ends */

/* Animation css Starts */

    @keyframes pulse-animation {
        0% {
            box-shadow: 0 0 0 0px #193c56;
            ;
        }

        100% {
            box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.05);
        }
    }

/* Animation css Ends */


.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Oswald", system-ui;
    font-size: 75px;
    line-height: 97px;
    color: #fff;
    font-weight: 400;
    margin: 10px 0;
    text-shadow: 2px 2px 3px #00000061;
}

h2 {
    font-family: "Oswald", system-ui;
    font-size: 90px;
    line-height: 95px;
    color: #000;
    font-weight: 400;
    margin: 10px 0;
}

h3 {
    font-family: "Oswald", system-ui;
    font-size: 60px;
    line-height: 65px;
    color: #000000;
    font-weight: 400;
    margin: 10px 0;
}

h4 {
    font-family: "Oswald", system-ui;
    font-size: 40px;
    line-height: 45px;
    color: #000;
    font-weight: 400;
    margin: 10px 0;
}

h5 {
    font-family: "Montserrat", system-ui;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 10px 0;
}

h6 {
    font-family: "Oswald", system-ui;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 10px 0;
}

p {
    color: #000;
    font-size: 13px;
    line-height: 20px;
    font-family: "Montserrat", system-ui;
    font-weight: 400;
    margin: 10px 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
header {
    padding: 0;
}
.menuSec {
    padding: 15px 0;
    background-color: #151515;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 0 28px;
    font-size: 16px;
    line-height: 40px;
    font-family: 'Montserrat';
    font-weight: 300;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.2s;
}

.menuSec ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 0;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.menuSec ul li a:hover::before {
    width: 100%;
    transition: ease-in;
    transition-duration: 0.2s;
}




.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover&gt;ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li&gt;ul&gt;li&gt;a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li&gt;ul&gt;li,
.menuSec li&gt;ul&gt;li&gt;a {
    display: block;
    margin: 0;
}

.menuSec li&gt;ul&gt;li&gt;a:before,
.menuSec li&gt;ul&gt;li&gt;a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li&gt;ul&gt;li:hover&gt;ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.topSec {
    background-color: #25a0fe;
    padding: 15px 0;
}

.top-bar-txt h6 {
    font-family: "Montserrat", system-ui;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
    color: #fff;
    margin: 0;
    font-weight: 400;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}



/*header css start */

/*banner css start */

section.main_slider {
    position: relative;
}

.main-banner-img {
    width: 90%;
    object-fit: cover;
    height: 100vh;
}

.carousel-inner&gt;.item&gt;a&gt;img,
.carousel-inner&gt;.item&gt;img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 90%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgb(0 0 0 / 49%);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


.play-btn a p {
    color: #fff;
}

.play-btn a img {
    animation: pulse-animation 2s infinite;
    border-radius: 50%;
}

.play-btn a {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    background-color: #25a0fe;
    padding: 15px;
    border-radius: 100px;
}

.banner_text {
    text-align: center;
    margin: 20px 0;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_text p {
    font-size: 25px;
    line-height: 40px;
    color: #fff;
    width: 75%;
    margin: 0 auto;
}

.banner_text {
    text-align: center;
    margin: 20px auto;
    width: 73%;
}

.banner-socials-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 80vh;
    z-index: 1;
    background-color: #151515;
    display: flex;
    align-items: end;
    justify-content: center;
}

.banner-socials {
    position: relative;
    margin: 0 0 60px 0;
}

.carousel-control-prev, .carousel-control-next {
    width: 30px;
    height: 80px;
}

.carousel-control-prev-icon, .carousel-control-next-icon{
    width: 30px;
    height: 80px;
}

.carousel-control-prev-icon {
    background-image: url('../images/banner-arrow-left.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.carousel-control-next-icon {
    background-image: url('../images/banner-arrow-right.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.carousel-control-prev {
    left: unset;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.carousel-control-next {
    top: unset;
    bottom: 0;
    right: unset;
    left: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner-socials ul {
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 0;
    height: 330px;
}

.banner-socials ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid #fff;
    border-radius: 100px;
    color: #fff;
    font-size: 20px;
    transition: ease-in;
    transition-duration: 0.2s;
}

.banner-socials ul li a i:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.2s;
}

/*banner css end*/


/*Inner Banner css Starts*/

    section.inner-banner .banner_text h1 {
        font-size: 120px;
        line-height: 125px;
    }

    section.inner-banner .carousel-inner::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 350px;
        background-color: #151515;
    }

    section.inner-banner .carousel-item.active {
        height: 460px;
    }

    section.inner-banner .main-banner-img {
        height: 60vh;
        object-position: 60% 40%;
    }
    
/*Inner Banner css Ends*/


/*About Us Sec css Starts*/

    .about-txt h3 span {
        display: flex;
    }

    .about-txt p {
        margin: 30px 0 20px 0;
    }

    .about-img img {
        height: 722px;
        width: 100%;
        object-fit: cover;
        object-position: 30%;
    }

    .about-txt h4 {
        color: #000;
        padding: 10px 0;
    }

    span.txt-bg {
        position: relative;
    }.content-bottom br {
    display: none;
}   

    span.txt-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: -30px;
        width: 105%;
        height: 100%;
        background: #25a0fe;
        z-index: -1;
    }
    
    
/*About Us Sec css Ends*/

/*Services Sec css Starts*/

    section.services-sec {
        background-color: #fbfaf9;
    }

    .before-and-after-sec-img img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 600px;
        width: 100%;
        border-radius: 300px;
        object-fit: cover;
        object-position: 40%;
    }

    #comparison {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    /* .before-and-after-effect {
        position: relative;
        padding: 20px 0;
    } */

    /* .before-and-after-effect::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        margin: 0 auto;
        background-image: url("../images/before-and-after-effect-slider-bg.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    } */

    .before-and-after-effect figure {
        position: absolute;
        background-image: url("../images/baf-img1.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    #divisor {
        background-image: url("../images/baf-img2.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisor::before,
    #divisor::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisor::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisor::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handle {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handle::before,
    #handle::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handle::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handle::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }

    .before-and-after-effect input[type=range] {
        -webkit-appearance: none;
        -moz-appearance: none;
        position: absolute;
        top: 50%;
        left: -25px;
        transform: translateY(-50%);
        background-color: transparent;
        width: calc(100% + 50px);
        z-index: 2;
    }

    .before-and-after-effect input[type=range]:focus,
    .before-and-after-effect input[type=range]:active {
        border: none;
        outline: none;
    }

    .before-and-after-effect input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        border: none;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        background: #fff;
    }

    .before-and-after-effect input[type=range]::-moz-range-track {
        -moz-appearance: none;
        height: 15px;
        width: 100%;
        background-color: transparent;
        position: relative;
        outline: none;
    }

    .services-card-txt {
        padding: 20px 50px;
        background-color: #fff;
        position: relative;
        z-index: 9;
    }

    #comparisonEx {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-ex figure {
        position: absolute;
        background-image: url("../images/baf-img3.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    
    #divisorEx {
        background-image: url("../images/baf-img4.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorEx::before,
    #divisorEx::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorEx::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorEx::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleEx {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleEx::before,
    #handleEx::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleEx::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleEx::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }

    .services-card-main {
        width: 95%;
        position: relative;
        margin: 0 0 80px 0;
    }
    
    .services-card-main::before {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -32px;
        border: 1px solid #00000054;
        width: 100%;
        height: 650px;
    }


/*Services Sec css Ends*/

/*Faqs Tabs Sec css Starts*/

    .gorilla-content .accordion-button.collapsed {
        padding: 19px 22px;
        background-color: #fff;
        color: #000;
        font-size: 25px;
        line-height: 30px;
        border-radius: 0px !important;
        font-weight: 400;
        text-transform: capitalize;
        font-family: "Oswald", system-ui;
    }

    .gorilla-content .accordion-button {
        padding: 22px 22px;
        line-height: 30px;
        border-radius: 0px !important;
        text-transform: capitalize;
        background: no-repeat;
        color: #000;
        font-size: 25px;
        line-height: 30px;
    }
    .faq-heading h2 {
        color: #000;
    }

    .gorilla-content .gorrila-page-txt .color-red {
    color: #A60000;
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 30px;
    }

    .gorrila-page-txt ul {
        list-style: disc;
    }
    .gorrila-page-txt ul li{
    color: #000000;
    font-size: 14px;
    line-height: 23px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    margin-left: 15px;
    }
    .gorrila-page-txt ul li::marker {
    color: #000;
    }

    .accordion-body.gorrila-page-txt {
        padding: 0px 20px 20px;
        background: #ffffff;
        border: unset !important;
        border-top: none;
    }

    .gorilla-content .accordion-item {
        margin-bottom: 25px;
        border: 1px solid #000;
    }
    .accordion-button::after {
        content: "\f067" !important;
        font-family: 'Font Awesome 5 Free';
        position: absolute !important;
        width: 45px;
        height: 45px;
        right: 25px;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #25a0fe;
        color: #fff;
        border-radius: 100px;
        font-weight: 600 !important;
    }
    .accordion-button:not(.collapsed)::after {
        content: "\f068" !important;
    }
    .gorilla-content  .accordion-button:not(.collapsed){
    box-shadow: none;
    /* border: 1px solid; */
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    }

    .accordion-collapse.collapse {
    /* border: 1px solid #A60000; */
    border-top: 0;
    border-radius: 0 0 10px 10px;
    /* margin-bottom: 30px; */
    }


    .gorilla-content  button:focus:not(:focus-visible){
    box-shadow: none;
    }

    .gorilla-content .accordion-button::after{
    content: '\f067';
    font-weight: 900;
    font-family: 'Font Awesome 5 free';
    background-image: none;

    }

    .accordion-button:not(.collapsed)::after{
    content: '\f068';
    font-weight: 900;
    font-family: 'Font Awesome 5 free';
    }

    .accordion-header {
        margin: 0;
    }

    .tab-content {
        margin: 50px 0;
    }

    .faqs-img-mian img {
        height: 534px;
        width: 100%;
        object-fit: cover;
    }

    .faqs-tab-main .nav {
        justify-content: center;
        margin: 20px 0 !important;
        gap: 20px;
    }

    .faqs-tab-main .nav-pills .nav-link {
        font-size: 20px;
        line-height: 30px;
        text-transform: uppercase;
        color: #333333;
        border: 1px solid #333333;
        border-radius: 0;
        padding: 0 20px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .faqs-tab-main .nav-pills button.nav-link.active {
        background: #25a0fe;
        color: #fff;
        border: 1px solid #0000;
    }

/*Faqs Tabs Sec css Ends*/

/*Gallery Sec css Starts*/

    .gallery-card-txt h4 {
        font-size: 46px;
        line-height: 50px;
        color: #fff;
        margin: 0;
    }

    .gallery-card-video {
        text-align: center;
    }

    .gallery-card-img img {
        height: 400PX;
        object-fit: cover;
    }
    
    section.gallery-sec .slick-current {
        width: 600px !important;
        margin: 0 auto;
    }

    .gallery-card-img-main {
        position: relative;
    }
    
    .gallery-card-img-main::Before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #000000a1;
        z-index: 0;
    }

    .gallery-card-video {
        text-align: center;
        position: absolute;
        z-index: 9;
        top: 38%;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    section.gallery-sec .slick-slide {
        opacity: 1 !important;
    }

    section.gallery-sec .slick-current .gallery-card-video {
        display: block !important;
    }

    section.gallery-sec .slick-slide .gallery-card-video {
        display: none;
    }

    section.gallery-sec .slick-slide .gallery-card-img-main::Before {
        background-color: #0000;
    }

    section.gallery-sec .slick-current .gallery-card-img-main::Before {
        background-color: #0000006b;
    }

    section.gallery-sec .slick-list.draggable {
        height: 400px;
    }
    
/*Gallery Sec css Ends*/


/* Testimonial Section Start */

    .client-say-sec {
        padding: 100px 0;
        position: relative;
    }

    .ch-img {
        position: absolute;
        top: 60px;
        right: 0;
    }

    .client-say-sec .container-fluid {
        padding: 0;
    }

    .client-box::before {
        content: '\f10e';
        font-family: 'Font Awesome 5 Free';
        font-weight: 600;
        color: #fff;
        position: absolute;
        left: 0;
        top: 0;
        height: 100px;
        width: 100px;
        background-color: #25a0fe;
        clip-path: polygon(0 0, 0% 100%, 100% 0);
        font-size: 25px;
        padding: 15px 0 0 20px;
    }

    .client-box::after {
        content: '\f10e';
        font-family: 'Font Awesome 5 Free';
        font-weight: 600;
        color: #e6e8ea;
        position: absolute;
        right: 20px;
        bottom: 20px;
        font-size: 65px;
        opacity: 0.5;
    }

    .client-box {
        position: relative;
        box-shadow: 0 0 10px 0 #00000022;
        padding: 50px 30px;
        margin: 10px 0;
    }

    .client-box ul {
        display: flex;
        width: 80%;
        margin: 0% auto;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        gap: 10px;
    }

    .client-box ul li img {
    display: flex;
    align-items: center;
    justify-content: start;
    border-radius: 100px;
    height: 100px;
    width: 100px;
    object-fit: cover;
    border: 3px solid #2a7baf;
    }

    .client-box ul li h4 {
        margin: 0;
        color: #000;
        font-size: 24px;
    }

    .client-box ul li h5 {
        color: #6f6f6f;
        font-size: 18px;
        font-weight: 500;
        font-family: 'Roboto';
        margin: 8px 0;
    }

    .client-box ul li .d-flex i {
        color: #fd8f00;
    }

    .client-box p {
        color: #6f6f6f;
        font-size: 14px;
        width: 60%;
        margin: 0% auto;
        text-align: center;
        font-family: 'Roboto';
    }

    .client-say-sli .slick-slide {
        opacity: 1;
    }

    h2.themes-h2 {
        text-align: center;
        margin-bottom: 50px;
    }

    .client-say-sli .slick-dots li button:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        border: 1px solid #755040;
        width: 60px;
        height: 10px;
        border-radius: 40px;
        opacity: 1;
    }

    .client-say-sli .slick-dots li {
        position: relative;
        display: inline-block;
        width: 80px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

    .client-say-sli .slick-dots li.slick-active button:before {
        opacity: 5;
        background: #755040;
    }

    .client-say-sli .slick-active {
        opacity: 1;
    }

    .client-say-sli .slick-dots {
        position: absolute;
        bottom: -65px;
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
    }

/* Testimonial Section End */

/* BLogs Section Starts */

    .blog-card-user-txt p {
        color: #6d6a6a;
        font-size: 12px;
        line-height: 20px;
        margin: 0;
    }

    .blog-card-txt h5 {
        font-family: 'Oswald';
        font-size: 25px;
        line-height: 30px;
        font-weight: 400;
        margin: 10px 0 20px 0;
    }

    .blog-card-txt p {
        color: #434242;
        font-size: 15px;
        line-height: 25px;
    }

    .blog-card-bottom-txt ul li p {
        color: #6d6a6a;
        font-size: 12px;
        line-height: 25px;
        margin: 0;
    }

    .blog-card-bottom-txt ul {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 50px;
    }

    .blog-card-bottom-txt {
        padding: 20px 0 0 0;
        margin: 30px 0 0 0;
        border-top: 1px solid #00000042;
    }

    .blog-card-user-img img {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 70px;
        width: 70px;
        border-radius: 100px;
    }

    .blog-card-user {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 20px;
    }

    .blog-card-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px;
        border: 1px solid #00000042;
    }

    .blog-card-img {
        width: 310px;
    }
    .blog-card-img img {
        height: 342px;
        width: 100%;
        object-fit: cover;
    }

    .blog-card-txt {
        width: 47%;
    }
    
    .blog-card-user-txt p, .blog-card-bottom-txt ul li p {
        margin: 0 !important;
    }
    
/* BLogs Section End */

/*Footer Start*/

    .footer-sec {
        background: #000;
        padding: 70px 0px 0px;
    }
    
    .footer-map {
        position: relative;
        border: 1px solid #363636;
        border-right: inherit;
        border-left: inherit;
        margin-top: 100px;
    }
    
    .footer-sec .no-padding {
        padding: 0;
    }
    
    .footer-phone-number a {
        font-size: 20px;
        line-height: 34px;
        color: #fff;
        font-family: "Montserrat", system-ui;
        font-weight: 300;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .footer-phone-number a:hover {
        color: #25a0fe;
        transition: ease-out;
        transition-duration: 0.2s;
    }
    
    .footer-quick-link-sec {
        border-left: 1px solid;
    }
    
    .footer-map iframe {
        width: 100%;
        height: 277px;
        /* filter: invert(1) saturate(0); */
        background-size: cover;
        margin-bottom: -6px;
    }
    
    .social-link ul li a {
        border: 1px solid #373636;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        margin: 0 auto;
        border-radius: 50%;
        height: 45px;
        font-size: 18px;
        color: #b2b2b2;
        margin-bottom: 35px;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .social-link ul li a:hover {
        background-color: #25a0fe;
        color: #fff;
        border: 1px solid #0000;
        transition: ease-in;
        transition-duration: 0.2s;
    }
    
    .social-link {
        border-right: 1px solid #363636;
        padding-top: 120px;
        text-align: center;
        padding-bottom: 80px;
    }
    
    .footer-logo-box {
        position: relative;
        margin: 0;
        z-index: 99;
    }
    
    .footer-quick-link-sec {
        border-left: 1px solid;
        padding-top: 30px;
    }
    
    .footer-new-letter-input input {
        width: 100%;
        height: 55px;
        background: #fff;
        border: none;
        padding: 0 20px;
        color: #000;
        font-family: 'Roboto', sans-serif;
    }
    
    .footer-quick-link {
        padding-left: 40px;
    }
    
    .footer-quick-link h2 {
        font-size: 38px;
        line-height: 50px;
        color: #fff;
        margin: 0;
        text-transform: capitalize;
        letter-spacing: 4px;
    }
    
    .footer-quick-link ul li a {
        font-size: 14px;
        color: #afafaf;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        transition: ease-in;
        transition-duration: 0.2s;
    }

    .footer-quick-link ul li a:hover {
        color: #25a0fe;
        transition: ease-out;
        transition-duration: 0.2s;
    }
    
    .footer-new-letter-input input::placeholder {
        font-size: 15px;
        font-family: 'Montserrat', sans-serif;
        color: #868686;
    }
    
    .footer-new-letter-button button {
        width: 140px;
        height: 55px;
        border: none;
        font-size: 16px;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        color: #fff;
        background-color: #25a0fe;
    }
    
    .footer-new-letter-input {
        position: relative;
        width: 85%;
    }
    
    .copy-right p {
        font-size: 15px;
        margin-bottom: 0;
        font-family: 'Montserrat', sans-serif;
        color: #828282;
        display: inline-block;
    }
    
    .footer-new-letter-button {
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .footer-quick-link ul {
        line-height: 41px;
    }
    
    .-footer-new-letter {
        border-top: 1px solid #363636;
        padding: 18px 0;
        border-bottom: 1px solid #363636;
        padding-left: 40px;
    }
    
    .copy-right {
        /* text-align: center; */
        padding: 25px 0 0 0;
    }
    .card-img {
        text-align: end;
        padding-right: 40px;
    }
    .footer-logo {
        margin: 0 auto -80px auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .t_p {
        margin: 0 20px;
        display: inline-block;
        float: right;
    }
    .footer-phone-number {
        margin-top: 0px;
    }
    .-footer-new-letter h2 {
        color: #fff;
        font-size: 38px;
        letter-spacing: 4px;
    }
    .card-img {
        text-align: end;
        padding-right: 40px;
    }

    .footer-phone-number-main ul {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 60px;
    }
    
/*Footer End*/

/*About Us Sec Starts*/

    section.inner-about-sec .about-txt p {
        line-height: 33px;
    }
    
/*About Us Sec End*/

/*Inner Gallery Sec Starts*/

    #comparisonOne {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-one figure {
        position: absolute;
        background-image: url("../images/baf-img5.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorOne {
        background-image: url("../images/baf-img6.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorOne::before,
    #divisorOne::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorOne::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorOne::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleOne {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleOne::before,
    #handleOne::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleOne::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleOne::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }




    #comparisonTwo {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-two figure {
        position: absolute;
        background-image: url("../images/baf-img7.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorTwo {
        background-image: url("../images/baf-img8.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorTwo::before,
    #divisorTwo::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorTwo::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorTwo::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleTwo {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleTwo::before,
    #handleTwo::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleTwo::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleTwo::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }

    
    #comparisonThree {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-three figure {
        position: absolute;
        background-image: url("../images/baf-img9.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorThree {
        background-image: url("../images/baf-img10.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorThree::before,
    #divisorThree::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorThree::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorThree::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleThree {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleThree::before,
    #handleThree::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleThree::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleThree::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }

    



















    
    #comparisonFour {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-four figure {
        position: absolute;
        background-image: url("../images/baf-img11.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorFour {
        background-image: url("../images/baf-img12.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorFour::before,
    #divisorFour::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorFour::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorFour::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleFour {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleFour::before,
    #handleFour::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleFour::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleFour::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }







    #comparisonFive {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-five figure {
        position: absolute;
        background-image: url("../images/baf-img13.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorFive {
        background-image: url("../images/baf-img14.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorFive::before,
    #divisorFive::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorFive::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorFive::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleFive {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleFive::before,
    #handleFive::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleFive::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleFive::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }













    #comparisonSix {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-six figure {
        position: absolute;
        background-image: url("../images/baf-img15.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorSix {
        background-image: url("../images/baf-img16.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorSix::before,
    #divisorSix::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorSix::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorSix::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleSix {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleSix::before,
    #handleSix::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleSix::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleSix::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }









    #comparisonSeven {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-seven figure {
        position: absolute;
        background-image: url("../images/baf-img17.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorSeven {
        background-image: url("../images/baf-img18.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorSeven::before,
    #divisorSeven::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorSeven::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorSeven::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleSeven {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleSeven::before,
    #handleSeven::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleSeven::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleSeven::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }







    #comparisonEight {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-eight figure {
        position: absolute;
        background-image: url("../images/baf-img20.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorEight {
        background-image: url("../images/baf-img19.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorEight::before,
    #divisorEight::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorEight::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorEight::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleEight {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleEight::before,
    #handleEight::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleEight::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleEight::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }









    #comparisonNine {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-nine figure {
        position: absolute;
        background-image: url("../images/baf-img22.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorNine {
        background-image: url("../images/baf-img21.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorNine::before,
    #divisorNine::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorNine::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorNine::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleNine {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleNine::before,
    #handleNine::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleNine::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleNine::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }










    #comparisonTen {
        width: 100%;
        height: 380px;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

    .before-and-after-effect-Ten figure {
        position: absolute;
        background-image: url("../images/baf-img24.jpg");
        background-size: cover;
        font-size: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }


    #divisorTen {
        background-image: url("../images/baf-img23.jpg");
        background-size: cover;
        position: absolute;
        width: 50%;
        box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
        bottom: 0;
        height: 100%;
    }

    #divisorTen::before,
    #divisorTen::after {
        content: '';
        position: absolute;
        right: -2px;
        width: 4px;
        height: calc(50% - 25px);
        background: white;
        z-index: 3;
    }

    #divisorTen::before {
        top: 0;
        box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, .3);
    }

    #divisorTen::after {
        bottom: 0;
        box-shadow: 0 3px 8px 1px rgba(0, 0, 0, .3);
    }

    #handleTen {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        z-index: 1;
    }

    #handleTen::before,
    #handleTen::after {
        content: '';
        width: 0;
        height: 0;
        border: 6px inset transparent;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        z-index: 99999;
    }

    #handleTen::before {
        border-right: 6px solid #198754;
        left: 50%;
        margin-left: -17px;
        z-index: 99999;
    }

    #handleTen::after {
        border-left: 6px solid #198754;
        right: 50%;
        margin-right: -17px;
        z-index: 99999;
    }



























    li.border-right {
        padding: 0 80px 0 0;
        border-right: 1px solid #ffff;
    }
    
/*Inner Gallery Sec End*/

/*Blog Details Sec Starts*/

    section.blog-det-sec .blog-card-img img {
        height: 610px;
    }

    section.blog-det-sec .blog-card-img {
        width: 555px;
    }

    section.blog-det-sec .blog-card-main {
        padding: 20px;
        margin: 0 0 50px 0;
    }

    section.blog-det-sec .blog-card-txt {
        width: 53%;
    }

    section.blog-det-sec .blog-card-bottom-txt {
        padding: 0;
        margin: 0;
        border: none;
    }

    section.blog-det-sec .blog-card-txt-extra {
        width: 100% !important;
    }

    section.blog-det-sec .blog-card-main p, .blog-card-txt-extra p {
        margin: 0 0 40px 0;
    }
    
/*Blog Details Sec End*/


/*Inner Contact Start*/

    .contact_detail_box figure img {
        margin: auto;
        height: 55px;
        width: 55px;
        object-fit: cover;
    }

    .contact_detail_box h2 {
        font-size: 20px;
        line-height: 24px;
        color: #000;
        font-weight: 700;
        margin: 30px 0 10px 0;
    }

    .contact_detail_box p {
        font-size: 15px;
        line-height: 25px;
        color: #636363;
        margin: 0;
        font-weight: 400;
        margin-bottom: 0;
        display: block;
    }

    .contact_detail_box {
        padding: 40px 20px;
        transition: 0.5s;
        border: 1px solid #5b7070;
        border-radius: 0px;
    }

    .contact_form {
        padding-bottom: 7%;
    }

    .contact_form label {
        font-size: 14px;
        color: #5d5d5d;
        margin-bottom: 7px;
        font-weight: 500;
        font-family: 'Roboto';
    }


    .contact_page {
        padding: 100px 0;
    }

    .contact_form input {
        height: 60px;
        width: 100%;
        margin-bottom: 25px;
        border-radius: 0px;
        padding: 0 25px;
        border: 1px solid #cccccc;
    }

    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type="number"] {
        -moz-appearance: textfield;
    }

    .contact_form textarea {
        height: 200px;
        margin-bottom: 30px;
        width: 100%;
        border: 1px solid #cccccc;
        border-radius: 0px;
        padding: 25px 25px;
        resize: none;
    }

    .section_head {
        margin-bottom: 50px;
    }

    .section_head p {
        width: 65%;
        margin: 0 auto;
        color: #000000;
        font-size: 15px;
    }

    .section_head h3 {
        color: #000;
        font-size: 65px;
        font-weight: 400;
        margin-bottom: 10px;
        line-height: 75px;
    }

    .br_gradient {
        padding: 2px;
        border-radius: 12px;
    }

    .contact_detail_box p span {
        display: block;
    }

    section.contact_page.chg2 {
        padding-bottom: 50px;
    }

    section.contact_page.chg2 .contact_detail_box figure img {

        filter: brightness(0) saturate(100%) invert(43%) sepia(28%) saturate(1267%) hue-rotate(169deg) brightness(92%) contrast(89%);
    }

    .contact_page h4 {
        color: #000;
        font-size: 28px;
        font-weight: 500;
        letter-spacing: 0;
        margin: 10px 0;
        text-transform: uppercase;
    }

    .section_head.chg h3 {
        color: #000;
    }


    .section_head.chg22 h3 {
        color: #92278f !important;
    }

    .btn_wrap {
        text-align: center;
    }

    .contact_detail_box a {
        display: block;
        font-size: 16px !important;
    }


    .btn_wrap button img {
        margin-left: 10px;
        margin-top: -3px;
    }

/*Inner Contact End*/


/* Registration Page css Starts */

    .registration-form {
        padding: 30px 50px 60px 50px;
        background-color: #fff;
        position: relative;
        z-index: 0;
        box-shadow: 0 0 20px 0 #00000036;
    }

    .registration-heading h3 {
        font-size: 65px;
        line-height: 70px;
    }

    .registration-form-input input, .registration-form-select select, .registration-form-input textarea {
        width: 100%;
        margin: 0 0 30px 0;
        padding: 10px 15px 10px 25px;
        height: 60px;
        border: 1px solid #0000005c;
        background-color: #0000;
    }

    .registration-form-input textarea {
    height: 200px;
    resize: none;
}

    .registration-form-select-main {
        position: relative;
    }

    .registration-form-select-main .registration-form-select-icon {
        position: absolute;
        top: 25%;
        right: 4%;
    }

    .registration-form-select-main .registration-form-select-icon i {
        font-weight: 300;
        font-size: 20px;
        color: #000;
        position: relative;
        z-index: -2;
    }

    .registration-form-select select {
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    .registration-heading {
        margin: 0 0 50px 0;
    }

    .registration-form-btn button.theme1 {
        width: 100%;
    }
    

/* Registration Page css Ends */


.row.bottomsectiongallery-2 img.botomgrid {

    margin-bottom: 15px;
}
html {
    overflow-x: hidden;
}
 .menuSec img {
    object-fit: contain;
} 
/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291px) and (max-width: 1600px) {
    .menuSec ul li a {
    padding: 0 21px;
}
.footer-phone-number-main ul {
    display: flex
;
    align-items: center;
    justify-content: start;
    gap: 30px;
}
li.border-right {
    padding: 0 30px 0 0;
    border-right: 1px solid #ffff;
}
.blog-card-txt h5 {
    font-family: 'Oswald';
    font-size: 22px;
}
.menuSec ul li a {
    padding: 0 20px;
}
}

@media only screen and (min-width: 992px) and (max-width: 1290px) {
    .blog-card-img {
    width: 220px;
}
.blog-card-img {
    width: 45%;
}
.blog-card-txt {
    width: 52%;
}
.blog-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
}
.blog-card-txt p {
    font-size: 14px;
}
.footer-phone-number-main ul {
    gap: 15px;
    flex-direction: column;
}.footer-map iframe {
    width: 100%;
    height: 230px;
}
.footer-logo {
    margin: 0 auto 0px auto;
}.-footer-new-letter {
    border-top: 1px solid #363636;
    padding: 31px 0;
    border-bottom: 1px solid #363636;
    padding-left: 40px;
}
.menuSec ul li a {
    padding: 0 17px;
    font-size: 15px;
}

.theme1 {;
    padding: 0 20px;
    font-size: 14px;
}
.services-sec .services-card-main::before {
    width: 100% ;
    height: 100% !important;
}

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    
    .menuSec ul li a {
    font-size: 12px;    padding: 0 5px;
}
.menuSec ul {
        display: flex
;
        align-items: center;
        justify-content: space-between;
    }
   .theme1 {
    padding: 0 12px;
    height: 40px;
    font-size: 12px;
} 
  section.gallery-sec .slick-current {
    width: 100vw !important;
    margin: 0 auto;
}  h2 {
    font-size: 60px;
    line-height: 70px;
}
h4 {
    font-size: 30px;
    line-height: 35px;
}
h1 {
    font-size: 60px;
    line-height: 70px;
}   
  .faqs-tab-main .nav-pills .nav-link {
    font-size: 17px;
    line-height: 26px;
    padding: 0 16px;
    height: 40px;
} 
    .heading {
    margin: 0 0 25px 0;
}
  .all-section {
    padding: 50px 0;
}  
  .blog-card-main {
    margin-bottom: 15px;
}  
.footer-phone-number-main ul {
    display: flex
;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-top: 50px;
    flex-direction: column;
}    
   .footer-map {
    margin-top: 45px;
} 
   .-footer-new-letter {
    padding: 0px 0 20px;
    padding-left: 25px;
} 
    
  .footer-quick-link {
    padding-left: 25px;
}  
.copy-right {
    text-align: center;
    padding: 20px 0 0 0;
}    
  .footer-new-letter-button button {
    width: fit-content;
    height: 45px;;
    font-size: 14px;
    padding: 0px 10px;
    background-color: #25a0fe;
}  
  .footer-new-letter-input input {
    height: 45px;
    padding: 0 15px;
}  
   .footer-map iframe {
    width: 100%;
    height: 266px;
} 
  .contact_page h4 {
    font-size: 25px;
} .contact_detail_box p {
    font-size: 13px;
    line-height: 15px;
} 
  section.inner-banner .banner_text h1 {
    font-size: 80px;
    line-height: 90px;
}  
 .bottomsectiongallery .content-bottom {
    margin-bottom: 15px;
}   
 .row.bottomsectiongallery-2 img.botomgrid {
    height: 300px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}   
    
 .menuSec img {
    margin: 0;
    object-fit: contain;
}   
    
    
    
    
    
    
    
    
    
    
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    
        .gallery-card-img img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    object-position: center;
}
.gallery-card-main {
    overflow-x: hidden;
}
.gallery-card-txt h4 {
    font-size: 25px;
    line-height: 50px;
    color: #fff;
    margin: 0;
}section.gallery-sec .slick-current {
    width:100vw !important;
    margin: 0 auto;
}
.play-btn a {
    height: 70px;
    width: 70px;
}
.gallery-card-video {
    top: 27%;
}
section.gallery-sec .slick-list.draggable {
    height: 300px;
}

.blog-card-main {
    align-items: flex-start;
    flex-direction: column;        margin-bottom: 25px;
}

.blog-card-img {
    width: 100%;
}

.blog-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-card-txt {
    width: 100%;
}
.social-link {
    padding-top: 0px;
    padding-bottom: 0px;
}

.footer-logo {
    margin: 5px auto 15px auto;
    width: 100%;
    justify-content: center;
}
.footer-phone-number-main ul {
    gap: 15px;
    flex-direction: column;
}
.social-link ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
li.border-right {
    padding: 0 0px 0 0;
    border-right: none;
}
.footer-new-letter-button button {
    width: fit-content;
    height: 45px;
    font-size: 12px;
    padding: 10px 20px;
}
.footer-quick-link {
    padding-left: 15px;
}
.header-logo {
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.header-btn {
    justify-content: center;
}
.top-bar-txt h6 {
    font-size: 12px;
    line-height: 12px;
}

h1 {
    font-size: 35px;
    line-height: 50px;
}
.banner-socials-main {
    width: 16%;

}
.banner-socials ul li a i {
    height: 30px;
    width: 30px;
    font-size: 12px;
}

.banner_text p {
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    width: 90%;
    margin: 0 auto;
}
.carousel-caption {
    width: 84%;
}
.main-banner-img {
    width: 84%;
    height: 700px;
}
.all-section {
    padding: 40px 0;
}
.about-img img {
    height: 250px;
}
.about-txt h3 span {
    display: inline;
}
h3 {
    font-size: 30px;
    line-height: 40px;
}
.about-txt p {
    margin: 15px 0 15px 0;
}
h4 {
    font-size: 30px;
    line-height: 35px;
    margin: 5px 0;
}
p {
    font-size: 12px;
}
.theme1 {
    padding: 0 20px;
    height: 40px;
    font-size: 12px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}
.heading h4 {
    font-family: "Montserrat", system-ui;
    font-size: 20px;
}
#comparison {
    height: 270px;
}

.services-sec .services-card-main::before {
    right: -15px !important;
    height: 100% !important;
}
.services-card-txt {
    padding: 15px;
}
#comparisonEx {
    height: 270px;
}
.services-card-main {
    margin: 0 0 50px 0;
}
.heading {
    text-align: center;
    margin: 0 0 20px 0;
}
.faqs-tab-main .nav {
    gap: 10px;
}

.faqs-tab-main .nav-pills .nav-link {
    font-size: 13px;
    line-height: 20px;
    padding: 0 15px;
    height: 35px;
}
.gorilla-content .accordion-button.collapsed {
    padding: 10px 15px;
    font-size: 20px;
}
.accordion-button::after {
    width: 35px;
    height: 35px;
    right: 15px;
    font-size: 13px;
}
.faqs-img-mian img {
    height: 200px;
}
.tab-content {
    margin: 25px 0;
}
.-footer-new-letter {
    padding: 10px 0 15px;
    padding-left: 15px;
}

.footer-new-letter-input input {
    height: 45px;
    padding: 0 10px;
}
.copy-right {
    text-align: center;
    padding: 10px 0 0 0;
}

.footer-map {
    margin-top: 25px;
}
.footer-sec {
    background: #000;
    padding: 35px 0px 0px;
}
.copy-right p {
    font-size: 12px;
}
section.inner-about-sec .about-txt p {
    line-height: 20px;
}
section.inner-banner .carousel-item.active {
    height: 400px;
}
section.inner-banner .main-banner-img {
    height: 400px;
    object-position: 60% 40%;
}

section.inner-banner .banner_text h1 {
    font-size: 40px;
    line-height: 50px;
}
section.client-say-sec.all-section {
    padding-top: 0px;
}
.bottomsectiongallery .content-bottom {
        margin-bottom: 15px;
}
.section_head.chg h3 {
    color: #000;
    font-size: 35px;
    line-height: 40px;
}
.section_head p {
    width: 100%;
    font-size: 12px;
}

.contact_detail_box {
    padding: 25px 20px;
    margin-bottom: 10px;
}
.contact_page {
    padding: 40px 0;
}
.section_head h3 {
    font-size: 30px;
    line-height: 45px;
}
.section_head {
    margin-bottom: 25px;
}

.contact_form input {
    height: 50px;
    margin-bottom: 20px;
    padding: 0 15px;
}
    .row.bottomsectiongallery-2 img.botomgrid {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.gallery-sec{
       padding: 0 0px 40px;
}
section.blog-sec.all-section {
    padding-top: 0px;
}
.registration-heading h3 {
    font-size: 30px;
    line-height: 40px;
}
.registration-form {
    padding: 20px 20px 30px 20px;
}

.banner_text {
    width: 90%;
}

}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    
    .gallery-card-img img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    object-position: center;
}
.gallery-card-main {
    overflow-x: hidden;
}
.gallery-card-txt h4 {
    font-size: 25px;
    line-height: 50px;
    color: #fff;
    margin: 0;
}section.gallery-sec .slick-current {
    width:100vw !important;
    margin: 0 auto;
}
.play-btn a {
    height: 70px;
    width: 70px;
}
.gallery-card-video {
    top: 27%;
}
section.gallery-sec .slick-list.draggable {
    height: 300px;
}

.blog-card-main {
    align-items: flex-start;
    flex-direction: column;        margin-bottom: 25px;
}

.blog-card-img {
    width: 100%;
}

.blog-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-card-txt {
    width: 100%;
}
.social-link {
    padding-top: 0px;
    padding-bottom: 0px;
}

.footer-logo {
    margin: 5px auto 15px auto;
    width: 100%;
    justify-content: center;
}
.footer-phone-number-main ul {
    gap: 15px;
    flex-direction: column;
}
.social-link ul {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
li.border-right {
    padding: 0 0px 0 0;
    border-right: none;
}
.footer-new-letter-button button {
    width: fit-content;
    height: 45px;
    font-size: 12px;
    padding: 10px 20px;
}
.footer-quick-link {
    padding-left: 15px;
}
.header-logo {
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.header-btn {
    justify-content: center;
}
.top-bar-txt h6 {
    font-size: 12px;
    line-height: 12px;
}

h1 {
    font-size: 35px;
    line-height: 50px;
}
.banner-socials-main {
    width: 16%;

}
.banner-socials ul li a i {
    height: 30px;
    width: 30px;
    font-size: 12px;
}

.banner_text p {
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    width: 90%;
    margin: 0 auto;
}
.carousel-caption {
    width: 84%;
}
.main-banner-img {
    width: 84%;
    height: 700px;
}
.all-section {
    padding: 40px 0;
}
.about-img img {
    height: 250px;
}
.about-txt h3 span {
    display: inline;
}
h3 {
    font-size: 30px;
    line-height: 40px;
}
.about-txt p {
    margin: 15px 0 15px 0;
}
h4 {
    font-size: 30px;
    line-height: 35px;
    margin: 5px 0;
}
p {
    font-size: 12px;
}
.theme1 {
    padding: 0 20px;
    height: 40px;
    font-size: 12px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}
.heading h4 {
    font-family: "Montserrat", system-ui;
    font-size: 20px;
}
#comparison {
    height: 270px;
}

.services-sec .services-card-main::before {
    right: -15px !important;
    height: 100% !important;
}
.services-card-txt {
    padding: 15px;
}
#comparisonEx {
    height: 270px;
}
.services-card-main {
    margin: 0 0 50px 0;
}
.heading {
    text-align: center;
    margin: 0 0 20px 0;
}
.faqs-tab-main .nav {
    gap: 10px;
}

.faqs-tab-main .nav-pills .nav-link {
    font-size: 13px;
    line-height: 20px;
    padding: 0 15px;
    height: 35px;
}
.gorilla-content .accordion-button.collapsed {
    padding: 10px 15px;
    font-size: 20px;
}
.accordion-button::after {
    width: 35px;
    height: 35px;
    right: 15px;
    font-size: 13px;
}
.faqs-img-mian img {
    height: 200px;
}
.tab-content {
    margin: 25px 0;
}
.-footer-new-letter {
    padding: 10px 0 15px;
    padding-left: 15px;
}

.footer-new-letter-input input {
    height: 45px;
    padding: 0 10px;
}
.copy-right {
    text-align: center;
    padding: 10px 0 0 0;
}

.footer-map {
    margin-top: 25px;
}
.footer-sec {
    background: #000;
    padding: 35px 0px 0px;
}
.copy-right p {
    font-size: 12px;
}
section.inner-about-sec .about-txt p {
    line-height: 20px;
}
section.inner-banner .carousel-item.active {
    height: 400px;
}
section.inner-banner .main-banner-img {
    height: 400px;
    object-position: 60% 40%;
}

section.inner-banner .banner_text h1 {
    font-size: 40px;
    line-height: 50px;
}
section.client-say-sec.all-section {
    padding-top: 0px;
}
.bottomsectiongallery .content-bottom {
        margin-bottom: 15px;
}
.section_head.chg h3 {
    color: #000;
    font-size: 35px;
    line-height: 40px;
}
.section_head p {
    width: 100%;
    font-size: 12px;
}

.contact_detail_box {
    padding: 25px 20px;
    margin-bottom: 10px;
}
.contact_page {
    padding: 40px 0;
}
.section_head h3 {
    font-size: 30px;
    line-height: 45px;
}
.section_head {
    margin-bottom: 25px;
}

.contact_form input {
    height: 50px;
    margin-bottom: 20px;
    padding: 0 15px;
}
.row.bottomsectiongallery-2 img.botomgrid {
    height: 250px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}

.gallery-sec{
       padding: 0 0px 40px;
}
section.blog-sec.all-section {
    padding-top: 0px;
}
.registration-heading h3 {
    font-size: 30px;
    line-height: 40px;
}
.registration-form {
    padding: 20px 20px 30px 20px;
}

.banner_text {
    width: 90%;
}














    
}


/*Media Query End*/


























</pre></body></html>