@font-face {
    font-family: "SofiaProUltraLight";
    src: url("../fonts/SofiaProUltraLight.ttf");
}

@font-face {
    font-family: "SofiaProExtraLight";
    src: url("../fonts/SofiaProExtraLight.ttf");
}

@font-face {
    font-family: "SofiaPro";
    src: url("../fonts/SofiaProRegular.ttf");
}

@font-face {
    font-family: "SofiaProMedium";
    src: url("../fonts/SofiaProMedium.ttf");
}

@font-face {
    font-family: "SofiaProSemiBold";
    src: url("../fonts/SofiaProSemiBold.ttf");
}

@font-face {
    font-family: "SofiaProBold";
    src: url("../fonts/SofiaProBold.ttf");
}

@font-face {
    font-family: "SofiaProBlack";
    src: url("../fonts/SofiaProBlack.ttf");
}

html {
    font-family: "SofiaPro";
}

:root {
    --theme-clr: #007CFF;
    --theme-clr-transparent: #007CFF80;
    --theme-clr2: #4C9701;
    --theme-clr2-transparent: #4C970180;
}

html {
    scroll-behavior: smooth;
    scroll-padding: 114px;
}

svg {
    fill: var(--theme-clr);
}

.text-justify {
    text-align: justify;
}

.logo img {
    height: 80px;
}
.mh-unset{
    max-height: unset !important;
}
.btn-primary {
    background-color: var(--theme-clr);
    border-color: var(--theme-clr);
    font-family: 'SofiaProBold';
}

.btn-primary:hover {
    background-color: var(--theme-clr2) !important;
    border-color: var(--theme-clr2);
}

.text-primary {
    color: var(--theme-clr);
}

.banner {
    position: relative;
    padding-top: 7rem;
}

.top_navbar {
    width: 100%;
    background-color: var(--theme-clr);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.nav_heading h1{
    font-size: 38px;
    line-height: 58px;
}
.nav_heading h3{
    font-size: 28px;
    line-height: 24px;
}
.top_navbar .nav_links {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.top_navbar .nav_links .active a {
    opacity: 1;
}
.top_navbar .nav_links a:hover {
    opacity: 1;
}

.top_navbar .nav_links li {
    padding-left: 15px;
    padding-right: 30px;
    border-right: 2px solid #aaa;
    display: inline-block;
}

.top_navbar .nav_links li:last-child {
    border: none;
}

.top_navbar .nav_links li a {
    color: #fff;
    font-size: 14.5px;
    font-weight: 500;
    font-family: "SofiaProSemiBold";
    opacity: 0.8;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.5s ease;
}

.get_links {
    color: #fff;
    font-weight: bold;
    text-align: right;
    display: flex;
    justify-content: end;
    align-items: center;
}

.social_items {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--theme-clr1);
}

.social_items:hover {
    background: var(--theme-clr2-transparent);
}

.middle_navbar {
    width: 100%;
    height: 110px;
    overflow: hidden;
    transition: all 2s ease;
}

.active .middle_navbar {
    height: 0;
}

.bottom_navbar {
    width: 100%;
    margin-top: 25px;
}

.bottom_nav {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 10px 40px;
}

.active .bottom_nav {
    background: #fff;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.bottom_nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.bottom_nav a {
    text-decoration: none;
    color: #000;
    font-family: "SofiaProBold";
    padding: 20px;
    display: block;
    border-radius: 5px;
}

.bottom_nav a.active {
    background-color: #DCEDFE;
}

.bottom_nav a:hover {
    background-color: #DCEDFE;
}

.banner-slide {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
}

.banner-content {
    padding-top: 10rem;
    padding-bottom: 2rem;
}

img.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.bottom-slide-btn {
    position: sticky;
    top: 100%;
    left: 50%;
    width: 20px;
    height: 0;
    z-index: 5;
    transform: translate(-50%, -50%);
}

.bottom-slide-btn i {
    position: absolute;
    top: -80px;
    width: 40px;
    height: 40px;
    background-color: var(--theme-clr);
    border: 1px solid #000;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scroll_bottom 6s infinite;
    transition: all 1s linear;
}

.bottom-slide-btn i:hover {
    background-color: var(--theme-clr-transparent);
}

.sidebar {
    position: sticky;
    top: 100%;
    left: 75%;
    width: 20px;
    height: 0;
    z-index: 5;
    transform: translate(-50%, -50%);
}

.sidebar .scroll_bar {
    position: absolute;
    top: -80vh;
    width: 270px;
    padding-right: 10px;
    height: 59vh;
    color: #fff;
    overflow-y: scroll;
}

.sidebar .scroll_bar button {
    width: 100%;
    font-family: 'SofiaProMedium';
    padding: 15px 30px;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 4px 4px rgba(0, 0, 0, 0.25);
}

::selection {
    color: #fff;
    background-color: var(--theme-clr2);
}

.scroll_bar::-webkit-scrollbar {
    width: 10px;
}

.scroll_bar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

.scroll_bar::-webkit-scrollbar-thumb {
    background: var(--theme-clr);
    border-radius: 10px;
    transition: all 0.5s ease;
}

.scroll_bar::-webkit-scrollbar-thumb:hover {
    background: #0954c1;
}

.update_box {
    display: flex;
    align-items: center;
    border: 1px solid var(--theme-clr);
    box-shadow: 0 8px 15px 0 rgba(163, 208, 255, 0.4);
    border-radius: 8px;
}

.update_box button {
    padding: 15px 20px;
    flex-shrink: 0;
}

.update_box p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about_image {
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.about_image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

.about_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

p {
    color: #484848;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
}

.sub_heading {
    color: #7B9CB9;
    text-transform: uppercase;
    font-family: "SofiaProMedium";
    font-size: 25px;
    line-height: 39px;
}

.heading {
    color: #143450;
    font-size: 40px;
    line-height: 49px;
    font-family: "SofiaProBold";
    margin-bottom: 1rem;
}

.about_container p {
    line-height: 21px;
}

.banner_heaing {
    font-size: 48px;
    line-height: 53px;
    font-family: "SofiaProBold";
    color: var(--theme-clr);
}

.card_design {
    max-width: 350px;
    margin: auto;
    width: 100%;
    width: 100%;
    background: var(--theme-clr);
    box-shadow: 0 5px 10px rgba(102, 10, 15, 0.23);
    border-radius: 10px;
    transition: all 0.5s linear;
}

.card_design:hover {
    background: var(--theme-clr2);
}

.card_design .image {
    width: 100%;
    height: 219px;
    border: 3px solid #fff;
    border-radius: 10px;
    overflow: hidden;
}

.card_design .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_design h4 {
    color: #fff;
    font-size: 16px;
    padding: 20px 10px;
    font-family: "SofiaProSemiBold";
}


.events .nav-tabs .nav-item.show .nav-link,
.events .nav-tabs .nav-link.active,
.events .nav-tabs .nav-link,
.events .nav-tabs .nav-item:focus,
.events .nav-tabs {
    border: none;
    outline: none;
    background: unset;
    color: #000;
}

.events .nav-tabs .nav-item {
    font-family: "SofiaProBold";
    text-align: center;
    border-width: 4px;
    border-style: solid;
    border-color: var(--theme-clr);
    border-bottom-width:0;
    border-right-width: 0;
}

.events .nav-tabs .nav-item:last-child {
    border-right-width: 4px;
}

.events .nav-tabs .nav-link {
    width: 100%;
}

.events .nav-tabs .nav-link.active {
    color: var(--theme-clr);
}

.events .nav-tabs .nav-item:hover .nav-link {
    color: var(--theme-clr-transparent);
}

.events .tab-pane {
    border: 4px solid var(--theme-clr);
    padding: 20px;
}

.series {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-clr);
    color: #fff;
    font-size: 18px;
    margin: 10px auto;
}

.btn-primary:focus {
    background-color: var(--theme-clr2);
    border-color: var(--theme-clr2);
    box-shadow: 0 0 0 0.25rem var(--theme-clr2-transparent) !important;
}

.event_img {
    text-align: center;
}

.event_img img {
    width: 100%;
    border: 6px solid #DCEDFE;
}

.event-details {
    padding: 20px;
    text-align: center;
}

.event-details .heading {
    color: #143450;
    font-size: 26px;
    font-family: "SofiaProBlack";
    margin-bottom: 2rem;
}

.event-details .time {
    color: #484848;
    font-size: 18px;
    font-family: "SofiaProMedium";
    margin-bottom: 0.5rem;
}

.event-details .time svg {
    margin-right: 0.5rem;
}

.event-details .audience {
    color: #484848;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: "SofiaProMedium";
}

.event-details .audience svg {
    margin-right: 0.3rem;
}

.social-links {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px auto;
}

.social-links img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.event-details button {
    padding: 10px 20px;
    border-radius: 10px;
}

.details {
    font-family: "SofiaProMedium";
}

.details svg {
    fill: #716F6F;
}

.details span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.text-medium {
    font-family: "SofiaProMedium";
}
.text-bold{
    font-family: "SofiaProBold";
}

.rotated-heading {
    position: relative;
    font-family: "SofiaProBold";
    font-size: 20px;
    text-wrap: nowrap;
    min-height: 220px;
}

.rotated-heading h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #143450;
    transform: rotate(-90deg);
    transform-origin: 0 0;
}
.sponcered_client{
    text-align: center;
}
.sponcered_client img {
    width: 100px !important;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: auto;
    background-color: #fbfbfb;
    object-fit: contain;
    border: 3px solid #DCEDFE;
}
.sponcered_client p{
    font-size: 14px;
    line-height: normal;
}

.sponcered_client .item :not(img) h6{
    margin-top: 100px;
}

.award {
    min-height: 160px;
}

.award-list {
    background-color: #f7f7f7;
    border: 2px solid #DCEDFE;
    padding: 20px;
    font-family: "SofiaProMedium";
}

.card_design2 {
    background-color: var(--theme-clr);
    border-radius: 0 0 20px 20px;
    margin-top: 80px;
    padding: 80px 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s linear;
}

.card_design2:hover {
    background-color: var(--theme-clr2);
}

.card_design2 .image {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card_design2 .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: auto;
    border: 4px solid #fff;
    object-fit: cover;
}

.card_design2 .heading {
    color: #fff;
    font-size: 22px;
}

.card_design2 p {
    color: #fff;
    font-size: 14px;
}

.card_design2 .social-links {
    margin-bottom: 0;
}

.gallery-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
}

.bg-light-blue {
    background-color: #DCEDFE;
}

.blog_card {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 5px;
    border-radius: 20px;
}

.blog_card .image {
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.blog_card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.blog_card .blog_content {
    padding: 40px 20px;
}

.blog_card .blog_content h2 {
    font-size: 20px;
    font-family: "SofiaProBold";
    color: #000;
}

.blog_logo {
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--theme-clr);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s linear;
    cursor: pointer;
}

.blog_logo:hover {
    background: var(--theme-clr2);
}

.blog_card_wrapper .blog_card_container:last-child {
    margin-bottom: 0;
}

.blog_card_container {
    width: 100%;
    height: 150px;
    background-color: #fff;
    padding: 5px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.blog_card_container .blog_content {
    padding: 20px 20px 20px 0;
}

.blog_card_container .blog_content h4 {
    font-family: "SofiaProBold";
    margin-bottom: 1rem;
}

.blog_card_container .image {
    border-radius: 15px 0 0 15px;
    overflow: hidden;
}

.blog_card_container img {
    width: 100%;
    height: 140px;
    object-position: top;
    object-fit: cover;
}

.footer {
    background: var(--theme-clr);
    border-radius: 50px 50px 0 0;
}

.footer_image {
    position: relative;
    margin-top: 200px;
    top: -140px;
    height: 180px;
}

.footer_image .image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}

.footer_image .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(220, 237, 254, 1) 50%, rgba(220, 237, 254, 1) 100%);
}

.footer_image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.25);
}

.footer_image .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer_content {
    border-bottom: 1px solid #9a9a9a;
}

.footer_content .icon {
    width: 80px;
}

.footer_content h4 {
    color: #fff;
    font-size: 22px;
}

.light-text {
    color: #ccc;
    font-size: 14px;
}

.posts {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #9a9a9a;
}

.post_container .posts:last-child {
    border-bottom: none;
}

.posts .post_image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 15px;
}

.posts .post_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.posts .post_content span {
    color: #ccc;
    font-size: 12px;
    font-family: 'SofiaProMedium';
}

.posts .post_content p {
    color: #fff;
    font-size: 14px;
    font-family: 'SofiaProMedium';
}

.quick_links {
    list-style: none;
}

.quick_links li {
    padding: 5px 0;
}

.quick_links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.social_links {
    margin-top: 5rem;
}

.social_links h5 {
    color: #fff;
}

.social_links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.social_links ul li {
    margin: 10px 15px 10px 0;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social_links ul li a {
    color: var(--theme-clr);
}



.footer_copy_right p {
    padding: 15px 0;
    color: rgba(204, 204, 204, 0.8);
    font-size: 14px;
}

.footer_copy_right a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer_sub_heading {
    font-family: "SofiaProSemiBold";
    color: #484848;
    font-size: 18px;
}


.breadcrumb {
    height: 600px;
    position: relative;
    z-index: 1;
}

.breadcrumb .background_image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.breadcrumb .background_image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.breadcrumb .background_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;

}

.cta {
    background-color: rgba(0, 124, 255, 0.7);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 0;
    font-family: "SofiaProMedium";
    font-size: 18px;
    line-height: 30px;
}

.cta .heading {
    color: #fff;
}

.cta p {
    color: #fff;
}

.mission_slider {
    padding: 60px 80px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.background_clip {
    width: 100%;
    height: 100%;
    background: #DCEDFE;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.background_clip .img1 {
    position: absolute;
    top: -23%;
    right: -15%;
    z-index: 1;
}

.background_clip .img2 {
    position: absolute;
    top: -25%;
    left: -15%;
    z-index: 2;
}

.background_clip .img3 {
    position: absolute;
    bottom: -45%;
    left: -10%;
    z-index: 3;
}

.mission_slider .heading {
    font-size: 35px;
}

.arrow {
    display: inline-flex;
    gap: 20px;
}

.arrow i {
    width: 60px;
    height: 50px;
    border-radius: 6px;
    background: var(--theme-clr);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.arrow i.disabled {
    background: #fff;
    color: var(--theme-clr);
}

.owl-nav {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.card_design3 {
    background-color: #fff;
    padding: 30px 30px;
    border-radius: 20px;
}

.card_design3 h4 {
    font-family: "SofiaProBold";
}

.card_design3 p:last-child {
    margin-bottom: 1.2rem;
}

.list_items {
    font-size: 18px;
    line-height: 30px;
    font-family: "SofiaProMedium";
}

.para {
    font-size: 22px;
    line-height: 34px;
}

.nutrition .image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.nutrition .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nutrition_content {
    width: 100%;
    height: 100%;
    background: var(--theme-clr);
    color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
}

.nutrition_content .heading {
    font-size: 22px;
    line-height: 30px;
    color: #fff;
}

.nutrition_content hr {
    background: #f4f4f4;
    opacity: 1;
}

.nutrition_content ul li {
    font-size: 20px;
    margin-bottom: 1rem;
    font-family: "SofiaPro";
}

.content-heading .heading {
    font-size: 30px;
}

.content-heading .icon_set {
    font-family: "SofiaProMedium";
    list-style: none;
    padding-left: 0;
}

.content-heading .icon_set li {
    margin-bottom: 1rem;
    font-size: 20px;
    padding-left: 2rem;
    position: relative;
}

.content-heading .icon_set li::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 5px;
    width: 12px;
    height: 3.5px;
    background-color: var(--theme-clr);
}

.techniques {
    position: relative;
    color: #fff;
}

.techniques .background_image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.techniques .background_image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0, 124, 255, 0.4);
}

.techniques .background_image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
}

.techniques .background_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.techniques .heading {
    color: #fff;
}

.techniques p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}

.type_num {
    list-style: decimal;
}

.type_num li {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 1rem;
    font-family: "SofiaProMedium";
}

.background_filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(20px);
    overflow: hidden;
}

.background_filter .circle {
    width: 40%;
    top: -15%;
    position: absolute;
    display: block;
    aspect-ratio: 1;
    background: radial-gradient(rgba(0, 124, 255, 0.2), rgba(0, 124, 255, 0));
    border-radius: 50%;
}

.background_filter .circle.left-side {
    left: -20%;
}

.background_filter .circle.right-side {
    right: -20%;
}

.text2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
}

.webinar .accordion-body {
    border: 2px solid #007CFF;
    box-shadow: 0px 10px 20px 0px #660A0F33;
    margin: 20px auto;
    border-radius: 13px;
    padding: 30px 50px;
}

.webinar-text {
    color: #212529;
    font-size: 21px;
    font-weight: 400;
    font-family: 'SofiaProMedium';
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
}

.web-time {
    color: #212529;
    font-size: 21px;
    font-weight: 400;
    font-family: 'SofiaProMedium';
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
}

.webinar .accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: white;
    box-shadow: none;
}

.webinar .accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: white;
    box-shadow: none;
}

.webinar .accordion-button:focus {
    border-color: white;
    box-shadow: none;
}

.webinar .accordion-item {
    background-color: #fff;
    border: none;
}

.webinar .accordion-button {
    border: 2px solid #007CFF !important;
    border-radius: 13px;
}

.webinar .accordion-item:last-of-type .accordion-button.collapsed,
.webinar .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}

.accordion-button::after {
    transform: rotate(-90deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

.personal input {
    border: 1px solid #A4A4A4;
    background: rgba(242, 242, 242, 1);
    padding: 10px 20px;
}


.card_design4{
    width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: 4px solid #007CFF;
}
.card_design4 .title{
    margin-bottom: 0;
    font-family: 'SofiaProBold';
    font-size: 15px;
}

.card_design5{
    padding: 30px 20px;
    border-top: 8px solid #007CFF;
    border-radius: 15px;
    box-shadow: 0 4px 21px rgba(0, 124, 255, 21%);
    overflow: hidden;
}
.card_design5 img{
    margin-bottom: 2rem;
}
.form-heading{
    background-color: #DCEDFE;
    padding: 10px 20px;
    border: 1px solid #7ABCFF;
}
.form-check-input:checked{
    background-color: #143450;
    border: 1px solid #143450;
}
input[type="radio"]{
    accent-color: #143450;
    transform: scale(1.3);
    margin: auto 10px;
}

.card_design6{
    max-width: 350px;
    margin: auto;
    width: 100%;
    aspect-ratio: 37/43;
    position: relative;
    margin-bottom: 80px;
}
.card_design6 img.background_image{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    z-index: 1;
}

.card-content-box{
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(57,108,191,0.16);
    z-index: 2;
}
.card-content-box .list-item{
    padding: 5px 0;
}
.card-content-box .items{
    margin-right: 1rem;
}

.card-content-box .items span{
    color: #696969;
    font-size: 13px;
}

.blog-link{
    text-decoration: none;
}
.blog-link span{
    color: #007CFF;
    padding-bottom: 2px;
    border-bottom: 1px solid #007CFF;
}
.blog-link img{
    height: 10px;
    margin-left: 5px;
}

.right-side-shadow{
    box-shadow: 0 3px 36px rgba(42, 50, 168, 7.1%);
}

#header {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    transition: all 0.5s;
    padding: 0 15px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#header .profile h1 {
    font-size: 18px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    -moz-text-align-last: center;
    text-align-last: center;
    font-family: "Poppins", sans-serif;
}
#header .profile img {
    margin: 15px auto;
    display: block;
    width: 120px;
    border: 8px solid #2c2f3f;
}
.mobile-toggler.active{
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #007CFF;
    color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.mobile-links{
    list-style: none;
    height: 350px;
    overflow-y: scroll;
    padding: 0;
    margin: auto;
}
.mobile-links li{
    margin: 10px;
}
.mobile-links li a{
    border-radius: 10px;
}
.mobile-links{
    list-style: none;
    height: 350px;
    overflow-y: scroll;
    padding: 0;
    margin: auto;
}
.mobile-links li{
    margin: 10px;
}
.mobile-links li a{
    border-radius: 10px;
    padding: 10px 20px;
    background: #007CFF;
    color: #fff;
    text-decoration: none;
    display: block;
}
.mobile-links li a:hover{
    background-color: #DCEDFE;
}



.flip_card{
    width: 100%;
    max-width: 350px;
    min-height: 250px;
    margin:auto;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.flip_card .flip_front .image{
    height: 180px;
    aspect-ratio:1;
    margin:auto;
    border-radius: 60% 40% 44% 56% / 46% 30% 70% 54%;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
    margin-bottom: 1rem;
    overflow: hidden;
}
.flip_card .flip_front .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flip_front{
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    transform: rotate(0deg);
    transition: 0.5s;
    transition-delay: 0.5s;
}
.flip_card:hover .flip_front{
    transform: rotateY(-90deg);
    transition-delay: 0s;
}
.flip_front h3{
    margin-bottom: 0.5rem;
}
.flip_back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #DCEDFE;
    text-align: center;
    z-index: -1;
    transform: rotateY(-90deg);
    border-radius: 20px;
    transition: 0.5s;
}
.flip_card:hover .flip_back{
    transform: rotateY(0deg);
    z-index: 1;
    transition-delay: 0.5s;
}
.flip_back .image{
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}
.flip_back .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.first_res {
    display: none;
}
img.mb-2 {
    width: 64px;
    height: 64px;
}
.dt-layout-row {
        display: block !important;
    color: blue;
}
.uni_error {
    color:red;
}

