body {
    background-color: var(--theme-background) !important;
}

/* Scroll bar */

/* Default (light) theme */
:root {
	--page-background: rgb(161, 161, 161);

	--scrollbar-track: rgb(161, 161, 161);
	--scrollbar-thumb: rgb(255, 255, 255);
	--scrollbar-thumb-hover: rgb(255, 255, 255);

	--scrollbar-width: 8px;
}


/* Dark theme */
html.dark {
	--page-background: black;

	--scrollbar-thumb: salmon;
	--scrollbar-thumb-hover: chocolate;
}


/* Firefox */
* {
	scrollbar-width: thin; /* none | auto  */
	scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track) !important;
}


/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
	width: var(--scrollbar-width); /* vertical scrollbar */
	height: var(--scrollbar-width); /* horizontal scrollbar */
}

*::-webkit-scrollbar-track {
	background: var(--scrollbar-track) !important;
}

*::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb) !important;
	border-radius: var(--scrollbar-width) !important;
	border: calc(var(--scrollbar-width) / 4) solid var(--page-background) !important;
}

*::-webkit-scrollbar-thumb:hover {
	background: var(--scrollbar-thumb-hover) !important;
}

/* Animation clips */
@keyframes textclip {
    to {
        background-position: -200% center;
    }
}

@keyframes blur-text {
    0% {
        filter: blur(0px);
    }

    100% {
        filter: blur(4px);
    }
}

/* Material Icon */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

/* Scroll bar */
html {
    scrollbar-color: #bfbfbf #666;
}

/*! Other Browser */
html {
    --scrollbarBG: #bfbfbf;
    --thumbBG: #666;
}

body::-webkit-scrollbar,
.blog-detail::-webkit-scrollbar {
    width: 11px;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body,
h1,
h2,
h3,
h4,
h5,
p,
li,
a,
span {
    font-family: var(--theme-font) !important;
}

body::-webkit-scrollbar-track,
.blog-detail::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb,
.blog-detail::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

/* Loader style */

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: var(--theme-overlay-background);
    border: 0px solid rgba(var(--theme-light-blue), 1);
}

#overlay div {
    margin: 19% auto 0px auto;
}

.loading-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 100%;
    height: 100px;
    line-height: 100px;
}

.loading-text span {
    display: inline-block;
    margin: 0 5px;
    color: #fff;
    font-size: 30px;
}

.loading-text span:nth-child(1) {
    filter: blur(0px);
    animation: blur-text 1.5s 0s infinite linear alternate;
}

.loading-text span:nth-child(2) {
    filter: blur(0px);
    animation: blur-text 1.5s 0.2s infinite linear alternate;
}

.loading-text span:nth-child(3) {
    filter: blur(0px);
    animation: blur-text 1.5s 0.4s infinite linear alternate;
}

.loading-text span:nth-child(4) {
    filter: blur(0px);
    animation: blur-text 1.5s 0.6s infinite linear alternate;
}

.loading-text span:nth-child(5) {
    filter: blur(0px);
    animation: blur-text 1.5s 0.8s infinite linear alternate;
}

.loading-text span:nth-child(6) {
    filter: blur(0px);
    animation: blur-text 1.5s 1s infinite linear alternate;
}

.loading-text span:nth-child(7) {
    filter: blur(0px);
    animation: blur-text 1.5s 1.2s infinite linear alternate;
}

.mgt-5 {
    margin-top: 3rem !important;
}

header {
    position: fixed;
    bottom: 0;
    padding-bottom: 35px;
    background-color: var(--theme-background);
    padding-top: 50px;
    z-index: 999;
}

.section-container {
    padding-left: 8px !important;
    padding-right: 7px !important;
}

.socialNetwork {
    position: fixed;
    right: 140px;
    bottom: 115px;
}

.socialNetwork span {
    padding: 3px 4px;
    background: var(--theme-background);
    font-size: 20px;
    margin-right: 10px;
    border-radius: 5px;
}

header ul {
    height: 55px;
    border-radius: 6px;
    background: rgba(var(--theme-dark-blue));
    background: linear-gradient(90deg, rgba(var(--theme-dark-blue), 1) 0%, rgba(var(--theme-dark-blue), 1) 40%, rgba(var(--theme-menu-highlight), 1) 50%, rgba(var(--theme-dark-blue), 1) 60%, rgba(var(--theme-dark-blue), 1) 100%);
}

.offset-left {
    margin-left: 23%;
}

header ul li {
    font-size: 20px;
    float: left;
    list-style: none;
    padding: 12px 26px;
    text-align: center;
    color: var(--theme-white);
    cursor: pointer;
    margin-right: 6px;
    white-space: nowrap !important;
}

header ul li a {
    color: var(--theme-white);
    text-decoration: none;
    padding: 10px 6px;
    width: 100%;
    transition-property: color;
    transition-duration: 0.5s;

    &:hover {
        color: rgba(var(--theme-light-blue), 1);
    }
}

.job-skills{
    float: left;
    padding: 3px 5px;
    font-size: 13px;
    border-radius: 6px;
    margin-top: 10px;
    background-color: rgba(var(--theme-light-blue), .2);
}

.job-des{
    font-size: 16px;
    list-style: none;
    margin-left: -30px;
    font-weight: bold;
}

.active {
    background: url(../images/menuActive.svg) no-repeat;
    background-size: 7px;
    background-position: center 41px;
}

.right-menu li {
    float: left;
}

.left-menu li {
    float: right;
}

.logo-container {
    padding: 0px 25px;
}

.logo {
    width: 100%;
    margin: -23px 0px;
    text-align: center;
    background: url(../images/logoBg.svg) no-repeat;
    background-position: center -2px;
    padding: 9px 0px;
    background-size: 100px;
}

.logo img {
    width: 70px;
    border-radius: 50px 57px 60px 60px;
    margin-right: 10px;
}

.small-device-logo {
    display: none;
}

.small-device-menu {
    display: none;
}

.copyright {
    position: fixed;
    right: 144px;
    bottom: 22px;
    font-size: 17px;
}

.page-container {
    margin-bottom: 150px;
}

.wrapper {
    background-color: var(--theme-white);
    padding: 12px;
    margin-top: 15px;
}

.page-container .title {
    font-size: 24px;
    color: rgba(var(--theme-dark-blue), 1);
    border-left: 2px solid rgba(var(--theme-light-blue), 1);
    padding-left: 10px;
    margin: 20px 0px 20px -13px;
}

.page-title {
    font-size: 46px;
    margin-bottom: 0px;
    color: rgba(var(--theme-dark-blue), 1);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px !important;
    text-shadow: 3px 3px 1px rgba(var(--theme-black), .3);
    padding-left: 10px;
}

.page-tag-line {
    text-shadow: none;
    padding-left: 12px;
    color: rgba(var(--theme-black), .6);
    font-weight: normal;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    margin-bottom: 0px;
}

.home-container .section-container {
    margin-top: 9%;
}

#home{
    margin-bottom: 120px;
}

.banner-pic {
    background-image: url(../images/bannerimg.svg);
    background-repeat: no-repeat;
    background-size: 560px auto;
    background-position: center 20%;
    text-align: center;
    height: 520px;
}

.banner-pic img {
    width: 570px;
    margin-top: -42px;
}

.banner-pic::before {
    content: "";

}

.banner-pic svg {
    margin: 5px 0px 0px 115px;
}

.title-name {
    font-size: 90px;
    font-weight: bolder;
    color: rgba(var(--theme-dark-blue), 1);
}

h1 {
    font-size: 36px;
    color: rgba(var(--theme-black), .7);
}

.title-designation {
    font-size: 65px;
    font-weight: bolder;
}

.title-designation {
    background-image: linear-gradient(225deg,
            rgba(var(--theme-black), .68) 0%,
            rgba(var(--theme-black), .68) 10%,
            var(--theme-designasion-animation-color) 20%,
            rgba(var(--theme-black), .68) 25%,
            rgba(var(--theme-black), .68) 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: var(--theme-white);
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 6s infinite ease-in-out;
    display: inline-block;
}

.brief {
    margin: 40px 100px 40px 0px;
}

.brief span {
    background-color: var(--theme-banner-description);
    padding: 4px;
    line-height: 30px;
    font-size: 22px;
}

.btn-bg {
    padding: 10px 25px;
    color: var(--theme-white);
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 30px;
    margin-right: 20px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 60px;
    background-image: linear-gradient(225deg,
            var(--theme-white) 0%,
            var(--theme-white) 50%,
            rgba(var(--theme-dark-blue), 1) 51%,
            rgba(var(--theme-dark-blue), 1) 70%,
            rgba(var(--theme-dark-blue), 1) 100%);
    border: 1px solid rgba(var(--theme-dark-blue), 1);
    background-position: -140% center;
    background-size: 300% auto;
    transition-property: background-position, color;
    transition-duration: .6s;

    &:hover {
        background-position: -50% center;
        color: rgba(var(--theme-dark-blue), 1);

    }
}

.btn-border {
    padding: 10px 25px;
    color: var(--theme-white);
    font-weight: bold;
    border-radius: 8px;
    font-size: 30px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 60px;
    background-image: linear-gradient(225deg,
            var(--theme-white) 0%,
            var(--theme-white) 50%,
            rgba(var(--theme-light-blue), 1) 51%,
            rgba(var(--theme-light-blue), 1) 70%,
            rgba(var(--theme-light-blue), 1) 100%);
    border: 1px solid rgba(var(--theme-light-blue), 1);
    background-position: -145% center;
    background-size: 300% auto;
    transition-property: background-position, color;
    transition-duration: .6s;

    &:hover {
        background-position: -50% center;
        color: rgba(var(--theme-light-blue), 1);

    }
}

/* About page style */

.about-container,
.service-container {
    margin-top: 20px;
}

div.about-info {
    padding: 20px;
    height: auto;
    overflow: hidden;
}

.about-container h2 {
    font-size: 28px;
    color: rgba(var(--theme-dark-blue), 1);
    padding: 6px 0px;
}

.about-container h3 {
    font-size: 22px;
    font-weight: normal;
    padding: 6px 0px;
}

.about-container p {
    font-size: 16px;
}

.about-container table {
    width: 100%;
    margin-bottom: 10px;
}

.about-container table td {
    padding: 5px;
    word-break: break-all;
}

.about-container .btn-hire {
    padding: 10px 15px;
    color: var(--theme-white);
    font-weight: bold;
    border: none;
    border-radius: 4px;
    float: left;
    font-size: 16px;
    margin: 8px 4px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    background-image: linear-gradient(225deg,
            rgba(var(--theme-light-blue), 1) 0%,
            rgba(var(--theme-light-blue), 1) 50%,
            rgba(var(--theme-dark-blue), 1) 51%,
            rgba(var(--theme-dark-blue), 1) 70%,
            rgba(var(--theme-dark-blue), 1) 100%);
    background-position: -150% center;
    background-size: 300% auto;
    transition-property: background-position;
    transition-duration: .6s;

    &:hover {
        background-position: -50% center;
    }
}

.btn-cv {
    margin: 0px;
    border: none;
    background: transparent;
    padding: 10px 10px;
    font-weight: bold;
    font-size: 16px;
    color: rgba(var(--theme-dark-blue), 1);
    margin-top: 8px;
    margin-left: 10px;
    float: left;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    background-image: linear-gradient(225deg,
            rgba(var(--theme-dark-blue), 1) 0%,
            rgba(var(--theme-dark-blue), 1) 50%,
            transparent 51%,
            transparent 70%,
            transparent 100%);
    background-position: -145% center;
    background-size: 300% auto;
    transition-property: background-position, color;
    transition-duration: .6s;

    &:hover {
        background-position: -50% center;
        color: var(--theme-white);
    }
}

.skills {
    padding: 0px 12px 10px 12px;
}

.skills h2.title {
    margin: 15px 0px 15px -13px;
}

.skill-item {
    text-align: center;
    padding: 13.5px 0px;
    font-size: 14px;
    zoom: 1;
    transition: all .2s ease-in-out;
    &:hover{
        background-color: var(--theme-background);
    }
}

.skill-item:hover i {
    font-size: 26px;
}

.skill-item i {
    width: 100%;
    font-size: 34px;
    color: rgba(var(--theme-dark-blue), 1);
    transition: all .2s ease-in-out;
}

.b-right {
    border-right: 1px solid #e5e2e2;
}

.b-bottom {
    border-bottom: 1px solid #e5e2e2;
}

div.highlights {
    margin: 0px;
}

.highlight-dark h4,
.highlight-light h4 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

.highlight-dark p,
.highlight-light p {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}

.highlight-dark,
.highlight-light {
    padding: 10px;
}

.highlight-dark {
    background: var(--theme-about-highlight-dark);
    transition: all .4s ease-in-out;
}

.highlight-light {
    background: var(--theme-about-highlight-light);
    transition: all .4s ease-in-out;
}

.highlight-light:hover,
.highlight-dark:hover {
    transform: scale(1.1);
}

.job-experience,
.education-brief {
    background: rgba(var(--theme-light-blue), .09);
    padding: 20px;
    margin-top: 12px;
    transition: all .4s ease-in-out;
    border: 1px solid var(--theme-experience-border);
    box-shadow: 1px 1px 3px rgba(var(--theme-dark-blue), .4);
    overflow: hidden;

    &:hover {
        border: 1px solid rgba(var(--theme-light-blue), .5);
        box-shadow: none;
    }
}

.readMore, .readLess {
    background: none;
    border: none;
    color: #273e79;
    float: right;
    margin-top: 10px;
    font-size: 14px;
}
.readLess{ 
    display: none;
}
.readMore i, .readLess i {
padding-right: 10px;
}
.job-experience ul {
    display: none;
}

.resume-icon{
    padding-right: 10px;
    font-size: 22px;
}

h2.job-designation,
h2.course-details {
    font-size: 22px;
    float: left;
}

.duration {
    float: right;
    margin-top: 4px;
    background: rgba(var(--theme-light-blue), .2);
    padding: 6px 30px 6px 8px;
    margin-right: -21px;
    border-radius: 6px 0px 0px 6px;
}

.job-company,
.institute {
    font-weight: bold;
}

.job-company,
.institute,
.job-description,
.education-description {
    width: 100%;
    clear: both;
    margin-bottom: 4px;
}

.display-more{
    background-color: unset;
    border: none;
    float: right;
    border: none;
    padding: 4px 4px;
    font-size: 13px;
    border-radius: 5px 5px 0px 0px;
    background: rgba(var(--theme-light-blue), .2);
    margin-bottom: -22px;
}
.display-more span{
    padding: 10px;
    color: rgba(var(--theme-dark-blue));;
}

/* Service page style */

#services .wrapper {
    --c: rgba(var(--theme-dark-blue), 1);
    /* the border color */
    --b: 2px;
    /* the border thickness*/
    --g: 6px;
    /* the gap on hover */

    padding: calc(var(--g) + var(--b));
    --_g: #0000 25%, var(--c) 0;
    background:
        conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0 /200% var(--_i, var(--b)) no-repeat,
        conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%)/var(--_i, var(--b)) 200% no-repeat;
    transition: .3s, background-position .3s .3s;
    cursor: pointer;
    margin-top: 0px;

    &:hover {
        --_i: 100%;
        transition: .3s, background-size .3s .3s;
    }
}

.Service-item {
    margin-top: 15px;
    background-color: var(--theme-white);
}

.Service-item .servce-title{
    padding-top: 12px;
    margin-left: 65px;
    line-height: 25px;
}
.service-container {
    margin-top: 20px;
    margin-bottom: 15px;
}

.Service-item h2.title {
    border: none;
    margin-bottom: 10px;
    margin-top: 12px;
}

.Service-item h2.title span {
    margin-left: 62px;
    line-height: 47px
}

.Service-item .title ion-icon {
    position: absolute;
    background: var(--theme-background);
    padding: 12px 17px;
    border-radius: 0px 5px 5px 0px;
    color: rgba(var(--theme-light-blue), 1);
    font-size: 26px;
    margin-left: -5px;
    border-left: 2px solid rgba(var(--theme-dark-blue), 1);
}

.Service-item p {
    padding-bottom: 8px;
    margin: 10px 5px;
}

.Service-item .service-more {
    margin: 0px 0px 20px 0px;
}

.Service-item .service-more a {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(var(--theme-dark-blue), 1);
    color: rgba(var(--theme-dark-blue), 1);
    background-image: linear-gradient(225deg,
            rgba(var(--theme-dark-blue), 1) 0%,
            rgba(var(--theme-dark-blue), 1) 50%,
            var(--theme-white) 51%,
            var(--theme-white) 70%,
            var(--theme-white) 100%);
    background-position: -145% center;
    background-size: 300% auto;
    transition-property: background-position, color;
    transition-duration: .6s;

    &:hover {
        background-position: -60% center;
        color: var(--theme-white);

    }
}

.play-text {
    padding-top: 85px;
    cursor: pointer;
}

.play-banner {
    border-radius: 20px;
    padding-left: 20px !important;
}


.play-banner h1 {
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: right;
    color: rgba(var(--theme-dark-blue), 1);
    padding-left: 20px;
    margin-bottom: 0px;
    line-height: 0px;
}

.profile-introduction {
    float: right;
}

.intro-animate {
    width: 0px;
    height: 2px;
    background: rgb(var(--theme-dark-blue));
    border-radius: 3px;
    transition: width 1s ease;
    float: right;
    margin-top: 10px;
}

.profile-introduction:hover .intro-animate {
    width: 100%;
}

.play-text a {
    text-decoration: none;
}

.model-container {
    position: fixed;
    display: none;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(var(--theme-black), .6);
}

.intro-video {
    width: 100%;
    height: auto;
}

.model-content {
    width: 600px;
    margin: 0 auto;
    margin-top: 10%;
}

.close-model {
    float: right;
    font-size: 35px;
    line-height: 30px;
    color: var(--theme-white);
    cursor: pointer;
}

.service-more a {
    background-color: rgba(var(--theme-dark-blue), 1);
    padding: 10px 15px;
    color: var(--theme-white);
    font-weight: bold;
    text-decoration: none;
    border: none;
    font-size: 16px;
    border-radius: 3px;
    margin: 8px 4px;
}

.testimonial-container {
    margin-top: 60px !important;
}

.testimonial-container .page-title {
    padding-bottom: 13px;
}

.testimonial-container .page-tag-line {
    padding-bottom: 13px;
}

.testimonial-description {
    padding-left: 10px;
    padding-right: 60px;
    margin-bottom: 25px;
}

.contact-me {
    margin-left: 10px;
    text-decoration: none;
    border-radius: 3px !important;
    margin-top: 13px;
    font-weight: 500;
}

.slick-dots li.slick-active button:before {
    color: rgba(var(--theme-dark-blue), 1) !important;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    color: rgba(var(--theme-dark-blue), 1) !important;
}

.slick-prev,
.slick-next {
    display: none !important;
}

.client-testimonial {
    width: 450px;
    margin: 30px auto 22px auto;
    border-radius: 10px;
    background-color: var(--theme-white);
    padding: 26px;
    border: 5px solid var(--theme-testimonial-border);
    overflow: hidden;
}

.client-testimonial p {
    line-height: 24px;
}

.client-testimonial i {
    font-size: 30px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 0px;
    padding-top: 10px;
    color: rgba(var(--theme-light-blue), 1);
}

.client-detail {
    width: 100%;
}

.client-img {
    width: 85px;
    float: left;
}

.client-name {
    width: 240px;
    float: left;
}

.client-rating {
    width: 100%;
    padding-bottom: 15px;
    text-align: center;
}

.client-rating i {
    color: var(--theme-testimonial-star-gold);
    font-size: 18px;
    padding: 0px 5px;
}

.client-img img {
    width: 100%;
    padding: 8px 16px 0px 0px;
    border-radius: 100%;
}

.client-name h2 {
    font-size: 22px;
    font-weight: bold;
    padding-top: 18px;
}

.client-name h3 {
    font-size: 16px;
    font-weight: 400;
}

#portfolio .page-tag-line {
    margin-left: 0px;
}

.filter-portfolio {
    overflow: hidden;
    margin: 0px 20px 35px 0px;

}

.filter-list li.active {
    border-bottom: none;
    color: rgba(var(--theme-dark-blue), 1);
    background-size: 6px !important;
    background-position: center 36px;
    background-image: url(../images/menuActive.svg);
}

.filter-list li {
    list-style: none;
    float: right;
    padding: 10px 20px;
    color: #555;
    cursor: pointer;
    background: linear-gradient(to right, rgba(var(--theme-dark-blue), 1) 0%, rgba(var(--theme-dark-blue), 1) 100%);
    background-repeat: no-repeat;
    background-position: left 100%;
    transition-duration: .6s;
    background-size: 100% 5%;

    &:hover {
        background-size: 0% 5%;
    }
}

.portfolio-link {
    margin-bottom: 60px;
    text-align: center;
}

.align-right {
    padding: 10px;
    clear: both;
}

.lb-number {
    display: none !important;
}

.lb-data .lb-caption {
    font-size: 20px !important;
    padding-left: 12px;
}

.lb-description {
    padding-top: 6px;
    padding-left: 12px;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
}

.hover-effect {
    position: fixed;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
}

.lb-close {
    font-size: 32px;
    position: absolute;
    right: -40px;
    top: 20px;
    cursor: pointer;
    color: #fff;
}

.portfolio-link:hover img {
    opacity: 0.75;
    box-shadow: 0px 0px 0px 12px var(--theme-portfolio-hover-border);
}

.portfolio-link:hover .portfolio-title {
    opacity: 1;
}

.portfolio-title {
    opacity: 0;
    position: absolute;
    padding: 6px 10px;
    margin: 114px 0px 0px -200px;
    background-color: rgba(var(--theme-dark-blue), 1);
    border-bottom: 5px solid rgba(var(--theme-light-blue), 1);
    font-weight: 500;
    color: var(--theme-white);
    font-size: 18px;
    transition-property: opacity;
    transition-duration: .6s;
    max-width: 240px;
}

.portfolio-link img {
    box-shadow: 10px 10px 0px #ced8ec;
    border-radius: 30px;
    opacity: 1;
    transition-property: opacity, box-shadow;
    transition-duration: .6s;
}

.lb-dataContainer {
    background: var(--theme-white);
}

.lb-caption {
    color: #333;
}

div#lightbox {
    margin-top: -30px;
}

/* Blog page style */

.blog-item {
    padding: 5px 10px !important;
}

.blog-item div.wrapper {
    padding: 20px 25px !important;
    text-align: center;
    margin-top: 0px;
}

.blog-item div {
    padding: 5px 10px !important;
    border-radius: 3px;
}

.blog-item img {
    transition: all .4s ease-in-out;
}

.blog-item:hover img {
    transform: scale(1.08);
}

.blog-item button {
    background: var(--theme-white);
    border: 1px solid rgba(var(--theme-dark-blue), 1) !important;
    padding: 10px;
    border-radius: 11px;
    width: 100%;
    background-image: linear-gradient(225deg,
            rgba(var(--theme-dark-blue), 1) 0%,
            rgba(var(--theme-dark-blue), 1) 50%,
            var(--theme-white) 51%,
            var(--theme-white) 70%,
            var(--theme-white) 100%);
    background-position: -145% center;
    background-size: 300% auto;
    transition-property: background-position, color;
    transition-duration: .6s;

    &:hover {
        background-position: -60% center;
        color: var(--theme-white);

    }
}

.blog-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-item p {
    text-align: left;
}

.blog-item .description {
    font-size: 22px;
}

#contact .container-fluid {
    background: rgb(var(--theme-contact-form-bg));
}

.map-container {
    height: 230px;
    margin-bottom: 20px;
    background: var(--theme-map-background);
    border-radius: 10px;
    padding: 0px !important;
}

.map-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.contact-details {
    padding: 40px 0px;
}

.contact-strip h2 {
    font-size: 20px;
    color: var(--theme-contact-detail-color);
    text-align: center;
}

.contact-strip i {
    text-align: center;
    font-size: 15px;
    padding: 8px;
    color: var(--theme-contact-detail-color);
}

.contact-strip address,
.contact-strip p {
    font-size: 16px;
    text-align: center;
    color: rgba(var(--theme-dark-blue), 1);
}

.contact-mail-action-status{
   color: #ffffff
}

.hire-me form {
    width: 600px;
    margin: 0 auto;
}

.hire-me p {
    text-align: center;
    color: var(--theme-white);
}

.hire-me {
    padding: 20px 0px;
}

.hire-me p {
    font-size: 18px;
}

.form-ctr input,
.form-ctr textarea {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 2px;
    border: none;
    background-color: var(--theme-white);
    border: none;
    padding: 10px;
    color: #111;
    border-radius: 15px;
    transition: all .4s ease-in-out;
    border: 3px solid var(--theme-contact-input-color);

}

.hire-me .in-valid {
    border: 3px solid var(--theme-form-invalid) 
}

.form-ctr input:-internal-autofill-selected .form-ctr textarea:-internal-autofill-selected {
    background-color: var(--theme-white) !important;
}

.form-ctr input:focus,
.form-ctr textarea:focus {
    outline: none;
    border: 3px solid rgba(var(--theme-light-blue), 1);

}

.form-ctr textarea {
    height: 120px;
}

.btn-submit {
    margin: 0px;
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-weight: bold;
    font-size: 18px;
    color: var(--theme-white);
    float: right;
    border-radius: 10px;
    background-image: linear-gradient(225deg,
            rgba(var(--theme-dark-blue), 1) 0%,
            rgba(var(--theme-dark-blue), 1) 50%,
            var(--theme-contact-input-color) 51%,
            var(--theme-contact-input-color) 70%,
            var(--theme-contact-input-color) 100%);
    background-position: -150% center;
    background-size: 300% auto;
    transition-property: background-position, color;
    transition-duration: .6s;

    &:hover {
        background-position: -50% center;

    }
}

.btn-submit i {
    font-size: 15px;
}

/* Single blog detail */

.blog-detail {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--theme-background);
    margin-top: 0px !important;
    z-index: 999;
    top: 0px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

.blog-container {
    margin-top: 70px !important;
    margin-bottom: 50px !important;
    min-height: 900px;
    background: var(--theme-white);
    border-radius: 5px;
    padding: 0px 50px !important;
}

.blog-container .blog-title {
    color: rgba(var(--theme-dark-blue), 1);
    text-align: center;
    margin: 40px 0px 10px 0px;
    text-transform: uppercase;
}

.blog-container .tags {
    text-align: center;
}

.blog-container .tags span {
    text-align: center;
    background-color: var(--theme-background);
    padding: 6px 8px;
    border-radius: 8px;
    margin: 0px 6px;
    font-size: 14px;
}

.blog-container p {
    padding: 15px 10px;
}

.blog-container .quotes {
    padding: 10px 50px 10px 10px;
    margin: 10px 0px 15px 30px;
    border-left: 1px solid rgba(var(--theme-light-blue), 1);
}

.blog-banner {
    width: 100%;
    padding: 0px 0px 30px 0px;
}

.close-blog {
    position: fixed;
    font-size: 42px;
    right: 100px;
    top: 20px;
    cursor: pointer;
}

.blog-comment {
    margin: 40px 0px;
    padding-bottom: 15px;
    border-radius: 0px 0px 5px 5px;
    background: var(--theme-background)
}

.input-container {
    padding: 10px 25px;
}

.blog-comment input,
.blog-comment textarea {
    border-bottom: 1px solid rgba(var(--theme-dark-blue), 1) !important;
    border: none;
    padding: 8px;
    width: 100%;
    background-color: transparent;
    transition: all .4s ease-in-out;
}

.blog-comment .in-valid {
    border-bottom: 1px solid var(--theme-form-invalid)  !important;
}

.blog-comment input:-internal-autofill-selected,
.blog-comment textarea:-internal-autofill-selected {
    background-color: var(--theme-white) !important;
}

.blog-comment input:focus,
.blog-comment textarea:focus {
    outline: none;
    border-bottom: 1.5px solid rgba(var(--theme-light-blue), 1);
}

.blog-comment h2 {
    padding: 20px 0px 12px 0px;
    font-size: 25px;
    text-align: center;
    color: rgba(var(--theme-dark-blue), 1);
}

.blog-comment h2 span {
    border-bottom: 0px solid rgba(var(--theme-light-blue), 1);
}

.blog-comment .comment-btn {
    width: 190px;
    margin: 0 auto;
}

.blog-comment button {
    border: none;
    float: right;
    background: transparent;
    padding: 8px 14px;
    font-weight: 500;
    font-size: 18px;
    color: rgba(var(--theme-dark-blue), 1);
    border: none;
    border-radius: 5px;
    background-image: linear-gradient(225deg,
            rgba(var(--theme-dark-blue), 1) 0%,
            rgba(var(--theme-dark-blue), 1) 50%,
            transparent 51%,
            transparent 70%,
            transparent 100%);
    background-position: -150% center;
    background-size: 300% auto;
    transition-property: background-position, color, border;
    transition-duration: .6s;

    &:hover {
        background-position: -55% center;
        color: var(--theme-white)
    }

}

.blog-cred {
    border-radius: 5px 5px 0px 0px;
    background: var(--theme-background);
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--theme-white);
    overflow: hidden;
    min-height: 54px;
    height: auto;
}

div.blog-cred p {
    padding: 5px 10px;
    color: rgba(var(--theme-dark-blue), 1);
    margin-bottom: 2px;
}

.blog-social-network li {
    float: right;
    padding: 7px 8px 5px 8px;
    list-style: none;
}

.blog-social-network li i {
    font-size: 20px;
    color: rgba(var(--theme-dark-blue), 1);
}

.mail-action-status {
    border-radius: 6px;
    padding: 7px;
}

.form-success {
    border: 1px solid var(--theme-form-success);
    color: var(--theme-form-success);
}

.form-error {
    border: 1px solid var(--theme-form-error);
    color: var(--theme-form-error);
    ;
}

/* 404 page not found */

.page-lost{
    margin-top: 16%;
}

.page-lost h2 {
    text-align: center;
    font-size: 40px;
    line-height: 18px;
}
.page-lost h4 {
    text-align: center;
    font-size: 16px;
}

.page-lost h4 span {
    border-top: 1px solid #333;
    padding: 5px 30px;
}

@media (max-width: 1600px) {

    /* CSS */
    header {
        padding-bottom: 18px;
        padding-top: 26px;
    }

    h1 {
        font-size: 30px;
    }

    .home-container .section-container {
        margin-top: 4.5%;
    }

    .title-name {
        font-size: 70px;
    }

    .title-designation {
        font-size: 50px;
    }

    .brief span {
        font-size: 16px;
    }

    .banner-pic {
        background-size: 440px auto;
        background-position: center 22px;
        height: 410px;
    }

    .banner-pic img {
        width: 459px;
        margin-left: 0px;
        text-align: center;
        margin-top: -17px;
    }

    .btn-bg,
    .btn-border {
        font-size: 20px;
    }

    header ul {
        height: 34px;
    }

    header ul li {
        font-size: 14px;
        padding: 6px 26px
    }

    .socialNetwork {
        right: 120px;
        bottom: 72px;
    }

    .socialNetwork span {
        font-size: 12px;
        cursor: pointer;
    }

    .socialNetwork i {
        color: rgba(var(--theme-black), 1);
        transition-property: color;
        transition-duration: 0.5s;

        &:hover {
            color: rgba(var(--theme-light-blue), 1);
        }
    }

    .copyright {
        right: 120px;
        bottom: 13px;
        font-size: 13px;
    }

    .active {
        background-size: 6px;
        background-position: center 26px;
    }
}

@media (max-width: 1200px) {

    h1 {
        font-size: 25px;
    }

    .title-name {
        font-size: 60px;
    }

    .title-designation {
        font-size: 42px;
    }

    .brief span {
        font-size: 15px;
    }

    #home {
        margin-top: 80px;
    }

    .homeHide {
        transition-property: display;
        transition-duration: 1s;
        display: none !important;
    }

    .logo {
        background-position: center 10px;
        padding: 19px 0px;
        background-size: 85px auto;
    }

    .logo img {
        width: 60px;
        margin-right: 6px;
    }

    .sm-logo {
        background-position: center 10px;
        padding: 19px 0px;
        background-size: 85px auto;
        background: var(--theme-white) url(../images/logoBg.svg) no-repeat;
    }

    .mgt-5 {
        margin-top: 0rem !important;
    }

    .sm-logo img {
        width: 60px;
        border-radius: 50px 50px 60px 60px;
        margin-right: 10px;
    }

    .play-banner h1 {
        padding-right: 25px;
    }

    .play-text {
        padding-top: 134px;
    }

    .btn-bg,
    .btn-border {
        font-size: 17px;
    }

    .hire-me form {
        width: 100%;
    }

}

@media (max-width: 992px) {

    .logo-container {
        position: absolute;
        top: 45px;
    }

    .offset-left {
        margin-left: 0px;
    }

    .banner-pic img {
        margin-left: -5px;
    }

    header {
        position: fixed;
        bottom: unset;
        top: 0;
        padding-bottom: 35px;
        height: 100%;
        width: 230px !important;
        background-color: var(--theme-white);
        padding-top: 55px;
        border-right: 2px solid var(--theme-mobile-menu-border);
        border-top: none;
        display: none;
    }

    #home {
        margin-top: 0px;
    }

    .page-container {
        margin-top: 90px;
        margin-bottom: 50px;
    }

    .navigation-container li {
        text-align: left;
    }

    .navigation-container li a {
        padding-left: 5px;
    }

    .about-container,
    .service-container {
        margin-top: 100px;
    }

    .sm-logo {
        width: 90px;
        text-align: center;
        background: var(--theme-background) url(../images/logoBg.svg) no-repeat;
        background-size: 87px;
        background-position: center -2px;
        padding: 9px 0px;
        float: left;
    }

    h1 {
        font-size: 36px;
    }

    .title-name {
        font-size: 80px;
    }

    .title-designation {
        font-size: 50px;
    }

    .brief span {
        font-size: 20px;
    }

    .menu-bar {
        font-size: 22px;
    }

    .play-banner h1 {
        padding-right: 35px;
        line-height: 30px;
    }

    .lb-description {
        font-size: 20px;
        line-height: 28px;
    }

    .contact-strip address,
    .contact-strip p {
        font-size: 20px;
    }

    .service-more a {
        font-size: 20px;
    }

    .Service-item p {
        font-size: 20px;
    }

    .play-text {
        padding-top: 90px;
    }

    @keyframes fadeInMenu {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .show-menu {
        display: block !important;
        z-index: 99;
        animation: fadeInMenu 1s;
    }

    .banner-pic {
        background-position: left 22px;
        text-align: left;
    }

    .btn-bg,
    .btn-border {
        font-size: 20px;
        margin-bottom: 6px;
    }

    header ul {
        height: unset;
        background: rgba(var(--theme-dark-blue), 1);
        padding-top: 40px;
    }

    header ul li {
        font-size: 20px;
        padding: 14px 12px;
    }

    .small-device-menu {
        display: block;
        position: fixed;
        right: 65px;
        top: 40px;
        background: var(--theme-white);
        border-radius: 100%;
        font-size: 24px;
        cursor: pointer;
        z-index: 99;
    }

    .small-device-logo {
        display: block;
        position: absolute;
        left: 65px;
        top: 26px;
        font-weight: bold;
    }

    .sm-tittle {
        padding-left: 20px;
        font-size: 24px;
        width: 130px;
        float: left;
    }

    .small-device-menu i {
        padding: 12px;
        color: rgba(var(--theme-dark-blue), 1);
    }

    .left-menu li {
        float: left;
        width: 100%;
    }

    .right-menu li {
        float: left;
        width: 100%;
    }

    .left-menu li,
    .right-menu li {
        color: #4d4d4d;
        text-align: left;
    }

    .logo {
        background: none;
        text-align: unset;
    }

    .active {
        background-position: 4px center;
    }

    .socialNetwork,
    .copyright {
        right: unset;
        left: 24px;
        width: 200px;
    }

    .socialNetwork {
        bottom: 75px;
    }

    .home-container .section-container {
        margin-top: 10%;
    }

    .about-container p,
    .about-container table td,
    .filter-list li,
    .hire-me p {
        font-size: 20px;
    }

    .skill-item {
        font-size: 18px;
        word-break: break-all;
    }

    .banner-intro {
        position: absolute;
        right: 0;
        top: 340px;
        padding-bottom: 20px;
    }

    .close-blog {
        right: 60px;
    }
}

@media (max-width: 760px) {

    .page-title {
        font-size: 52px;
        word-break: break-all;
    }

    .client-testimonial {
        width: 320px;
    }

    .model-content {
        width: 100%;
    }

    .blog-container {
        margin-top: 20px !important;
    }

    .banner-pic {
        background-size: 200px auto;
        background-position: left 22px;
        height: 200px;
    }

    .small-device-logo {
        left: 22px;
    }

    .small-device-menu {
        right: 40px;
    }

    .play-banner {
        max-height: 120px;
    }

    .play-banner h1 {
        text-align: left;
        width: 200px;
        font-size: 28px;
        padding-left: 0px;
    }

    .play-text {
        padding-top: 30px;
    }

    .banner-pic img {
        width: 209px;
        text-align: left;
        margin-top: 2px;
    }

    .banner-intro {
        position: relative;
        right: unset;
        top: unset;
        margin-top: 5px !important;
    }

    .brief {
        margin: 20px 100px 20px 0px;
    }

    nav {
        padding-left: 10px;
    }

    h1 {
        font-size: 24px;
    }

    .title-name {
        font-size: 60px;
    }

    .title-designation {
        font-size: 35px;
    }

    .brief span {
        font-size: 20px;
    }

    .btn-bg,
    .btn-border {
        font-size: 18px;
    }

    .btn-bg {
        background-color: rgba(var(--theme-dark-blue), 1);
        padding: 10px 15px;
    }

    .close-blog {
        right: 40px;
    }
}