/** {
  user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  -moz-user-select: none !important;
}

img, video {
    pointer-events: none !important;
}*/

.c-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #ffff;
    border-bottom: 1px solid #aaa;
    padding: 0 40px;
}

body{
	font-family: 'Poppins' !important;
    margin: 0;
}
body * {
    box-sizing: border-box;
}

.logo-menu {
    max-width: 180px;
    width: 100%;
    height: 26px;
    float: left;
    margin: 8px 0;
}

.logo-menu > h3, .logo-menu > h3 > a {
    height: 26px;
    font-size: 28px;
    font-weight: 600;
    line-height: 26px;
    margin: 0;
    color: #333;
    text-decoration: none;
}

.c-header_menu_item {
    display: inline-block;
}

.menu-right > li > a {
    margin: 3px 6px;
    margin-bottom: 0;
}

.c-header_menu_item a {
    position: relative;
    display: block;
    padding: 7px 0;
    margin: 0 20px;
    color: #1e1e1e;
    font-family: NeueHaasGroteskDisp Pro;
    font-size: 14px;
}

.c-header_menu_item:first-child a {
    margin-left: 0 !important;
}

.menu-left {
    float: right;
    margin-right: 42px !important;
}

.c-header_menu {
    margin: 0px 42px 0px 0px;
    padding: 0;
    list-style: none;
    font-size: 15px;
}

.menu-right {
    float: right;
    margin-left: 0;
}

.c-header_burger {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    right: 2.5rem;
}

.c-header_trigger {
    position: absolute;
    left: -100vw;
    top: 0;
    bottom: 0;
    right: 0;
    pointer-events: none
}

.o-button, button {
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: none transparent;
    color: inherit;
    vertical-align: middle;
    text-align: center;
    text-transform: none;
    font: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.c-header_burger {
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    right: 2.5rem;
}

.c-header_burger:after, .c-header_burger:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1px;
    width: 100%;
    background-color: #aaa;
    transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

.c-header_burger:before {
    transform: translate(-50%, -50%) translateY(-4px);
}

.c-header_burger:after {
    transform: translate(-50%, -50%) translateY(4px);
}

.c-header.is-open .c-header_burger:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.c-header.is-open .c-header_burger:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.c-header_trigger {
    position: absolute;
    left: -100vw;
    top: 0;
    bottom: 0;
    right: 0;
    pointer-events: none
}

/* .c-header_menu_item a:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #1e1e1e;
    transform: scaleX(.001);
    transition: transform .3s cubic-bezier(.215, .61, .355, 1);
} */

.case-links {
    position: fixed;
    bottom: 35px;
    z-index: 9999;
    height: 20px;
    width: 20px;
    text-align: center;
}

.case-links > a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    padding: 0;
    margin: auto;
    transition: ease-in-out all .5s;
    -webkit-transition: ease-in-out all .5s;
    -moz-transition: ease-in-out all .5s;
    opacity: 1;
}

.case-links > a > img {
    margin: auto;
    vertical-align: middle;
    display: initial;
    width: auto !important;
}

.case-links.prev-case {
    left: 90px;
}

.case-links.next-case {
    right: 90px;
}

.case-tooltip {
    width: 88px;
    height: 37px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px #ccc;
    position: absolute;
    left: -34px;
    top: 300%;
    opacity: 0;
    transition: ease-in-out all 0.4s;
    -webkit-transition: ease-in-out all 0.4s;
    -moz-transition: ease-in-out all 0.4s;
}

.case-tooltip > .inner-tooltip > p {
    margin: 0;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    line-height: 37px;
    width: 100%;
    font-size: 10px !important;
}

.case-links > a:hover {
    opacity: 1;
}

.case-tooltip:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 8.5px 0 8.5px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    left: 40%;
}

.case-links:hover > .case-tooltip {
    top: -290%;
    opacity: 1;
}
main {
    z-index: 2;
    position: relative;
    height: 100%;
    -webkit-transition: transform 1.7s ease-in-out;
    -moz-transition: transform 1.7s ease-in-out;
    -ms-transition: transform 1.7s ease-in-out;
    -o-transition: transform 1.7s ease-in-out;
    transition: transform 1.7s ease-in-out;
}
.hidden-xs {
    display: flex;
}
/* .move-to-left {
    -webkit-transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    -o-transform: translateX(-400px);
    transform: translateX(-400px);
} */
.education {
    font-weight: bold;
}
.work {
    font-weight: bold;
}
.sidebar, .sidebar[style*="none"] {
    display: block!important;
    transition: 0.4s ease;
    opacity: 0;
    visibility: hidden;
    right:-100%
}



@media (max-width: 999px) {
    .c-header {
        transform: translate(0);
        left: 0;
        right: 0;
        width: auto;
        border-bottom: 1px solid #aaa;
        padding: 0.75rem 1.6rem 0;
        background-color: #fff;
        transition: background-color .3s cubic-bezier(.215, .61, .355, 1);
    }

    .has-nav-open .c-header {
        background-color: #f6f6f6
    }

    .c-header_menu {
        margin: 0;
        margin-left: 0;
        border-bottom: 0;
    }

    /* .logo-menu {
        margin: 0;
    } */

    .menu-left {
        margin-right: 10px !important;
    }

    .case-links {
        top: 100vw;
        bottom: unset;
    }

    .case-links.prev-case {
        left: 20px;
    }

    .case-links.next-case {
        right: 40px;
    }

    .case-links.prev-case:hover > .case-tooltip {
        left: 60px;
        top: 0;
        display: none;
    }

    .case-tooltip {
        top: -9px;
        display: none;
    }

    .case-links.prev-case > .case-tooltip:after {
        border-width: 8.5px 9px 8.5px 0;
        border-color: transparent #ffffff transparent transparent;
        left: -9px;
        top: 50%;
        transform: translateY(-50%);
    }

    .case-links.next-case > .case-tooltip:after {
        border-width: 8.5px 0 8.5px 9px;
        border-color: transparent transparent transparent #fff;
        left: 88px;
        top: 50%;
        transform: translateY(-50%);
    }

    .case-links.next-case:hover > .case-tooltip {
        top: 0;
        left: -110px;
    }

    .case-links.next-case > .case-tooltip {
        left: 0;
        display: none;
    }
}

@media (max-width: 768px) {
    .c-header_menu_item a {
        font-size: 14px !important;
        margin: 0 10px !important;
    }
}

@media (min-width: 700px) {
    .u-none\@from-small {
        display: none;
    }

}

@media (max-width: 699px) {
    .c-header {
        padding: 0 !important;
		border-bottom: 0 !important;
    }
    
    .c-header_menu {
        position: absolute;
        top: calc(100% + 1px);
        height: auto;
        left: 0;
        right: 0;
        margin: 0;
        padding: 2.5rem 3rem;
        text-align: left;
        font-family: NeueHaasGroteskDisp Pro;
        transform-origin: center top;
        transform: scaleY(.001);
        background-color: #f6f6f6;
        transition: transform .6s cubic-bezier(.645, .045, .355, 1) .15s;
        width: 100%;
        padding-bottom: 50px;
    }

    .c-header.is-open .c-header_menu {
        transform: scaleY(1);
        transition-delay: 0s
    }

    .c-header.is-open .c-header_menu_item:first-child {
        transition-delay: .33s;
    }

    .c-header.is-open .c-header_menu_item:nth-child(2) {
        transition-delay: .36s;
    }

    .c-header.is-open .c-header_menu_item:nth-child(3) {
        transition-delay: .39s;
    }

    .c-header.is-open .c-header_menu_item:nth-child(4) {
        transition-delay: .42s;
    }

    .c-header_menu > .c-header_menu_item > a {
        font-size: 14px;
    }    
    .c-header_menu_item:first-child a {
        margin-left: 20px;
    }
    

    .c-header.is-open .c-header_menu_item {
        opacity: 1;
        transform: none;
        transition-duration: .6s;
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    .menu-left > .c-header_menu_item {
        display: inline-block;
        width: 49%;
        text-align: left;
    }

    .c-header.is-open .c-header_menu_item:nth-child(3) {
        transition-delay: .39s;
    }

    .c-header.is-open .c-header_menu_item {
        opacity: 1;
        transform: none;
        transition-duration: .6s;
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    
    .c-header_menu_item {
        display: block;
        font-size: 2.1875rem;
        opacity: 1;
        transform: translateX(30px);
        transition: opacity .3s cubic-bezier(.55, .055, .675, .19), transform .3s cubic-bezier(.55, .055, .675, .19);
    }
	ul.social-media {
    display: flex;
    flex-direction: row;
}
    
    ul.c-header_menu.menu-right {
        bottom: -195px;
        top: unset !important;
        z-index: 999;
        text-align: right;
        background: transparent;
        padding: 0;
        padding-right: 0;
        width: 100%;
        left: 0;
        text-align: center;
    }
    
    .projects-page ul.c-header_menu.menu-right {
        left: 28%;
    }

    ul.c-header_menu.menu-right > li.c-header_menu_item {
        display: inline-block;
    }

    ul.c-header_menu.menu-right > li.c-header_menu_item > a {
        margin: 0;
        padding: 0 8px;
    }

    .case-links {
        top: 90%;
    }
}


/* Menu css */

.nav-right {
    position: absolute;
    z-index: 1;
    top: 0 !important;
    right: 0 !important;
    background: #fff!important;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    right: 0!important;
    display:block !important;
    border-bottom:1px solid #aaa;
}
.nav-right.visible-xs {
    z-index: 3;
}
.bar {
    -webkit-transition: all 1.7s ease;
    -moz-transition: all 1.7s ease;
    -ms-transition: all 1.7s ease;
    -o-transition: all 1.7s ease;
    transition: all 1.7s ease;
}

.nav-right.visible-xs .active .bar {
    background-color: #FFF;
    -webkit-transition: all 1.7s ease;
    -moz-transition: all 1.7s ease;
    -ms-transition: all 1.7s ease;
    -o-transition: all 1.7s ease;
    transition: all 1.7s ease;
}
.middle {
    margin: 0 auto;
}
.sidebar-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 65px);
	overflow-y: auto;
}
.logo-menu > h3, .logo-menu > h3 > a {
    font-family: 'Poppins';
}
.sidebar-item.active {
    font-family: 'Poppins';
}
.sidebar[style*="block"] {
    visibility: visible;
    opacity:0.98 !important;
    right:0
}
.sidebar {
    height: 100%;
    width: 37.2%;
    position: fixed;
    display: none;
    top: 0;
    z-index: 1;
    right: 0;
    background-color: #ffffff;
    box-shadow: -10px 0 10px -15px rgba(0, 0, 0, 0.5);
}
.bar {
    display: block;
    height: 2px;
    width: 30px;
    background-color: #000000;
    margin: 10px auto;
    position: relative;
}

.bar.bottom {
    height: 1px;
    margin-top: 8px !important;
}
.button.active .bottom {
    display: none;
}
.button.active .top {
    display: none;
}
.button.active .middle {
display: none;
}
.bar.top {
    width: 10px !important;
    height: 2px!important;
}
.bar.middle {
    width: 15px !important;
   margin-top: 7px!important;
   height: 2px!important;
}
    
.bar.bottom {
    width: 22px !important;
    margin-top: 7px!important;
    height: 2px!important;
}
#menu-btn {
    margin-top: 15px !important;
}		
#menu-btn .bar {
    margin: 0px 0;
    margin-left: auto;
    text-align: right;
    background: #000!important;
}
.button {
    cursor: pointer;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    -webkit-transition: all 1.7s ease;
    -moz-transition: all 1.7s ease;
    -ms-transition: all 1.7s ease;
    -o-transition: all 1.7s ease;
    transition: all 1.7s ease;
}
.button.active .top {
    -webkit-transform: translateY(15px) rotateZ(45deg);
    -moz-transform: translateY(15px) rotateZ(45deg);
    -ms-transform: translateY(15px) rotateZ(45deg);
    -o-transform: translateY(15px) rotateZ(45deg);
    transform: translateY(15px) rotateZ(45deg);
}

.button.active .bottom {
    -webkit-transform: translateY(-15px) rotateZ(-45deg);
    -moz-transform: translateY(-15px) rotateZ(-45deg);
    -ms-transform: translateY(-15px) rotateZ(-45deg);
    -o-transform: translateY(-15px) rotateZ(-45deg);
    transform: translateY(-15px) rotateZ(-45deg);
}

.button.active .middle {
    width: 0;
}
.sidebar-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    /*margin-top: 100px;*/
    text-align: center;
}
.sidebar-item, .sidebar-bottom {
    margin: 7px 0;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}

.sidebar-item {
    -webkit-transition: all .6s .4s ease-in-out;
    -moz-transition: all .6s .4s ease-in-out;
    -ms-transition: all .6s .4s ease-in-out;
    -o-transition: all .6s .4s ease-in-out;
    transition: all .6s .4s ease-in-out;
}
.sidebar-bottom {
    -webkit-transition: all .8s .4s ease-in-out;
    -moz-transition: all .8s .4s ease-in-out;
    -ms-transition: all .8s .4s ease-in-out;
    -o-transition: all .8s .4s ease-in-out;
    transition: all .8s .4s ease-in-out;
}
.sidebar-item.active, .sidebar-bottom.active {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.sidebar-anchor {
    color: #989595;
    text-decoration: none;
    font-size: 34px;
    position: relative;
    padding-bottom: 2px;
    line-height: 1.4;
    font-weight: 600;
}

a, .research ul .nav-item {
    position: relative;
}
.research ul .nav-item.active::before {
    background-color: #000000;
    width: 100% !important;
}
.home-img-txt-selectors a:hover::before  {
    bottom: -2px !important;
}
a.sidebar-anchor::before, .home-img-txt-selectors a:not(.active-home)::before, .tab-link::before, #client-list a::before, .menu-tabs ul li a::before, .home-img-txt-selectors a:hover::before, .press li a::before, .section-footer .content .anchor::before, .research ul .nav-item::before {
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #FF0A10;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}
#client-list li a::before, .research ul .nav-item::before {
    height: 1px !important;
}
#client-list li a:hover {
    color: #808080 !important;
}
p a::before, .bottom-row ul li a::before, .sidebar-bottom a::before {
    bottom: -1px;
}
.sidebar-bottom a::before, ul:not(.sidebar-list) li a::before, .section-footer .content .anchor::before {
    height: 2px !important;
}
a.sidebar-anchor::before {
    height: 3px !important;
}
.menu-tabs ul li a::before {
    bottom: -2px;
}
.menu-tabs ul li a::before, .home-img-txt-selectors a::before, ol li a::before, .content h4 a::before, .leadership .content a::before, .downloadable li a::before, .bottom-row ul li a::before, .main-sidebar>ul#nav_accordion>li>.btn-sidebar>a::before {
    height: 2px !important;
}
.sidebar-anchor:hover:before, ul li a:not(.active):hover::before, ol li a:hover::before, .home-img-txt-selectors a:hover::before, .content h4 a:hover::before, .leadership .content a:hover::before, .sidebar-bottom a:hover::before, a:hover::before, ul#client-list li a:hover::before, .menu-tabs ul li a:hover::before, .home-img-txt-selectors a:hover::before, .press li a:hover::before, .section-footer .content .anchor:hover::before, .research ul .nav-item:hover::before {
    width: 100% !important;
    background-color: #FF0A10 !important;
}
/* .sidebar-bottom a::before {
    width: 100% !important;
    background-color: #000000;
} */
.bottom-row a::before {
    /* bottom: 8px !important; */
    transform: scaleX(1);
}
/* .bottom-row .links a::before {
    bottom: 0px !important;
} */
.home-img-txt-selectors a::before, .menu-tabs ul li a.active::before, .main-sidebar>ul#nav_accordion>li>.btn-sidebar>a::before, .menu-tabs ul li a:hover::before {
    bottom: -2px;
}
.sidebar-anchor:hover {
    color: #FF0A10;
    text-decoration: none;
}
.atag-uni {
    text-decoration: none;
}
.logo-menu a::before, .same-style-round a::before, .close-box::before, .modal-close::before {
    content: none !important;
}
.sidebar h2 {
    margin-left: 25px;
    display: block;
    width: 92%;
    height: 63px;
    column-gap: 50%;
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    line-height: 66px;
    color: #241F1F;
}
.sidebar-anchor:focus {
    color: #FF0A10 !important;
    text-decoration: none !important;
}
li.sidebar-item.active {
    padding-bottom: 5px;
}
/* a:hover {
    text-decoration: none !important;
} */
.sidebar ul {
    margin-left: 85px;
    /*top: 15px;*/
}

.sidebar p {
    margin-left: 60px;
    font-family: Poppins;
    font-style: normal;
    font-size: 12px;
    line-height: 22px;
    margin-right: 25px;
    color: #393333 !important;
    margin-bottom: 1em;
    margin-top: 1em;
}
.educationContainer {
    margin-bottom: 0px;
}
ul.social-media {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    margin-left: 0 !important;
    padding-left: 0;
}

.c-header_menu_item a {
    margin: 0px 12px !important;
}
a {
    color: inherit;
    text-decoration: none;
}
p a, .resume a, .links li a, li.c-header_menu_item.theme-link a, .atag-uni, .read-testimonial, .v-container h3 a {
    /* border-bottom: 1px solid; */
    color: #FF0A10 !important;
    text-decoration: underline;
}
li.c-header_menu_item.theme-link a {
    padding: 0;
}
.sidebar p a {
    font-size: 12px;
    /* border-bottom: 1px solid #dedede; */
}
ul#client-list li a {
    line-height: 24px; 
}
.content strong, .content b {
    font-weight: 600;
}
p, ul li, ul li a, .yello-top, ol li, ol li a {
    font-size: 14px;
    line-height: 26px;
    /* color: #706e6e; */
    color: #808080;
    
}
p, ul li, ol li, .yello-top, a {
    font-weight: 300;
}
.nav-tab .content ol {
    padding-left: 15px;
}
#teaching-philosophy.nav-tab .content ol {
    padding-left: 35px;
}
p {
    margin-top: 0;
}
/* Password modal css */
#container {
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    visibility: hidden;
    display: none;
    background-color: rgb(0 0 0 / 88%);
    color: #fff;
}

#container:target {
    visibility: visible;
    display: block;
}
.reveal-modal {
    position: relative;
    margin: 0 auto;
    top: 40%;
}
.modal-open #container.active {
    display: flex;
    visibility: visible;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
#container .modal-content, .popup-box .modal-content {
    background-color: #171617;
    max-width: 544px;
    padding: 80px;
    position: relative;
    width: 100%;
}
#container .modal-content form {
    font-size: 14px;
}
/* .modal-open .overlay {
    background-color: rgb(0 0 0 / 78%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10000;
} */
#container .modal-close, .popup-box .modal-close {
    color: #fff;
    text-decoration: none;
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 2rem;
}
#container .modal-content input {
    width: 100%;
    outline: none !important;
}
body.modal-open {
    overflow: hidden;
    padding-right: 15px;
}
#home-logo {
    /* font-size: 32px; */
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}
.home-img-txt-selectors a {
    font-size: 14px;
    color: #787878;
    /* font-size: 0.775rem; */
}
.nav-tab .content h3 {
    color: #000;
    font-weight: 600;
    font-size: 1.4rem;
    text-align: left;
}
.subheading, .nav-tab .content > h4, .teaching-portfolio h4, .pedagogy .content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    /* color: #585858; */
    color: #1C1B1B;
    margin-bottom: 10px;
}
.teaching-portfolio h4 {
    text-align: left;
}
/* ul li a:hover {
    color: #000000;
} */
#submit {
    border: 1px solid #ffffff;
    padding: 5px 30px;
    border-radius: 5px;
    transition: all 0.3s;
}
#submit:hover {
    background-color: #0b0b0b;
}
.pass-error {
    color: #ff0000;
    margin-top: 4px;
    text-align: left;
}
.overlay-box {
    position: relative;
}
.btn-enter {
    background: transparent;
    border: none;
    width: auto;
    padding: 0;
    display: block;
    margin: auto;
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    transform: translateY(-60%);
    transition: ease-in-out all 0.3s;
    -webkit-transition: ease-in-out all 0.3s;
    -moz-transition: ease-in-out all 0.3s;
    box-shadow: none !important;
}
.btn-enter > img {
    filter: brightness(0.2);
}
.btn-enter:hover {
    right: 5px;
}
.overlay-box input[type="password"], .inner-box .input-box {
    display: block;
    max-width: 384px;
    background-color: #fff;
    border: 1px solid #b5b5b5;
    height: 42px;
    line-height: 42px;
    text-align: left;
    color: #aaa;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 0 15px;
    width: 100%;
}

.sidebar-bottom p {
    line-height: 22px !important;
}

.sidebar-content .active, .menuclose .active {
    background-color: transparent !important;
    text-align: left !important;
}

@media only screen and (min-width: 2400px) {
    p, ul li, ul li a, .yello-top, ol li, ol li a {
        font-size: 16px;
        line-height: 1.8; 
    }
}
/* @media only screen and (min-width: 2000px) {
    .sidebar p {
        margin-left: 60px;
        font-family: Poppins;
        font-style: normal;
        font-size: 1em;
        line-height: 2em;
        margin-right: 25px;
        color: #393333;
    }
    .sidebar-anchor {
        color: #989595;
        text-decoration: none;
        font-size: 2em;
    line-height: 2em;
        position: relative;
        padding-bottom: 2px;
    }
    
        #menu-btn .bar {
        margin: 0px 0;
        margin-left: auto;
        text-align: right;
        background: #000!important;
    }
    .bar.top{
        width: 10px !important;
        height: 2px!important;
    }
    .bar.middle{
        width: 15px !important;
        margin-top: 7px!important;
        height: 2px!important;
    }
    .bar.bottom{
        width: 20px !important;
        margin-top: 7px!important;
        height: 2px!important
    }
} */


@media only screen and (min-width: 1401px) {
    #menu-btn .bar {
        margin: 0px 0;
        margin-left: auto;
        text-align: right;
        background: #000!important;
    }
    .bar.top{
        width: 10px !important;
        height: 2px!important;
    }
    .bar.middle{
        width: 15px !important;
        margin-top: 7px!important;
        height: 2px!important;
    }
    .bar.bottom{
        width: 20px !important;
        margin-top: 7px!important;
        height: 2px!important
    }

}

@media only screen and (min-width: 1101px) {
    #home-logo {
        display: block;
        font-family: 'Poppins' !important;
        color: #000000;
        text-align: -webkit-center;
        text-align: -moz-center;
        vertical-align: top;
        font-weight: 900;
        line-height: 68px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .nav-right {
        position: absolute;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        /* padding-bottom: 10px; */
        margin-bottom: 10px;
        position: absolute;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;

        margin-right: 50px !important;
        margin-left: auto;
    }

    .bar.top {
        background-color: black !important;
        width: 45px !important;
    }

    .bar.middle {
        background-color: black !important;
        width: 45px !important;
    }

    .bar.bottom {
        background-color: black !important;
        width: 45px !important;
    }
    .button.active .top {
        width: 0 !important;
    }

    .button.active .bottom {
        width: 0 !important;
    }

    .button.active .middle {
        width: 0 !important;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
}

@media only screen and (min-width: 1024px)  and (max-width: 1400px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
    .nav-right {
        position: absolute;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        margin-bottom: 10px;
        position: absolute;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin-right: 50px !important;
        margin-left: auto;
    }

    .bar.top {
        background-color: black !important;
        width: 45px !important;
    }

    .bar.middle {
        background-color: black !important;
        width: 45px !important;
    }

    .bar.bottom {
        background-color: black !important;
        width: 45px !important;
    }

    .button.active .top {
        width: 0 !important;
    }

    .button.active .bottom {
        width: 0 !important;
    }

    .button.active .middle {
        width: 0 !important;
    }
}


/* Portrait */
@media only screen and (min-width: 1024px)  and (max-width: 1400px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
    .nav-right {
        position: absolute;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin-right: 50px !important;
        margin-left: auto;
    }
    .bar.top {
        background-color: black !important;
        width: 45px !important;
    }
    .bar.middle {
        background-color: black !important;
        width: 45px !important;
    }
    .bar.bottom {
        background-color: black !important;
        width: 45px !important;
    }
    .button.active .top {
        width: 0 !important;
    }
    .button.active .bottom {
        width: 0 !important;
    }
    .button.active .middle {
        width: 0 !important;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        /* padding-bottom: 10px; */
        margin-bottom: 10px;
        position: absolute;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
}

/* Landscape */
@media only screen and (min-width: 1024px) and (max-width: 1400px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
    .nav-right {
        position: absolute;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin-right: 50px !important;
        margin-left: auto;
    }
    .bar.top {
        background-color: black !important;
        width: 45px !important;
    }
    .bar.middle {
        background-color: black !important;
        width: 45px !important;
    }
    .bar.bottom {
        background-color: black !important;
        width: 45px !important;
    }
    .button.active .top {
        width: 0 !important;
    }
    .button.active .bottom {
        width: 0 !important;
    }
    .button.active .middle {
        width: 0 !important;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        margin-bottom: 10px;
        position: absolute;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
}

@media only screen and (max-device-width: 1100px) {
    .nav-right {
        position: absolute;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin-right: 0;
        margin-left: auto;
    }
    .bar.top {
        background-color: black !important;
        width: 25px;
        margin: 7px 0px 0px auto;
    }
    .bar.middle {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.bottom {
        background-color: black !important;
        width: 45px;
        margin: 7px 0px 0px auto;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        /* padding-bottom: 10px; */
        margin-bottom: 10px;
        position: absolute;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
    .sidebar-list {
        top: 40px !important;
    }
}

@media only screen and (min-device-width: 381px) and (max-device-width: 538px) {
    .nav-right {
        position: absolute;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin-right: 20px;
        margin-left: auto;
    }
    .bar.top {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.middle {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.bottom {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .button.active .top {
        width: 0 !important;
    }
    .button.active .bottom {
        width: 0 !important;
    }
    .button.active .middle {
        width: 0 !important;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        /* padding-bottom: 10px; */
        margin-bottom: 10px;
        position: absolute;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
    .sidebar-list {
        top: 40px !important;
    }
}

@media only screen and (min-device-width: 539px) and (max-device-width: 568px) {
    .nav-right {
        position: absolute;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin-right: 20px;
        margin-left: auto;
    }
    .bar.top {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.middle {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.bottom {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .button.active .top {
        width: 0 !important;
    }
    .button.active .bottom {
        width: 0 !important;
    }
    .button.active .middle {
        width: 0 !important;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        /* padding-bottom: 10px; */
        margin-bottom: 10px;
        position: absolute;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
    .sidebar-list {
        top: 40px !important;
    }
}

@media only screen and (min-device-width : 391px) and (max-device-height : 896px) and (-webkit-device-pixel-ratio : 3) {
    .nav-right {
        position: absolute;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin-right: 20px;
        margin-left: auto;
    }
    .bar.top {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.middle {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.bottom {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .button.active .top {
        width: 0 !important;
    }
    .button.active .bottom {
        width: 0 !important;
    }
    .button.active .middle {
        width: 0 !important;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        /* padding-bottom: 10px; */
        margin-bottom: 10px;
        position: absolute;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
    .sidebar-list {
        top: 40px !important;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 380px) {
    .nav-right {
        position: absolute;
    }
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin-right: 20px;
        margin-left: auto;
    }
    .bar.top {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.middle {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .bar.bottom {
        background-color: black !important;
        width: 35px;
        margin: 7px 0px 0px auto;
    }
    .button.active .top {
        width: 0 !important;
    }
    .button.active .bottom {
        width: 0 !important;
    }
    .button.active .middle {
        width: 0 !important;
    }
    .nav-right.hidden-xs {
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        flex-grow: 1;
        /* padding-bottom: 10px; */
        margin-bottom: 10px;
        position: absolute;
    }
    .sidebar {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
    .sidebar-list {
        top: 40px !important;
    }
    .sidebar p {
        line-height: 24px !important;
    }
}

@media only screen and (min-width: 1400px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5){
    .sidebar {
        height: 100%;
        width: 560px;
        position: fixed;
        display: none;
        top: 0;
        z-index: 1;
        right: 0;
        background-color: #ffffff;
    }
    .social-media {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0!important;
    }
}

@media(max-width:1400px){
    .nav-right.hidden-xs {
        top: 0!important;
    }
    #menu-btn .bar {
        margin: 10px 0;
        margin-left: auto;
        text-align: right;
    }
    .bar.top{
        width: 10px !important;
        height: 2px!important;
    }
    .bar.middle{
        width: 15px !important;
        margin-top: 10px!important;
        height: 2px!important;
    }
    .bar.bottom{
        width: 22px !important;
        margin-top: 10px!important;
        height: 2px!important
    }
    .button{
        margin-top: 0;
    }
    ul.social-media{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .button{
        margin: 0 auto!important;
    }
    .sidebar[style*="block"] .button {
        margin: unset!important;
        margin-top: 30px!important;
        margin-left: auto!important;
        margin-right: 50px!important;
    }
    .sidebar[style*="block"] h2{
        font-size:0
    }
    .sidebar-list{
        margin-top:0px;
    }
    .sidebar-item{
        margin: 12px 0;
    }
    .sidebar{
        width:560px!important
    }
}

@media(max-width:1199px){
    .sidebar-list li.sidebar-item {
        margin-top: 10px !important;
    }
    .sidebar ul {
        margin-left: 0px;
        background: #fff;
        position: relative;
        padding: 80px 100px 70px;
    }
    .sidebar p{
        margin-left: 0;
        margin-right: 0;
        padding: 0 100px;
    }
    .sidebar-list li.sidebar-item{
        margin-top: 25px;
        padding: 0;
        padding-bottom: 10px;
    }
    .sidebar-list{
        padding-top: 300px
    }
    .button.active .top,
	.button.active .middle,
    .button.active .bottom{
        width:0!important
    }
    #menu-btn .bar {
        margin-left: auto;
    }
    #menu-btn .bar {
        margin: unset;
        margin-left: auto!important;
    }
    
    ul.social-media {
        padding: 0!important;
        justify-content: center;
        display: flex;
    }
    .sidebar-list {
        top: 0!important;
    }
    .sidebar[style*="block"] h2 {
        z-index: 1;
        width: 100%;
        margin: 0;
        padding: 30px;
        font-size: 20px;
        padding: 0;
        margin: 0!important;
        margin-left: 25px !important;
    }
    
    .c-header_menu_item{
        transform: none;
    }
    .sidebar {
        width: 80% !important;
    }
    body.modal-open {
        padding-right: 0px;
    }
}

@media(max-width:991px){
    .sidebar ul{
        padding: 40px 100px 40px;
   }
   .button {
       margin: 0;	
   }
   .sidebar[style*="block"] {
       visibility: visible;
       opacity: 1 !important;
       right:0
   }
   .home-img-txt-selectors {
        margin-bottom: 40px;
    }
    p, ul li {
        font-size: 14px;
        line-height: 26px;
    }
}

@media (max-device-width: 767px){
    .menuHide {
        display: none !important;
    }
    .sidebar ul {
        padding: 40px 50px 10px;
    }
    .sidebar p{
        padding-top: 0;
        padding:0 50px
    }
    .sidebar-list li.sidebar-item {
        margin-top: 0px !important;
    }
    .sidebar p {
        font-size: 12px !important;
    }
    .sidebar[style*="block"] {
        visibility: visible;
        opacity: 1 !important;
        right:0
    }
}

@media(max-width:575px){
    #home-logo {
        font-size: 22px;
    }
}

@media(max-width:480px){
    .sidebar-list li.sidebar-item {
        margin-top: 0 !important;
    }
    .sidebar ul{
        padding: 0px 42px 0px 50px;
    }
    .sidebar p{
        padding:0 50px
    }
    .sidebar p {
        font-size: 12px !important;
    }
    .sidebar[style*="block"] {
        visibility: visible;
        opacity: 1 !important;
        right:0
    }
}

@media(max-width:390px){
    .sidebar[style*="block"] {
		visibility: visible;
		opacity: 1 !important;
		right:0
	}
	.sidebar ul {
        padding: 0px 50px 30px 48px;
    }
	.sidebar-list li.sidebar-item {
        margin-bottom: 5px;
    }
	.sidebar p {
        font-size: 12px !important;
        line-height: 24px !important;
    }
}

@media(max-width:1401px){
    .menuclose #menu-btn {
        margin-top: 22px !important;

    }
    #menu-btn {
        margin-top: 10px !important;
    }
    ul.social-media {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .sidebar-list li.sidebar-item {
        padding-bottom: 0px;
    }
    .nav-right.hidden-xs{
        background: #fff!important;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        right: 0!important;
        
    }
    #menu-btn .bar {
        margin: 0px 0;
        margin-left: auto;
        text-align: right;
        background: #000!important;
    }
    .bar.top{
        width: 10px !important;
        height: 2px!important;
    }
    .bar.middle{
        width: 15px !important;
        margin-top: 7px!important;
        height: 2px!important;
    }
    .bar.bottom{
        width: 20px !important;
        margin-top: 7px!important;
        height: 2px!important
    }
    .button{
        margin-top: 0;
        margin: unset!important;
        padding: 0 0px;
    }
    .hidden-xs{
        justify-content: left;
    }
    .sidebar[style*="block"] .bar{
        display:none
    }
    .sidebar[style*="block"] #menu-btn{
        width: 20px!important;
        background-size: contain;
        padding:0
    }
}

@media only screen and (min-width: 1200px) and (max-width:1599px) and (orientation: landscape) {
    .nav-right.hidden-xs{
        background: #fff !important;
    }
}

@media (max-width: 767px){
    .sidebar-list li.sidebar-item {
        padding-bottom: 5px;
    }
    .subheading, .nav-tab .content > h4, .subheading, .nav-tab .content > h4, .teaching-portfolio h4, .pedagogy .content h4 {
        font-size: 1.4rem;

    }
    .nav-tab .content h3 {
        font-size: 1.7rem;
    }
    /* p, ul li {
        font-size: 14px;
        line-height: 26px;
    } */
}

@media (max-width: 575px){
    .sidebar {
        width: 100% !important;
    }
    ul.social-media {
        max-height: 40px;
    }
    .sidebar ul.sidebar-list {
        padding-top: 20px;
    }
    .sidebar-anchor {
        font-size: 28px;
        line-height: 1.2;
    }
}

@media (max-width: 480px){
    .sidebar p {
        padding: 0 40px;
    }
    .sidebar ul {
        padding: 40px 35px 10px;
    }
    #container .modal-content, .popup-box .modal-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 699px) {
    html {
        font-size: 12px
    }
}

@media (min-width: 700px) and (max-width: 1100px) {
    html {
        font-size: 13px
    }
}

@media (min-width: 1101px) and (max-width: 1199px) {
    html {
        font-size: 14px
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    html {
        font-size: 16px
    }
}

@media (min-width: 1600px) and (max-width: 1999px) {
    html {
        font-size: 18px
    }
}

@media (min-width: 2000px) and (max-width: 2399px) {
    html {
        font-size: 21px
    }
    .logo-menu {
        margin: 10px 0;
    }
}

@media (min-width: 2400px) {
    html {
        font-size: 24px
    }
    .logo-menu {
        margin: 10px 0;
    }
}

@media only screen and (min-width: 2000px) {
    #home-logo {
        margin-bottom: 56px !important;
    }
    .desing-process-box-wrapper {
        padding-top: 40px;
    }
}