body {
    padding: 0;
    margin: 0;
}

body.white-bg {
    background: #fff;
    overflow-y: auto;
    height: auto;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-radius: 0px;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #ada5a4;
    /* background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122, 153, 217)), color-stop(0.72, rgb(73, 125, 189)), color-stop(0.86, rgb(28, 58, 148))); */
}

@font-face {
    font-family: 'Amelaryas';
    src: url(../font/Amelaryas.otf);
  }

h1 {
    font-family: 'Poppins', sans-serif;
}
p {
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 27px;
}
img{
    width: 100%;
}
.container {
    max-width: 1200px;
}


/* header */

.header {
    padding: 30px 0;
    background-color: #fff;
    box-shadow: 3px 3px 3px #cccccc1a;
    z-index: 99;
}

.logo {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
}

.container {
    padding: 0 15px;
}

.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    align-items: center;
}

ul.submenu {
    padding-left: 26px;
}
.nav-list li {
    padding: 0 10px;
}

.nav-list li a {
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    display: block;
}

.nav-list li a::after {
    content: "";
    background-color: #ffffff;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s linear;
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-list li.active a::after {
    width: 100%;
}

.nav-list li.with-submenu {
    position: relative;
    cursor: pointer;
}

.nav-list li.with-submenu .submenu {
    position: absolute;
    left: 50%;
    top: 100%;
    background: #ffffff;
    border-radius: 10px;
    transform: translateX(-50%);
    box-shadow: 2px 2px 1px 2px #ccc;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.nav-list li.with-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.nav-list li.with-submenu .submenu li {
    padding: 0;
}

.nav-list li.with-submenu .submenu a {
    color: #000000;
    display: block;
    padding: 8px 15px;
    transition: all 0.3s;
}

.nav-list li.with-submenu .submenu a:hover {
    background-color: rgba(49, 20, 50, 0.3);
}

.nav-list li.with-submenu .submenu a::after {
    display: none;
}

.hamburger {
    display: none;
    z-index: 9;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #000;
    display: block;
    margin: 4px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(2) {
    width: 20px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active .line {
    background-color: #311432;
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}

a.tamanna-logo img {
    width: 85%;
}

li.with-submenu.is-open i {
    margin-left: 8px;
}

li.art-sub-menu {
    position: relative;
    left: 20px;
}

li.art-sub-menu a {
    font-size: 16px;
}

@media (max-width: 1920px) {
    .header {
        padding: 30px 0;
        width: 100%;
        display: block;
        left: 0;
        right: 0;
        position: absolute;
        top: 0;
    }
    .hamburger {
        display: block;
    }
    .nav-wrap {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        background-color: #ffffff;
        transition: all 0.5s linear;
        max-width: 300px;
        width: 100%;
        height: 100%;
        box-shadow: 2px -5px 5px 3px #ccc;
        opacity: 0;
        visibility: hidden;
        z-index: 9;
    }
    .nav-wrap.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: unset;
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.5s;
        transition-duration: 1s;
        transition-property: all;
        padding: 10px;
    }
    .nav-wrap.is-open .nav-list {
        opacity: 1;
        visibility: visible;
    }
    .nav-list li {
        width: 100%;
        padding: 7px 10px;
        list-style: none;
    }
    .nav-list li a {
        color: #311432;
        text-align: left;
        display: inline-block;
        padding: 2px 0;
    }
    .nav-list li a::after {
        background-color: #311432;
    }
    .nav-list li.with-submenu .submenu {
        position: static;
        width: 100%;
        transform: translateX(-10px);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        display: none;
        transition: auto;
    }
    .nav-list li.with-submenu .submenu li {
        padding: 7px 20px;
        padding-left: 0;
    }
    .nav-list li.with-submenu .submenu li:hover a {
        background-color: transparent;
    }
    .nav-list li.with-submenu .submenu li a {
        display: inline-block;
        padding: 2px 0;
    }
    .nav-list li.with-submenu .submenu li a::after {
        display: block;
    }
}


/* hero section */

section.hero-section {
    background: #d9c5c4;
    display: flex;
    align-items: center;
    padding: 50px 0px;
    align-items: center;
    justify-content: center;
}

h1.title {
    font-size: 50px;
    font-weight: 900;
    line-height: 50px;
    margin-bottom: 20px;
    color: #0f1105;
}

ul.getin-touch li {
    list-style: none;
    font-family: 'Poppins';
    color: #484848;
    font-weight: 600;
    line-height: 26px;
    font-size: 18px;
    letter-spacing: 0;
    border-bottom: 1px solid #2222221c;
    width: 53%;
    margin-bottom: 20px;
}

ul.getin-touch li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    line-height: 35px;
}
ul.getin-touch li a:hover {
    color: rgb(88, 88, 88);
   
}

ul.getin-touch {
    padding: 0;
}

.inner-section p {
    list-style: none;
    font-family: 'Poppins';
    color: #000;
    font-weight: 400;
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 60px;
}

.social-link ul li {
    float: left;
    list-style: none;
    width: auto;
    margin-left: 20px;
    margin-right: 30px;
}

.social-link ul {
    padding: 0;
    margin: 0;
}

.photo-inner img {
    width: 99%;
    position: relative;
    right: 20%;
    z-index: 999;
}

.photo-inner {
    background: #f9ebe4;
    height: 100vh;
    padding-top: 9rem;
    padding-bottom: 6rem;
    position: absolute;
    top: -11rem;
    right: 5px;
}

h1.tamanna-title {
    font-size: 81px;
    font-family: Amelaryas;
    position: absolute;
    left: -11rem;
    text-transform: uppercase;
    color: #0f1104;
    opacity: 14%;
    bottom: -46%;
    z-index: 1;
}

body {
    height: 100vh;
    background: #d9c5c4;
    overflow: hidden;
}

.main-body-section {
    height: 100vh;
    background: #d9c5c4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-inner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 238px;
    background: #f9ebe4;
    top: -13%;
    z-index: 9999;
}

.social-link {
    background: #fff;
    padding: 50px 45px;
    padding-bottom: 80px;
    margin-top: -5px;
    right: 0;
    right: -3rem;
    position: relative;
}

section.social-section {
    width: 100%;
    overflow: hidden;
    margin-top: -28px;
    position: absolute;
    bottom: -21px;
}

.social-link ul li a {
    font-size: 17px;
    font-family: 'Poppins';
    color: #0f1104;
    font-weight: 500;
}

.social-link ul li a:hover {
    text-decoration: none;
}

.social-link ul li a:before {
    position: absolute;
    content: "";
    width: 10%;
    border-bottom: 2px solid #000;
    bottom: 47px;
}

@media screen and (min-device-width: 1750px) and (max-device-width: 1920px) { 
.photo-inner img {
    width: 95%;
    }

    h1.tamanna-title {
        font-size: 91px;
        font-family: Amelaryas;
        position: absolute;
        left: -11rem;
        text-transform: uppercase;
        color: #0f1104;
        opacity: 14%;
        bottom: -56%;
        z-index: 1;
    }
}

@media screen and (min-device-width: 1500px) and (max-device-width: 1700px) { 
    .photo-inner img {
        width: 85%;
        position: relative;
        right: 20%;
        z-index: 999;
    }
}

.main-body-section.all-pages {
    background: #fff;
    height: auto;
    display: block;
}


/* art on wall */

.space-bredcrume {
    height: 106px;
    background: #000;
    clear: both;
    width: 100%;
}

section.padding-space-top-bottom {
    padding: 70px 0px;
}

section.art-on-wall-section {
    background: #f9f9f9;
}

.art-content-area {
    padding-left: 30px;
    display: flex;
    align-items: start;
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }

h1.title.title-color {
    color: #837c7c;
}

.art-content-area p {
    text-align: justify;
    z-index: 9;
    font-size: 17px;
    line-height: 28px;
}

img.qute {
    width: 15%;
    position: relative;
    top: -3rem;
    float: right;
    z-index: 1;
    opacity: 0.3;
}

h1.art-on-title:after {
    position: absolute;
    content: "";
    width: 10%;
    border: 2px solid #c3bfbe;
    margin-top: 30px;
    margin-left: 24px;
}

h1.art-on-title {
    margin-bottom: 50px;
    line-height: 60px;
    color: #706d6d;
}


/* Footer */
section.footer-section {
    padding: 60px 0px;
    background: #d9c5c4;
}

h4.contact-to {
    margin-bottom: 0;
}

h4.contact-to a {
    color: #fff;
}

h4.contact-to a i {
    margin-right: 10px;
}

ul.ft-social li {
    text-align: center;
    margin: 0 auto;
    float: left;
    margin-left: 20px;
    width: 45px;
    height: 45px;
    background: #000;
    padding: 0;
    border-radius: 50px;
    transition: 300ms;
    position: relative;
    cursor: pointer;
}

ul.ft-social {
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    display: inline-block;
}

.footer-inner-section {
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}

ul.ft-social li a {
    font-size: 23px;
    color: #fff;
    line-height: 43px;
}

ul.ftlis-list li {
    float: left;
    margin-left: 12px;
    text-align: center;
}

ul.ftlis-list li a {
    color: #222;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 500;
}

ul.ftlis-list {
    justify-content: center;
    display: inline-block;
    margin-top: 25px;
}

ul.ft-social li:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    box-sizing: content-box;
    box-shadow: 0 0 0 3px #000;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 300ms;
}

ul.ft-social li:hover:after {
    opacity: 1;
    transform: scale(1.15);
    cursor: pointer;
}

ul.ft-social li:hover {
    color: #fff;
}
section.copyright {
    background: #464748;
    padding: 20px 0px;
}

p.copy-right.design {
    float: right;
}

p.copy-right.design a {
    color: #fff;
}

section.copyright p {
    color: #fff;
    margin-bottom: 0;
    font-size: 15px;
}

/* shaheen bagh */

.bredcrum-section {
    background: #f9ebe4;
    height: 432px;
    z-index: 1;
}

section.shaheen-bagh-section {
    margin-top: -26rem;
}

/* top scroll */

#scrolltop {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.5s ease-in;
    position:
    fixed;
    bottom: 2%;
    right: 3%;
    background: rgb(15 17 5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding-top: 6px;
    padding-left: 2px;
  }
  
  .top-button {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
    cursor: pointer;
    padding: 12px;
    text-align: center;
    color: #fff;
    padding-top: 33px;
  }

  .comparisonSection {
    position: relative;
    padding-bottom: 56.25%; /* to maintain aspect ratio (responsive!) */
  }
  .comparisonImage {
    width: 100%;
    height: 100%;
  }
  .afterImage {
    position: absolute;
    overflow: hidden;
    top: 0;
    transform: translate(100%, 0px);
  }
  .afterImage img {
    transform: translate(-100%, 0px);
  }
  .comparisonImage img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
  }

  a.view-gallery-btn {
    background: #d9c5c4;
    padding: 15px 20px;
    position: relative;
    font-weight: 500;
    top: 26px;
    border-radius: 2px;
    font-family: 'Poppins';
    color: #222;
    transition: 0.9s;
    font-size: 18px;
    margin-right: 15px;
}

a.view-gallery-btn:hover {
    background: #f9ebe4;
    box-shadow: 1px 3px 5px #22222259;
    transition: 0.9s;
    color: #222;
}
.gallery-box {
    margin-bottom: 30px;
}

/* contact us */
section.contact-main-section {
    background: #f7f7f7;
}

.contact-inner-section {
    display: grid;
    align-items: center;
    height: 100%;
}

ul.getin-touch li i {
    font-size: 18px;
}

.internships-certificate .art-images-inner img {
    box-shadow: 5px 5px 15px #2222220f;
}

section.internships-certificate .art-content-area {
    padding-top: 20px;
}

.description {
    text-align: left;
    width: 400px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.4;
  }
  
  @import 'https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:700';
  
  * {
    box-sizing: border-box;
  }
  
  .content {
    font-weight: 300;
    margin: 30px auto 40px;
    padding: 30px;
    background: white;
    color: black;
    width: 400px;
    display: none;
    visibility: hidden;    
    transition: all 300ms cubic-bezier(0.335, 0.010, 0.030, 1.360);
    position: relative;
    top: -15px;
    
   
  }

.content.open {
    display: block;
    visibility: visible;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 30px;
  }


  @media screen and (min-device-width: 900px) and (max-device-width: 1180px) {
    a.tamanna-logo img {
        width: 62%;
    }
    .photo-inner {        
        top: -5rem;
    }

    .container {
        max-width: 85%;
    }

    h1.tamanna-title {
        font-size: 58px;
        font-family: Amelaryas;
        position: absolute;
        left: -5rem;
        text-transform: uppercase;
        color: #0f1104;
        opacity: 14%;
        bottom: -16%;
        z-index: 1;
    }
  }

  @media screen and (min-device-width: 320px) and (max-device-width: 768px) {

    body {
        height: 100vh;
        background: #d9c5c4;
        overflow: auto;
    }
    .main-body-section {
        height: auto;        
        overflow: scroll;
        
    }
    .header {        
        z-index: 9999;
    }
    .full-width {
        flex: 100%;
        width: 100%;
    }
    .photo-inner {
        background: #f9ebe4;
        height: auto;
        padding-top: 9rem;
        padding-bottom: 6rem;
        position: inherit;
        top: -43px;
        right: 5px;
    }
    .photo-inner:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 114px;
        background: #f9ebe4;
        top: 6rem;
        z-index: 9;
    }
    .photo-inner img {
        width: 86%;
        position: relative;
        right: 14px;
        z-index: 999;
    }
    .title-font-size h1.title {
        font-size: 28px;
        margin-top: 34px;
        margin-bottom: 7px;
    }
    h1.title {
        font-size: 28px;
    }
    .portfolio-section .gallery-content {
        padding: 24px 0px;
        padding-bottom: 0;
    }
    .portfolio-section .gallery-content h4 {
        font-size: 23px;
        font-weight: 600;
        padding: 0;
        margin: 0;
    }
    .portfolio-section .gallery-work {        
        margin-bottom: 20px;
    }

    section.shaheen-bagh-section {
        margin-top: -26rem;
        overflow: hidden;
    }

    .shaheen-bagh-section .gallery-work {
        margin-bottom: 20px;
    }
    
    .shaheen-bagh-section .gallery-work img {
        box-shadow: 4px 5px 7px #2222220d;
    }

    section.padding-space-top-bottom {
        padding: 18px 0px;
    }

    .art-content-area {
        padding-top: 36px;
        padding-left: 0;
    }

    img.qute {
        width: 15%;
        position: relative;
        top: -5rem;
    }
    .portfolio-section .gallery-work{
        margin-bottom: 30px !important;
    }
    .portfolio-section .gallery-content h4 {
        font-size: 25px;
        font-weight: 500;
    }




  }