/*
* Resume template
* Created by : Ahmed Essa
* website : www.ahmedessa.net
*/


/* Table of Content
==================================================
	- Google fonts & font family -
	- typography -
	- General -
    - Preloader -
	- Header -
    - home section -
    - About section -
    - experience section -
    - projects section -
    - Contact section -
    - Responsive media queries -
*/


/* Google fonts & font family
==================================================*/

@import 'https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Playfair+Display:400,400i,700,700i,900,900i';

/*
font-family: 'Playfair Display', serif;
font-family: 'Lato', sans-serif;
font-family: 'Open Sans', sans-serif;
*/


@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?t4a8pt');
  src:  url('fonts/icomoon.eot?t4a8pt#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?t4a8pt') format('truetype'),
    url('fonts/icomoon.woff?t4a8pt') format('woff'),
    url('fonts/icomoon.svg?t4a8pt#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-behance2:before {
  content: "\eaa9";
}


/* typography
==================================================*/

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    line-height: normal;
}
h1 span{color: #ff084a; font-weight: bold}

h4 {
    font-family: 'Lato', sans-serif;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    position: relative;
    color: #263238;
    margin-left: 0;
    font-weight: 700;
	text-align: center;
	margin-bottom: 40px
}
h4 span{position: relative}
h4 span:before {
    position: absolute;
    width: 30px;
    left: -40px;
    content: "";
    display: block;
    height: 2px;
    background: #888;
    top: 9px;
}
.cs_details h4{/*color: #64bbe3;*/ color: #444;font-size: 32px;}
/*.cs_details h4:before {
    position: absolute;
    width: 30px;
    left: -40px;
    content: "";
    display: block;
    height: 2px;
    background: #888;
    top: 9px;
}*/

/* General
==================================================*/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    
}

.size-50 {
    font-size: 50px;
    line-height: 50px
}

.h-50 {
    height: 50px;
}


/* preloader
==================================================*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 10000
}

#status,
.preloader {
    top: 50%;
    left: 50%;
    position: absolute
}

#status {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    margin: -50px 0 0 -50px
}

.preloader {
    height: 40px;
    width: 40px;
    margin-top: -20px;
    margin-left: -20px
}

.preloader:before {
    content: "";
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    height: 100%;
    width: 100%;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    border: 2px solid #ff084a;
    border-top: 2px solid transparent;
    border-radius: 100%
}

.preloader>.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 25px;
    width: 10.6px;
    margin-top: -12.5px;
    margin-left: -5.3px;
    -webkit-animation: wink 1s ease-in-out infinite alternate;
    animation: wink 1s ease-in-out infinite alternate
}

@media only screen and (min-width:768px) {
    .preloader {
        height: 60px;
        width: 60px;
        margin-top: -30px;
        margin-left: -30px
    }
    .preloader:before {
        left: -2px;
        top: -2px;
        border-width: 2px
    }
    .preloader>.icon {
        height: 37.5px;
        width: 15.9px;
        margin-top: -18.75px;
        margin-left: -7.95px
    }
}

@media only screen and (min-width:1200px) {
    .preloader {
        height: 60px;
        width: 60px;
        margin-top: -30px;
        margin-left: -30px
    }
    .preloader>.icon {
        height: 50px;
        width: 21.2px;
        margin-top: -25px;
        margin-left: -10.6px
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-webkit-keyframes wink {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes wink {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

/* Header
==================================================*/

header {
    text-align: right;
    -webkit-transition: all .5s;
    transition: all .5s;
    height: 120px;
	padding: 0 40px;
	
}

.headLogo{ width: 80px; padding: 30px 20px; float: left; opacity: -1;   -webkit-transition: all .5s;
    transition: all .8s;}
.headLogo.active{opacity: 1}
header  nav{float: right}

nav ul {
    display: inline-block;
    padding-left: 0;
    list-style: none;
    padding: 40px 10px;
    margin-bottom: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}

nav li {
    display: inline-block;
    margin: 10px 20px;
}

nav li a {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    font-size: 18px;
    font-weight: 400;
	text-decoration: none;
}
nav li a:hover{text-decoration: none}
nav li a:focus{color: #444; text-decoration: none}

.bg-nav {
    background:rgba(255,255,255, 0.9);
   /* border-bottom: 1px solid #f3f3f3*/
}

.bg-nav ul {
    padding:40px 10px;
}
a{color: #444; text-decoration: underline}

a:hover, a:focus {
    color: #ff084a;
 
}



a.active {
    color: #444; font-weight: bold; text-decoration: none
}


/* home section
==================================================*/

#home{height:auto} 
 #about{
   /* background: url(../img/home-bg-2.jpg);
    background-size: cover;*/
    height: 100vh;
}
@media(max-width:767px)
	{
		#home, #about{height:auto}
		h1 span{display:block}
	}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

.disply-table {
    display: table;
    height: 40vh;
}


/* about section
==================================================*/

#about {
    padding: 100px 0;
}

.about-img-div img {
    margin: 0 auto;
}

.about-border {
    position: absolute;
    border: 10px solid #425BB5;
    width: 400px;
    height: 400px;
    top: 40px;
    left: 50px;
    z-index: 1
}
#about p{font-size: 18px; color:#263238; line-height: 2; margin-bottom: 20px}
#about p.contactIcon{margin-top: 40px; font-size: 28px;}
#about p.contactIcon a{margin-right: 10px; color: #444; text-decoration: none}
#about p.contactIcon a:hover{color: #ff084a; text-decoration: none}

/* experience section
==================================================*/

#experience {
    padding: 100px 0;
    background: #f3f3f3
}

.experience-row {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.experience-row h3 {
    font-family: 'Lato', sans-serif;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: #425BB5;
    font-size: 16px;
    font-weight: bold
}

.experience-row p {
    color: #888;
    margin-top: 20px;
    font-size: 15px;
}

.experience-row .date {
    color: #000;
    font-size: 17px;
}

.timeline {
    padding-left: 0;
    list-style: none;
    position: relative;
}

.timeline:before {
    background-color: #9e9ea2;
    content: '';
    margin-left: -1px;
    position: absolute;
    top: 0;
    left: 2em;
    width: 2px;
    height: 100%;
}

.timeline-event {
    position: relative;
}

.timeline-event:hover .timeline-event-icon {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #fbab18;
}

.timeline-event:hover .timeline-event-thumbnail {
    box-shadow: inset 40em 0 0 0 #fbab18;
}

.timeline-event-copy {
    padding: 2em;
    position: relative;
    top: -1.875em;
    left: 4em;
    width: 100%;
}

.timeline-event-copy h3 {
    font-size: 1.75em;
}

.timeline-event-copy h4 {
    font-size: 1.2em;
    margin-bottom: 1.2em;
}

.timeline-event-copy strong {
    font-weight: 700;
}

.timeline-event-copy p:not(.timeline-event-thumbnail) {
    padding-bottom: 1.2em;
}

.timeline-event-icon {
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fbab18;
    outline: 10px solid #f3f3f3;
    display: block;
    margin: 0.5em 0.5em 0.5em -0.5em;
    position: absolute;
    top: 0;
    left: 2em;
    width: 1em;
    height: 1em;
}

.timeline-event-thumbnail {
    -moz-transition: box-shadow 0.5s ease-in 0.1s;
    -o-transition: box-shadow 0.5s ease-in 0.1s;
    -webkit-transition: box-shadow 0.5s ease-in;
    -webkit-transition-delay: 0.1s;
    -webkit-transition: box-shadow 0.5s ease-in 0.1s;
    transition: box-shadow 0.5s ease-in 0.1s;
    color: white;
    font-size: 12px;
    font-weight: bold;
    background-color: black;
    box-shadow: inset 0 0 0 0em #fbab18;
    display: inline-block;
    margin-bottom: 1.2em;
    padding: 0.25em 1em 0.2em 1em;
}


/* projects section
==================================================*/

#projects {
    padding: 0 0 100px 0;
}

.portfolio .categories-grid span {
    font-size: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.portfolio .categories-grid .categories ul li {
    list-style: none;
    margin:0 0 0 0;
}

.portfolio .categories-grid .categories ul li a {
    display: inline-block;
    color: #263238;
    padding: 0 10px;
    margin: 0 14px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio .categories-grid .categories ul li a:hover,
.portfolio .categories-grid .categories ul li a:focus {
    text-decoration: none;
}

.portfolio .categories-grid .categories ul li a.active {
   
    padding: 0px 20px;
    color: #444; font-weight: bold;
    text-decoration: none;
}


.portfolio_filter {
    padding-left: 0;
}

.portfolio_item {
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}

.portfolio_item .portfolio_item_hover {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 60%;
    width: 100%;
    background-color: rgba(0,0,0, 0.7);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #333;
}

.portfolio_item .portfolio_item_hover .item_info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px;
    width: 100%;
   
}

.portfolio_item .portfolio_item_hover .item_info span {
    display: block;
    color: #fff;
    font-size: 20px;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
}

.portfolio_item .portfolio_item_hover .item_info em {
    font-style: normal;
    display: inline-block;
   
    padding: 5px 20px;
    color: #fff;
    margin-top: 10px;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
    font-size: 12px;
    letter-spacing: 2px;
}


.portfolio_item:hover .portfolio_item_hover {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio .categories-grid .categories ul li {
    float: left;
}

.portfolio .categories-grid .categories ul li a {
    padding: 0 10px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
	text-decoration: none;
}
.portfolio .categories-grid .categories ul li a:hover{color: #ff084a}

.portfolio_filter {
    padding: 0 0 40px;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}

.portfolio_item img {
  /*  -webkit-filter: grayscale(100%);
    filter: grayscale(100%);*/
	 -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio_item:hover img{filter: grayscale(0%);}

.portfolio-padding {
    padding: 50px 0;
}

.portfolio-inner {
    padding-bottom: 0 !important;
    padding-top: 0;
}
.text-light{color: #9e9ea2}

.modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    border: none;
}

.popup-modal {
    background: #fff;
	    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow-y: auto;
    z-index: 9999;
    opacity: 1;
    animation-duration: 0.6s;
}

.popup-modal.animatedModal-off{ z-index: -9999;
    opacity: 0;}

.close-popup-modal {
    float: right;
    margin: 20px;
    font-size: 22px;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    position: fixed;
    z-index: 100000;
    right: 14px;
}

.animatedModal-on .close-popup-modal {
    opacity: 1;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 50px;
}


/* contact
==================================================*/

#contact {
    padding: 100px 0;
    background: #f3f3f3
}

#contact-form input,
#contact-form textarea {
    height: 50px;
    margin-bottom: 10px;
    border-radius: 0;
}

#contact-form label {
    display: block;
    margin-bottom: .2em;
    font-size: 13px;
    line-height: 13px;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: #000;
}

#contact-form label.error {
    margin-top: 10px;
    margin-bottom: 1em;
    font-size: 12px;
    line-height: 12px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    color: #D33E43;
    margin-left: 10px
}

#contact-form input[type="text"].error,
#contact-form input[type="password"].error,
#contact-form input[type="date"].error,
#contact-form input[type="datetime"].error,
#contact-form input[type="datetime-local"].error,
#contact-form input[type="month"].error,
#contact-form input[type="week"].error,
#contact-form input[type="email"].error,
#contact-form input[type="number"].error,
#contact-form input[type="search"].error,
#contact-form input[type="tel"].error,
#contact-form input[type="time"].error,
#contact-form input[type="url"].error,
#contact-form textarea.error {
    border-color: #D33E43
}

textarea {
    resize: none;
}

fieldset {
    border: 0px;
    margin: 0;
    padding: 0
}

.required {
    color: #e9266d
}

#success,
#error {
    display: none
}

#success p,
#error p {
    display: block;
}

#success p {
    color: #425BB5;
    font-size: 15px;
    text-align: center;
    padding: 10px;
    border: 2px solid #425BB5;
    margin-top: 10px;
}

#error p {
    color: #D33E43;
    font-size: 15px;
    text-align: center;
    padding: 10px;
    border: 2px solid #D33E43;
    margin-top: 10px;
}

#submit {
    background-color: #425BB5;
    color: #fff;
    padding: 10px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    width: 100%;
}

.social {
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
}

.social li {
    float: left;
}

.social li a {
    color: #333;
    font-size: 35px;
    margin-right: 15px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.social li a:hover {
    color: #425BB5;
}

a.btn{border:1px solid #58585b; padding:10px 40px; border-radius:30px; line-height:30px; text-decoration:none; font-weight:bold; margin-top:40px}
a.btn:hover{border-color:#ff084a; color:#ff084a}
/*------------Case stdy ------------------------------------*/
.container{padding: 0 20px }
.container.section_ltGray, .container.section_dkGray, .container.section_yellow, .container.section_ltblue, .container.section_seablue, .container.section_purple{padding: 40px; border-radius: 20px}
.caseStudy_container {margin-bottom: 0; padding: 40px 0; /*background:#ecf0f1;*/}
.otherWork_container{padding-top:60px; border-top:1px solid #dfdfdf}
.about_container{/*background:#F4F6F7;*/}
.cs_card{display:flex; background:#fff; padding:40px 0; margin-bottom:40px}
.cs_card .img-container{width: 50%; transition: transform .5s;}
.cs_card .img-container:hover{transform:scale(1.1)}
.next-previous{border-top:1px solid #d6d6d6; padding: 40px}
.next-previous .content-align-left{text-align: left}
.next-previous .content-align-right{text-align: right}
.next-previous img{width: 100px; display: inline-block; text-decoration: none}
.next-previous a {text-decoration: none}
.next-previous h3{display: inline-block}
.next-previous .content-align-left h3{margin-left: 20px}
.next-previous .content-align-right h3{margin-right: 20px}
@media(max-width:767px)
	{
		
		.cs_card{display:block;}
		.cs_card .img-container{width: 100%; margin-bottom:40px;}
		.cs_card .cs_card_inner a.btn{margin-top:0}
	}
.cs_card img{}

@media(min-width:768px)
	{.cs_card_inner{padding:20px 0 0 40px; width:50%}
	}
	@media(min-width:992px){
.cs_card_inner{padding:100px 0 0 40px}
.cs_card.alt{flex-direction:row-reverse;}
.cs_card.alt .cs_card_inner{padding:100px 40px 0 0}
}
.cardSummary h2, .cardSummary  h5{font-weight:bold}
.cardSummary h2{margin:10px 0}
.cardSummary h4{text-align:left; margin:0 ; padding:0;}
.cardSummary p{margin:20px 0 40px; font-size:18px; color:#263238;}

/*------------Case stdy ------------------------------------*/
.goTop{position: fixed; right: 40px; bottom: 40px; font-size: 30px; opacity: -1; 
	-webkit-transition: all .5s;
    transition: all .8s;}
.goTop a{color: #ff084a}
.goTop.active{opacity: 1}

/*------------Case stdy details page ------------------------------------*/
.flex{display: flex}
.cs_details section.coverImgCnt{margin-bottom: 0; text-align: center}
.coverImgCnt img{width: 100%;}
.cs_details .cardSummary {text-align: left}
.cs_details .cardSummary h2{font-size: 40px}
.cs_details .cardSummary h3{    line-height: 1.6;
    font-weight: 100;}
.cs_details{padding: 60px 0 40px}
.cs_details.cover{padding-top: 140px}
.cs_details.cover section{margin-bottom: 0}
.cs_details.no-padding-bottom{padding-bottom: 0}
.cs_details section{margin-bottom: 40px; }
.cs_details h4{text-align: left; margin: 0 0 30px 0; padding: 0;}
.cs_details .textwrapper h4:not(:first-child){margin-top: 60px}
.cs_details h5{font-weight: bold; margin: 40px 0 20px 0; font-size: 18px; }
.cs_details .cardSummary h5{margin-top: 0}
.cs_details h5.txt-gray{color: #666}
.cs_details ul{margin-bottom: 40px}
.cs_details li{margin: 0 0 10px; /*color:#666;*/}
.cs_details .text-gray{color: #888}
.cover{background: #f7f7f7}
.cover.eventcover{background: #F4EAFF; margin-bottom: 40px}
.section_yellow{background: #ffedbd}
.section_dkGray{background: #dee2e6; }
.section_ltblue{background: #D9EEFF}
.section_seablue{background: #BCF0E8}
.section_purple{background: #F4EAFF}
.section_dkblue{background: #1e4471; color: #fff}
.section_dkblue h4{color: #64bbe3}
.sabaAward img{float: right; margin-left: 20px; max-width: 100%; margin-bottom: 10px}
.awardCnt{display: flex; margin: 40px 0 0}
.awardCnt > div{width: 33%; text-align: center}
.awardCnt > div img{margin-bottom: 10px; max-width: 80%}
.section_ltGray{background:  #f5f5f5}
.cs_details .img-container{padding: 0; text-align: center; margin-bottom: 60px; margin-top: 20px}
.cs_details .img-container img{max-width: 100%; }
.cs_details .img-container img.zoom{transition: transform .5s; /* Animation */; cursor:zoom-in}
.cs_details .img-container img.zoom:hover{ transform: scale(1.4);}
.cs_details .img-container p.img-Txt{font-size: 14px;  margin: 10px 0 40px}
.cs_details p{color:#263238; margin-bottom: 20px}
.cs_details p.smll-txt{font-size: 12px; margin-bottom: 0}
.cs_details blockquote{margin: 40px 0 60px; color: #999; font:normal 22px  Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif"}
.cs_details.section_dkblue blockquote,
.cs_details.section_dkblue p{color: #fff; font-size: 18px; line-height: 26px}

.personaCnt{ background: #f5f5f5; text-align: center;margin-bottom: 0}
.personaCnt img{width:46%; margin:20px}
.mockupCnt{margin-bottom: 40px}


.mockupCnt .pull-right{float: right; margin-left: 20px;}
.mockupCnt .pull-left{float: right; margin-right: 20px;}
.mockupCnt .desc.dbl-margin-top{margin-top: 80px}
.mockupCnt .desc p{margin-bottom: 40px}
.mockupCnt .imgCnt{display: flex; padding-top: 100px}
.mockupCnt img, .wf_cnt img{width: 100%; margin: 0 0 20px}
.mockupCnt .imgCnt img{width: 33%}
.mockupCnt .carouselCnt{width: 70%;; margin-right: 40px; padding-bottom: 80px; margin-top: 40px}
.mockupCnt .carouselCnt img{width: 100%;} 
.mockupCnt .carouselCnt .item  p{color: #888; text-align: right}
.carousel-control{color: #444; text-shadow: none; opacity: 0.8; width: 5%}
.carousel-control:focus, .carousel-control:hover{opacity: 1; color: #444}
.carousel-control.left,
.carousel-control.right{background: none;}
.carousel-indicators{bottom: -50px}
.carousel-indicators li{border-color: #666; margin: 0;}
.carousel-indicators .active{background-color: #666; width: 10px; height: 10px;}

.eventUsers{display: flex; flex-wrap: wrap; justify-content:space-around;padding: 0;}
.eventUsers li{list-style: none; padding: 0; margin: 40px; text-align: center}
.eventUsers .img-thumbnail{width: 200px; height: 200px; border-radius: 50%; overflow: hidden; text-align: center}
.eventUsers .img-thumbnail img{width: 100%}
.eventUsers p span{display: block; color: #989898; font-size: 12px;}

.redesignTitle{margin-top: 60px;}
.redesignTitle h5{color:#306522; line-height: 30px}
.redesignTitle h5 span{padding: 5px; border-radius: 100%; background:#306522; color: #fff; width: 40px; height: 40px ; display: inline-block; text-align: center; margin-right: 10px}

.designContent{margin-top: 20px; border-radius: 20px; background: #F4FBF8; padding: 20px}

/* Responsive media queries
==================================================*/

@media (max-width: 991px) {
    .portfolio .categories-grid .categories ul li a {
        padding: 0 2px;
		
    }
    .role{margin-top: 40px}
    #home,
    .disply-table {
        height: 540px;
    }
    .disply-table h3{line-height: 1.4}
    .about-border {
        width: 265px;
    }
    .portfolio .categories-grid .categories ul li {
        list-style: none;
        margin: 10px 0;
    }
    .caseStudy_container
    {padding-bottom: 0;
    }
    #home, #about
    {padding-top: 0}
    header{padding: 0 20px}
    .cs_details .img-container
    {padding: 0}
}

@media (max-width: 768px) {
    .timeline-event-copy {
        width: 90%;
        left: 2em;
    }
    .container.section_ltGray, .container.section_dkGray{border-radius: 0}
}

@media (max-width: 500px) {
    h1 {
        font-family: 'Playfair Display', serif;
        font-size: 50px;
        line-height: 50px;
    }
    
}

@media (max-width: 420px) {
    nav li {
        margin: 6px;
    }
    nav li a {
        font-size: 14px;
    }
    
    
}


/*==============*/
@media (min-width: 992px){
.portfolio_container .col-md-4{
    padding:0 1px!important; 
}
    .portfolio_item{margin-bottom: 0;}

.container .textwrapper {margin: 0 auto; width: 70%}
 
    
    
    
  
        
   
    
    }


  .proj_navigation {
  position: fixed;
    
  width: 120px;
  margin-left: 10px;
  background-color:none;
  color: #666;
        z-index: 1000001;
        top: 30%;
}
.navigation__link {
  display: block;
  color: #666;
  text-decoration: none;
  padding: 0.5em 0;
  font-weight: 400;
    font-size: 12px;
    line-height: 16px
}
.navigation__link:hover {
   color: #ff084a;
    text-decoration: none;
}
.navigation__link.active {
    color: #ff084a;
  font-weight: bold;
    text-decoration: none;
}

@media (min-width: 1440px){
    .proj_navigation {
        
        display: block;
    }
}

@media (max-width: 1439px){
    .proj_navigation {
        
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}
