/*Comman Css*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&amp;display=swap');
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #2b2b2b;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

a {
    outline: 0;
    text-decoration: none;
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    border: 0;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: #122448;
}
.h2, h2 {
    font-size: 1.0rem;
}

a:hover {
    text-decoration: none;
    outline: none !important;
    color: #5d78ff;
}

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

.disp-table {
    display: table;
    height: 100%;
    width: 100%;
}

.disp-cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

input[type="text"], input[type="email"], input[type="password"] {
    padding: 0 14px;
    margin: 0 0 10px;
}

select, input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
    border: solid 1px #CCCCCC;
    height: 34px;
    width: 100%;
    font-size: 14px;
    max-width: 350px;
}

input[type="submit"] {
    border: none;
    background: #666666;
    color: #fff;
    height: 34px;
    padding: 0 20px;
}

textarea {
    border-radius: 10px;
    font-size: 14px;
}

input:focus, textarea:focus {
    outline: none;
}

.slick-slide {
    outline: none
}

.container {
    width: 100%;
    max-width: 100%;
    padding-right: 50px;
    padding-left: 50px;
    margin-right: auto;
    margin-left: auto;
}

body.inner-page {
    height: auto;
    overflow: auto;
}

body.fixed {
    position: fixed;
}

/*Home-Page*/

.loading-sec {
    display: flex;
    height: 98vh;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.loading-logo {
    text-align: center;
    padding: 90px 50px;
    position: relative;
    width: 100%
}

.loading-logo img {
    width: 70vh;
    height: 70vh;
    cursor: pointer;
    object-fit: contain;
}

.main-logo {
    position: absolute;
    top: 0;
    height: 150vh;
    padding: 100px 50px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: -1;
    transition: 4s;
    -webkit-transition: 4s;
    -moz-transition: 4s;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    opacity: 0;
}

.main-logo img {
    width: 70vh;
    height: 70vh;
}

.loading-sec .loading-imglogo {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.loading-sec.open .loading-imglogo {
    visibility: hidden;
    opacity: 0;
    transform: scale(0) !important;
    -webkit-transform: scale(0) !important;
    -moz-transform: scale(0) !important;
    transition: 2s ease-in-out;
    -webkit-transition: 2s ease-in-out;
    -moz-transition: 2s ease-in-out;
}

.loading-sec.open .main-logo {
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    opacity: 1;
    z-index: 0;
}

.loading-sec .main-logo img {
    /*background: white;*/
    border-radius: 50%;
    cursor: default;
}

.home-page aside img {
    width: 9vh;
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
}

aside img {
    width: 9vh;
    height: auto;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
}

.home-page aside li {
    visibility: hidden;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
    width: 55vh;
    height: 20vh;
}

.home-page aside li a {
    opacity: 1;
    padding-left: 12px;
}

.home-page aside .show-text li a span {
    opacity: 1;
}

body .inner-page-nav.fixed {
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0px 0px 8px -1px #b4b3b5;
    background-color: #fff;
}

body .inner-page-nav.fixed ul li a {
    width: 66px;
}

.mobile-menu {
    max-width: 30px;
    display: inline-block;
}


.inner-page-nav ul li a {
     visibility: visible;
    color: gray;
    font-size: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}

.inner-page-nav ul li a:hover,
.inner-page-nav ul li a.active,
.inner-page-nav ul li a.active:focus,
.inner-page-nav ul li:hover a{
    color: #ff4d4d;
}

.home-page aside li:active img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

aside li:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

aside.aside.inner-aside {
        position: fixed;
    display: flex;
    width: 75%;
    align-items: center;
    justify-content: center;
}
aside.aside ul li a:hover{
        box-shadow: none;
}
aside.aside ul li a{
    width: 100% !important;
    max-width: 100%;
}

.home-page.loading-sec.open aside li {
    visibility: visible;
    animation: slide 5s forwards;
    -moz-animation: slide 5s forwards;
    -webkit-animation: slide 5s forwards;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

.home-page.loading-sec.open aside li:nth-child(1) {
    top: 5%;
}

.home-page.loading-sec.open aside li:nth-child(2) {
    top: 5%;
    margin-left:18%;
}

.home-page.loading-sec.open aside li:nth-child(3) {
    top: 5%;
    margin-left:36%;
}

.home-page.loading-sec.open aside li:nth-child(4) {
    top: 5%;
    margin-left:54%;
}

.home-page.loading-sec.open aside li:nth-child(5) {
    top: 5%;
    margin-left:72%;
}

.home-page.loading-sec.open aside li:nth-child(6) {
    top: 5%;
}

.home-page.loading-sec.open aside li:nth-child(7) {
    top: 5%;
}

.home-page aside li:nth-child(1) {
    position: absolute;
    left: 45%;
    top: 55%;
    height: 13vh;
}

.home-page aside li:nth-child(2) {
    position: absolute;
    top: 47.5%;
    left: 54.5%;
    height: 16vh
}

.home-page aside li:nth-child(3) {
    position: absolute;
    left: 50%;
    top: 55%;
    height: 16vh;
}

.home-page aside li:nth-child(4) {
    position: absolute;
    left: 52.5%;
    top: 55%;
    height: 17vh;
}

.home-page aside li:nth-child(5) {
    position: absolute;
    left: 55%;
    top: 55%;
}

.home-page aside li:nth-child(6) {
    position: absolute;
    top: 55%;
    left: 49%;
    transform: rotate(90deg);
    height: 13vh;
}

.home-page aside li:nth-child(7) {
    position: absolute;
    top: 64.5%;
    left: 63%;
    height: 10vh;
}

.main-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: calc(100% - 250px);
    margin-left: auto;
    position: relative;
}

.main-page h1 {
    font-family: 'Jost', sans-serif;
}

@keyframes slide {
    100% {
        left: 80px;
        height: 8vh;
    }
}

@-moz-keyframes slide {
    50% {
        left: 80px;
        height: 8vh;
    }
}

@-webkit-keyframes slide {
    0% {
        left: 80px;
        height: 8vh;
    }
}

aside.inner-aside li a.active img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

aside.inner-aside li a.active {
    opacity: 1;
}

aside.inner-aside li a {
    opacity: 1;
    display: block;
}

.main-panel-sec {
    display: flex;
    transform: translateY(-50%);
    width: 100%;
    width: calc(100% - 20px);
    transition: all 0.4s ease-out;
    position: absolute;
    left: -6%;
    top: 11%;
    opacity: 0;
}

.main-panel-sec.expand {
    top: 50%;
    left: 1%;
    opacity: 1;
}

.main-panel-sec.expand .main-panel-m a {
    display: block;
}

.main-panel-sec.expand .main-panel-m a:hover p {
    opacity: 1;
}

.main-panel-sec.expand.show-tab .main-panel-m p {
    font-size: 14px;
    padding: 5px 0;
    display: block;
    opacity: 0;
}

.main-panel-m {
    text-align: center;
    transition: all 0.4s ease-out;
    opacity: 0;
}

.main-panel-m p {
    color: #8d4740;
    padding: 20px 0;
    font-size: 0;
    transition: all 0.4s ease-out;
    opacity: 0;
}

.main-panel-m img {
    transition: all 0.4s ease-out;
    width: 0;
    opacity: 0;
}

.main-panel-sec.show-tab {
    top: 130px;
    justify-content: flex-end;
    width: auto;
    /*left: calc(100% - 260px);*/
    left: auto;
    right: 80px;
}

.main-panel-sec.show-tab.expand .main-panel-m img {
    width: 40px
}

.main-panel-sec.show-tab.expand .main-panel-m {
    margin: 0 6px;
    opacity: 0.5;
    width: auto;
}

.main-panel-sec.show-tab .main-panel-m.active {
    opacity: 1;
}

.main-panel-sec.show-tab .main-panel-m p {
    display: none;
}

.detail-sec {
    display: none;
    width: 100%;
    margin: 0;
    height: 78vh;
    overflow: auto;
    margin-top: 12%;
}

.detail-sec img {
    /*width:15vw;*/
    max-width: 220px;
    width: 100%;
    vertical-align: unset;
}

.detail-sec a {
    margin: 0 0 50px;
    display: block;
    text-align: center;
    position: relative;
}

.project-name-caption {
    background-color: rgb(143 72 67 / 60%);
    padding: 4px 15px;
    border-radius: 5px;
    text-transform: capitalize;
    color: #fff;
    margin-top: 20px;
    font-size: 17px;
}

.tab-images-wrapper a {
    padding: 0 15px;
}

.project-caption-wrap {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.4s ease-out;
    opacity: 0;
    top: calc(100% - 30px);
}

.detail-sec a:hover .project-caption-wrap {
    opacity: 1;
    display: inline-block;
}

.detail-sec .first-half {
    max-width: 60%;
}

.detail-sec .second-half {
    max-width: 35%;
}

.furniture-sec.detail-sec .first-half {
    max-width: 49%;
}

.furniture-sec.detail-sec .second-half {
    max-width: 49%;
}

aside.aside.inner-aside li {
    margin-top: 2vh;
    text-align:left;
}

.main-panel-sec.expand .main-panel-m {
    margin: 0 7%;
    opacity: 1;
}

.main-panel-sec.expand .main-panel-m img {
    width: 160px;
    opacity: 1;
    object-fit: contain;
}

.main-panel-sec.expand .main-panel-m p {
    font-size: 18px;
    opacity: 1;
}

/*15-12-2020*/

body .inner-page-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    padding: 25px 80px 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.inner-page-nav ul {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
    padding-top: 0;
}

.inner-page-nav ul li {
    margin-left: 10px;
    width:100%;
}

.inner-page-nav ul li a {
    display: block;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    max-width: 66px;
    display: inline-block;
}

.inner-page-nav ul li a img {
    transition: all 0.2s ease-in-out;
}

.inner-page-nav ul li a:hover {
    box-shadow: 0px 0px 10px 0px #ef333a;
}

/*Search Wrapper*/

/* clears the 'X' from Internet Explorer */

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.search-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
}

.search-wrapper.show {
    transform: translateY(0);
}

.search-wrapper .close-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.search-wrapper form {
    width: 80%;
}

.search-wrapper form input {
    border: 0;
    background: #d9dada;
    width: 100%;
    height: 60px;
    font-size: 30px;
    font-weight: 300;
    padding: 0 15px 0 50px;
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 26px;
    color: #8d4640;
}

.search-wrapper form input::placeholder {
    color: #8d4640;
    opacity: 1;
}

.search-wrapper form input:-ms-input-placeholder {
    color: #8d4640;
}

.search-wrapper form input::-ms-input-placeholder {
    color: #8d4640;
}

.tab-images-wrapper {
    column-count: 5;
    padding-right: 40px;
    /*display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -ms-flex-align: center;
align-items: center;*/
}

/*People Page*/

/*title*/

.inner-page-wrapper {
    padding-right: 80px;
    position: relative;
    padding-top: 130px;
    padding-left: 80px;
}

.black_white{
    filter: gray;
    -webkit-filter: grayscale(1);
}
.black_white:hover{
    filter: none;
    -webkit-filter: grayscale(0);
}

.inernship-full-wrapper {
    margin-bottom: 80px;
}

.inernship-full-wrapper .image-block {
    max-width: 260px;
    width: 100%;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.inernship-full-wrapper .image-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inernship-full-wrapper p {
    margin-bottom: 0;
    text-align: justify;
}

.internship-wrapper .internship-wrapper-item .internship-title {
    background-color: #8d4640;
    /*max-width: 560px;*/
    max-width: 400px;
    padding: 20px 15px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.internship-wrapper .internship-wrapper-item .internship-title.right {
    margin-left: auto;
    border-bottom-left-radius: 50px;
    text-align: right;
}

.internship-wrapper .internship-wrapper-item .internship-title.left {
    border-bottom-right-radius: 50px;
}

.internship-wrapper .internship-wrapper-item h2 {
    /*font-size: 27px;*/
    font-size: 22px;
    line-height: 27px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    margin-bottom: 0;
}

.internship-wrapper .internship-wrapper-item h2 span {
    margin-left: 50px;
}

.internship-wrapper .internship-wrapper-item .internship-block {
    max-width: 170px;
}

.internship-wrapper .internship-wrapper-item .internship-block .internship-icon-block {
    position: relative;
    padding-top: 100%;
}

.internship-wrapper .internship-wrapper-item .internship-block .internship-icon-block .internship-icon {
    position: absolute;
    width: 100%;
    height: 100% !important;
    background-color: #b3b4b6;
    top: 0;
    left: 0;
    border-radius: 50%;
    display: block;
}

.internship-wrapper .internship-wrapper-item .internship-block .internship-content {
    margin: 50px 0;
}

.internship-wrapper .internship-wrapper-item .internship-block .internship-content p {
    margin-bottom: 0;
    text-align: justify;
}

.internship-images-wrapper {
    margin: 50px 0;
    border-top: 4px solid #d7d7d7;
    border-bottom: 4px solid #d7d7d7;
    padding: 25px 0;
}

.internship-images-wrapper .slick-list {
    margin: 0 -15px;
}

.internship-images-wrapper .internship-image-block {
    padding: 0 15px;
}

.internship-images-wrapper .internship-image-block .internship-image {
    position: relative;
    padding-top: 65%;
}

.internship-images-wrapper .internship-image-block .internship-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.internship-wrapper .internship-wrapper-item .row.right .internship-block {
    margin-left: auto;
}

/*Contact Page*/

.contact-form-wrapper .contact-from-content img {
    max-width: 70px;
}

.contact-form-wrapper .contact-from-content h3 {
    font-weight: 300;
    color: #000;
    font-size: 22px;
    line-height: 32px;
    margin: 20px 0 15px 0;
}

.contact-form-wrapper .contact-from-content p {
    /*font-size: 30px;
    line-height: 36px;*/
    font-size: 14px;
    font-weight: 300;
    color: #2b2b2b;
    margin-bottom: 0;
    line-height: 32px;
}

.contact-form {
    margin-top: 30px;
}

.contact-form-wrapper {
    max-width: 78%;
    margin: 0 auto;
}

.contact-form .form-field-wrapper {
    display: flex;
    margin-bottom: 8px;
}

.contact-form .form-field-wrapper label {
    min-width: 130px;
    color: #000;
    /*font-size: 26px;*/
    font-size: 16px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 0;
}

.contact-form .form-field-wrapper input, .contact-form .form-field-wrapper textarea {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    border: 0;
    height: 46px;
    background-color: #d1d2d4;
    border-radius: 8px;
    color: #000;
    font-weight: 300;
    /*font-size: 30px;*/
    font-size: 22px;
    line-height: 46px;
    padding: 8px 10px;
}

.contact-form .form-field-wrapper textarea {
    height: 92px;
}

.contact-form input[type="submit"] {
    background-color: #d1d2d4;
    text-transform: uppercase;
    /*font-size: 26px;*/
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    max-width: 100px;
    width: 100px;
    border-radius: 8px;
    margin-top: 15px;
    margin-left: auto;
    transition: all 0.2s ease-in-out;
}

.contact-form input[type="submit"]:hover {
    background-color: #8d463f;
    color: #fff;
}

ul.contact-social-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

ul.contact-social-wrapper li a i {
    color: #8d463f;
    font-size: 40px;
}

ul.contact-social-wrapper li a {
    margin: 0 30px;
}

/*Practice Page*/

.content-block.text-block h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 0;
    color: #000;
}

.content-block.text-block h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;rem
}

.content-block.text-block p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
}

.content-block.text-block-l p {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    font-weight: 300;
    width: 35%;
    text-align: justify;
    text-justify: inter-word;
}
.content-block.text-block-r p {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    font-weight: 300;
    width: 28%;
    margin-left: 50%;
    text-align: justify;
    text-justify: inter-word;
}

body.practice-page, body.process-page {
    height: auto;
    overflow: auto;
}

.content-block {
    margin-bottom: 20px;
}

.content-block.image-block img {
    width: 100%;
}

.content-block.video-block {
    position: relative;
    padding-top: 50%;
}

.content-block.video-block iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.side-menu {
    background: #fff;
    position: fixed;
    left: -100%;
    width: 270px;
    height: 100vh;
    top: 0;
    transition: 0.5s;
    padding: 20px 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0px 0px 8px -1px #b4b3b5;
    z-index: 11111;
}

.side-close-icon {
    cursor: pointer;
    position: absolute;
    top: 25px;
    max-width: 20px;
    left: 15px;
}

.side-menu-open {
    left: 0
}

.side-menu-wrap ul {
    list-style: none
}

.side-menu-wrap li {
    margin: 20px 0
}

.side-menu-wrap li img {
    max-width: 50px;
    display: inline-block;
}

.side-menu-wrap li a {
    color: #8d4640;
    font-size: 18px;
    opacity: 0.7
}

.side-menu-wrap li .active, .side-menu-wrap li a:hover {
    opacity: 1;
}

.side-menu-wrap li a span {
    margin-left: 9px
}

.internship-images-wrapper button.slick-arrow {
    display: none !important;
}

.contact-form-wrapper {
    padding-bottom: 50px;
}

/* Publication */

.publication-item {
    width: 25%;
    padding: 0 25px;
    margin-bottom: 50px;
}
.publication-item .title-text p {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0;
}
.publication-content-inner {
    margin: 0 -25px;
    display: flex;
    flex-wrap: wrap;
}
.publication-item .img-block img {
    width: 100%;
}

/* Search */

.search-filter-list ul li a {
    font-size: 18px;
    text-transform: uppercase;
    color: #2b2b2b;
}
.search-filter-list ul li {
    margin-bottom: 18px;
}
.search-filter-list ul li a.active {
    font-weight: 800;
}
.search-sidebar-block .title {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 28px;
}
.search-pro-item {
    width: 25%;
    padding: 0 25px;
    margin-bottom: 50px;
    text-align: center;
}
.search-pro-item p {
    margin-top: 25px;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.search-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}
.popup-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #828282;
    padding: 95px 140px;
    z-index: 88;
    opacity: 0;
    visibility: hidden;
    transition: all ease .4s;
}
.popup-box .close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
}
.popup-box a#closePopup img {
    width: 50px;
}
.popup-slider-item img {
    height: 475px;
    width: 100%;
    object-fit: cover;
}
.popup-slider-item p {
    font-size: 18px;
    text-transform: uppercase;
    color: #2b2b2b;
    font-weight: 800;
    margin-top: 15px;
    line-height: 1;
}
.popup-slider-bottom {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
    margin-top: 25px;
}
.popup-slider-bottom img{
    width: 100%;
}
.popup-bottom-item.slick-slide {
    width: 200px;
    height: 145px !important;
    transition: transform .4s;
    position: relative; 
    cursor: pointer;
}
.popup-bottom-item.slick-slide.slick-active {
    transform: scale(0.8) translate(45px);
}
.popup-bottom-item.slick-slide.slick-center {
    transform: scale(1);
    z-index: 5;
}
.popup-bottom-item.slick-slide.slick-center + .slick-slide {
    transform: scale(0.8) translate(-45px);
    z-index: 2;
}
.popup-bottom-item.slick-slide {
    transform: scale(0.55) translate(215px);
}
.popup-bottom-item.slick-slide.slick-center + .slick-slide + .popup-bottom-item.slick-slide {
    transform: scale(0.55) translate(-215px);
}
.popup-bottom-item.slick-slide.slick-active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #c2c2c2;
    width: 100%;
    height: 100%;
}
.popup-bottom-item.slick-slide.slick-center::after {
    background: #d1d2d4;
}
.popup-bottom-item.slick-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #aeaeae;
    width: 100%;
    height: 100%;
}
.popup-box.active {
    visibility: visible;
    opacity: 1;
}
.popup-box .close-popup img {
    width: 50px;
}
.search-page-content {
    display: none;
    height: 100%;
    padding: 125px 50px 40px;
}
.search-wrapper.show .search-page-content {
    display: block;
}
.search-page-content .search-content {
    height: 100%;
    /* overflow: auto; */
}
.search-content::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}
.search-page-content .search-content .col-lg-4 {
    display: flex;
    align-items: center;
}
.search-page-content .search-content .container, .search-page-content .search-content .row {
    height: 100%;
    overflow: hidden;
}
.search-page-content .search-content .col-lg-8 {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.search-page-content .search-content .col-lg-8::-webkit-scrollbar{
    width: 0px;
    background: transparent;
}
.search-wrapper .close-icon {
    right: 95px;
}


/*media query*/

@media only screen and (min-width: 768px) {
    .mobile-menu {
        visibility: hidden;
    }
    .home .inner-page-nav ul {
        display: none
    }
}

@media only screen and (max-width: 1400px){
    .search-page-content {
        padding-top: 90px;
    }
    .search-filter-list ul li {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 1199px) {
    .main-panel-sec {
        flex-wrap: wrap;
        width: 100%
    }
    .main-panel-sec.expand .main-panel-m {
        width: 50%;
        margin: 0
    }
    /* .detail-sec a{width: 29%} */
    .tab-images-wrapper {
        padding-right: 0
    }
    .detail-sec {
        margin-top: 120px
    }
    .publication-item{
        width: 33.33%;
    }
    .search-pro-item {
        width: 50%;
    }
    .popup-box {
        padding: 25px;
        padding-top: 70px;
    }
    .popup-slider-item img {
        height: 250px;
    }
    .popup-bottom-item.slick-slide{
        width: 190px;
        height: 120px !important;
    }
    .search-content .container {
        padding: 0;
    }
    .popup-box .close-popup img {
        width: 35px;
    }
    .search-wrapper .close-icon {
        right: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .contact-form-wrapper {
        max-width: 100%;
    }
    .publication-item{
        width: 50%;
    }
    .search-pro-item {
        width: 50%;
    }
    .search-items {
        margin-top: 25px;
    }
    .search-page-content .search-content {
        height: 100%;
        overflow-x: hidden;
    }
    .search-page-content .search-content .container, .search-page-content .search-content .row {
        height: auto;
        overflow: unset;
    }
    .search-page-content .search-content .col-lg-8 {
        height: 100%;
        overflow-y: unset;
        overflow-x: unset;
    }
    .search-page-content .search-content .col-lg-4 {
        display: block;
    }
    .search-sidebar-block .title {
        display: none;
    }
    .search-filter-list li {
        display: inline-block;
        margin-bottom: 0 !important;
        margin-right: 20px;
    }
    .search-filter-list ul li a {
        font-size: 16px;
    }
    .search-filter-list {
        width: 84vw;
        overflow: auto;
        margin-bottom: 0px;
    }
    .search-filter-list ul {
        min-width: 1470px;
        padding: 10px 0;
    }
    .search-sidebar {
        margin-top: 25px;
    }
    .search-sidebar-block {
        background: #f5f5f5;
        padding: 10px 15px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .content-block.text-block p{
        width: 100%;
    }
    .content-block.text-block-l p{
        width: 100%;
    }
    .content-block.text-block-r p{
        width: 100%;
        margin-left: 0%;
    }
    .main-panel-sec.expand .main-panel-m img {
        width: 80px
    }
    .main-logo {
        padding: 90px 15px
    }
    .loading-sec .aside {
        display: none
    }
    .home .inner-page-nav {
        visibility: hidden;
        opacity: 0;
        transition: 2s;
        -webkit-transition: 2s;
        -moz-transition: 2s;
    }
    .home .inner-page-nav-show {
        visibility: visible;
        opacity: 1;
    }
    .loading-logo {
        margin-left: auto;
        margin-right: auto;
        padding: 90px 15px;
        max-width: 350px
    }
    .loading-logo img {
        /*width: 100%;height: 100%;*/
    }
    .main-page, .inner-page-wrapper {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px
    }
    body .inner-page-nav.fixed {
        /*padding-top: 10px;padding-bottom: 10px;*/
    }
    body .inner-page-nav {
        padding: 15px
    }
    aside.aside.inner-aside {
        display: none
    }
    .detail-sec img {
        width: 100%;
        max-width: 300px
    }
    .inner-page-nav ul li a {
        max-width: 30px;
    }
    body .inner-page-nav {
        box-shadow: 0px 0px 8px -1px #b4b3b5;
    }
    body .inner-page-nav.fixed {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .internship-wrapper .internship-wrapper-item .internship-block {
        max-width: 100%
    }
    .main-panel-sec.expand {
        left: 0;
        transform: translateY(-40%);
    }
    .contact-form .form-field-wrapper {
        display: block;
    }
    .main-panel-sec.expand .main-panel-m {
        width: 100%;
        margin: 0
    }
    .contact-form-wrapper .contact-from-content p {
        font-size: 16px;
        line-height: 24px;
    }
    .contact-form input[type="submit"], .contact-form .form-field-wrapper label {
        font-size: 16px
    }
    .content-block.text-block h2, .contact-form-wrapper .contact-from-content h3 {
        font-size: 28px
    }
    /* .detail-sec a{width: 46%} */
    .internship-wrapper .internship-wrapper-item .internship-title {
        padding: 10px 15px;
        border-radius: 20px !important;
        text-align: center !important;
    }
    .internship-wrapper .internship-wrapper-item h2 {
        font-size: 18px
    }
    .inernship-full-wrapper {
        margin-bottom: 40px;
    }
    .main-panel-sec.show-tab {
        top: 115px;
        right: 15px;
        left: unset;
    }
    .detail-sec {
        margin-top: 175px;
        height: calc(100vh - 175px);
    }
    .tab-images-wrapper {
        column-count: 4;
    }
    .inernship-full-wrapper .image-block {
        margin-bottom: 30px;
    }
    .inernship-full-wrapper .col-md-8, .internship-wrapper-item .col-md-9 {
        padding: 0;
    }
    .detail-sec a:hover .project-caption-wrap {
        opacity: 0;
        display: none;
    }
    .internship-wrapper .internship-wrapper-item .internship-block .internship-icon-block {
        position: relative;
        padding-top: 48%;
        height: 170px;
        max-width: 170px;
        margin: 0 auto;
    }
    .publication-item {
        width: 50%;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .publication-content-inner {
        margin: 0 -15px;
    }
    .publication-item .title-text p {
        font-size: 12px;
    }
    .search-content .container {
        padding: 0;
    }
    .search-pro-item {
        width: 50%;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .search-items {
        margin: 0 -15px;
    }
    .popup-box {
        width: calc(100% - 30px);
        left: 50%;
        transform: translateX(-50%);
    }
    .popup-slider-bottom {
        max-width: 90%;
    }
    .search-page-content {
        display: none;
        padding: 75px 15px 15px 15px;
        height: 100%;
    }
    .search-wrapper .close-icon {
        right: 15px;
    }
    .search-sidebar-block .title {
        display: none;
    }
    .search-filter-list li {
        display: inline-block;
        margin-bottom: 0 !important;
        margin-right: 20px;
    }
    .search-filter-list ul li a {
        font-size: 16px;
    }
    .search-filter-list {
        width: 84vw;
        overflow: auto;
        margin-bottom: 0px;
    }
    .search-filter-list ul {
        min-width: 1470px;
        padding: 10px 0;
    }
    .search-sidebar {
        margin-top: 25px;
    }
    .search-sidebar-block {
        background: #f5f5f5;
        padding: 10px 15px;
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 575px) {

    .detail-sec a {
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px
    }
}

.projecttitles{
        font-size: 44px;
    font-family: "Raleway", sans-serif;;
    color: red;
    font-weight: 300 !important;
}
/*.inner-page-wrapper{*/
/*        padding-right: 15px;*/
/*        padding-left: 15px;*/
/*    }*/
  .desc{
        color: gray;
    text-align: justify;
    font-weight: 300 !important;
    font-size: 19px;
    font-family: "Raleway", sans-serif;
    line-height: 30px;
    letter-spacing: 0px;
    padding-top: 25px;
  }
  .abottssdd{
      width:100%;
      border-bottom:1px solid white;
  }

@media only screen and (max-width: 600px) {
  .projecttitles{
        font-size: 33px;
  }
   .desc{
        font-size: 17px !important;
        word-spacing: 0px !important;
  }
  .loading-sec {
    height: 100vh;
  }
}