:root{
    /*COLORS*/
    --Color-Main: #164972;
    --Color-Comp:#d8942e;
    --Color-White: #eeeeee;
    --Color-Gray: #a8a8a8;
    --Color-DarkGray: #30393f;
    --AccordionColor: #0078af;

    /*FONT SIZES*/
    --FS-SectionTitle: 80px;
    --FS-SectionSubTitle1: 32px;
    --FS-SectionSubTitle2: 26px;
    --FS-PortTitle: 26px;
    --FS-PortSubtitle: 20px;
    --FS-OtherTitle: 20px;
    --FS-OtherLinks: 18px;
    --FS-BodyFont: 25px;
    --FS-ListTitle: 34px;
    --FS-ListSubTitle: 30px;
    --FS-ListNote: 20px;
    --FS-GalleryTitle: 34px;
    --FS-GallerySubTitle: 20px;
    --FS-CaseStudyTitle: 64px;
    --FS-CaseStudySubTitle: 40px;
    --FS-CaseStudyListTitle: 28px;
    --FS-CaseStudyList: 20px;
    --FS-HPEMenuTitle: 34px;
    --FS-CaseStudy-BodyTitles: 40px;
    --FS_GallerySublistTitles: 24px;
    --FS-CaseStudy-SectionTitles: 34px;
    --FS_AccordionText: 36px;
    --FS_FeedbackText: 20px;
}

html, body {
    display: block;
}

body {
    background-color: var(--Color-White);
}

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

/*Font Styling*/  
.rajdhani-light {
    font-family: "Rajdhani", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.rajdhani-regular {
    font-family: "Rajdhani", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.rajdhani-medium {
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.rajdhani-semibold {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.rajdhani-bold {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* GLOBAL SETTINGS **************************************************************/
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.body-font {
    font-size: var(--FS-BodyFont);
    color: var(--Color-DarkGray);
    width: 100%;
}

.list-title-font {
    font-size: var(--FS-ListTitle);
    color: var(--Color-Comp);
}

.list-note-font {
    font-size: var(--FS-ListNote);
    color: var(--Color-Gray);
}

.list-subtitle-font {
    font-size: var(--FS-ListSubTitle);
    color: var(--Color-Main);
}

.list-font {
    font-size: var(--FS-BodyFont);
    color: var(--Color-DarkGray);

    width: 100%;
}

.list {
    display:inline-block;
    height: auto;
    text-wrap: wrap;
    padding-left: 20px;
}

.list-nowrap {
    text-wrap: nowrap;
}

.list li {
    margin-bottom: 10px;
}

/* HEADER SECTION ***********************************************************/
.header-holder {
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: var(--Color-Main);
    filter: drop-shadow(0 0 0.2rem);
}

.header-left-area {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

/*HEADER TITLE NAME*/
.header-left-area p {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 60px;
    color: var(--Color-White);
}

/*TOGGLE BUTTON*/
.header-left-area img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 20px;
    margin-bottom: 4px;
}

.header-right-area {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

/*CONTACT ACTION STATEMENT*/
.header-right-area p {
    font-size: clamp(20px, 4vw, 26px);
    line-height: 60px;
    color: var(--Color-White);
}

/*CONTACT BUTTON ICON*/
.header-right-area span {
    color: var(--Color-White);

    /* Material setup*/
    font-family: 'Material Icons';
    display: inline-block;
    font-size: 30px;
    margin-left: 40px;
    line-height: 60px;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility; 
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.header-contact-btn span:hover {
    opacity: .8;
}

/*CONTACT BUTTON FULL*/
.header-contact-btn {
    height: 40px;
    width: 120px;
    line-height: 40px;
    text-align: center;
    margin-left: 20px;
    margin-right: 10px;
    font-size: 18px;
    color: var(--Color-Main);
    background-color: var(--Color-White);
    border-radius: 6px;
    cursor: pointer;
}

.header-contact-btn:hover {
    opacity: .8;
}

/* SIDEBAR NAVIGATION *********************************************************/
.sidebar-holder {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 900;
    left: 0;
    top: 60px;
    width: 80px;
    height: 100%;
    padding-top: 40px;
    background-color: var(--Color-DarkGray);
    transition: 0.5s;
}

/*SIDE BAR ICONS*/
.sidebar-link span {
    /* Material setup*/
    font-family: 'Material Icons';
    display: inline-block;
    font-size: 30px;
    margin-left: 25px;
    margin-right: 20px;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility; 
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.sidebar-link {
    text-decoration: none;
    width: 100%;
    height: 40px;
    font-size: 30px;
    color: var(--Color-White);
    display: flex;
    align-items: center;
    transition: 0.3s;
    margin-bottom: 40px;
}

.sidebar-link:hover {
    color: var(--Color-Comp);
    background-color: var(--Color-White);
  }

  .sidebar-holder a.active {
    color: var(--Color-Comp);
    background-color: var(--Color-White);
  }

/* MAIN AREA *********************************************************************/
main {
    display: block;
    width: 100%;
    height: auto;
    justify-content: center;
}

.section-holder {
    display: block;
    float: right;
    width: calc(100% - 100px);
    height: 100%;
    margin-bottom: 20px;
    margin-top: 80px;
}

.section-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-holder {
    margin-bottom: 60px;
}

.section-title {
    font-size: var(--FS-SectionTitle);
    text-align: center;
    color: var(--Color-DarkGray);
}

.section-subtitle1 {
    font-size: var(--FS-SectionSubTitle1);
    text-align: center;
    color: var(--Color-Comp);
}

.section-subtitle2 {
    font-size: var(--FS-SectionSubTitle2);
    text-align: center;
    color: var(--Color-Gray);
}

/* PORTFOLIO AREA */
.port-upper-holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    width: 50%;
    margin-bottom: 40px;
}

.port-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.port-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    outline: 1px solid var(--Color-Gray);
    transition: 0.3s;
    cursor: pointer;

    margin-bottom: 10px;
}

.port-image:hover img {
    outline: 3px solid var(--Color-Comp);
}

.port-title-font {
    font-size: var(--FS-PortTitle);
    color: var(--Color-Main);
    transition: 0.3s;
}

.port-subtitle-font {
    font-size: var(--FS-PortSubtitle);
    color: var(--Color-DarkGray);
}

.port-lower-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 40px;
    border-radius: 12px;
    outline: 1px solid var(--Color-Gray);
    margin-bottom: 40px;
}

.port-lower-holder-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 80px;
    border-radius: 12px;
    outline: 1px solid var(--Color-Gray);
    margin-bottom: 40px;
}

.other-links {
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: auto;
    line-height: 40px;
}

.other-title-font {
    font-size: var(--FS-OtherTitle);
    color: var(--Color-Main);
}

.other-links-font {
    font-size: var(--FS-OtherLinks);
    color: var(--Color-DarkGray);
    transition: 0.3s;
    cursor: pointer;
}

.other-links-font:hover {
    color: var(--Color-Comp);
}

/* PORTFOLIO AREA > GALLERY*/
.line-divider {
    width: 90%;
    height: 2px;
    margin: auto;
    margin-bottom: 30px;
    background-color: var(--Color-DarkGray);
}

.line-divider-thin {
    width: 90%;
    height: 1px;
    margin: auto;
    margin-bottom: 30px;
    background-color: var(--Color-Gray);
}

.port-gallery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.port-gallery-holder {
    width: 50%;
    margin-bottom: 20px;
}

.gallery-title-holder {
    margin-bottom: 20px;
}

.gallery-title {
    font-size: var(--FS-GalleryTitle);
    color: var(--Color-Comp);
}

.gallery-subtitle {
    font-size: var(--FS-GallerySubTitle);
    color: var(--Color-Gray);
}

.thumbnail-holder {
    display: grid;
    width: 100%;
    margin: auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.photo {
    margin: 5px;  
    cursor: pointer;
}

.photo img {
    width: 100%;
    border-radius: 6px;
    opacity: 1;
    outline: 1px solid var(--Color-Gray);
    transition: all 0.3s ease-in-out;
}

.photo img:hover {
    opacity: .5;
}

.back-to-top-holder {
    width: 100%;
}

.back-to-top-btn {
    height: 40px;
    width: 120px;
    line-height: 40px;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    color: var(--Color-White);
    background-color: var(--Color-Comp);
    border-radius: 6px;
    cursor: pointer;
}

.back-to-top-btn:hover {
    opacity: .8;
}

/* CASE STUDY SETUP */
.cs-upper-holder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin:auto;
    width: 100%;
    margin-bottom: 40px;
}

.cs-upper-holder-mobile {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin:auto;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.casestudy-title {
    font-size: var(--FS-CaseStudyTitle);
    color: var(--Color-Main);
}

.casestudy-subtitle {
    font-size: var(--FS-CaseStudySubTitle);
    color: var(--Color-DarkGray);
    margin-bottom: 20px;
}

.cs-title-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cs-list-title-font {
    font-size: var(--FS-CaseStudyListTitle);
    color: var(--Color-Comp);
}

.padding-right {
    margin-right: 60px;
    margin-bottom: 30px;
}

.padding-down {
    margin-bottom: 20px;
}

.cs-list-font {
    font-size: var(--FS-CaseStudyList);
    color: var(--Color-DarkGray);

    width: 100%;
}

.cs-image img{
    width: 100%;
    height: auto;
    width: 100%;
}

/* CASE STUDY - HPE MENU */
.gallery-hpe-menu {
    width: 100%;
    margin: auto;
}

.gallery-hpe-menu-title {
    font-size: var(--FS-HPEMenuTitle);
    color: var(--Color-Comp);
}

.cs-hpe-menu-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.cs-hpe-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
    cursor: pointer;
}

.cs-hpe-menu-item img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    outline: 1px solid var(--Color-Gray);
    transition: 0.3s;
    cursor: pointer;

    margin-bottom: 10px;
}

.cs-hpe-menu-item:hover img {
    outline: 3px solid var(--Color-Comp);
}

.cs-lower-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    height:auto;
    margin:auto;
    width: 100%;
    padding-bottom: 40px;
}

.cs-body-section {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
    justify-content: center;
}

.photo-left {
    margin: 5px;  
    cursor: pointer;
    margin-bottom: 30px;
}

.photo-left img {
    width:500px;
    height: auto;
    margin-right: 40px;
    border-radius: 6px;
    opacity: 1;
    outline: 1px solid var(--Color-Gray);
    transition: all 0.3s ease-in-out;
}

.photo-left img:hover {
    opacity: .5;
}

.photo-nonmarked {
    margin: 5px;  
    cursor: pointer;
    margin-bottom: 30px;
}

.photo-nonmarked img{
    width:500px;
    height: auto;
    border-radius: 6px;
    opacity: 1;
    outline: 1px solid var(--Color-Gray);
    transition: all 0.3s ease-in-out;    
}

.cs-body-title-font {
    font-size: var(--FS-CaseStudy-BodyTitles);
    color: var(--Color-Main);
    margin-bottom: 30px;
    text-align: center;
}

.cs-section-title-font {
    font-size: var(--FS-CaseStudy-SectionTitles);
    color: var(--Color-Comp);
}

.cs-section-title-font2 {
    font-size: var(--FS-CaseStudy-SectionTitles);
    color: var(--Color-DarkGray);
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.cs-sublist-title-font {
    font-size: var(--FS_GallerySublistTitles);
    color: var(--Color-DarkGray);
    margin-top: 10px;
}

.split-lists {
    display: flex;
}

.make-white {
    color: var(--Color-White);
}

.back-to-hpe-btn {
    height: 40px;
    width: 200px;
    line-height: 40px;
    text-align: center;
    border-radius: 6px;
    margin-top: 30px; 
    cursor: pointer;
    font-size: 18px;
    color: var(--Color-DarkGray);
    outline: 1px solid var(--Color-DarkGray);
    transition: all 0.3s ease-in-out;
}

.back-to-hpe-btn:hover {
    opacity: .8;
}

.tab-list {
    margin-left: 20px;
    margin-top: 20px;
}

.accordion-font {
    font-size: var(--FS_AccordionText);
    text-align: center;
    color: var(--Color-DarkGray);
    margin-bottom: 20px;
    margin-top: 20px;
}

/* FEEDBACK SETUP */
.feedback-holder {
    display:grid;
    grid-template-columns: repeat(3, 0fr);
    gap: 20px;
    width: 100%;
    height: 500px;
    justify-content: center;
}

.feedback-back {
    display:grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    width: 400px;
    height: 100%;
    border-radius: 12px;
    background-color: white;
}

.feedback-quotes {
    font-size: var(--FS_FeedbackText);
    color: var(--Color-DarkGray);
    height: 330px;
    width: 90%;
    margin: auto;
}

.feedback-logo {
    height: 100px;
    align-content: center;
}

.feedback-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.agoda-size img {
    height: 80%;
}

.cxo-size img {
    height: 60%;
}

.cs-outcome-section {
    display:grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 10px;
}

/* PORTFOLIO MODAL ***********/
.modal {
    display: none;
    position: fixed;
    align-items: center;
    margin: auto;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 3000;
    background-color: rgb(0, 0, 0, .9);
}

.modal::after {
    content: "";
}

.modal-slides-holder { 
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 90%;
    margin: auto;
    align-items: center;
    justify-content: center;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.slides-holder {
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: 90%;
    margin: auto;
    align-items: center;
}

.images-holder {
    display: flex;
    width: 90%;
    height: 90%;
    justify-content: center;
    margin: auto;
}

.image-frame {
    height: 100%;
    width: 100%;
}

.images-holder img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close {
    color: var(--Color-White);
    margin-left: 80%;
    padding-top: 20px;
    font-size: 55px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.close:hover {
    opacity: .8;
}

.prev, .next {
    cursor: pointer;
    color: var(--Color-White);
    font-size: 55px;
    font-weight: bold;
    top: 50vh;
    border-radius: 3px;
    text-align: center;
}

.prev {
    left: 0%;
}

.next {
    right: 0%;
}

.prev:hover, .next:hover {
    opacity: .8;
}

.modal-background {
    width: 100%;
    height: 100%;
}

/*CLOSE SLIDES CLASSES*/
.slidesFile {
    display: none;
}

.slidesSFM {
    display: none;
}

.slidesSUS {
    display: none;
}

.slidesHW {
    display: none;
}

.slidesCACI {
    display: none;
}

.slidesWR {
    display: none;
}

.slidesRQ {
    display: none;
}

.slidesDV {
    display: none;
}

.slidesLaureate {
    display: none;
}

.slidesCV {
    display: none;
}

.slidesPH {
    display: none;
}

.slidesUI {
    display: none;
}

.slidesTypo {
    display: none;
}

.slidesSCCI {
    display: none;
}

.slidesDigital {
    display: none;
}

/*ABOUT ME AREA*/
.about-holder {
    display: block;
    width: 70%;
    height: 100%;
}

.about-holder img {
    width:30%;
    height: auto;
    float:left;
    margin-right: 40px;
}

/*SKILLS AREA*/
.skills-holder {
    display:flex;
    flex-direction: column;
    height: auto;
    width: 50%;
    margin: auto;
    align-items: center;
}

.skills-section {
    display: flex;
    height: auto;
    margin-bottom: 30px;
    padding: 20px 20px 20px 20px;
    width: 100%;
    border-radius: 12px;
    outline: 1px solid var(--Color-Gray);
}

.skills-section img {
    width:600px;
    height: auto;
    margin-right: 40px;
}

/*CONTACT ME AREA*/
.contact-holder {
    display:flex;
    flex-wrap: wrap;
    height: auto;
    width: 70%;
    margin: auto;
    align-items: center;
}

.contact-form {
    display: flex;
    margin: auto;
    text-align: left;
}

.contact-font {
    font-size: var(--FS-BodyFont);
    color: var(--Color-DarkGray);
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: var(--Color-White);
}

textarea[type=content], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: var(--Color-White);
}

.button-holder {
    display: flex;
}
  
button[type=submit] {
    background-color: var(--Color-Comp);
    font-size: 18px;
    color: var(--Color-White);
    margin-top: 12px;
    margin-right: 20px;
    text-align: center;
    line-height: 40px;
    border: none;
    border-radius: 6px;
    height: 40px;
    width: 120px;
    cursor: pointer;
}
  
button[type=submit]:hover {
    opacity: .8;
}

button[type=clear] {
    background-color: var(--Color-DarkGray);
    font-size: 18px;
    color: var(--Color-White);
    margin-top: 12px;
    text-align: center;
    line-height: 40px;
    border: none;
    border-radius: 6px;
    height: 40px;
    width: 120px;
    cursor: pointer;
}
  
button[type=clear]:hover {
    opacity: .8;
}

.contact-image {
    object-fit:scale-down;
    object-position: top;
    padding-top: 20px;
}

.success {
    display: block;
    background-color: green;
    color: var(--Color-White);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
}

.error {
    display: block;
    background-color: darkred;
    color: var(--Color-White);
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
}

.info {
    color: darkred;
    margin-left: 10px;
}

/* MAIN AREA END ****************************************************************/

/* FOOTER SECTION *************************************************************/
footer {
    position: fixed;
    z-index: 950;
    width: 100%;
    height: 40px;
    font-size: 1em;
    text-align: center;
    line-height: 40px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    outline: 1px solid var(--Color-Main);
    background-color: var(--Color-White) ;
}

/* MEDIA SIZE CHANGES ***********************************************************/
@media screen and (max-width:2100px) {
    :root {
        --FS-CaseStudyTitle: 60px;
        --FS-CaseStudySubTitle: 40px;
    }
}

@media screen and (max-width:2000px) {
    .skills-section img {
        width:500px;
    }
}

@media screen and (max-width:1980px) {
    :root {
        --FS-BodyFont: 23px;
        --FS-CaseStudyTitle: 56px;
        --FS-CaseStudySubTitle: 40px;
    }
}

@media screen and (max-width:1855px) {
    :root {
        --FS-CaseStudyTitle: 52px;
        --FS-CaseStudySubTitle: 40px;
    }
}

@media screen and (max-width:1800px) {
    .port-upper-holder {
        width: 60%;
    }

    .port-lower-holder {
        width: 60%;
    }

    .skills-holder {
        width: 60%;
    }

    .port-gallery-holder {
        width: 60%;
    }
}

@media screen and (max-width:1600px) {
    .photo-left img {
        width: 400px;  
    }

    .photo-nonmarked img {
        width: 400px; 
    }

    .feedback-holder {
        gap: 10px;
        height: 600px;
    }

    .feedback-back {
        width: 350px;
    }
    
    .feedback-quotes {
        height: 400px;
    }
    
    .feedback-logo {
        height: 90px;
    }
}

@media screen and (max-width:1460px) {
    :root {
        --FS-CaseStudyTitle: 48px;
        --FS-CaseStudySubTitle: 36px;
        --FS-CaseStudyListTitle: 26px;
        --FS-CaseStudyList: 18px;
        --FS_FeedbackText: 18px;
    }
}

@media screen and (max-width:1450px) {
    :root {
        --FS-PortTitle: 22px;
        --FS-PortSubtitle: 16px;
        --FS-BodyFont: 22px;
    }

    .port-upper-holder {
        gap: 20px;
        width: 70%;
    }

    .port-lower-holder {
        width: 70%;
    }

    .about-holder {
        width: 70%;
    }

    .contact-holder {
        width: 70%;
    }

    .skills-holder {
        width: 70%;
    }
    
    .skills-section img {
        width:400px;
    }

    .port-gallery-holder {
        width: 70%;
    }

    .feedback-holder {
        height: 500px;
    }

    .feedback-back {
        width: 350px;
    }
    
    .feedback-quotes {
        height: 350px;
    }
    
    .feedback-logo {
        height: 80px;
    }
}

@media screen and (max-width:1260px) {
    :root {
        --FS-PortTitle: 26px;
        --FS-PortSubtitle: 18px;
        --FS_FeedbackText: 15px;
    }

    .port-upper-holder {
        gap: 15px;
        width: 80%;
    }

    .port-lower-holder {
        width: 80%;
    }

    .about-holder {
        width: 80%;
    }

    .contact-holder {
        width: 80%;
    }
    
    .skills-holder {
        width: 80%;
    }

    .port-gallery-holder {
        width: 80%;
    }

    .feedback-holder {
        height: 400px;
    }

    .feedback-back {
        width: 250px;
    }
    
    .feedback-quotes {
        height: 280px;
    }
}

@media screen and (max-width:1080px) {
    :root {
        --FS-PortTitle: 22px;
        --FS-PortSubtitle: 16px;        
        --FS-OtherTitle: 18px;
        --FS-OtherLinks: 16px;
    }

    .port-upper-holder {
        gap: 15px;
        width: 90%;
    }

    .port-lower-holder {
        width: 90%;
    }

    .about-holder {
        width: 90%;
    }

    .contact-holder {
        width: 90%;
    }

    .skills-holder {
        width: 90%;
    }

    .port-gallery-holder {
        width: 90%;
    }

    .feedback-holder {
        height: 460px;
    }

    .feedback-back {
        width: 220px;
    }
    
    .feedback-quotes {
        height: 340px;
    }
}

@media screen and (max-width:974px) {
    .photo-left img {
        width: 350px;  
    }

    .photo-nonmarked img {
        width: 350px; 
    }
}

@media screen and (max-width:940px) {
    :root {
        --FS-CaseStudyTitle: 44px;
        --FS-CaseStudySubTitle: 34px;
        --FS-CaseStudyListTitle: 26px;
        --FS-CaseStudyList: 16px;
    }

    .list li {
        margin-bottom: 6px;
    }
}

@media screen and (max-width:900px) { 
    .skills-section img {
        width:250px;
    }

    .feedback-holder {
        height: 500px;
    }

    .feedback-back {
        width: 200px;
    }
    
    .feedback-quotes {
        height: 380px;
    }
}

@media screen and (max-width:894px) {
    .skills-holder {
        width: 86%;
    }
}

@media screen and (max-width:870px) {
    :root {
        --FS-CaseStudyTitle: 40px;
        --FS-CaseStudySubTitle: 30px;
    }

    .photo-left img {
        width: 320px;  
    }

    .photo-nonmarked img {
        width: 320px; 
    }
}

@media screen and (max-width:840px) {
    :root {
        --FS-PortTitle: 20px;
        --FS-PortSubtitle: 14px;
        --FS-OtherTitle: 16px;
        --FS-OtherLinks: 14px;
        --FS-BodyFont: 20px;
        --FS-CaseStudy-SectionTitles: 28px;
    }

    .section-holder {
        margin-top: 80px;
    }

    .port-lower-holder {
        height: 30px;
    }
}

@media screen and (max-width:800px) {
    :root {
        --FS-CaseStudyTitle: 36px;
        --FS-CaseStudySubTitle: 28px;
        --FS-CaseStudyListTitle: 24px;
        --FS-CaseStudyList: 14px;
    }
}

@media screen and (max-width:784px) {  
    .port-gallery-holder {
        width: 94%;
    }

    .list li {
        margin-bottom: 4px;
    }

    .cs-title-lists {
        gap: 1px;
    }
}

@media screen and (max-width:780px) {
    :root {
        --FS-PortTitle: 18px;
        --FS-PortSubtitle: 10px; 
        --FS-GalleryTitle: 30px;
        --FS-GallerySubTitle: 16px;
        --FS-BodyFont: 18px;
    }

    .cs-hpe-menu-images {
        gap: 10px;
    }

    .photo-left img {
        margin-right: 20px;  
    }
}

@media screen and (max-width:750px) {
    .photo-left img {
        width: 300px;
        margin-right: 10px;  
    }

    .photo-nonmarked img {
        width: 300px; 
    }
}

@media screen and (max-width:712px) {
    :root {
        --FS-PortTitle: 16px;
        --FS-CaseStudyTitle: 32px;
        --FS-CaseStudySubTitle: 22px;
        --FS-CaseStudyListTitle: 20px;
        --FS-CaseStudyList: 12px;
        --FS_AccordionText: 30px;
    }

    .other-links {
        width: 96%;
    }

    .about-holder img {
        width: 40%;
        margin-right: 20px;
    }

    .contact-image {
        width: 200px;
    }

    .cs-body-section {
        flex-direction: column;
        justify-content: center;
    }

    .photo-left {
        margin: auto;
        margin-bottom: 30px;
    }

    .photo-left img {
        width: 100%;
        margin: auto;
    }

    .photo-nonmarked {
        margin: auto;
        margin-bottom: 30px;
    }

    .photo-nonmarked img {
        width: 100; 
        margin: auto;
    }

    .skills-section {
        flex-direction: column-reverse;
    }

    .skills-section img {
        display: block;
        width: 60%;
        margin:auto;
        margin-top: 20px;
    }

    .feedback-holder {
        grid-template-columns: repeat(1, 0fr);
        gap: 20px;
        width: 100%;
        height: 1000px;
    }
    
    .feedback-back {
        grid-template-columns: repeat(1, 1fr);
        width: 400px;
    }
    
    .feedback-quotes {
        height: 200px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width:650px) {
    :root {
        --FS-PortTitle: 14px;
        --FS-PortSubtitle: 10px;
        --FS-OtherTitle: 14px;
        --FS-OtherLinks: 12px;
        --FS-GalleryTitle: 26px;
        --FS-GallerySubTitle: 14px;
        --FS-CaseStudyTitle: 30px;
        --FS-CaseStudySubTitle: 22px;
    }

    .accordion {
        height: 34px;
     }
}

@media screen and (max-width:610px) {
    :root {
        --FS-CaseStudyTitle: 28px;
        --FS-CaseStudySubTitle: 20px;
    }
}

/*MEDIA CHANGES TO MOBILE*/
@media screen and (max-width:600px) {
    :root {
        --FS-SectionTitle: 70px;
        --FS-SectionSubTitle1: 26px;
        --FS-SectionSubTitle2: 20px;
        --FS-PortTitle: 20px;
        --FS-PortSubtitle: 16px;
        --FS-OtherTitle: 18px;
        --FS-OtherLinks: 16px;
        --FS-GalleryTitle: 30px;
        --FS-GallerySubTitle: :16px;
        --FS-CaseStudyTitle: 50px;
        --FS-CaseStudySubTitle: 30px;
        --FS-CaseStudyListTitle: 30px;
        --FS-CaseStudyList: 20px;
    }

    .section-holder {
        width: 100%;
    }

    .section-title-holder {
        margin-bottom: 40px;
    }

    .port-upper-holder {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cs-hpe-menu-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .port-image img {
        margin-bottom: 2px;
    }

    .other-title-font {
        margin-bottom: 4px;
    }

    .other-links-font {
        margin-bottom: 4px;
        width: 100px;
    }

    .other-links {
        line-height: 20px;
    }

    .thumbnail-holder {
        grid-template-columns: repeat(2, 1fr);
    }

    .casestudy-title {
        text-align: center;
    }
    
    .casestudy-subtitle {
        text-align: center;
    }

    .cs-title-lists {
        width: 90%;
        margin: auto;
    }

    .cs-image {
        width: 80%;
        margin: auto;
    }

    .prev, .next {
        font-size: 40px;
    }

    .prev {
        margin-right: 10px;
    }

    .next {
        margin-left: 10px;
    }
}

@media screen and (max-width:412px) {
    :root {
        --FS-CaseStudyTitle: 40px;
        --FS-CaseStudySubTitle: 30px;
        --FS-CaseStudyListTitle: 30px;
        --FS-CaseStudyList: 20px;
    }

    .cs-title-lists {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width:405px) {
    :root {
        --FS-SectionTitle: 50px;
        --FS-SectionSubTitle1: 22px;
        --FS-SectionSubTitle2: 16px;
        --FS-PortTitle: 24px;
        --FS-PortSubtitle: 18px;
    }

    .port-upper-holder {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .cs-hpe-menu-images {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .section-title-holder {
        margin-bottom: 30px;
    }

    .skills-holder {
        width: 80%;
    }

    .skills-section img {
        width: 70%;
    }

    .thumbnail-holder {
        grid-template-columns: repeat(1, 1fr);
    }

    .feedback-holder {
        height: 1200px;
    }
    
    .feedback-back {
        width: 300px;
    }
    
    .feedback-quotes {
        height: 250px;
    }
}

@media screen and (max-width:360px) {
    :root {
        --FS-OtherTitle: 16px;
        --FS-OtherLinks: 14px;
    }
}

@media screen and (max-width:330px) {
    :root {
        --FS-CaseStudyTitle: 36px;
        --FS-CaseStudySubTitle: 28px;
    }

    .cs-title-lists {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

@media only screen
and (max-device-width : 1024px) 
and (orientation : landscape) {

    .modal-content {
        display: block;
        height: 100%;
    }
}
