/*=========================
Theme: Flatter - One Page Multipurpose Template
Author: Hardik Manktala
Email: chat@hardikmanktala.com
Version: 1.1
Created In: December 2016
===========================
[CSS Style Structure]

- Font Definitions
- Imports
- General
- Navigation Bar
- Homepage
- Footer
- Other Components

============================
[Table of Contents]

* body 
  + Font Faces
    - Roboto Slab
    - Titillium 
    - Titillium-Light
    - Titillium-Bold
    - Paytone One
  + Navigation Bar / #primary-nav
  + Homepage
    - Welcome Mat / #welcome-mat
    - What I Like / #whatilike
    - Contact Me / #contactme
    - About Me / #aboutme
    - Skills / #skills
    - Work / #work
    - Testimonials / #testimonials
  + Footer / footer
  + Project Description Modal / .project-desc-modal

* General Classes
  + Horizontal Strike / hr.strike
  + Top Padding / padding-top
  + Bottom Padding / padding-bottom
  + Section Header / .section-head
  + Section Description / .section-desc
  + White Text / .text-white

===========================
[Colour Codes]

Primary Colour: #C64B4B
  - Major Elements
Primary Black: #2c2c2c
  - Headings
  - About Me Section
  - Navbar Links
  - Text
Flat Black: #000000

==========================*/
/*========================*/
/*=========================
FONT DEFINITIONS
=========================*/

@font-face {
    font-family: RobotoSlab;
    src: url("../fonts/RobotoSlab-Regular.ttf");
}
@font-face {
    font-family: Titillium;
    src: url("../fonts/TitilliumWeb-Regular.ttf");
}
@font-face {
    font-family: Titillium-Light;
    src: url("../fonts/TitilliumWeb-Light.ttf");
}
@font-face {
    font-family: Titillium-Bold;
    src: url("../fonts/TitilliumWeb-SemiBold.ttf");
}
@font-face {
    font-family: PaytoneOne;
    src: url("../fonts/PaytoneOne.ttf");
}
/*=========================
IMPORTS (for SASS)
==========================*/
/*=========================
SASS VARIABLES
=========================*/
/*=========================
GENERAL
=========================*/

html,
body {
    overflow-x: hidden;
    width: 100%;
}
hr.strike {
    border-top: 1px solid #fff;
    text-align: center;
    width: 50% !important;
}
hr.strike:after {
    content: 'O';
    display: inline-block;
    position: relative;
    top: -14px;
    padding: 0 10px;
    font-family: PaytoneOne;
    background: #C64B4B;
    color: #fff;
    font-size: 18px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
.padding-top {
    padding-top: 60px;
}
.padding-bottom {
    padding-bottom: 60px;
}
.section-head {
    font-family: PaytoneOne;
    color: #2c2c2c;
    font-size: 40pt;
    text-align: center;
    margin-bottom: 20px;
}
.section-desc {
    font-family: Titillium;
    text-align: center;
    font-size: 13pt;
}
.text-white {
    color: #fff !important;
}
.preloader.show {
    background: white;
    position: fixed;
    min-width: 100%;
    min-height: 100vh;
    z-index: 3010;
    overflow: hidden;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}
.preloader.show .icon {
    position: absolute;
    width: 110px;
    height: 78.21px;
    background-color: #C64B4B;
    margin: 86.60px;
    top: 45%;
    bottom: 50%;
    left: 0;
    right: 0;
    vertical-align: middle;
    margin: 0 auto;
    animation: spin 3s ease-in-out infinite, cycleBg 3s ease-in-out infinite;
    -webkit-animation: spin 3s ease-in-out infinite, cycleBg 3s ease-in-out infinite;
}
.preloader.show .icon:before,
.preloader.show .icon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
}
.preloader.show .icon:before {
    bottom: 100%;
    border-bottom: 30px solid #C64B4B;
    animation: cycleBorderBottom 3s ease-in-out infinite;
    -webkit-animation: cycleBorderBottom 3s ease-in-out infinite;
}
.preloader.show .icon:after {
    top: 100%;
    width: 0;
    border-top: 30px solid #C64B4B;
    animation: cycleBorderTop 3s ease-in-out infinite;
    -webkit-animation: cycleBorderTop 3s ease-in-out infinite;
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    40% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes cycleBg {
    0% {
        background: #C64B4B;
    }
    10% {
        background: #f78f39;
    }
    20% {
        background: #fac928;
    }
    30% {
        background: #a2ce7e;
    }
    40% {
        background: #21b799;
    }
    50% {
        background: #36d9c3;
    }
    60% {
        background: #74c7d5;
    }
    70% {
        background: #38a5db;
    }
    80% {
        background: #9661a8;
    }
    90% {
        background: #f1678d;
    }
    100% {
        background: #C64B4B;
    }
}
@keyframes cycleBorderBottom {
    0% {
        border-bottom: 30px solid #C64B4B;
    }
    10% {
        border-bottom: 30px solid #f78f39;
    }
    20% {
        border-bottom: 30px solid #fac928;
    }
    30% {
        border-bottom: 30px solid #a2ce7e;
    }
    40% {
        border-bottom: 30px solid #21b799;
    }
    50% {
        border-bottom: 30px solid #36d9c3;
    }
    60% {
        border-bottom: 30px solid #74c7d5;
    }
    70% {
        border-bottom: 30px solid #38a5db;
    }
    80% {
        border-bottom: 30px solid #9661a8;
    }
    90% {
        border-bottom: 30px solid #f1678d;
    }
    100% {
        border-bottom: 30px solid #C64B4B;
    }
}
@keyframes cycleBorderTop {
    0% {
        border-top: 30px solid #C64B4B;
    }
    10% {
        border-top: 30px solid #f78f39;
    }
    20% {
        border-top: 30px solid #fac928;
    }
    30% {
        border-top: 30px solid #a2ce7e;
    }
    40% {
        border-top: 30px solid #21b799;
    }
    50% {
        border-top: 30px solid #36d9c3;
    }
    60% {
        border-top: 30px solid #74c7d5;
    }
    70% {
        border-top: 30px solid #38a5db;
    }
    80% {
        border-top: 30px solid #9661a8;
    }
    90% {
        border-top: 30px solid #f1678d;
    }
    100% {
        border-top: 30px solid #C64B4B;
    }
}
/*=========================
NAVIGATION BAR
=========================*/

#primary-nav {
    background: transparent;
    width: 100%;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
#primary-nav .navbar-brand {
    color: white;
    font-family: PaytoneOne;
    font-size: 24pt;
}
#primary-nav .navbar-nav {
    float: none;
    text-align: center;
    width: 100%;
}
#primary-nav .navbar-collapse.collapse.in,
#primary-nav .navbar-collapse.collapsing {
    background: white;
}
#primary-nav .navbar-collapse.collapse.in .navbar-nav > li > a,
#primary-nav .navbar-collapse.collapsing .navbar-nav > li > a {
    color: #2c2c2c;
}
#primary-nav .navbar-nav li {
    display: inline-block;
    float: none;
    margin-right: 20px;
    vertical-align: middle;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
#primary-nav .navbar-toggle .icon-bar {
    background: white;
}
#primary-nav .navbar-nav > li > a {
    background: transparent;
    color: white;
    font-family: Titillium-Bold;
    font-size: 13pt;
    text-transform: uppercase;
    border-bottom: 3px solid rgba(255, 255, 255, 0);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
#primary-nav .navbar-nav > li > a:hover,
#primary-nav .navbar-nav > li > a:focus {
    background: transparent;
}
#primary-nav .navbar-nav > li > a:hover {
    border-bottom: 3px solid white;
}
#primary-nav .navbar-nav > li.active > a {
    border-bottom: 3px solid white;
}
#primary-nav .navbar-nav #logo a {
    text-transform: lowercase;
    font-family: PaytoneOne;
    vertical-align: middle;
    border-bottom: 0px;
}
#primary-nav .navbar-nav #logo a h1 {
    font-size: 35pt;
    margin-top: 0px;
    margin-bottom: 0px;
}
#primary-nav .navbar-nav #logo a:hover {
    border-bottom: 0px;
}
#primary-nav.scrolled {
    border-bottom: 1px solid #f7f7f7;
    background: white;
}
#primary-nav.scrolled .navbar-brand {
    color: #C64B4B;
}
#primary-nav.scrolled .navbar-nav > li > a {
    color: #2c2c2c;
}
#primary-nav.scrolled .navbar-nav > li > a:hover {
    border-bottom: 3px solid #2c2c2c;
}
#primary-nav.scrolled .navbar-nav > li.active > a {
    border-bottom: 3px solid #2c2c2c;
}
#primary-nav.scrolled .navbar-nav #logo a {
    padding: 20px;
}
#primary-nav.scrolled .navbar-toggle .icon-bar {
    background: #C64B4B;
}
/*=========================
HOMEPAGE
=========================*/
/*== Welcome Mat ==*/

#welcome-mat {
    background-color: #C64B4B;
    min-height: 50vh;
    width: 100%;
    padding: 50px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#welcome-mat .intro-strip {
    margin-top: 12%;
}
#welcome-mat .intro-strip img {
    width: 60%;
    float: right;
    display: block;
}
#welcome-mat .intro-strip h1 {
    font-size: 50pt;
    color: white;
    font-family: Titillium-Light;
    margin-top: 6%;
}
#welcome-mat .intro-strip h1 span {
    font-family: PaytoneOne;
}
#welcome-mat .intro-strip p {
    color: white;
    font-size: 20pt;
    font-family: RobotoSlab;
}
#welcome-mat .designation-holder {
    padding: 20px;
    text-align: center;
    float: none;
    color: white;
}
#welcome-mat .designation-holder .row #leftDes {
    margin-right: 0px;
    padding-right: 0px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
}
#welcome-mat .designation-holder .row #leftDes p {
    text-align: right;
    font-size: 30pt;
    font-family: Titillium-Light;
    font-style: italic;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
#welcome-mat .designation-holder .row #rightDes {
    text-align: left;
    display: inline-block;
    margin-left: 14px;
}
#welcome-mat .designation-holder .row #rightDes span {
    text-align: left;
    font-style: normal;
    text-transform: uppercase;
    font-family: RobotoSlab;
    font-size: 30pt;
}
/*== What I Like ==*/

#whatilike {
    background: white;
}
#whatilike .skill-container {
    padding: 3px;
    margin-top: 40px;
    text-align: center;
}
#whatilike .skill-container h3 {
    font-family: RobotoSlab;
    margin-bottom: 20px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#whatilike .skill-container p {
    font-family: Titillium;
}
#whatilike .skill-container .skill-img {
    overflow: hidden;
    position: relative;
}
#whatilike .skill-container .skill-img img {
    width: 90%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#whatilike .skill-container:hover h3 {
    color: #C64B4B;
}
#whatilike .skill-container:hover .skill-img img {
    width: 92%;
}
/*== Contact Me ==*/

#contactme {
    background: #2c2c2c;
    min-height: 100px;
}
#contactme .form-holder {
    margin-top: 70px;
}
#contactme .form-holder label {
    color: white;
    font-family: Titillium;
    opacity: 0.8;
}
#contactme .form-holder .contact_field {
    padding-top: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 2px;
    font-size: 16px;
    outline: none;
    color: white;
    margin-top: 1px;
    margin-bottom: 20px;
}
#contactme .form-holder .contact_field.large {
    height: 100px;
}
#contactme .form-holder .btn.btn-primary {
    margin-top: 40px;
    width: 23%;
    border-radius: 7px;
    background: #C64B4B;
    text-transform: uppercase;
    font-family: RobotoSlab;
    padding: 15px;
    border: 0px;
    position: relative;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#contactme .form-holder .btn.btn-primary:hover {
    width: 30%;
}
/*== About Me ==*/

#aboutme {
    background: #000000;
    min-height: 100px;
}
#aboutme .aboutme-row {
    margin-top: 90px;
    background: url("../images/blobs-bg.svg");
    background-size: 50%;
}
#aboutme .aboutme-row .img-responsive {
    width: 30%;
    margin: 0 auto;
}
#aboutme .aboutme-row .aboutme-para {
    margin-top: 30px;
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
}
#aboutme .aboutme-row .aboutme-para p {
    font-family: Titillium;
    font-size: 14pt;
    text-align: center;
}
#aboutme .aboutme-row .aboutme-para p span {
    font-size: 16pt;
}
#aboutme .aboutme-row .poke-btn {
    text-align: center;
    margin-top: 40px;
}
#aboutme .aboutme-row .poke-btn .pokeme {
    margin: 0 auto;
    border: 0px;
    border-radius: 7px;
    background: #C64B4B;
    color: white;
    font-family: RobotoSlab;
    text-transform: uppercase;
    padding: 20px;
    width: 18%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
}
#aboutme .aboutme-row .poke-btn .pokeme:hover {
    padding: 30px;
}
/*== Skills ==*/

#skills {
    background: #f7f7f7;
}
#skills .skill-set {
    margin-top: 50px;
}
#skills .skill-set .skill-color {
    color: #C64B4B;
}
#skills .skill-set .skill-div {
    text-align: center;
}
#skills .skill-set .skill-div h1 {
    font-family: RobotoSlab;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 16pt;
}
#skills .btn.btn-primary {
    margin-top: 50px;
    padding: 20px;
    background: #C64B4B;
    font-family: RobotoSlab;
    text-transform: uppercase;
    color: white;
    width: 25%;
    border: 0px;
    border-radius: 7px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#skills .btn.btn-primary:hover {
    width: 35%;
}
/*== Work ==*/

#work .nav.nav-tabs {
    border: 0px;
    text-align: center;
}
#work .nav.nav-tabs li {
    border: 0px;
    display: inline-block;
    background: transparent;
    float: none;
    min-width: 13%;
    margin-bottom: 50px;
    margin-right: 14px;
}
#work .nav.nav-tabs li a {
    background: #f7f7f7;
    border: 0px;
    padding: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    font-family: RobotoSlab;
    text-transform: uppercase;
    color: #2c2c2c;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
}
#work .nav.nav-tabs li a:hover {
    color: #C64B4B;
}
#work .nav.nav-tabs li.active a {
    background: #C64B4B !important;
    border: 1px solid #C64B4B;
    color: white;
}
#work .nav.nav-tabs li.active a:hover {
    color: white;
}
#work #projectsContent {
    text-align: center;
}
#work .project-item {
    width: 320px;
    height: 220px;
    max-width: 320px;
    max-height: 220px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    margin: 10px;
    cursor: pointer;
}
#work .project-item img {
    width: 120%;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}
#work .project-item img.hovered {
    margin-top: 120px;
}
#work .project-item .project-hover-mask {
    position: absolute;
    background: #2c2c2c;
    width: 100%;
    left: 0;
    top: -220px;
    bottom: 0;
    height: 80%;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
}
#work .project-item .project-hover-mask .hover-content {
    padding: 20px;
    color: white;
    text-align: center;
}
#work .project-item .project-hover-mask .hover-content h2 {
    font-family: RobotoSlab;
    font-size: 16pt;
}
#work .project-item .project-hover-mask .hover-content h4 {
    font-family: Titillium;
    color: #C64B4B;
}
#work .project-item .project-hover-mask .hover-content i {
    font-size: 18pt;
    padding: 20px;
}
#work .project-item .project-hover-mask.hovered {
    top: 0;
}
/*== Testimonials==*/

#testimonials {
    min-height: 100px;
    background: #f7f7f7;
}
#testimonials .timeline-block {
    margin-top: 50px;
}
#testimonials .timeline-block ul {
    padding: 0px;
}
#testimonials .timeline-block ul li {
    list-style-type: none;
    position: relative;
    width: 6px;
    margin: 0 auto;
    padding-top: 50px;
    background: #fff;
}
#testimonials .timeline-block ul li .content {
    position: relative;
    bottom: 0;
    width: 500px;
    padding: 20px;
    background: #C64B4B;
    color: white;
    font-family: Titillium;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#testimonials .timeline-block ul li .content .row {
    width: 100%;
    margin: 0px;
}
#testimonials .timeline-block ul li .content img {
    width: 120%;
    border-radius: 50%;
    height: auto;
    margin-top: 5px;
}
#testimonials .timeline-block ul li .content h5 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13pt;
    margin-bottom: 5px;
}
#testimonials .timeline-block ul li .content p {
    font-family: Titillium;
    font-size: 12pt;
}
#testimonials .timeline-block ul li .content p.desig {
    opacity: 0.7;
}
#testimonials .timeline-block ul li .content::before {
    content: '';
    position: absolute;
    bottom: 2%;
    width: 0;
    height: 0;
    border-style: solid;
}
#testimonials .timeline-block ul li:nth-child(odd) .content {
    left: 45px;
}
#testimonials .timeline-block ul li:nth-child(odd) .content::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #C64B4B transparent transparent;
}
#testimonials .timeline-block ul li:nth-child(even) .content {
    left: -540px;
}
#testimonials .timeline-block ul li:nth-child(even) .content::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #C64B4B;
}
#testimonials .timeline-block ul li::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #C64B4B;
}
/*=========================
FOOTER
=========================*/

footer {
    min-height: 10px;
    background: white;
    position: relative;
    border-top: 5px solid #C64B4B;
    padding: 30px;
}
footer .social-buttons {
    /* uses FontAwesome icons */
}
footer .social-buttons ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
footer .social-buttons ul li {
    display: inline-block;
}
footer .social-buttons ul li a {
    color: white;
    background: #2c2c2c;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 13pt;
    text-align: center;
    margin-right: 15px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
footer .social-buttons ul li a:hover {
    background: #C64B4B;
}
footer .footer-cred {
    font-family: Titillium;
    color: #2c2c2c;
    font-size: 12pt;
    vertical-align: middle;
    padding-top: 7px;
}
footer .footer-cred i {
    color: #C64B4B;
}
footer .footer-cred a {
    color: #C64B4B;
    opacity: 0.7;
    text-decoration: none;
}
/*=========================
OTHER COMPONENTS
=========================*/
/*== Project Description Modal ==*/

.project-desc-modal {
    /* This is the base class and does not display itself
            until .show class is added. */
    
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow-x: hidden;
    background: white;
    display: block;
    z-index: 1050;
    position: fixed;
    top: 120%;
    overflow-y: scroll;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
    background: #C64B4B;
}
.project-desc-modal #colmddesc {
    padding: 0px;
}
.project-desc-modal .modal-header {
    background: #C64B4B;
    width: 100%;
    min-height: 40vh;
    padding: 60px;
    padding-bottom: 0px;
    position: relative;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
.project-desc-modal .modal-header .slides {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.project-desc-modal .modal-header .slides li {
    position: absolute;
    top: 5%;
}
.project-desc-modal .modal-header img {
    width: 100%;
    margin: 0 auto;
}
.project-desc-modal .modal-header .carousel li {
    margin-right: 0px !important;
}
.project-desc-modal .modal-header .modal-close {
    background: transparent;
    float: none;
    font-family: PaytoneOne;
    font-size: 30pt;
    color: white;
    padding: 20px;
    outline: none;
    border: 0px;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-left: 50%;
}
.project-desc-modal .modal-header .modal-close:focus {
    outline: none;
    border: 0px;
    box-shadow: none;
}
.project-desc-modal .modal-header .project-desc-side {
    padding: 30px;
}
.project-desc-modal .modal-header .project-desc-side h1 {
    color: white;
    font-family: RobotoSlab;
    font-size: 25pt;
    margin-bottom: 20px;
}
.project-desc-modal .modal-header .project-desc-side p {
    color: white;
    font-size: 16pt;
    width: 100%;
    display: block;
    font-family: Titillium;
}
.project-desc-modal .modal-header .project-desc-side p i {
    margin-right: 12px;
    display: inline-block;
}
.project-desc-modal .modal-header .project-desc-side p a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.project-desc-modal .modal-header .project-desc-side p a:hover {
    color: white;
}
.project-desc-modal .modal-cont {
    padding: 50px;
}
.project-desc-modal .modal-cont p {
    font-family: Titillium;
    font-size: 14pt;
}
.project-desc-modal .modal-cont .projectbtn {
    padding: 20px;
    margin: 0 auto;
    border: 0px;
    border-radius: 10px;
    margin-top: 20px;
    font-family: RobotoSlab;
    text-transform: uppercase;
    background: #C64B4B;
    width: 25%;
}
.project-desc-modal.show {
    top: 0px;
    opacity: 1;
    background: white;
}
/*# sourceMappingURL=flatter-main.css.map */
/*=========================
Theme: Flatter - One Page Multipurpose Template
Author: Hardik Manktala
Email: chat@hardikmanktala.com
Version: 1.1
Created In: December 2016
===========================
[CSS Style Structure]

- Font Definitions
- Imports
- General
- Navigation Bar
- Homepage
- Footer
- Other Components

============================
[Table of Contents]

* body 
  + Font Faces
    - Roboto Slab
    - Titillium 
    - Titillium-Light
    - Titillium-Bold
    - Paytone One
  + Navigation Bar / #primary-nav
  + Homepage
    - Welcome Mat / #welcome-mat
    - What I Like / #whatilike
    - Contact Me / #contactme
    - About Me / #aboutme
    - Skills / #skills
    - Work / #work
    - Testimonials / #testimonials
  + Footer / footer
  + Project Description Modal / .project-desc-modal

* General Classes
  + Horizontal Strike / hr.strike
  + Top Padding / padding-top
  + Bottom Padding / padding-bottom
  + Section Header / .section-head
  + Section Description / .section-desc
  + White Text / .text-white

===========================
[Colour Codes]

Primary Colour: #C64B4B
  - Major Elements
Primary Black: #2c2c2c
  - Headings
  - About Me Section
  - Navbar Links
  - Text
Flat Black: #000000

==========================*/
/*========================*/
/*=========================
FONT DEFINITIONS
=========================*/

@font-face {
    font-family: RobotoSlab;
    src: url("../fonts/RobotoSlab-Regular.ttf");
}
@font-face {
    font-family: Titillium;
    src: url("../fonts/TitilliumWeb-Regular.ttf");
}
@font-face {
    font-family: Titillium-Light;
    src: url("../fonts/TitilliumWeb-Light.ttf");
}
@font-face {
    font-family: Titillium-Bold;
    src: url("../fonts/TitilliumWeb-SemiBold.ttf");
}
@font-face {
    font-family: PaytoneOne;
    src: url("../fonts/PaytoneOne.ttf");
}
/*=========================
IMPORTS (for SASS)
==========================*/
/*=========================
SASS VARIABLES
=========================*/
/*=========================
GENERAL
=========================*/

html,
body {
    overflow-x: hidden;
    width: 100%;
}
hr.strike {
    border-top: 1px solid #fff;
    text-align: center;
    width: 50% !important;
}
hr.strike:after {
    content: 'O';
    display: inline-block;
    position: relative;
    top: -14px;
    padding: 0 10px;
    font-family: PaytoneOne;
    background: #C64B4B;
    color: #fff;
    font-size: 18px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
.padding-top {
    padding-top: 60px;
}
.padding-bottom {
    padding-bottom: 60px;
}
.section-head {
    font-family: PaytoneOne;
    color: #2c2c2c;
    font-size: 40pt;
    text-align: center;
    margin-bottom: 20px;
}
.section-desc {
    font-family: Titillium;
    text-align: center;
    font-size: 13pt;
}
.text-white {
    color: #fff !important;
}
.preloader.show {
    background: white;
    position: fixed;
    min-width: 100%;
    min-height: 100vh;
    z-index: 3010;
    overflow: hidden;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}
.preloader.show .icon {
    position: absolute;
    width: 110px;
    height: 78.21px;
    background-color: #C64B4B;
    margin: 86.60px;
    top: 45%;
    bottom: 50%;
    left: 0;
    right: 0;
    vertical-align: middle;
    margin: 0 auto;
    animation: spin 3s ease-in-out infinite, cycleBg 3s ease-in-out infinite;
    -webkit-animation: spin 3s ease-in-out infinite, cycleBg 3s ease-in-out infinite;
}
.preloader.show .icon:before,
.preloader.show .icon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
}
.preloader.show .icon:before {
    bottom: 100%;
    border-bottom: 30px solid #C64B4B;
    animation: cycleBorderBottom 3s ease-in-out infinite;
    -webkit-animation: cycleBorderBottom 3s ease-in-out infinite;
}
.preloader.show .icon:after {
    top: 100%;
    width: 0;
    border-top: 30px solid #C64B4B;
    animation: cycleBorderTop 3s ease-in-out infinite;
    -webkit-animation: cycleBorderTop 3s ease-in-out infinite;
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    40% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes cycleBg {
    0% {
        background: #C64B4B;
    }
    10% {
        background: #f78f39;
    }
    20% {
        background: #fac928;
    }
    30% {
        background: #a2ce7e;
    }
    40% {
        background: #21b799;
    }
    50% {
        background: #36d9c3;
    }
    60% {
        background: #74c7d5;
    }
    70% {
        background: #38a5db;
    }
    80% {
        background: #9661a8;
    }
    90% {
        background: #f1678d;
    }
    100% {
        background: #C64B4B;
    }
}
@keyframes cycleBorderBottom {
    0% {
        border-bottom: 30px solid #C64B4B;
    }
    10% {
        border-bottom: 30px solid #f78f39;
    }
    20% {
        border-bottom: 30px solid #fac928;
    }
    30% {
        border-bottom: 30px solid #a2ce7e;
    }
    40% {
        border-bottom: 30px solid #21b799;
    }
    50% {
        border-bottom: 30px solid #36d9c3;
    }
    60% {
        border-bottom: 30px solid #74c7d5;
    }
    70% {
        border-bottom: 30px solid #38a5db;
    }
    80% {
        border-bottom: 30px solid #9661a8;
    }
    90% {
        border-bottom: 30px solid #f1678d;
    }
    100% {
        border-bottom: 30px solid #C64B4B;
    }
}
@keyframes cycleBorderTop {
    0% {
        border-top: 30px solid #C64B4B;
    }
    10% {
        border-top: 30px solid #f78f39;
    }
    20% {
        border-top: 30px solid #fac928;
    }
    30% {
        border-top: 30px solid #a2ce7e;
    }
    40% {
        border-top: 30px solid #21b799;
    }
    50% {
        border-top: 30px solid #36d9c3;
    }
    60% {
        border-top: 30px solid #74c7d5;
    }
    70% {
        border-top: 30px solid #38a5db;
    }
    80% {
        border-top: 30px solid #9661a8;
    }
    90% {
        border-top: 30px solid #f1678d;
    }
    100% {
        border-top: 30px solid #C64B4B;
    }
}
/*=========================
NAVIGATION BAR
=========================*/

#primary-nav {
    background: transparent;
    width: 100%;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
#primary-nav .navbar-brand {
    color: white;
    font-family: PaytoneOne;
    font-size: 24pt;
}
#primary-nav .navbar-nav {
    float: none;
    text-align: center;
    width: 100%;
}
#primary-nav .navbar-collapse.collapse.in,
#primary-nav .navbar-collapse.collapsing {
    background: white;
}
#primary-nav .navbar-collapse.collapse.in .navbar-nav > li > a,
#primary-nav .navbar-collapse.collapsing .navbar-nav > li > a {
    color: #2c2c2c;
}
#primary-nav .navbar-nav li {
    display: inline-block;
    float: none;
    margin-right: 20px;
    vertical-align: middle;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
#primary-nav .navbar-toggle .icon-bar {
    background: white;
}
#primary-nav .navbar-nav > li > a {
    background: transparent;
    color: white;
    font-family: Titillium-Bold;
    font-size: 13pt;
    text-transform: uppercase;
    border-bottom: 3px solid rgba(255, 255, 255, 0);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
#primary-nav .navbar-nav > li > a:hover,
#primary-nav .navbar-nav > li > a:focus {
    background: transparent;
}
#primary-nav .navbar-nav > li > a:hover {
    border-bottom: 3px solid white;
}
#primary-nav .navbar-nav > li.active > a {
    border-bottom: 3px solid white;
}
#primary-nav .navbar-nav #logo a {
    text-transform: lowercase;
    font-family: PaytoneOne;
    vertical-align: middle;
    border-bottom: 0px;
}
#primary-nav .navbar-nav #logo a h1 {
    font-size: 35pt;
    margin-top: 0px;
    margin-bottom: 0px;
}
#primary-nav .navbar-nav #logo a:hover {
    border-bottom: 0px;
}
#primary-nav.scrolled {
    border-bottom: 1px solid #f7f7f7;
    background: white;
}
#primary-nav.scrolled .navbar-brand {
    color: #C64B4B;
}
#primary-nav.scrolled .navbar-nav > li > a {
    color: #2c2c2c;
}
#primary-nav.scrolled .navbar-nav > li > a:hover {
    border-bottom: 3px solid #2c2c2c;
}
#primary-nav.scrolled .navbar-nav > li.active > a {
    border-bottom: 3px solid #2c2c2c;
}
#primary-nav.scrolled .navbar-nav #logo a {
    padding: 20px;
}
#primary-nav.scrolled .navbar-toggle .icon-bar {
    background: #C64B4B;
}
/*=========================
HOMEPAGE
=========================*/
/*== Welcome Mat ==*/

#welcome-mat {
    background-color: #C64B4B;
    min-height: 50vh;
    width: 100%;
    padding: 50px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#welcome-mat .intro-strip {
    margin-top: 12%;
}
#welcome-mat .intro-strip img {
    width: 60%;
    float: right;
    display: block;
}
#welcome-mat .intro-strip h1 {
    font-size: 50pt;
    color: white;
    font-family: Titillium-Light;
    margin-top: 6%;
}
#welcome-mat .intro-strip h1 span {
    font-family: PaytoneOne;
}
#welcome-mat .intro-strip p {
    color: white;
    font-size: 20pt;
    font-family: RobotoSlab;
}
#welcome-mat .designation-holder {
    padding: 20px;
    text-align: center;
    float: none;
    color: white;
}
#welcome-mat .designation-holder .row #leftDes {
    margin-right: 0px;
    padding-right: 0px;
    display: inline-block;
    -webkit-transition: 0.3s ease;
}
#welcome-mat .designation-holder .row #leftDes p {
    text-align: right;
    font-size: 30pt;
    font-family: Titillium-Light;
    font-style: italic;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
#welcome-mat .designation-holder .row #rightDes {
    text-align: left;
    display: inline-block;
    margin-left: 14px;
}
#welcome-mat .designation-holder .row #rightDes span {
    text-align: left;
    font-style: normal;
    text-transform: uppercase;
    font-family: RobotoSlab;
    font-size: 30pt;
}
/*== What I Like ==*/

#whatilike {
    background: white;
}
#whatilike .skill-container {
    padding: 3px;
    margin-top: 40px;
    text-align: center;
}
#whatilike .skill-container h3 {
    font-family: RobotoSlab;
    margin-bottom: 20px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#whatilike .skill-container p {
    font-family: Titillium;
}
#whatilike .skill-container .skill-img {
    overflow: hidden;
    position: relative;
}
#whatilike .skill-container .skill-img img {
    width: 90%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#whatilike .skill-container:hover h3 {
    color: #C64B4B;
}
#whatilike .skill-container:hover .skill-img img {
    width: 92%;
}
/*== Contact Me ==*/

#contactme {
    background: #2c2c2c;
    min-height: 100px;
}
#contactme .form-holder {
    margin-top: 70px;
}
#contactme .form-holder label {
    color: white;
    font-family: Titillium;
    opacity: 0.8;
}
#contactme .form-holder .contact_field {
    padding-top: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 2px;
    font-size: 16px;
    outline: none;
    color: white;
    margin-top: 1px;
    margin-bottom: 20px;
}
#contactme .form-holder .contact_field.large {
    height: 100px;
}
#contactme .form-holder .btn.btn-primary {
    margin-top: 40px;
    width: 23%;
    border-radius: 7px;
    background: #C64B4B;
    text-transform: uppercase;
    font-family: RobotoSlab;
    padding: 15px;
    border: 0px;
    position: relative;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#contactme .form-holder .btn.btn-primary:hover {
    width: 30%;
}
/*== About Me ==*/

#aboutme {
    background: #000000;
    min-height: 100px;
}
#aboutme .aboutme-row {
    margin-top: 90px;
    background: url("../images/blobs-bg.svg");
    background-size: 50%;
}
#aboutme .aboutme-row .img-responsive {
    width: 30%;
    margin: 0 auto;
}
#aboutme .aboutme-row .aboutme-para {
    margin-top: 30px;
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
}
#aboutme .aboutme-row .aboutme-para p {
    font-family: Titillium;
    font-size: 14pt;
    text-align: center;
}
#aboutme .aboutme-row .aboutme-para p span {
    font-size: 16pt;
}
#aboutme .aboutme-row .poke-btn {
    text-align: center;
    margin-top: 40px;
}
#aboutme .aboutme-row .poke-btn .pokeme {
    margin: 0 auto;
    border: 0px;
    border-radius: 7px;
    background: #C64B4B;
    color: white;
    font-family: RobotoSlab;
    text-transform: uppercase;
    padding: 20px;
    width: 18%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
}
#aboutme .aboutme-row .poke-btn .pokeme:hover {
    padding: 30px;
}
/*== Skills ==*/

#skills {
    background: #f7f7f7;
}
#skills .skill-set {
    margin-top: 50px;
}
#skills .skill-set .skill-color {
    color: #C64B4B;
}
#skills .skill-set .skill-div {
    text-align: center;
}
#skills .skill-set .skill-div h1 {
    font-family: RobotoSlab;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 16pt;
}
#skills .btn.btn-primary {
    margin-top: 50px;
    padding: 20px;
    background: #C64B4B;
    font-family: RobotoSlab;
    text-transform: uppercase;
    color: white;
    width: 25%;
    border: 0px;
    border-radius: 7px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#skills .btn.btn-primary:hover {
    width: 35%;
}
/*== Work ==*/

#work .nav.nav-tabs {
    border: 0px;
    text-align: center;
}
#work .nav.nav-tabs li {
    border: 0px;
    display: inline-block;
    background: transparent;
    float: none;
    min-width: 13%;
    margin-bottom: 50px;
    margin-right: 14px;
}
#work .nav.nav-tabs li a {
    background: #f7f7f7;
    border: 0px;
    padding: 20px;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    font-family: RobotoSlab;
    text-transform: uppercase;
    color: #2c2c2c;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
}
#work .nav.nav-tabs li a:hover {
    color: #C64B4B;
}
#work .nav.nav-tabs li.active a {
    background: #C64B4B !important;
    border: 1px solid #C64B4B;
    color: white;
}
#work .nav.nav-tabs li.active a:hover {
    color: white;
}
#work #projectsContent {
    text-align: center;
}
#work .project-item {
    width: 320px;
    height: 220px;
    max-width: 320px;
    max-height: 220px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    margin: 10px;
    cursor: pointer;
}
#work .project-item img {
    width: 120%;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}
#work .project-item img.hovered {
    margin-top: 120px;
}
#work .project-item .project-hover-mask {
    position: absolute;
    background: #2c2c2c;
    width: 100%;
    left: 0;
    top: -220px;
    bottom: 0;
    height: 80%;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
}
#work .project-item .project-hover-mask .hover-content {
    padding: 20px;
    color: white;
    text-align: center;
}
#work .project-item .project-hover-mask .hover-content h2 {
    font-family: RobotoSlab;
    font-size: 16pt;
}
#work .project-item .project-hover-mask .hover-content h4 {
    font-family: Titillium;
    color: #C64B4B;
}
#work .project-item .project-hover-mask .hover-content i {
    font-size: 18pt;
    padding: 20px;
}
#work .project-item .project-hover-mask.hovered {
    top: 0;
}
/*== Testimonials==*/

#testimonials {
    min-height: 100px;
    background: #f7f7f7;
}
#testimonials .timeline-block {
    margin-top: 50px;
}
#testimonials .timeline-block ul {
    padding: 0px;
}
#testimonials .timeline-block ul li {
    list-style-type: none;
    position: relative;
    width: 6px;
    margin: 0 auto;
    padding-top: 50px;
    background: #fff;
}
#testimonials .timeline-block ul li .content {
    position: relative;
    bottom: 0;
    width: 500px;
    padding: 20px;
    background: #C64B4B;
    color: white;
    font-family: Titillium;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
#testimonials .timeline-block ul li .content .row {
    width: 100%;
    margin: 0px;
}
#testimonials .timeline-block ul li .content img {
    width: 120%;
    border-radius: 50%;
    height: auto;
    margin-top: 5px;
}
#testimonials .timeline-block ul li .content h5 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13pt;
    margin-bottom: 5px;
}
#testimonials .timeline-block ul li .content p {
    font-family: Titillium;
    font-size: 12pt;
}
#testimonials .timeline-block ul li .content p.desig {
    opacity: 0.7;
}
#testimonials .timeline-block ul li .content::before {
    content: '';
    position: absolute;
    bottom: 2%;
    width: 0;
    height: 0;
    border-style: solid;
}
#testimonials .timeline-block ul li:nth-child(odd) .content {
    left: 45px;
}
#testimonials .timeline-block ul li:nth-child(odd) .content::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #C64B4B transparent transparent;
}
#testimonials .timeline-block ul li:nth-child(even) .content {
    left: -540px;
}
#testimonials .timeline-block ul li:nth-child(even) .content::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #C64B4B;
}
#testimonials .timeline-block ul li::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #C64B4B;
}
/*=========================
FOOTER
=========================*/

footer {
    min-height: 10px;
    background: white;
    position: relative;
    border-top: 5px solid #C64B4B;
    padding: 30px;
}
footer .social-buttons {
    /* uses FontAwesome icons */
}
footer .social-buttons ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
footer .social-buttons ul li {
    display: inline-block;
}
footer .social-buttons ul li a {
    color: white;
    background: #2c2c2c;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 13pt;
    text-align: center;
    margin-right: 15px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
footer .social-buttons ul li a:hover {
    background: #C64B4B;
}
footer .footer-cred {
    font-family: Titillium;
    color: #2c2c2c;
    font-size: 12pt;
    vertical-align: middle;
    padding-top: 7px;
}
footer .footer-cred i {
    color: #C64B4B;
}
footer .footer-cred a {
    color: #C64B4B;
    opacity: 0.7;
    text-decoration: none;
}
/*=========================
OTHER COMPONENTS
=========================*/
/*== Project Description Modal ==*/

.project-desc-modal {
    /* This is the base class and does not display itself
            until .show class is added. */
    
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow-x: hidden;
    background: white;
    display: block;
    z-index: 1050;
    position: fixed;
    top: 120%;
    overflow-y: scroll;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
    background: #C64B4B;
}
.project-desc-modal #colmddesc {
    padding: 0px;
}
.project-desc-modal .modal-header {
    background: #C64B4B;
    width: 100%;
    min-height: 40vh;
    padding: 60px;
    padding-bottom: 0px;
    position: relative;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}
.project-desc-modal .modal-header .slides {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.project-desc-modal .modal-header .slides li {
    position: absolute;
    top: 5%;
}
.project-desc-modal .modal-header img {
    width: 100%;
    margin: 0 auto;
}
.project-desc-modal .modal-header .carousel li {
    margin-right: 0px !important;
}
.project-desc-modal .modal-header .modal-close {
    background: transparent;
    float: none;
    font-family: PaytoneOne;
    font-size: 30pt;
    color: white;
    padding: 20px;
    outline: none;
    border: 0px;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-left: 50%;
}
.project-desc-modal .modal-header .modal-close:focus {
    outline: none;
    border: 0px;
    box-shadow: none;
}
.project-desc-modal .modal-header .project-desc-side {
    padding: 30px;
}
.project-desc-modal .modal-header .project-desc-side h1 {
    color: white;
    font-family: RobotoSlab;
    font-size: 25pt;
    margin-bottom: 20px;
}
.project-desc-modal .modal-header .project-desc-side p {
    color: white;
    font-size: 16pt;
    width: 100%;
    display: block;
    font-family: Titillium;
}
.project-desc-modal .modal-header .project-desc-side p i {
    margin-right: 12px;
    display: inline-block;
}
.project-desc-modal .modal-header .project-desc-side p a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.project-desc-modal .modal-header .project-desc-side p a:hover {
    color: white;
}
.project-desc-modal .modal-cont {
    padding: 50px;
}
.project-desc-modal .modal-cont p {
    font-family: Titillium;
    font-size: 14pt;
}
.project-desc-modal .modal-cont .projectbtn {
    padding: 20px;
    margin: 0 auto;
    border: 0px;
    border-radius: 10px;
    margin-top: 20px;
    font-family: RobotoSlab;
    text-transform: uppercase;
    background: #C64B4B;
    width: 25%;
}
.project-desc-modal.show {
    top: 0px;
    opacity: 1;
    background: white;
}
/*# sourceMappingURL=flatter-main.css.map */