@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&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&display=swap');
/***** General CSS *****/

/* 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;
}

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

span.heading-color {
    color: #f9a41b;
}

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
}

@font-face {
    font-family: 'minion-pro';
    src: url('../fonts/minion-pro-regular.otf');
}


/***** 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 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #ffa500;
        border-radius: 100px;
        padding: 0 12px;
        height: 45px;
        transition: ease-in;
        transition-duration: 0.2s;
        text-transform: uppercase;
        border: none;
    }

    .theme1:hover {
        background-color: rgba(20,248,0,1);
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .theme1 span.btn-txt {
        font-size: 16px;
        line-height: 34px;
        color: #fff;
    }

    .theme1 span.btn-icon i {
        font-size: 27px;
        color: #fff;
    }













    
    .theme2 {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #00ff00;
        border-radius: 100px;
        padding: 0 18px;
        height: 45px;
        transition: ease-in;
        transition-duration: 0.2s;
        text-transform: uppercase;
    }

    .theme2:hover {
        background-color: #ffa500;
        transition: ease-out;
        transition-duration: 0.2s;
    }

    .theme2 span.btn-txt {
        font-size: 16px;
        line-height: 34px;
        color: #fff;
    }

    .theme2 span.btn-icon i {
        font-size: 27px;
        color: #fff;
    }
    

/* Buttons 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';
    font-size: 84px;
    line-height: 90px;
    color: #000;
    font-weight: 400;
    margin: 10px 0;
    text-transform: uppercase;
}

h2 {
    font-family: 'Oswald';
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Oswald';
    font-size: 69px;
    line-height: 80px;
    color: #000;
    font-weight: 400;
    margin: 10px 0;
    text-transform: uppercase;
}

h4 {
    font-family: 'Oswald';
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Oswald';
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Oswald';
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #7c7c7c;
    font-size: 17px;
    line-height: 25px;
    font-family: 'Poppins', serif;
    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: 12px 0;
    background-color: #171617;
    margin: 0 0 40px 0;
}

header .btn-primary {
    background-color: #ffa500;
    border-radius: 100px;
    padding: 0 12px;
    height: 45px;
    transition: ease-in;
    transition-duration: 0.2s;
    text-transform: uppercase;
    padding: 0 8px;
    border: none;
    font-size: 16px;
}

header  .btn-primary:hover {
    color: #fff;
    border-color: #0000;
    background-color: rgba(20, 248, 0, 1);
    transition: ease-out;
    transition-duration: 0.2s;
}

header  .btn-primary:focus {
    background-color: unset;
}
.menuSec {
    padding: 0px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    background: linear-gradient(90deg, rgba(20,248,0,1) 0%, rgba(255,165,0,1) 100%);
    border-radius: 100px;
}

.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: #000;
    padding: 10px 12px;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Poppins';
    text-transform: uppercase;
    font-weight: 500;
    transition: ease-in;
    transition-duration: 0.2s;
}

.menuSec ul li a:hover {
    color: #fff;
    transition: ease-out;
    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>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

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

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

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>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>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/*header css start */

/*banner css start */

.carousel-item {
    height: 1000px;
}

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

.carousel-inner>.item>a>img,
.carousel-inner>.item>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: 100%;
    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: #fffaf3;
    z-index: 0;
    border-bottom-left-radius: 1000px;
}

.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;
}


.banner_text p {
    margin: 30px 0 0 0;
    width: 75%;
}


.banner-btn-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    position: relative;
    z-index: 0;
    margin: 40px 0;
}

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

.banner-btn select {
    font-size: 14px;
    line-height: 18px;
    color: #000;
    font-family: 'Poppins';
    text-transform: capitalize;
    height: 50px;
    border: none;
    background-color: #0000;
    padding: 0 20px;
    width: 100%;
    cursor: pointer;
    border-right: 2px solid #ffa50033;
}

.banner-btn {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.banner-btn i {
    position: absolute;
    top: 40%;
    right: 10px;
    color: #000;
    z-index: -1;
}

.banner-btn butotn {
    width: 100%;
    height: 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.banner-card-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.banner-card {
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #00000029;
}

.banner-testi-card h5 {
    font-size: 27px;
    line-height: 30px;
    margin: 0;
    color: #000;
    margin: 10px 0;
    font-family: 'Poppins';
}

.banner-testi-txt {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.banner-testi-img {
    position: relative;
}

.banner-testi-img ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-testi-img ul li img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border-radius: 100px;
    border: 3px solid #fff;
}

.banner-testi-img ul li.banner-testi-img-space {
    margin: 0 0 0 -15px;
}

.banner-star-img ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 3px;
}

.banner-star-txt h6 {
    font-size: 11px;
    line-height: 19px;
    color: #000;
    margin: 0;
    font-family: 'Poppins';
}

.banner-star-img ul li h6 {
    font-size: 11px;
    line-height: 20px;
    margin: 0;
    color: #000;
}

.banner-star-img ul li i {
    color: #ffc107;
}

.counter-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 10px 0;
    border-bottom: 3px solid #f9a41b;
}

.counter-txt .counter, .counter-txt h6 {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    line-height: 44px;
    color: #f9a41b;
    margin: 0;
}

.banner-counter-card {
    width: 26%;
}

.banner-counter-card h5 {
    font-size: 20px;
    line-height: 25px;
    margin: 10px 0 0 0;
    text-align: center;
    font-family: 'Poppins';
}

.banner_img {
    position: relative;
    text-align: center;
}

.banner_img::before {
    content: '';
    position: absolute;
    top: 32.2%;
    right: 9px;
    width: 484px;
    height: 500px;
    background-color: #15f700;
    border-radius: 100%;
    border: 20px solid #fff;
}

.banner_img::after {
    content: '';
    position: absolute;
    top: 27%;
    right: -7%;
    width: 580px;
    height: 580px;
    background-color: #f0f8ec;
    border-radius: 700px;
    border: 1px solid #f8b23e;
    z-index: -1;
}

.banner_img img {
    position: relative;
    z-index: 9;
}

.banner-img-txt {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 8px;
    background-color: #fff;
    display: flex;
    align-items: start;
    justify-content: center;
    height: 80px;
    width: 100px;
    rotate: -38deg;
    background: linear-gradient(90deg, rgba(255,250,243,1) 0%, rgba(255,255,255,1) 100%);
}

.banner-img-txt span.banner-img-txt-upp {
    font-family: 'minion-pro';
    font-size: 71px;
    line-height: 80px;
    color: #15f700;
    font-style: italic;
}

.banner-img-txt span.banner-img-txt-cap {
    font-family: 'minion-pro';
    font-size: 50px;
    line-height: 55px;
    color: #15f700;
    font-style: italic;
}

.banner-img-main {
    position: relative;
}

.banner-img-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 70px;
    width: 70px;
    border: 10px solid #15f700;
    border-radius: 100px;
}

.banner-img-main::after {
    content: '';
    position: absolute;
    top: 9%;
    right: 11%;
    height: 40px;
    width: 40px;
    border: 5px solid #15f700;
    border-radius: 100px;
}

/*banner css end*/

/*Inner Banner css Starts*/

    section.inner-banner {
        position: relative;
        background-color: #000;
    }

    section.inner-banner .inner-banner-img {
        position: absolute;
        top: 0;
        right: 0;
    }

    section.inner-banner .inner-banner-left-img {
        right: unset;
        left: 0;
        width: 54%;
    }

    section.inner-banner .banner_text-left h1 {
        font-size: 69px;
        width: 77%;
        margin: 0 0 0 auto;
    }

    section.inner-banner .carousel-caption {
        background: #0000;
        border-bottom-left-radius: unset;
    }

    section.inner-banner .banner_text h1 {
        color: #fff;
        position: relative;
        z-index: 9;
    }

    section.inner-banner .carousel-item {
        height: 643px;
    }
    
/*Inner Banner css Ends*/


/*About Top Sec css Starts*/

    .about-top-right-card1 {
        background-image: url('../images/about-top-card1.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        padding: 22px 30px;
        position: relative;
    }

    .about-bottom-right-card2 {
        background-image: url('../images/about-top-card2.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        padding: 22px 30px;
        position: relative;
    }

    .about-top-right-card3 {
        background-image: url('../images/about-top-card3.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        padding: 22px 15px;
        position: relative;
    }

    .about-bottom-right-card4 {
        background-image: url('../images/about-top-card4.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
        padding: 22px 30px;
        position: relative;
    }

    .about-top-txt h5 {
        font-size: 30px;
        line-height: 39px;
        color: #fff;
        margin: 10px 0;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .about-top-txt p {
        color: #fff;
        font-size: 14px;
        line-height: 23px;
    }

    .about-top-arrow .about-top-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #FFF; */
        height: 70px;
        width: 100px;
        border-radius: 20px;
        position: absolute;
        top: -20px;
        right: -10px;
    }

    .about-top-arrow .about-top-btn a i {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000;
        height: 70px;
        width: 70px;
        border-radius: 100px;
        font-size: 40px;
        color: #fff;
        rotate: 50deg;
        font-weight: 400;
        box-shadow: 0 0 20px 0 #0000002b;
        font-family: 'FontAwesome';
    }

    .about-bottom-arrow .about-top-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #FFF; */
        height: 70px;
        width: 100px;
        border-radius: 20px;
        position: absolute;
        bottom: -20px;
        right: -10px;
    }

    .about-bottom-arrow .about-top-btn a i {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #0d72b9;
        height: 70px;
        width: 70px;
        border-radius: 100px;
        font-size: 40px;
        color: #fff;
        rotate: 50deg;
        font-weight: 400;
        box-shadow: 0 0 20px 0 #0000002b;
        font-family: 'FontAwesome';
    }

    .about-top-right-card3 .about-top-txt h5 {
        color: #000;
    }

    .about-top-right-card3 .about-top-txt p {
        color: #000;
    }

    .about-top-right-card1 .about-top-btn a i {
        background-color: #0d72b9;
    }

    .about-bottom-right-card2 .about-top-btn a i {
        background-color: #fff;
        color: #000;
    }

    .about-top-right-card3 .about-top-btn a i {
        background-color: #000;
        color: #fff;
    }

    .about-bottom-right-card4 .about-top-btn a i {
        background-color: #f58a1f;
    }

/*About Top Sec css Ends*/

/*About Sec css Starts*/

    section.about-sec {
        border-bottom: 1px solid #f58a1f;
    }

    .about-img-main {
        position: relative;
    }

    .about-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #FFF; */
        height: 140px;
        width: 140px;
        border-radius: 20px;
        position: absolute;
        top: 20px;
        right: 40px;
    }

    .about-arrow a i {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffa500;
        height: 110px;
        width: 110px;
        border-radius: 100px;
        font-size: 50px;
        color: #fff;
        rotate: 50deg;
        font-weight: 400;
        box-shadow: 0 0 20px 0 #0000002b;
    }

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

    .about-extra{
        position: relative;
    }

    .about-extra h5 {
        font-size: 49px;
        line-height: 71px;
        position: relative;
        color: #fff;
        margin: 0;
        font-weight: 400;
        text-transform: uppercase;
    }

    .about-extra::before {
        content: '';
        position: absolute;
        top: 0;
        left: -53px;
        width: 700px;
        height: 100%;
        background-color: #00ff00;
        border-radius: 100px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        z-index: 0;
    }

/*About Sec css Ends*/

/*About Bottom Sec css Starts*/

    .about-bottom-arrow-extra .about-arrow {
        right: unset;
        left: 0;
    }

    .about-txt-bottom-extra .about-txt h3 {
        font-size: 55px;
        line-height: 64px;
    }

/*About Bottom Sec css Ends*/

/*Course Sec css Starts*/

    .course-heading-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 50px 0;
    }
    
    .course-heading {
        width: 36%;
    }

    .course-card-img img {
        height: 373px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 30px;
    }

    .course-card-txt  {
        margin: 20px 0;
    }

    .course-card-txt h5 {
        font-family: 'Oswald';
        font-size: 35px;
        line-height: 40px;
        color: #000;
        font-weight: 400;
        margin: 0;
    }

    .banner-testi-cardd.course-testi-card {
        background-color: #0000;
        padding: unset;
        box-shadow: unset;
    }

/*Course Sec css Ends*/

/*App Sec css Starts*/

    .app-txt h3 span {
        display: flex;
        margin: 0 0 0 185px;
    }

    section.app-sec .row {
        position: relative;
    }

    section.app-sec .row::before {
        content: '';
        position: absolute;
        bottom: 0;
        height: 80%;
        width: 100%;
        background-color: #000;
        border-radius: 40px;
    }
    
    .app-img-main {
        position: relative;
    }

    .app-txt-main {
        position: relative;
        margin: 100px 0 0 0;
    }

    .app-img {
        text-align: center;
    }

    .app-txt * {
        color: #fff;
    }

/*App Sec css Ends*/

/*Zoom Sec css Starts*/

    .zoom-img-main {
        position: relative;
    }

    .zoom-img-txt {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #ffa500;
        border-radius: 10px;
        padding: 0 12px;
        height: 80px;
        text-transform: uppercase;
        position: absolute;
        top: 20px;
        right: 30px;
    }

    .zoom-img-txt h5 {
        font-size: 29px;
        line-height: 39px;
        font-family: 'Poppins', serif;
        color: #fff;
        margin: 0;
    }

/*Zoom Sec css Ends*/

/*testimonial start*/

    section.testimonial {
        padding: 70px 0px;
        position: relative;
    }
    .test-txt {
        text-align: center;
        margin-bottom: 40px;
    }

    .test-txt h3 {
        font-size: 69px;
        line-height: 80px;
        color: #161616;
        font-weight: 400;
        width: 46%;
        margin: 0 auto 50px auto;
    }
    .test-txt p {
        font-size: 17px;
        color: #7c7c7c;
        width: 63%;
        margin: 0 auto;
    }
    .dv1whtpeoplesay {
        display: flex;
        align-items: center;
        gap: 26px;
    }
    .dv1whtpeoplesay h2 span {
        display: block;
        font-size: 14px;
        font-family: 'Roboto';
        color: #919191;
        font-weight: 400;
    }

    .mainwhtpeoplesay {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .dv1whtpeoplesay {
        width: 50%;
    }

    .dv2whtpeoplesay {
        width: 50%;
    }

    .dv2whtpeoplesay p {
        font-family: 'Poppins';
        font-weight: 400;
        font-size: 17px;
        color: #7c7c7c;
        font-style: italic;
    }
    .mainwhtpeoplesay {
        box-shadow: 0 4px 8px 0 rgb(0 0 0 / 7%), 0 6px 20px 0 rgb(0 0 0 / 9%);
        background: #fff;
        position: relative;
        padding: 50px;
        border-radius: 30px;
    }
    .Whatpeoplesay {
        position: relative;
        padding: 100px 0px;
    }
    .dv3whtpeoplesay img {
        position: absolute;
        top: 30%;
        left: 12%;
        z-index: 99;
        border-radius: 100px;
        border: 10px solid #fff;
        box-shadow: 0 0 20px 0 #0000003b;
    }
    .dv4whtpeoplesay img {
        position: absolute;
        left: 13%;
        top: 59%;
        border-radius: 100px;
        border: 5px solid #fff;
        box-shadow: 0 0 20px 0 #0000003b;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 115px;
        width: 115px;
        object-fit: cover;
    }

    .dv5whtpeoplesay img {
        position: absolute;
        bottom: 9%;
        left: 16%;
        border-radius: 100px;
        border: 5px solid #fff;
        box-shadow: 0 0 20px 0 #0000003b;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 71px;
        width: 71px;
        object-fit: cover;
    }
    .dv6whtpeoplesay img {
        border-radius: 100px;
        border: 5px solid #fff;
        box-shadow: 0 0 20px 0 #0000003b;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 115px;
        width: 115px;
        object-fit: cover;
        position: absolute;
        top: 33%;
        right: 16%;
    }

    .dv7whtpeoplesay img {
        position: absolute;
        top: 58%;
        right: 15%;
        border-radius: 100px;
        border: 5px solid #fff;
        box-shadow: 0 0 20px 0 #0000003b;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 115px;
        width: 115px;
        object-fit: cover;
    }
    .Whatpeoplesay:before {
        content: '';
        position: absolute;
        background-image: url(../images/whtpeoplesaystars.png);
        background-repeat: no-repeat;
        width: 100%;
        height: 100px;
        top: 35%;
        left: 69%;
        z-index: 9;
    }
    .mainwhtpeoplesay:before {
        content: '';
        position: absolute;
        height: 59%;
        width: 40%;
        bottom: -20px;
        left: -23px;
        background: #ffa500;
        box-shadow: 0 0 10px #00000036;
        z-index: -4;
        border-radius: 10px;
        border-radius: 30px;
    }
    .whtpeoplesayslid .slick-slide {
        margin: 30px 30px;
    }
    .whtpeoplesayslid .slick-next {
        right: 12%;
        top: 85%;
    }
    .whtpeoplesayslid .slick-prev {
        left: 81%;
        z-index: 1;
        top: 85%;
    }
    .whtpeoplesayslid .slick-next::before {
        content: '' !important;
        background-image: url(../images/whtpeoplesayarrow.png);
        position: absolute;
        width: 26px;
        background-repeat: no-repeat;
        height: 26px;
        opacity: 1;
        filter: brightness(0) saturate(100%) invert(0%) sepia(85%) saturate(7440%) hue-rotate(186deg) brightness(88%) contrast(112%);
    }
    .whtpeoplesayslid .slick-prev::before {
        content: '' !important;
        background-image: url(../images/whtpeoplesayarrowleft.png);
        position: absolute;
        width: 22px;
        background-repeat: no-repeat;
        height: 22px;
        opacity: 1;
    }
    .whtpeoplesayslid .slick-next:hover {
        filter: brightness(0) saturate(100%) invert(55%) sepia(61%) saturate(3285%) hue-rotate(0deg) brightness(101%) contrast(103%);
    }
    .whtpeoplesayslid .slick-prev:hover {
        filter: brightness(0) saturate(100%) invert(58%) sepia(51%) saturate(4176%) hue-rotate(360deg) brightness(101%) contrast(102%);
    }
    .whtpeoplesayslid {
        width: 65%;
        position: relative;
        z-index: 1;
    }
    .dvtopsolution {
        text-align: center;
        margin-bottom: 70px;
    }
    .dvtopsolution h2 {
        font-size: 86px;
        font-family: 'Rajdhani';
        font-weight: bold;
        color: #000;
    }
    .dvtopsolution p {
        font-family: 'Roboto';
        font-weight: 400;
        font-size: 15px;
    }
    .Whatpeoplesay:before {
        position: absolute;
        content: '';
        background: #ff7e00;
        left: -50px;
        width: 63px;
        height: 460px;
        top: 29%;
        clip-path: polygon(76% 0, 100% 0%, 100% 90%, 76% 96%);
    }
    .dv1whtpeoplesay h2 {
        font-size: 30px;
        margin-bottom: 10px;
        line-height: 30px;
        color: #161616;
    }

    .dv1whtpeoplesay h2 span {
        display: block;
        font-size: 21px;
        color: #0d72b9;
        line-height: 23px;
    }
    .dv1whtpeoplesay ul {
        display: flex;
        margin-bottom: 0;
    }

    .dv1whtpeoplesay ul li i {
        color: #ffc400;
    }
    .mainwhtpeoplesay:after{
        content: '';
        position: absolute;
        height: 17%;
        width: 30%;
        top: -19px;
        right: 7px;
        background: #00fd00;
        box-shadow: 0 0 10px #00000036;
        z-index: -4;
        border-radius: 10px;
    }

    .dv2whtpeoplesay h2 span {
        display: flex;
        align-items: center;
        justify-content: start;
        color: #0d72b9;
    }
    
    .dv2whtpeoplesay ul {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 5px;
    }

    .dv2whtpeoplesay ul li i {
        color: #ffc400;
    }

    .dv2whtpeoplesay h2 {
        font-size: 31px;
        line-height: 45px;
        color: #000;
        font-weight: 400;
    }

/*testimonial end*/

/*latest start*/
section.blog {
    padding: 70px 0px;
}
.blog-txt h4 {
    font-size: 69px;
    line-height: 80px;
    color: #161616;
    font-weight: 400;
}
.blog-txt {
    margin-bottom: 40px;
}


.blog-img {
    position: relative;
}

.date p {
    font-size: 13px;
    color: #fff;
    padding: 8px 20px;
    background-color: #ffa500;
    margin-bottom: 0px;
    border-radius: 100px;
    width: fit-content;
}

.date {
    position: absolute;
    top: 15px;
    left: 20px;
}
.arro-img {
    position: absolute;
    top: -26px;
    right: 0;
}
.blog-txt-2 {
    margin-top: 20px;
}

.blog-txt-2 h6 {
    font-size: 27px;
    line-height: 30px;
    font-weight: 400;
    color: #000;
}

/*latest end*/

/*footer start*/
footer {
    background-color: #131313;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 40px 0px 25px;
    border-bottom: 2px solid #ffffff5e;
}

.footer-top h3 {
    font-size: 51px;
    font-weight: 600;
    color: #fff;
    line-height: 51px;
    margin-bottom: 0;
    font-family: 'Poppins';
}

.footer-top h6 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff61;
    font-family: 'Poppins';
    margin-bottom: 0;
    line-height: 30px;
    margin-bottom: 15px;
}
.footer-second {
    padding: 25px 0px;
    margin: 0 0 200px 0;
}

.footer-second .row {
    align-items: baseline;
}
.footer-info h6 {
    font-size: 22px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.footer-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info ul li i {
    color: #fff;
}

.footer-info ul li p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.footer-info ul li {padding-bottom: 20px;}

.paper-plan input {
    width: 90%;
    background-color: unset;
    outline: none;
    border: unset;
    border-bottom: 1px solid #fff;
    padding: 10px 0px;
    margin-bottom: 30px;
    color: #fff;
}
.paper-plan input::placeholder{
  color: #fff;
}
.paper-plan {
    position: relative;
}

.paper-plan i {
    position: absolute;
    right: 44px;
    top: 17px;
    font-size: 23px;
    color: #fff;
}
.footer-info ul.sol {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-info ul.sol li i {
    font-size: 15px;
    background-color: #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.footer-bot p {
    text-align: center;
    font-size: 13px;
    color: #fff;
    margin-bottom: 0;
}

.footer-bot {
    padding: 20px 0px;
    border-top: 1px solid #fff;
    margin: -200px 0 160px 0;
}
footer::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 180px;
    background-image: url(../images/footer-bef.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}
/*footer end*/

/* About Us Page css Starts */

    section.inner-about.all-section {
        border-bottom: none;
    }

/* About Us Page css Ends */

/* Faqs Page css Starts */

    .faqs-banner-txt h1 {
        text-transform: capitalize;
    }

    .faqs-heading h3 {
        text-transform: capitalize;
    }

    .accordion-button {
        font-size: 19px;
        line-height: 31px;
        color: #787878;
        font-family: 'Poppins', serif;
        padding: 15px 0 15px 10px;
    }

    .accordion-button:focus {
        border-color: unset;
        box-shadow: unset;
    }

    .accordion-button:not(.collapsed) {
        color: #000;
        background-color: #0000;
        box-shadow: 0 0 0 0 #0000;
        text-transform: uppercase;
    }

    .accordion-button::after {
        display: none;
    }

    button.accordion-button {
        position: relative;
        padding-left: 80px;
    }
    
    button.accordion-button::before {
        position: absolute;
        content: '';
        width: 60px;
        height: 2px;
        background: #000;
        left: 0;
    }
    
    .accordion-button .collapsed {
        position: relative;
        z-index: 1;
    }
    
    button.accordion-button.collapsed {
        position: relative;
        padding-left: 25px;
    }
    
    button.accordion-button.collapsed::before {
        position: absolute;
        content: '';
        width: 10px;
        height: 10px;
        background-image: url(../images/plus.png);
        background-repeat: no-repeat;
        background-size: 10px;
        transition: transform 0.2s ease-in-out;
        background-color: transparent;
    }

    .accordion-item {
        border-right: none;
        border-left: none;
    }

    .collapse.show p {
        padding-left: 20px;
        margin-left: 70px;
        border-left: 2px solid;
        transition: .5s all;
    }
    
    
    .faqs-heading h3 {
        font-size: 204px;
        line-height: 233px;
        margin: 20px 0;
    }

/* Faqs Page css Ends */

/*info-page start*/
section.info {
    padding: 80px 0px;
}
.info-img img {
    margin: 0 auto;
    width: 90%;
    display: block;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}
.info-img ul {
    margin: 40px 0px 40px 70px;
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: start;
}
.info-img ul li h5 {
    font-size: 59px;
    color: #000;
    font-weight: 600;
    line-height: 60px;
    font-family: 'Poppins';
}
.info-img ul li p {
    font-size: 27px;
    color: #7c7c7c;
    font-weight: 600;
    line-height: 30px;
    font-family: 'Poppins';
}
.info-txt ul li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 6px 0px;
}

.info-txt ul li p {
    font-size: 22px;
    color: #7c7c7c;
    /* margin-bottom: 0; */
    line-height: 32px;
    font-family: 'Poppins';
}
.other-txt h5 {
    font-size: 59px;
    line-height: 59px;
    font-family: 'Poppins';
    font-weight: 500;
    margin-bottom: 40px;
    color: #0c070e;
}
section.other {
    padding-bottom: 70px;
}
section.other .pick-txt-1 h5 {
    font-size: 24px;
}
footer.inn::before {
    position: unset;
}
.footer-logo p {
    font-size: 13px;
    color: #fff;
    width: 67%;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}
/*info end*/
/*lession-page start*/
section.pick.inn .pick-txt-1 h5 {
    font-size: 22px;
    line-height: 22px;
    margin: 20px 0;
}
section.pick.inn .pick-txt-1 {
    margin-bottom: 40px;
}

.pick-txt-1 .banner-card {
    padding: 0;
    background-color: #0000;
    box-shadow: 0 0 0 0 #000;
}

/*contact start*/
section.contact {
    padding: 100px 0px;
}
.cont-form form input {
    width: 90%;
    padding: 15px 10px;
    border: unset;
    outline: none;
    margin-bottom: 30px;
    border-bottom: 1px solid #c2c2c2;
}
.cont-form form input::placeholder{
  font-weight: 500;
  font-size: 21px;
  color: #c2c2c2;
     font-family: 'Poppins';
}
.cont-form form textarea {
    width: 90%;
    padding: 15px 10px;
    border: unset;
    outline: none;
    margin-bottom: 30px;
    border-bottom: 1px solid #c2c2c2;
    height: 150px;
    resize: none;
}
.cont-form form textarea::placeholder{
  font-weight: 500;
  font-size: 21px;
  color: #c2c2c2;
  font-family: 'Poppins';
}
.cont-form form button {
    width: 80%;
    margin: 0 auto;
    background-color: #fda500;
    padding: 12px;
    border-radius: 100px;
    outline: none;
    border: unset;
    color: #fff;
}
.cont-txt h2 {
    font-size: 97px;
    color: #000;
    line-height: 120px;
    position: relative;
}

.cont-txt h2 span {
    display: block;
}
.cont-txt {
    text-align: end;
}
.cont-txt p{
  font-size: 18px;
  color: #7c7c7c;
}
.cont-txt h2::before {
    position: absolute;
    content: '';
    background-color: #000;
    width: 77%;
    left: -30px;
    height: 3px;
    bottom: 60px;
}
/*contact end*/
.header-btn-heading {
    text-align: center;
}

.header-btn-heading h3 {
    font-size: 59px;
}

.header-btn-input input, .header-btn-input select, .header-btn-input textarea {
    width: 100%;
    padding: 0 20px;
    height: 50px;
    margin: 0 0 20px 0;
    border: 1px solid #00000069;
    border-radius: 100px;
    font-size: 14px;
    line-height: 20px;
    color: #7c7c7c;
}

.header-btn-input input::placeholder {
    font-size: 14px;
    line-height: 20px;
    color: #7c7c7c;
}

.header-btn-input textarea {
    height: 150px;
    border-radius: 20px;
    resize: none;
    padding: 20px 20px;
}

header .modal-content {
    padding: 40px;
    border-radius: 20px;
}

/* Work Sec css Starts */

    section.work-sec {
        padding: 0 0 80px 0;
    }

    .work-txt-circle ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .work-txt-main {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 400px;
        width: 400px;
        background-color: #00FF00;
        border-radius: 600px;
        border: 10px solid #fff;
    }

    .work-txt-circle ul li.color-ch .work-txt-main {
        background-color: #ffa500 !important;
        margin: 0 -60px 0 -80px;
    }

    .work-txt-circle ul li.color-ch .work-txt-main .work-txt * {
        color: #fff;
    }

    .work-txt-circle ul li .work-txt {
        text-align: center;
        width: 70%;
        margin: 0 auto;
    }

    .work-txt h5 {
        font-size: 40px;
        line-height: 45px;
        color: #fff;
    }

    .work-txt h4 {
        font-size: 30px;
        line-height: 35px;
        text-transform: uppercase;
        width: 50%;
        margin: 20px auto;
    }

    .work-txt p {
        color: #000;
        font-size: 14px;
        line-height: 20px;
    }

   


/* Work Sec css Ends */



/*Login Page Start*/

.log-in-wrap {
    padding: 40px 40px;
    background-color: #fdfdfd;
    border: 1px solid #c4c4c4;
    float: right;
    width: 100%;
    border-radius: 0px;
}
.contact-page-main .form-control {
    height: 45px;
    background-color: #fff;
    border-color: #d8d8d8;
    width: 100%;
    border-radius: 0px;
}
.log-in-wrap h2 {
    margin: 0 0 40px 0;
    text-align: center;
    color: #000;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 24px;
    /* font-weight: bold; */
}
.form-group {
    margin-bottom: 15px;
}
.login_btn {
    width: 100%;
    background-color: #ffa500;
    padding: 10px;
    display: block;
    color: #fff;
    font-size: 19px;
    text-transform: capitalize;
    border: none;
    border: 2px solid #ffa500;
    transition: 0.5s all;
    border-radius: 0px;
    font-family: "Poppins";
    font-weight: 400;
}

.log-in-page-main .form-check, .forgot-pass {
    display: inline-block;
}
.log-in-page-main .form-check label.form-check-label {
    font-size: 14px;
    font-weight: 300;
    /* font-family: 'Lato'; */
    margin: 0;
    font-weight: 600;
    color: #000;
}
.forgot-pass {
    width: 72%;
    text-align: right;
}
.forgot-pass a {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    color: #000;
}
section.contact-page-main.log-in-page-main.all-section .row {
    display: flex;
    justify-content: center;
}
/*Login Page End*/



.img-blog-detail img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
}
.img-blog-detail {
    margin-bottom: 30px;
}
.text-blog-detail h2 {
    text-transform: uppercase;
    color: #000;
}
.blog-detail {
    padding: 100px 0px;
}

