@font-face {
    font-family: "TTSupermolotNeue-Black";
    src: url(../fonts/TTSupermolotNeue-Black.otf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "TTSupermolotNeue-Bold";
    src: url(../fonts/TTSupermolotNeue-Bold.otf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "TTSupermolotNeue-ExtraBold";
    src: url(../fonts/TTSupermolotNeue-ExtraBold.otf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "TTSupermolotNeue-ExtraLight";
    src: url(../fonts/TTSupermolotNeue-ExtraLight.otf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "TTSupermolotNeue-Light";
    src: url(../fonts/TTSupermolotNeue-Light.otf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "TTSupermolotNeue-Medium";
    src: url(../fonts/TTSupermolotNeue-Medium.otf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "TTSupermolotNeue-Regular";
    src: url(../fonts/TTSupermolotNeue-Regular.otf);
    font-style: normal;
    font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* scroll */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(128, 128, 128);
}

::-webkit-scrollbar-thumb {
    background: #575757;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #414141;
}

body {
    width: 100%;
    height: 100%;

}

.container {
    width: 1170px;
    margin: auto;
}

section {
    overflow: hidden;
}

img {
    width: 100%;
    pointer-events: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.complogo {
    width: 200px;
    position: absolute;
    left: 30px;
    top: 0;
    display: none;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

.complogo-r {
    width: 78px;
    position: absolute;
    right: 30px;
    top: 0;
    display: none;

    text-decoration: complogo-r;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.7s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

.blink {}

/*****portfolio******/
.portfolio {
    height: 100vh;
    display: grid;
    place-content: center;
}

.portfolio .heading {
    text-transform: uppercase;
    text-align: center;
}

.portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
    position: relative;
}

.portfolio .heading h1 span {
    color: #F58634;
}

ul.tabs {
    text-align: center;
    margin-top: 25px;
}

ul.tabs li {
    display: inline-block;
    padding: 0 20px;
}

ul.tabs li a {
    color: #676c72;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Regular";
    font-weight: 500;
    transition: .2s;
}

ul.tabs li a:hover {
    color: #F58634;
}

ul.tabs li a.active {
    font-weight: 900;
    color: #F58634;
    position: relative;
}

ul.tabs li a.active::before {
    position: absolute;
    content: '';
    top: 25px;
    background-color: #F58634;
    width: 90%;
    height: 3px;
    right: 50%;
    transform: translate(50%);
}

ul.cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

ul.cont li {
    width: 23%;
    margin: 1%;
    cursor: pointer;
    position: relative;

}

ul.cont li figure {
    margin-bottom: -4px;
}

ul.cont li figure img {
    border-radius: 5px;
}

ul.cont li .inner {
    position: absolute;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    background-color: #f58434d5;
    height: 90%;
    width: 90%;
    border-radius: 6px;
    display: grid;
    place-content: center;
    text-align: center;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
}

ul.cont li:hover .inner,
ul.cont li:hover {
    opacity: 1;
    filter: unset;
    visibility: visible;
}

ul.cont li .inner h2 {
    font-size: 30px;
    font-family: "TTSupermolotNeue-Bold";
    text-transform: capitalize;
    color: #fff;
}

ul.cont li .inner h3 {
    font-size: 16px;
    font-family: "TTSupermolotNeue-Regular";
    text-transform: capitalize;
    color: #fff;
    padding-bottom: 7px;
}

/* header */
header {
    background-color: #272727;
    height: 70px;
    top: -100px;
    transition: top ease .25s;
}

header .main-head {
    padding-top: 9px;
}

header .logo {
    float: left;
}

header .logo h1 {
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-ExtraBold";
    color: #fff;
    font-size: 50px;
}

header .mob-bar {
    display: none;
}

header nav {
    float: right;
}

header nav ul li {
    display: inline-block;
    padding: 20px;
    position: relative;
}

header nav ul li ul.drop {
    position: absolute;
    top: 45px;
    left: 7px;
    width: 190px;
    height: 0;
    background-color: #272727;
    z-index: 1;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

header nav ul li:hover ul.drop {
    opacity: 1;
    visibility: visible;
}

header nav ul li:hover ul.gr {
    height: 310px;
}

header nav ul li:hover ul.webdes {
    height: 180px;
}

header nav ul li:hover ul.vid {
    height: 140px;
}

header nav ul li ul.drop li {
    border-bottom: 1px dashed rgb(214, 214, 214);
    color: #fff;
    padding: 12px 15px;
    display: block;
}

header nav ul li ul.drop li:last-child {
    border: none;
}

header nav ul li a {
    font-family: "TTSupermolotNeue-Regular";
    text-transform: capitalize;
    color: #fff;
    transition: all .25s;
}

header nav ul li a:hover {
    color: #F58634;
}

header nav ul li a.active {
    color: #F58634;
}

/* fixed header */
header.fixed {
    position: fixed;
    width: 100%;
    height: 50px;
    top: 0;

    transition: top ease .25s;
    z-index: 4;
    box-shadow: 0 3px 4px #414040;
}

header.fixed .main-head {
    padding-top: 4px;
}

header.fixed .logo h1 {
    font-size: 40px;
    font-family: "TTSupermolotNeue-Bold";
}

header.fixed .main-head ul li {
    padding: 12px 15px;
}

/* Graphic page */
.graphic {
    overflow: unset;
}

.gr-portfolio {
    height: auto;
    width: 100%;
}

.gr-portfolio .works {
    padding-bottom: 50px;
}

.gr-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.gr-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.gr-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.gr-portfolio .heading h1 span {
    color: #F58634;
}

.gr-portfolio ul.cont li {
    width: 23%;
    margin: 1%;
}

.gr-portfolio ul.cont li:nth-child(1),
.gr-portfolio ul.cont li:nth-child(2),
.gr-portfolio ul.cont li:nth-child(3) {
    width: 31.33%;
}

.gr-portfolio ul.cont li:hover {
    filter: grayscale(0);
}

/* Brochure page */
.broc {
    overflow: unset;
}

.brcrbrcr-portfolio {
    height: auto;
}

.brcr-portfolio .works {
    padding-bottom: 50px;
}

.brcr-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.brcr-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.brcr-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.brcr-portfolio .heading h1 span {
    color: #F58634;
}

.brcr-portfolio ul.cont {
    justify-content: unset;
    align-items: unset;
}

.brcr-portfolio ul.cont li {
    width: 31.33%;
    filter: grayscale(0);
}

.brcr-portfolio ul.cont li .inner {
    background-color: rgba(34, 34, 34, 0.767);
    width: 100%;
    height: 100%;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 10;
}

.brcr-portfolio ul.cont li .inner:hover {
    opacity: 1;
}

.brcr-portfolio ul.cont li .inner p {
    color: #fff;
    font: 20px;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Medium";
}

.brcr-portfolio ul.cont li .inner i {
    font-size: 15px;
    color: #fff;
}

/* Package page */
.pack {
    overflow: unset;
}

.pkg-portfolio {
    height: auto;
}

.pkg-portfolio .works {
    padding-bottom: 50px;
}

.pkg-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.pkg-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.pkg-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.pkg-portfolio .heading h1 span {
    color: #F58634;
}

.pkg-portfolio ul.cont {
    justify-content: unset;
    align-items: unset;
}

.pkg-portfolio ul.cont li {
    width: 31.33%;
    filter: grayscale(0);
}

.pkg-portfolio ul.cont li .inner {
    background-color: rgba(34, 34, 34, 0.767);
    width: 100%;
    height: 100%;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 10;
}

.pkg-portfolio ul.cont li .inner:hover {
    opacity: 1;
}

.pkg-portfolio ul.cont li .inner p {
    color: #fff;
    font: 20px;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Medium";
}

.pkg-portfolio ul.cont li .inner i {
    font-size: 15px;
    color: #fff;
}

/* Logo page */
.logo {
    overflow: unset;
}

.lg-portfolio {
    height: auto;
}

.lg-portfolio .works {
    padding-bottom: 50px;
}

.lg-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.lg-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.lg-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.lg-portfolio .heading h1 span {
    color: #F58634;
}

.lg-portfolio ul.cont {
    justify-content: unset;
    align-items: unset;
}

.lg-portfolio ul.cont li {
    width: 31.33%;
    filter: grayscale(0);
}

.lg-portfolio ul.cont li .inner {
    background-color: rgba(34, 34, 34, 0.767);
    width: 100%;
    height: 100%;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 10;
}

.lg-portfolio ul.cont li .inner:hover {
    opacity: 1;
}

.lg-portfolio ul.cont li .inner p {
    color: #fff;
    font: 20px;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Medium";
}

.lg-portfolio ul.cont li .inner i {
    font-size: 15px;
    color: #fff;
}

/* 3D modeling page */
.model {
    overflow: unset;
}

.mod-portfolio {
    height: auto;
    padding-bottom: 140px;
}

.mod-portfolio .works {
    padding-bottom: 50px;
}

.mod-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.mod-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.mod-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.mod-portfolio .heading h1 span {
    color: #F58634;
}

.mod-portfolio ul.cont {
    justify-content: unset;
    align-items: unset;
}

.mod-portfolio ul.cont li {
    width: 31.33%;
    filter: grayscale(0);
}

.mod-portfolio ul.cont li .inner {
    background-color: rgba(34, 34, 34, 0.767);
    width: 100%;
    height: 100%;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 10;
}

.mod-portfolio ul.cont li .inner:hover {
    opacity: 1;
}

.mod-portfolio ul.cont li .inner p {
    color: #fff;
    font: 20px;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Medium";
}

.mod-portfolio ul.cont li .inner i {
    font-size: 15px;
    color: #fff;
}

/* EDM Page */
.edm {
    overflow: unset;
}

.em-portfolio {
    height: auto;
}

.em-portfolio .works {
    padding-bottom: 50px;
}

.em-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.em-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.em-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.em-portfolio .heading h1 span {
    color: #F58634;
}

.em-portfolio ul.cont {
    justify-content: unset;
    align-items: unset;
}

.em-portfolio ul.cont li {
    width: 31.33%;
    filter: grayscale(0);
}

.em-portfolio ul.cont li .inner {
    background-color: rgba(34, 34, 34, 0.767);
    width: 100%;
    height: 100%;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 10;
}

.em-portfolio ul.cont li .inner:hover {
    opacity: 1;
}

.em-portfolio ul.cont li .inner p {
    color: #fff;
    font: 20px;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Medium";
}

.em-portfolio ul.cont li .inner i {
    font-size: 15px;
    color: #fff;
}

/* Social Media Page */
.social {
    overflow: unset;
}

.soc-me-portfolio {
    height: auto;
}

.soc-me-portfolio .works {
    padding-bottom: 50px;
}

.soc-me-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.soc-me-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.soc-me-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.soc-me-portfolio .heading h1 span {
    color: #F58634;
}

.soc-me-portfolio ul.cont {
    justify-content: unset;
    align-items: unset;
}

.soc-me-portfolio ul.cont li {
    width: 31.33%;
    filter: grayscale(0);
}

.soc-me-portfolio ul.cont li .inner {
    background-color: rgba(34, 34, 34, 0.767);
    width: 100%;
    height: 100%;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 10;
}

.soc-me-portfolio ul.cont li .inner:hover {
    opacity: 1;
}

.soc-me-portfolio ul.cont li .inner p {
    color: #fff;
    font: 20px;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Medium";
}

.soc-me-portfolio ul.cont li .inner i {
    font-size: 15px;
    color: #fff;
}

/* Print Ad Page */
.print {
    overflow: unset;
}

.prnt-portfolio {
    height: auto;
}

.prnt-portfolio .works {
    padding-bottom: 50px;
}

.prnt-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
}

.prnt-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.prnt-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.prnt-portfolio .heading h1 span {
    color: #F58634;
}

.prnt-portfolio ul.cont {
    justify-content: unset;
    align-items: unset;
}

.prnt-portfolio ul.cont li {
    width: 31.33%;
    filter: grayscale(0);
}

.prnt-portfolio ul.cont li .inner {
    background-color: rgba(34, 34, 34, 0.767);
    width: 100%;
    height: 100%;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 10;
}

.prnt-portfolio ul.cont li .inner:hover {
    opacity: 1;
}

.prnt-portfolio ul.cont li .inner p {
    color: #fff;
    font: 20px;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Medium";
}

.prnt-portfolio ul.cont li .inner i {
    font-size: 15px;
    color: #fff;
}

/* web design page */
.web-des {
    overflow: unset;
}

.wdes-portfolio {
    height: auto;
}

.wdes-portfolio .works {
    padding-bottom: 50px;
}

.wdes-portfolio .mob-works {
    display: none;
}

.wdes-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 50px;
}

.wdes-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.wdes-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.wdes-portfolio .heading h1 span {
    color: #F58634;
}

.wdes-portfolio ul.cont li {
    width: 31.33%;
    margin: 1%;
    filter: grayscale(0);
}

.wdes-portfolio ul.cont li .inner {
    background-color: rgba(34, 34, 34, 0.767);
    width: 100%;
    height: 100%;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    z-index: 10;
}

.wdes-portfolio ul.cont li .inner p {
    color: #fff;
    font: 20px;
    text-transform: uppercase;
    font-family: "TTSupermolotNeue-Medium";
}

.wdes-portfolio ul.cont li .inner i {
    font-size: 20px;
    color: #fff;
}

.web-development {
    padding: 40px 0;
    box-shadow: 0 0 10px #ccc;
    position: relative;
    margin-bottom: 10px;
}

.web-development .close {
    position: absolute;
    right: -10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #45B653;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    top: -10px;
    display: none;

}

.web-development .logo {
    width: 300px;
    margin-left: 36px;
}

.web-development .main-dev {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.web-development .main-dev .image {
    width: 60%;
    padding-left: 10px;
}

.web-development .main-dev .text {
    width: 38%;
    background-image: linear-gradient(#bcceee, #89acee);
    display: flex;
    align-items: center;

}

.web-development .main-dev .text .inner {
    display: table;
    margin: auto;
    width: 250px;
}

.web-development .main-dev .text p {
    font-size: 20px;
    color: #fff;
}

.web-development .swiper-button-next,
.web-development .swiper-button-prev {
    bottom: 5px;
    top: auto;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 50%;
}

.web-development .swiper-button-next {
    right: 47.2%;
}

.web-development .swiper-button-prev {
    left: 47.2%;
}

.web-development .swiper-button-next::after,
.web-development .swiper-button-prev::after {
    font-size: 14px;
}

.fo-pos {
    position: relative;
}

/* video page */
.video {
    overflow: unset;
}

.vid-portfolio {
    height: auto;
}

.vid-portfolio .works {
    padding-bottom: 50px;
}

.vid-portfolio .heading {
    text-transform: uppercase;
    text-align: center;
    margin-top: 50px;
}

.vid-portfolio .heading h3 {
    color: #45B653;
    font-family: "TTSupermolotNeue-Medium";
    font-size: 24px;
}

.vid-portfolio .heading h1 {
    color: #141321;
    font-family: "TTSupermolotNeue-Bold";
    padding: 10px 0;
    font-size: 55px;
    letter-spacing: 4px;
}

.vid-portfolio .heading h1 span {
    color: #F58634;
}

.vid-portfolio ul.cont li {
    width: 31.33%;
    margin: 1%;
}

.vid-portfolio ul.cont li:hover {
    filter: grayscale(0);
}

/* youtubegrt CSS */
.grtyoutube-popup {
    background-image: url("../images/loader.gif");
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    text-align: center;
    left: 0;
    z-index: 99999;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
}

.grtyoutube-popup:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.grtyoutube-popup-content {
    width: 70%;
    height: 70%;
    vertical-align: middle;
    display: inline-block;
    position: relative;
}

.grtyoutube-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #FFF;
    font-size: 25px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url("../images/close.png") no-repeat;
    background-size: 20px;
}

.grtyoutube-iframe {
    width: 100%;
    height: 100%;
}



/************** RESPONSIVE TAB **************/
/**************** LANDSCAPE ******************/

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 970px;
    }

    header .logo {
        padding-top: 5px;
    }

    header.fixed .logo {
        padding-top: 0;
    }

    header .logo h1 {
        font-size: 42px;
    }

    header nav ul li {
        padding: 20px 10px;
    }

    header nav ul li a {
        font-size: 16px;
    }

    /* graphic page */
    .gr-portfolio .tabs li {
        padding: 0 12px;
    }

    .brcr-portfolio ul.tabs li {
        padding: 0 12px;
    }

    .pkg-portfolio ul.tabs li {
        padding: 0 12px;
    }

    .lg-portfolio ul.tabs li {
        padding: 0 12px;
    }

    .mod-portfolio ul.tabs li {
        padding: 0 12px;
    }

    .em-portfolio ul.tabs li {
        padding: 0 12px;
    }

    .soc-me-portfolio ul.tabs li {
        padding: 0 12px;
    }

    .prnt-portfolio ul.tabs li {
        padding: 0 12px;
    }

    /* Web Design page */
    .wdes-portfolio .tabs li {
        padding: 0 12px;
    }
}

/**************** PORTRAIT ******************/
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 750px;
    }

    ul.tabs li {
        padding: 0 15px;
    }

    ul.cont {
        justify-content: center;
        margin-top: 30px;
    }

    ul.cont li {
        width: 38%;
    }

    header .main-head {
        padding-top: 20px;
    }

    header .logo h1 {
        font-size: 35px;
    }

    header nav ul li {
        padding: 7px;
    }

    header.fixed nav ul li {
        padding: 7px;
    }

    header.fixed .main-head ul li {
        padding: 12px 5px;
    }

    header nav ul li a {
        font-size: 14px;
    }

    /* graphic page */
    .gr-portfolio ul.tabs li {
        padding: 0 5px;
    }

    .gr-portfolio ul.tabs li a {
        font-size: 14px;
    }

    /* brochure page */
    .brcr-portfolio ul.tabs li {
        padding: 5px 12px;
    }

    /* package page */
    .pkg-portfolio ul.tabs li {
        padding: 5px 12px;
    }

    /* logo page */
    .lg-portfolio ul.tabs li {
        padding: 5px 12px;
    }

    /* 3d modeling page */
    .mod-portfolio ul.tabs li {
        padding: 5px 12px;
    }

    /* EDM page */
    .em-portfolio ul.tabs li {
        padding: 5px 12px;
    }

    /* Social Media page */
    .soc-me-portfolio ul.tabs li {
        padding: 5px 12px;
    }

    /* Print Ad page */
    .prnt-portfolio ul.tabs li {
        padding: 5px 12px;
    }


    /* Web Design page */
    .wdes-portfolio ul.tabs li {
        padding: 0 5px;
    }

    .wdes-portfolio ul.tabs li a {
        font-size: 14px;
    }

    .wdes-portfolio ul.cont {
        justify-content: start;
    }
}

/**************** MOBILE ******************/
@media (max-width: 767px) {
    .container {
        width: 90%;
    }

    .portfolio {
        height: auto;
        margin-top: 20px;
    }

    .portfolio .heading h3 {
        font-size: 16px;
    }

    .portfolio .heading h1 {
        font-size: 24px;
    }

    ul.tabs {
        margin-top: 10px;
    }

    ul.tabs li {
        padding: 2px 12px;
    }

    ul.tabs li a {
        font-size: 12px;
    }

    ul.tabs li a.active::before {
        top: 14px;
    }

    .works {
        padding: 0 8px;
    }

    .works ul.cont {
        justify-content: flex-start;
        margin-top: 25px;
    }

    .works ul.cont li {
        width: 48%;
    }

    ul.cont li .inner h3 {
        padding: 0;
        font-size: 12px;
    }

    ul.cont li .inner h2 {
        font-size: 26px;
    }

    .portfolio .heading {
        margin-top: 140px;
    }

    .wdes-portfolio .heading {
        margin-top: 100px;
    }

    .complogo {
        width: 180px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -98px;
    }

    .complogo-r {
        width: 62px;
        right: 16px;
        top: -98px;

    }

    /* header */
    header {
        height: 50px;
        margin-bottom: 20px;
    }

    header .logo h1 {
        font-size: 30px;
    }

    header nav {
        display: none;
    }

    header nav::before {
        width: 252px;
        left: 0;
        top: 48px;
        content: '';
        position: fixed;
        height: 100%;
        background: #272727;
        z-index: 5;
    }

    header nav ul {
        width: 250px;
        left: 0;
        top: 0;
        padding: 76px 10px 10px 10px;
        position: absolute;
        float: none;
        background: none;
        z-index: 6;
    }

    header nav ul li {
        width: 100%;
        text-align: left;
        padding: 10px 12px;
    }

    header .mob-bar {
        display: block;
        float: right;
        padding-top: 7px;
    }

    header .mob-bar img {
        width: 38px;
    }

    header.fixed .logo h1 {
        font-size: 35px;
    }

    header.fixed .mob-bar {
        padding-top: 8px;
    }

    .soc-me-portfolio ul.cont li,
    .brcr-portfolio ul.cont li,
    .pkg-portfolio ul.cont li,
    .lg-portfolio ul.cont li,
    .mod-portfolio ul.cont li,
    .em-portfolio ul.cont li,
    .prnt-portfolio ul.cont li {
        width: 100% !important;
        margin: 1% 0;
    }

    /* graphic */
    .gr-portfolio .heading h3 {
        font-size: 14px;
    }

    .gr-portfolio .heading h1 {
        font-size: 24px;
    }

    .gr-portfolio ul.tabs {
        margin-top: 10px;
    }

    .gr-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .gr-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .gr-portfolio ul.tabs li a.active::before {
        top: 14px;
        height: 2px;
    }

    .gr-portfolio ul.cont {
        justify-content: unset;
    }

    .gr-portfolio ul.cont li {
        width: 48% !important;
    }

    .gr-portfolio ul.cont li .inner h3 {
        padding: 0;
        font-size: 12px;
    }

    .gr-portfolio ul.cont li .inner h2 {
        font-size: 26px;
    }

    /* brochure */
    .brcr-portfolio .heading h3 {
        font-size: 14px;
    }

    .brcr-portfolio .heading h1 {
        font-size: 24px;
    }

    .brcr-portfolio ul.tabs {
        margin-top: 10px;
    }

    .brcr-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .brcr-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .brcr-portfolio ul.tabs li a.active::before {
        height: 2px;
    }

    .brcr-portfolio .works ul.cont li {
        width: 31%;
    }

    /* package */
    .pkg-portfolio .heading h3 {
        font-size: 14px;
    }

    .pkg-portfolio .heading h1 {
        font-size: 24px;
    }

    .pkg-portfolio ul.tabs {
        margin-top: 10px;
    }

    .pkg-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .pkg-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .pkg-portfolio ul.tabs li a.active::before {
        height: 2px;
    }

    .pkg-portfolio .works ul.cont li {
        width: 31%;
    }

    /* logo */
    .lg-portfolio .heading h3 {
        font-size: 14px;
    }

    .lg-portfolio .heading h1 {
        font-size: 24px;
    }

    .lg-portfolio ul.tabs {
        margin-top: 10px;
    }

    .lg-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .lg-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .lg-portfolio ul.tabs li a.active::before {
        height: 2px;
    }

    .lg-portfolio .works ul.cont li {
        width: 31%;
    }

    /* 3d modeling */
    .mod-portfolio .heading h3 {
        font-size: 14px;
    }

    .mod-portfolio .heading h1 {
        font-size: 24px;
    }

    .mod-portfolio ul.tabs {
        margin-top: 10px;
    }

    .mod-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .mod-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .mod-portfolio ul.tabs li a.active::before {
        height: 2px;
    }

    .mod-portfolio .works ul.cont li {
        width: 31%;
    }

    /* EDM */
    .em-portfolio .heading h3 {
        font-size: 14px;
    }

    .em-portfolio .heading h1 {
        font-size: 24px;
    }

    .em-portfolio ul.tabs {
        margin-top: 10px;
    }

    .em-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .em-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .em-portfolio ul.tabs li a.active::before {
        height: 2px;
    }

    .em-portfolio .works ul.cont li {
        width: 31%;
    }

    .mtop {
        margin-top: 90px !important;
    }

    /* Social Media */
    .soc-me-portfolio .heading h3 {
        font-size: 14px;
    }

    .soc-me-portfolio .heading h1 {
        font-size: 24px;
    }

    .soc-me-portfolio ul.tabs {
        margin-top: 10px;
    }

    .soc-me-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .soc-me-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .soc-me-portfolio ul.tabs li a.active::before {
        height: 2px;
    }

    .soc-me-portfolio .works ul.cont li {
        width: 31%;
    }

    .gr-portfolio .heading,
    .brcr-portfolio .heading,
    .pkg-portfolio .heading,
    .lg-portfolio .heading,
    .mod-portfolio .heading,
    .em-portfolio .heading,
    .soc-me-portfolio .heading,
    .prnt-portfolio .heading {
        margin-top: 100px;
    }

    /* Print Ad */
    .prnt-portfolio .heading h3 {
        font-size: 14px;
    }

    .prnt-portfolio .heading h1 {
        font-size: 24px;
    }

    .prnt-portfolio ul.tabs {
        margin-top: 10px;
    }

    .prnt-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .prnt-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .prnt-portfolio ul.tabs li a.active::before {
        height: 2px;
    }

    .prnt-portfolio .works ul.cont li {
        width: 31%;
    }


    /* Web Design */
    .wdes-portfolio .heading h3 {
        font-size: 14px;
    }

    .wdes-portfolio .heading h1 {
        font-size: 24px;
    }

    .wdes-portfolio ul.tabs {
        margin-top: 10px;
    }

    .wdes-portfolio ul.tabs li {
        padding: 2px 5px;
    }

    .wdes-portfolio ul.tabs li a {
        font-size: 10px;
    }

    .wdes-portfolio ul.tabs li a.active::before {
        top: 14px;
        height: 2px;
    }

    .wdes-portfolio ul.cont {
        justify-content: unset;
    }

    .wdes-portfolio ul.cont li {
        width: 100% !important;
    }

    .wdes-portfolio ul.cont li .inner h3 {
        padding: 0;
        font-size: 12px;
    }

    .wdes-portfolio ul.cont li .inner h2 {
        font-size: 26px;
    }

    .wdes-portfolio ul.cont li .inner p {
        font-size: 12px;
    }

    .wdes-portfolio .works {
        display: none;
    }

    .wdes-portfolio .mob-works {
        display: block;
    }
}