@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Khula:wght@300;400;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&family=Open+Sans:wght@300&display=swap');
/*@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');*/

/* Getting the new tags to behave */
/*======================
    COMMON CSS START
========================*/
article,
aside,
audio,
canvas,
command,
datalist,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
keygen,
meter,
nav,
output,
progress,
section,
source,
video,
banner {
    display: block
}

mark,
rp,
rt,
ruby,
summary,
time {
    display: inline
}

body {
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Nunito Sans', sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    cursor: pointer;
    outline: 0 none;
    text-decoration: none !important;
    font-family: 'Nunito Sans', sans-serif;
    display: block;
    color: #1972b9;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

a:focus {
    outline: thin dotted;
    outline-offset: -2px;
    color: #074369;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

/* FF 4-18 */
input:focus::-moz-placeholder {
    color: transparent;
}

/* FF 19+ */
input:focus:-ms-input-placeholder {
    color: transparent;
}

/* IE 10+ */
li {
    line-height: 18px;
    list-style: outside none none;
}

p {
    color: #333;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0 0 10px;
    padding: 0px;
    font-size: 16px;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: none !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    padding: 7px 5px;
    border: #d8d8d8 1px solid;
    color: #444;
    font-size: 13px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    border: #7ba4c1 1px solid;
    -moz-box-shadow: 0 0 5px #bbb;
    -webkit-box-shadow: 0 0 5px #bbb;
    box-shadow: 0 0 5px #bbb;
}

input:required {
    box-shadow: none;
}

input:invalid {
    box-shadow: none;
}

h1 {
    padding: 0px;
    margin: 0px;
}

h2 {
    padding: 0px;
    margin: 0px;
}

h3 {
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #E31625;
    font-family: 'Khula', sans-serif;
    letter-spacing: 0px;
    font-weight: 600;
}

img {
    display: inline-block;
    max-width: 100%;
    border: none;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    text-align: left;
}

article {
    width: 100%;
    float: left;
    position: relative;
    z-index: -9999;
}

section {
    overflow: hidden;
    width: 100%;
    float: left;
    position: relative;
}

header {
    width: 100%;
}

footer {
    width: 100%;
    float: left;
}

nav {
    overflow: hidden;
    width: 100%;
    float: left;
}

select {
    border: #d8d8d8 1px solid;
    background: url("../images/d-arrow.png") no-repeat scroll 98% center #FFFFFF !important;
    background-color: rgb(255, 255, 255);
    -webkit-appearance: none;
    -moz-appearance: none !important;
    background-color: #FFFFFF;
    border-radius: 3px;
    font-size: 14px;
    padding: 5px 4px 4px;
    text-indent: 0.01px;
    box-shadow: none;
    text-overflow: '';
    display: inline-block;
    cursor: pointer;
}


/*======================
    COMMON CSS END
========================*/

/*======================
    HEADER CSS START
========================*/
header {
    width: 100%;
    z-index: 99999;
    float: left;
}

.header {
    padding: 0px 30px;
}

.top_header {
    background: #78B042;

}

.main_header li a.amigo_btn {
    color: #fff !important;
    margin: 13px 0px;
    line-height: 20px !important;
}

.main_header li a.amigo_btn:hover {
    color: #fff !important;
    background: #074369 !important;
    box-shadow: none;
}

.top_header li {
    padding: 0px;
}

.top_header li a {
    font-size: 13px;
    padding: 0px 5px 0px
}

.top_header .navbar-left .fa {
    border-radius: 50%;
    color: #78B042 !important;
    line-height: 15px;
    text-align: center;
    font-size: 15px;
    background: #fff;
}

.top_header .navbar-left .fa-whatsapp {
    padding: 6px 7px;
}

.top_header .navbar-left .fa-mobile {
    padding: 5px 10px;
}

.top_header .navbar-left .fa-envelope {
    padding: 6px 7px;
}

.main_header {
    border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
}

.navbar-toggle {
    margin: 8px 0 3px 15px !important;
}

.navbar-toggle {
    background: #074369;
}

.inner_header .navbar-default {
    background: none;
    border: none;
}

.navbar-default .navbar-toggle .icon-bar {
    background: #FFF !important;
}

.header .navbar {
    margin: 0px !important;
}

.header .navbar-collapse.collapse {
    width: 100% !important;
    margin: 0px 0px 0px 90px;
}

.header .navbar-default {
    background: none !important;
    border: none !important;
}

.header ul {
    padding: 0px;
    margin: 0px;
    color: #fff;
}

.login_after_header {
    margin: 4px 0px 0px !important;
}

.head_nav_menu {
    margin: 10px 0px 0px !important;
}

/*.login_after_header li.dropdown {
    padding: 19px 0px;
}*/
.top_header li active {
    font-size: 14px;
}

.logo {
    margin: 10px 0px;
}

.header ul li {
    display: inline-block;
    padding: 5px 0px 4px;
}

.header .main-menu ul li {
    display: block;
    position: static;
}

.header li a {
    color: #fff;
    transition: 0.15s;
    line-height: 23px;
}

.header .navbar-left a {
    text-transform: lowercase;
}

.navbar-right a.amigo_btn {
    color: #fff;
    line-height: 14px;
    padding: 4px 11px 5px !important;
}


.center_top_header {
    color: white;
    text-align: center;
    padding: 9px 0px 0px 0px;
}


/*.header li:last-child a
{
    padding: 0px !important;
}*/
/*.header .navbar-right li:last-child a {
    padding-right: 0px !important;
}
.header .navbar-left li:first-child a
{
    padding-left: 0px !important;
}*/
.header li a:hover {
    color: #FFF;
}

.main_header li a {
    font-size: 16px;
    font-weight: 700;
    color: #1b2336 !important;
    position: relative;
    z-index: 1;
    transition: 0.15s;
    font-family: 'Khula', sans-serif;
    text-transform: capitalize;
}

.main_header li a.menu-active,
.footer_menu .menu-active a {
    color: #78B042 !important;
}

.inbox_count {
    position: absolute;
    top: -17px;
    right: 34px;
    min-width: 9px;
    padding: 1px 4px;
    border-radius: 10px;
    font-style: normal;
    font-weight: bold;
    font-size: 10px;
    line-height: 13px;
    color: #FFF;
    border: 1px solid #FF5A5F;
    background: none repeat scroll 0% 0% #FF5A5F;
}

.notification_count {
    position: absolute;
    top: -20px;
    right: 5px;
    min-width: 9px;
    padding: 1px 4px;
    border-radius: 10px;
    font-style: normal;
    font-weight: bold;
    font-size: 10px;
    line-height: 13px;
    color: #FFF;
    border: 1px solid #FF5A5F;
    background: none repeat scroll 0% 0% #FF5A5F;
}

.main_header li a:hover {
    color: #78B042 !important;
    background: none !important;
}

.main_header .user_signup a {
    background: linear-gradient(270deg, #0071C1 0%, #0095FE 100%);
    border-radius: 3px;
    padding: 9px 19px 5px !important;
    color: #fff !important;
    margin-left: 10px;
    line-height: 30px;
}

.main_header .user_signup a:hover {
    box-shadow: #0e1e251f 0 2px 4px, #0e1e2552 0 2px 16px !important;
    transition: .3s;
    color: #fff !important;
}

.inner_header {
    max-width: 700px;
    margin: 0px auto;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .1);
}

.head_nav_menu .dropdown-menu {

    left: auto !important;
    top: auto !important;
    margin: 8px auto 0px auto !important;
    width: 100%;
    padding: 21px 0 23px;
    max-width: 273px;
    box-shadow: 0 2px 29px rgba(0, 0, 0, .05);

    transition: 0.3s ease-in;
    border-top: 3px solid #78B042;

    /*display: block;
    position: absolute;
    z-index: 555;
    top: calc(100% + 15px);
    left: -12px;
    min-width: 270px;
    white-space: nowrap;
    margin-top: 0;
    margin-left: 0;
    border-radius: 5px;
    padding: 21px 0 23px;
    text-align: left;
    box-shadow: 0 2px 29px rgba(0, 0, 0, .05);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in;
    border-top: 3px solid #ff1f59;*/
}

.dropdown-choice-menu {
    /* left: auto !important;
    top: auto !important;
    margin: 0px auto 0px auto !important;
    width: 100%;
    padding: 21px 0 23px;
    max-width: 200px;
    box-shadow: 0 2px 29px rgba(0, 0, 0, .05);
    
    transition: 0.3s ease-in;
    border-top: 3px solid #0071C1;
    display: none;*/


    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 9999;
    max-width: 200px;
    width: 100%;
    right: 2px !important;
    left: 100% !important;
    bottom: 32px !important;


}

.dropdown-choice-menu.level3 {

    /* right: 2px !important;
    left: 100% !important;
    bottom: 32px !important;
    position: absolute; */
    background: #fff;
    padding: 5px;

}


.dropdown-adm-menu {
    /* left: auto !important;
    top: auto !important;
    margin: 0px auto 0px auto !important;
    width: 100%;
    padding: 21px 0 23px;
    max-width: 200px;
    box-shadow: 0 2px 29px rgba(0, 0, 0, .05);
    
    transition: 0.3s ease-in;
    border-top: 3px solid #0071C1;
    display: none;*/


    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 9999;
    max-width: 200px;
    width: 100%;
    right: 2px !important;
    left: 100% !important;
    top: 10px !important;


}

.dropdown-adm-menu.level3 {

    /* right: 2px !important;
    left: 100% !important;
    bottom: 32px !important;
    position: absolute; */
    background: #fff;
    padding: 5px;

}


.display_block {
    display: block;
}

.dropdown-choice-menu-toggle:hover+.dropdown-choice-menu {
    /* display: block; */
}



.dropdown-choice-menu li {}


/*.head_nav_menu .dropdown:hover .dropdown-menu
{
    z-index: 556;
    top: 100%;
    opacity: 1;
    visibility: visible;
    transform: rotateX(0) translateZ(0);
}*/
h4.choice-head {
    font-size: 20px;
    text-transform: capitalize;
    margin: 20px 0px;
}

.choice-box .services-box {
    min-height: 280px;
    text-align: center;
}

.choice-box h4.section-title {
    padding: 20px 0px 0px;
}

.choice-box-content li {
    padding: 10px 0px 0px 25px;
    color: #000;
    font-size: 16px;
}

.choice-box-content li:before {
    position: absolute;
    content: "\f00c";
    left: 24px;
    background: #1972b9;
    font-weight: 400;
    font-family: fontawesome;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    width: 20px;
    height: 20px;
    line-height: 19px;
    padding: 1px 3px;
}

ul.dropdown-menu.level2 {
    right: 0px !important;
    left: 99% !important;
    top: -3px !important;
}

ul.dropdown-menu.level3 {
    right: 0px !important;
    left: 99% !important;
    top: auto !important;
}

.inner_header .dropdown-menu a {
    font-size: 13px !important;
    padding: 10px 20px !important;
}

.inner_header .dropdown-menu a:hover {
    background: #f4f8ff !important;
}

.dropdown-menu li.sub_categories a {
    font-weight: 500;
}

.dropdown-menu .right_arrow {
    border-color: transparent transparent transparent #c2c2c2;
    border-style: solid;
    border-width: 4px;
    content: "";
    height: 0;
    margin-left: 6px;
    margin-top: 6px;
    opacity: 1;
    position: absolute;
    width: 0;
}

.top_header .active a,
.top_header .active a:hover,
.top_header .active a:focus {
    background: #f8b195 !important;
    color: #FFF;
    outline: none;
}

.top_header a:hover,
.top_header a:focus {
    color: #59C9B8;
    outline: medium none;
    text-decoration: underline;
    background: none;
}

.icon-menu .fa {
    font-size: 20px;
    font-weight: 400;
    padding: 0px 6px;
    line-height: 15px;
}

.icon-menu a {
    vertical-align: middle;
    line-height: 16px !important;
    display: inline-flex;
}

.wishlist .fa {
    color: red;
}

.wishlist .fa:hover {
    color: red;
}

.header .amigo_author_nav li a {
    color: #111 !important;
}

.header .amigo_author_nav li a .dropdown-menu {
    padding: 0px !important;
    border: none !important;
}

.main_header .logo a img {
    width: 88%;
    padding: 0px 0px 0px 22px;
}

.login_after_header .dropdown-menu::before,
.login_after_header .dropdown-menu::after {
    right: 0px;
    left: auto;
}

.login_after_header ul.dropdown-menu li {
    width: 100%;
    padding: 0px;
}

.login_after_header ul.dropdown-menu li a {
    text-transform: inherit;
    border-bottom: 1px solid #e9e9e9 !important;
    display: block;
    line-height: 23px;
    padding: 10px 10px 5px !important;
    text-align: left;
    color: #666 !important;
}

.login_after_header .dropdown-menu li>a:hover,
.login_after_header .dropdown-menu .active>a,
.login_after_header .dropdown-menu .active>a:hover,
.login_after_header .dropdown-menu .dmg_author_detail a:hover {
    background: #f4f4f4 !important;
    outline: none;
}

.caret-up {
    border-bottom: 4px solid;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    display: inline-block;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    width: 0;
}

.dropdown a:hover .dropdown-menu {
    display: block !important;
}

.user_dropdown {
    width: 125px !important;
    background: #fff;
    border-top: 0 none !important;
    box-shadow: 0 4px 8px -3px #555454 !important;
    right: 0;
    margin: 0px !important;
    z-index: 11;
}

.marquee_con {
    width: 100%;
    float: left;
    background: #fff;
    padding: 5px 0px;
}

.marquee_con p {
    font-size: 14px;
    font-weight: 400;
    color: #333 !important;
    margin: 0px;
    display: inline-block;
    cursor: pointer;
    line-height: 30px;
}

/*======================
    HEADER CSS END
========================*/

/*======================
    SIGNIN SIGNUP POPUP AND PAGES CSS START
========================*/
@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, -0px);
    }
}

.sign_popup .modal-dialog {
    border-radius: 2px;
    color: #212121;
}

.sign_popup .modal-header {
    text-align: center;
}

.popup_tab_content,
.signin_content {
    padding: 15px 35px 16px;
    overflow: hidden;
}

.popup_login #loadErr,
.signin_content #loadErr {
    float: right;
    position: absolute;
    right: 0;
    width: 10%;
    margin: 30px 0px 0px;
}

.popup_login .form-row,
.signin_content .form-row {
    margin: 0px;
    padding: 0px;
    display: block;
}

.form-row {
    margin-bottom: 10px;
    padding: 4px 0;
    position: relative;
}

.input-text {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: #fff none repeat scroll 0 0;
    border-color: currentcolor currentcolor #e0e0e0 !important;
    border-image: none !important;
    border-style: none none solid !important;
    border-width: medium medium 1px !important;
    color: #000;
    font-size: inherit;
    margin-bottom: 8px;
    padding: 10px 0px !important;
    position: relative;
    width: 100%;
    z-index: 3;
    font-weight: 600;
    border-radius: 0;
}

.input-text:hover,
.input-text:active,
.input-text:focus {
    border: none !important;
    border-bottom: 1px solid #1972b9 !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    outline: none;
}

.label-helper {
    position: absolute;
    opacity: 0;
    transition: .2s bottom, .2s opacity;
    bottom: 0;
    left: 0;
    z-index: 9;
    margin-bottom: 17px;
    font-weight: 600;
}

span.grp_check {
    padding: 7px 0px;
    vertical-align: middle;
    margin: 4px 20px 0px 0px;
}

.input-text:invalid+.label-helper {
    bottom: 55%;
}

.input-text:focus+.label-helper,
.input-text:invalid+.label-helper {
    bottom: 75%;
    background: none !important;
    font-size: 13px;
    line-height: 1;
    opacity: 1;
}

.input-text:invalid {
    border-left: 10px solid #f00;
}

.input-text:invalid+.label-helper::after {
    content: "X";
    font-size: 14px;
    line-height: 1;
    padding-left: 12px;
}

.stay_checked {
    vertical-align: middle;
    margin: 0px !important;
}

.or_div {
    display: block;
    margin: 15px 0;
    text-align: center;
    width: 100%;
    font-weight: 600;
    position: relative;
    padding: 10px;
    color: #ff1f59;
}

.or_div span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    padding: 5px 10px;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

.or_div::before {
    content: '';
    background: #e3e9ed;
    width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    height: 1px;
    top: 50%;
    left: 50%;
}

.sign_terms {
    display: inline-flex;
    width: 100%;
}

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

.login_btm .sign_terms {
    width: auto;
}

.social_login {
    margin: 5px;
    border-radius: 3px;
    color: #fff !important;
    padding: 0px 19px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
    overflow: hidden;
    display: inline-block;
}

.social_login:hover {
    text-decoration: none;
    color: #fff !important;
}

.social_login a {
    display: inline-flex;
    line-height: initial !important;
    padding: initial !important;
}

.login_content {
    font-size: 16px;
    padding: 10px 10px 3px;
    color: #fff !important;
    text-align: center;
}

.social_login .fa {
    float: left;
    color: #fff;
    padding-top: 13px;
    font-size: 19px;
    padding-left: 8px;
}

.button-fb {
    background-color: #3B5998;
    border: 1px solid #3B5998;
}

.button-fb:active,
.button-fb:hover {
    border: 1px solid #263a63;
    background-color: #263a63;
}

.button-tw {
    background-color: #3EB5E5;
    border: 1px solid #3EB5E5;
}

.button-tw:active,
.button-tw:hover {
    border: 1px solid #2795e9;
    background-color: #2795e9;
}

.button-google {
    background-color: #dd4b39;
    border: 1px solid #dd4b39;
}

.button-google:active,
.button-google:hover {
    border: 1px solid #c23321;
    background-color: #c23321;
}

.button-wp {
    background-color: #63b76a;
    border: 1px solid #63b76a;
}

.button-wp:active,
.button-wp:hover {
    border: 1px solid #005312;
    background-color: #005312;
}

.popup_login .forgot_password {
   color: #ff1f59;
    font-size: 15px;
    font-weight: 500;
    /* position: absolute; */
    /* right: 0px; */
    /* z-index: 999; */
    text-align: end;
}

.reopen_account {
    color: #ff1f59;
    font-size: 15px;
    font-weight: 500;
    z-index: 999;
}

.popup_login .forgot_password:hover,
.reopen_account:hover {
    color: #78B042;
    ;
}

.popup_login .submit_btn {
    background: #78B042;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
    color: #FFFFFF !important;
    border-radius: 2px;
    border: none !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    margin: 20px 0px 5px;
    padding: 20px;
    transition: box-shadow 0.2s ease 0s;
    vertical-align: super;
    width: 100%;
}

.popup_login .submit_btn:hover,
.popup_login .submit_btn:active,
.popup_login .submit_btn:focus {
    box-shadow: #0e1e251f 0 2px 4px, #0e1e2552 0 2px 16px !important;
    transition: .3s;
}

.popup_login {
    position: relative;
}

span.loadErr,
span.loadErr-reg-page {
    position: absolute;
    top: 30px;
    width: 100px;
    right: 0;
}

.loadErr img {
    width: auto;
    padding: 6px 0px;
}

.new_signup {
    display: inline-flex;
    font-size: 15px;
}

.new_signup a {
    color: #ff1f59;
    padding-left: 3px;
}

.new_signup a:hover {
    color: #074369;
}

.sign_in_container {
    margin: 50px auto;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.model_popup_inner h1,
.model_popup_inner h2,
.model_popup_inner h3,
.model_popup_inner>p {
    text-align: center;
    padding: 20px 20px 0px;
    margin: 0px;
}

.model_popup_inner h1 {
    font-size: 20px;
}

.model_popup_inner h2 {
    font-size: 18px;
}

.model_popup_inner .scd_txt {
    padding: 0px 29px;
}

.popup_login .check_radio_con {
    display: initial;
    padding: 0px;
}

.popup_login .amigo_field_con {
    float: left;
}

.popup_login .check_radio_con label {
    padding: 0;
    margin: 0;
}

.popup_login .sign_terms a:first-child {
    text-indent: 20px;
}

.subscription_frm .check_radio_con {
    padding: 0px;
}

.subscription_frm label {
    padding-left: 5px !important;
}

/*======================
    SIGNIN SIGNUP POPUP AND PAGES CSS END
========================*/

/*======================
    SCROLL TOP BUTTON CSS START
========================*/
#scroll {
    position: fixed;
    left: 20px;
    bottom: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: #78B042;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    outline: none;
    z-index: 9;

}

#scroll:hover {
    background: #78B042;
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover span {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

/*======================
    SCROLL TOP BUTTON CSS END
========================*/

/*======================
    MAIN CONTENT START
========================*/
.main {
    margin: 0 auto;
    max-width: 1100px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.main-content {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 65vh
}


/*Forgot Password Start*/
.forgot_pass_con {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0 1px 2px 0 #e7e7e7;
}

.forgot_pass_con form {
    padding: 30px 0px;
    width: 100%;
}

.forgot_titles {
    background-color: #1972b9;
    border-radius: 5px 5px 0 0;
    float: none;
    margin: 0;
    padding: 10px;
    width: auto;
    font-size: 21px;
    color: #fff;
}

.forgot_text {
    float: left;
    font-size: 13px;
    color: #4c4c4c;
    font-size: 13px;
    padding: 20px;
}

.forgot_pass_con .field_account {
    padding: 0px 30px;
    display: inline-block;
    width: 100%;
}

.input_forgot {
    background: none repeat scroll 0 0 #FFFFFF;
    border-color: #B3B3B3 #CCCCCC #CCCCCC #B3B3B3;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    color: #333333;
    font-size: 13px;
    font-weight: normal;
    margin: 10px auto 20px auto;
    padding: 10px;
    width: 100% !important;
}

/*Forgot Password End*/

/* Landing Page Start*/
.about-us-inner {
    position: relative;
}

.about-us-inner svg {
    position: absolute;
    left: 0;
    top: 0;
    fill: #ff1f59;
    width: 295px;
    height: auto;
}

.about-us-inner-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
}

.about-us-list {
    margin: 25px 0px 0px;
    display: inline-block;
    list-style: none;
}

.about-us-section .about-us-list li {
    list-style: none;
    padding: 4px 0 0 49px;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    min-height: 32px;
    width: 50%;
    float: left;
    margin: 0 0 18px;
}

.about-us-section .about-us-list li:before {
    content: '\f00c';
    font-family: FontAwesome;
    color: #fff;
    position: absolute;
    background: #24adfe;
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 15px;
    margin-top: 4px;
    left: 0;
    line-height: 25px;
}

.about-us-box-list .about-us-box {
    list-style: none;
    padding: 0px 4px !important;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    width: 48%;
    float: left;
    margin: 0px 4px 9px;
    box-shadow: #0e1e251f 0 2px 4px, #0e1e2552 0 2px 2px;
    border-radius: 6px;
    background: #E8F3FF;
    color: #78B042;
}

.about-us-box .fa {
    font-size: 70px;
    padding: 36px 10px;
    color: #78B042;
}

.about-us-box-details {
    margin: 15px 0px;
    font-size: 17px;
}

.about-us-box-details p {
    font-weight: 500;
}

/*.about-us-box-list li .about-us-box:before {
    content: '\f00c';
    font-family: FontAwesome;
    color: #fff;
    position: absolute;
    background: #24adfe;
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 15px;
    margin-top: 4px;
    left: 0;
    line-height: 25px;
}*/
.reg-promo-section,
.counter-section {
    background: #78B042;
}

.reg-promo-title {
    color: #000;
    font-size: 30px;
    font-weight: 800;
    padding: 35px 0px 35px;
    line-height: 35px;
}

.reg-promo-section p {
    font-size: 25px;
    color: #000;
}

.reg-promo-section a {
    width: 150px;
    margin: 20px 0px;
}

.counter-count {
    font-size: 18px;
    background-color: #E8F3FF;
    border-radius: 50%;
    position: relative;
    color: #78B042;
    text-align: center;
    line-height: 92px;
    width: 92px;
    height: 92px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    font-weight: 600;
    margin: 10px 0px 0px;
}

p.counter-content {
    font-size: 20px;
    color: #E8F3FF;
    text-align: center;
    margin: 20px 0px 0px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Testimonial Section*/
.testimonial-section {
    overflow: hidden;
    min-height: 375px;
    position: relative;
}

.testimonial-section .carousel-inner {
    width: 75%;
    margin: auto;
}

.testimonial-section .carousel-inner:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.testimonial-section .carousel-inner:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.testimonial-section .carousel-inner .item {
    overflow: hidden;
}

.testimonial_control_button .carousel-control {
    top: 175px;
    opacity: 1;
    width: 40px;
    bottom: auto;
    height: 40px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 700;
    overflow: hidden;
    line-height: 38px;
    text-shadow: none;
    text-align: center;
    position: absolute;
    background: transparent;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
    transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial_control_button .carousel-control.left {
    left: 7%;
    right: auto;
}

.testimonial_control_button .carousel-control.right {
    right: 7%;
    left: auto;
}

.testimonial_control_button .carousel-control.left:hover,
.testimonial_control_button .carousel-control.right:hover {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

/* .testimonial_slide {
    width: 97%;
    box-shadow: #0e1e251f 0 2px 4px, #0e1e2552 0 2px 16px;
    background: #fff;
    padding: 20px 10px;
    margin: 10px 5px;
    overflow: hidden;
    border-radius: 6px;
}

.testimonial-user-img {
    background: #fff;
    width: 100px;
    height: 100px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    position: relative;
}*/

.testimonial-user-img img {
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    width: 70px;
    height: 70px;
}

.testimonial_slide h3 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #032f86;
    font-weight: 700;
}

.testimonial_slide h4,
.testimonial_slide h3 {
    font-size: 24px;
    margin: 10px 0px;
    text-transform: capitalize;
    text-align: left;
}

.testimonial_slide p {
    font-size: 16px;
    text-align: left;
}

.review-details {
    text-align: left;
    margin-bottom: 10px;

}

.review-star-empty {
    background: url(../images/sat_star_nor.png) left top no-repeat;
    width: 80px !important;
    margin: 26px 0px 0px;
}

.review-star-fill {
    background: url(../images/sat_star.png) left top no-repeat;
    height: 14px;
}

.testimonial_slide h4 {
    padding: 0px;
    margin: 10px 0px 0px;
}

.testimonial_slide i {
    display: block;
    margin: 0px;
    padding: 0px;
}

.testimonial-btm {
    overflow: hidden;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .08) !important;
}




@-webkit-keyframes psBoxShadowEffect_2 {
    0% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.5;
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes psBoxShadowEffect_2 {
    0% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 5px 5px #ffffff, 0 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}


.event-section,
.admission-alert-section,
.gallery-section {
    background: #fff;
}

.host_details {
    background: #fff;
    margin: 70px 0px 0px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    height: 100px;
    border-radius: 0px 6px 0px 0px;
}

.event-section .box-item {
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0px;
}

.event-section .box-item-content {
    background: #fff;
    border-radius: 0px 0px 6px 6px;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.event-section .box-item:hover {
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
}

.host-img img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: #ccc;
    padding: 10px;
    margin: 10px 0px;
}

.event-section .box-item-header ul li {
    width: 30%;
}

.event-section .box-item-header ul li:last-child {
    width: 42%;
}

/* Landing Page End*/

/*Not found page Start*/
.notfound_main {
    background: #fff;
    margin: 50px auto;
}

.notfound_page_con {
    max-width: 600px;
    margin: 0px auto 50px;
}

.notfound_page_con .mob-font,
.notfound_page_con .fa {
    color: #ff1f59;
    font-size: 200px;
}

.notfound_page_con p {
    margin: 10px 0px 0px;
    font-weight: bold;
}

.notfound_page_con .amigo_btn {
    display: inline-block;
}

/*Not found page End*/

/*======================
    MAIN CONTENT END
========================*/


/*======================
    CMS (STATIC) PAGES START
========================*/
.cms_details {
    font-size: 13px;
    padding: 0px;
}

.cms_title {
    width: 100%;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    text-align: justify;
    word-spacing: 2px;
    line-height: 30px;
}

.cms_details p {
    float: left;
    width: 100%;
    color: #333333;
    font-size: 13px;
}

.cms_content {
    float: left;
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 100%;
}

.inner-container-cms h2 {
    line-height: 1.5;
    margin-bottom: 5px;
    margin-top: 20px;
    padding: 0;
    text-align: justify;
    word-spacing: 2px;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.inner-container-cms th {
    border: 1px solid #000;
    border-collapse: collapse;
    padding: 8px;
    text-align: center;
}

.inner-container-cms td {
    border: 1px solid #000;
    border-collapse: collapse;
    padding: 8px;
}

.inner-container-cms table a {
    color: #212121;
    border-bottom: 1px solid #fff;
}

.inner-container-cms table a:hover {
    border-bottom: 1px solid #000;
}

.inner-container-cms>ul {
    list-style-type: disc;
    margin-left: 30px;
    font-size: 13px;
}

.inner-container-cms .tabs-menu {
    display: inline-flex;
    margin: 10px 0;
    width: 100%;
}

.inner-container-cms .tabs-menu li {
    list-style: none !important;
}

.inner-container-cms .tabs-menu li a {
    border-bottom: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    padding: 5px 10px 7px;
    text-transform: uppercase;
    color: #999;
}

.inner-container-cms .tabs-menu li.current a {
    background: #fff;
    border-bottom: 1px solid #f8eb01;
    color: #333;
    font-weight: 500;
    position: relative;
}

.inner-container-cms .tabs-menu li.current a:before {
    border: medium solid transparent;
    bottom: -1px;
    content: " ";
    height: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    border-bottom-color: #f8eb01;
    border-width: 6px;
    left: 50%;
    margin-left: -6px;
}

.inner-container-cms .tabs-menu li.current a:after {
    border-bottom-color: #fff;
    border-width: 5px;
    left: 50%;
    margin-left: -5px;
}

.cms_content h1 {
    font-size: 26px;
}

.cms_content h2 {
    margin-top: 20px;
    font-size: 20px;
}

.cms_content li {
    position: relative;
    margin-bottom: 10px !important;
    padding-left: 25px;
    font-weight: normal;
}

.cms_content li:before {
    position: absolute;
    content: "\f00c";
    left: 0;
    top: 0;
    color: #78B042;
    font-weight: 400;
    font-family: fontawesome;
}

#cancellation_tab {
    display: none;
}

.return_ques,
.cancellation_ques {
    color: #515151;
    display: block;
    font-size: 14px;
    margin: 10px 0;
    cursor: pointer;
}

.return_ques:hover,
.cancellation_ques:hover {
    color: #2271b2;
    text-decoration: underline !important;
}

.return_ans p {
    margin: 0px;
}

.ans_active {
    font-weight: 500;
}

.box_border {
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
    margin-bottom: 20px;
    padding: 0 19px;
}

/*======================
    CMS (STATIC) PAGES END
========================*/

/*======================
    FOOTER START
========================*/
.footer {
    background: #212121;
    padding: 0;
}

.footer a,
.footer p {
    color: #fff;
}

.footer_container {
    margin: 0px auto;
    padding: 0px 10px;
    text-align: left;
    max-width: 1150px;
    overflow: hidden;
}

.footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    padding: 0 0px 15px;
    margin: 0px;
}


.newsletterback {
    margin: 0 auto;
    max-width: 600px;
}

.subscribe_settings .heading {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0px 0px 10px;
    text-transform: uppercase;
}

.subscribe_settings .sub_heading {
    color: #fff;
    font-size: 18px;
    margin: 0px 0px 30px;
    text-transform: initial;
}

.subscribe_settings .subscribe {
    font-size: 16px;
    padding: 10px 14px;
    width: 100%;
    border-radius: 16px 0px 0px 16px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.subscribe_settings .amigo_btn {
    width: 100%;
    font-size: 16px;
    border: 1px solid #FFFFFF !important;
    padding: 10px 23px;
    border-radius: 0px 16px 16px 0px;
    background: #78B042;
}

.subscribe_settings .amigo_btn:hover,
.subscribe_settings .amigo_btn:focus,
.subscribe_settings .amigo_btn:active {
    border: 1px solid #ff1f59 !important;
}

ul.footer_menu {
    list-style: outside none none;
    padding: 0px !important;
}

.footer_menu>li {

    text-align: left;
    line-height: 23px;
}

.footer_menu>li:last-child {
    border-bottom: none;
}

.footer_menu a,
.footer_menu p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    padding: 5px 7px 5px 0px;
    display: inline-block;
    transition: color .3s, -webkit-text-decoration-color .3s;
    transition: color .3s, text-decoration-color .3s;
    transition: color .3s, text-decoration-color .3s, -webkit-text-decoration-color .3s;
}

.footer_menu a:hover,
.footer_menu a:active,
.copyright_menu a:hover,
.copyright_menu a:active {
    color: #78B042;
    outline: none;
    text-decoration: underline;
}



.footer_column {
    padding: 25px 0px;
}

.social_link {
    display: inline-flex;
}

.social_link li a {
    margin-right: 7px;
}

.social_link a .fa {
    border-radius: 50%;
    color: #fff !important;
    line-height: 15px;
    text-align: center;
    font-size: 15px;
}

.social_link a .fa:hover,
.extra_social:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dcdcdc), color-stop(1, #404040));
    background: -webkit-linear-gradient(top, #dcdcdc 0%, #404040 100%);
    background: -moz-linear-gradient(top, #dcdcdc 0%, #404040 100%);
    background: -o-linear-gradient(top, #dcdcdc 0%, #404040 100%);
    background: -ms-linear-gradient(top, #dcdcdc 0%, #404040 100%);
    background: linear-gradient(to bottom, #dcdcdc 0%, #404040 100%);
}

.social_link .fa-instagram {
    display: inline-block;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
    padding: 8px 9px;
}

.social_link .fa-youtube {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff847e), color-stop(1, #fb0000));
    background: -webkit-linear-gradient(top, #ff847e 25%, #fb0000 75%);
    background: -moz-linear-gradient(top, #ff847e 25%, #fb0000 75%);
    background: -o-linear-gradient(top, #ff847e 25%, #fb0000 75%);
    background: -ms-linear-gradient(top, #ff847e 25%, #fb0000 75%);
    background: linear-gradient(to bottom, #ff847e 25%, #fb0000 75%);
    padding: 8px 9px;
}

.social_link .fa-facebook {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3580b3), color-stop(1, #001e71));
    background: -webkit-linear-gradient(top, #3580b3 25%, #001e71 75%);
    background: -moz-linear-gradient(top, #3580b3 25%, #001e71 75%);
    background: -o-linear-gradient(top, #3580b3 25%, #001e71 75%);
    background: -ms-linear-gradient(top, #3580b3 25%, #001e71 75%);
    background: linear-gradient(to bottom, #3580b3 25%, #001e71 75%);
    padding: 8px 11px;
}

.social_link .fa-twitter {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #70c4df), color-stop(1, #0359c5));
    background: -webkit-linear-gradient(top, #70c4df 25%, #0359c5 75%);
    background: -moz-linear-gradient(top, #70c4df 0%, #0359c5 75%);
    background: -o-linear-gradient(top, #70c4df 0%, #0359c5 75%);
    background: -ms-linear-gradient(top, #70c4df 25%, #0359c5 75%);
    background: linear-gradient(to bottom, #70c4df 25%, #0359c5 75%);
    padding: 8px;
}

.social_link .fa-pinterest {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ef97a8), color-stop(1, #ad000b));
    background: -webkit-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -moz-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -o-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -ms-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: linear-gradient(to bottom, #ef97a8 25%, #ad000b 75%);
    padding: 8px 6px;
    font-size: 22px !important;
}

.social_link .fa-whatsapp {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #63b76a), color-stop(1, #005312));
    background: -webkit-linear-gradient(top, #63b76a 25%, #005312 75%);
    background: -moz-linear-gradient(top, #63b76a 25%, #005312 75%);
    background: -o-linear-gradient(top, #63b76a 25%, #005312 75%);
    background: -ms-linear-gradient(top, #63b76a 25%, #005312 75%);
    background: linear-gradient(to bottom, #63b76a 25%, #005312 75%);
    padding: 8px 9px;
}

.social_link .fa-linkedin {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #007ab9), color-stop(1, #2a445d));
    background: -webkit-linear-gradient(top, #007ab9 25%, #2a445d 75%);
    background: -moz-linear-gradient(top, #007ab9 25%, #2a445d 75%);
    background: -o-linear-gradient(top, #007ab9 25%, #2a445d 75%);
    background: -ms-linear-gradient(top, #007ab9 25%, #2a445d 75%);
    background: linear-gradient(to bottom, #007ab9 25%, #2a445d 75%);
    padding: 8px 9px;
}

.social_link .fa-envelope {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ef97a8), color-stop(1, #ad000b));
    background: -webkit-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -moz-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -o-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -ms-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: linear-gradient(to bottom, #ef97a8 25%, #ad000b 75%);
    padding: 8px 8px;
}

.social_link .fa-google {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ef97a8), color-stop(1, #ad000b));
    background: -webkit-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -moz-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -o-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -ms-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: linear-gradient(to bottom, #ef97a8 25%, #ad000b 75%);
    padding: 8px 9px;
}

.social_link .fa-link {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b9b5b5), color-stop(1, #d5d4d2));
    background: -webkit-linear-gradient(top, #b9b5b5 25%, #d5d4d2 75%);
    background: -moz-linear-gradient(top, #b9b5b5 25%, #d5d4d2 75%);
    background: -o-linear-gradient(top, #b9b5b5 25%, #d5d4d2 75%);
    background: -ms-linear-gradient(top, #b9b5b5 25%, #d5d4d2 75%);
    background: linear-gradient(to bottom, #b9b5b5 25%, #d5d4d2 75%);
    padding: 8px 9px;
}



/* For tablets and smaller */
@media (max-width: 768px) {
    .subscribe_settings {
        padding: 80px 0px 20px;
    }

    .trainer-slider .owl-prev {
        left: -9px !important;
    }

    .trainer-slider .owl-next {
        right: -9px !important;
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    .subscribe_settings {
        padding: 50px 0px 15px;
    }
}

/*.payment_method {
    border-bottom: 1px solid #3C3F46;
    border-top: 1px solid #3C3F46;
}*/
/*.payment_method h2
{
    color: #848484;
    font-size: 14px;
    text-align: left;
    letter-spacing: 0;
    margin-bottom: 8px;
    font-weight: 500;
}*/
.payment_method_image {
    display: inline-block;
    background: url("../images/payment.png") no-repeat;
    background-position: -2px -200px;
    width: 615px;
    height: 33px;
}

.payment_method ul {
    list-style: none;
    display: inline-flex;
}

.payment_method li {
    border-right: 1px solid #3C3F46;
    padding: 0px 5px;
    list-style: none;
}

.payment_method li:first-child {
    padding-left: 0px;
}

.payment_method li:last-child {
    border-right: none;
}

.payment_method .paygateway {
    background: #fff;
    padding: 3px 5px !important;
    border-radius: 2px;
}

/*.payment_method .paygateway img {
    width: 80px;
}*/
.language_settings {
    font-size: 12px;
}

.language_settings ul {
    display: inline-flex;
}

.language_settings ul li {
    border: none;
}

.language_settings ul li a {
    background: #ff1f59;
    border: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    outline: medium none;
    padding: 10px 20px;
    transition: box-shadow 0.2s ease 0s;
    vertical-align: super;
    border-radius: 2px;
    margin: 0px 10px 0px 0px;
    max-width: 150px;
}

.language_settings a:hover,
.amigo_btn:hover,
.amigo_btn:active,
.amigo_btn:focus,
.subscribe_btn:hover,
.subscribe_btn:active,
.subscribe_btn:focus {
    color: #ffffff !important;
    background: #074369;
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

.popup_page {
    background: #FFFFFF;
}

.footer_settings_tab,
.pro_pack_tab {
    overflow: hidden;
}

.footer_settings_tab ul.tabs,
.pro_pack_tab ul.tabs,
.account_settings_tab ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.footer_settings_tab ul.tabs li,
.pro_pack_tab ul.tabs li,
.account_settings_tab ul.tabs li {
    background: rgb(13 14 14 / 74%);
    color: #fff;
    padding: 10px 5px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid #fff;
}

.account_settings_tab ul.tabs li a {
    color: #fff;
}

/*.footer_settings_tab ul.tabs li.current, .pro_pack_tab ul.tabs li.current, .account_settings_tab ul.tabs li.current{
    color: #074369 !important;
}*/
.TabbedPanelsTabSelected,
.footer_settings_tab ul.tabs li:hover,
.TabbedPanelsTabSelected:hover,
.TabbedPanelsTabSelected:focus .pro_pack_tab ul.tabs li:hover,
.footer_settings_tab ul.tabs li.current,
.pro_pack_tab ul.tabs li.current,
.account_settings_tab ul.tabs li:hover,
.account_settings_tab ul.tabs li.current {
    background: rgb(16 16 16) !important;
}

.TabbedPanelsTabSelected:hover,
.TabbedPanelsTabSelected:focus,
.TabbedPanelsTabSelected:active {
    border-right: 1px solid #fff;
    border-left: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

.footer_popup_left {
    padding: 20px;
}

.footer_popup_left .chzn-container {
    position: absolute;
}

.footer_popup_left h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 25px;
    padding: 0;
}

.TabbedPanelsContentGroup {
    clear: both;
    min-height: 220px;
    background: #FFFFFF;
    font-size: 14px;
    color: #484848;
}

.TabbedPanelsContent {
    line-height: 20px;
    text-align: justify;
    font-weight: normal;
    overflow: hidden;
    padding: 0 !important;
}

.footer_tab_footer {
    border-top: 1px solid #e4e4e4;
    height: auto;
    padding: 11px 21px 13px;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.footer_tab_footer span {
    font-size: 12px;
    line-height: 39px;
    white-space: nowrap;
}

.popup_button .submit_btn {
    margin: 0 10px 0 0;
}

.popup_button .amigo_btn {
    margin: 0px 5px 0px 0px;
}

.footer_popup_left .form_input_con {
    border: none;
}

.split_link:hover {
    text-decoration: none;
}

.footer_popup_left .preference_split li.selected {
    background-color: #666666;
    color: #FFFFFF;
}

.footer_popup_left .preference_split li.selected a {
    color: #FFFFFF;
}

.preference_split {
    display: inline-block;
}

.preference_split li {
    list-style: none;
    padding: 10px 0px;
    color: #4C4C4C;
    display: inline-flex;
    font-size: 13px;
    width: 100%;
    cursor: pointer;
}

.preference_split li a {
    color: #000;
    font-size: 13px;
    text-decoration: none;
    margin: 0 0 0 0px;
    padding: 0px 4px 4px 4px;
    float: left;
}

.preference_split li span {
    padding: 0px;
    cursor: pointer;
}

.preference_split li.currencyactive .tick_image {
    color: #FFF;
    background: #1AA85C;
    border: #1AA85C;
}

.region_field select {
    font-weight: normal;
    color: #333333;
    border: 1px solid #ccc;
    background: #FFFFFF;
    line-height: 15px;
    width: 220px;
    padding: 5px 6px;
    font-size: 13px;
}

.copyright_con {
    padding: 20px 0px 20px 0px;
    text-align: center;
    background: #373737;
}

.copyright_menu {
    display: inline-flex;
}

.copyright_con a {
    color: #FFFFFF;
    font-weight: normal;
    line-height: 22px;
    display: inline;
}

.copyright_con p {
    padding: 0;
    vertical-align: middle;
    border: none;
    color: #FFFFFF;
    font-size: 14px;
    margin: 0px;
}

.copyright_menu .active a,
.footer_menu .active a {

    color: #fff;
}

.border_none {
    border: none !important;
}

.download-link {
    margin-bottom: 25px;
}



.amigo-social-aside {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 99999
}

.amigo-social-aside a {
    background: #fff;
    padding: 5px;
    display: inline-block;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .2)
}

.amigo-social-aside li {
    cursor: pointer;
    padding: 5px 0
}

.amigo-social-aside li img {
    width: 40px
}

.amigo-social-aside .fab {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    padding: 3px
}

.amigo-social-aside .fa-whatsapp {
    color: #4CAF50
}

.amigo-social-aside .fa-telegram {
    color: #2FA3D9
}

.fs-22 {
    font-size: 22px;
}

.sticky {
    position: fixed;
    z-index: 99999;
    background: #fff;
}


/*======================
    FOOTER END
========================*/


/*======================
    MEDIA QUIRIES
========================*/
@media only screen and (max-width:480px) {
    .notfound_page_con .mob-font {
        font-size: 136px !important;
    }

    .footer_settings_tab ul.tabs li,
    .pro_pack_tab ul.tabs li,
    .account_settings_tab ul.tabs li {
        font-size: 12px;
    }
}

@media(max-width: 768px) {

    /* Header page */
    header {
        border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
        box-shadow: 0 3px 5px 0 rgb(0 0 0 / 10%);
    }

    .banner-caption {
        top: 10% !important;
        left: 0px !important;
        transform: none !important;
    }


    .contact-banner-caption {
        top: 10% !important;
        left: 0px !important;
        transform: none !important;
    }

    .contact-card {
        padding: 0px;
    }

    .contact-border {
        padding: 30px 5px 30px 5px !important;
    }

    .fixed_header.sticky .head-user-popup {
        padding-top: 11px;
    }

    .nav-menu-mobile-section li a {
        padding: 10px 20px 10px 45px !important;
    }

    .main_header {
        overflow: hidden;
        width: 100%;
    }

    .inner_header .inner_menus {
        overflow-y: scroll;
    }

    .inner_menus .head_nav_menu {
        width: 600px;
    }

    .inner_menus .head_nav_menu li.dropdown {
        float: left !important;
    }

    .head_nav_menu .dropdown-menu {
        margin: 0px 20px 0px 20px !important;
    }

    .mob_header {
        padding: 0px;
        box-shadow: none;
        border: none !important;
    }

    .mob_header .logo img {
        width: 100% !important;
        margin: 0px !important;
    }

    .sticky .mob_header .fa,
    .mob_header a {
        vertical-align: middle;
        color: #fff;
    }

    .sticky .mob_header .fa-home {
        padding: 15px 0px 0px;
    }

    .mob_header .fa,
    .mob_header a {
        color: #333;
    }

    .mob_center {
        padding: 0px;
    }

    .mob_user a {
        font-size: 13px;
        padding: 4px 14px;
    }

    .mob_user a span {
        padding: 2px 0px;
        display: block;
    }

    .mob_user {
        display: inline-flex;
        width: 100% !important;
        padding: 0px !important;
        margin: 0px !important;
    }

    .mob_header .fa:hover,
    .mob_header a:hover {
        color: #333;
    }

    .mob_padd {
        cursor: pointer;
        font-size: 17px;
    }

    .mob-profile {
        float: right;
    }

    .sidebar_show_inner {
        padding: 17px 0px 0px;
    }

    .header_full_bg {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .8);
        opacity: 1;
        left: 0;
        right: 0;
        top: 0;
        z-index: 99999;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        display: none;
    }

    .header_full_bg:after {
        color: #fff;
        content: 'X';
        position: absolute;
        z-index: 999999;
        right: 20px;
        top: 20px;
        font-size: 30px;
        cursor: pointer;
    }

    #mySidenav,
    .standardized_filters,
    .dashboard_left {
        background: #fff;
        position: fixed;
        width: 75% !important;
        height: 100%;
        top: 0;
        left: 0;
        -webkit-transform: translate3d(-102%, 0, 0);
        transform: translate3d(-102%, 0, 0);
        will-change: transform;
        -webkit-box-shadow: 3px 0 8px 1px rgba(0, 0, 0, .4);
        box-shadow: 3px 0 8px 1px rgba(0, 0, 0, .4);
        z-index: 99999;
        overflow: auto;
        transition: all 0.4s ease-in-out 0s !important;
    }

    .cat_side_menu {
        background: linear-gradient(30deg, #2874f0, #0065c5) !important;
    }

    .mob_sort_header {
        position: fixed;
        width: 90%;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        min-height: 10%;
        max-height: 90%;
        background-color: #fff;
        border-radius: 3px;
        -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .4);
        box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .4);
        display: none;
        z-index: 999999;
    }

    .side_bar .side_bar_head {
        background: -webkit-linear-gradient(60deg, #2874f0, #0065c5);
        background: linear-gradient(30deg, #2874f0, #0065c5);
        color: #fff;
        padding: 21px 5px;
        width: 100%;
    }

    .side_bar_user {
        padding: 0px 7px;
    }

    .mob_head_side ul#nav {
        margin-bottom: 0px;
        padding: 0px;
    }

    .mob_head_side .side_bar ul {
        box-shadow: none;
        padding: 0;
    }

    .mob_head_side .nav-section-title {
        text-align: left;
    }

    .mob_head_side ul#nav li {
        padding: 0;
        position: relative;
    }

    .mob_head_side ul#nav li a {
        padding: 10px 0px 10px 15px;
        color: #666;
        font-size: 14px;
        outline: medium none !important;
        text-decoration: none !important;
    }

    .mob_head_favicon {
        position: absolute;
        right: 7px;
        margin: 10px 0px;
        width: 30px;
    }

    .mob_head_favicon img {
        width: 120px;
    }

    .mob_user img {
        width: 26px !important;
    }

    .mob_head_side .first_child {
        border: none;
    }

    .new_signup,
    a.reopen_account.right_align {
        text-align: center !important;
        display: block !important;
    }

    .footer_settings_tab ul.tabs li,
    .pro_pack_tab ul.tabs li,
    .account_settings_tab ul.tabs li {
        padding: 10px 1px !important;
    }

    /*Home page banner*/
    .landing_banner_inner,
    .carousel-caption {
        display: none;
    }

    .mobile_service_btn {
        display: block;
        font-size: 16px;
        text-align: center;
    }

    /*.banner_slider .item > img, .banner_slider .item img
    {
        min-height: 200px;
    }*/
    .project_listing .pro_list {
        padding: 0px !important;
    }

    .account_status {
        display: block;
    }



    /* Footer page */
    .copyright_con.copyright_con {
        text-align: center;
        display: block;
    }

    .copyright_menu li:last-child a {
        border-right: none;
    }

    .footer_column {
        padding: 15px 0px !important;
    }

    .subscribe_settings .amigo_btn {
        text-align: center;
        width: auto;
    }

    .mob_padd {
        display: flex;
        justify-content: end;
        padding-top: 16px;
    }

    .fixed_header {
        width: 100%;
        background: #78B042;
        padding: 0px 15px;
    }

    .sticky .mob_padd {
        padding-top: 3px;
    }


    .sticky {
        display: block;
        z-index: 9999;
        position: fixed;
        top: 0;
        transform: translate3d(0px, 0px, 0px);
        padding: 5px 10px !important;
    }

    .sticky i.fa.fa-bars {
        color: #fff;
    }

    /*.sticky .mob_center, .sticky .mob_user, .sticky .mob_notification,.sticky .mob_right, .after_scroll {
        display: none;
    }*/
    .sticky .after_scroll {
        display: block !important;
    }

    .mob_user .fa,
    .open_mob_menu .fa {
        font-size: 18px;
        padding: 5px 0px 0px;
    }
}

@media(max-width: 599px) {
    .my_model_popup .modal-dialog {
        margin: 20px 20px;
    }

    .social_login {
        width: 100%;
        text-align: center;
    }


    .order-mob-1 {
        order: 1;
    }

    .order-mob-2 {
        order: 2;
    }

    .display-mob-grid {
        display: grid;
    }

}

@media(max-width: 479px) {

    .popup_tab_content,
    .signin_content {
        padding: 15px 10px 16px;
    }

    .footer_social_link li a {
        padding-right: 2px;
    }
}

@media(max-width: 767px) {
    .career-resources {
        background: none !important;
    }

    .about-us-section .about-us-list li,
    .about-us-box-list .about-us-box,
    .gallery-section .gallery-images .items {
        width: 100% !important;
    }

    .grid-3 {
        width: 100% !important;
        grid-template-columns: auto !important;
    }

    .about-us-box .about-us-box-details {
        padding: 15px !important;
    }

    .logo {
        margin: 5px 0px;
    }

}

@media(min-width: 768px) {
    .carousel-caption {
        right: 0 !important;
        left: auto !important;
        padding-bottom: 30px;
        top: 0 !important;
        padding: 0px;
        margin: 0px;
        background: #ffffff94;
        height: 100%;
    }
}


.contact-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cont-border {
    border: 2px solid #000;
    border-radius: 15px;
    padding: 25px;
}


@media (max-width: 768px) {
    .cont-border {
        padding: 5px;
        margin-top: 10px;
    }
}



.con-title {
    padding-bottom: 50px;
    font-weight: 400;
}

@media (max-width:768px) {
    .con-title {
        padding-bottom: 0;
    }
}


.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-card {
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 8px;
    width: 180px;
    justify-content: space-between;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-content .main-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

.feature-content span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.arrow-icon {
    width: 55px;
    height: 20px;
    margin-left: 10px;
}



.apply-section {
    padding: 40px !important;
}

@media (max-width: 768px) {
    .feature-card {
        justify-content: center;
    }

    .feature-content {
        align-items: center;
    }

    .arrow-icon {
        display: none;
    }

    .border-right {
        border-right: none !important;
    }
}


.white-clr {
    color: #fff !important;
}


.bschool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* adds depth */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    margin: 20px auto;
}

.bschool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bschool-card img {
    width: 100%;
    height: auto;
    border-radius: 6px 6px 0 0;
    object-fit: cover;
}

.bschool-card h4 {
    margin-top: 15px;
    color: #222;
    font-size: 1.25rem;
    text-align: center;
}

.bschool-card p {
    margin-top: 10px;
    text-align: center;
}

.bschool-card a {
    color: #78B042;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    display: inline-block;
}



.service-card {
    background: #78B042;
}

.service-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.small-arrow-icon {
    margin-left: 8px;
}

.service-radius {
    border-radius: 10px;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    background-color: #E8F3FF;
    border-bottom-right-radius: 50px;

}

.card-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #78B042;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 0;
    font-weight: 600;
    font-size: 17px;
}


.exam-services-section h4 {
    font-size: 21px;
}


.university-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.university-col {
    flex: 0 1 calc(25% - 30px);
    min-width: 250px;
    display: flex;
}

.university-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.university-card:hover {
    transform: translateY(-5px);
}

/* Image container centered */
.university-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    padding: 10px;
    background-color: #f0f0f0;
}

.university-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Text content grows to fill space */
.university-info {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.university-title {
    font-size: 20px;
    color: #2980b9;
    margin-bottom: 10px;
}

.university-snippet {
    color: #555;
    font-size: 14px;
    margin-top: auto;
}

@media (max-width: 992px) {
    .university-col {
        flex: 0 1 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .university-col {
        flex: 0 1 100%;
    }
}


.why-choose-img {
    padding: 29px 10px;
}

.exam-list-section {
    background: #78B042;
}

.card-exam-content {
    padding: 20px;
    flex-grow: 1;
    background-color: #FFFFFF;
    min-height: 265px;
    text-align: center;
    border-radius: 10px;
}

.card-description {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #78B042;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    min-height: 76px;
}

.card-title {
    color: #000;
    padding: 5px 0px;
}


/* Make the whole testimonial item a flex column, center content */
.testimonial-slider .item {
    max-width: 500px;
    justify-content: center;
    margin: 0px auto;
}


/* Override Bootstrap grid for vertical stacking */
.testimonial-slide>.col-xs-12,
.testimonial-slide>.col-sm-12,
.testimonial-slide>.col-md-12 {
    width: 100% !important;
    float: none !important;
    display: block !important;
    margin-bottom: 20px;
    padding: 0 !important;
}




/* User name and position container */
.left_align {
    margin-bottom: 10px;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
    text-align: center !important;
}

.left_align h4 {
    margin: 0 0 6px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
}

.left_align i {
    font-style: italic;
    font-size: 13px;
    color: #666;
    display: block;
    margin: 0 auto;
}

/* Review text */
.review-details {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;

}

.review-details p {
    margin: 0 auto;
    max-width: 95%;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Star rating container - center stars */
.testimonial-btm {
    display: flex !important;
    justify-content: center !important;
    margin-top: -36px;
}

/* Stars wrapper */
.review-star-empty {
    width: 110px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23ccc" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12 17.27 18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21 12 17.27"/></svg>') repeat-x;
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

/* Filled stars */
.review-star-fill {
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg fill="%23FFD700" stroke="%23FFD700" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="12 17.27 18.18 21 16.54 13.97 22 9.24 14.81 8.63 12 2 9.19 8.63 2 9.24 7.46 13.97 5.82 21 12 17.27"/></svg>') repeat-x;
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.4s ease;
}


.choose-us-about-section {
    background: #FFC444;
}

h1.banner-title {
    color: #fff !important;
}

.choose-us-about-section .about-us-box-list .about-us-box {
    background: #FFFFFF;
}

.contact-border {
    background: #FFFFFF;
    position: relative;
    top: -70px;
    padding: 45px 41px 30px 41px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



.contact-banner-caption {
    position: absolute;
    padding: 5px;
    max-width: 800px;
    top: 17%;
    left: 32%;
    -ms-transform: translate(-4%, -50%);
    transform: translate(-4%, -50%);
}


.con-img {
    display: flex;
    justify-content: center;
    background-image: url('../imagesbsquarecontact-card-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.banner-content {
    color: #fff;
}



.about-mba-services-section {
    background: #FFC444;
}

.about-mba-services-section .card-content {
    background-color: #FFFFFF;
}


.icon-box {
    text-align: center;
}

.icon-box img {
    max-width: 80px;
    height: auto;
}

.icon-text {
    margin-top: 8px;
    font-size: 16px;
    color: #333;
    /* Change to match your theme */
}

@media (max-width: 576px) {
    .icon-box img {
        max-width: 60px;
    }

    .icon-text {
        font-size: 14px;
    }
}


.about-mba-admission-section {
    background: #fff !important;
    padding: 20px !important;
}


.dropdown-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    max-width: 400px;
}

.dropdown-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.custom-dropdown {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
}

.custom-dropdown:disabled {
    background-color: #f2f2f2;
    color: #888;
}


.university-drop {
    background-image: url('../imagesbsquareuniversities-dropdown.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px;
}


.university-filter-section .dropdown-label {
    color: #FFFFFF;
}

.university-filter-section h2 {
    color: #FFFFFF;
    font-size: 26px !important;
}

.university-filter-section p {
    color: #FFFFFF;
}

.university-filter-section .custom-dropdown {
    padding: 10px 14px;
    border: none;
    border-radius: 0px;
    font-size: 15px;
    border-bottom: 1px solid;
    margin-top: 13px;
    color: #fff;
    font-weight: 600;

}

.university-filter-section .custom-dropdown:focus,
.university-filter-section .custom-dropdown:focus-visible {
    padding: 10px 14px;
    border: none;
    border-radius: 0px;
    font-size: 15px;
    outline: none !important;
    border-bottom: 1px solid;
    color: #fff;
}

.university-filter-section .custom-dropdown option {
    color: #000;

}

.university-filter-section select {
    border: #d8d8d8 1px solid;
    background: url(../images/d-arrow.png) no-repeat scroll 98% center !important;
}



/* Section background and spacing */
.why-do-we-offer {
    background-color: #DBECF5;
    padding: 60px 0;
}

/* Section title */
.why-do-we-offer .section-title {
    text-align: center;

}

/* Card wrapper */
.offer-card {
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.offer-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.offer-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


.offer-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

/* Description */
.offer-card p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
}

.offer-card a {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
}

.offer-card a:hover {
    text-decoration: underline;
}


.offer-img-wrapper {
    display: flex;
    align-items: center;
    height: 100px;
}

.exam-carousel .item {
    padding: 15px;
}

.owl-theme .owl-dots {
    text-align: center;
    /* center the dots container */
    margin-top: 20px;
    /* optional spacing */
}


.owl-theme .owl-controls {
    margin-top: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot,
.owl-theme .owl-pagination .owl-page {
    display: inline-block;
    margin: 0 5px;
}

.owl-theme .owl-dot span,
.owl-theme .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
}

.owl-theme .owl-dot.active span,
.owl-theme .owl-page.active span {
    background: #78B042;
}

.home-banner-caption {
    color: #fff;
    font-size: 18px;
    padding-bottom: 5px;
}


.school-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Ensure content is spaced inside */
    align-items: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px;
    width: 100%;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.school-img-wrapper {
    width: 100%;
    max-width: 150px;
}

.school-img {
    height: auto;
    border-radius: 6px 6px 0 0;
    object-fit: cover;
}

.school-title {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 5px;
    text-align: center;
}

.school-snippet {
    margin-top: 10px;
    text-align: center;
    color: #555;
}

.school-col {
    flex: 1 1 300px;
    display: flex;
}

.school-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.event-banner .banner-caption {
    position: absolute;
    padding: 5px;
    max-width: 850px;
    top: 50%;
    left: 4%;
    -ms-transform: translate(-4%, -50%);
    transform: translate(-4%, -50%);
}


.event-details-con {
    background: #fff !important;
}

.ser-right-box {
    margin: 0px !important;
}


.cms_content h3 {
    margin: 20px 0px 5px 0px;
    font-size: 18px;
}

.dynamic-exam-section {
    display: flex;
    justify-content: center;
}

.exam_list_title {
    font-size: 30px;
    font-weight: 700px;
    color: #000000;
}

.exam_list-section h2 {
    margin-top: 10px;
}

.exam_list-section a {
    display: inline-flex;
}

.exam_list-section h3 {
    color: #78B042;
    margin-top: 20px;
    font-size: 18px;
}

.static__list-item {
    position: relative;
    margin-bottom: 10px !important;
    padding-left: 25px;
    font-weight: 700;
}

.cms_content ul {
    margin-top: 10px;
}

.static-link {
    display: inline-flex;
    color: #0095FE;
}

.static__list-item::before {
    position: absolute;
    content: "\f00c";
    left: 0;
    top: 0;
    color: #0095FE;
    font-weight: 400;
    font-family: "FontAwesome";
}

.exam_list-section p {
    margin-top: 15px;
    font-size: 15px;
}

.exam_list-section ul {
    margin-top: 10px;
}

.static__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.static__table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.static__table th,
.static__table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: left;
}

.services-con-banner .banner-caption {
    left: 10%;
}

.scheme-ddown {
    display: flex;
    align-items: center;
}

.d-user-toggle {
    left: 90%;
    position: absolute;
}

.subscribe::placeholder {
    color: #fff !important;

}

.banner-static-caption {
    position: absolute;
    padding: 5px;
    max-width: 850px;
    top: 50%;
    left: 7%;
    -ms-transform: translate(-4%, -50%);
    transform: translate(-4%, -50%);
}

.banner-static-caption h1.banner-title {
    font-size: 30px;
    margin: 0px 0px 20px;
}

.banner-static-caption h2.banner-title {
    font-size: 20px;
    margin: 0px 0px 20px;
}

.banner-broucher-sec {
    display: flex;
    gap: 10px;
}


.social_link a .fa {
    border-radius: 50%;
    color: #fff !important;
    line-height: 15px;
    text-align: center;
    font-size: 15px;
    background: #212121;
    border: 2px solid #fff;
}

.footer-sub-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0px;
}

.contact-heading {
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 23px;
}

.footer-subscribe-sec {
    background: #78B042;
}

.subscribe-row ::placeholder {
    color: #000 !important;
}

.about-info-line {
    border-left: 5px solid #E31625;
    padding: 15px 20px;
}

.rate-review-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.rate-review-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 20px !important;
}

.rate-show-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #E31625;
    padding: 20px 10px;
    border-radius: 12px;
}

.rate-title {
    font-size: 30px;
    color: #fff;
    font-weight: 800;
}

.rate-con-sec {
    text-align: center;
}

.rate-content {
    color: #fff;
}

.about-full-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.about-image-sec {
    display: flex;
    justify-content: center;
}

.why-points-list img {
    margin: 0px 4px 6px 0px;
    ;
}



.border-right {
    border-right: 2px solid #FFFFFF;
    padding: 0px 67px 0px 0px;
}

.amigo-arrow .fa {
    margin-left: 10px;
    font-size: 15px;
}

.amigo_lik {
    display: flex !important;
    align-items: baseline;
}



.contact-card .fa-envelope {
    color: #E31625;
    padding: 0px;
    margin-right: 5px;
    font-size: 20px;
}

.contact-card .fa-map-marker {
    color: #E31625;
    padding: 4px;
    margin-right: 5px;
    font-size: 20px;
}

.contact-card .fa-mobile {
    color: #E31625;
    padding: 4px;
    margin-right: 5px;
    font-size: 22px;
}

.contact-card a {
    color: #212121;
}

.contact-card p {
    color: #212121;
}


.info-item a {
    color: #fff;
}


.events-list-section .list-image img {
    transition: all 0.4s ease-in-out;
    width: 100%;
}


.events-list-section .list-title {
    border-bottom: none;
}

.events-list-section .list-title a {
    color: #000;
}

.lists-con-event {
    background: #F6F5EF;
}

.events-list-section .lists {
    background: none;
    padding: 0px;
}

.events-list-section .list-header li {
    color: #000;
}

.events-list-section .event-date {
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.events-list-section .box-overlay-action {
    border-radius: 10px;
    position: absolute;
    right: 0;
    width: 100%;
    bottom: 30px;
    height: 0;
    background: linear-gradient(354.23deg, rgba(0, 0, 0, 0.67) 4.33%, rgba(0, 0, 0, 0) 90.23%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.events-list-section .event-month {
    background: none;
}

.about-full-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}




/* Owl carousel slider start*/
.banner_slider {
    overflow: hidden;
}

.owl-carousel {
    position: relative;
    width: 100%;
}

.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
    float: left;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.banner_slider .item img {
    width: 100%;
}

.owl-controls {
    display: none !important;
}

.owl-carousel:hover .owl-controls {
    display: block !important;
}

.owl-prev {
    font-size: 0px !important;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.3);
    border-radius: 0 4px 4px 0 !important;
    padding: 18px 0px;
    margin: 0px auto !important;
    transition: box-shadow 0.2s ease 0s;
}

.owl-next {
    float: right;
    font-size: 0px !important;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.3);
    border-radius: 4px 0px 0px 4px !important;
    padding: 18px 0px;
    margin: 0px auto !important;
    right: 0px;
}

.owl-prev:after {
    content: "\f104";
    font-family: FontAwesome;
    font-size: 30px;
    font-weight: 500;
}

.owl-next:after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 30px;
    font-weight: 500;
}

.owl-theme .owl-controls .owl-buttons div {
    height: 80px;
    position: absolute;
    top: 35%;
    transform: translateY(35%);
    width: 30px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    opacity: 0.7;
}

.owl-theme .owl-controls .owl-buttons div:hover {
    box-shadow: 1px 2px 10px 1px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

/* Owl carousel slider end*/



.testimonial-slider .owl-controls {
    display: block !important;
}


.testimonial-section .owl-theme .owl-controls .owl-buttons div {
    position: absolute;
    top: 75%;
}


.testimonial-section .owl-prev {
    right: 106px;
}

.testimonial-section {
    background: #F6F5EF;
}

.trainer-slider .item {
    padding: 20px;
}

.card-trainer-content {
    background: #E31625;
    text-align: center;
    padding: 19px 0px 10px 0px;
    border-radius: 10px;
}


.trainer-slider .owl-controls {
    display: block !important;
}


.trainer-slider .owl-prev {
    left: -38px;
}

.trainer-slider .owl-next {
    right: -38px;
}


.trainer-list-section .owl-theme .owl-controls .owl-buttons div {
    top: 38%;
}

.trainer-content {
    color: #FFFFFF;
}

.trainer-title {
    color: #FFFFFF;
}

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

.exam-lists-section .card-exam-content {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.exam-list-section .owl-controls,
.exam-list-section .owl-controls *,
.exam-list-section .owl-nav,
.exam-list-section .owl-nav *,
.exam-list-section .owl-dots,
.exam-list-section .owl-dots * {
    pointer-events: none !important;
    /* disable clicking */
    display: none !important;
    /* hide them */
    opacity: 0 !important;
    /* hide visual */
    visibility: hidden !important;
    /* hide layout */
}


.banner-section .custom-dropdown {
    padding: 7px 14px;
    border-radius: 0px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    width: 140px;
}


.banner-section .university-filter-section .custom-dropdown option {
    color: #000;
}

.banner-section .amigo_btn {
    height: 41px;
}


.why-points-list li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000;
}


.why-points-list img {
    width: 25px;
    height: 25px;
    margin-right: 7px;
}


.why-unique-section {
    background: #F6F5EF;
}


.about-mision-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th,
.order-table td {
    padding: 10px;
    border: 1px solid #ddd;
    vertical-align: middle;
    text-align: center;
}


.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 16px;
    z-index: 99;
}

.toggle-password:hover {
    color: #000;
}


.user-profile-bg{
        width: 50px;
}