body {
    background: #070F2B;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: normal;
    cursor: auto !important;
    overflow-x: hidden;
}

body #root>div:nth-child(2) {
    display: none !important;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
    cursor: pointer !important;
}

.container {
    overflow: hidden;
}

.button {
    background-color: #9290C3;
    padding: 10px 40px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    color: #070F2B;
}


.heading {
    display: block;
    margin-bottom: 30px;
    text-align: center;
}

.heading h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #BBB9E8 30%, #fff 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-family: "Cousine", monospace;


}

.heading h2 .line {
    width: 50px;
    height: 3px;
    border-radius: 10px;
    background-color: #9290C3;
    display: inline-block;
    margin-bottom: 10px;
}

.heading p {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
}

.outer {
    display: flex;
    align-items: center;
    height: auto;
    min-height: calc(100vh - 90px);
    flex-wrap: wrap;

}

.loder {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    right: 0;
    align-items: center;
    justify-content: center;
    background-color: #070F2B;
}

.top-button {
    position: fixed;
    bottom: 30px;
    z-index: 99;
    right: 40px;
}

.top-button a {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: #9290C3;
    border-radius: 50%;
    align-items: center;
    font-size: 18px;
    justify-content: center;
    color: #fff;
    animation: uparrow 0.6s infinite alternate ease-in-out;
}

@keyframes uparrow {
    0% {
        -webkit-transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-0.4em);
    }
}

/* Header Start */

header {
    display: block;
    position: relative;
    z-index: 999;
}

header .header-bg {
    background: #070f2bca;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(3px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 1px 10px;
}

header .navbar {
    padding: 0 50px;
    overflow: hidden;
    width: 100%;
}

header .navbar .navbar-brand {
    display: flex;
    align-items: center;
}

header .navbar .navbar-brand span {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 30px;
}

header .navbar .navbar-brand img {
    width: 50px;
}

header .navbar .navbar-collapse {
    align-items: center;
    justify-content: center;
}

header .navbar .navbar-nav a {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 25px !important;
    transition: all 1s ease-in-out;
}

header .navbar .navbar-nav a.active,
header .navbar .navbar-nav a:hover{
    color: #BBB9E8 !important;
}
header .navbar .navbar-nav a:hover::after,
header .navbar .navbar-nav a.active::after{
    content: "";
    width: 100%;
    background: linear-gradient(to right, #BBB9E8 30%, #fff 100%);
    height: 1px;
    bottom: 0;
    display: block;
    margin-top: 5px;
    transition: all 1s ease-in-out;

}
header .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .social-link a {
    padding: 20px;
    font-size: 20px
}

/* Header End */


/* Banner Start */
.outer .banner-outer{
    padding: 100px 0;
}
.banner-outer {
    display: block;
    overflow: hidden !important;
    width: 100%;
    height: 100%;
    padding: 90px 0;
    position: relative;
}

.banner-outer .container {
    height: 100%;
}

.banner-outer .banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.banner-outer .text-content {
    width: 50%;
}

.banner-outer .text-content h2 {
    position: relative;
    font-size: 60px;
    font-weight: 700;
}

.banner-outer .text-content .line {
    width: 60px;
    height: 5px;
    border-radius: 10px;
    background-color: #9290C3;
    display: inline-block;
    margin-bottom: 20px;
}

.banner-outer .text-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 18px 0;

}

.banner-outer .text-content h5 span {
    color: #9290C3;
}

.banner-outer .text-content p {
    font-size: 14px;
    font-weight: 500;
}

.banner-outer .button2 {
    border: 2px solid #9290C3;
    padding: 10px 40px;
    margin-left: 10px;
    border-radius: 20px;
    color: #9290C3;
    font-size: 14px;
    font-weight: 700;
}

.banner-outer .img-content {
    width: 40%;
    position: relative;
}

.banner-outer .img-bg {
    background-color: #9290C3;
    width: 350px;
    position: absolute;
    top: 0;
    right: -80px;
    bottom: 0;
}

.banner-outer img {
    width: 90%;
    border-radius: 50%;
    z-index: 99;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.banner-outer .button-group {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

/* Banner End *


/* Services Start */

.service-outer {
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.service-outer .service-inner {
    display: block;
    margin-bottom: 20px;
}

.service-outer .slider-content {
    position: relative;
}

.service-outer .item {
    display: block;
    margin-bottom: 20px;
    padding: 0;
}

.service-outer .item .item-inner {
    padding: 20px;
    background-color: #9290c35d;
    border-radius: 20px;
    height: 200px;
    margin: 0 10px;
    position: relative;
}

.slider-content .item .top {
    display: flex;
    align-items: center;
}

.slider-content .item .img-content {
    border: 2px solid #535C91;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;

}

.slider-content .item img {
    width: 50px;
    height: 50px;
    padding: 10px;
    animation: mymove 7s infinite;

}

.slider-content .item .top .title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.slider-content .item .bottom {
    padding-top: 20px;
}

.slider-content .item .bottom p {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.7px;
}

.slick-arrow::before {
    display: none;
}


@keyframes mymove {
    50% {
        transform: rotate(180deg);
    }
}

/* Services End */

/* portfolio Satrt */

.portfolio-outer {
    display: block;
    width: 100%;
    overflow: hidden;
}

.portfolio-outer .portfolio-inner {
    display: block;
}

.portfolio-outer .portfolio-inner .item {
    display: block;
    margin-bottom: 30px;
}

.portfolio-outer .portfolio-inner .item-inner {
    border-radius: 20px;
    background-color: #9290c35d;
    overflow: hidden;
}

.portfolio-outer .item .img-content {
    position: relative;
    display: block;
    overflow: hidden;
}

.portfolio-outer .item-inner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.2s ease;
}


.portfolio-outer .img-content:hover img {
    scale: 1.1;
}

.portfolio-outer .item-inner .img-content:hover .bg-overlay {
    display: flex;
}

.portfolio-outer .bg-overlay {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #535c9181;
    transition: all 0.5s ease;
}

.portfolio-outer .bg-overlay a {
    background-color: #9290C3;
    border: 2px solid #070F2B;
    color: #fff;
    padding: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    line-height: 14px;
}

.portfolio-outer .text-content {
    padding: 15px;
}

.portfolio-outer .item h4 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.portfolio-outer .item p {
    font-size: 14px;
    font-weight: 600;
    line-height: 15px;
    color: #9290C3;
}

.portfolio-outer .ant-tabs>.ant-tabs-nav .ant-tabs-nav-wrap {
    justify-content: center;
}

.portfolio-outer .ant-tabs-top>.ant-tabs-nav::before {
    display: none;
}

.portfolio-outer .ant-tabs .ant-tabs-ink-bar {
    display: none;
}

.portfolio-outer .ant-tabs .ant-tabs-tab.ant-tabs-tab-active {
    background: rgb(14, 14, 43);
    background: linear-gradient(90deg, rgba(14, 14, 43, 1) 0%, rgba(29, 29, 77, 1) 25%, rgba(99, 99, 145, 1) 70%, rgba(146, 144, 195, 1) 100%);
    padding: 15px 40px;
    border-radius: 20px;
    border: 1px solid #9290C3;
}

.portfolio-outer .ant-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
    color: #fff;
}

.portfolio-outer .ant-tabs .ant-tabs-tab-btn {
    color: #fff;
}

.portfolio-outer #rc-tabs-0-panel-2 .item,
.portfolio-outer #rc-tabs-0-panel-3 .item,
.portfolio-outer #rc-tabs-0-panel-4 .item {
    display: none;
}

.portfolio-outer #rc-tabs-0-panel-2 .item.uiux,
.portfolio-outer #rc-tabs-0-panel-3 .item.web,
.portfolio-outer #rc-tabs-0-panel-4 .item.mobile {
    display: block;
}

.portfolio-outer .row {
    margin-top: 20px;
}

/* portfolio End */

/* About Start */

.about-outer {
    display: block;
    width: 100%;
    overflow: hidden;
}

.about-outer .about-inner {
    display: block;
}

.about-outer .title {
    font-size: 20px;
    font-weight: 600;
}

.about-outer .title .icon img {
    width: 40px;
    height: 40px;
}

.about-outer .content-inner {
    margin-bottom: 20px;
}

.about-outer .items {
    display: block;
    margin-top: 20px;
    margin-right: 20px;
}

.about-outer .item {
    display: block;
    margin-bottom: 20px;
}

.about-outer .item .item-inner {
    border: 1px solid transparent;
    background: linear-gradient(#070F2B, #070F2B) padding-box, linear-gradient(to bottom, #BBB9E8, transparent) border-box;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    padding: 30px;
}

.about-outer .item:hover .item-inner {
    border: 1px solid #dad9d9;
}

.about-outer .item .text-content {
    width: 100%;
}

.about-outer .item .text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.about-outer .item .text p {
    margin-bottom: 0;
}

.about-outer .item h4 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
}

.about-outer .item span {
    font-size: 14px;
    display: block;
    color: #9290C3;
}


/* About End */


/* Skill Start */
.skill-outer {
    display: block;
    width: 100%;
    padding-bottom: 40px;
    overflow: hidden;
}

.skill-outer .skill-inner img {
    width: 40%;
    margin: 0 auto;
}

.skill-outer .skill-inner .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.skill-outer .skill-inner .item-content:hover {
    rotate: 360deg;
}

.skill-outer .skill-inner .item {

    display: block;
}

.skill-outer .skill-inner .item-content {
    height: 180px;
    width: 180px;
    position: relative;
    text-align: center;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 1.5s ease-in-out;
}

.skill-outer .skill-inner .item-content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #9290C3;
    height: 9px;
    width: 9px;
}

.skill-outer .skill-inner .item-content .borders {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
}

.skill-outer .skill-inner .item .borders::before,
.skill-outer .skill-inner .item .borders::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
}

.skill-outer .skill-inner .item .borders::before {
    top: 0;
    border: 1px solid #9290C3;
    border-bottom: none;
    border-top-left-radius: 216px;
    border-top-right-radius: 216px;
}


.skill-outer .skill-inner .slick-slide:nth-child(2n) .borders::after {
    bottom: 0;
    border: 1px solid #9290C3;
    border-top: none;
    border-bottom-left-radius: 216px;
    border-bottom-right-radius: 216px;
}

.skill-outer .skill-inner .item .borders::after {
    bottom: 0;
    border: 1px dashed #9290C3;
    border-top: none;
    border-bottom-left-radius: 216px;
    border-bottom-right-radius: 216px;
}

.skill-outer .skill-inner .slick-slide:nth-child(2n) .borders::before {
    top: 0;
    border: 1px dashed #9290C3;
    border-bottom: none;
    border-top-left-radius: 216px;
    border-top-right-radius: 216px;
}

.skill-outer .skill-inner .text-content {
    margin-top: 15px;
}

/* Skill End */

/* Contact Start */

.contact-outer {
    display: block;
    width: 100%;
    overflow: hidden;
}

.contact-outer .contact-inner {
    display: block;
}

.contact-outer .contact-info {
    text-align: center;
    width: 767px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.contact-outer .contact-info .img-content {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: #9290C3 3px 3px 6px 0px inset, #9290c35d -3px -3px 6px 1px inset;
}

.contact-outer .contact-info img {
    width: 25px;
    height: 25px;
}

.contact-outer .contact-info p {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.contact-outer label {
    font-size: 16px;
    font-weight: 700;
    margin: 10px;
    display: block;
}

.contact-outer .inputgroup {
    display: block;
    margin-bottom: 20px;
}

.contact-outer input,
.contact-outer textarea {
    font-size: 14px;
    width: 100%;
    display: block;
    border: 1px solid #9290C3;
    padding: 15px;
    border-radius: 20px;
    outline: none;
    background-color: transparent;
    color: #fff;
    box-shadow: #9290C3 3px 3px 6px 0px inset, #9290c35d -3px -3px 6px 1px inset;
}

.contact-outer textarea {
    resize: none;
    height: 100px;
}

.contact-outer .button-group {
    display: block;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.contact-outer .button-group a {
    padding: 10px 80px;
}

/* Contact End */


/* Footer Start */
.footer-outer {
    display: block;
    width: 100%;
    overflow: hidden;
}

.footer-outer .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: #535C9157;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 1px 10px outer;
    padding: 0 30px;
}


.footer-outer .copyright {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
}

.footer-outer .copyright a {
    color: #9290C3;
}

.footer-outer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-outer .social-link a {
    padding: 15px;
    font-size: 20px
}


/* Footer End */

/* Resume page */

.about-section-outer {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.about-section-outer .about-inner {
    display: block;
}

.about-section-outer .content {
    display: flex;
    flex-wrap: wrap;
}

.about-section-outer .left {
    display: block;
    width: 33.33%;
    margin-bottom: 20px;
}

.about-section-outer .left .left-inner {
    display: block;
    background-color: #9290c35d;
    padding: 30px;
    margin: 0 10px;
    border-radius: 20px;
    height: fit-content;
}

.about-section-outer .left .img-content {
    text-align: center;
    margin-bottom: 20px;
}

.about-section-outer .left img {
    width: 100%;
    border-radius: 20px;
    height: 325px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: #9290C333 0px 7px 29px 0px;
}

.about-section-outer .left>.name-content {
    display: none;
}

.about-section-outer .left .name-content .title{
    background: transparent;
    border-radius: 0;
    padding: 0;
    padding-bottom: 10px;
}


.about-section-outer .left .info-content {
    display: block;
}

.about-section-outer .left .info-content .contact-title h3 {
    display: flex;
    font-size: 28px;
    font-weight: 600;
    align-items: center;
}

.about-section-outer .left .info-content .contact-title h3 .icon {
    display: inline;
    margin-right: 5px;
}

.about-section-outer .left .info-content .info {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.about-section-outer .left .info-content .info .icon {
    font-size: 18px;
    margin-right: 10px;
}

.about-section-outer .left .info-content .info .text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 10px;
}

.about-section-outer .left .education-outer {
    display: block;
    margin-top: 20px;
}

.about-section-outer .left .education-outer h3 {
    display: block;
    font-size: 28px;
    font-weight: 600;
}

.about-section-outer .left .education-outer h3 svg {
    margin-right: 5px;
}

.about-section-outer .left .education-outer .item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.about-section-outer .left .education-outer span {
    font-size: 12px;
    margin-bottom: 3px;
}

.about-section-outer .right {
    display: block;
    width: 66.66%;
}

.about-section-outer .right .right-inner {
    margin: 0 10px;
    display: block;
}

.about-outer .right .name-content{
    display: block;
}

.about-section-outer .name-content .title {
    display: block;
    background-color: #9290c35d;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.about-section-outer .name-content .title h5 {
    display: block;
    font-size: 40px;
    font-weight: 600;
}

.about-section-outer .right .des {
    display: block;
    background-color: #9290c35d;
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.about-section-outer .right h6 {
    font-size: 20px;
    font-weight: 600;
}

.about-section-outer .right .des p {
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: justify;
}

.about-section-outer .experience-outer {
    display: block;
    background-color: #9290c35d;
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
}

.about-section-outer .experience-outer .item {
    display: block;
    margin-top: 20px;
}

.about-section-outer .experience-outer .item .item-inner {
    border: 1px solid #070F2B;
    transition: all 0.3s ease-in-out;
    padding: 20px;
    border-end-end-radius: 20px;
    border-top-left-radius: 20px;
}


/* Blog Start */
.blog-outer {
    display: block;
    width: 100%;
    margin-bottom: 40px;
}

.blog-outer .blog-inner {
    display: block;
}

.blog-outer .item {
    display: block;
    position: relative;
    transition: all 2s ease-in-out;
    padding: 0 10px;
    border-radius: 20px;
}

.blog-outer .item .item-inner {
    display: block;
    position: relative;
    padding: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-outer .item .img-content {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.blog-outer .item:hover img{
    transform: scale(1.2);
}


.blog-outer .item img {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    transition: all 2s ease-in;
}

.blog-outer .item .text-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 25px;
    background-color: #535c91bc;
    display: block;
    z-index: 111;
    transition: all 2s ease-in-out;
    text-align: center;
    padding: 20px 10px;


}

.blog-outer .item h4 {
    font-size: 18px;
    font-weight: 600;
}

.blog-outer .item p {
    margin-bottom: 5px;
}


/* Blog End */

/* Blog Description Start */
.modal-dialog {
    margin: 0;
    max-width: none;
    height: 100%;
}

.modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 100%;
    width: 85%;
    background: transparent;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.description-outer {
    display: block;
    background: #070F2B;
    border-radius: 20px;
    width: 100%;
    height: 80%;
    border: 1px solid #9290C3;
    box-shadow: #BBB9E859 0px 5px 15px;
    position: relative;
}

.description-outer .close {
    position: absolute;
    color: #fff;
    top: -40px;
    right: -40px;
    border: 1px solid #BBB9E8;
    background-color: #070F2B;
    border-radius: 50%;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    box-shadow: #BBB9E859 0px 5px 15px;
    align-items: center;
    justify-content: center;
}

.description-outer .description-inner {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

.description-outer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.description-outer .text-content {
    width: 50%;
}

.description-outer .text-content h2 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 40px;
}

.description-outer .text-content .date {
    display: block;
    padding: 5px 0;
    font-size: 12px;
    font-weight: 500;
    color: #9290C3;
}

.description-outer .text-content p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.3px;
}

.description-outer .text-content .category {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.description-outer .text-content .category .title {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.description-outer .img-content {
    width: 50%;
    margin-left: 20px;
}

.description-outer .img-content img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.description-outer .img-content .slick-dots li {
    margin: 0;
}

.description-outer .img-content .slick-dots li button::before {
    content: '';
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: #BBB9E8;
}

.description-outer .text {
    padding: 20px;
}

.description-outer .text h5 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.description-outer .text p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.3px;
}

.description-outer .blockquote {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BBB9E859;
    width: 600px;
    margin: 20px auto;
    border-left: 3px solid #BBB9E8;
    padding: 15px;
    padding-left: 20px;
}

.description-outer .blockquote p {
    font-size: 26px;
    font-weight: 200;
}

.description-outer .blockquote span {
    display: block;
    text-align: right;
    font-size: 12px;
}

/* Blog Description End */

/* Front Page  Start*/
.front-outer{
    display: block;
}

.front-outer .front-inner{
    display: block;
}

.front-outer .logo{
    display: flex;
    margin-top: 90px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.front-outer .logo img{
    display: block;
    width: 70px;
    height: 70px;
}
.front-outer span{
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 2px;
}

.front-outer .heading{
    margin-bottom: 90px;
}

.front-outer .row{
    margin-bottom:  90px;
}

.front-outer .item a img{
    width: 100%;
    border-radius: 20px;
    border: 1px solid #BBB9E8;
    box-shadow: #BBB9E833 0px 7px 29px 0px;
}

.front-outer .text{
    margin-bottom: 22px;
    display: block;
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
}
/* Front Page  End*/


/* Media Screen  */

/* 1200px */
@media (max-width:1200px) {
    header .navbar {
        padding: 0 20px;
    }

    header .navbar .navbar-brand img {
        width: 40px;
    }

    header .navbar .navbar-nav a {
        padding: 10px 20px !important;
    }

    header .social-link a {
        padding: 15px;
        font-size: 20px;
    }

    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .banner-outer {
        padding: 30px 0;
    }

    .service-outer .item .item-inner{
        height: 200px;
    }
}


/* 991px */

@media (max-width:991px) {

    header .navbar-toggler,
    header .navbar-toggler:focus {
        border: 0;
        outline: none;
        box-shadow: none;
        cursor: pointer !important;
    }

    .navbar .navbar-toggler.collapsed .navbar-toggler-icon {
        background-image: url(../Images/menu.png) !important;
        transition: all 0.4s ease;
    }

    .navbar .navbar-toggler .navbar-toggler-icon {
        background-image: url(../Images/close.png) !important;
        transition: all 0.4s ease;
    }


    .navbar #basic-navbar-nav {
        position: fixed;
        top: 60px;
        left: 0;
        bottom: 0;
        width: 300px;
        background: #535C91;
        height: 100vh;
        z-index: 99;
        padding: 15px 20px;
        transition: all 0.5s ease;
    }

    .banner-outer .banner-inner {
        justify-content: center;
    }

    .banner-outer .img-content {
        width: 70%;
        order: 1;
        text-align: center;
    }

    .banner-outer .text-content {
        order: 2;
        width: 100%;
    }

    .banner-outer .img-bg {
        display: none;
    }

    .ant-tabs>.ant-tabs-nav .ant-tabs-nav-more {
        color: #fff;
    }

    .contact-outer .contact-info {
        width: 100%;
    }

    .about-section-outer .left,
    .about-section-outer .right {
        width: 100%;
    }

    .about-section-outer .left .name-content {
        display: block;
    }

    .about-section-outer .right .name-content {
        display: none;
    }

}

@media (max-width:576px) {
    .heading h2 {
        font-size: 40px;
    }

    .heading h2 .line {
        display: none;
    }

    .heading p {
        font-size: 12px;
    }

    .banner-outer .text-content h2 {
        position: relative;
        font-size: 40px;
        font-weight: 700;
    }

    .banner-outer .text-content .line {
        display: none;
    }

}

