                        /*-------------------basic style-------------------------*/
                        
                        html,
                        body {
                            margin: 0;
                            padding: 0;
                            width: 100%;
                            height: 100%;
                            font-family: 'Roboto'!important;
                            background: #fff !important;
                            color: #0f0f0f !important;
                            scroll-behavior: smooth;
                        }
                        
                        .whitespace {
                            width: 100%;
                            height: 100px;
                        }
                        
                        @media(max-width: 768px) {
                            .whitespace {
                                display: none;
                            }
                        }
                        /*-------------------typewriter effect-------------------------*/
                        
                        .line {
                            width: 24em;
                            top: 50%;
                            margin: auto;
                            border-right: 2px solid rgb(255, 255, 255 0.75);
                            text-align: center;
                            white-space: nowrap;
                            overflow: hidden;
                            transform: translateY(-50%);
                        }
                        
                        .anim-typewriter {
                            animation: typewriter 4s steps(40) 1s 1 normal both, blinkTextCussor 500ms steps(40) infinite normal;
                        }
                        
                        @keyframes typewriter {
                            from {
                                width: 0;
                            }
                            to {
                                width: 18em;
                            }
                        }
                        
                        @media(max-width: 768px) {
                            @keyframes typewriter {
                                from {
                                    width: 0;
                                }
                                to {
                                    width: 17em;
                                }
                            }
                        }
                        
                        @keyframes blinkTextCussor {
                            from {
                                border-right-color: rgb(255, 255, 255, 0.75);
                            }
                            to {
                                border-right-color: transparent;
                            }
                        }
                        /*-------------------navigation-------------------------*/
                        
                        nav {
                            width: 100%;
                            background: #fff;
                            height: 80px;
                            position: fixed;
                            z-index: 1;
                        }
                        
                        nav #brand {
                            float: left;
                            display: block;
                            margin-left: 82px;
                            line-height: 80px;
                            font-weight: bold;
                        }
                        
                        nav #brand a {
                            color: #0f0f0f;
                            transition: all 0.3s ease-out;
                        }
                        
                        nav #brand a:hover {
                            text-decoration: none;
                        }
                        
                        nav #menu {
                            float: left;
                            right: 80px;
                            position: fixed;
                        }
                        
                        nav #menu li {
                            padding-left: 40px;
                            display: inline-block;
                            cursor: pointer;
                            font-weight: 300;
                            line-height: 80px;
                            position: relative;
                            transition: all 0.3s ease-out;
                        }
                        
                        nav #menu li span {
                            font-weight: 700;
                        }
                        
                        nav #menu li a {
                            color: #0f0f0f;
                        }
                        
                        nav #menu li a :hover {
                            text-decoration: none;
                        }
                        
                        #toggle {
                            position: absolute;
                            right: 30px;
                            top: 20px;
                            font-weight: 300;
                            z-index: 2;
                            width: 300px;
                            height: 30px;
                            cursor: pointer;
                            float: right;
                            transition: all 0.3s ease-out;
                            visibility: hidden;
                            opacity: 0;
                        }
                        
                        .close-btn {
                            position: absolute;
                            right: 16px;
                            font-weight: 300;
                            z-index: 2;
                            cursor: pointer;
                            top: -2px;
                            line-height: 80px;
                        }
                        
                        #resize {
                            z-index: 1;
                            top: 0;
                            position: fixed;
                            background: #fff;
                            width: 100%;
                            height: 100%;
                            visibility: hidden;
                            opacity: 0;
                            transition: all 1s ease-out;
                        }
                        
                        #resize #menu {
                            height: 90px;
                            position: absolute;
                            left: 45%;
                            transform: translateX(-40%);
                            text-align: center;
                            display: table-cell;
                            vertical-align: center;
                        }
                        
                        #resize #menu li {
                            display: block;
                            text-align: center;
                            padding-left: 10px 0;
                            font-size: 50px;
                            min-height: 50px;
                            font-weight: bold;
                            cursor: pointer;
                            transition: all 0.3s ease-out;
                        }
                        
                        #resize li :nth-child(1) {
                            margin-top: 140px;
                        }
                        
                        #resize #menu li a {
                            color: #0f0f0f;
                        }
                        
                        #resize #menu li a:hover {
                            text-decoration: none;
                        }
                        
                        #resize.active {
                            visibility: visible;
                            opacity: 1;
                        }
                        
                        @media(max-width: 768px) {
                            #toggle {
                                visibility: visible;
                                opacity: 1;
                                margin-top: 6px;
                                margin-right: -223px;
                            }
                            nav #brand {
                                margin-left: 24px;
                            }
                            #menu a {
                                font-size: 20px;
                                font-weight: 300;
                            }
                            #resize li span {
                                font-weight: bolder;
                            }
                            nav #menu {
                                display: none;
                            }
                        }
                        
                        @media(min-width: 768px) {
                            #resize {
                                visibility: hidden !important;
                            }
                        }
                        /*-------------------hero section-------------------------*/
                        
                        .hero {
                            height: 100vh;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            background: url("img/rohit-sqaKDB_py_Q-unsplash.jpg") no-repeat 50% 50%;
                            background-size: cover;
                        }
                        
                        .hero h1 {
                            font-weight: lighter;
                            text-align: center;
                            letter-spacing: -2px;
                            line-height: 58px;
                        }
                        
                        @media(max-width: 768px) {
                            .header h1 {
                                font-size: 26px;
                            }
                        }
                        
                        .social {
                            position: absolute;
                            left: 50px;
                            bottom: 50px;
                            display: flex;
                        }
                        
                        .social a {
                            margin: 6px 12px;
                        }
                        
                        .social i {
                            color: rgba(18, 17, 17, 0.4);
                            font-size: 14px;
                        }
                        
                        .social a:hover i {
                            color: #17d1ac;
                            transition: all ease 0.5s;
                        }
                        
                        §
                        /*-------------------scroll-down animation-------------------------*/
                        
                        .scroll-down {
                            position: absolute;
                            left: 50%;
                            bottom: 100px;
                            display: block;
                            text-align: center;
                            font-size: 20px;
                            z-index: 0;
                            text-decoration: none;
                            text-shadow: 0;
                            width: 13px;
                            height: 13px;
                            border-bottom: 2px solid #0f0f0f;
                            border-right: 2px solid #0f0f0f;
                            -webkit-transform: translate(-50%, 0) rotate(45deg);
                            animation: fade-move-down 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
                        }
                        
                        @keyframes fade-move-down {
                            0% {
                                transform: translate(0, -20px) rotate(45deg);
                                opacity: 0;
                            }
                            50% {
                                opacity: 1;
                            }
                            100% {
                                transform: translate(0, 20px) rotate(45deg);
                                opacity: 0;
                            }
                        }
                        /*-------------------project section-------------------------*/
                        
                        h6 {
                            text-align: center;
                        }
                        
                        .vertical {
                            margin-top: 40px;
                            border-left: 1px solid #0f0f0f;
                            height: 80px;
                            position: absolute;
                            left: 50%;
                        }
                        /*-------------------project2 section-------------------------*/
                        
                        .revGallery-anchor,
                        .gal-overlay,
                        .nak-gallery-poster {
                            -webkit-box-sizing: border-box;
                            -moz-box-sizing: border-box;
                            -ms-box-sizing: border-box;
                            box-sizing: border-box;
                        }
                        
                        .revGallery-anchor {
                            overflow: hidden;
                            position: relative;
                            width: calc(100% / 5);
                            display: block;
                            float: left;
                            border: 5px solid #e9e9e9;
                        }
                        
                        .gal-overlay {
                            display: block;
                            width: 100%;
                            height: 100%;
                            background: rgba(27, 27, 27, 0.6);
                            position: absolute;
                            top: 0;
                            left: 0;
                            transition: background .4s ease;
                            -webkit-transition: background .4s ease;
                        }
                        
                        .revGallery-anchor:hover .gal-overlay {
                            background: rgba(27, 27, 27, 0);
                        }
                        
                        .nak-gallery {
                            display: block;
                            width: 100%;
                            position: relative;
                            margin-top: 30px;
                            -webkit-box-sizing: border-box;
                            -moz-box-sizing: border-box;
                            -ms-box-sizing: border-box;
                            box-sizing: border-box;
                        }
                        
                        .nak-gallery-poster {
                            padding-bottom: 100%;
                            transform-origin: 50% 50%;
                            -webkit-transform-origin: 50% 50%;
                            -ms-transform-origin: 50% 50%;
                            transform: scale(1, 1);
                            -webkit-transform: scale(1, 1);
                            -ms-transform: scale(1, 1);
                            transition: all .4s ease;
                            -webkit-transition: all .4s ease;
                        }
                        
                        .revGallery-anchor:hover .nak-gallery-poster {
                            transform: scale(1.1, 1.1);
                            -webkit-transform: scale(1.1, 1.1);
                            -ms-transform: scale(1.1, 1.1);
                        }
                        
                        .img-responsive {
                            display: none;
                        }
                        
                        .button {
                            -webkit-font-smoothing: antialiased;
                            -moz-osx-font-smoothing: grayscale;
                            -webkit-transition: all .4s ease;
                            -moz-transition: all .4s ease;
                            -o-transition: all .4s ease;
                            transition: all .4s ease;
                            width: 200px;
                            height: 48px;
                            border: 1px solid rgba(0, 169, 157, 1);
                            background-color: rgba(0, 169, 157, 1);
                            border-radius: 2px;
                            color: #fff;
                            letter-spacing: 2px;
                        }
                        
                        .button:hover {
                            background-color: #363636;
                            text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
                            color: #fff;
                        }
                        
                        .button:active,
                        .button.is-checked {
                            background-color: #28F;
                        }
                        
                        .button.is-checked {
                            color: white;
                            text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
                        }
                        
                        .button:active {
                            box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
                        }
                        
                        .revGallery-anchor-width1 {
                            width: 40%
                        }
                        
                        .revGallery-anchor-width2 {
                            width: 30%
                        }
                        
                        .revGallery-anchor-width3 {
                            width: 20%
                        }
                        
                        .nak-gallery-height1 {
                            padding-bottom: 400px
                        }
                        
                        .nak-gallery-height2 {
                            padding-bottom: 300px
                        }
                        
                        .nak-gallery-height3 {
                            padding-bottom: 200px
                        }
                        
                        .preloader {
                            display: none;
                        }
                        
                        .preloaderStyle {
                            background: red;
                            width: 100%;
                            height: 100px;
                        }
                        /*-------portfolio--------*/
                        
                        #portfolio {
                            width: 100%;
                            box-sizing: border-box;
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            padding: 60px 2% 20px 2%;
                        }
                        
                        .p-heading {
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                            font-size: 1.7rem;
                            text-align: center;
                            color: #FFFFFFFF;
                            font-weight: 400;
                            padding: 10px 20px;
                            background-color: #292929;
                            letter-spacing: 2px;
                            border-radius: 2px;
                            box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
                        }
                        
                        .p-box {
                            background-color: #1f1f1f;
                            overflow: hidden;
                            border-radius: 10px;
                            box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.3);
                            position: relative;
                        }
                        
                        .p-b-container {
                            width: 90%;
                            height: 70vh;
                            display: grid;
                            grid-template-rows: auto auto;
                            grid-template-columns: 1fr 1fr 1fr;
                            grid-gap: 10px;
                        }
                        
                        .text-overlay {
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            background-color: rgba(23, 209, 172, 0.89);
                            display: none;
                        }
                        
                        .text-overlay h1,
                        p {
                            color: #FFFFFFFF;
                        }
                        
                        .text-overlay h1 {
                            font-size: 2.2rem;
                            margin: 0px;
                            padding: 0px;
                            letter-spacing: 2px;
                        }
                        
                        .text-overlay p {
                            font-size: 1.2rem;
                            margin: 0px;
                        }
                        
                        .p-box:hover .text-overlay {
                            display: flex;
                        }
                        
                        .p-box img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                        
                        #contact-btn h1 {
                            font-size: 2rem;
                            color: #1e1e1e;
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                            margin: 10px;
                            padding: 5px;
                            letter-spacing: 4px;
                            border-bottom: 2px solid #1E1E1E;
                        }
                        
                        #contact-btn {
                            width: 100%;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            height: 200px;
                            background-color: #f4f7ff;
                            margin: 20px 0px;
                            box-sizing: border-box;
                            box-shadow: 2px 0px 20px rgba(0, 0, 0, 0.4);
                        }
                        
                        #contact-btn a {
                            color: #FFFFFFFF;
                            font-size: 1rem;
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                            width: 150px;
                            height: 40px;
                            margin: 10px;
                            background-color: #1e1e1e;
                            box-shadow: 2px 5px 6px rgba(0, 0, 0, 0.2);
                            display: flex;
                            justify-content: center;
                            align-items: center;
                        }
                        
                        #contact-btn a:hover {
                            background-color: #17f2ac;
                            color: #000000;
                            transition: all ease 0.5s;
                            font-weight: 700;
                        }
                        
                        #contact-form {
                            width: 100%;
                            height: 90vh;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                        }
                        
                        #contact-form form {
                            display: flex;
                            width: 70%;
                            height: 60vh;
                            background-color: #1a1a1a;
                            box-shadow: 2px 12px 20px rgba(0, 0, 0, 0.2);
                            border: 1px solid rgba(255, 255, 255, 0.01);
                        }
                        
                        .contact-left {
                            width: 40%;
                            height: 100%;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                        }
                        
                        .contact-right {
                            width: 60%;
                            height: 100%;
                            box-sizing: border-box;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
                            border-left: 1px solid rgba(255, 255, 255, 0.08);
                        }
                        
                        .c-l-heading {
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                            color: #FFFFFFFF;
                            font-size: 3rem;
                            letter-spacing: 2px;
                            font-weight: 400;
                        }
                        
                        .f-email,
                        .f-name {
                            display: flex;
                            flex-direction: column;
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                        }
                        
                        .f-email font,
                        .f-name font {
                            color: #bfbfbf;
                            font-size: 22px;
                        }
                        
                        .f-email input,
                        .f-name input {
                            height: 30px;
                            width: 250px;
                            border: none;
                            outline: none;
                            background-color: transparent;
                            border-bottom: 1px solid #929292;
                            color: #FFFFFFFF;
                            margin: 10px 0px;
                        }
                        
                        .f-email input::placeholder,
                        .f-name input::placeholder {
                            opacity: 0.5;
                            letter-spacing: 1px;
                        }
                        
                        .f-email input:focus,
                        .f-name input:focus {
                            border-bottom: 1px solid #17d1ac;
                            transition: all ease 0.5s;
                        }
                        
                        .message font {
                            font-size: 18px;
                            color: #4e4e4e;
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                        }
                        
                        .message {
                            margin: 20px;
                            display: flex;
                            flex-direction: column;
                        }
                        
                        .contact-right textarea {
                            width: 100% !important;
                            height: 320px !important;
                            border: none;
                            outline: none;
                            background-color: transparent;
                            box-sizing: border-box;
                            color: #ebebeb;
                            font-size: 16px;
                        }
                        
                        .contact-right textarea::placeholder {
                            color: #ebebeb;
                            font-size: 18px;
                            letter-spacing: 2px;
                            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
                        }
                        
                        .contact-right .form-submit {
                            width: 100%;
                            height: 50px;
                            background-color: #1ed98b;
                            font-weight: bold;
                            outline: none;
                            border: none;
                            margin: 0px;
                            color: #1b1b1b;
                            font-size: 14px;
                            text-transform: uppercase;
                            letter-spacing: 2px;
                        }
                        
                        @media(max-width:1190px) {
                            #main {
                                background-size: 1150px;
                            }
                            .name {
                                left: 10%;
                                top: 50%;
                                transform: translate(-10%, 50%);
                            }
                            .about-model img {
                                height: 400px;
                            }
                            #services {
                                height: auto;
                            }
                            .s-b-container {
                                flex-wrap: wrap;
                            }
                            .s-box {
                                flex-grow: 1;
                            }
                            .s-b-text {
                                text-align: center;
                            }
                            #contact-form form {
                                width: 95% !important;
                            }
                        }
                        
                        @media(max-width:970px) {
                            #main {
                                background-image: none !important;
                            }
                            .name {
                                left: 50%;
                                top: 50%;
                                transform: translate(-50%, -50%);
                            }
                            .about-model {
                                display: none;
                            }
                            #about {
                                justify-content: center;
                                padding-top: 0px;
                            }
                            .about-text {
                                width: 90%;
                            }
                            .about-text h1 {
                                font-size: 4rem;
                            }
                            .p-b-container {
                                width: 100%;
                            }
                        }
                        
                        @media(max-width:900px) {
                            .toggle {
                                display: block;
                            }
                            .toggle::before {
                                content: '\f0c9';
                                font-family: fontAwesome;
                                line-height: 0px;
                                margin-left: -35px;
                            }
                            .toggle.active::before {
                                content: '\f00d';
                            }
                            nav {
                                padding: 10px 30px;
                            }
                            nav ul {
                                position: absolute;
                                width: 80%;
                                height: auto;
                                box-sizing: border-box;
                                background-color: #0f0f0f;
                                top: 50px;
                                left: 0;
                                transition: 0.5s;
                                overflow: hidden;
                                border: 3px solid #1f1f1f;
                                display: none !important;
                                margin: 0px;
                                padding: 0px;
                            }
                            nav ul li a {
                                border-bottom: 1px solid rgb(255, 255, 255, 0.10);
                                width: 100%;
                                height: 50px;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                margin: 0px !important;
                                padding: 0px !important;
                            }
                            .active-menu {
                                display: block !important;
                            }
                            .p-b-container {
                                grid-template-columns: 1fr 1fr;
                                grid-template-rows: auto;
                                height: auto;
                                grid-gap: 10px;
                            }
                            #contact-btn h1 {
                                font-size: 1.4rem;
                                text-align: center;
                            }
                            #contact-form {
                                padding: 20px;
                                height: auto;
                                box-sizing: border-box;
                            }
                            #contact-form form {
                                flex-direction: column;
                                height: auto;
                                padding: 20px;
                                width: 90% !important;
                            }
                            .contact-left,
                            .contact-right {
                                width: 100%;
                                border: none;
                            }
                            .f-email,
                            .f-name {
                                width: 100%;
                            }
                            .f-email input,
                            .f-name input {
                                width: 100%;
                                border: none;
                                background-color: #262626 !important;
                                padding: 10px;
                                box-sizing: border-box;
                                height: 40px;
                            }
                            textarea {
                                background-color: #262626 !important;
                                margin: 10px 0px;
                                padding: 10px;
                                height: 200px !important;
                                width: 100% !important;
                            }
                            .message {
                                margin: 0px;
                            }
                            #contact-form form h1 {
                                margin: 5px 0px;
                            }
                        }
                        
                        @media(max-width:600px) {
                            .p-b-container {
                                grid-template-columns: 1fr;
                            }
                            #contact-btn h1 {
                                font-size: 1.2rem;
                                margin: 0px 10%
                            }
                            .name {
                                width: 60%;
                            }
                            .arrow {
                                margin-bottom: 20px;
                            }
                            .social {
                                left: 50px;
                                transform: translateX(-10px);
                            }
                        }
                        
                        @media(max-width:400px) {
                            .s-box {
                                width: 100%;
                                height: 400px;
                            }
                        }
                        /*skills*/
                        
                        .skills {
                            width: 500px;
                            margin: 60px auto;
                            color: black;
                            list-style: none;
                        }
                        
                        .skills li {
                            margin: 20px 0;
                        }
                        
                        .bar {
                            background-color: #ffffff;
                            display: block;
                            height: 2px;
                            border: 1px solid rgba(0, 0, 0, 0.3);
                            border-radius: 3px;
                            overflow: hidden;
                            box-shadow: 0 0 10px #00fe94;
                        }
                        
                        .bar span {
                            height: 2px;
                            float: left;
                            background: #027143;
                            ;
                        }
                        
                        .html {
                            width: 90%;
                            animation: html 2s;
                        }
                        
                        .css {
                            width: 90%;
                            animation: css 2.4s;
                        }
                        
                        .js {
                            width: 60%;
                            animation: js 2.8s;
                        }
                        
                        .jquery {
                            width: 47%;
                            animation: jquery 3.2s;
                        }
                        
                        .adobe {
                            width: 75%;
                            animation: adobe 3.4s;
                        }
                        
                        @keyframes html {
                            0% {
                                width: 0%;
                            }
                            100% {
                                width: 90%;
                            }
                        }
                        
                        @keyframes css {
                            0% {
                                width: 0%;
                            }
                            100% {
                                width: 90%;
                            }
                        }
                        
                        @keyframes js {
                            0% {
                                width: 0%;
                            }
                            100% {
                                width: 60%;
                            }
                        }
                        
                        @keyframes jquery {
                            0% {
                                width: 0%;
                            }
                            100% {
                                width: 47%;
                            }
                        }
                        
                        @keyframes adobe {
                            0% {
                                width: 0%;
                            }
                            100% {
                                width: 75%;
                            }
                        }
                        /*logo starter*/
                        
                        .b-z-l {
                            position: absolute;
                            width: 500px;
                            height: 500px;
                            margin: 0;
                            padding: 0;
                            top: 50%;
                            left: 50%;
                            justify-content: center;
                            align-items: center;
                        }
                        
                        .logo-starter {
                            max-width: 250px;
                            z-index: -1;
                            transform: translate(-50%, -50%);
                        }
                        /*text gide*/
                        
                        .ml3 {
                            margin: -160px;
                            padding: 37px;
                            top: 50%;
                            left: 50%;
                            font-weight: 900;
                            font-size: 3.5em;
                        }