@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

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 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
    font-family: 'montserrat-medium';
    color: #0e0d0d9c;
}


/***** 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: 'montserrat-medium';
    src: url(../fonts/montserrat-medium.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'TrajanPro-Regular';
    src: url(../fonts/TrajanPro-Regular.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'Brunson';
    src: url(../fonts/Brunson.ttf);
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'montserrat-regular';
    src: url(../fonts/montserrat-regular\ .ttf);
    font-weight: 400;
    font-style: normal
}

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

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;

}

.noRight {
    padding-right: 0;
}

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

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.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: 'TrajanPro-Regular';
    font-size: 55px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'TrajanPro-Regular';
    font-size: 55px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    /* margin: 0 0 30px; */
}

h3 {
    font-family: 'TrajanPro-Regular';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

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

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

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

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 {
    position: absolute;
    z-index: 9;
    width: 100%;
    top: 0;
    /* left: 0; */
    /* right: 0; */
    /* bottom: 0; */
    margin: auto;
    height: 50px;
}
.menuSec {
    padding: 12px 0;
}

.menuSec img {
    margin: 0;
}
.login_btn a {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    color: #000;
    text-transform: uppercase;
    gap: 18px;
    padding-right: 6px;
}

.login_btn a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 47px;
    width: 54px;
    border-radius: 50px;
    background: #349dd5;
    color: #fff;
}
.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    justify-content: space-evenly;
    display: flex;
}

.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: #393939;
    padding: 10px 23px;
    font-size: 13px;
    font-weight: 600;
}

.menuSec ul li a:after {
    content: '';
    /* position: absolute; */
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    /* background-color: #393939; */
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #349dd5;
}

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

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

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.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 [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-item img {
    width: 100%;
    height: 100vh;
}
.carousel-item.inner-banner img {
    width: 100%;
    height: 88vh;
    /* object-fit: cover; */
}
.banner_text input {
    width: 100%;
    height: 60px;
    padding: 15px;
    border-radius: 51px;
    border: unset;
}

.banner_text button {
    width: 148px;
    height: 50px;
    margin-left: -152px;
    border-radius: 50px;
    background: #349dd5;
    border: unset;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'montserrat-medium';
}
.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: rgba(0, 0, 0, 0.1);
}

.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 {
    padding-bottom: 20px;
}

/*banner css end*/

.blog_sec {
    padding: 5% 0;
}

/*Footer Start*/

footer {
    background: #349dd5;
    position: relative;
}


.news-letter h2 {
    color: #fff;
    margin-bottom: 0;
    font-size: 60px;
}

.news-letter {
    padding: 55px 0;
    background: #181818;
}

.news-letter form {
    position: relative;
    width: 100%;
}

.news-letter form input {
    width: 100%;
    border: 1px solid #ffffff38;
    background: #161719;
    color: #fff;
    border-radius: 100px;
    height: 60px;
    padding: 0 190px 0 25px;
}

.news-letter form button {
    position: absolute;
    right: 0;
    width: 180px;
    color: #5b5c5c;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 100px;
    height: 60px;
    border: 1px solid #0000;
    background: #ffffff;
    letter-spacing: 0.8px;
}

.news-letter .row {
    align-items: center;
}

.news-letter form input::placeholder {
    color: #fff;
    text-transform: capitalize;
}

.main-ftr {
    position: relative;
    padding: 80px 0px;
    height: 100%;
}

.main-ftr ul li h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500 !important;
}

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

.main-ftr ul li p,
.main-ftr ul li p a {
    margin-bottom: 0;
    color: #fff;
    font-size: 15px;
}

.main-ftr ul li i {
    font-size: 25px;
    color: #fff;
}

.main-ftr:after {
    position: absolute;
    content: '';
    background: #ffffff;
    width: 1px;
    height: 0px;
    bottom: 0;
    right: 30px;
    transition: .7s ease-in-out;
}

.middle-ftr:hover .main-ftr:after {
    height: 100%;
}

.middle-ftr:hover {
    border-color: #ffffff;
}

.bottm-ftr-copy-right p {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.bottm-ftr-copy-right {
    padding: 20px 0;
    text-align: center;
}

.middle-ftr {
    border-bottom: 1px solid #ffffff;
    background: #349dd5;
    transition: .7s ease-in-out;
    border-top: 1px solid #ffffff;
}

.main-ftr ul {
    margin-bottom: 0;
}

.ftr-req h5 a {
    color: #b01630;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.ftr-req {
    text-align: center;
    padding: 80px 0px;
}

.ftr-req input {
    width: 100%;
    border: 1px solid #71bbe2;
    background: #00000000;
    border-radius: 0;
    color: #ffffff;
    text-align: center;
    height: 55px;
    font-weight: 400;
    margin: 30px 0 0 0;
}

.ftr-req input::placeholder {
    color: #6db9e1;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
}

.main-ftr:before {
    position: absolute;
    content: '';
    background: #ffffff;
    width: 1px;
    height: 100%;
    top: 0;
    right: 30px;
}

.bottm-ftr ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 10px 0;
    width: 90%;
}

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

.bottm-ftr ul li p {
    margin-bottom: 0;
    color: #ffffff7d;
}

.bottm-ftr ul li ul a i {
    color: #9d9fa4;
    font-size: 18px;
    width: 35px;
    height: 35px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    transition: 0.5s;
    animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
}

.bottm-ftr ul li ul a i:hover {
    background: #138eed;
    color: #fff;
}


.ftr-req h5 a {
    font-size: 30px;
    color: #ffffff;
    margin: 60px 0 20px;
    font-family: 'jersey';
    font-weight: 500;
    letter-spacing: 0.8px;
}


ul.botm-list {
    width: 200px;
}

ul.botm-list a {
    color: #fff;
}

.bottm-ftr-copy-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer End*/
section.inner-testimonials-sec .people-img {
    position: relative;
    width: 90%;
    margin: 0 auto 50px auto;
}

section.inner-testimonials-sec .people-img.people-img1,
section.inner-testimonials-sec .people-img.people-img2,
section.inner-testimonials-sec .people-img.people-img3,
section.inner-testimonials-sec .people-img.people-img4,
section.inner-testimonials-sec .people-img.people-img5 {
    right: unset;
    top: unset;
    left: unset;
    bottom: unset;
}

section.inner-testimonials-sec .testi-text {
    background: #f3f3f3;
}

section.inner-testimonials-sec .testi-text:before {
    background: #f3f3f3;
}

section.inner-testimonials-sec .testi-text p {
    color: #929292;
}

section.inner-testimonials-sec .testi-text h5 {
    color: #000;
}

section.inner-testimonials-sec .testi-text h6 {
    color: #3ca6fe;
}


/*testimonails sect*/

.test-head h3 {
    font-size: 52px;
    font-weight: 300;
    margin: 0px;
    padding-bottom: 10px;
}

.test-head p {
    width: 80%;
    margin: 0 auto;
    font-size: 14px;
}
section#test_sec {
    padding: 100px 0 50px;
}
.people-img {
    width: 40%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
.people-img img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50px;
    border: 2px solid #fff;
}

.testi-text {
    background: #3ca6fe;
    padding: 60px;
    border-radius: 20px;
    margin-top: 30px;
    position: relative;
}

.testi-text p {
    color: #b9dfff;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.testi-text h5 {
    color: #ffff;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 0;
    font-family: montserrat;
    margin-top: 20px;
    font-weight: 500;
}

.testi-text h6 {
    color: #fff;
    font-size: 13.66px;
    font-family: roboto;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: 500;
}

.people-img.people-img2 {
    right: 0;
    left: initial;
    top: 0;
}

.people-img.people-img3 {
    right: inherit;
    left: 0;
    top: 0;
}

.people-img.people-img4 {
    right: inherit;
    left: -120px;
    top: 211px;
}

.people-img.people-img1 {
    right: -120px;
    left: inherit;
    top: 211px;
}

.testi-text:before {
    content: '';
    position: absolute;
    top: -17px;
    left: 0;
    right: 0;
    width: 40px;
    height: 20px;
    background: #3ca6fe;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    margin: 0 auto;
}

.people-img.active .d-none {
    display: unset !important;
    position: absolute;
    left: 0;
    top: 130px;
    z-index: 99;
}

.ftr-social a i:hover {
    background-image: -webkit-linear-gradient(-90deg, rgb(238, 37, 56) 0%, rgb(236, 84, 105) 100%);
    border: unset;
}

.Popular-btn {
    text-align: center;
    margin-top: 30px;
}

.featured-box>img {
    height: 560px;
    object-fit: cover;
}

.input-list label img {
    margin-right: 10px;
}

.test-head {
    margin-bottom: 6%;
    text-align: center;
}

.About_sec {
    padding: 100px 0;
}

.About_sec .col-md-4 {
    padding: 0;
}

.About_sec .col-md-8 {
    padding: 0;
}
.about_img img {
    height: 440px;
    width: 100%;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

.about_img1 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}



.about_text {
    text-align: center;
    padding: 95px;
}

.about_text h5 {
    font-family: 'Brunson';
    font-size: 20px;
    padding-top: 10px;
    color: #349dd5;
}

.about_text h2 {
    font-size: 158px;
    font-family: 'Brunson';
    margin: 0;
    border-bottom: 1px solid #e7eeee;
    color: #349dd5;
}
.about_text1 {
    padding: 24px;
    padding-bottom: 0;
}
.about_text1.inner-about {
    /* padding: 0; */
    margin-top: -29px;
}
.about_text1 p {
    line-height: 24px;
}
.about_text1 h2 {
    font-weight: 600;
}


.about_text1 a {
    width: 190px;
    height: 50px;
    background: #349dd5;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 22px;
    padding: 8px;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
}

.about_text1 a img {
    height: auto;
    width: auto;
    display: flex;
    background: #fff;
    padding: 16px 19px;
    border-radius: 42px;
}
.category-sec{
    width: 897px;
    margin: 00px auto;
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    gap:30px;
}
.category-sec1 {
    justify-content: end;
    width: 1151px;
    margin: 00px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 121px;
}
.box{
    width: 133px;
    height: 115px;
    background:#2c8ec4;
    border-radius:6px;
    text-align:center;
    color:#fff;
    padding: 24px 13px;
}

.box img{
    width:40px;
    margin-bottom:10px;
}

.box p{
    font-size: 10px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

.categories_content {
    text-align: center;
    padding-bottom: 35px;
}

.categories {
    /* padding: 40px 0; */
}

.categories_content p {
    width: 80%;
    margin:  0 auto;
}
.categories-boxs {
    padding: 51px 0;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}
.categories_btn a {
 width: 190px;
 height: 50px;
 background: #349dd5;
 display: flex;
 justify-content: end;
 align-items: center;
 gap: 22px;
 padding: 8px;
 border-radius: 50px;
 color: #fff;
 text-transform: uppercase;
 margin:  0 auto;
}
.categories_btn a img {
  height: auto;
    width: auto;
    display: flex;
    background: #fff;
    padding: 16px 19px;
    border-radius: 42px;  
}
.categories_btn {
    padding: 20px 0;
}
.Learning_Journey {
    padding: 75px 0;
}
.Learning_Journey_content{
    display: flex;
    justify-content: space-between;

}
.Learning_Journey_content a {
 width: 242px;
 height: 50px;
 background: #349dd5;
 display: flex;
 justify-content: end;
 align-items: center;
 gap: 22px;
 padding: 8px;
 border-radius: 50px;
 color: #fff;
 text-transform: uppercase;
}
.Learning_Journey_content a img{
     height: auto;
    width: auto;
    display: flex;
    background: #fff;
    padding: 16px 19px;
    border-radius: 42px; 
}
.coures img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.lesson {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    align-items: center;
}

.lesson span {
    font-size: 11px;
    padding-left: 4px;
    color: #7c7c7c;
}

.lesson i {
    font-size: 7px;
    color: #dd8012;
}

.coures_text h4 {
    font-size: 15px;
    font-weight: 600;
    font-family: 'montserrat-medium';
    text-transform: uppercase;
    color: #0e0d0d;
}

.coures_text p {
    font-size: 14px;
}

.lesson_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #7c7c7c33;
    padding-top: 10px;
}

.lesson_btn h5 {
    margin: 0;
    font-weight: 600;
}

.lesson_btn h5 span {
    font-size: 14px;
    color: #7c7c7c;
    text-decoration: line-through;
}

.lesson_btn a {
    text-transform: uppercase;
    color: #000;
}
.why_choseus{
    background-image: url(../images/why-chose-us-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border: 9px solid #fff;
    position: relative;
    z-index: 1;
    /* object-fit: cover; */
    height: 650px;
}
.why_choseus_text {
    padding: 100px 0;
    margin-top: 208px;
    /* background: antiquewhite; */
    /* position: relative; */
    /* z-index: 1; */
}
.why_choseus_text::before{
    position: absolute;
    content: '';
    width: 52%;
    height: 65%;
    z-index: -1;
    background-color: #349dd5;
    right: 0;
    bottom: 0;
    border-radius: 14px 00 10px;
}
.why_choseus_text h2 {
    color: #fff;
}

.why_choseus_text p {
    color: #fff;
    line-height: 25px;
    font-size: 14px;
}

.why_choseus_text a {
    width: 190px;
    height: 50px;
    background: #349dd5;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 22px;
    padding: 3px;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid;
}

.why_choseus_text a img {
    height: auto;
    width: auto;
    display: flex;
    background: #fff;
    padding: 16px 19px;
    border-radius: 42px;
}
.blogs_sec {
    padding: 50px;
    padding-top: 0;
}
.blogs_content p {
    width: 70%;
    margin: 0 auto;
}
.blogs_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.blogs_text {
    padding: 25px  0 0;
}

.blogs_text h5 {
    position: relative;
    z-index: 1;
}

.blogs_text h5:before {
    position: absolute;
    content: '';
    width: 90%;
    height: 1px;
    background: #00000066;
    right: 0;
    top: 9px;
}

.blogs_text h4 {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    align-items: center;
    margin: 0;
    padding-bottom: 10px;
}

.blogs_text h4 i {
    color: #349dd5;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50px;
}

.blogs_text p {
    font-size: 11px;
    line-height: 17px;
}
.blogs_descrpition {
    background: #3ca6fe;
    height: 528px;
    padding: 40px;
    border-radius: 6px;
    width: 96%;
}

.blogs_descrpition h3 {
    color: #fff;
    position: relative;
    z-index: 1;
    font-family: 'montserrat-medium';
}

.blogs_descrpition h3:before {
    position: absolute;
    content: '';
    width: 27%;
    height: 1px;
    background: aliceblue;
    bottom: -8px;
    left: 0;
}

.blogs_descrpition p {
    color: #9aceea;
    line-height: 27px;
}
.blogs_icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blogs_icon i {
    color: #9aceea;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid;
    border-radius: 50px;
}
.blogs_icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #9aceea;
}

.Blog_slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1.2 !important;
}

.Blog_slider .slick-next:before {
    content: '';
    background-image: url(../images/right-arrow.png);
    background-color: #ffffff;
    padding: 21px 26px;
    background-repeat: no-repeat;
    position: absolute;
    background-position: center;
    opacity: 1;
    right: 0;
    bottom: 0;
    border-radius: 6px;
}

.Blog_slider .slick-prev:before {
    content: '';
    background-image: url(../images/left-arrow.png);
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    padding: 21px 26px;
    bottom: 0;
    background-position: center;
    opacity: 1;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
}
.Blog_slider .slick-next {
    right: -48%;
    top: 81%;
}
.Blog_slider .slick-prev {
    left: 135%;
    top: 81%;
}
.follwers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 23px 22px;
    border-radius: 20px;
    position: absolute;
    width: 89%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -34px;
    height: 106px;
    z-index: 999999;
}

.follwers ul {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin: 0;
}

.follwers h4 {
    font-size: 14px;
    margin: 0;
}

.follwers:before {
    position: absolute;
    content: '';
    width: 73%;
    height: 1px;
    background: #000;
    /* left: 0; */
    right: 240px;
    margin: 0 auto;
    top: 46px;
}
.follwers ul li a:hover {
    color: #fff;
    background: #349dd5;
    border: unset;
}
.follwers ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid #7c7c7c;
    color: #000;
    border-radius: 51px;
}

.pricing {
    padding: 100px 0;
}

.pricing_content {
    text-align: center;
}

.pricing_content p {
    width: 75%;
    margin: 0 auto;
}
.pricing-box h5 {
    font-family: montserrat-regular;
    font-size: 13px;
    margin: 0;
    padding-bottom: 10px;
    text-align: center;
}

.pricing-box h6 {
    /* padding-left: 59px; */
    font-size: 47px;
    color: #349dd5;
    text-align: center;
}

.pricing-box p {
    line-height: 22px;
}

.pricing-box ul li {
    padding-bottom: 13px;
}

.pricing-box {
    padding: 45px 25px;
    width: 84%;
}

.pricing-box a {
    width: 250px;
    height: 50px;
    background: #349dd5;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 22px;
    padding: 3px;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid;
}

.pricing-box a img {
    height: auto;
    width: auto;
    display: flex;
    background: #fff;
    padding: 16px 19px;
    border-radius: 42px;
}
.pricing-box:hover {
    background: #349dd5;
}

.pricing-box:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7500%) hue-rotate(312deg) brightness(101%) contrast(112%);
}

.pricing-box:hover a {
    background: #fff;
    color: #349dd5;
    justify-content: center;
}

.pricing-box:hover a img {
    display: none;
}

.pricing-box:hover ul li {
    color: #fff;
}

.pricing-box:hover p {
    color: #fff;
}

.pricing-box:hover h5 {
    color: #fff;
}

.pricing-box:hover h6 {
    color: #fff;
}
/*login start*/

section.login {
    padding: 100px 50px;
}
.icons {
    position: relative;
    z-index: 1;
}

.icons i {
    position: absolute;
    top: -49px;
    left: 9px;
    color: #000;
    font-size: 21px;
}
.login-txt form input {
    width: 100%;
    margin-bottom: 10px;
    outline: none;
    padding: 15px 37px;
    border: 1px solid #e2e2e2;
    color: #000;
    border-radius: 0px;
    background-color: #ebebeb;
}
.login-txt form select {
    width: 100%;
    margin-bottom: 10px;
    outline: none;
    padding: 15px 15px;
    border: 1px solid #e2e2e2;
    color: #000;
    border-radius: 0px;
    background-color: #fff;
    -webkit-appearance: auto;
}

.login-txt h3 {
    font-size: 45px;
    text-align: center;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 400;
}

.login-txt {
    padding: 45px 25px 35px;
    border-radius: 0px;
    /* background-color: #fdfdfd; */
    /* border: 2px solid #e8e8e8; */
    /* background-color: rgb(255, 255, 255); */
    /* box-shadow: 0px 0px 16px 0px rgba(63, 63, 63, 0.15); */
}

.login-txt ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

li.head {
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

.login-txt ul li {
    display: flex;
    gap: 7px;
}

.login-txt form button {
    width: 100%;
    color: #fff;
    border-radius: 0px;
    padding: 14px 0px;
    outline: none;
    border: none;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: -3.119px 14.672px 38px 0px rgba(21, 21, 23, 0.21);
    /* border-radius: 100px; */
    background: linear-gradient(180deg, rgb(139 105 74 / 72%) 0%, rgb(160 125 90) 100%);
}

.login-txt a {
    color: #000;
    text-decoration: underline;
}

.login-txt.on {
    /* background-color: #01253b; */
}

.login-txt.on h3 {
    color: #000000;
}
.login-txt.on input{
  background-color: #ebebeb;
  border: 1px solid #fff;
  color: #000000;
}
.login-txt.on input::placeholder {
    color: #a7a7a7;
}
.login-txt.on  ul li {
    display: flex;
    gap: 7px;
    color: #000000;
}
.login-txt.on  ul{
  justify-content: space-between;
}
.login-txt.on ul li input {
    height: 25px;
    width: 28px;
}
.login-txt.on button {
    background-color: #349dd5 !important;
    background: unset;
    color: #ffffff;
    border-radius: 100px;
    display: flex;
    width: 150px;
    justify-content: end;
    align-items: center;
    height: 50px;
    padding: 5px;
    border: unset;
    gap: 20px;
    text-transform: uppercase;
    font-size: 14px;
}

.login-txt form button {
    background: unset;
    background-color: #349dd5;
    border-radius: 100px;
    text-transform: uppercase;
}
.login-txt.on button img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto;
    border-radius: 50px;
    background: #ffffff;
    padding: 17px 17px;
}
/*login end*/
/* Contact Start  */

section.contact-page {
  position: relative;
  padding: 100px 40px;
}

section.contact-page .wraper {
  width: 90%;
  margin: 0px auto;
  position: relative;
}

section.contact-page .ctc-contentWraper {
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 30px 40px;
  width: 90%;
  margin: 0px auto;
  background: #fff;
}

section.contact-page .ctc-contentWraper .content {
  position: relative;
}

section.contact-page .content h6 {
  font-family: 'montserrat-medium';
  font-size: 13px;
  color: #000000;
  margin-top: 0;
  font-weight: 400;
  text-transform: uppercase;
}

section.contact-page .content h2 {
  font-size: 42px;
  color: #000;
  padding: 0px 0 12px;
  font-weight: 400;
}

section.contact-page .content p {
  width: 68%;
  color: #9d9d9d;
  opacity: 1;
}

section.contact-page .content .tel {
  position: relative;
  margin: 60px 0 50px;
}

section.contact-page .content .tel a {
  font-size: 30px;
  line-height: 40px;
  color: #000;
  font-weight: 400;
  font-family: 'TrajanPro-Regular';
}

section.contact-page form {
  position: relative;
}

section.contact-page form .formField {
  position: relative;
  margin-bottom: 10px;
}

section.contact-page form .formField input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #dadada;
  height: 52px;
  padding: 0px 29px;
  color: #000;
  font-family: "Poppins";
}

section.contact-page form .formField input::placeholder {
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

section.contact-page form textarea#message {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #dadada;
  padding: 15px 29px 31px;
  color: #000;
  font-family: "Poppins";
  height: 110px;
  resize: unset;
}

section.contact-page form textarea#message::placeholder {
  position: absolute;
  bottom: 16px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

section.contact-page form .meessage {
  position: relative;
}

section.contact-page form .siteBtn {
  display: inline-block;
  position: absolute;
  bottom: -10px;
  right: 34px;
}

section.contact-page .smtpsConnection {
  margin: 50px 0 0px;
}

section.contact-page .smtpsConnection .iconsBox {
  padding: 50px 0px 10px;
  position: relative;
  display: flex;
  gap: 20px;
}

section.contact-page .smtpsConnection .iconsBox p span {
  display: block;
}

section.contact-page .smtpsConnection .iconsBox p,
.iconsBox p a {
  color: #9d9d9d;
  opacity: 1;
}

section.contact-page .smtpsConnection .col3 .iconsBox {
  justify-content: flex-end;
}

section.contact-page .smtpsConnection .col2 .iconsBox {
  justify-content: center;
  padding-right: 40px;
}

section.contact-page .smtpsConnection .col2 .iconsBox:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: 1px;
  top: 0;
  background: #000;
  opacity: 20%;
}

section.contact-page .smtpsConnection .col2 .iconsBox:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 7px;
  top: 0;
  background: #000;
  opacity: 20%;
}
.mapImg img {
    border-radius: 20px;
    height: 521px;
    width: 100%;
}
section.contact-page .contacMap {
  margin-top: -190px;
}
/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 55px;
  border-radius: 100px;
  overflow: hidden;
  background-color: #349dd5;
  border: 1px solid #fff;
  padding: 0 75px 0 20px;
  box-shadow: 0 0 20px 0 #00000057;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  font-family: "Montserrat";
  color: #fff !important;
  text-transform: uppercase;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 60px;
  border-radius: 100px;
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: 3%;
  left: 68%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
  width: 96%;
  left: 2%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon i {
  color: #000000 !important;
  rotate: 320deg;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon i {
  rotate: 0deg;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */
/* Contact End */


.course-section{
background:#f5f5f5;
padding:60px 0;
}

.top-area{
display:flex;
align-items:center;
justify-content:space-between;
position:relative;
}

/* banner */

.banner{width: 100%;background:linear-gradient(rgba(0,140,200,.8),rgba(0,140,200,.8)),
url(../images/why-chose-us-back.jpg);background-size:cover;background-position:center;padding: 182px 38px 0;border-radius:6px;color:#fff;height: 50vh;}

.banner h2{margin:15px 0;font-size:24px;color: #fff;font-family: 'montserrat-medium';}

.banner p{max-width:500px;font-size:14px;color: #fff;}

.badge{
background:#fff;
color:#000;
padding:4px 10px;
font-size:12px;
border-radius:3px;
}

/* card */

.product-card{width:300px;background:#fff;box-shadow:0 10px 30px rgba(0,0,0,.15);border-radius:8px;position:absolute;right: 30px;top: 166px;}

.card-img img{width:100%;height: 261px;object-fit:cover;border-top-left-radius:8px;border-top-right-radius:8px;}

.card-content{
padding:20px;
}

.price-row{display:flex;justify-content:space-between;font-size: 13px;margin-bottom:10px;color:#666;}
.price-row span {
    font-weight: 600;
    color: #000;
}

.price-row b {
    font-family: 'TrajanPro-Regular';
    color: #000;
    font-size: 15px;
}
.card-content h4{font-size: 14px;margin-bottom:10px;font-weight: 600;}

.card-content p{
font-size:13px;
color:#777;
margin-bottom:15px;
}

.meta{display:flex;justify-content:space-between;font-size:12px;margin-bottom:15px;border-top: 1px solid;}
.meta i {
    color: #ff9415;
    font-size: 8px;
}
.btn{
display:inline-block;
padding:10px 18px;
border:2px solid #1b8ed1;
border-radius:30px;
text-decoration:none;
font-size:13px;
color:#1b8ed1;
}

.btn:hover{
background:#1b8ed1;
color:#fff;
}

/* description */

.description{margin-top: 30px;}

.description h2{
font-size:26px;
margin-bottom:20px;
}
p.para1 {
    width: 73%;
}
.description p{
font-size:14px;
color:#777;
line-height:1.8;
margin-bottom:20px;
}


/* banner */

.main_slider{
position:relative;
}

.banner_img{
width:100%;
height:100vh;
object-fit:cover;
}

.carousel-caption{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
align-items:center;
background:rgba(0,0,0,0.1);
text-align:left;
}

/* banner text */

.banner_text h1{font-size:60px;font-family:serif;color:#222;margin-bottom:20px;text-transform: uppercase;}

.banner_text p{
color:#555;
max-width:450px;
margin-bottom:30px;
}

/* search box */

.search_box{
position:relative;
max-width:500px;
}

.search_box input{
width:100%;
height:65px;
border-radius:50px;
border:none;
padding-left:25px;
}

.search_box button{position:absolute;right:5px;top:5px;height:55px;padding: 0 17px;border:none;background:#349dd5;color:#fff;border-radius:40px;font-size:14px;}

/* floating boxes */
i.fa-solid.fa-video {}

.vedio {
    position: absolute;
    right: -26px;
    top: -27px;
}

.vedio i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: #349dd5;
    color: #fff;
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid;
}
.course_box{position:absolute;top:120px;right: 41%;background: #ffffff;padding: 10px 20px;border-radius:10px;box-shadow: -2px 5px 0px 5px rgb(255 255 255 / 10%);font-size:13px;font-weight:600;color: #000;}

.stats_box{position:absolute;bottom:150px;right: 39%;background:#349dd5;color:#fff;padding:20px;border-radius: 5px;text-align:center;width: 133px;height: 171px;}

.circle{width:70px;height:70px;border-radius:50%;border: 6px solid rgb(154 206 234);display:flex;align-items:center;justify-content:center;margin:auto;font-weight:bold;background: #fff;color: #000;overflow: hidden;}

.students_box{position:absolute;bottom: 212px;right: 150px;background:#fff;padding:15px 20px;border-radius:10px;/* box-shadow:0 10px 30px rgba(0,0,0,0.1); */box-shadow: -2px 5px 0px 5px rgb(255 255 255 / 10%);}
.stats_box h6 {
    font-size: 11px;
    margin: 0;
    padding-bottom: 9px;
    color: #fff;
    font-family: 'montserrat-medium';
}

.stats_box p {
    color: #fff;
    font-size: 9px;
}

.stats_box .circle:before {
    position: absolute;
    content: '46%';
    width: 42px;
    height: 45px;
    background: #1d78a9;
    bottom: 59px;
    right: 30px;
    border-radius: 0px 35px 0px  0px;
    z-index: 1;
    padding: 13px 0;
    font-size: 11px;
    color: #fff;
}
.students_box p{font-size:12px;margin-bottom:10px;color: #2e2d2d;}

.avatars img{width:35px;height:35px;border-radius:50%;margin-right: -16px;border:2px solid #fff;object-fit: cover;}
/* 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;
}