/* Fonts section */

@font-face {
    font-family: "Abel";
    src: url("../Fonts/Abel.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("../Fonts/Poppins.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    src: url("../Fonts/Ubuntu.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Quicksand Bold";
    src: url("../Fonts/Quicksand_Bold.woff2") format("woff2");
    font-style: normal;
}

:root {
    --primary-color: rgba(1, 162, 225, 0.5);
    --primary-highlight: #e3ad87;
    --primary-bold: #01A2E1FF;
    --secondary-color: #ffffff;
    --acsent-color: #222;
    --acsent-textColor: dimgray;
    --exp-track: lightgrey;
    --scroll-track: var(--exp-track);
    --black: #111;
    --textGrey: slategrey;
    --menuBG: rgba(1,162, 225, 0.90);
    --disabledBG: #8080809c;
    --disabledText: gray;
    --full-gradient: linear-gradient(-90deg, #e8e2e2 -47%, var(--primary-bold) 100%);
    --mild-gradient: linear-gradient(-90deg, #0034aa14 -47%, var(--primary-color) 100%);
    --separator-Line: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

#noscript-js{
    position: sticky;
    text-align: center;
    width: 100%;
    padding: 1em 0;
    background-color: var(--primary-bold);
    top: 0;
    left: 0;
    z-index: 99999;
}

#noscript-js p{
    color: var(--secondary-color);
    font-family: sans-serif;
    font-size: 1em;
    font-weight: bold;
    margin: 0.5em 0;
}

#noscript-js p:not(:first-of-type){
    color: var(--black);
}

#noscript-js a{
    background-color: var(--acsent-color);
    padding: 0.5em;
    color: var(--primary-highlight);
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5em;
    display: inline-block;
}

html{
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}

*:before,
*:after{
    box-sizing: inherit;
}


a:visited{
    color: inherit;
    /*  todo  a:any-link*/
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--primary-color) var(--scroll-track);
    scrollbar-width: none;
    box-sizing: border-box;
}

body {
	text-rendering: optimizeLegibility;
    letter-spacing: 0.5px;
}

.contentSourceLoading{
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    cursor: default;
}

.loadingScreen {
    height: 100vh;
    color: #fff;
    font: 300 16px Helvetica, Arial, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: aliceblue;
    width: 100vw;
    position: fixed;
    z-index: 9999999999;
    overflow: hidden;
}

.loadingContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: 0 0 20px;
}

.loadingContent-heading {
    color: var(--acsent-textColor);
    margin: 20px 0;
    text-transform: uppercase;
    font-variant: small-caps;
    font-size: 16px;
    line-height: 1.5px;
    letter-spacing: 1px;
}

.loadingContent-footNote {
    color: var(--acsent-textColor);
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 98%;
    text-indent: 20px;
    text-align: right;
    font-size: 12px;
}

.dualRingSpinner {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.dualRingSpinner:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid var(--primary-color);
    border-color: var(--primary-color) transparent var(--primary-color) transparent;
    animation: spinnerRotate 1.2s linear infinite;
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    /*  animation-name: fadeOut;
      animation-duration: 2s;
      animation-timing-function: cubic-bezier(0.83, -0.25, 1, -0.31);
          animation-delay: 0s;
          animation-iteration-count: 1;
          animation-direction: normal;
      animation-fill-mode: forwards;
          animation-play-state: running;*/

    -webkit-animation: fadeOut 2s cubic-bezier(0.83, -0.25, 1, -0.31) forwards;
    -moz-animation: fadeOut 2s cubic-bezier(0.83, -0.25, 1, -0.31) forwards;
    -o-animation: fadeOut 2s cubic-bezier(0.83, -0.25, 1, -0.31) forwards;
    animation: fadeOut 2s cubic-bezier(0.83, -0.25, 1, -0.31) forwards;
}


::-webkit-scrollbar {
    width: 0;
}

::-webkit-scrollbar-track {
    background: var(--scroll-track);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    opacity: 0.7;
}

html::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}



#jb-Modal{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    z-index: 999999;
    backdrop-filter: blur(16px);
}

/* Modal Content (image) */

.jb-ModalContent {
    margin: auto;
    display: block;
    height: 90%;
    max-height: 840px;
}

/* Caption of Modal Image */
#jb-ModalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--secondary-color);
    padding: 10px 0;
    min-height: 60px;
}

/* Add Animation */
.jb-ModalContent,
#jb-ModalCaption{
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */

.ModalClose {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--secondary-color);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.ModalClose:hover,
.ModalClose:focus {
    color: var(--acsent-textColor);
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){

    .jb-ModalContent{
        width: 100%;
    }
}



section {
    padding: 100px 0;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.about, .services, .skills, .work, .history, .contact, .reviews, footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.history .history-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.history .history-content.nowrap {
    flex-wrap: nowrap;
}

section.about {
    padding: 100px 0 0 0;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

section .title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 180px;
    height: 3px;
    background: var(--black);
    transform: translateX(-50%);
}

section.skills .title::before {
    width: 225px;
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 18px;
    color: var(--primary-color);
    padding: 0 5px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

/* navbar styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 99999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 15px 0;
    background: var(--primary-color);
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo a,
.navbar .logo a {
    color: var(--secondary-color);
    font-size: 35px;
    font-weight: 600;
}
.logo a span,
.navbar .logo a span {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar.sticky .logo a span {
    color: var(--secondary-color);
}
.logo .logo-initials,
.navbar .logo .logo-initials {
    font-variant: small-caps;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    opacity: 0.7;
}

.navbar.sticky .menu li a:hover {
    color: var(--secondary-color);
}

/* menu btn styling */
.menu-btn {
    color: var(--secondary-color);
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.btnToTop {
    position: fixed;
    height: 45px;
    width: 42px;
    background: var(--primary-color);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: var(--secondary-color);
    z-index: 99;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.btnToTop.show {
    bottom: 16px;
    opacity: 0.5;
    pointer-events: auto;
}

.btnToTop.show:hover {
    opacity: 1;
}


/* banner section styling */
.banner {
    display: flex;
    height: 100vh;
    color: var(--secondary-color);
    min-height: 500px;
    background: url("../Images/banner.webp") no-repeat fixed center;
    font-family: 'Ubuntu', sans-serif;
    background-size: cover;
}

.banner .max-width {
    width: 100%;
    display: flex;
}

.banner .max-width .row {
    margin-right: 0;
}

.banner .banner-content .banner-text_1 {
    font-size: 27px;
    color: var(--primary-color);
}

.banner .banner-content .banner-text_2 {
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    text-transform: uppercase;
}

.banner .banner-content .banner-text_3 {
    font-size: 40px;
    margin: 5px 0;
    color: var(--primary-color);
}

.banner .banner-content .banner-text_3 span {
    color: var(--secondary-color);
    font-weight: 500;
}

.typed-cursor {
    color: var(--secondary-color);
}

.banner .banner-content .banner-textQuote {
    font-size: 11px;
    font-style: italic;
    font-variant: all-small-caps;
    opacity: 0.7;
}

.textHighlight {
    color: var(--primary-color);
}

.banner-textQuote .textHighlight {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-style: solid;
}

.banner .banner-content a.banner-getStartedBtn {
    display: inline-block;
    color: var(--secondary-color);
    background: var(--primary-color);
    font-size: 20px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.banner .banner-showMore{
    position: absolute;
    left: 50%;
    width: 120px;
    margin-left: -60px;
    opacity: .6;
    bottom: 20px;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
}

.banner .banner-content a:hover {
    color: var(--primary-color);
    background: none;
}

/* about section styling */
.about .title::after {
    content: "Who am i";
    text-transform: uppercase;
    font-variant: all-petite-caps;
}

.about .about-content .left {
    width: 45%;
}

.about .about-content .left img {
    height: 900px;
    object-fit: cover;
    border-radius: 6px;
    opacity: 0.25;
    filter: grayscale(1);
}

.about .about-content .right {
    width: 55%;
    z-index: 99;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right .text span {
    color: var(--primary-color);
}

.about .about-content .right p {
    text-align: justify;
    text-justify: inter-word;
}

.about .about-content .right p:not(:last-of-type) {
    margin-bottom: 10px;
}

.about .about-content .right a {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about .about-content .right a:hover {
    color: var(--primary-color);
    background: none;
}

.about .about-content .right a.about-button {
    display: flex;
    height: 50px;
    padding: 0;
    background: var(--primary-color);
    border: none;
    outline: none;
    border-radius: 6px;
    overflow: hidden;
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    width: 222px;
}

.about-button:hover,
.about-button:active {
    filter: brightness(0.9);
}

.about-button:active {
    transform: scale(0.98);
}

.about-buttonText,
.about-buttonIcon {
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    color: var(--secondary-color);
    height: 100%;
}

.about-buttonIcon {
    font-size: 1.5em;
    background: var(--primary-bold);
    opacity: 0.3;
    padding: 0 8px;
}

.about-buttonIcon svg {
    height: 35px;
    fill: var(--secondary-color);
}


select.documentSelection{
    width: 100%;
    padding: 8px 16px;
    border: 0 solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    appearance: none;
    outline: 0;
    font-variant: small-caps;
    text-transform: lowercase;
    font-weight: 900;
    text-align: left;
    letter-spacing: 4px;
    background: #ecf0f3;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    color: #31344b;
}

select.documentSelection:hover {
    color: var(--primary-color);
}

select.documentSelection option {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 0 0 4px 4px;
    border: 0 solid transparent;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--secondary-color);
    font-variant: small-caps;
    text-transform: lowercase;
    font-weight: 600;
    text-align: left;
}


select.documentSelection > option[disabled] {
    text-align: center;
    color: transparent;
    background: transparent;
}

.custom-select{
    width: calc(50vw - 50px);
    margin: 20px;
    position: relative;
    min-width: 257px;
}

.custom-select::before{
    color: red;
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #31344b transparent transparent transparent;

}

select.documentSelection optgroup {
    text-align: left;
    color: var(--textGrey);
}

.resumeBlock{
    display: flex;
    flex-wrap: wrap;
}

.resumeForm {
    margin: 10px 20px 20px 20px;
}

.resumeForm label {
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    color: #31344b;;
    text-transform: capitalize;
    margin: 0;
}

.resumeForm label + input {
    font-size: 1rem;
    border: solid 2px transparent;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    color: #31344b;
    background: #eeeefe;
    border-radius: 0.5rem;
    outline: 0;
    max-width: 270px;
    min-width: 230px;
}

@media (max-width: 320px){
    .skills .skills-content .right .skillTabStack{
        justify-content: center;
    }
    .max-width {
        padding: 0 5px;
    }

    .custom-select {
        margin: 16px 0;
    }

    .contact .contact-content .contact-details .contact-detailsInfo {
        font-size: 13px;
    }



}



/* services section styling */
.services,
.work,
.contact {
    color: var(--secondary-color);
    background: var(--black);
}

.services .title::before,
.work .title::before,
.contact .title::before {
    background: var(--secondary-color);
}

.services .title::after,
.work .title::after,
.contact .title::after {
    background: var(--black);
    content: "Things i do";
    text-transform: uppercase;
    font-variant: all-petite-caps;
}

.services .serv-content .serv-offer {
    margin: 20px 0;
    width: calc(33% - 20px);
    height: 270px;
    background: var(--acsent-color);
    text-align: center;
    border-radius: 6px;
    padding: 35px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services .serv-content .serv-offer.limit {
    margin: 20px 20px;
    width: 33%;
}

.services .serv-content .serv-offer.serv-research {
    background: gray;
    opacity: 0.4;
    height: 270px;
    filter: blur(1px);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;

}

.services .serv-content .serv-offer:hover {
    background: var(--primary-color);
}

.services .serv-content .serv-offer .serv-offerContent {
    transition: all 0.3s ease;
}

.services .serv-content .serv-offer:hover .serv-offerContent {
    transform: scale(1.05);
}

.services .serv-content .serv-offer i {
    font-size: 50px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.services .serv-content .serv-offer:hover i {
    color: var(--secondary-color);
}

.services .serv-content .serv-offer svg.customIcon {
    height: 50px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.services .serv-content .serv-offer:hover svg.customIcon  {
    color: var(--secondary-color);
}


.services .serv-content .serv-offer .text {
    font-size: 25px;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.services .serv-content .serv-offer p {
    font-size: 0.97rem;
}

/* skills section styling */

.skills .title::after {
    content: "Applicable Knowlege";
    text-transform: uppercase;
    font-variant: all-petite-caps;
}

.skills .skills-content .skills-Column {
    width: calc(50% - 30px);
}

.skills .skills-content .left .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skills .skills-content .left .skills-desc{
    text-align: justify;
    text-justify: inter-word;
}

.skills .skills-content .left .skills-desc .skills-moreContent {
    display: none;
}

.skills .skills-content .left a {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.skills .skills-content .left a:hover {
    color: var(--primary-color);
    background: none;
}

.skills .skills-content .right .techStackContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.skills .skills-content .right .techStackContainer .techStack-Label{
    letter-spacing: 0.125rem;
    font-weight: 800;
    opacity: 0.7;
}

.skills .skills-content .right .skillSet-btn-Label{
    display: inline-block;
    color: var(--black);
    text-transform: uppercase;
    border: none;
    padding: 0.1em 0.6em;
    outline: none;
    text-align: center;
    font-size: 0.9em;
    margin: 0 0.2em;
    background-color: var(--secondary-color);
    border-radius: 0 0 2px 2px;
    opacity: 0.8;
}

.skills .skills-content .right .preferredStack{
    display: flex;
    height: 25px;
    justify-content: center;
}

.skills .skills-content .right .preferredStack img{
    margin-left: 0.5em;
    align-self: center;
}

.skills .skills-content .right .preferredStack .stackSlash {
    font-weight: 900;
    font-size: 20px;
}

.skills .skills-content .right .preferredStack .stackSlash + img {
    margin-left: 0.125em;
}

.skills .skills-content .right .skillSet-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-style: solid;
    border-color: var(--exp-track);
    border-right-style: solid;
    border-right-color: transparent;
    border-left-style: solid;
    border-left-color: transparent;
    border-bottom-style: none;
    border-width: 3px;
    padding: 5px;
    cursor: pointer;
    margin: 20px 0;
}

.skills .skills-content .right .skillSet-btns .skillSet-btn,
.skills .skills-content .right .skillSet-btns a:any-link,
.tab button{
    display: inline-block;
    color: var(--secondary-color);
    border: none;
    padding: 5px;
    outline: none;
    text-align: center;
    font-size: 18px;
    margin: 0 0.2em;
    border-radius: 5px;
    opacity: 0.7;
    background: var(--primary-color);
    text-decoration: none;
}

.skills .skills-content .right .skillSet-btns .skillSet-btn.active {
    border-radius: 5px 2px 5px 2px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--exp-track);
}

.skills .skills-content .right .skillSet-btns .skillSet-btn:hover {
    text-decoration: none;
    opacity: 1;
}

.skills .skills-content .right .skillSet-btns .skillSet-btn:active {
    transform: scale(0.98);
}

.skills .skills-content .right .skillTabStack{
    font-variant: all-petite-caps;
    font-size: 40px;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
}


.skills .skills-content .right .skillTabStack .skillTabStack-item{
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.skills .skills-content .right .skillTabStack .skillTabStack-imageBlock{
    margin: auto;
}

.skills .skills-content .right .skillTabStack .skillTabStack-imageBlock img{
   height: 40px;
   width: 100%;
}


.skills .skills-content .right .skillTabStack .skillTabStack-itemName{
    font-weight: 700;
    text-align: center;
    font-size: 18px;
}

.skills .skills-content .right .skillBars {
    margin-bottom: 15px;
}

.skills .skills-content .right .skillDetails {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}

.skills .skills-content .right span {
    font-weight: 500;
    font-size: 18px;
}

.skills .skills-content .right .skillProgress {
    height: 5px;
    width: 100%;
    background: var(--exp-track);
    position: relative;
}

.skills .skills-content .right .skillProgress::before,
.skills .skills-content .right .skillResearch::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary-color);
    border-radius: 50px 0 0 50px;
}

.skills .skills-content .right .skillResearch::before {
    width: 1%;
    background: red;
    content: "researching ...";
    letter-spacing: 0.5px;
    text-indent: 7px;
    font-variant: small-caps;
    font-size: 12px;
    line-height: 20px;
    font-style: oblique;
    font-weight: 100;
    text-transform: lowercase;
}

.skills .skills-content .right .skillResearch.r-0::before {
    width: 0.5%;
    content: "...";
}

.skills .skills-content .right .skillResearch.r-1::before {
    width: 5%;
    content: "...";
}

.skills .skills-content .right .skillResearch.r-2::before {
    width: 10%;
    content: "...";
}

.skills .skills-content .right .skillResearch.r-3::before {
    width: 15%;
    content: "...";
}

.skills .skills-content .right .r-4::before {
    width: 20%;
}

.skills .skills-content .right .r-5::before {
    width: 25%;
}

.skills .skills-content .right .r-6::before {
    width: 30%;
}

.skills .skills-content .right .r-7::before {
    width: 35%;
}

.skills .skills-content .right .r-8::before {
    width: 40%;
}

.skills .skills-content .right .r-9::before {
    width: 45%;
}

.skills .skills-content .right .r-10::before {
    width: 50%;
}

.skills .skills-content .right .r-11::before {
    width: 55%;
}

.skills .skills-content .right .r-12::before {
    width: 60%;
}

.skills .skills-content .right .r-13::before {
    width: 65%;
}

.skills .skills-content .right .r-14::before {
    width: 70%;
}

.skills .skills-content .right .r-15::before {
    width: 75%;
}

.skills .skills-content .right .r-16::before {
    width: 80%;
}

.skills .skills-content .right .r-17::before {
    width: 85%;
}

.skills .skills-content .right .r-18::before {
    width: 90%;
}

.skills .skills-content .right .r-19::before {
    width: 95%;
}

.skills .skills-content .right .r-20::before {
    width: 99%;
}

#appDev,
#technical,
#creative{
    display: none;
}

#technical {
    overflow-y: scroll;
    /*width: 500px;*/
    width: 100%; /* sm fix */
    height: 289px;
    font-family: Abel, Arial, Verdana, sans-serif;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--scroll-track);
}

#technical::-webkit-scrollbar {
    width: 10px;
}

#technical::-webkit-scrollbar-thumb {
    border-radius: 50px;
}

#technical .skillBars{
    width: 98%;
}

.centerAlign {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.skillCardBlock{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.skillCard {
    /*width: 450px;*/
    width: 100%; /* sm fix */
    height: 250px;
    background-color: var(--secondary-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0 2px 5px -1px, rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin: 1rem 0 0;
}

.skillCard:first-of-type{
    margin-top: 1.5rem;
}


.skillCard h1 {
    text-align: center;
    margin: 20px 0;
}

.skillCard .additionalDetails {
    position: absolute;
    width: 150px;
    height: 100%;
    background: var(--full-gradient);
    transition: width 0.4s;
    overflow: hidden;
    z-index: 2;
}


.skillCard:hover .additionalDetails {
    width: 100%;
    border-radius: 0 5px 5px 0;
}

.skillCard .additionalDetails .certSlip {
    width: 150px;
    height: 100%;
    position: relative;
    float: left;
}

.skillCard .additionalDetails .certSlip::after {
    content: "";
    display: block;
    position: absolute;
    top: 5%;
    right: -2px;
    height: 90%;
    border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.skillCard .additionalDetails .certSlip .certName,
.skillCard .additionalDetails .certSlip .certInst {
    top: 15%;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.125rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
}

.skillCard .additionalDetails .certSlip .certInst {
    top: 85%;
}

.skillCard .additionalDetails .certSlip svg {
    top: 50%;
}

.skillCard .additionalDetails .certDetails {
    /*width: 300px;*/
    width: 66%; /* sm fix */
    float: left;
    position: absolute;
    left: 150px;
    height: 100%;
    opacity: 0;
    transition-property: all;
    transition-duration: 250ms;
    transition-timing-function: ease-in;
}

.skillCard:hover .additionalDetails .certDetails{
    opacity: 1;
}

.skillCard .additionalDetails .certDetails h2 {
    color: var(--secondary-color);
    margin: 20px;
    font-size: 1.5em;
}


.skillCard .additionalDetails .certInfo {
    margin: 0 1rem;
    color: var(--secondary-color);
    font-size: 1rem;
}

.skillCard .additionalDetails .certInfo span + span {
    float: right;
}


.skillCard .generalDetails {
    /*width: 300px;*/
    width: 66%; /* sm fix */
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 0 1rem 1rem;
}

.skillCard .generalDetails h2{
    margin: 5px;
}

.skillCard .generalDetails .certNote,
.skillCard .additionalDetails .certLink {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.9em;
}

.skillCard .generalDetails .certNote{
    color: var(--acsent-textColor);
}

.skillCard .additionalDetails .certLink {
    left: 1rem;
    color: var(--secondary-color);
}

.skillCard.certResearch {
    filter: blur(0.5px);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    opacity: 0.7;
}

.skillCard.certResearch .additionalDetails {
    background: linear-gradient(-90deg, #0034aa14 0, var(--primary-color) 100%);
}

.skillCard.certResearch::before {
    width: 100%;
    background: red;
    content: "researching ...";
    letter-spacing: 0.5px;
    text-indent: 30px;
    font-variant: small-caps;
    font-style: oblique;
    font-weight: 100;
    text-transform: lowercase;
    color: white;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 9;
    mix-blend-mode: multiply;
}

.skillCard.certResearch.cr-10::before{
    height: 100%;
}



.skillCard .skillCard-cert{
    padding: 1.3rem;
}

.skillCard .Ubiquiti{
    background: radial-gradient(100% 100% at 50% 0,#006fff 0,#003c9e 100%);
    height: 100%;
    width: 100%;
}

.skillCard .Vmware{
    background: radial-gradient(100% 100% at 50% 0,#0091da 0,#78be20 100%);
    height: 100%;
    width: 100%;
}

.skillCard .skillCard-cert-img{
    height: 180px;
    margin: auto auto 0.5rem;
    width: 227px;
    display: block;
    filter: invert(1) drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.55));
}

.skillCard .skillCard-cert-text{
    text-align: center;
    padding: 0 1.3rem;
    font-style: italic;
    font-variant: all-small-caps;
    letter-spacing: 2.5px;
    color: #717074;
}


/* work section styling */
.work .title::after {
    content: "Public Projects";
    text-transform: uppercase;
    font-variant: all-petite-caps;
}

.tab {
    overflow: hidden;
    height: 32px;
    display: flex;
}

.tab button {
    width: 100%;
}

.history .tab button {
    color: var(--black);
}

.tab button:hover {
    opacity: 1;
    cursor: pointer;
}

.tab button.active {
    border-radius: 5px 2px 5px 2px;
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
    opacity: 0.7;
}

.tab button .active{
    color: red;
}

.setVisible {
    padding: 16px 16px;
    border: none;
}


.work .vanillaCarousel{
    width: 98%;
    overflow: hidden;
}

.work .vanillaCarousel .vanillaCarousel_inner{
    position: relative;
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 20px;
    scrollbar-width: none;
    scrollbar-color: var(--primary-color) transparent;
}

.work .vanillaCarousel .vanillaCarousel_inner::-webkit-scrollbar {
    width: 0;
}

.work .vanillaCarousel .vanillaCarousel_inner::-webkit-scrollbar-track {
    background-color: transparent;
}

.work .vanillaCarousel .vanillaCarousel_inner::-webkit-scrollbar-thumb {
    border-radius: 50px;
}

.work .vanillaCarousel .vanillaCarousel_inner .carouselItem{
    position: relative;
}

.work .vanillaCarousel .vanillaCarousel_inner .carouselItem .tag{
    position: absolute;
    right: 0;
    padding: 5px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px 0 0 4px;
    border: 1px solid var(--primary-bold);
    border-top: none;
    border-right: none;
    color: var(--primary-bold);
}

.work .vanillaCarousel .vanillaCarousel_inner .carouselItem .graphics::before{
    content: 'Graphics';
}

.work .vanillaCarousel .vanillaCarousel_inner .carouselItem .photography::before{
    content: 'Photography';
}

.work .vanillaCarousel .vanillaCarousel_inner .work-image {
    background: var(--acsent-color);
    border-radius: 6px;
    text-align: center;
    overflow: hidden;
    width: 350px;
    height: 350px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.work .vanillaCarousel .vanillaCarousel_inner .work-image:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.work .vanillaCarousel .vanilla-dots {
    text-align: center;
    margin-top: 20px;
}

.work .vanillaCarousel .vanilla-dots .vanilla-dot {
    height: 26px;
    width: 26px;
    font-size: 26px;
    margin: 0 5px;
    outline: none;
    border-radius: 50%;
    /*border: 2px solid var(--primary-color);*/
    transition: all 0.3s ease;
}

.work .vanillaCarousel .vanilla-dots .vanilla-dot .vanilla-btn {
    color: var(--black);
}

.work .vanillaCarousel .vanilla-dots .vanilla-dot.active,
.work .vanillaCarousel .vanilla-dots .vanilla-dot:hover {
    background: var(--primary-color);
    border: none;
}

.img_expandable:hover{
    cursor: pointer;
}

/* history section styling */

.history .title::after {
    content: "Experiences";
    text-transform: uppercase;
    font-variant: all-petite-caps;
}

.history-job {
    background-color: linear-gradient(-90deg, var(--exp-track) -47%, var(--primary-color) 100%);
    padding: 40px 30px;
    border-radius: 10px;
    margin: 0 20px 30px;
    min-height: 300px;
    min-width: 540px;
    width: available;
    width: -moz-available;
    width: -webkit-fill-available;
    box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}


.history-job:hover {
    background: var(--primary-color);
    cursor: pointer;
    color: var(--secondary-color);
    box-shadow: none;
}

.history-job .history-jobSlug {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.history-job .history-jobDate {
    background: var(--secondary-color);
    color: var(--acsent-color);
    border: 1px solid transparent;
    border-right-color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding: 0 28px;
    overflow: hidden;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    cursor: pointer;
    text-align: center;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.history-job:hover .history-jobDate {
    border: 1px solid var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.history-job .history-leftCol h4 {
    color: var(--black);
    line-height: 1.5em;
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 1.5px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-weight: 700;
}

.history-job .history-leftCol p {
    color: var(--acsent-textColor);
}

.history-job .history-jobDesc{
    text-align: justify;
    text-justify: inter-word;
}


.history-job .history-jobDesc p{
    margin-top: 12px;
}


.history-job .history-jobExtraTitle{
    position: relative;
    left: 20px;
    font-variant: all-petite-caps;
    font-weight: 700;
    color: red;
    padding-top: 20px;
}

.history-job .history-jobExtraTitle::before{
    content: " ";
    display: block;
    width: 25%;
    background-color: var(--primary-color);
    height: 1px;
    border-radius: 25px;

}

.history-jobExtra{
    color: var(--acsent-textColor);
    margin-left: 35px;
    font-variant: all-petite-caps;
    font-weight: 700;
}

/* review section styling */

.reviews .title::after {
    color: var(--secondary-color);
    background: #80d0f0;
    content: "Reviews";
    font-variant: all-petite-caps;
}

#review {
    color: var(--black);
    background: var(--primary-color);
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#review-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    min-height: auto;
    height: 400px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    position: relative;
}

#review-left-zone .review-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-right: 2px solid #cccccc;
    list-style: none;
}


#review-left-zone {
    width: 35%;
    margin: 2rem 0;
    padding: 0 0 0px 20px;
}

.review-category input {
    display: none;
}

.review-category label {
    display: block;
    opacity: 0.5;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: relative;
}

.review-category label:hover {
    opacity: 0.75;
    cursor: pointer;
}

#review-right-zone {
    height: 100%;
    width: 65%;
    display: flex;
    margin: 0;
}

label.review-category_1:before,
label.review-category_2:before,
label.review-category_3:before{
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
}

label.review-category_1:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512' fill='%2301A2E17F'%3E%3Cpath d='M257.981 272.971L63.638 467.314c-9.373 9.373-24.569 9.373-33.941 0L7.029 444.647c-9.357-9.357-9.375-24.522-.04-33.901L161.011 256 6.99 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L257.981 239.03c9.373 9.372 9.373 24.568 0 33.941zM640 456v-32c0-13.255-10.745-24-24-24H312c-13.255 0-24 10.745-24 24v32c0 13.255 10.745 24 24 24h304c13.255 0 24-10.745 24-24z'/%3E%3C/svg%3E");
}

label.review-category_2:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512' fill='%2301A2E17F'%3E%3Cpath d='M368 32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32V64c0-17.67-14.33-32-32-32zM208 88h-84.75C113.75 64.56 90.84 48 64 48 28.66 48 0 76.65 0 112s28.66 64 64 64c26.84 0 49.75-16.56 59.25-40h79.73c-55.37 32.52-95.86 87.32-109.54 152h49.4c11.3-41.61 36.77-77.21 71.04-101.56-3.7-8.08-5.88-16.99-5.88-26.44V88zm-48 232H64c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32zM576 48c-26.84 0-49.75 16.56-59.25 40H432v72c0 9.45-2.19 18.36-5.88 26.44 34.27 24.35 59.74 59.95 71.04 101.56h49.4c-13.68-64.68-54.17-119.48-109.54-152h79.73c9.5 23.44 32.41 40 59.25 40 35.34 0 64-28.65 64-64s-28.66-64-64-64zm0 272h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-96c0-17.67-14.33-32-32-32z'/%3E%3C/svg%3E");
}

label.review-category_3:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%2301A2E17F'%3E%3Cpath d='M502.63 214.63l-45.25-45.25c-6-6-14.14-9.37-22.63-9.37H384V80c0-26.51-21.49-48-48-48H176c-26.51 0-48 21.49-48 48v80H77.25c-8.49 0-16.62 3.37-22.63 9.37L9.37 214.63c-6 6-9.37 14.14-9.37 22.63V320h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-16c0-8.84 7.16-16 16-16h32c8.84 0 16 7.16 16 16v16h128v-82.75c0-8.48-3.37-16.62-9.37-22.62zM320 160H192V96h128v64zm64 208c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H192v16c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-16H0v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96H384v16z'/%3E%3C/svg%3E");
}


.review-category_1:hover,
.review-category_2:hover,
.review-category_3:hover{
    background-image: radial-gradient(circle, #22222240, #0034aa14 96%);
    font-size: 1.2rem;
    font-variant: all-small-caps;
    letter-spacing: 3px;
    color: black;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
}


.review-item{
    padding: 5rem;
    width: 92%;
    margin: 0;
    opacity: 1;
}

.review-category input:checked ~ label {
    opacity: 1;
    -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    color: var(--primary-bold);
    border: 0;
    border-right: solid 4px var(--primary-color);
}

.review-details {
    font-size: 1em;
    color: #888;
    line-height: 1.8;
    margin-bottom: 30px;
}

.review-details i {
    color: var(--primary-color);
    font-size: 35px;
    margin: 3px;
}


.review-details .fa-quote-left::before {

    content: "\f10d";

}

.review-author .review-img img {
    padding: 3px;
    display: inline-block;
    border-radius: 50px;
    vertical-align: middle;
    width: 18px;
    border: 0;
}

.review-author .review-img img.review-photo {
    width: 50px;
    border: 2px dashed var(--primary-color);
}

.review-author .review-info{
    display: inline-flex;
    flex-direction: column;
}

.review-author .review-name {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: bold;
    margin-left: 10px;
}

.review-author .review-titles {
    font-size: 15px;
    color: #9999;
    font-style: italic;
    display: inline;
}

.review-nav {
    position: absolute;
    bottom: 20px;
    right: 15px;
}

button.review-next,
button.review-prev {
    background: var(--primary-bold);
    color: var(--secondary-color);
    padding: 5px 14px;
    border-radius: 5px;
    font-size: 20px;
    margin-right: 5px;
    border: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button.review-next:active,
button.review-prev:active {
    transform: scale(0.98);
}

.disabled{
    background: lightgrey !important;
    user-select: none !important;
    pointer-events: none !important;
    filter: blur(1px) !important;
}

/* contact section styling */
.contact .title::after {
    content: "Lets Chat";
    text-transform: uppercase;
    font-variant: all-petite-caps;
}

.contact .contact-content .contact-Column {
    width: calc(50% - 30px);
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p {
    text-align: justify;
}

.contact .contact-content .left .contact-icons {
    margin: 10px 0;
}

.contact .contact-content .row {
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .contact-details {
    margin-left: 30px;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: var(--primary-color);
}

.contact .contact-content .row svg.customIcon {
    /*height: 25px;*/
    width: 25px;
    color: var(--primary-color);
}

.contact .contact-content .left .contact-icons .servicesOfferedBox{
    overflow-y: scroll;
    height:160px
}

.contact .contact-content .contact-details .contact-detailsHeading {
    font-weight: 500;
}

.contact .contact-content .contact-details .contact-detailsInfo {
    color: var(--acsent-textColor);
}

.contact .contact-content .contact-details .contact-detailsInfo span {
    color: var(--primary-color);
}

.contact .right form .contact-fieldSet {
    display: flex;
}

.contact .right form .contact-formField,
.contact .right form .contact-fieldSet .contact-formField {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .contact-formMessage {
    height: 80px;
    width: 100%;
}

.contact .right form .contact-formName {
    margin-right: 10px;
}

.contact .right form .contact-formField input,
.contact .right form .contact-formMessage textarea {
    height: 100%;
    width: 100%;
    border: 1px solid var(--exp-track);
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .contact-formField input:focus,
.contact .right form .contact-formMessage textarea:focus {
    border-color: var(--exp-track);
}

.contact .right form .contact-formMessage textarea {
    padding-top: 10px;
    resize: none;
}

.contact .right form .contact-formBtnSet {
    display: flex;
    align-items: center;
}

.right form .contact-formBtnSet button {
    color: var(--secondary-color);
    display: block;
    width: 160px;
    height: 45px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    flex-wrap: nowrap;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.right form .contact-formBtnSet button:hover {
    color: var(--primary-color);
    background: none;
}

.right form button[data-disabled="true"]:hover,
.right form button[data-disabled="true"],
button[data-disabled="true"],
button[data-disabled="true"]:hover{
    border: 1px solid var(--secondary-color);
    background: var(--disabledBG);
    color: var(--disabledText);
    pointer-events: none;
    cursor: not-allowed;
}

/* footer section styling */
footer {
    background: var(--black);
    padding: 15px 23px;
    color: var(--secondary-color);
    text-align: center;
}

footer span .company-copyright {
    color: var(--primary-color);
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}


/* sidebox styling section */

#sideBox.sideBox-Content {
    display: none;
    position: fixed;
    z-index: 99;
    bottom: 65px;
    right: -402px;
    width: 300px;
    border-top: 4px solid var(--primary-bold);
    border-bottom: 0;
    padding: 10px 20px 20px;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    background: var(--mild-gradient);
    animation: FadeInDown .9s;
}

#sideBox.sideBox-Content,
.servicesOfferedBox{

    scrollbar-width: auto;
    scrollbar-color: var(--primary-color) var(--scroll-track);
}

#sideBox.sideBox-Content::-webkit-scrollbar,
.servicesOfferedBox::-webkit-scrollbar{
    width: 10px;
}

#sideBox.sideBox-Content::-webkit-scrollbar-thumb,
.servicesOfferedBox::-webkit-scrollbar-thumb{
    border-radius: 50px;
}

#sideBox.sideBox-Content.show {
    right: -22px;
    left: auto;
    overflow-y: scroll;
    margin: 20px;
    height: 450px;
    border-radius: 0 0 0 10px;
}

#sideBox-close {
    position: fixed;
    right: 274px;
    border-radius: 0 0 10px 0;
    padding: 1px 8px 3px;
    color: var(--secondary-color);
    font-size: 19px
}
/*#sideBox-close {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    border-radius: 0 0 10px 0;*/
/*    padding: 1px 8px 3px;*/
/*    background: var(--primary-bold);*/
/*    color: var(--secondary-color);*/
/*    font-size: 19px*/
/*}*/

#sideBox-close:hover i {
    opacity: .7
}

.sideBox-Content .fa {
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: none
}

.sideBox-Content .fa-close:before {
    content: "\f00d";
}


.sideBox-Content .sideBox-header {
    padding: 0;
    overflow: hidden
}

.sideBox-Content .sideBox-header .sideBox-headerText {
    font-size: 22px;
    font-family: BebasNeueRegular, arial, Georgia, serif;
    text-align: center;
    margin: 10px 0;
    display: block;
    float: none;
    text-transform: uppercase;
    color: var(--secondary-color);
}


.sideBox-Content .sideBox-post {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.sideBox-Content .sideBox-post:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.sideBox-post:after {
    content: "";
    background-image: var(--separator-Line);
    position: absolute;
    height: 2px;
    width: 90%;
    margin-top: 8px;
}

.sideBox-Content .sideBox-post .sideBox-postTitle{
    font-family: BebasNeueRegular, arial, Georgia, serif;
    font-size: 22px;
    margin: 10px 0 8px;
    text-align: center;
    text-transform: uppercase;
    font-variant: small-caps;
    color: var(--secondary-color);
}

.sideBox-Content .sideBox-post .sideBox-postTitle a{
    color: var(--secondary-color);
}


.sideBox-Content .sideBox-post .sideBox-postTitle > a span{
    display: block;
    font-size: 12px;
    color: var(--primary-highlight);
    background-image: radial-gradient(circle, #000000, #0034aa14 96%);
}

.sideBox-Content .sideBox-post .sideBox-postText {
    line-height: 20px;
    text-align: justify;
    text-justify: inter-word;
    color: var(--secondary-color);
    padding: 3px 12px;
    background: linear-gradient(-90deg, #0034aa14 -47%, #095979 100%);
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.30) 0 30px 60px -30px, rgba(10, 37, 64, 0.35) 0 -2px 6px 0 inset;
}


.sideBox-Content .sideBox-post .sideBox-thumbnail a {
    display: block;
    font-size: 0;
}

.sideBox-Content .sideBox-post .sideBox-thumbnail img {
    height: auto;
    max-width: 100%;
    width: 100%;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    border-radius: 11px;
    box-shadow: #80d0f0 2px 5px 10px 0;
    background-color: #d2cbcbc4;
    display: block;
}


.sideBox-Content .sideBox-post .sideBox-thumbnail a:hover img {
    opacity: .3;
}

.sideBox-Content .sideBox-post .sideBox-thumbnail a:hover .sideBox-icon:before {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.sideBox-Content .sideBox-post .sideBox-icon:before {
    content: '\f15c';
    color: var(--secondary-color);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 3px solid var(--secondary-color);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 35px;
    margin: -20px 0 0 -20px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

/* modal pop up styling */

.showPopUp {
    animation: showPopUp 0.3s;
}

.slideFromTop,
.showPopUp[data-animation=slide-from-top] {
    animation: slideFromTop 0.3s;
}
.slideFromBottom,
.showPopUp[data-animation=slide-from-bottom]{
    animation: slideFromBottom 0.3s;
}
.hidePopUp {
    --opacity: 0;
    animation: hidePopUp 0.3s forwards;
}

.slideToTop,
.hidePopUp[data-animation=slide-from-top] {
    --opacity: 0;
    animation: slideToTop 0.3s forwards;
}
.slideToBottom,
.hidePopUp[data-animation=slide-from-bottom] {
    --opacity: 0;
    animation: slideToBottom 0.3s forwards;
}

.popupSubHeading,
.popupHeading {
    text-transform: lowercase;
    font-variant: small-caps;
    font-weight: 600;
    font-size: 1.2rem;
    margin: auto;
}

.popupSubHeading {
    margin: 20px auto;
    color: var(--primary-bold);
    letter-spacing: 1.2px;
    font-weight: 500;
}

.statusBlockList{
    background: #eeeefe;
    border: 0 solid transparent;
    outline: 0;
    border-radius: 5px;
    overflow-y: scroll;
    height: 2.3rem;
    padding: 3px;
    margin: 15px 0;
}


.animateSuccessTip {
    animation: animateSuccessTip 0.75s;
}
.animateSuccessLong {
    animation: animateSuccessLong 0.75s;
}
.pu-icon.pu-success.animate::after {
    animation: rotatePlaceholder 4.25s ease-in;
}

.popUp-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10400;
    backdrop-filter: blur(16px);
}

.popUp {
    background-color: white;
    width: 478px;
    padding: 17px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    z-index: 20000;
}

.popUp button[disabled] {
    opacity: .6;
    cursor: default;
}

.popUp .pu-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    border-radius: 50%;
    margin: 20px auto;
    position: relative;
    box-sizing: content-box;
}
.popUp .pu-icon.pu-error {
    border-color: #d43f3a;
}
.popUp .pu-icon.pu-error .pu-x-mark {
    position: relative;
    display: block;
}
.popUp .pu-icon.pu-error .pu-line {
    position: absolute;
    height: 5px;
    width: 47px;
    background-color: #d9534f;
    display: block;
    top: 37px;
    border-radius: 2px;
}
.popUp .pu-icon.pu-error .pu-line.pu-left {
    transform: rotate(45deg);
    left: 17px;
}
.popUp .pu-icon.pu-error .pu-line.pu-right {
    transform: rotate(-45deg);
    right: 16px;
}
.popUp .pu-icon.pu-warning {
    border-color: #eea236;
}
.popUp .pu-icon.pu-warning .pu-body {
    position: absolute;
    width: 5px;
    height: 47px;
    left: 50%;
    top: 10px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #f0ad4e;
}
.popUp .pu-icon.pu-warning .pu-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    left: 50%;
    bottom: 10px;
    background-color: #f0ad4e;
}
.popUp .pu-icon.pu-info {
    border-color: #46b8da;
}
.popUp .pu-icon.pu-info::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 29px;
    left: 50%;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #5bc0de;
}
.popUp .pu-icon.pu-info::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-left: -3px;
    top: 19px;
    background-color: #5bc0de;
}
.popUp .pu-icon.pu-success {
    border-color: #4cae4c;
}
.popUp .pu-icon.pu-success::before,
.popUp .pu-icon.pu-success::after {
    content: '';
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: inherit;
    transform: rotate(45deg);
}
.popUp .pu-icon.pu-success::before {
    border-radius: 120px 0 0 120px;
    top: -15px;
    left: -33px;
    transform: rotate(-45deg);
    transform-origin: 60px 60px;
}
.popUp .pu-icon.pu-success::after {
    border-radius: 0 120px 120px 0;
    top: -11px;
    left: 30px;
    transform: rotate(-45deg);
    transform-origin: 0px 60px;
}
.popUp .pu-icon.pu-success .pu-placeholder {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(92, 184, 92, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 20;
}
.popUp .pu-icon.pu-success .pu-fix {
    width: 5px;
    height: 90px;
    background-color: inherit;
    position: absolute;
    left: 28px;
    top: 8px;
    z-index: 10;
    transform: rotate(-45deg);
}
.popUp .pu-icon.pu-success .pu-line {
    height: 5px;
    background-color: #5cb85c;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 20;
}
.popUp .pu-icon.pu-success .pu-line.pu-tip {
    width: 25px;
    left: 14px;
    top: 46px;
    transform: rotate(45deg);
}
.popUp .pu-icon.pu-success .pu-line.pu-long {
    width: 47px;
    right: 8px;
    top: 38px;
    transform: rotate(-45deg);
}
.popUp .pu-icon.pu-custom {
    background-size: contain;
    border-radius: 0;
    border: none;
    background-position: center center;
    background-repeat: no-repeat;
}

.popUp button::-moz-focus-inner {
    border: 0;
}

.proceedBtn {
    color: var(--secondary-color);
    background-color: var(--primary-bold);
    border-color:  var(--primary-bold);
}

.proceedBtn:hover,
.btn-warning:hover {
    color: #fff;
}

.proceedBtn:focus {
    border-color: #00acd8;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 172, 216, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 172, 216, 0.6);
}

.proceedBtn:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.cancelBtn {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.cancelBtn:focus {
    border-color: #d43f3a;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 63, 58, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 63, 58, 0.6);
}

.cancelBtn:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130
}

.cancelBtn:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    margin: 0 5px 0 5px;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:active,
.cancelBtn:active,
.proceedBtn:active{
    transform: scale(0.98);
}

.pu-button-container {
    margin: 20px;

}

a.download-button {
    display: flex;
    height: 50px;
    padding: 0;
    background: #ecf0f3;
    border: none;
    outline: none;
    border-radius: 6px;
    overflow: hidden;
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    margin: 20px auto 10px auto;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    min-width: 222px;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.download-button:hover,
.download-button:active {
    filter: brightness(0.9);
    background: var(--primary-bold);
}

.download-button:hover > .download-buttonText{
    color: var(--secondary-color);
}

.download-button:hover > .download-buttonIcon {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.download-button:active {
    transform: scale(0.98);
}

.download-buttonText{
    padding: 11px;
    color: #31344b;
    font-size: 18px;
}

.download-buttonIcon {
    opacity: 0.3;
    padding: 8px 8px;
    height: 100%;
    background: var(--primary-bold);
    color: var(--secondary-color);
}

.download-buttonIcon svg {
    height: 35px;
    fill: currentColor;
}

.customIcon{
    height: 50px;
}

.cta-btn {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, var(--primary-bold) 0, var(--primary-color) 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: "JetBrains Mono",monospace;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 18px;
}

.cta-btn:focus {
    box-shadow: var(--primary-color) 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, var(--primary-color) 0 -3px 0 inset;
}

.cta-btn:hover {
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, var(--primary-color) 0 -3px 0 inset;
    transform: translateY(-2px);
}

.cta-btn:active {
    box-shadow: var(--primary-color) 0 3px 7px inset;
    transform: translateY(2px);
}

.skills .skills-content .right .skillTabStack .complementary-skill-tag,
.skills .skills-content .right .skillTabStack .primary-skill-tag{
    font-size: 0.625rem;
    padding: 0.1rem 0.2rem;
    border-radius: 0.25rem;
    text-align: center;
    opacity: 0.6;
}

.primary-skill-tag{
    background-color: aquamarine;
    color: black;
}

.complementary-skill-tag{
    background-color: #ffb07f;
    color: black;
}

/* media query section */

@media (max-width: 1199px) {
    .history-job .history-leftCol h4 {
        font-size: 18px;
        line-height: 1.5em;
    }

    .history-job .history-jobDate {
        padding: 0 15px;
    }
}

@media (max-width: 1104px) {
    .about .about-content .left img {
        height: 350px;
        width: 350px;
        border-radius: 50%;
    }

    .banner {
        background-repeat: no-repeat;
        background-position: center;
        background-image: url("../Images/banner_s3.webp");
        background-attachment: fixed;
        background-size: cover;
    }

}

@media (max-width: 1024px) {
    .review-details{
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }

    #sideBox {
        width: 230px;

    }

    #sideBox.show {
        height: 313px;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        z-index: 99999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        z-index: 99999;
        background-color: var(--menuBG);
        text-align: center;
        padding-top: 80px;
        backdrop-filter: blur(16px);
        transition: all 0.3s ease;
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .banner {
        background: url("../Images/banner_s2.webp") no-repeat fixed center;
        background-size: cover;
    }

    .banner .banner-content .banner-text_2 {
        font-size: 70px;
    }

    .banner .banner-content .banner-text_3 {
        font-size: 35px;
    }

    .banner .banner-content a {
        font-size: 23px;
        padding: 10px 30px;
    }

    .max-width {
        max-width: 930px;
    }

    section.about {
        padding: 100px 0;
    }

    .about .about-content .about-Column {
        width: 100%;
    }

    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .about-content .right {
        flex: 100%;
    }

    .services .serv-content .serv-offer {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .skills .skills-content .skills-Column,
    .contact .contact-content .contact-Column {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (orientation: landscape) and (max-width: 814px) {
    .history .history-content.nowrap {
        flex-wrap: wrap;
    }

    #sideBox.sideBox-Content.show{
        height: 320px;
    }

    .services .serv-content .serv-offer{
        padding: 35px 10px;
    }

    .serv-offerContent p{
        font-size: 11px;
    }
}

@media all and (max-width: 768px) {
    .popUp {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        left: 15px;
        right: 15px;
    }

    .review-details {
        font-size: 11px;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }

    .banner .banner-content .banner-text_2 {
        font-size: 60px;
    }

    .banner .banner-content .banner-text_3 {
        font-size: 32px;
    }

    .banner .banner-content a {
        font-size: 20px;
    }

    .services .serv-content .serv-offer {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .banner .banner-content .banner-text_2 {
        font-size: 50px;
    }

    .banner .banner-content .banner-text_3 {
        font-size: 27px;
    }

    .banner .banner-content .banner-textQuote {
        font-size: 12px;
        max-width: 246px;
    }

    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 19px;
    }


    .history .history-content.nowrap {
        flex-wrap: wrap;
    }

    .history .history-content.nowrap .history-job,
    .history .history-content .history-job {
        border-radius: 50px 10px 50px 10px;
        padding: 40px 15px;
        min-width: 415px;
        min-height: auto;
        margin: 20px 0;
    }

    .services .serv-content .serv-offer.limit {
        margin: 5px 0;
        width: 100%;
    }

    .skills .skills-content .right .skillSet-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .skills .skills-content .right .skillSet-btns > div {
        align-self: center;
    }

    .skills .skills-content .right .skillSet-btns span.skillSet-btn {
        width: 100%;
        margin: 0.2em 0;
    }


    #review-container {
            width: 100%;
            min-height: 700px;
            margin: auto;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        #review-left-zone {
            height: fit-content;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: 100%;
        }

        #review-left-zone .review-categories{
            -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            margin: auto;
            padding: 0;
        }

        #review-right-zone {
            width: 100%;
            -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
            flex: 1 0 auto;
            height: 50%;
        }

        .review-category input:checked ~ label {
            border: 0;
            border-bottom: solid 2px var(--primary-color);
        }


        .review-item {
            padding: 0 10px;
            width: 100%;
        }

    .review-details {
        font-size: 15px;
    }

    .contact .right form .contact-fieldSet {
        flex-direction: column;
    }

    .contact .right form .contact-formName,
    .contact .right form .contact-formEmail {
        margin: 0;
    }

    .contact .right form .error-box {
        width: 150px;
    }

    .btnToTop {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }

    section.skills .title::after {
        font-size: 14px;
    }

    .skillCard:first-of-type{
        margin-top: 20px;
    }


    .sideBox-Content .sideBox-post .sideBox-icon:before {
        border-width: 2px;
        width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 26px;
        margin: -15px 0 0 -15px
    }

    .contact .contact-content .row {
        margin-bottom: 12px;
    }
}

@media (max-width: 429px) {
    .history .history-content.nowrap .history-job,
    .history .history-content .history-job {
        min-width: 300px;
    }

    #sideBox.sideBox-Content.show {
        height: 485px;
    }

    #technical {
        width: 353px;
    }

    .skillCard{
        width: 340px;
    }

    .skillCard .generalDetails {
        width: 192px;
    }


    .skillCard h1 {
        font-size: 18px;
        display: inline-block;
        margin: 20px 0 5px 20px;
    }

    .skills .skills-content .right span {
        display: inline;
        font-size: 17px;
        margin-left: 10px;
    }

    .skillCard .generalDetails p {
        padding: 5px;
        text-align: center;
        font-size: 12px;
    }


    .skillCard .additionalDetails .certInfo span + span {
        display: block;
        float: none;
        text-indent: 5px;
        color: var(--acsent-textColor);
        font-size: 14px;
    }

}

@media (max-width: 375px) {
    #technical {
        width: 337px;
    }

    .skillCard:first-of-type{
        margin-top: 20px;
    }

    .skillCard .generalDetails {
        width: 162px;
    }

    .history .history-content.nowrap .history-job,
    .history .history-content .history-job {
        min-width: 270px;
    }

    .skillCard {
        width: 153px;
        color: transparent;
    }

    .about .about-content .left img {
        height: 300px;
        width: 300px;
    }

}

@media (max-width: 321px) {
    #technical {
        width: 250px;
    }

    .skillCard {
        box-shadow: none;
    }


}

@-webkit-keyframes FadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes FadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

/* showing pop up*/
@keyframes showPopUp {
    0% {
        transform: scale(0.7);
    }
    45% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes slideFromTop {
    0% {
        top: 0;
    }
    100% {
        top: 50%;
    }
}
@keyframes slideFromBottom {
    0% {
        top: 70%;
    }
    100% {
        top: 50%;
    }
}

/* closing pop up*/
@keyframes hidePopUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.0);
        opacity: 0;
    }
}
@keyframes slideToTop {
    0% {
        top: 50%;
    }
    100% {
        top: 0;
        opacity: var(--opacity);
    }
}
@keyframes slideToBottom {
    0% {
        top: 50%;
    }
    100% {
        top: 100%;
        opacity: var(--opacity);
    }
}

@keyframes animateSuccessTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}
@keyframes animateSuccessLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
@keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

#offline {
    --btn-color: #325381;
    --accent-color: var(--primary-color);
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --background-primary: #f7fafc;
    --background-secondary: #edf2f7;
    --background-white: #ffffff;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;
    --error-color: #c53030;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    padding: 24px;
    line-height: 1.7;
    font-weight: 400;
    .main-container {
        background: var(--background-white);
        border-radius: 16px;
        padding: 64px 48px;
        text-align: center;
        box-shadow: var(--shadow-xl);
        max-width: 560px;
        width: 100%;
        border: 1px solid var(--border-light);
        position: relative;
        animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(32px) scale(0.96);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .header-section {
        margin-bottom: 40px;
    }

    .company-logo {
        height: 88px;
        border-radius: 12px;
        margin: 0 auto 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: white;
        font-weight: 700;
        letter-spacing: -0.02em;
        img,svg{
            height: 100%;
        }
    }

    .service-status {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border-radius: 32px;
        padding: 12px 24px;
        margin-bottom: 32px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        &.error{
            background: rgba(197, 48, 48, 0.1);
            border: 1px solid rgba(197, 48, 48, 0.2);
            color: var(--error-color);
            .status-icon{
                background: var(--error-color);
            }
        }
        &.success{
            background: rgba(56, 161, 105, 0.1);
            border: 1px solid rgba(56, 161, 105, 0.2);
            color: var(--success-color);
            .status-icon{
                background: var(--success-color);
            }
        }
    }

    .status-icon {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        position: relative;
        animation: statusPulse 2s ease-in-out infinite;
    }

    @keyframes statusPulse {
        0%, 100% {
            opacity: 1;
            transform: scale(0.98);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.1);
        }
    }

    #page-title {
        font-size: 36px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 24px;
        letter-spacing: -0.03em;
        line-height: 1.2;
    }

    .content-section {
        margin-bottom: 48px;
        &.resuming{
            text-decoration: line-through;
            text-decoration-color: dimgrey;
            filter: blur(4px);
            opacity: 0.3;
        }
    }

    .primary-message {
        font-size: 20px;
        color: var(--text-secondary);
        margin-bottom: 16px;
        font-weight: 500;
        line-height: 1.6;
    }

    .secondary-message {
        font-size: 16px;
        color: var(--text-muted);
        margin-bottom: 16px;
        line-height: 1.6;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-info {
        display: none;
        background: var(--background-secondary);
        border-radius: 12px;
        padding: 12px;
        margin: 32px 0;
        border: 1px solid var(--border-light);
    }

    .process-info-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        animation: statusPulse 2s ease-in-out infinite;;
    }

    .action-section {
        margin-bottom: 48px;
        min-height: 98px;
        .reloadText {
            margin: 20px 0 0 0;
            font-size: 14px;
            font-variant: all-small-caps;
            font-style: italic;
        }
    }

    .primary-button {
        background: var(--btn-color);
        color: white;
        border: none;
        padding: 16px 40px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 180px;
        justify-content: center;
        text-transform: none;
        letter-spacing: 0.01em;
        position: relative;
        overflow: hidden;
        &:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            &:active{
                transform: translateY(-2px) scale(0.98);
            }
            .button-icon {
                transform: rotate(270deg);
            }
        }
        &:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            .button-icon {
                transform: rotate(0);
            }
        }
    }

    .button-icon {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .corporate-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--border-light);
        padding: 20px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: var(--text-muted);
        z-index: 10;
    }

    .copyright-info {
        font-weight: 500;
        color: var(--text-secondary);
    }

    .enterprise-badge {
        position: absolute;
        bottom: -1px;
        right: -1px;
        background: var(--accent-color);
        color: white;
        font-size: 10px;
        font-weight: 700;
        border-radius: 16px 16px 0 0;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        width: 100%;
        /*box-shadow: var(--btn-color) 0 -3px 2px 0;*/
        box-shadow: hsl(213 58% 87% / 1) 0 -3px 2px 0;
    }

    @media (max-width: 768px) {
        .main-container {
            padding: 48px 32px;
            margin: 16px;
        }

        #page-title {
            font-size: 28px;
        }

        .primary-message {
            font-size: 18px;
        }

        .secondary-message {
            font-size: 15px;
        }

        .primary-button {
            padding: 14px 32px;
            font-size: 15px;
            min-width: 160px;
        }
    }

    @media (max-width: 480px) {
        body {
            padding: 16px;
        }

        .main-container {
            padding: 40px 24px;
        }

        .company-logo {
            width: 72px;
            height: 72px;
            font-size: 28px;
        }

        #page-title {
            font-size: 24px;
        }
    }
}