/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}







/************** My Style Sheet Start *******************/
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0040aa;
}
.header-navbar-inner .navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .nav-link.active {
    color: #fff !important;
}
.header-navbar-inner .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:hover {
    color: #fff !important;
}
.form-services-sec .col-lg-3.col-md-6.col-sm-3.col-xs-12 {
    float: left;
}
.form-services-sec {
    width: 100%;
    display: inline-block;
    padding: 20px 20px;
    background-color: #ffffffad;
    border-radius: 4px;
}
.support-section-inr {
    width: 100%;
    text-align: center;
}
.support-section-inr img {
    max-width: 80px;
    height: 65px;
    padding: 5px;
}
.support-section-inr p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}

.navbars-menu-section {
    background: url(../img/banner-background.jpg) top center no-repeat;
    background-position: 100% 10%;
    width: 100%;
    height: 930px;
    background-repeat: no-repeat;
    background-size: cover;
}
.header-navbar {
    width: 100%;
    padding: 20px 0px 20px 0px;
    background-color: #2a5eb4d6;
}
.nav-sectn-btn {
    float: right;
    margin: 0px 30px 0px 0px;
}
.nav-sectn-btn a.button-navbar-right {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 8px 28px;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 15px;
    transition: transform .2s;
    color: #fff;
    font-weight: 500;
    margin-left: 10px;
}
.nav-sectn-btn input {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 4px 20px;
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 15px;
    transition: transform .2s;
    color: #fff;
    font-weight: 500;
    margin-left: 10px;
}



.cms-banner {
    width: 100%;
    padding: 5% 0px 0px 0px;
}
.cms-banner .__form-container {
    background-color: #ffffffad;
    padding: 30px 40px;
    border: 0px solid #e4e4e4;
    margin: 20px 0;
    border-radius: 4px;
}
.cms-banner .__form-container h3 {
    text-transform: capitalize;
    padding: 0;
    font-weight: 400;
    color: #000;
    font-size: 16px;
    text-align: center;
    margin: 0;
}
.cms-banner .__form-container h2 {
    text-transform: capitalize;
    padding: 0;
    font-weight: 400;
    color: #dd6e02;
    font-size: 32px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 22px;
    margin-top: 5px;
}
.cms-banner .__form-container p {
    text-transform: capitalize;
    padding: 0;
    color: #000;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 26px;
    margin-top: 5px;
}
.cms-banner .__form-container .__input-container {
    display: block;
    padding: 5px 0;
}
.cms-banner .__form-container .__input-container label {
    width: 100%;
    align-items: start;
    margin: 5px 0 0;
    font-size: 14px;
    color: #2c2c2c;
    font-weight: 500;
}
.cms-banner .__form-container .__input-container input {
    width: 100%;
    align-items: end;
    padding: 5px 8px;
    border: 2px solid #c7c7c7;
    font-size: 14px;
    outline: none;
    height: 34px;
    border-radius: 0px;
    background-color: transparent;
}
select#product_length {
    width: 100%;
    align-items: end;
    padding: 5px 8px;
    border: 2px solid #c7c7c7;
    font-size: 14px;
    outline: none;
    height: 34px;
    border-radius: 0px;
    background-color: transparent;
}
.d-flex {
    display: flex!important;
}
.cms-banner .__form-container .__deadline-input-container .Field_wrapper {
    width: 100%;
    z-index: 6;
}
.date-picker-x-container {
    position: relative;
}
.cms-banner .__form-container .__deadline-input-container label {
    width: 100%;
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
}
.cms-banner .__form-container .__deadline-input-container input {
    width: 100%;
    padding: 5px 8px;
    border: 2px solid #c7c7c7;
    font-size: 14px;
    outline: none;
    border-radius: 0;
    height: 34px;
    border-radius: 0px;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: transparent;
}
.cms-banner .__form-container .__deadline-input-container .select_box {
    width: 50%;
}
.cms-banner .__form-container .__deadline-input-container select {
    width: 100%;
    padding: 6px 8px;
    margin-left: 0;
    border: 2px solid #c7c7c7;
    border-left: 0;
    background: transparent;
    font-size: 14px;
    height: 34px;
    outline: none;
    border-radius: 0px!important;
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important;
}
.cms-banner .__form-container .__page-count-container {
    display: block;
    padding: 5px 0;
}
.cms-banner .__form-container .__page-count-container label {
    width: 100%;
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
}
.cms-banner .__form-container .__page-count-container .__page-count-input {
    position: relative;
    width: 131px;
}
.cms-banner .__form-container .__page-count-container .__page-count-input .__page-btn {
    display: inline-block;
    padding: 3px 11px;
    text-align: center;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: absolute;
    height: 33px;
    color: #fff;
    background: #909090;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.cms-banner .__form-container .__page-count-container .__page-count-input .__page-btn img {
    width: 13px;
    display: table;
    vertical-align: middle;
}
.cms-banner .__form-container .__page-count-container .__page-count-input input {
    width: 91px;
    padding: 5px 8px;
    text-align: center;
    display: block;
    margin: 0 auto;
    font-size: 14px;
    border: 2px solid #c7c7c7;
    outline: none;
    height: 33px;
    border-radius: 3px;
}
.cms-banner .__form-container .__page-count-container small {
    padding: 5px 0;
    margin-left: 5px;
}
small {
    font-size: 80%;
}
.cms-banner .__form-container .textareaOuter {
    display: block;
    padding: 6px 8px;
    font-size: 14px;
    border: 2px solid #ccc;
    width: 100%;
    outline: none;
    border-radius: 0px;
}
.cms-banner .__form-container .textareaOuter textarea {
    font-size: 14px;
    border: 0;
    min-height: 70px;
    width: 100%;
    resize: none;
    background-color: transparent;
    outline: none;
}
textarea {
    overflow: auto;
    resize: vertical;
}
.cms-banner .__form-container .textareaOuter .file-select {
    position: relative;
}
.cms-banner .__form-container .textareaOuter .addFile {
    border: 0;
    padding: 0 0 0 20px;
    white-space: nowrap;
    background-color: transparent;
    font-size: 12px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1;
    background-image: url(https://cdn1.myassignmenthelp.com/lazyload-assets/online-exam/attachment-clip.svg);
    background-repeat: no-repeat;
    background-position: 0 1px;
}
.cms-banner .__form-container .textareaOuter input[type=file] {
    z-index: 1;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 5px;
    opacity: 0;
    max-height: 20px;
    max-width: 85px;
    min-height: 1px;
    font-size: 0;
    padding: 0;
}
.cms-banner .__form-container .textareaOuter .demo-files2 {
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-flow: row wrap;
}





.cms-banner .__form-container .textareaOuter .addFile {
    border: 0;
    padding: 0 0 0 20px;
    white-space: nowrap;
    background-color: transparent;
    font-size: 12px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1;
    background-image: url(https://cdn1.myassignmenthelp.com/lazyload-assets/online-exam/attachment-clip.svg);
    background-repeat: no-repeat;
    background-position: 0 1px;
}
.date-picker-x {
    background: #fdfdfd;
    box-sizing: content-box;
    color: #444;
    display: none;
    font: 13px/1 Arial;
    padding: 10px;
    position: absolute;
    top: calc(100% - 10px);
    border: 1px solid #ccc;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 260px;
    z-index: 9;
}





.cms-banner .__form-container .__page-count-container .__page-count-input .\--plus-button {
    right: 0;
    position: absolute;
    padding: 6px 11px;
    border: none;
    cursor: pointer;
    top: 0;
    font-size: 15px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.cms-banner .__form-container .__page-count-container .__page-count-input .__page-btn {
    display: inline-block;
    padding: 3px 11px;
    text-align: center;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: absolute;
    height: 33px;
    color: #fff;
    background: #909090;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.cms-banner .__form-container .__submit-button {
    background-color: #0040aa;
    color: #fff;
    border: none;
    box-shadow: 2px 2px 2px #9a9a9a;
    cursor: pointer;
    transition: all .2s ease-in-out;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    text-transform: capitalize;
    display: block;
    margin: 20px auto 0;
    border-radius: 0px;
    padding: 7px 10px;
    width: 220px;
}


.our-services {
    width: 100%;
    margin: 60px 0px 40px;
}
.find-the-cost-easy-order-now {
    width: 100%;
    margin-top: 12px;
    text-align: center;
}
.find-the-cost-easy-order-now h1 {
    background-color: #0040aa;
    border: 1px solid #0040aa;
    padding: 8px 50px;
    text-transform: capitalize;
    font-size: 28px;
    border-radius: 0px;
    transition: transform .2s;
    color: #fff;
    font-weight: 500;
    box-shadow: 2px 1px 10px 3px rgb(0 0 0 / 19%);
    font-family: 'montserrat-regular', sans-serif;
    width: 265px;
    margin: 0px auto;
}
.find-the-cost-easy-order-now input {
    background-color: #0040aa;
    border: 1px solid #0040aa;
    padding: 4px 50px;
    text-transform: capitalize;
    font-size: 28px;
    border-radius: 0px;
    transition: transform .2s;
    color: #fff;
    font-weight: 500;
    box-shadow: 2px 1px 10px 3px rgb(0 0 0 / 19%);
    font-family: 'montserrat-regular', sans-serif;
}
.our-services-txt {
    width: 100%;
    margin: 25px 0px 0px;
    text-align: center;
}
.our-services-txt p {
    font-size: 20px;
    margin-bottom: 100px;
    color: #000;
    font-family: 'montserrat-regular', sans-serif;
}
.our-services-innr {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    border: 2px solid #0040aa;
    padding: 50px 15px 20px;
    border-radius: 0px;
} 

.our-services-innr img {
    max-width: 100px;
    height: 105px;
    position: absolute;
    top: -20px;
}
.our-services-innr p.service-writing-head {
    color: #0040aa;
    font-size: 26px;
    font-weight: 600;
    line-height: 35px;
    margin: 40px 0px;
    margin-bottom: 5px;
    font-family: 'montserrat-semibold', sans-serif;
}
.our-services-innr h4 {
    color: #0040aa;
    font-size: 26px;
    font-weight: 600;
    line-height: 35px;
    margin: 40px 0px;
    margin-bottom: 5px;
    font-family: 'montserrat-semibold', sans-serif;
}
.our-services-innr p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #000;
}
.our-services-innr a.read_more {
    border: 2px solid #0040aa;
    border-radius: 10px;
    padding: 2px 15px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.our-services .mrgntop {
    margin-top: 30px;
}
.services-writing {
    width: 50px;
    position: absolute;
    top: -100px;
    padding: 18px;
    transform: translateX(100%);
}
/*
.services-writing img {
    max-width: 80px;
    height: 65px;
    padding: 5px;
}
*/
.our-services-writing {
    position: relative;
}
.our-services-writing-order-now input {
    background-color: #0040aa;
    border: 1px solid #0040aa;
    padding: 4px 40px;
    text-transform: capitalize;
    font-size: 30px;
    border-radius: 0px;
    transition: transform .2s;
    color: #fff;
    font-weight: 500;
    box-shadow: 2px 1px 10px 3px rgb(0 0 0 / 19%);
    font-family: 'montserrat-regular', sans-serif;
}
.odrnowbtn {
    background-color: #0040aa;
    border: 1px solid #0040aa;
    padding: 10px 40px;
    text-transform: capitalize;
    font-size: 30px;
    border-radius: 0px;
    transition: transform .2s;
    color: #fff;
    font-weight: 500;
    box-shadow: 2px 1px 10px 3px rgb(0 0 0 / 19%);
    font-family: 'montserrat-regular', sans-serif;
}
.odrnowbtn:hover{
    color: #fff;
}
.our-services-writing-order-now {
    width: 100%;
    text-align: center;
    margin: 5px 0px 30px;
}


.best-assignment-provider {
    padding: 40px 0px 50px;
    background-position: 100% 100%;
    background-color: #0040aa;
}
.best-assignment-heading {
    text-align: center;
}
.best-assignment-heading h2 {
    color: #ffff;
    font-size: 52px;
    font-weight: 600;
    line-height: 65px;
    margin: 15px 0px 50px;
}
.best-assignment-heading h4 {
    color: #ffff;
    font-size: 52px;
    font-weight: 600;
    line-height: 65px;
    margin: 15px 0px 50px;
}
.best-assignment-view {
    width: 100%;
    text-align: center;
    border-right: 3px solid #fff;
}
.best-assignment-view p {
    color: #ffff;
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    margin: 0px 0px 0px 0px;
}
.best-assignment-view p {
    color: #ffff;
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    margin: 0px 0px 0px 0px;
}
.best-assignment-view p span {
    color: #ffff;
    font-size: 65px;
    font-weight: 600;
    line-height: 35px;
    margin: 15px 0px;
}
.best-assignment-view img {
    margin-top: 20px;
}




.border-top {
    border-top: 1px solid #dee2e6!important;
}
.bg-light {
    background-color: #f8f9fa!important;
}
.text-center {
    text-align: center!important;
}
section.bg-light .container {
    width: 1000px;
}
.mb-4 h3#reviews {
    font-size: 2rem;
    font-family: "Nunito",sans-serif;
}
.mb-4, .my-4 {
    margin-bottom: 1.5rem!important;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
.ml-auto, .mx-auto {
    margin-left: auto!important;
}
.pl-4, .px-4 {
    padding-left: 1.5rem!important;
}
.rounded {
    border-radius: 5px !important;
}
.text-warning {
    color: #ffc107!important;
}
.feather-solid {
    fill: currentColor!important;
}
.feather {
    width: 12px;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 3;
    margin-right: 1px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.mb-2 a {
    margin-bottom: 0.5rem!important;
    font-size: 14px !important;
    color: #F0FBFC !important;
}
.text-dark {
    color: #222!important;
}
.mb-2, .my-2 {
    margin-bottom: 0.5rem!important;
    font-size: 14px;
}


section {
    padding: 40px 0;
    overflow: hidden;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.order-lg-1 {
    margin-top: 6%;
}
.about .content h5 {
    font-family: "Poppins", sans-serif;
    color: #0040aa;
    font-size: 54px;
    font-weight: 600;
    line-height: 55px;
    margin: 15px 0px 20px;
    text-transform: uppercase;
}
.about .content h3 {
    font-family: "Poppins", sans-serif;
    color: #0040aa;
    font-size: 56px;
    font-weight: 600;
    line-height: 55px;
    margin: 15px 0px 20px;
    text-transform: uppercase;
}
.fst-italic {
    font-size: 40px;
    color: #000;
    font-style: normal !important;
    line-height: 50px;
}
.about .content p:last-child {
    margin-bottom: 0;
}


.cta {
    padding: 80px 0;
    background: #0040aa;
}
.cta h6 {
    color: #fff;
    font-size: 58px;
    font-weight: 600;
    font-family: 'montserrat-bold', sans-serif;
    margin: 0px 0px 20px;
}
.cta p {
    color: #fff;
    font-family: 'montserrat-regular', sans-serif;
}





.bg-dark .footer-border-top {
    border-top: 2px solid #4a89ef;
    margin-top: 0px;
}
.bg-dark .mrgntop0 {
    margin-top: 10px;
}


.footer-company-info {
    width: 100%;
    margin: 40px 0px 0px;
}
.footer-company-info p {
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 17px;
}
.footer-company-registration {
    width: 100%;
    margin: 30px 0px 0px;
}
.footer-company-registration p {
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0px 95px;
    letter-spacing: 1px;
    line-height: 25px;
}
.footer-company-registration p a {
    color: #FFFFFF;
    font-size: 12px;
    text-decoration: none !important;
}
.footer-border-top p.footer-heading {
    font-weight: 300;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #4a89ef;
    padding-bottom: 10px;
    color: #fff !important;
    margin-bottom: 1rem !important;
}
.footer-heading {
    font-weight: 100;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #4a89ef;
    padding-bottom: 10px;
}  


@media (max-width: 992px) { 
.navbar-collapse {
    margin-top: 40px;
}    

.cta h6 {
    font-size: 42px;
}
.nav-sectn-btn {
    margin: 50px 0px 0px 0px;
}
.navbars-menu-section {
    height: 970px;
}
.our-services-txt p {
    margin-bottom: 60px;
}

.services-writing {
    width: 28%;
    top: -80px;
}
.services-writing img {
    max-width: 120px;
}
.our-services-innr {
    margin-bottom: 90px;
}

.best-assignment-heading h2 {
    font-size: 38px;
    line-height: 45px;
}
.best-assignment-heading h4 {
    font-size: 38px;
    line-height: 45px;
}
.best-assignment-view p span {
    font-size: 42px;
}
.best-assignment-view p {
    font-size: 18px;
}
.order-lg-1 {
    margin-top: 0%;
}
.about .content h5 {
    font-size: 36px;
    margin: 15px 0px 0px;
}
.about .content h3 {
    font-size: 36px;
    margin: 15px 0px 0px;
}
.fst-italic {
    font-size: 22px;
}
.py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
.cta {
    padding: 30px 0;
}

}

@media (max-width: 767px) {
.nav-sectn-btn {
    margin: 0px auto;
}    
.header-navbar-inner img {
    width: 100%;
}    
.navbar-light .navbar-toggler {
    margin: 30px 15px;
}
.cms-banner .__form-container p {
    font-size: 18px;
}
.easy-autocomplete {
    width: 100% !important;
}
.cms-banner .__form-container .__deadline-input-container label {
    margin: 0px 0 0;
}
.navbars-menu-section {
    height: auto;
}
.our-services-writing-order-now {
    margin: 0px 0px 0px;
}
.best-assignment-heading h2 {
    font-size: 28px;
    line-height: 34px;
    margin: 0px 0px 30px;
}
.best-assignment-heading h4 {
    font-size: 28px;
    line-height: 34px;
    margin: 0px 0px 30px;
}
.best-assignment-view {
    margin-bottom: 20px;
}
.best-assignment-view {
    border-right: 0px solid #fff;
}
.bg-light {
    padding-top: 0px;
    padding-bottom: 0px;
}
.about .content h5 {
    font-size: 30px;
    line-height: 35px;
}
.about .content h3 {
    font-size: 30px;
    line-height: 35px;
}
.fst-italic {
    font-size: 22px;
    line-height: 30px;
}
.cta {
    padding: 20px 0;
}
.cta h6 {
    font-size: 32px;
}
.fadeIn .mrgntop0 {
    padding-top: 0px !important;
}
.footer-company-registration p {
    padding: 0px 0px;
}
.py-5 {
    padding-top: 2rem !important;
}
section.bg-light .container {
    width: 100%;
}
.form-services-sec .col-lg-3.col-md-6.col-sm-3.col-xs-12 {
    width: 50%;
}
.support-section-inr p {
    font-size: 14px;
}


.services-writing {
    width: 28%;
    top: -80px;
}
.services-writing img {
    max-width: 120px;
}
.our-services-innr {
    margin-bottom: 90px;
}


}
/************** My Style Sheet End *******************/



.partners-btn {
  background-color: #0040aa;
  color: #fff; /* white text */
  text-decoration: none;
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  
}

.partners-btn:hover {
transform: scale(1.05); /* slight pop */
}


