/*  import google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

button:focus {
    outline: none !important;
}


/* custom scroll bar */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.form-control:focus {
    box-shadow: none; 
}

.translated-study{
    text-align:justify;
}
/* all similar content styling codes */
section {
    padding: 80px 0;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.about,
.services,
.skills,
.teams,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section .title, .about_title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

section .title::before, .about_title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #dc3545;
    background-color: #fff;
    padding: 0 5px;
    transform: translateX(-50%);
}

section .about_title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #dc3545;
    background-color: #F3F8FB;
    padding: 0 5px;
    transform: translateX(-50%);
}

/* navbar styling */

.navbar_dotbuilder {
    position: fixed;
    width: 100%;
    z-index: 99999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.navbar_dotbuilder.sticky {
    padding: 15px 0;
    background: #373166;
}

.navbar_dotbuilder .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_dotbuilder .max-width .menu {
    margin: 0;
}

.navbar_dotbuilder .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    text-decoration: none;
}

.navbar_dotbuilder .logo a span {
    color: crimson;
    transition: all 0.3s ease;
}

.navbar_dotbuilder.sticky .logo a span {
    color: #fff;
}

.navbar_dotbuilder .menu li {
    list-style: none;
    display: inline-block;
}

.navbar_dotbuilder .menu li a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar_dotbuilder .menu li a:hover {
    color: crimson;
}

.navnavbar_dotbuilderbar.sticky .menu li a:hover {
    color: #fff;
}


/* menu btn styling */

.menu-btn {
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: crimson;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    /* border-radius: 6px; */
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    filter: brightness(90%);
}


/* home section styling */

.home {
    position: relative;
    display: flex;
    height: 100vh;
    color: #fff;
    min-height: 300px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
    background: linear-gradient(107.07deg, rgb(41 6 104) -6.64%, rgb(58 33 94) 89.11%) center bottom no-repeat;
    /* background: linear-gradient(107.07deg, var(--blue-lotus) -6.64%, var(--violet-blue) 89.11%); */
    background-position: bottom;
    background-repeat: no-repeat;
    font-family: 'Ubuntu', sans-serif;
}

.home .max-width {
    width: 100%;
    display: flex;
}

.home .max-width .row {
    margin-right: 0;
}

.home-content {
    width: 60%;
    margin: auto;
}

.home-content_right {
    width: 40%;
}

.home .home-content .text-1 {
    font-size: 27px;
}

.home .home-content .text-2 {
    font-size: 64px;
    font-weight: 600;
    margin-left: -3px;
}

.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 0;
}

.home .home-content .text-3 span {
    color: crimson;
    font-weight: 500;
}


/* notice section styling */

.notice {
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
}

.notice .notice-wrapper {
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.2);
    border-radius: 20px;
    background-color: #fff !important;
}

.notice-title {
    position: relative;
    font-size: 40px;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
}


/* couese section styling */

.course_content_left {
    padding-left: 0px;
}

.course_content_right {
    padding-right: 0px;
}

.Course .title::after {
    content: "Course is here";
}

.banner-title-container--without-subtitle {
    margin-bottom: 0.5rem;
}

.banner-title {
    font-weight: 700;
    font-size: 34px;
    line-height: 30px;
    /* margin-bottom: 24px; */
}

.rating_section {
    height: 30px;
    display: flex;
    align-items: center;
    padding-bottom: 11px;
}

.XDPRating {
    margin: 0;
    -webkit-box-align: center;
    align-items: center;
    display: flex;
}

.rc-RatingLink {
    display: inline-block;
}

.ratingLink_Ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0;
}

.rc-NavItem {
    display: inline-block;
}

.rc-RatingLink a {
    color: #888;
    text-decoration: none;
}

._1qfi0x77 {
    display: inline-flex;
}

.rating-text {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: bold;
    font-family: OpenSans-Bold, OpenSans, Arial, sans-serif;
}

._wmgtrl9 {
    margin-right: 10px;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: normal;
    font-family: OpenSans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.course_price {
    font-weight: 600;
    font-size: 24px;
}

.carousel-inner {
    height: 262px;
}

.carousel-item {
    height: 100% !important;
}

.ourCourses .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.ourCourses .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

.ourCourses .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

.ourCourses .title::after {
    content: "Course is here";
}

/* our Other-course-container */

.Other-course-container {
    background: url(../images/plan_bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.Other-course_bax {
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.2);
    background-color: #fff;
}

.Other-course_bax figure {
    margin: 0;
}

.Other-course_bax figure img {
    width: 100%;
    border: #fff solid 25px;
}

.read_more {
    font-size: 17px;
    background-color: #413c31;
    color: #fff;
    padding: 6px 0px;
    width: 100%;
    max-width: 157px;
    text-align: center;
    display: inline-block;
    transition: ease-in all 0.5s;
    font-weight: 500;
    border-radius: 5px;
    height: 43px;
}

.read_more:hover {
    background: #e6615a;
    color: #fff;
    transition: ease-in all 0.5s;
}

.elementor-section {
    position: relative;
}

.elementor-widget-container {
    background-color: #FFFFFF;
    position: relative;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    min-height: 1px;
}

.contact-elementor-column, .elementor-column-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px
}

.elementor-column-wrap {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rs-contact-box {
    position: relative;
    width: 100%;
}

.rs-contact-box .address-item .address-icon {
    display: inline-block;
    position: relative;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 100%;
    text-align: center;
    margin: 0 0 10px;
}

.rs-contact-box .address-item .address-text span.label {
    color: #101010 !important;
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0px 5px 0px;
}

.rs-contact-box .address-item .address-text a {
    color: #171F32 !important;
}

.rs-contact-box .address-item {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 30px;
}

.rs-contact-box .address-item:last-child {
    margin-bottom: 0 !important;
}

.rs-contact-box .address-item.vertical {
    display: block;
    text-align: center;
}

.course-comparison-meta-items > :not(:last-child)::after {
    content: '\25CF';
    margin: 0 .4rem;
    font-size: 6px;
}

.featuredCourses_title {
    display: block !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    color: #212529 !important;
}

.OurCourses_price {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 5px 0px;
    font-weight: 600;
    color: #fff;
    background-color: #dc3545;
    width: 80px;
    text-align: center;
}

.ourCourses-hedTitle {
    font-size: 34px;
}

/* 3 */

.custom-btn {
    color: #fff;
    padding: 10px 25px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
    outline: none;
}

.custom-btn:hover {
    color: #dc3545;
}

.btn-3 {
    background: #dc3545;
    /*width: 130px;*/
    height: 40px;
    line-height: 40px;
    padding: 0;
    border: none;
}

.btn-3 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.btn-3 span a {
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
}

.btn-3:before,
.btn-3:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: #dc3545;
    transition: all 0.5s ease;
}

.btn-3:before {
    height: 0%;
    width: 2px;
}

.btn-3:after {
    width: 0%;
    height: 2px;
}

.btn-3:hover {
    background: transparent;
    box-shadow: none;
}

.btn-3:hover:before {
    height: 100%;
}

.btn-3:hover:after {
    width: 100%;
}

.btn-3 span a:hover {
    color: #dc3545;
}

.btn-3 span:before,
.btn-3 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: #dc3545;
    transition: all 0.5s ease;
}

.btn-3 span:before {
    width: 2px;
    height: 0%;
}

.btn-3 span:after {
    width: 0%;
    height: 2px;
}

.btn-3 span:hover:before {
    height: 100%;
}

.btn-3 span:hover:after {
    width: 100%;
}


.btn-view-more {
    background: #373166;
    /*width: 130px;*/
    height: 40px;
    line-height: 40px;
    padding: 0;
    border: none;
    /*border-radius: 10px;*/
}

.btn-view-more span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.btn-view-more span a {
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
}

.btn-view-more:before,
.btn-view-more:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: #dc3545;
    transition: all 0.5s ease;
}

.btn-view-more:before {
    height: 0%;
    width: 2px;
}

.btn-view-more:after {
    width: 0%;
    height: 2px;
}

.btn-view-more:hover {
    background: transparent;
    box-shadow: none;
}

.btn-view-more:hover:before {
    height: 100%;
}

.btn-view-more:hover:after {
    width: 100%;
}

.btn-view-more span a:hover {
    color: #dc3545;
}

.btn-view-more span:before,
.btn-view-more span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: #dc3545;
    transition: all 0.5s ease;
}

.btn-view-more span:before {
    width: 2px;
    height: 0%;
}

.btn-view-more span:after {
    width: 0%;
    height: 2px;
}

.btn-view-more span:hover:before {
    height: 100%;
}

.btn-view-more span:hover:after {
    width: 100%;
}


/* about section styling */

.about .title::after {
    content: "24/7 access";
}

.about .about-content .left {
    width: 50%;
}

.about .about-content .left img {
    /*height: 400px;
    width: 400px;*/
    height: 350px;
    width: 530px;
    object-fit: cover;
    border-radius: 6px;
}

.about .about-content .right {
    width: 50%;
    /*padding-left: 30px;*/
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right .text span {
    color: crimson;
}

.about .about-content .right p {
    text-align: justify;
}

.about .about-content .right a {
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease;
}

.about .about-content .right a:hover {
    color: crimson;
    background: none;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none !important;
    border-radius: 50%;
    border: 2px solid crimson !important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
    background: crimson !important;
}


/* contact section styling */

.contact .title::after {
    content: "get in touch";
}

.contact .contact-content .column {
    width: calc(50% - 20px);
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p {
    text-align: justify;
}

.contact .contact-content .left .icons {
    margin: 10px 0;
}

.contact .contact-content .row {
    display: flex;
    height: 65px;
    align-items: center;
    margin: 0;
}

.contact .contact-content .row .info {
    margin-left: 30px;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: #373166;
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title {
    color: #333;
}

.contact .right form .fields {
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea {
    height: 80px;
    width: 100%;
}

.contact .right form .name {
    margin-right: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    /* border-radius: 6px; */
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
    border-color: #b3b3b3;
}

.contact .right form .textarea textarea {
    padding-top: 10px;
    resize: none;
}

.contact .right form .button-area {
    display: flex;
    align-items: center;
}


/* footer section styling */

footer {
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}

footer span a {
    /* color: #373166; */
    text-decoration: none !important;
}

footer span a:hover {
    text-decoration: underline;
}

.footer {
    /*background: linear-gradient(105deg,#6e99e6,#093c94);*/
    background: #373166;
    padding-top: 80px;
    padding-bottom: 40px;
}
/*END FOOTER SOCIAL DESIGN*/
.single_footer {
}

@media only screen and (max-width:768px) {
    .single_footer {
        margin-bottom: 30px;
    }
}

.single_footer h4 {
    color: #fff !important;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

.single_footer h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background: #fff;
    margin-top: 20px;
}

.single_footer p {
    color: #fff;
}

.single_footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single_footer ul li {
}

.single_footer ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 15px;
    text-transform: capitalize;
}

.single_footer ul li a:hover {
    color: #ff3666;
}

.single_footer_address {
}

.single_footer_address ul {
}

.single_footer_address ul li {
    color: #fff;
}

.single_footer_address ul li span {
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.contact_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.footer-logo a {
    color: #fff;
    font-size: 35px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
}

.footer-logo a:hover {
    color: #fff;
}

.footer-logo a span {
    color: crimson;
    transition: all 0.3s ease;
}

.social_profile {
    margin-top: 40px;
}

.social_profile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.social_profile ul li {
    float: left;
}

.social_profile ul li a {
    text-align: center;
    border: 0px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 0px 5px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    border: 1px solid rgba(255,255,255,0.2);
}

@media only screen and (max-width:768px) {
    .social_profile ul li a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:480px) {
    .social_profile ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .address-text {
        height: auto;
        padding: 20px;
    }

    .studyTopics-elementor-section {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-gap: 0.5rem !important;
        padding: 0;
    }
}

.social_profile ul li a:hover {
    background: #dc3545;
    border: 1px solid #ff3666;
    color: #fff;
    border: 0px;
}
/*END SOCIAL PROFILE CSS*/
.copyright {
    margin-top: 70px;
    padding-top: 40px;
    color: #fff;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.4);
    text-align: center;
}

.copyright a {
    color: #01c7e9;
    transition: all 0.2s ease 0s;
}

.copyright a:hover {
    color: #ff3666;
}

/*Erro Handling code*/

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }
    .Dasboard_Card_info h2, .Dasboard_button_section h2 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
    }

    .navbar_dotbuilder .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar_dotbuilder .menu.active {
        left: 0;
    }

    .navbar_dotbuilder .menu li {
        display: block;
    }

    .navbar_dotbuilder .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .home .home-content .text-2 {
        font-size: 70px;
    }

    .home .home-content .text-3 {
        font-size: 35px;
    }
    /*.home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }*/
    .max-width {
        max-width: 930px;
    }

    .about .about-content .column {
        width: 100%;
    }

    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .about .about-content .right {
        flex: 100%;
    }

    .services .serv-content .card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .skills .skills-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }

    .course_content_right {
        padding-top: 20px;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }

    .home .home-content .text-2 {
        font-size: 60px;
    }

    .home .home-content .text-3 {
        font-size: 32px;
    }
    /*.home .home-content a {
        font-size: 20px;
    }*/
    .services .serv-content .card {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2 {
        font-size: 50px;
    }

    .home .home-content .text-3 {
        font-size: 27px;
    }

    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 19px;
    }

    .home-content {
        width: 100%;
    }

    .home-content_right {
        display: none;
    }

    .hide-for-mobile {
        display: none;
    }

    .contact .right form .fields {
        flex-direction: column;
    }

    .contact .right form .name,
    .contact .right form .email {
        margin: 0;
    }

    .right form .error-box {
        width: 150px;
    }

    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }

    .carousel-inner {
        height: 200px;
    }

    section {
        padding: 50px 0;
    }

    section .title, .top_title h1 {
        font-size: 28px;
    }

    .icons span {
        width: 10% !important;
    }

    .navbar_dotbuilder {
        padding: 20px 0;
    }

    .phv-contact .phv-contact-content {
        display: block;
    }

    .phv-contact .phv-contact-content .column {
         width: calc(100% - 20px); 
    }
}
