@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');
 @import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&display=swap');
*{
    font-family: 'Montserrat', sans-serif;
}


/* Lucky@200d */


/* custom scroll */


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #969595;
}

/* Handle */

 ::-webkit-scrollbar-thumb {
    background: rgb(25, 180, 219);
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: rgb(4, 30, 173);
}


/* end custom scroll */


/* body{
    zoom: 1.25;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}




.card-header .h5{
    font-weight: 600;
    margin:0;
}
.about-sec .card-header{
    background-color: #ccc;
}
a:hover {
    text-decoration: none;
}

body {
    overflow-x: hidden;
}

.text-theme {
    color: #1e6eb2;
}
.leftBox{
    background-color: #023356;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding:20px 15px;
}
.leftBoxContent{
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 100%;
    justify-content: center;
    list-style-type:none;
}
.leftBoxContent > li{
    display:flex;
    align-items:center;
    padding:7px 0;
}

.leftBoxContent > li > img{
    width:40px;
    height:40px;
    margin-right:10px;
}
.leftBoxContent > li > h4{
    color: #fff;
    font-size:24px;
    padding: 0;
    margin: 0;
}

.video-btn {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    box-shadow: 0 0 5px #000;
    background-color: #00AFF0;
    cursor: pointer;
    font-size: 32px;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    padding: 5px 7px;
    margin-left: 15px;
}

.video-btn:hover {
    color: #fff;
}

.top-header {
    width: 100%;
    background-color: #234786;
}

.contact-content {
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.contact-content>p>a {
    text-decoration: none;
    font-size: 16px;
    vertical-align: center;
}

.contact-content>p>a>i {
    margin-right: 5px;
}

.social-info {
    justify-content: space-between;
    align-items: center;
}

.Err{
    display:block;
    text-align:left;
}

.social-info>p>a {
    color: #fff;
}

.slink {
    padding: 8px 12px;
}

.btn-custom {
    display: block;
    background-color: #fd0023;
    color: #fff;
    padding: 12px 25px 13px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    border: none;
}

.search_btn {
    border: 2px solid #fff;
    padding: 4.5px 10px;
    cursor: pointer;
}

.btn-custom:hover {
    color: #fff;
    text-decoration: none;
}

.main-header {
    /*background-color: #eee;*/
    border-bottom: 1px solid #ccc;
    box-shadow: 0 5px 5px #ccc;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

.navi {
    height: 100%;
}

.navi-menu {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    align-items: center;
    height: 100%;
}

.navi-menu a {
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.nav-link {
    padding: .5rem 0.7rem;
}

.navi-menu>.nav-item {
    padding: 4px 0;
    position: relative;
}
.navi-menu>.nav-item:before{
    position:absolute;
    content:"";
    bottom:0;
    width:0%;
    height:3px;
    transition: .5s ease-in-out;
    background-color: #0076fa;
    border-radius:50px;
}
.navi-menu>.nav-item:hover:before{
    position:absolute;
    content:"";
    bottom:0;
    width:100%;
    height:3px;
    transition: .5s ease-in-out;
    background-color: #0076fa;
}

.navi-menu>.nav-item:hover {
    background-color: #eee;
}

.dropdown {
    list-style-type: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background-color: #fff;
    padding: 10px 15px;
    width: 245px;
    background-color: #eee;
    display: none;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown>.sub-nav-item {
    font-size: 15px;
    font-weight: 500;
    padding: 7px 15px;
    position: relative;
}

.dropdown>.sub-nav-item a {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.dropdown>.sub-nav-item:hover {
    background-color: #234786;
    color: #fff;
}

.dropdown>.sub-nav-item:hover>a {
    color: #fff;
    text-decoration: none;
}

.sub-dropdown {
    position: absolute;
    top: 0;
    width: 245px;
    padding: 10px 15px;
    background-color: #eee;
    left: 100%;
    list-style-type: none;
    display: none;
}

.dropdown>.sub-nav-item:hover>.sub-dropdown {
    display: block;
}

.sub-dropdown .sub2-nav-item {
    font-size: 15px;
    font-weight: 500;
    padding: 7px 15px;
    position: relative;
    color: #000;
}

.sub-dropdown>.sub2-nav-item:hover {
    color: #fff;
    background-color: #234786;
}

.sub-dropdown>.sub2-nav-item:hover>a {
    color: #fff;
    text-decoration: none;
}

.sub-sub-dropdown {
    position: absolute;
    top: 0;
    width: 250px;
    padding: 10px 15px;
    background-color: #eee;
    left: 100%;
    list-style-type: none;
    display: none;
    /* box-shadow: 0 5px 10px #000; */
}

.sub-dropdown>.sub2-nav-item:hover>.sub-sub-dropdown {
    display: block;
}

.sub-sub-dropdown>.sub2-nav-item:hover {
    color: #fff;
    background-color: #234786;
}

.sub-sub-dropdown>.sub2-nav-item:hover>a {
    color: #fff;
    background-color: #234786;
}


/*Mobile Header*/

.mobile-header {
    display: none;
}

.mobile-navi {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    /*opacity: 0.5;*/
    top: 0;
    padding: 20px;
    left: -100%;
    transition: 0.5s;
    z-index: 9;
}

.menu-close {
    font-size: 18px;
}

.menu-close i {
    padding: 7px 10px;
    background-color: #ccc;
    box-shadow: 0 0 5px #ccc;
    border-radius: 50%;
}

.setting-navi {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #eee;
    /*opacity: 0.5;*/
    top: 0;
    right: -100%;
    padding: 20px;
    transition: 0.5s;
    z-index: 9;
}

.searchMobile {
    border: none;
    border-bottom: 2px solid #000;
    border-radius: 0;
    padding: 15px 24px;
}

.searchBoxmobile>i {
    top: 30%;
    left: 4%;
}

.searchBoxmobile>input {
    font-size: 18px;
    padding: 25px 15px 25px 40px;
}

.slidingMenu {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-grow: 1;
    height: 415px;
    margin-bottom: 20px;
}

.sliding-menu-panel {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
}

.sliding-menu-panel li {
    margin: 0;
    position: relative;
    list-style: none;
}

.sliding-menu-panel li a {
    position: relative;
    display: block;
    padding: .7em 0;
    text-decoration: none;
    color: #444;
}

.sliding-menu-nav:before {
    float: right;
    margin-left: 1em;
    content: "\276F";
    font-family: "et-icon";
}

.bottom-extras {
    width: 100%;
    border-top: 1px solid #ddd;
    border-top-color: rgba(0, 0, 0, 0.1);
    /* padding-top: 10px; */
}





.sidenav ul li a {
    border-bottom: 1px solid #202020;
    display: flex;
    justify-content: space-between;
}

.sidenav ul li .card a:last-child {
    border: none;
}

.sidenav ul li .card.card-body {
    padding: 0;
}

.sidenav ul li .card {
    background: #004d79;
}

.sidenav ul li .card a {
    padding: 0;
}

.sidenav ul li .card a p {
    margin: 0;
    padding: 15px 8px 15px 32px;
    width: 100%;
}


/* The side navigation menu */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    background: linear-gradient(#0e2d51, #0c3361, #0066B3);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.sidenav ul {
    list-style-type: none;
    padding: 0;
}


/* The navigation menu links */

.sidenav a {
    padding: 15px 8px 15px 32px;
    text-decoration: none;
    font-size: 16px;
    color: var(--light);
    display: block;
    transition: 0.3s;
}


/* When you mouse over the navigation links, change their color */

.sidenav a:hover {
    color: #f1f1f1;
}


/* Position and style the close button (top right corner) */

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}






.acoount-menu {
    list-style-type: none;
}

.mobile-account-login,
.mobile-cart-detail,
.mobile-social-link {
    display: flex;
    align-items: center;
    padding: .7em 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    width: 100%;
    padding: 15px 0;
}

.mobile-account-login>a,
.mobile-cart-detail>a,
.mobile-social-link>a {
    color: #444;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.mobileHeader {
    display: none;
}

.mobile-social-link>i {
    font-size: 26px;
    margin: 0 15px;
}

.sec_title {
    font-size: 42px;
    font-weight: 900;
}

.sec_title::after {
    position: absolute;
    content: "";
}

.mobile-slide {
    display: none !important;
}

.searchbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 0 0 / 90%);
    z-index: 9999;
    transform: scale(0);
    transition: cubic-bezier(0.14, 1.36, 1, -0.1) 0.5s;
}

.searchbox label {
    display: block;
    margin-top: 15%;
}

.search-input {
    width: 100%;
    padding: 15px 35px;
    font-size: 35px;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
}

.searchbox-close {
    cursor: pointer;
}


/* user css */

.user_regsterAndlogin {
    width: 100%;
    height: 100vh;
    background-color: #000000af;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    transition: 0.5s;
}

.rogister_login {
    width: 25%;
    height: 100%;
    position: absolute;
    right: 0;
    background-color: #eee;
    padding: 25px;
}

.rogister_login h4 {
    padding: 25px 0;
}

.usertab {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.usertab>li {
    padding: 10px 25px;
    width: 49%;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 2px;
}

.remember {
    padding: auto;
    width: 20px;
    height: 20px;
}

.usertab>li.active {
    background-color: #0077ff;
    border: 1px solid #fff;
    color: #fff;
}

.registerloginForm {
    display: flex;
    justify-content: center;
}

.registerForm,
.loginForm {
    width: 90%;
    padding: 0 20px;
    background: #fff;
}

.registerForm input,
.loginForm input {
    border: 1px solid #a0a0a0;
}

.loginwithgoogle {
    background-color: brown;
    color: #fff;
    margin-bottom: 5px;
}

.loginwithgoogle:hover {
    color: #fff;
}

.loginwithfacebook {
    color: #fff;
    background-color: rgb(0, 162, 255);
}

.loginwithfacebook:hover {
    color: #fff;
}

.slider .carousel-caption {
    top: 0%;
    width: 100%;
    height: 100%;
    left: 0;
    text-align: left;
}

.carousel-control-next,
.carousel-control-prev {
    z-index: 99;
}

.crousel-content {
    position: absolute;
    top: 25%;
}

.cr-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 25%;
}

.cr-content h1 {
    font-size: 45px;
    line-height: 55px;
}

.cr-content p {
    line-height: 30px;
    font-size: 20px;
    padding: 15px 0;
    margin-bottom: 0;
}

.customt-slider-btn {
    color: #fff;
    font-size: 20px;
    padding: 7px 25px;
    border-radius: 0;
    background-color: rgb(0, 65, 139);
}

.ourBrand {
    width: 100%;
    /* background-color: #eee; */
    padding: 30px 0;
}

.brandBox {
    width: 100%;
    padding: 15px 12px;
    border: 1px solid rgb(171 171 171 / 57%);
    box-shadow: rgb(99 99 99 / 53%) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom:15px;
}

.brandBox>h2>.bi-download {
    color: #0076fa;
}

.brandBox>h2>.bi-star-fill {
    color: goldenrod;
    ;
}

.brandBox>h2>.bi-youtube {
    color: #f00;
    ;
}

.brandBox>h2>.bi-emoji-smile {
    color: #001fff;
}

.brandBox h2 {
    font-size: 36px;
    font-weight: 800;
}

.mobile-slide {
    display: none;
}

.slider {
    display: block;
}





.ourCourse {
    /*background-color: aliceblue;*/
    background-image: url(../images/course_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 20px 0;
}

.title {
    font-size: 28px;
    margin: 30px 0 20px 0;
}

.title_background {
    background-color: #0f4760;
    color: #fff;
    padding: 10px 40px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.explore_btn {
    padding: 7px 25px;
    background-color: #0f4760;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
}

.vision-title {
    font-size: 22px;
    padding: 25px 0 15px 0;
}

.course-box {
    border: 1px solid rgb(204, 204, 204);
    margin: 0 10px;
    position: relative;
    box-sizing: unset;
}

.course-box h3 {
    font-size: 22px;
}

.course-detail {
    padding: 10px 20px;
    margin-top: 15px;
}

.registeration {
    font-size: 14px;
    background-color: #fd0023;
    font-weight: 500;
    color: #fff;
}

.registeration:hover {
    background-color: rgb(0, 162, 255);
    color: #fff;
}

hr {
    background-color: rgba(0, 0, 0, 0.541);
}

.rating_andprice {
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
}

.priceing span {
    font-size: 20px;
    font-weight: 600;
}

.priceing strike {
    font-size: 18px;
    color: #f00;
}

.course-full-detail {
    position: absolute;
    width: 98%;
    height: 98%;
    background-color: #fff;
    box-shadow: 0 10px 30px 11px rgb(0 0 0 / 25%);
    top: 1%;
    left: 1%;
    z-index: 999;
    /* box-sizing: unset; */
    padding: 25px;
    transition: cubic-bezier(0.96, 0.15, 0.36, 1.21) 0.5s;
    transform: scale(0);
}

.course-box:hover .course-full-detail {
    transform: scale(1);
    transition: cubic-bezier(0.96, 0.15, 0.36, 1.21) 0.5s;
    ;
}

.slick-next,
.slick-prev {
    /* background-color: #000 !important;
    width: 30px !important;
    height: 30px !important; */
    background-color: #000 !important;
    border-radius: 50px;
}

.title_cap {
    padding: 25px 20px;
    font-size: 18px;
}

.fix-contact {
    position: fixed;
    top: 30%;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

/*.fix-contact>a {*/
/*    background-color: brown;*/
/*    border-radius: 0 10px 10px 0;*/
/*    color: #ffffff;*/
/*    margin: 0;*/
/*    padding: 0px 8px;*/
/*    font-size: 28px;*/
/*    margin-top: 2px;*/
/*}*/

.fix-contact>a {
    background-color: #ffffffed;
    border-radius: 0 4px 4px 0;
    color: #ffffff;
    margin: 0;
    padding: 6px 8px 6px 0px;
    /* font-size: 28px; */
    margin-top: 2px;
    box-shadow: 0 0 4px #141414;
}

.fix-contact>a > img{
    padding: 3px;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 4px #000;
    width: 32px;

}
/*.fix-contact>a:first-child {*/
/*    background-color: brown;*/
/*}*/

/*.fix-contact>a:nth-child(2) {*/
/*    background-color: #25d366;*/
/*}*/

/*.fix-contact>a:nth-child(3) {*/
/*    background-color: #34B7F1;*/
/*}*/

/*.fix-contact>a:nth-child(4) {*/
/*    background-color: #3480f1;*/
/*}*/

.getContact {
    transform-origin: 0 0;
    transform: rotate(90deg);
    color: #fff;
}

.title-cont {
    margin-top: 40px;
    margin-bottom: 15px;
}


/* .whatLearn{
    
} */

.title-cont>h2 {
    line-height: 46px;
    font-weight: 700;
    font-size: 36px;
    color: #273044;
    text-align: center;
}

.sub-t {
    font-size: 16px;
    color: #273044;
    line-height: 30px;
    text-align: center;
}

.about-sec {
    /* background-color: #eee; */
    padding: 50px 0;
}

.about-video {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 2rem;
    box-shadow: 0 0 5px rgb(0 0 0 / 55%);
}

.heading-section .subheading {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    color: #1e6bb2;
    font-weight: 700;
    text-transform: uppercase;
}

.heading-section h2,
.heading-section .h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0, 0, 0, .8);
}

.vision-box {
    margin-bottom: 10px
}

.vision-box>p {
    margin: 0;
    font-weight: 500;
}

.teaching_methodology {
    background-color: #e9e9e9c2;
    padding: 15px 0;
    margin-top: 25px;
}

.tm_box {
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #a0a0a071;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tm_box>ul {
    font-style: italic;
    margin-top: 15px;
}

.tm_box>p {
    margin: 0;
    /* margin-left: 15px; */
    font-weight: 500;
}

.services-wrap {
    position: relative;
    margin-bottom: 15px;
    transition-delay: 0.5s;
}

.services-wrap .services {
    padding: 20px;
    display: flex;
    width: 100%;
    margin-bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(171 171 171 / 57%);
    box-shadow: rgb(99 99 99 / 53%) 0px 2px 8px 0px;
}

.services:hover {
    background: #1e6eb2;
    color: #fff;
    transition: 0.5s;
    border: 1px solid #9c9c9c;
    box-shadow: 0 5px 25px -2px rgb(0 0 0 / 18%);
}

.services:hover h2 {
    color: #fff;
    transition: 0.5s;
}

.services img {
    background-color: rgb(255, 255, 255);
    padding: 5px;
    border-radius: 5px;
}

.services-wrap .services h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}


/* Our Book */

.book-sec {
    padding: 25px 0;
}

.sellbook {
    display: flex !important;
    flex-direction:column;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ffffff;
    border-radius: 24px;
    box-shadow: 0 0 8px #000000;
    margin: 0 6px;
    height: 530px;
    transform:scale(0.8);
    background-color: #fff;
}
.bookimg{
    width: max-content;
    margin: 0 auto;
    padding: 15px;
    background-color: #0f4760;
    border-radius: 24px;
    margin-bottom: 20px;
    transform:scale(0.9);
}

.bookimg>img {
    width: 200px;
    height: 290px;
    margin: 0 auto;
    box-shadow:0 0 8px #000;
    transform:scale(0.88);
}

.bookdetail {
    margin-left: 15px;
}
.bookname{
    font-size:12px;
    border-bottom: 1px solid #898989;
    padding-bottom: 12px;
}
.bookdetail .bookMedium {
    margin: 0;
    padding: 4px 0;
    color: #CD201F;
    font-weight: 600;
    font-size: 10px;
    margin-left: 15px;
}

.bookdetail .author {
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bookdetail .author .teacher_name {
    color: rgb(29, 29, 29);
    font-size: 10px;
}

.downloadApp img {
    border: 1px solid #fff;
    padding: 3px;
    box-shadow: 0 0 5px #000;
    border-radius: 8px;
}

.learn-bg {
    /* background-image: url(../images/rohit_sir.jpg);
    background-size: cover;
    background-position:  41%; */
    height: 100%;
}

.learn-bg>iframe {
    padding: 5px;
    border: 2px solid #fff;
    box-shadow: 0 0 10px #000;
}

.videobox {
    border: 1px solid rgb(172, 172, 172);
    padding: 5px;
    border-radius: 5px;
    margin: 0 7px;
}

.appSect {
    /* background-color: #eee; */
    background-image: url(../images/course_background.jpg);
    padding: 50px 0;
    background-attachment:fixed;
}

.appSect .title {
    font-size: 46px;
    line-height: 57px;
    color: rgb(39, 48, 68);
    font-family: Montserrat;
    font-weight: 700;
}

.buttons.dark {
    background-color: #000;
    color: #fff !important;
    border: 1px solid #000;
}

.buttons i {
    font-size: 44px;
    padding-right: 20px;
    color: #fff;
    margin-top: -8px;
}

.buttons.dark a {
    color: #fff;
    text-decoration: none;
}

.buttons.dark a:hover {
    text-decoration: none;
    color: #fff;
}

.contBox {
    width: 100%;
    height: auto;
    border: 1px solid #d1d1d170;
    padding: 20px 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.gitimg {
    margin-top: 25px;
}

.contBox h2 {
    font-size: 46px;
}

.getintouch .contact-form input {
    border: 1px solid rgb(167 163 163);
    border-radius: 4px;
}

.getintouch .contact-form textarea {
    border: 2px solid #fff;
    /*rgb(167 163 163)*/
    border-radius: 4px;
    max-width: 100%;
    height: 100px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.submit-btn {
    background-color: rgb(0, 65, 139);
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 25px;
    font-size: 17px;
    box-shadow: 0 0 5px #000;
}


/* Our Branches */

.ourBranches {
    background-image: url(../images/our_branches.svg);
    background-size: cover;
}

.branchesbg {
    width: 100%;
    height: 100%;
   
}
.branchesbg .title{
    color:white;
    padding:20px 0px;
    text-align:center;
}

.addrBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    /*box-shadow: 0px 0px 10px #000;*/
    /*border: 1px solid #fff;*/
    position:relative;
    flex-direction: column;
    transform:scale(0.8);
}

.addrBox>i {
    font-size: 36px;
    color: #fff;
}

.addrBox>a {
    font-size: 14px;
    background: #0e2d51;
    padding: 10px 15px;
    margin-left: 10px;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    border-radius: 10px;
}
.addrBox>a>h5{
    font-size:16px;
}


/* Footer */

.main-footer {
    padding: 50px 0 0px 0;
    background-color: rgb(6, 54, 110);
}

.footer_tagline {
    color: #fff;
    font-size: 10px;
    margin-top: -14px;
    margin-left: 13px;
    font-weight: 500;
}

.aboutFooter>img {
    background-color: #fff;
    padding: 10px 15px;
    box-shadow: 0 0 5px #fff;
    border-radius: 8px;
}

.abt-footer {
    color: #fff;
    font-size: 14px;
}

.socailIcon {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

.socailIcon>li {
    width: 45px;
    height: 45px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #fff;
    overflow: hidden;
    margin-right: 15px;
}

.socailIcon>li>a {
    display: block;
    font-size: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.socailIcon>li>a:hover {
    text-decoration: none;
}

.fb>a:hover {
    background-color: #1877F2;
    color: #fff;
}

.yt>a:hover {
    background-color: #CD201F;
    color: #fff;
}

.inst>a:hover {
    background: linear-gradient(#400080, transparent), linear-gradient(200deg, #d047d1, #ff0000, #ffff00);
    color: #fff;
}

.tl>a:hover {
    background-color: #00AFF0;
    color: #fff;
}

.twtr>a:hover {
    background-color: #1DA1F2;
    color: #fff;
}

.footer_title {
    color: #fff;
    font-size: 22px;
}

.footer-link,
.footer-contact-us {
    display: flex;
    flex-direction: column;
}

.footer-link>p {
    padding: 0;
    margin: 0;
    line-height: 2;
    margin-left: 10px;
}

.footer-link>p>a {
    color: #fff;
    font-size: 14px;
}

.footer-link>p>a:hover {
    color: #fd0023;
}

.footerCourse-link {
    list-style-type: none;
    padding: 0;
}

.footerCourse-link>li {
    line-height: 2;
    color: rgb(153, 153, 153);
    margin-left: 10px;
}

.footerCourse-link>li>a {
    color: rgb(255, 255, 255);
    padding: 0 5px;
}

.footerCourse-link>li>a:hover {
    color: #f00;
}

.footer-address,
.opening-timing {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.footer-address>i,
.opening-timing>i {
    color: #fff;
    font-size: 26px;
}

.footer-address>a,
.opening-timing>span {
    color: #fff;
    font-size: 16px;
    margin-left: 15px;
}

.footer-app {
    width: 75%;
    border: 2px solid #fff;
    border-radius: 4px;
}

.copyright {
    width: 100%;
    background-color: #011424;
    padding: 15px 0;
    margin-top: 15px;
}

.copyright>p {
    text-align: center;
    margin: 0;
    padding: 0;
}

.copyright>p>a {
    color: #fff;
    text-align: center;
    font-size: 17px;
}

.console-container {
    font-size: 45px;
    font-weight: 600;
}


/* About Us Page  */

.aboutBanner {
    padding: 120px 0;
}

.teambox {
    border: 1px solid #0c6baa;
    box-shadow: 0 0 5px #000;
    position: relative;
    overflow: hidden;
}


/* .teambox::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #00AFF0;
    top: -50%;
    left: 0;
    z-index: 0;
    border-radius: 50%;
} */

.team_img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.team_img>img {
    width: 50%;
    padding: 5px;
    border: 2px solid #000;
    border-radius: 50%;
    z-index: 1;
}

.socialLink {
    padding: 7px 0;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.socialLink>a {
    margin: 0 5px;
    border: 1px solid #a2a0a0;
    padding: 5px 13px;
    font-size: 20px;
    color: #000;
}


/* courses */

.banner {
    padding: 115px;
}

.course_category {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.course_category>p {
    padding: 8px 14px;
    background-color: #ccc;
    flex-wrap: wrap;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 10px;
}

.course_category>p:hover {
    background-color: #00AFF0;
    color: #fff;
}

.course_cat_active {
    background-color: #00AFF0 !important;
    color: #fff;
}

.course_category .course_active {
    background-color: #00AFF0;
    color: #fff;
}

.searchcourse {
    /* background-color: #d6d8d9; */
    padding: 5px 15px;
    border-radius: 8px;
}

.Coursesubject {
    margin-top: 20px;
    padding: 5px 15px;
}

.choseSubject {
    padding: 0;
    list-style-type: none;
}

.choseSubject input {
    margin-right: 10px;
}

.radiobtn {
    position: relative;
    display: block;
}

.radiobtn label {
    display: block;
    background: #fff;
    color: #000;
    border-radius: 5px;
    padding: 10px 20px;
    border: 2px solid #ababab;
    margin-bottom: 5px;
    cursor: pointer;
}

.radiobtn label:after,
.radiobtn label:before {
    content: "";
    position: absolute;
    right: 11px;
    top: 11px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #ababab;
}

.radiobtn label:before {
    background: transparent;
    transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
    width: 0;
    height: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zIDEzLjIiPiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjcuOGwtLjQtLjRhMS43IDEuNyAwIDAgMC0yLjMuMUw1LjIgOC4yIDMgNi40YTEuNyAxLjcgMCAwIDAtMi4zLjFMLjQgN2ExLjcgMS43IDAgMCAwIC4xIDIuM2wzLjggMy41YTEuNyAxLjcgMCAwIDAgMi40LS4xTDE1IDMuMWExLjcgMS43IDAgMCAwLS4yLTIuM3oiIGRhdGEtbmFtZT0iUGZhZCA0Ii8+PC9zdmc+);
}

.radiobtn input[type=radio] {
    display: none;
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.radiobtn input[type=radio]:checked+label {
    background: #fff;
    -webkit-animation-name: blink;
    animation-name: blink;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    border-color: #2cb0fc;
    color: #2cb0fc;
}

.radiobtn input[type=radio]:checked+label:after {
    background: #2cb0fc;
}

.radiobtn input[type=radio]:checked+label:before {
    width: 20px;
    height: 20px;
}

.tags>a {
    padding: 5px 15px;
    color: #fff;
    background-color: #4d585f;
    text-decoration: none;
    margin: 3px 3px;
    border: 2px solid transparent;
    display: inline-block;
    border-radius: 4px;
    font-size: 14px;
}

.pagination_sec {
    display: flex;
    justify-content: center;
}

.pagination {
    margin: 0;
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.5);
}

.pagination li {
    display: inline-block;
    list-style: none;
}

.pagination li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    color: #252525;
    border-radius: 4px;
    margin: 5px;
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.pagination li a:hover,
.pagination li a.active {
    color: #fff;
    background-color: #42c9ff;
}

.pagination li:first-child a {
    border-radius: 40px 0 0 40px;
}

.pagination li:last-child a {
    border-radius: 0 40px 40px 0;
}


/* product detail page */

.product-image>img {
    border: 1px solid #9c9c9c;
    box-shadow: 0 0 5px #9c9c9c;
    border-radius: 8px;
    padding: 5px;
}

.product p {
    margin: 0;
}

.why-course {
    display: flex;
    justify-content: flex-start;
}

.why-course>div {
    margin-left: 10%;
}

.u-may-like {
    background-color: #eee;
}

.subject-box {
    border: 1px solid #9c9c9c;
    box-shadow: 0 0 5px #000;
    border-radius: 6px;
    display: flex;
    box-sizing: border-box;
    width: 100%;
}

.subject-box:hover {
    transform: scale(0.99);
    box-shadow: inset 0px 0px 10px #000;
    transition: 0.5s;
}

.subject-name {
    padding: 15px 10px;
    color: #000;
}

.subject-name p {
    margin: 0;
    line-height: 30px;
}

.slideMenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    background-color: #eee;
}

.slidingMenu {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    /*background-color: #eee;*/
    overflow-y: scroll;
}

.slidingMenu>li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.slidingMenu>li>a {
    color: #444;
}


/*Notification Section*/

.latest-notification {
    background: #eee;
    padding: 25px 0;
    margin-top: 15px;
}

.notification-section-title {
    font-size: 36px;
    color: #273044;
    line-height: 46px;
    font-weight: 700;
    padding: 46px 0;
}

.noti {
    list-style-type: none;
    padding: 0;
}

.noti>.notification-item {
    list-style-type: none;
    line-height: 24px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
}


.noti>.notification-item:last-child {
    border-bottom: 0px solid #ccc;
}

.notification-title {
    color: #000;
    font-weight: 700;
    font-size: 22px;
}

.noti>.notification-item>.notification-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.noti>.notification-item>.notification-link:hover {
    color: #0076fa;
    text-decoration: none;
    font-weight: 500;
}

.notification-icon {
    border: 2px solid #fff;
    background-color: #0076fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 0 5px #000;
    font-size: 14px;
    margin-right: 10px;
}

.top_service{
    padding:35px;
}
.category_heading{
    font-size:28px;
    margin-bottom: 15px;
}
.service_box{
    padding: 10px 15px;
    border:1px solid #ccc;
    border-radius:6px;
    display:flex;
    align-items:center;
    /*display:block;*/
    color:#141414;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.service_box:hover{
    background-color:#0076fa;
}
.service_box > p{
    margin:0;
    font-size: 20px;
    /*margin:0 5px;*/
    font-weight:600;
}

.service_box:hover p{
    color:#fff;
}

.category_icon{
    width:44px;
    padding:3px;
    margin-right:18px;
    background-color:#fff;
    border-radius:4px;
}

.appSect_heading{
    background-color:#0005;
    padding:8px 15px;
    color:#fff;
    font-size: 28px;
    border-radius:6px;
}

.course-content{
    width:90%;
    margin:0 auto;
    background-color:#fff;
    padding:10px 8px;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
    margin-top: -5px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
}

.course-content h4{
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 2px solid #141414;
    color: #141414;
    font-weight: 800;
    margin-top:5px;
   
}
.course-content a{
    font-size:12px;
}

.enquiry_mail_box > h5{
    font-size:15px;
    color: #000 !important;
    font-weight: 600;
}
.enquiry_mail_box > p{
    font-size:13px;
    color: #000 !important;
}
.enquiry_mail_box > p > a{
    color: #000 !important;
}

























/*Footer change css starts*/
.main-footer{
    background-color: #0e2d51;
}
.footerCourse-link {
    display: flex;
    flex-direction: column;
}

.footerCourse-link p {
    padding: 0;
    margin: 0;
    line-height: 2;
    margin-left: 10px;
}

.footerCourse-link p a {
    color: #fff;
    font-size: 14px;
}

.footerCourse-link p a:hover {
    color: #fd0023;
}

.footerContact-link {
    list-style-type: none;
    padding: 0;
}

.footerContact-link>p {
    line-height: 2;
    color: rgb(153, 153, 153);
    margin-left: 10px;
    margin-bottom: 0px;
}

.footerContact-link>p>a {
    color: rgb(255, 255, 255) !important;
    padding: 0 5px;
    font-size: 14px;
}

.footerContact-link>p>a:hover {
    color: #f00;
}

.social-icons-div a{
    background-color: #0e2d51;
    color:#fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}
.social-icons-div button i{
    font-size: 19px;
    color: #fff;
}

.main-footer .enquiry_banner .enquiry_mail{
    border-left: 5px solid #00ADEF;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.main-footer .enquiry_banner{
    background-color: #C7EAFB;
}
/*Footer change css ends*/


.ourBranches{
    /*background-image*/
}
.dark_box{
    background-color:#053d54d9;
}
.dark_box h3{ 
    color: #fff !important;
}
.light_box{
    background-color:#ebebebf5;
}
.light_box h3{ 
    color: #141414 !important;
}

.popular_cat_box{
    text-align: center;
    padding: 30px 25px;
    display:block;
    
    /*border-radius: 6px;*/
}
.inner_popular{
    box-shadow: rgb(255 255 255 / 87%) 0px 3px 8px;
    border-radius: 4px;
    border: 2px solid #fff;
    padding: 15px 10px;
}
.popular_cat_box h3{
    font-size:18px;
    margin:0;
    font-weight:800;
}
.popular_cat_box a.btn{
    margin-top:25px;
    font-weight:600;
    box-shadow: rgb(50 50 93 / 25%) 0px 50px 100px -20px, rgb(0 0 0 / 30%) 0px 30px 60px -30px, rgb(10 37 64 / 35%) 0px -2px 6px 0px inset;
    border:2px solid #fff;
}


/*Responsive manit starts*/
@media (max-width: 576px){
    .ourBranches{
        background-image:none;
    }
    
}
/*Responsive manit ends*/



/* Offline Course  */

.offlineCourse_sect {
    width: 100%;
    margin: 10px 0 10px 0;
    padding: 25px 0;
    background-color: #0e2d51;
}

.subject_title {
    font-weight: 800;
    color: #aadef9;
    text-shadow: 2px 2px 5px #000;
    font-size: 46px;
}

.subject_mode {
    margin: 0;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 5px #000;
    margin-top: -10px;
}

.classTime_box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 15px;
}

.calender_icon>img {
    width: 85px;
    margin-right: -35px;
}

.class_time {
    background-color: rgba(255, 255, 255, 0.192);
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

.class_time>h2,
.features_classes h2 {
    font-size: 18px;
    font-weight: 800;
    color: #aadef9;
    margin: 0;
}

.class_time p,
.features_classes p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 20px;
}

.class_time p small {
    font-weight: 600;
}

.features_classes {
    background-color: rgba(255, 255, 255, 0.192);
    padding: 5px 20px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin-top: 15px;
}

.note_box{
    background-color: rgba(255, 255, 255, 0.192);
    padding: 5px 20px;
    display: flex;
    align-items: flex-start;
    border-radius: 8px;
    margin-top: 15px;
}
.features_classes>img {
    margin-right: 15px;
    width: 45px
}

.book_demo_form {
    padding: 20px 15px;
    background-color: #f2f2f2;
    border-radius: 8px;
    text-align: center;
}

.book_demo_form h2 {
    font-size: 20px;
    font-weight: 800;
}

.book_demo_form p {
    font-size: 16px;
    font-weight: 500;
}

.book_demo_form input {
    background-color: #fff;
}

#mobile_otp {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    color: #fff;
    background-image: linear-gradient( #0064af, #014268);
}

.theme_btn {
    background-image: linear-gradient( #0064af, #014268);
    text-transform: capitalize;
    color: #fff;
    font-weight: 500;
    margin-top: 25px;
}
.input_icon{
    width: 45px;
    position: absolute;
    top: -3px;
    right: 0;
}
.input_clock{
    width: 30px;
    position: absolute;
    top: 5px;
    right: 10px;
}
.note_text p{
    font-size:12px;
    /*line-height:25px;*/
}

/*Custom radio slot time book*/

.slotBox{
  display:flex;
  width:100%;
  height:max-content;
  justify-content:flex-start;
  flex-wrap:wrap;
}
.slot_item {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width:auto;
  height:max-content;
}

/* Hide the browser's default radio button */
.slot_item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#mobile_otp{
    cursor:pointer;
}
.otpTtitle{
    font-size:18px;
    text-align:center;
}

/* Create a custom radio button */
.checkmark {
  
  height: max-content;
  width: max-content;
  background-color: #e5e5e5;
  border-radius: 5px;
  padding: 8px 15px;
 font-weight: 700;
 display:flex;
 align-items:center;
 justify-content:center;
 margin-right:10px;
 font-size:12px;
}

/* On mouse-over, add a grey background color */
.slot_item:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.slot_item input:checked ~ .checkmark {
    background-color: #0076fa;
    color: #fff;
    border: 1px solid #000;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.slot_item input:checked ~ .checkmark:after {
  display: block;
}



/*Mulaqat a meetup css remove 25 april*/
.mulaqat_box {}
        
        .mulaqat_box {
            /*padding: 15px;*/
            background-color:#fff;
        }
        
        .mulaqat-inner {
            /*border: 1px solid #d6a725;*/
            /*padding: 10px;*/
        }
        
        .sir_ji_image,
        .date_div {
            display: flex;
            justify-content: center;
        }
        
        .sirji_name {
            font-size: 16px;
            text-align: center;
            font-weight: 700;
            color: #636363;
            
        }
        
        .adhmntr_team {
            font-size: 16px;
            text-align: center;
            color: #b3000f;
        }
        
        .invite_text {
            font-size: 32px;
            text-align: center;
            font-weight: 700;
            font-family: 'Beau Rivage', cursive;
            color: #f00;
            text-shadow: 0 0 1px #000;
            margin-top: 5px;
        }
        
        .book_demo_form {
            padding: 25px 20px;
            background-color: #023356;
            border-radius: 15px;
            border:1px solid #fff;
            box-shadow: rgb(255 255 255 / 27%) 0px 7px 29px 0px;
        }
        
        .form_title {
            margin: 15px 0;
            display: flex;
            justify-content: center;
            flex-direction: column;
        }
        
        .form_title h2 {
            font-size: 22px;
            font-weight: 600;
        }
        
        .form_title p {
            font-size: 18px;
        }
        
        .form_title h2,
        .form_title p {
            color: #fff;
            text-align: center;
        }
        
        #mobile_otp {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            border-top-right-radius: 6px;
            border-bottom-right-radius: 6px;
            color: #fff;
            background-image: linear-gradient( #0064af, #014268);
            cursor: pointer;
        }
        
        .theme_btn {
            background-image: linear-gradient( #0064af, #014268);
            text-transform: capitalize;
            color: #fff;
            font-weight: 500;
            margin: 25px auto 0 auto;
            display: block;
        }
        
        .help_btn {
            padding: 7px 15px;
            border-radius: 50px;
            color: #fff;
            font-weight: 500;
            background-color: #014268;
            font-size: 16px;
            text-decoration: none;
            border: 2px solid transparent;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .help_btn:hover {
            border: 2px solid #014268;
            color: #014268;
            background-color: #fff;
            transition: 0.3s;
        }
        
        .meet_addr {
            margin: 15px auto;
            text-align: center;
        }
        
        .addr_text {
            font-size: 14px;
            font-weight: 600;
        }
        
        .addr_text strong {
            color: #f00;
            font-size: 16px;
            font-weight: 900;
        }
        .resgi_text{
            font-size:16px;
            text-align:center;
            margin-top: -21px;
            margin-bottom: 30px;
        }
        .resgi_text > span{
            background-color: #003054;
            color: #fff;
            padding: 7px 15px;
            border-radius: 50px;
            border: 2px solid #fff;
        }
        
        @media (max-width:767px) {
            .mulaqat_box {
                border-left: none;
                border-right: none;
            }
            .mulaqat_box{
                padding:0;
            }
            
            .invite_text{
                font-size: 28px;
            }
            .sirji_name{
                font-size:12px;
                margin: 3px 0;
            }
            .form_title h2{
                font-size:20px;
                margin: 3px 0;
            }
            .form_title p {
              font-size: 16px;
            }
            .form-control{
                font-size: 12px;
            }
            #mobile_otp{
                font-size: 12px;
            }
            .addr_text {
              font-size: 10px;
              font-weight: 600;
            }
            .addr_text strong{
                font-size: 13px;
            }
            .help_btn{
                font-size:12px;
            }
            .adhmntr_team{
                font-size:14px;
            }
            
            .meetup_section{
               padding: 20px 15px;
            }
        }
    
    /* AM DIRECTORS */
    
    .am-director{
        width:100%;
        height:max-content;
        padding:25px 0;
    }
    .team_position{
        font-size: 15px;
        color: #0076fa;
        font-style: italic
    }
    .contetnt{
        font-size: 15px;
        line-height: 23px;
    }
    
    .header-title{
        text-align:center;
    }
    .header-title > h1{
        font-size: 24px;
        font-weight: 800;
        color: #023356;
        margin:0;
    }
    #meetup_enquiry .form-control{
        height:auto;
        border-radius: 1px !important;
        padding: 8px 0.75rem;
    }
     #meetup_enquiry .input-group-text{
        border-radius: 1px !important; 
     }