html {
    scroll-behavior: smooth;
}
@media print {
    html,
    body {
       display: none;
    }
 }
 html {
    user-select: none;
 }
:root {
    /* background Colors: */
    --bg-color-ffffff: #ffffff;
    --bg-color-000000: #000000;
    --bg-color-8d0002: #8d0002;

    --bg-color-b20003: #b20003;
    --bg-color-e6e6e6: #e6e6e6;
    --bg-color-ced0cd: #ced0cd;

    --bg-color-8a8a8a: #8a8a8a;


    /* Colors: */
    --color-b20003: #b20003;
    --color-8d0002: #8d0002;
    --color-000000: #000000;
    --color-ffffff: #ffffff;
    --color-303030: #303030;

    /* Font/text values */
    --font-family-poppin: "Poppins", sans-serif;
    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --font-size-25: 25px;

    --font-size-30: 30px;

    --font-size-34: 34px;

    --font-size-40: 40px;
    --font-size-45: 45px;
    --font-size-50: 50px;
    --font-size-60: 60px;
    --font-size-80: 80px;
    --line-height-inherit: inherit;
    --line-height-24: 24px;
    --line-height-30: 30px;
    --line-height-34: 34px;
    --line-height-44: 44px;
    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
}




* {
    outline: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-poppin);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-16);
    color: var(--color-636363);
    margin: 0;
    padding: 0;
}

.clr {
    width: 100%;
    float: left;
}

.img {
    width: 100%;
}

a,
.btn,
button {
    color: var(--color-000000);
    outline: none;
    border: none;
    cursor: pointer;
    outline: 0;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}



.btn:hover,
a:hover,
button:hover {
    color: var(--bg-color-brown);
    text-decoration: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-400);
    text-transform: normal;
    margin-bottom: 15px;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

header,
footer,
section {
    width: 100%;
    float: left;
}

.navbar-expand-xl {
    justify-content: end;
}
button, input, optgroup, select, textarea {
    font-family: var(--font-family-poppin) !important;
   
}

hr {
    border-bottom: 1px solid var(--color-636363) !important;
    background-color: #ff757e !important;
}

p {
    font-size: var(--font-size-18);
    line-height: var(--line-height-28);
    color: var(--color-000000);
    margin-bottom: 15px;
}

.shadow {
    -webkit-box-shadow: 0 15px 20px 0 rgb(0 10 70/10%) !important;
    box-shadow: 0 15px 20px 0 rgb(0 10 70/10%) !important;
}

.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}


.section-space {
    padding: 100px 0;
}

.section-title {
    font-size: var(--font-size-80);
    color: var(--color-000000);
    font-weight: var(--font-weight-700);
    text-transform: uppercase;
}

.heading {
    font-size: var(--font-size-60);
    font-weight: var(--font-weight-700);
    text-transform: uppercase;
}

.sub-heading {
    font-size: var(--font-size-22);
    font-weight: var(--font-weight-600);

}

.sub-title {
    font-size: var(--font-size-34);
    font-weight: var(--font-weight-600);
    text-transform: uppercase;
    color: var(--color-b20003);
    letter-spacing: 2px;

}

.social-links {
    display: flex;
    flex-direction: row;
}

.social-links li a i {
    font-size: var(--font-size-20);
    /* position: relative; */
    /* top: -7px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ffffff);
    border: 2px solid #ccc;
    margin: 0px 10px;
    padding: 10px;
    border-radius: 100%;
    transition: ease all 0.5s;
}

.social-links li a i:hover {
    color: var(--color-000000);
    border: 2px solid #000000;

}


.button-link a {
    color: #495057;
    background-color: #fff;
    border-radius: 0;
    padding: 15px 35px;
    margin-top:30px;
    border: 4px solid #b20003;
    color: var(--bg-color-b20003);
    display: inline-block;
}
.button-link a:hover {
    background-color: #000000;
    border: 4px solid #000000;
    color: var(--color-ffffff);
}
/* ------------------------------------------------------------------- 
 * ## go to top
 * ------------------------------------------------------------------- */
 #cl-go-top {
    position: fixed;
    text-decoration: none;
    border: 0 none;
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: black;
    color: white;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50%;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    bottom: 25px;
    right: 25px;
    mix-blend-mode: color;
}
#cl-go-top i {
   
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
  }
  #cl-go-top::before {
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background-color: var(--bg-color-8a8a8a);
    position: absolute;
    top: -115px;
    left: 50%;
}

#cl-go-top::after {
    content: "back to top";
    display: inline-block;
    width: 120px;
    font-size: 0.8rem;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--color-303030);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    position: absolute;
    left: calc(30px + 15px);
    top: -165px;
}
#cl-go-top a:hover,
#cl-go-top a:focus {
    color: #000000;
}

  #cl-go-top:active {
    background-color: #555;
  }
  #cl-go-top.show {
    opacity: 1;
    visibility: visible;
  }

/* link button */
.explore-btn {
    font-size: var(--font-size-16);
    color: var(--color-8d0002);
    font-weight:bold;
    display: inline-block;
    border: none;
    outline: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
    line-height: 20px;
    text-align: left;
}

.explore-btn  i {
    font-size: var(--font-size-25);
    margin-right: 5px;
 
}

.explore-btn  .bi-arrow-right-circle-fill::before {
    content: "\f133";
    border: 2px solid #fff;
    border-radius: 100%;
}

.explore-btn  .bi-arrow-right-circle-fill::after {
    background-color: #bb000e;
    content: "";

}

.explore-btn:hover {
    color: var(--bg-color-000000);

}

.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transform: scale(1);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.img-zoom img:hover {
    transform: scale(1.1);
    border-radius: 0px 0px 20px 0px;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-green {
    color: var(--color-dark-green);
}


.common-alink {
    font-size: var(--font-size-16);
    line-height: var(--line-height-inherit);
    color: #ffa200;
    font-weight: var(--font-weight-700);
    display: inline-block;
    border: none;
    outline: none;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    letter-spacing: 2px;
}

/* headerstart */

.main-header {
    position: fixed;
    background-color: transparent !important;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 9;
    padding: 30px 0;
    display: block;
    height: auto;
    width: 100%;
    transition: ease all 0.5s;
}

.main-header:hover {
    /* background: rgb(32, 88, 126);
    background: linear-gradient( 77deg, rgba(32, 88, 126, 1) 0%, rgba(80, 146, 179, 1) 100%); */
    background-image: url(../images/menu-bg.jpg);
    background-size: contain;
    background-repeat: repeat-x;

}

.header-content {
    padding-top: 130px;
    padding-bottom: 55px;
}

.header-content h1 {
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-42);
    line-height: var(--line-height-54);
    letter-spacing: -0.02em;
    color: var(--color-dark-green);
}

.logo img {
    transition: ease all 0.5s;
}

.dropdown .dropdown-menu {
    display: none;
}

.dropdown .dropdown-menu {
    left: 30px;
    box-shadow: -4px 0px 15px #00000040;    border: transparent;
    background-color: var(--bg-color-ffffff);
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;

}

@media screen and (min-width: 769px) {
    .dropend:hover>.dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }
}


.main-header.shrink {
    position: fixed;
    background: rgb(255, 255, 255) !important;
    background-image: url(../images/menu-bg.jpg);
    background-size: contain;
    background-repeat: repeat-x;
    display: inline-block;
    top: 0;
    z-index: 999;
    width: 100%;
    display: block;
    background-position: bottom;
    padding: 5px 0;
    border-bottom:  1px solid #ccc;
}

.main-header.shrink .header-content {
    padding-top: 250px;
}


.main-header.shrink .logo img {
    width: 150px;
}

.nav-link {
    color: var(--color-000000);
    text-transform: uppercase;
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-600);
    margin-left: 25px;
}

.navbar-expand-xl .navbar-nav .nav-link:hover {
    color: var(--color-b20003);
}

.navbar-expand-xl .navbar-nav .dropdown-menu {
    border-radius: 5px;
}

.navbar-expand-xl .navbar-nav .dropdown-menu li a {
    /* margin-bottom: 10px; */
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    padding: 10px;
    width: 100%;
    display: block;
    text-transform: capitalize;
}

.navbar-expand-xl .navbar-nav .dropdown-menu li:hover a {
    color: var(--color-b20003);
    background-color: var(--bg-color-e6e6e6);
}

.dropdown-menu {
    min-width: 14rem;
    transition: ease all 0.5s;
    transform: scaleY(1);
    -webkit-box-shadow: 0 15px 20px 0 rgb(0 10 70/10%) !important;
    box-shadow: 0 15px 20px 0 rgb(0 10 70/10%) !important;
}

@keyframes smoothScroll {
    0% {
        /* transform: translateY(-60px); */
        opacity: 0;
    }

    100% {
        /* transform: translateY(0px); */
        opacity: 1;
    }
}

.shrink-header i {
    font-size: 1.5rem;
    color: var(--color-white);
    line-height: 0;
}

.login {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    margin-left: 15px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.login i {
    margin-right: 10px;
}

.burger {
    cursor: pointer;
    padding: 15px;
}

#header {
    position: fixed;
    width: 100%;
    background: transparent;
    color: #323537;
    z-index: 9999;
}

#header:hover {
    background-color: #000000;
}

#header .header_inner {
    position: relative;
    margin: 0 auto;
    width: 1300px;
    text-align: center;
}

#header nav {
    position: relative;
    width: 100%;
    height: 100px;
    font-size: 1em;
}

#header nav>ul {
    position: relative;
    text-align: right;
}

#header nav>ul>li {
    display: inline-block;
    vertical-align: top;
}

#header .nav-link {
    padding: 0;
}

.mobile-menu {
    display: none;
}

#header nav>ul>li>.navMenu,
#header nav>ul>li>.navMenuAll {
    position: relative;
    display: block;
    height: 100%;
    padding: 0 20px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    line-height: 100px;
    cursor: pointer;
    font-size: 1.08em;
    z-index: 999999;
}

#header nav>ul>li>.navMenu a {
    color: var(--color-ffffff);
}

#header nav>ul>li>.navMenu a:hover {
    color: var(--color-ffa200);
}

#header nav .navSub {
    position: fixed;
    display: none;
    right: 0;
    top: 100px;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    background: var(--bg-color-111a23);
    transition: 0.3s;
    z-index: 999999;
    left: 0;
    /* margin-left: 0px; */
}

#header nav .navSub .sub_contents .subMenu {
    position: relative;
    margin: 10px;
    padding: 10px;
    width: 95vw;
    height: 100%;
    vertical-align: top;
    box-sizing: border-box;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    /* left: -15%; */
}

#header nav .navSub .sub_contents .subMenu li {
    display: block;
    float: left;
    width: 25%;
    margin: 20px 0;
    cursor: pointer;
    font-size: 1.05em;
    letter-spacing: -0.02em;
    text-align: center;
    text-transform: capitalize;
}

#header nav .navSub .sub_contents .subMenu li a {
    padding: 10px 0 10px;
    color: var(--color-000000);
}

#header nav .navSub .sub_contents .subMenu li a:hover {
    color: var(--bg-color-ffa200);
}


/* 
#header nav .navSub .sub_contents .subMenu li:hover:before {
    content: "+";
    color: #fff;
    font-weight: 400;
} */

#header nav>ul>li:hover>.navMenu+.navSub {
    display: block;
    height: 200px;
}

#header nav .navSub::after {
    color: var(--color-ffffff);
    position: absolute;
    content: "+";
    padding-left: 2px;
}

#header.sticky nav>ul>li>.navMenu:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

#header nav>ul>li>.navMenu:hover,
#header nav>ul>li>.navMenu:active {
    color: rgba(255, 255, 255, 1);
}

#header nav>ul>li>.navMenu.over {
    color: rgba(255, 255, 255, 1);
    border-bottom: 5px solid #fff;
    z-index: 999999999;
}

#header nav .navSub.navSub_h {
    display: block;
    height: 200px;
}

#header nav>ul>li>.navMenu {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

#header nav>ul>li>.navMenu::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.05em;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

#header nav>ul>li>.navMenu:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* STICKY */

.sticky,
.sticky nav {
    height: 50px;
}

.sticky nav .logo {
    height: 24px;
    width: 100px;
    margin: 12px 0px;
    cursor: pointer;
}

.contents {
    background: #aaa;
}


/* 
for mobile */

.menu {
    color: var(--color-white);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.menu li {
    margin-right: 30px;
}

.menu li a {
    color: var(--color-ffffff);
}

.menu-wrapper li a:hover {
    color: var(--color-0092ff);
}

.menu-wrapper>ul>li>a:after,
.menu-wrapper>ul>li>a:before {
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.menu-wrapper>ul>li>a:before {
    bottom: 8px;
    display: block;
    height: 3px;
    width: 0%;
    content: "";
    background-color: #0092ff;
    left: 50%;
    transform: translate(-50%, 0);
}

.menu-wrapper>ul>li:not(.nav_contact)>a:hover {
    color: #0092ff;
}

.menu-wrapper>ul>li>a.current:after,
.menu-wrapper>ul>li>a:hover:before {
    width: calc(100% - 50px);
}

.menu-wrapper>ul>li a.current:after,
.menu-wrapper>ul>li a.current:before,
.menu-wrapper>ul>li>a:hover:after,
.menu-wrapper>ul>li>a:hover:before {
    opacity: 1;
}

.menu i {
    font-size: 2.2rem;
    color: var(--color-white);
}

.menu i:hover {
    color: var(--color-dark-green);
}


/* headerstart */


/* //main section// */



.mainslider {
    background: var(--bg-color-ffffff);
}


.mainslider img {
    object-fit: cover;
    height: 100vh;
    filter: brightness(0.8);
    width: 100%;
}

.main-slider::after {
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgb(0 0 0 / 72%) 0%, rgba(0, 212, 255, 0) 100%);
    height: 100%;
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    top: 0;
    z-index: 0;
}

.mainslider .swiper-navigation {
    position: relative;
    bottom: 54px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    left: -16px;
}

.mainslider .swiper-navigation .swiper-button-prev {
    position: absolute;
    right: 60px;
    left: auto;
}

.mainslider .slider-slide {
    position: relative;
}

.mainslider .slider-slide img {
    object-fit: cover;
}

.mainslider .slider-content {
    position: absolute;
    top: 40%;
    color: var(--color-ffffff);
    z-index: 9;
    width: 100%;
}

.mainslider h3 {
    font-size: var(--font-size-88);
    font-weight: var(--font-weight-700);
    margin-bottom: 0px;
    text-align: left;
    width: 55%;
}

.mainslider h4 {
    font-size: var(--font-size-22);
    line-height: var(--line-height-33);
    font-weight: var(--font-weight-300);
    margin-bottom: 50px;
}


/* about section */
.about-left {
    background-color: var(--bg-color-b20003);
    padding: 100px;
    color: var(--color-ffffff);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-left p {
    color: var(--color-ffffff);
}


.project-section {
    background-color: var(--bg-color-e6e6e6);
}

.about-left .social-links ul {
    display: flex;
    flex-direction: row;
}

.about-left .social-links li a i:hover {
    color: #ff0004;
    border: 2px solid #ff0004;
}

.awardslider .swiper-slide img {
    object-fit: contain;
    height: 70vh;
    width: 100%;
}
.awardslider .swiper-slide{
    background-color: var(--bg-color-ffffff);
}
.award-box {
    position: relative;
    padding: 50px;
    z-index: 1;
}

.award-box ul {
    position: relative;

    z-index: 9;
}

.award-box li {
    font-size: var(--font-size-22);
    border-bottom: 1px solid #b3b3b3;
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    position: relative;

}

.award-box li::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--bg-color-b20003);
    border-radius: 100%;
    left: 0px;
    top: 10px;
}

.award-box li .title {
    font-weight: 600;
}

.award-box li .year {
    color: var(--color-b20003);
}

.award-box::after {
    background-color: var(--bg-color-ced0cd);
    width: 80%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 180%;
    height: 100%;
    z-index: 0;
    /* padding: 50px; */
}

.award-section {
    background-color: var(--bg-color-e6e6e6);
}

.award-section .right-box {
    z-index: 9;
    position: relative;
}

footer {
    text-align: center;
    background-color: var(--bg-color-e6e6e6);
    font-size: var(--font-size-22);
    font-weight: var(--font-weight-400);
}

footer .social-links ul li a i:hover {
    border: tr;
}

.exhibition-section {
    color: var(--color-ffffff);

    background-color: var(--bg-color-8a8a8a);
}

.exhibition-section p {
    color: var(--color-ffffff);
}

.exhibition-section .container .row {
    display: flex;
    height: 100%;
}

.exhibition-section .nav-link {
    margin-left: 0px;
}

.exhibition-section .nav-tabs {
    border-bottom: transparent;
}

.exhibition-section .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-radius: 0;
    border: 4px solid #b20003;
    color: var(--bg-color-b20003);
}

.exhibition-section .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
    color: var(--color-000000);
    background-color: var(--bg-color-ced0cd);
    border-radius: 0;
    border: 4px solid #a7a19f;
    margin-right: 25px;

    padding: 10px 45px;

}

.address-box i {
    font-size: var(--font-size-34);
}

footer .social-links ul {
    display: flex;
    margin: auto;
}


footer .social-links ul li a i {
    color: var(--bg-color-8a8a8a);
    font-size: var(--font-size-30);
    padding: 10px;
    /* position: relative; */
    /* top: -7px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;
    margin: 0px 10px;
    padding: 10px;
    border-radius: 100%;
}

footer .social-links ul li a:hover i {
    color: var(--color-000000);

    border: 2px solid #000000;

}

.container-stage {
    padding-left: calc((100% - 1600px)/ 2);

}
.painting-box{
    overflow: hidden;
    height: 100%;
    position: relative;
}
.project-img{
    overflow: hidden;    

}
.project-img img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    overflow: hidden;
    transition: ease all 0.5s;
}
.project-img img:hover{
    transform: scale(1.1);
}
.painting-content {
    width: 100%;
    background-color: #eeeeee;
    padding: 10px;
    display: flex;
    text-align: left;
    font-weight: var(--font-weight-500);
    align-items: center;
    justify-content: center;
}

.painting-content p {
    margin-bottom: 0;
}

.painting-content .painting-left-box {
    width: 60%;
    border-right: 1px solid #979797;
    padding-right: 10px;
    margin-right: 10px;
}

.painting-content .painting-left-box .title {
    text-transform: uppercase;
    color: var(--color-000000);
    font-size: var(--font-size-18);
    margin-bottom: 10px;
}

.painting-content .painting-left-box .content {
    font-size: var(--font-size-16);
    color: var(--color-000000);

}

.painting-content .painting-left-box .content p {
    font-size: var(--font-size-14);
    

}

.painting-content .painting-right-box {
    width: 40%;
}

.painting-content .painting-right-box .explore-btn a {
    font-size: var(--font-size-14);
    margin-top: 0;
    display: flex;
    align-items: center;
}

.painting-content .painting-right-box .explore-btn a i {
    font-size: var(--font-size-34);
    margin-right: 5px;

}


.sold-out {
    top: 1em;
    left: 1em;
    color: #fff;
    background-color: #d80206;
    /* color: #d80206; */
    /* background-color: #d80206; */
    display: block;
    position: absolute;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2px 4px;
    text-shadow: 0 0 0.75em #444;
    /* box-shadow: 0 0 0.5em rgba(0,0,0,0.5); */
    font-size: 10px;
    /* border-radius: 0 20px 20px 0; */
    font-weight:bold;
    -webkit-text-shadow: 0 0 0.75em #444;
    /* -webkit-box-shadow: 0 0 0.5em rgba(0,0,0,0.5); */
    /* transform: rotate(-45deg) scale(0.75,1); */
    z-index: 99;
    border-radius:2px;
}
/* .sold-out:before {
    content: '';
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: -0.3em -5em;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    border: 2px rgba(255,255,255,0.7) dashed;
} */

.project-box .row {
    margin-bottom: 80px;
}

.about-section img {
    height: 100%;
    object-fit: cover;
}

/* exhibition-section */

.exhibitionslider .swiper-slide {
    display: flex;
    flex-direction: column;
}

.exhibition-section .tab-content .title {
    color: var(--color-000000);
    text-transform: uppercase;
    font-weight: var(--font-weight-600);
    letter-spacing: 1px;
    font-size: var(--font-size-18);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: break-word;

}

.exhibition-section .project-content {
    text-align: left;
    padding: 20px;
    font-size: var(--font-size-16);
    background-color: var(--bg-color-e6e6e6);
    color: var(--color-000000);
    width: 100%;
}

.exhibition-section .project-content .content {
    text-align: left;
    font-size: var(--font-size-14);

}

.exhibition-section nav {
    margin-bottom: 40px;
}


.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: none !important;

    width: 50px;
    height: 50px;
    margin: 50px;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: none !important;
    width: 50px;
    height: 50px;
    margin: 50px;

}

.swiper-button-prev i {
    font-size: var(--font-size-22);
    position: relative;
    left: 34px;
    top: 5px;
    transition: ease all 0.5s;

}

.swiper-button-next i {
    font-size: var(--font-size-22);
    position: relative;
    right: 34px;
    top: 5px;
    transition: ease all 0.5s;

}

.swiper-button-next.icon::before {
    width: 50px;
    height: 50px;
    border: 1px solid #323537;
    background-color: transparent;
    content: '';
    position: absolute;
    border-radius: 100%;
    right: 4px;
}

.swiper-button-prev.icon::before {
    width: 50px;
    height: 50px;
    border: 1px solid #323537;
    background-color: transparent;
    content: '';
    position: absolute;
    border-radius: 100%;
}

.swiper-button-prev.icon:hover::before {
    border: 1px solid #c20404;
}

.swiper-button-next.icon:hover::before {
    border: 1px solid #c20404;
}

.swiper-button-prev:hover i {
    left: 14px;
}

.swiper-button-next:hover i {
    right: 12px;
}

.common-padding-page {
    padding-top: 250px;
    padding-bottom: 100px;
}

/* contact page */


.common-box h6 {
    font-size: var(--font-size-20);
    /* line-height: 1.3125; */
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: var(--bg-color-b20003);
    margin-top: 0;
    margin-bottom: 0;
    font-weight: var(--font-weight-600);
}

.common-box h3 {
    font-size: var(--font-size-25);
    line-height: 1.8;
    letter-spacing: 0;
    color: #000000;
    letter-spacing: -0.03rem;
    margin-top: 0;
    font-weight: var(--font-weight-300) !important;
}

.contact-email {
    display: inline-block;
    font-size: var(--font-size-45);
    line-height: 1.222;
    color: var(--color-0092ff);
    padding-top: 2.6rem;
    position: relative;
    border-bottom: 1px solid #fff;

}

.contact-email:hover {
    color: var(--color-b20003);

    border-bottom: 1px solid #b20003;
}

.contact-email::before {
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    background-color: var(--bg-color-b20003);
    position: absolute;
    top: 0;
    left: 0;
}

.contact-number {
    font-size: var(--font-size-25);
    line-height: 1.7;
    display: block;
    color: var(--color-303030);
    padding-top: 1.1rem;

}
.contact-page .social-links {
    display: flex;
    flex-direction: column;
}

.contact-page .social-links .contact-number li a i {

    color: var(--color-000000);
    border: 1px solid #495057;

}
.contact-page .contact-number {
  
    display: flex;
  
}
.contact-page .social-links .contact-number li a i:hover {
    color: var(--color-b20003);
    border: 1px solid #8d0002;
}.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown:hover>.dropdown-menu {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}



/* clear fix */
.grid {
    width: 100%;
}

.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* ---- .grid-item ---- */

.grid-item {
    float: left;
    width: 32%;
    display: flex;
}


.grid-item img {
    max-width: 100%;
    display: block;
    border: 3px solid #fff;
    width: 100%;
}

/* ===================================================================
 * # about
 *
 * ------------------------------------------------------------------- */
.s-about {
    padding-top: 18rem;
    padding-bottom: 18rem;
    background-color: #ffffff;
    position: relative;
}


/* ------------------------------------------------------------------- 
   * ## about process
   * ------------------------------------------------------------------- */
.process {
    position: relative;
    display: flex;
}

.process h4 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 66px;
    position: relative;
}

.process__col {
    position: relative;
}

.process__col::before {
    content: attr(data-item);
    display: block;
    font-family: "metropolis-semibold", sans-serif;
    font-size: 2.1rem;
    text-align: center;
    color: #ffffff;
    background-color: var(--bg-color-8a8a8a);
    height: 48px;
    width: 48px;
    line-height: 48px;
    border-radius: 50%;
    box-shadow: 0 0 0 18px #ffffff;
    position: absolute;
    top: 0;
}

.process__col::after {
    content: '';
    top: 23px;
    position: absolute;
    border: 1px dotted #ccc;
    width: 147%;
    height: 1px;
    left: 5%;
    z-index: -1;
    transform: rotate(180deg);
}

.process__text {
    padding-right: 30px;
    padding-top: 90px;
}


/* ------------------------------------------------------------------- 
   * responsive:
   * about
   * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .s-about {
        padding-top: 15rem;
        padding-bottom: 15rem;
    }

    .process__vline-left {
        left: calc(15px + 22px);
    }

    .process__vline-right {
        left: calc(50% + 15px + 22px);
    }

    .process h4 {
        font-size: 2.6rem;
    }

    .process__col::before {
        height: 45px;
        width: 45px;
        line-height: 45px;
        font-size: 1.8rem;
        left: 15px;
    }

    .process__text {
        margin-left: 6.8rem;
        padding-right: 0;
    }
}

@media only screen and (max-width: 800px) {
    .s-about {
        padding-top: 12rem;
        padding-bottom: 12rem;
    }

    .process {
        margin-top: 3rem;
    }

    .process__vline-right {
        display: none;
    }

    .process__col {
        min-height: 0;
    }

    .process__col::before {
        top: -3px;
    }
}

@media only screen and (max-width: 600px) {
    .process__vline-left {
        left: calc(10px + 22px);
    }

    .process__col::before {
        top: -3px;
        left: 10px;
    }

    .process h4 {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 400px) {
    .s-about {
        padding-top: 9.6rem;
    }

    .process h4 {
        font-size: 2.2rem;
        padding-left: 5.4rem;
        margin-bottom: 1.8rem;
    }

    .process__vline-left {
        display: none;
    }

    .process__col {
        margin-bottom: 4.2rem;
    }

    .process__col::before {
        height: 36px;
        width: 36px;
        line-height: 36px;
        font-size: 1.6rem;
        top: -3px;
        left: 0;
    }

    .process__text {
        margin-left: 0;
    }
}

p.lead {
    font-size: 1.6rem;
    line-height: 37px;
    margin-bottom: 3.2rem;
    color: rgba(85, 85, 85, 0.95);
    font-weight: 100;
}

.work-page .painting-box {
    overflow: hidden;
background-color: #eeeeee;
}
.work-page .project-img {
overflow: hidden;}
.work-page .project-img img{
    overflow: hidden;}
.work-page .project-img .painting-content .painting-left-box{
    width: 60%;
}
.work-page .project-img .painting-content .painting-right-box {
    width: 40%;
}
.work-page .project-img .painting-content .painting-right-box .explore-btn a i {
    font-size: var(--font-size-30);
}

.gallery-tab .col-12{
    margin-bottom: 30px;
}

.work-page .painting-section .col-12{
    margin-bottom: 30px;
}

/* .ticker */


@-webkit-keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  @keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  .ticker-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    height: 3rem;
    background-color:var(--bg-color-8d0002);
    padding-left: 100%;
    box-sizing: content-box;
    z-index: 99;
  }
  .ticker-wrap .ticker {
    display: inline-block;
    line-height: 3rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
  }
  .ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1rem;
    color: white;
  }
  .ticker-wrap .ticker__item a{
    color: var(--bg-color-ffffff);
  }
  /* contact form */



.contact_field h3{
  color: #000;
   font-size: 40px;
   letter-spacing: 1px;
   font-weight: 600;
   margin-bottom: 10px
}
.contact_field p{
   color: #000;
   font-size: 13px;
   font-weight: 400;
   letter-spacing: 1px;
   margin-bottom: 35px;
}
.contact_field .form-control {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
    margin: 30px 0;
    padding: 20px 0;
}
.contact_field .form-control:focus{
   box-shadow: none;
   outline: none;
   border-bottom: 2px solid #990000;
}
.contact_field .form-control::placeholder{
   font-size: 13px;
   letter-spacing: 1px;
}
.contact_field .form-control::placeholder{
    font-size: var(--font-size-20);
}


button.contact_form_submit {
   background-color: var(--bg-color-8d0002);
   border: none;
   color: #fff;
   padding: 10px 15px;
   width: 100%;
   margin-top: 25px;
   border-radius: 35px;
   cursor: pointer;
   font-size: var(--font-size-22);

   text-transform: uppercase;
   letter-spacing: 2px;
}
button.contact_form_submit:hover{
    background-color: var(--bg-color-000000);
}
 .project-img:hover .img-overlay{
opacity: 1;
z-index: 99;
position: absolute;
 }



.content-overlay{
    background: rgba(0,0,0,0.7);
    height: 99%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    content: 'View Gallery';
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    overflow: hidden;
  }
  
  .project-img img:hover .content-overlay{
    opacity: 1;
  }
  .project-img img{
    position: relative;
  }
  .project-img img:hover {
    opacity: 1;
    background: rgba(0,0,0,0.7);
    height: 300px;
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: 'View Gallery';
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    overflow: hidden;
    z-index: 9999;
    font-size: 16px;
}
  

 
  .upcoming-slider .swiper-slide img{
    object-fit: cover;
    width: 100%;
  }
  .contact-box strong{
    margin-bottom: 0px;
    display: block;
  }

  .contact-box a:hover{
   color: var(--color-8d0002);
  }
  .project-img {
    position: relative;
    overflow: hidden;
}


.painting-box .overlay {
    position: absolute;
    left: 0;
    top: 0;
    /* transform: translate(-50%, -50%); */
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9;
    background: #ff000070 !important;
    /* border-radius: 84px; */
    width: 100%;
    height: 100%;
}

.painting-box:hover .overlay {
    opacity: 1;
}

.painting-box .overlay i {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100%; */
    align-content: center;
    font-size: 30px;
}

.modal-box {
    padding: 30px;
    background-color: var(--bg-color-ffffff);
    border-radius: 15px;
}

.modal-box .modal-content {

    background-color: transparent;
    border: none;
}

.modal-box .contact_field .form-control {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
    margin: 15px 0;
    padding: 15px 0;
    background-color: transparent;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}
.modal-box .modal-header {

    border-bottom: transparent;

}

.magnific-img .grid-item img {
   padding: 15px;
   border: 1px solid #ccc;
}


.grid-item img:hover{
    filter:hue-rotate();
}
.mobile-menu {
    display: none;
}




/* The side navigation menu */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    right: 0;
    box-shadow: -4px 0px 15px #00000040;
    opacity: 0;
    z-index: 9999;
}

.sidenav .closebtn {
    float: right;
}
.sidenav .closebtn i {
    line-height: 0;
    left: 25px;
    position: relative;
    top: -9px;
    font-size: 48px;
    color: #940009;
}

.menu-box {
    padding: 20px 45px 0px 45px;
}

.menu-box .logo img {
    margin-bottom: 30px;
    position: relative;
    left: -12px;
    width: 200px;
    top: -15px
;
  
}

.menu-box .category-list ul {
    padding: 0;
    margin: 0;
}

.menu-box .category-list li {
    font-size: var(--font-size-22);
    line-height: var(--line-height-28);
    color: var(--color-dark-grey);
    font-weight: var(--font-weight-500);
    letter-spacing: -0.02em;
    padding: 15px 0;
    border-top: 1px solid var(--color-c5c5c5);
    font-family: var(--font-family-ibm-san);
}

.menu-box .category-list li:last-child {
    border-bottom: 1px solid var(--color-c5c5c5);
}

.social-media-menu h6 {
    letter-spacing: -0.02em;
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-12);
    line-height: var(--line-height-18);
    color: var(--color-dark-grey);
    font-family: var(--font-family-ibm-san);
    margin-bottom: 25px;
}

.whatsapp-bg {
    background: var(--bg-color-48b749);
}

.instagram-bg {
    background: radial-gradient( 130.55% 130.54% at 13.29% 100.47%, #fa8f21 9%, #d82d7e 78%);
}

.facebook-bg {
    background: var(--bg-color-3b5998);
}

.twitter-bg {
    background: var(--bg-color-0094FF);
}

.youtube-bg {
    background: var(--bg-color-FF0000);
}

.linkedin-bg {
    background: var(--bg-color-0A66C2);
}

.social-media-menu {
    margin-top: 0px;
}

.social-media-menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.social-media-menu li {
    border-radius: 100%;
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.social-media-menu li i {
    color: var(--color-white);
    border-radius: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    color: var(--color-ffffff);
}

.menu-button-other {
    border: 1px solid var(--color-c5c5c5);
    padding: 15px 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-family: var(--font-family-ibm-san);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.menu-button-other .icon {
    width: 10%;
}

.menu-button-other .content {
    width: 90%;
}

.menu-button-other i {
    padding: 15px;
    color: var(--bg-color-48b749);
}


/* The side navigation menu end*/

.toggle-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    outline: 0 !important;
    padding: 0;
    pointer-events: initial;
    position: relative;
    vertical-align: middle;
    width: 30px;
    z-index: 1110;
}

.toggle-menu span {
    background-color: var(--bg-color-8d0002);
    content: "";
    display: block;
    height: 2px;
    left: calc(50% - 13px);
    position: absolute;
    top: calc(50% - 1px);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 35px;
    -webkit-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    -moz-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    -ms-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    -o-transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
}

.toggle-menu span:after,
.toggle-menu span:before {
    background-color: var(--bg-color-8d0002);
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, -webkit-transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
    transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear, -webkit-transform 0.2s linear;
    width: 35px;
}

.toggle-menu span:after {
    top: -7px;
}

.toggle-menu span:before {
    width: 17px;
    right: 0;
    top: 7px;
}
.dropdown-menu li .dropdown-item {
    padding: 8px 0;
    white-space: unset;
    border-bottom: transparent;
    font-size: 14px;
    background-color: transparent;
}
.menu-box .category-list .dropdown-menu li {
  padding: 0;
}

::-webkit-input-placeholder { /* Edge */
      font-size: 16px;

    }
    
    :-ms-input-placeholder { /* Internet Explorer 10-11 */
       font-size: 16px;

    }
    
    ::placeholder {
 
    font-size: 16px !important;
    }

    .video-gallery .col-12{
        margin-bottom: 20px;
    }