@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-weight: 400;
    font-size: 14px;
    color: #142066;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
}

/* utility class */

.font_400 {
    font-weight: 400 !important;
}

.font_500 {
    font-weight: 500 !important;
}

.font_600 {
    font-weight: 600 !important;
}

.font_700 {
    font-weight: 700 !important;
}

.font_800 {
    font-weight: 800 !important;
}

.font_900 {
    font-weight: 900 !important;
}

.f_10 {
    font-size: 10px !important;
}

.f_12 {
    font-size: 12px !important;
}

.f_14 {
    font-size: 14px !important;
}

.f_15 {
    font-size: 15px !important;
}

.f_16 {
    font-size: 16px !important;
}

.f_17 {
    font-size: 17px !important;
}

.f_18 {
    font-size: 18px !important;
}

.f_19 {
    font-size: 19px !important;
}

.f_20 {
    font-size: 20px !important;
}

.f_22 {
    font-size: 22px !important;
}

.f_24 {
    font-size: 24px !important;
}

.f_26 {
    font-size: 26px !important;
}

.f_28 {
    font-size: 28px !important;
}

.f_30 {
    font-size: 30px !important;
}

.f_32 {
    font-size: 32px !important;
}

.f_40 {
    font-size: 40px !important;
}

.f_46 {
    font-size: 46px !important;
}

.f_48 {
    font-size: 48px !important;
}

.grey_9d {
    color: #9DA0B2 !important;
}

a {
    text-decoration: none;
    color: #142066;
}

.blue_btn {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    border-radius: 30px;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    padding: 16.5px 26.5px;
    display: inline-block;
    text-align: center;
}

.blue_btn:hover {
    color: #ffffff;
}

.blue_outline_button {
    background: #ffffff;
    border: 1px solid #142066;
    border-radius: 30px;
    color: #142066;
    font-weight: 700;
    font-size: 16px;
    padding: 13px 42px;
    display: inline-block;
    text-align: center;
}

.blue_outline_button:hover {
    color: #142066;
}

.orange_btn {
    background: linear-gradient(43.81deg, #FF7F15 25.46%, #FFC014 80.91%);
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    padding: 12px 20px;
    display: inline-block;
    text-align: center;
}

.orange_btn:hover {
    color: #ffffff;
}

.skyblue_btn {
    background: #34BCF7;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    padding: 12px 0px;
    display: inline-block;
    text-align: center;
}

.skyblue_btn:hover {
    color: #ffffff;
}

.form-control:focus {
    box-shadow: none;
}

.form-select:focus {
    box-shadow: none;
}

/* utility class ends  */

/* ==============================
index page styling starts here
============================== */

.landing_header {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
    padding: 40px 0 235px 0;
    position: relative;
    z-index: 9;
}

.landing_header::after {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0%;
    right: 0%;
    background: url(../image/page-image/dolphin-bg-3.png);
    background-position: center;
    background-repeat: no-repeat;
    /* width: 100%; */
    background-size: cover;
    height: 100vh;
    z-index: -1;
    /* opacity: 0.3; */
}

.landing_header_dolphin {
    /* background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 40px 0 235px 0; */
    position: relative;
    z-index: 99;
}

.landing_header_dolphin::before {
    content: "";
    position: absolute;
    bottom: -3%;
    left: -9%;
    right: 0%;
    background: url(../image/page-image/dolphin-bg-4.png);
    background-position: center;
    background-repeat: no-repeat;
    /* width: 100%; */
    background-size: contain;
    height: 100vh;
    z-index: 99;
    opacity: 1;
}

.header-section {
    background: rgba(255, 255, 255, 0.09);
    border-radius: 13px;
    padding: 22px 25px;
}

.header-section .navbar {
    z-index: 100;
}

.header-section .navbar-nav .nav-item {
    margin-right: 35px;
}

.header-section .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

.header-section .navbar-nav .nav-item .nav-link {
    color: #ffffff;
    font-size: 20px;
}

.header-section .navbar-nav .nav-item .active {
    color: #FF7F15;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(43.81deg, #FF7F15 25.46%, #FFC014 80.91%) bottom;
    background-repeat: no-repeat;
    background-size: 100% 3px;
}

.header-section button.navbar-toggler.collapsed {
    top: 15px !important;
}

.orange_btn_login {
    background: linear-gradient(43.81deg, #FF7F15 25.46%, #FFC014 80.91%);
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    padding: 12.5px 30.5px;
    text-align: center;
}

.orange_btn_login:hover {
    color: #ffffff;
}

.madam_learn {
    padding-top: 115px;
    position: relative;
}

.madam_image {
    margin-left: 60px;
}

.main_register {
    margin-top: 100px;
}

.how_do {
    margin-bottom: 45px;
}

.how_do p:first-child {
    color: #FF7F15;
    font-size: 26px;
    font-weight: 500;
}

.how_do h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.teach_here {
    border: 1px solid #C5C8D7;
    border-radius: 20px;
    height: 310px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.teach_here p {
    margin: 16px 0;
}

.main_struggle {
    margin: 180px 0 150px 0;
}

.you_h2 {
    margin: 25px 0 20px 0;
}

.struggle_card {
    height: 222px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0px 7px 23px -10px rgb(29, 27, 27, 0.3);
}

.struggle_card h5 {
    margin-top: 20px;
}

.why_choose {
    margin-bottom: 113px;
}

.explore_image {
    margin-right: 80px;
}

.choose_leap h2 {
    margin: 21px 0;
}

.like_minded {
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 19px 22px;
    margin-bottom: 19px;
}

.like_minded_connect {
    margin-left: 15px;
}

.like_minded_connect h5 {
    margin-bottom: 5px;
}

.our_professionals {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    position: relative;
    padding: 90px 0 154px 0;
    margin-bottom: 91px;
    z-index: 2;
}

.our_professionals::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0%;
    right: 0%;
    background: url(../image/page-image/dolphin-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    height: 500px;
    z-index: -1;
}

.pro_tips {
    height: 312px;
    position: relative;
}

.pro_tips_image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.pro_tips_image::before {
    content: "";
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 66.44%);
    border-radius: 20px;
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.pro_tips_image img {
    width: 100%;
    object-fit: cover;
}

.pro_abs_text {
    position: absolute;
    bottom: 9%;
    left: 8%;
}

.grey_cup {
    padding: 2.72776px 9.54718px;
    width: 84.82px;
    height: 27.46px;
    background: #B7B8B9;
    border-radius: 13.6388px;
    margin-bottom: 6px;
}

.grey_cup img {
    height: 15px;
    width: 15px;
    margin-right: 4px;
}

.gold_cup {
    background: #E5C34E;
}

.join_do {
    margin-bottom: 31px;
}

.taskforce {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.real_images {
    width: 100%;
}

.real_images img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.taskforce p {
    position: absolute;
    bottom: 10%;
}

.testimonials {
    margin-top: 90px;
}

.main_testimonials {
    margin: 50px 0 90px 0;
    position: relative;
}

.stars_image {
    margin: 20px 0;
}

.testimonial-thumbs .testimonial-pic img {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    padding: 4px;
    position: relative;
    z-index: 2;
    background-color: #fff;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.swiper-slide-thumb-active .testimonial-pic img {
    height: 62px;
    width: 62px;
}

.testimonial-thumbs {
    width: 300px;
    margin: 30px auto auto auto;
    box-sizing: border-box;
    height: 170px;
    position: relative;
}

.testimonial-comment {
    width: 100%;
    background: white;
    box-shadow: 0px 11px 26px rgba(0, 0, 0, 0.11);
    border-radius: 26px;
    height: 285px;
}

.main_testimonials::after {
    content: "";
    position: absolute;
    left: 47.7%;
    bottom: 37%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid rgba(51, 51, 51, 0.03);
}

.main_testimonials::before {
    content: "";
    position: absolute;
    left: 47.7%;
    bottom: 38%;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #fff;
    z-index: 20;
}

.testimonial-comment .swiper-wrapper {
    padding-bottom: 20px;
    background: #ffffff;
    z-index: -1;
}

.testimonial-thumbs .testimonial-pic {
    transition: all 0.5s;
    padding-top: 13px;
}

.testimonial-thumbs .swiper-slide-thumb-active .testimonial-pic {
    padding: 0 0 40px;
}

.testimonial-text {
    text-align: center;
}

.swiper-slide-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.swiper-slide-3 {
    width: 33px;
}

.store_text {
    padding: 90px 0 90px 65px;
}

.store_text h2 {
    margin: 30px 0;
}

.store_images {
    margin-top: 30px;
}

.store_images a:first-child {
    margin-right: 15px;
}

.download_app_bg {
    background: rgb(52, 188, 247, 0.08);
    border-radius: 28px;
}

.download_app {
    margin-bottom: 90px;
}

.newsletter {
    background: linear-gradient(180deg, rgba(52, 188, 247, 0) 0%, rgba(52, 188, 247, 0.08) 100%);
    padding-bottom: 72px;
}

.subscribe_input .input-group {
    height: 91px;
}

.subscribe_input .form-control {
    background: #EFFAFF;
    border-radius: 49.5px;
    border: none;
    padding-left: 43px;
    font-size: 20px;
    color: #9DA0B2;
}

.subscribe_input .input-group-text {
    background: #EFFAFF;
    border-radius: 49.5px;
    border: none;
    padding-right: 19px;
}

.subscribe_input .form-control::-webkit-input-placeholder {
    color: #9DA0B2;
}

.subscribe_input .form-control::-moz-placeholder {
    color: #9DA0B2;
}

.subscribe_input .form-control:-ms-input-placeholder {
    color: #9DA0B2;
}

.subscribe_input input:-moz-placeholder {
    color: #9DA0B2;
}

.landing_footer {
    margin-top: 160px;
}

.labore_m {
    margin-top: 20px;
}

.o_services {
    margin-top: 30px;
}

.o_services a {
    margin-bottom: 10px;
}

.o_services a:hover {
    color: #142066;
}

.get_mt_18 {
    margin-top: 18px;
}

.ginal_mr_10 {
    margin-right: 10px;
}

.o_services_26 {
    margin-top: 26px;
}

.social_icon {
    margin-top: 30px;
}

.social_icon a {
    margin-right: 20px;
}

.copy_rights {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
}

.copy_rights p {
    margin: 19px 0 18px 0;
}

.leap_orange {
    color: #EC681C;
}

/* ==============================
index page styling ends here
============================== */

/* ==============================
log-in page styling starts here
============================== */

.login_footer {
    padding-top: 108px;
    margin-top: 0;
}

.login_newsletter {
    background: linear-gradient(180deg, rgba(52, 188, 247, 0) 0%, rgba(52, 188, 247, 0.08) 5%);
}

.our_professionals_login {
    padding-top: 40px;
    margin-bottom: 0;
}

.madam_login {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 105px 0;
    margin-top: 62px;
}

.login_social a img {
    height: 38px;
    width: 38px;
    margin-bottom: 10px;
    margin-top: 27px;
}

.login_social a p:hover {
    color: #142066;
}

.google_space {
    margin: 0 53px 0 48px;
}

.bagzag {
    width: 100%;
    height: 50px;
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.bagzag:after {
    content: '';
    width: 100%;
    border-bottom: solid 1px #E8EAED;
    position: absolute;
    left: 0;
    top: 20%;
    z-index: 1;
}

.bagzag span {
    background-color: white;
    width: auto;
    display: inline-block;
    z-index: 3;
    padding: 0 20px 0 20px;
    position: relative;
}

.login_form .form-control {
    color: #142066;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #E8EAED;
    border-radius: 0;
    padding: 6px 0 11px 0;
}

.login_form .form-control::-webkit-input-placeholder {
    color: #142066;
}

.login_form .form-control::-moz-placeholder {
    color: #142066;
}

.login_form .form-control:-ms-input-placeholder {
    color: #142066;
}

.login_form input:-moz-placeholder {
    color: #142066;
}

.login_form_1 {
    margin: 20px 0;
}

.blue_btn_login {
    padding: 13px 42px !important;
}

/* Modal  */

.login_modal .modal-content {
    border-radius: 20px;
    padding: 13px;
    border: none;
}

.login_modal .modal-content .modal-header {
    border-bottom: none;
}

.login_modal .login_bg_image img {
    border-radius: 20px 20px 0 0;
}

.forgot_position {
    position: absolute;
    top: 34%;
    left: 30%;
}

.login_modal .modal-content .modal-footer {
    border-top: none;
    margin-bottom: 42px;
}

.modal_login_f {
    margin: 40px 0 30px 0;
}

.button_close_11 {
    margin-right: 11px;
}

/* ==============================
log-in page styling ends here
============================== */

/* ==============================
Sign up page styling starts here
============================== */

.madam_signup {
    padding: 50px 0 55px 0;
}

.login_form_2 {
    margin-bottom: 20px;
}

.login_form_2 .input-group-text {
    padding: 0 0 0.375rem 0;
    background: none;
    border: none;
    border-bottom: 1px solid #E8EAED;
    border-radius: 0;
}

.signup_check .form-check {
    margin-bottom: 37px;
    display: flex;
    align-items: flex-start;
}

.signup_check .form-check .form-check-label {
    flex: 1;
}

.signup_check .form-check-input {
    background-color: #ffffff;
    border-color: #142066;
    border-radius: 20px;
    height: 20px;
    width: 20px;
    margin-right: 12px;
}

.signup_check .form-check-input:focus {
    box-shadow: none;
}

.signup_check .form-check-input:checked {
    background-color: #142066;
    border-color: #142066;
    border-radius: 20px;
    height: 20px;
    width: 20px;
    margin-right: 12px;
}

/* Modal  */

.verification_position {
    position: absolute;
    top: 31%;
    left: 37%;
}

.signup_m_footer {
    margin-bottom: 22px !important;
}

.signup_m_footer button {
    margin-bottom: 20px;
}

.dot_input .form-control {
    margin-right: 17px;
}

/* ==============================
Sign up page styling ends here
============================== */

/* ======================================
Complete Profile page styling starts here
====================================== */

/* .main_profile {
    border-radius: 20px;
    background: white;
} */

.complete_profile {
    background: #ffffff;
    border-radius: 20px;
    margin-top: 62px;
}

.profile_heading {
    margin: 45px 0 30px 65px;
    display: inline-block;
}

.complete_profile .nav-pills .nav-link {
    text-align: start;
    color: #142066;
    font-size: 18px;
    padding: 4px 0;
    margin-bottom: 42px;
}

.complete_profile .nav-pills .nav-link.active,
.complete_profile .nav-pills .show>.nav-link {
    color: #FF7F15;
    font-weight: 500;
    border-right: 4px solid #EC681C;
    background: white;
    border-radius: 0;
}

.navs_line {
    border-right: 1px solid rgba(113, 133, 158, 0.3);
    border-bottom: 1px solid rgba(113, 133, 158, 0.3);
    min-height: 500px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.navs_spacing {
    margin-left: 65px;
}

.navs_spacing_right {
    margin: 0 62px 0 30px;
}

.switch_detail {
    position: relative;
    width: 130px !important;
    height: 23px;
    border-radius: 25px;
}

.switch_detail input {
    appearance: none;
    width: 95px;
    height: 33px;
    border-radius: 25px;
    background: #1e1e1e;
    outline: none;
}

.switch_detail input::before,
.switch_detail input::after {
    z-index: 2;
    position: absolute;
    top: 67%;
    transform: translateY(-50%);
    font-weight: bolder;
}

.switch_detail input::before {
    content: "Yes";
    left: 17px;
    font-size: 12px;
    font-weight: 700;
    color: #9DA0B2;
}

.switch_detail input::after {
    content: "No";
    right: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #9DA0B2;
}

.switch_detail input:checked {
    background: #E8EAED;
}

.switch_detail label {
    z-index: 1;
    position: absolute;
    top: 2px;
    bottom: 2px;
    border-radius: 21px;
    height: 28px;
}

.switch_detail input {
    transition: 0.25s;
}

.switch_detail input:checked::before,
.switch_detail input:checked::after {
    color: #fff;
    transition: color 0.5s;
}

.switch_detail input:checked::after {
    color: #9DA0B2;
    font-weight: 700;
    transition: color 0.5s;
}

.switch_detail input:checked+label {
    left: 5px;
    right: 90px;
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    border-radius: 21.019px;
    transition: left 0.5s, right 0.4s 0.2s;
    width: 46px;
}

.switch_detail input:not(:checked) {
    background: #E8EAED;
    transition: background 0.4s;
}

.switch_detail input:not(:checked)::before {
    color: #9DA0B2;
    font-weight: 700;
    font-size: 12px;
    transition: color 0.5s;
}

.switch_detail input:not(:checked)::after {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    transition: color 0.5s 0.2s;
}

.switch_detail input:not(:checked)+label {
    left: 46px;
    right: 36px;
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    border-radius: 21.019px;
    transition: left 0.4s 0.2s, right 0.5s, background 0.35s;
}

.profile_tab {
    min-height: 500px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    border-bottom: 1px solid rgba(113, 133, 158, 0.3);
}

.li_input {
    margin-top: 28px;
}

.li_input_1 {
    margin-top: 31px;
}

.li_input .form-select {
    color: #142066;
    border: none;
    border-bottom: 1px solid #E8EAED;
    border-radius: 0;
    padding: 6px 0 11px 0;
    background-image: url(../image/icon/select-down-arrow.svg);
}

.education_card {
    margin-top: 20px;
    padding: 21px 30px 21px 21px;
    border: 1px solid #E8EAED;
    border-radius: 9px;
    background: #ffffff;
}

.add_icon img {
    margin-right: 5px;
}

.ny_uni {
    margin-top: 15px;
}

.nyu_logo {
    height: 53px;
    width: 53px;
    overflow: hidden;
}

.nyu_logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 11px;
}

.nyu_info {
    margin-left: 10px;
}

.nyu_edit a {
    color: #34BCF7;
}

.nyu_edit ul {
    padding-left: 1.5rem;
}

.nyu_edit ul li::marker {
    color: #CCCEDA;
    padding-right: 9px;
}

.next_line_grey {
    padding: 15px 0 24px 0;
}

.career_select {
    min-height: 144px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career_select:nth-last-child(-n + 2) {
    margin-bottom: 15px;
}

.manage_team {
    margin-top: 25px;
}

.manage_team h5 {
    margin-bottom: 15px;
}

.manage_team .signup_check .form-check {
    margin-bottom: 14px;
}

.signup_box {
    display: -webkit-box;
}

/* =====================================
Complete Profile page styling ends here
======================================*/

/* =====================================
Home page styling starts here
======================================*/

.profile_notification_icon {
    height: 46px;
    width: 46px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile_notification_number {
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid #2D4583;
    background: #DB1515;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 13%;
    top: 2%;
}

.top_account {
    z-index: 100;
}

.top_account .dropdown-toggle::after {
    display: none;
}

.top_account .btn:focus {
    box-shadow: none;
}

.top_account .dropdown .dropdown-menu {
    padding: 30px 20px 20px 20px;
    border-radius: 14px;
    color: #142066;
    width: 390px;
}

.notification_detail {
    background: rgba(232, 234, 237, 0.5);
    border-radius: 14px;
    padding: 14px 17px;
    margin-top: 12px;
}

.notification_detail_text {
    margin-left: 17px;
    flex: 1;
}

.notification_down_arrow {
    margin-top: 15px;
}

.notification_down_arrow img {
    margin-left: 16px;
}

.main_home_header {
    height: 654px;
    padding-bottom: 0;
}

.homepage_our_professionals {
    background: white;
    padding-bottom: 0;
    margin-bottom: 115px;
}

.homepage_our_professionals::before {
    display: none;
}

.upcoming_session_heading {
    margin-bottom: 30px;
}

.session_ricardo_image {
    height: 230px;
    width: 100%;
    overflow: hidden;
}

.session_ricardo_image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 18px 18px 0 0;
}

.session_ricardo_text {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    padding: 20px;
    border-radius: 0px 0px 18px 18px;
}

.join_button {
    background: #FFFFFF;
    border-radius: 24.0636px;
    width: fit-content;
    padding: 8px 13px;
    margin-top: 15px;
}

.join_button img {
    height: 31px;
    width: 31px;
    margin-right: 6px;
}

.join_button_6 {
    opacity: 0.6;
}

.orange_btn_min {
    padding: 8px 16px;
}

.sat_15 {
    position: absolute;
    top: -14%;
    right: 8%;
}

.home_newsletter {
    margin-top: 183px;
}

#upCarousel .owl-nav {
    position: absolute;
    top: -18%;
    right: 0%;
}

#seCarousel .owl-nav {
    position: absolute;
    top: -29%;
    right: 0%;
}

#upCarousel .owl-nav .owl-prev,
#seCarousel .owl-nav .owl-prev {
    height: 41px;
    width: 41px;
}

#upCarousel .owl-nav .owl-next,
#seCarousel .owl-nav .owl-next {
    height: 41px;
    width: 41px;
    margin-left: 5px;
}

.session_recall {
    margin-top: 91px;
}

.recall_card {
    position: relative;
    background: rgba(244, 245, 247, 0.5);
    border-radius: 18px;
    padding: 25px 21px 24px 27px;
}

.recall_card_image {
    position: absolute;
    top: -5%;
    left: 2%;
    height: 68px;
    width: 28px;
}

.recall_card_image img {
    height: 100%;
    width: 100%;
}

.recall_card_text h3 {
    margin: 0 0 10px 29px;
}

.recall_card_text p {
    margin: 0 0 20px 29px;
}

#seCarousel .item {
    padding-top: 30px;
}

/* =====================================
Home page styling ends here
======================================*/

/* =====================================
Mentor Detail page styling starts here
======================================*/

.more_details_header {
    height: 350px;
    padding-bottom: 0;
}

.more_details_header .madam_learn {
    padding-top: 65px;
}

.bread_home .breadcrumb{
    align-items: center;
}

.bread_home .breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}

.bread_home .breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
}

.bread_home .breadcrumb-item+.breadcrumb-item::before {
    color: #FF7F15;
    content: ">";
    font-size: 20px;
}

.main_mentor {
    margin-top: 90px;
}

.mentor_review {
    border-bottom: 1px solid #CCCEDA;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.mentor_de_tab {
    margin-top: 30px;
}

.mentor_de_tab .nav-tabs {
    border-bottom: 1px solid #CCCEDA;
}

.mentor_de_tab .nav-item .nav-link {
    color: #9DA0B2;
    font-weight: 500;
    font-size: 20px;
    padding: 0 5px 16px 5px;
    margin-right: 30px;
    margin-bottom: -3px;
}

.mentor_de_tab .nav-item .nav-link:hover {
    border: none;
}

.mentor_de_tab .nav-item:focus-visible,
.mentor_de_tab .nav-item .nav-link:focus-visible {
    outline: none;
    border: none;
}

.mentor_de_tab .nav-item .active {
    color: #142066;
    font-weight: 700;
    border: none;
    background: linear-gradient(43.81deg, #FF7F15 25.46%, #FFC014 80.91%) bottom;
    background-repeat: no-repeat;
    background-size: 100% 4px;
}

.nyu_tab {
    margin-top: 25px;
}

.nyu_tab_image {
    height: 163px;
    width: 100%;
    overflow: hidden;
}

.nyu_tab_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 11px;
}

.nyu_tab_text {
    margin-top: 15px;
}

.ricardo_review {
    margin: 40px 0 20px 0;
}

.review_blue {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    border-radius: 11px;
    padding: 21px 24px;
}

.review_star {
    margin-left: 30px;
}

.doe_review {
    margin-top: 20px;
}

.doe_review_img {
    height: 43px;
    width: 43px;
    overflow: hidden;
    margin-right: 11px;
}

.doe_review_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 1px solid #E8EAED;
    border-radius: 20px;
}

.doe_description {
    border-bottom: 1px solid #E8EAED;
    padding: 12px 0 5px 0;
}

.minim {
    background: #F4F5F6;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

.minim_method {
    margin-bottom: 16px;
}

.visa_end {
    margin-top: 14px;
}

.visa_master_image {
    width: 44px;
    height: 44px;
    border: 1px solid #CCCEDA;
    border-radius: 10px;
    margin-right: 10px;
    padding: 9px 6px;
    background: #ffffff;
}

.visa_master_image img {
    height: 25px;
    width: 32px;
}

.visa_master_line {
    position: relative;
}

.visa_master_line .signup_check .form-check-input {
    border-color: #E8EAED;
}

.visa_master_line::after {
    content: "";
    position: absolute;
    border-bottom: 1px solid #E8EAED;
    padding-bottom: 27px;
    width: 100%;
    bottom: -70%;
}

.minim .visa_end:last-child .visa_master_line::after {
    display: none;
}

.digit_grey {
    padding: 12px;
    font-weight: 600;
    background: #FFFFFF;
    border: 1px solid #CCCEDA;
    border-radius: 8px;
    margin-top: 15px;
}

.digit_blue {
    background: linear-gradient(90deg, #1B79BD 0%, #34BCF6 100%);
    color: #fff;
}

.minim_input .form-control {
    background: #F4F5F6;
    margin: 20px 0 25px 0;
}

.minim_input .form-control::-webkit-input-placeholder {
    color: #9DA0B2;
}

.minim_input .form-control::-moz-placeholder {
    color: #9DA0B2;
}

.minim_input .form-control:-ms-input-placeholder {
    color: #9DA0B2;
}

.minim_input .form-control input:-moz-placeholder {
    color: #9DA0B2;
}

.minim_modal_form {
    margin: 23px 0 30px 0;
}

.minim_form {
    margin-top: 25px;
}

.minim_add_space {
    margin-top: 50px;
}

.minim_form_buttons {
    margin: 30px 0 40px 0;
    float: right;
}


.blue_outline_button_12 {
    padding: 12px 42px;
    margin-right: 14px;
}

/* =====================================
Mentor Detail page styling ends here
======================================*/

/* =====================================
Confirmed Session page styling starts here
======================================*/

.more_details_header_confirmed {
    height: 400px;
}

.session_blue_top {
    border-radius: 12px 13px 0px 0px;
    padding: 25px 29px;
    background: #142066;
}

.session_blue_middle {
    padding: 25px 29px;
    background: #E8EAED;
}

.session_blue_bottom {
    background: rgba(199, 201, 210, 0.44);
    border-radius: 0px 0px 12px 12px;
    padding: 25px 29px;
}

.minim_blue {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    border-radius: 12px;
    padding: 38px 0;
    margin-top: 20px;
}

.minim_blue h4 {
    color: #34BCF7;
}

.minim_blue p {
    margin: 11px 0 20px 0;
}

.date_image img {
    margin-right: 10px;
}

/* =====================================
Confirmed Session page styling ends here
======================================*/

/* =====================================
Upcoming Session page styling ends here
======================================*/

.up_huston .pro_tips_image::before {
    display: none;
}

.join_button_blue {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
}

/* =====================================
Upcoming Session page styling ends here
======================================*/

/* =====================================
Community page styling starts here
======================================*/

.main_community_tab {
    margin-top: 91px;
}

.all_community_tab .nav-tabs {
    border-bottom: none;
}

.all_community_tab .nav-tabs .nav-link {
    color: #9DA0B2;
    font-size: 22px;
    border: 1.3951px solid #E8EAED;
    border-radius: 41.8529px;
    padding: 13px 25px;
    margin-right: 12px;
}

.all_community_tab .nav-tabs .active {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    color: #ffffff;
    font-weight: 700;
}

.agents {
    margin-top: 60px;
}

.agent_image {
    height: 271px;
    width: 100%;
    overflow: hidden;
}

.agent_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.agent_image {
    position: relative;
    margin-bottom: 20px;
}

.agent_image::before {
    content: "";
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 66.44%);
    border-radius: 20px;
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.all_community_tab .input-group {
    height: 53px;
}

.all_community_tab .form-control {
    background: #ffffff;
    border-radius: 0 26px 26px 0;
    border: 1px solid #E8EAED;
    font-size: 16px;
    color: #9DA0B2;
    border-left: none;
    padding-left: 0;
}

.all_community_tab .input-group-text {
    background: #ffffff;
    border-radius: 26px 0 0 26px;
    border: 1px solid #E8EAED;
}

.all_community_tab .form-control::-webkit-input-placeholder {
    color: #9DA0B2;
}

.all_community_tab .form-control::-moz-placeholder {
    color: #9DA0B2;
}

.all_community_tab .form-control:-ms-input-placeholder {
    color: #9DA0B2;
}

.all_community_tab input:-moz-placeholder {
    color: #9DA0B2;
}

.agent_pagination {
    margin-top: 60px;
}

.agent_pagination .page-link {
    color: #142066;
    font-weight: 500;
    font-size: 18px;
    border: 1px solid #9DA0B2;
    border-radius: 25.5px;
    margin: 0 8px;
    height: 50px;
    width: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agent_pagination .page-link:focus,
.agent_pagination .page-link:hover {
    background: none;
    box-shadow: none;
}

.agent_pagination .page-item .active {
    color: #ffffff;
    background: #142066;
}

.b_no {
    border: none !important;
}

/* =====================================
Community page styling ends here
======================================*/

/* =====================================
Community Detail page styling starts here
======================================*/

.collection_taskforce {
    margin-top: 91px;
}

.boys_image {
    height: 398px;
    width: 100%;
    overflow: hidden;
    border-radius: 26px;
}

.boys_image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.boys_decription {
    margin: 32px 0 21px 0;
    border-bottom: 1px solid #CCCEDA;
    padding-bottom: 21px;
}

.details_member_space {
    margin: 26px 0;
}

.view_join {
    margin-top: 41px;
}

.leave_space {
    margin: 25px 0 20px 0;
}

.leave_space_bt {
    margin-bottom: 60px;
}

/* =====================================
Community Detail page styling ends here
======================================*/

/* =====================================
Session Detail page styling starts here
======================================*/

.past_session {
    margin-top: 90px;
}

.gina_space {
    margin-top: 20px;
}

.join_button_red {
    background: linear-gradient(90deg, #CF0000 33.22%, #FA0606 103.95%);
}

.reason_modal {
    padding-top: 51px;
}

.cancel_check {
    margin: 35px 0 20px 0;
}

.cancel_check_right {
    padding: 15px 25px 15px 30px;
    background: #F4F5F6;
    border-radius: 12px;
    margin-bottom: 10px;
}

.cancel_ed .form-check-input {
    border-color: #E8EAED;
}

.cancel_ed .form-check-input {
    height: 26.67px;
    width: 26.67px;
}

.cancel_ed .form-check-input:checked {
    height: 26.67px;
    width: 26.67px;
}

.cancel_buttons {
    margin-bottom: 30px;
}

.cancel-second-modal .modal-content {
    width: 378px;
}

.check_done {
    margin: 23px 0 23px 0;
}

/* =====================================
Session Detail page styling ends here
======================================*/

/* =====================================
Session Past page styling starts here
======================================*/

.session_button {
    background: #FFFFFF;
    border-radius: 21.5px;
    padding: 8px 16px;
    color: #34BCF7;
}

.session_red_button {
    color: #DB1515;
}

.sat_can {
    position: absolute;
    top: -8%;
    right: 8%;
}

/* =====================================
Session Past page styling ends here
======================================*/

/* ==================================================
Past Session Without Add Notes page styling starts here
===================================================*/

.wish_notes {
    border: 1px solid #E8EAED;
    border-radius: 12px;
    padding: 22px 30px;
    margin: 30px 0 15px 0;
}

.wish_experience {
    border: 1px solid #E8EAED;
    border-radius: 12px;
    padding: 30px 26px 28px 27px;
}

.your_top {
    margin-top: 21px;
}

.wish_line {
    padding-bottom: 50px;
    border-bottom: 1px solid #E8EAED;
}

.wish_button {
    margin-top: 67px;
}

.wish_reason {
    margin: 40px 0 30px 0;
}

/* ==================================================
Past Session Without Add Notes page styling ends here
===================================================*/

/* ==================================================
Past Session With Add Notes page styling starts here
===================================================*/

.sky_complete {
    background: rgba(52, 188, 247, 0.1);
}

.mollit_top {
    margin-top: 15px;
}

/* ==================================================
Past Session With Add Notes page styling ends here
===================================================*/

/* ==================================================
Past Session Cancelled page styling starts here
===================================================*/

.red_complete {
    background: linear-gradient(90deg, rgba(207, 0, 0, 0.1) 33.22%, rgba(250, 6, 6, 0.1) 103.95%);
}

.cancel_reason {
    margin-top: 20px;
    background: linear-gradient(90deg, rgba(207, 0, 0, 0.1) 33.22%, rgba(250, 6, 6, 0.1) 103.95%);
    border-radius: 10px;
    padding: 24px;
}

.cancel_reason h6 {
    color: #DB1515;
    margin-bottom: 20px;
}

.cancel_reason p {
    margin-bottom: 10px;
}

/* ==================================================
Past Session Cancelled page styling ends here
===================================================*/

/* ==================================================
My Account page styling starts here
===================================================*/

.my_account_profile {
    background: #F4F5F6;
    border-radius: 15px;
    position: relative;
    margin-top: -65px;
    z-index: 9;
}

.blue_account {
    background: #34BCF7;
    border-radius: 15px 15px 0px 0px;
    height: 189px;
}

.account_profile_pic {
    position: relative;
    margin-top: 45px;
}

.account_profile_image {
    overflow: hidden;
    height: 183px;
    width: 182px;
    position: relative;
}

.account_profile_image::before {
    content: "";
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.account_profile_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 2.5px solid #FFFFFF;
    border-radius: 16px;
}

.account_profile_camera {
    position: absolute;
    bottom: -12%;
    right: 10%;
    z-index: 2;
}

.account_tab {
    padding: 0 15px 8px 15px;
    margin-top: 54px;
}

.account_tab .nav-pills .nav-link {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 18px 18px 18px 19px;
    color: #142066;
    font-size: 16px;
    text-align: start;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.account_tab .nav-pills .active {
    background: linear-gradient(90deg, #142066 33.22%, #1D4486 103.95%);
    color: #ffffff;
    font-weight: 500;
}

.profile_account_heading {
    margin: 30px 0 22px 0;
}

.profile_account_content {
    background: #F4F5F6;
    border-radius: 12px;
    padding: 50px 50px 0px 50px;
}

.h-88 {
    min-height: 87.8%;
    max-height: 87.8%;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.profile_account_form .login_form .form-control {
    background: #F4F5F6;
}

.profile_account_del {
    background: #FFFFFF;
    border: 1px solid #E8EAED;
    border-radius: 9px;
    padding: 33px 50px 33px 41px;
    margin-bottom: 65px;
}

.join_button_red_2 {
    padding: 13px 29px;
}

.ny_uni_education {
    background: #ffffff;
    border: 1px solid #E8EAED;
    border-radius: 9px;
    padding: 33px 33px 33px 27px;
}

.li_input_3 {
    margin-top: 25px;
}

.profile_account_content .form-select {
    background: #F4F5F6;
    color: #142066;
    font-weight: 400 !important;
    font-size: 18px;
    border: none;
    border-bottom: 1px solid #E8EAED;
    background-image: url(../image/icon/select-down-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-left: 0;
}

.profile_account_content .form-control {
    background: #F4F5F6;
}

.visa_master_logo {
    height: 60px;
    width: 60px;
    display: flex;
    justify-self: center;
    align-items: center;
    border: 1px solid #CCCEDA;
    border-radius: 10px;
    margin-right: 10px;
    background: #ffffff;
    padding: 12px 8px;
}

.visa_master_logo img {
    height: 34.91px;
    width: 43.74px;
}

.reminder_dashboard {
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 125px;
    width: 100%;
}

.reminder_dashboard_blue {
    background: #142066;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 125px;
    width: 100%;
    position: relative;
}

.reminder_dashboard_tick {
    position: absolute;
    top: 7%;
    right: 5%;
}

.help_account .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #E8EAED;
    border-radius: 9px;
    background: #FFFFFF;
}

.help_account .accordion-button {
    color: #142066;
    background: #ffffff;
    border-radius: 9px;
}

.help_account .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-radius: 9px;
}

.help_account .accordion-button:focus {
    box-shadow: none;
}

.help_account .accordion-body p {
    color: #142066;
}

.button-wrapper {
    position: relative;
    margin-top: 15px;
}

.button-wrapper .label img {
    margin-right: 12px;
}

.button-wrapper span.label {
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 100%;
    background: rgba(232, 234, 237, 0.5);
    cursor: pointer;
    color: #142066;
    padding: 10px 13px;
    font-size: 14px;
    width: 170px;
    border-radius: 5px;
}

#upload {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.gina_60 {
    margin-top: 60px;
}

/* ==================================================
My Account page styling ends here
===================================================*/

/* ==================================================
About Us page styling starts here
===================================================*/

.why_choose_about {
    margin: 91px 0 174px 0;
}

.about_dolphin {
    padding: 132px 0;
}

.reach_dolphin {
    height: 140px;
    width: 140px;
    margin-bottom: 40px;
}

.here_reach {
    margin-bottom: 30px;
}

/* ==================================================
About Us page styling ends here
===================================================*/

/* ==================================================
Contact Us page styling starts here
===================================================*/

.contact_talk {
    margin: 90px 0;
}

.contact_sint {
    margin-bottom: 113px;
}

.grey_madam {
    background: #F4F5F6;
    border-radius: 20px;
    padding: 62px 0;
}

/* ==================================================
Contact Us page styling ends here
===================================================*/

/* up button  */
#myBtn {
    display: none;
    position: fixed;
    bottom: 33px;
    right: 6%;
    z-index: 9999;
    border: none;
    outline: none;
    background: linear-gradient(43.81deg, #FF7F15 25.46%, #FFC014 80.91%);
    cursor: pointer;
    padding: 16px;
    border-radius: 50%;
}

.uparrow_white {
    height: 23px;
    width: 23px;
}

/* ///////// */


/* //// calendar ///// */

.calendar {
    width: 100%;
    /* height: 503px; */
    border-radius: 13px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    -ms-border-radius: 13px;
    -o-border-radius: 13px;
    background-color: #F4F5F6;
}

.month {
    width: 100%;
    height: 105px;
    background-color: #142066;
    display: flex;
    justify-content: center;
    text-align: center;
    border-radius: 12px 13px 0px 0px;
}

.month i {
    font-size: 2.5rem;
    cursor: pointer;
}

.month h1 {
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
}

.month p {
    font-size: 1.6rem;
}

.week5 {
    width: 100%;
    height: 5rem;
    padding: 0 0.4rem;
    display: flex;
    align-items: center;
}

.weekdays {
    border-bottom: 1px solid #CCCEDA;
    padding: 0 10px 10px 10px;
    margin-top: 30px;
}

.weekdays div {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1rem;
    width: calc(44.4rem / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9DA0B2;
}

.days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 17px 10px;
}

.days div {
    font-size: 14px;
    font-weight: 500;
    margin: 12px 2px;
    width: calc(36.4rem / 15);
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    -ms-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
}

.days div:hover:not(.today) {
    border: 0.2rem solid #777;
    cursor: pointer;
    text-decoration: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.prev-date,
.next-date {
    opacity: 0.5;
}

.today {
    background: linear-gradient(43.81deg, #FF7F15 25.46%, #FFC014 80.91%);
    color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.date h1 {
    color: #FF7F15;
    font-size: 22px;
    font-weight: 800;
    margin: 25px 0 10px 0;
}

.date p {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px;
}

.date div img:first-child {
    margin: 12px 25px 0 0;
}

.date div img:last-child {
    margin: 12px 0 0 25px;
}

.choose_slot {
    border: 1px solid #CCCEDA;
    border-radius: 11px;
    background: #ffffff;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}

.choose_slot_active {
    background: linear-gradient(90deg, #1B79BD 0%, #34BCF6 100%);
    color: #ffffff;
}

.time_slot {
    padding: 0 10px 17px 10px;
}

/* ==================================================
Media Query starts from here
===================================================*/

@media(max-width:1199px) {
    .store_images:last-child a img {
        margin-top: 30px;
    }

    .top_account .orange_btn_login {
        font-size: 12px;
    }

    .header-section .navbar-nav .nav-item {
        margin-right: 15px;
    }

    .header-section .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }

    .header-section .navbar-nav .nav-item .active {
        font-size: 16px;
    }
}

@media(max-width:992px) {

    .header-section .navbar .navbar-toggler {
        position: absolute;
        right: 1%;
        top: 12px;
    }

    .header-section .navbar .navbar-toggler:focus {
        box-shadow: none;
    }

    .top_account {
        margin-right: 50px;
    }

    .madam_image {
        margin-left: 0;
    }

    .explore_image {
        margin-right: 0;
    }

    .log_social {
        padding: 30px 30px 0 30px;
    }
}

@media(max-width:768px) {
    .landing_header_dolphin::before {
        display: none;
    }

    .landing_header_dolphin::after {
        display: none;
    }

    .madam_image {
        margin-top: 50px;
    }

    .landing_header {
        padding-bottom: 150px;
    }

    .explore_image {
        margin: 0 0 50px 0px;
    }

    .stay_12 {
        font-size: 12px !important;
    }

    .stay_10 {
        font-size: 10px !important;
    }

    .stay_14 {
        font-size: 14px !important;
    }

    .stay_16 {
        font-size: 16px !important;
    }

    .stay_18 {
        font-size: 18px !important;
    }

    .blue_btn_sign {
        padding: 13px 14px !important;
    }

    .top_account .dropdown .dropdown-menu {
        width: 320px;
    }

    .navs_line {
        min-height: 255px;
        max-height: 255px;
    }

    .navs_spacing {
        margin-left: 35px;
    }

    .profile_heading {
        margin-left: 35px;
    }

    .profile_tab {
        margin-top: 20px;
    }

    .profile_account_content {
        padding: 30px 15px 0 15px !important;
    }

    .profile_account_form {
        padding: 0px 15px !important;
    }

    .p_a_btn{
        margin: 30px 0 0 15px;
    }

    .calendar{
        margin-top: 25px;
    }
}

@media(max-width:575px) {
    .drop_8 {
        font-size: 8px !important;
    }

    .drop_10 {
        font-size: 10px !important;
    }

    .drop_12 {
        font-size: 12px !important;
    }

    .drop_14 {
        font-size: 14px !important;
    }

    .drop_16 {
        font-size: 16px !important;
    }

    .drop_18 {
        font-size: 18px !important;
    }

    .drop_20 {
        font-size: 20px !important;
    }

    .drop_22 {
        font-size: 22px !important;
    }

    .drop_28 {
        font-size: 28px !important;
    }

    .header-section {
        padding: 8px;
    }

    .header-section .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .header-section .navbar-nav .nav-item .active {
        font-size: 14px;
    }

    .blue_btn_sign {
        padding: 10px 20px !important;
    }

    .orange_btn_login {
        padding: 7.5px 18.5px;
        font-size: 12px;
    }

    .orange_btn {
        padding: 8px 18px;
    }

    .skyblue_btn {
        padding: 8px 18px;
    }

    .how_do p:first-child {
        margin-bottom: 0;
    }

    .blue_btn {
        padding: 12.5px 18.5px;
    }

    .blue_btn_login {
        padding: 12.5px 18.5px;
    }

    .teach_here {
        height: 250px;
    }

    .teach_here img {
        height: 50px;
        width: 50px;
    }

    .teach_here p {
        margin: 0;
    }

    .main_struggle {
        margin-top: 100px;
    }

    .you_h2 {
        margin: 15px 0 10px 0;
    }

    .struggle_card {
        height: 175px;
    }

    .struggle_card img {
        height: 50px;
        width: 50px;
    }

    .choose_leap h2 {
        margin: 16px 0;
    }

    .store_text h2 {
        margin: 15px 0;
    }

    .subscribe_input .input-group {
        height: 60px;
    }

    .subscribe_input .input-group .form-control {
        font-size: 14px;
    }

    .subscribe_input .input-group .input-group-text a {
        font-size: 14px;
    }

    .ma_signup {
        padding: 50px 15px 55px 15px;
    }

    .days div {
        font-size: 12px;
    }

    .agent_pagination .page-link {
        height: 30px;
        width: 30px;
        font-size: 12px;
    }

    .navbar-toggler-icon img {
        height: 20px;
        width: 20px;
    }

    .navbar-brand img {
        width: 100px;
    }

    .login_social a img {
        height: 25px;
        width: 25px;
    }

    .social_icon a img {
        height: 25px;
        width: 25px;
    }

    .fi_mentor {
        margin-top: 17px;
    }

    .landing_header::after {
        display: none;
    }

    .main_home_header {
        height: 550px;
    }

    .how_do h2 {
        font-size: 20px;
    }

    .how_do p:first-child {
        font-size: 16px;
    }

    .join_do {
        margin-bottom: 22px;
    }

    .profile_notification_icon {
        height: 30px;
        width: 30px;
    }

    .profile_notification_icon img {
        height: 15px;
        width: 30px;
    }

    .profile_notification_number {
        height: 17px;
        min-width: 17px;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .more_details_header_confirmed {
        height: 355px;
    }

    .account_tab .nav-pills .nav-link {
        font-size: 14px;
    }

    .profile_account_heading {
        padding: 0 20px;
    }

    .profile_account_del {
        display: block !important;
    }

    .profile_account_del p {
        margin-bottom: 20px !important;
    }

    .nyu_logo {
        height: 43px;
        width: 43px;
    }

    .career_select {
        display: block;
        min-height: 90px;
    }

    .visa_master_logo {
        height: 40px;
        width: 40px;
    }

    .reminder_dashboard {
        height: 85px;
        margin-bottom: 15px;
    }

    .reminder_dashboard_blue {
        height: 85px;
        margin-bottom: 15px;
    }

    .home_newsletter {
        margin-top: 100px;
    }

    .gina_l_margin{
        margin: 20px 0;
    }

    .form-check-input:checked {
        height: 16px;
        width: 16px;
    }

    .days_white div{
        font-size: 12px !important;
    }
}

@media(max-width:480px) {
    .have_sign {
        display: block !important;
        text-align: center;
    }

    .have_sign_margin {
        margin-top: 10px;
    }

    .top_account .dropdown .btn {
        padding-left: 0;
    }

    .top_account .orange_btn_login {
        font-size: 10px;
    }

    .header-section .navbar .navbar-toggler {
        padding-left: 0;
    }


}

@media(max-width:375px) {
    .top_account {
        margin-right: 39px;
    }

    .navbar-brand img {
        width: 80px;
    }

    .navbar-toggler-icon img {
        height: 15px;
        width: 15px;
    }

    .orange_btn_login {
        padding: 6.5px 13.5px;
        font-size: 12px;
    }

    .profile_notification_icon {
        height: 27px;
        width: 27px;
    }

    .profile_notification_number {
        height: 15px;
        min-width: 15px;
    }

    .profile_notification_number span {
        font-size: 8px !important;
    }

    .profile_notification_number {
        right: 17%; 
        top: 5%;
    }
}

/* ==================================================
Media Query ends here
===================================================*/

/* ************************************************************************************************************************
MENTEE STYLING ENDS HERE
************************************************************************************************************************ */