/*
* Resume template
* Created by : Mardine Pouryousef
*/


/* Table of Content
==================================================
	- Google fonts & font family -
	- typography -
	- General -
    - Preloader -
	- Header -
    - home section -
    - About section -
    - experience section -
	- recommendations section -
    - certifications 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;
*/


/* typography
==================================================*/

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 70px;
}

h4 {
    font-family: 'Lato', sans-serif;
    text-transform: capitalize;
    letter-spacing: 2px;
    position: relative;
    color: #425BB5;
    margin-left: 40px;
    font-weight: 700;
}

h4:before {
    position: absolute;
    width: 30px;
    left: -40px;
    content: "";
    display: block;
    height: 2px;
    background: #425BB5;
    top: 9px;
}


/* General
==================================================*/

#hb{ 
 height: 4000px;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
}

.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 #425BB5;
    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
    }
}


/* Header
==================================================*/

header {
    text-align: center;
    -webkit-transition: all .5s;
    transition: all .5s;
    height: 65px;
}

 nav ul {
    display: inline-block;
    padding-left: 0;
    list-style: none;
    padding: 10px;
    margin-bottom: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
	
}

 nav li {
    display: inline-block;
    margin: 10px;
}

 nav li a {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    font-size: 11px;
    font-weight: bold;
}

.bg-nav {
    background: #fff;
    border-bottom: 1px solid #f3f3f3;
}

.bg-nav ul {
    padding: 10px;
}

a:focus {
    color: #444;
    text-decoration: none;
}

a:hover {
    color: #425BB5;
    text-decoration: none;
}

a.active {
    color: #425BB5;
}

#toTop{ z-index:50;padding:5px 3px;background:url(../img/up-arrow.png) no-repeat scroll left top rgba(0, 0, 0, 0);color:#fff;position:fixed;bottom:20px;right:30px;display:none;text-indent:-9999px;width:42px;height:26px}
#toTop:hover{background-position:left bottom}


/* home section
==================================================*/

#home {
    background: url(../img/home-bg.jpg);
    background-size: cover;
    height: 100vh;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

.disply-table {
    display: table;
    height: 100vh;
}

.scroll-down-image {
animation-name: fadeInOut, moveLeft300px, bounce;
animation-duration: 2s, 4s;
animation-iteration-count: infinite;

  background: url("../img/scroll-mouse.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
  height: 55px/*27px*/;
  width: 32px/*28px*/;
  /*bottom: 50px;*/
  /*left: 50%;*/
  /*position: absolute;*/
  margin-top: -100px;
  margin-left:auto /*20px*/;
  margin-right:auto;
  opacity: 0.5;
  z-index: 1;
}

/* about section
==================================================*/

#about {
	padding-top: 130px;
	padding-right: 0px;
	padding-bottom: 150px;
	padding-left: 0px;
}

.about-img-div img {
    margin: 0 auto;
	width: 400px
}

.about-border {
    position: absolute;
    border: 10px solid #425BB5;
    width: 400px;
    height: 400px;
    top: 40px;
    left: 50px;
    z-index: 1
}


/* experience section
==================================================*/

#experience {
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 100px;
	padding-left: 0px;
    background:#f3f3f3
}

#experience h1{
	float:left;
    margin-top: 10px;
    margin-bottom: 60px;
}

#experience button{
	float:right;
}

/*
button {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	background-color:#f3f3f3;

	display: inline-block;

	margin-top:10px;
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 30px;

	border-radius: 3px;
	border: 3px solid #1b1b20;

	color: #1b1b20;

	background-image: linear-gradient(#425bb5, #425bb5);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: background-size .3s, color .3s;

	position: relative;
	font-size: 18px;
}

button:hover {
	background-size: 100% 100%;
	color: #fff;
	border: 3px solid #425bb5;
}*/

.right {
  width: 180px;
  height: 60px;
  position: absolute;
  right:0
}
.btn {
  width: 180px;
  height: 60px;
  cursor: pointer;
  background: transparent;
  border: 3px solid #1b1b20/*#425bb5 #91C9FF*/;
  outline: none;
  transition: 1s ease-in-out;
}
svg {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  fill: none;
  stroke: #fff;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
  width: 180px;
  height: 60px;
  
}
.btn:hover {
  transition: 1s ease-in-out;
  background: #4359aa/*#425bb5 #4F95DA*/;
  border: 3px solid #4359aa/*#425bb5 #91C9FF*/;
}
.btn:hover svg {
  stroke-dashoffset: -480;
}
.btn span {
  font-family: "Montserrat", sans-serif;	
  color: #1b1b20;
  font-size: 18px;
  font-weight: 100;
}

.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;
}

.experience-row .ptype {
	clear:both;
}

.timeline {
    padding-left: 0;
    list-style: none;
    position: relative;
}

.timeline:before {
    background-color: black;
    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: #425BB5;
}

.timeline-event:hover .timeline-event-thumbnail {
    box-shadow: inset 40em 0 0 0 #425BB5;
}

.timeline-event-copy {
    padding: 2em;
    position: relative;
    top: -1.875em;
    left: 4em;
    width: 100%;
}

.timeline-event-copy p {
	clear:both;
	font-weight: bold
}
.timeline-event-copy p.regular {
	clear:both;
	font-weight: normal
}


.timeline-event-copy h3 {
    font-size: 1.75em;
}

.timeline-event-copy h4 {
    font-size: 1.2em;
    /*margin-bottom: 1.2em;*/
	float:left
}

.timeline-event-copy h5 {
    font-size: 1em;
	float:left;
	margin-top: 12px;
	margin-left: 5px;
}

.timeline-event-copy strong {
    font-weight: 700;
}

.timeline-event-copy ul {
	margin-left: 10px; padding: 0;
}
.timeline-event-copy li {
	margin: 0; padding: 0;
}

.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: #425BB5;
    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 #425BB5;
    display: inline-block;
    margin-bottom: 1.2em;
    padding: 0.25em 1em 0.2em 1em;
}



/* recommendations section
==================================================*/
#recommendations {
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: /*100px*/ 50px;
	padding-left: 0px;

}

/*
.testimonial{
    border: 10px solid #662a66;
    padding: 40px 0 25px 0;
    margin: 50px;
    text-align: center;
    position: relative;
}
.testimonial:before{
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: #fff;
    margin: 0 auto;
    font-size: 70px;
    font-weight: 900;
    color: #f1971f;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
}
.testimonial .title{
    padding: 7px 0;
    margin: 0 -30px 20px;
    border: 7px solid #fff;
    background: #e8326f;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}
.testimonial .title:before{
    content: "";
    border-top: 15px solid #662a66;
    border-left: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -37px;
    left: 0;
}
.testimonial .title:after{
    content: "";
    border-top: 15px solid #662a66;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    bottom: -37px;
    right: 0;
}
.testimonial .post{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}
.testimonial .description{
    padding: 0 20px;
    margin: 0;
    font-size: 15px;
    color: #6f6f6f;
    letter-spacing: 1px;
    line-height: 30px;
}
.owl-theme .owl-controls{ margin-top: 0; }
.owl-theme .owl-controls .owl-buttons div{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 35px;
    background: #425bb5;
    color: #fff;
    border-radius: 0;
    margin-right: 5px;
    opacity: 1;
}

.owl-theme .owl-controls {
  text-align: center;
}

.owl-prev:before,
.owl-next:before{
    content: "\f060";
    font-family: "Font Awesome\ 5 Free";
    font-size: 20px;
    font-weight: 900;
}
.owl-next:before{ content: "\f061"; }
@media only screen and (max-width: 990px){
    .testimonial{ margin: 30px; }
}
*/


.testimonial{
padding-top: 35px;
padding-right: 50px;
padding-bottom: 35px;
padding-left: 50px;
margin-top: 50px;

margin-bottom: 30px;
margin-right: auto;
margin-left: auto;

    border-radius: 0 70px 0 70px;
    border: 5px solid #425bb5;
    border-left: none;
    border-right: none;
    text-align: center;
	background: #f5f5f5


}

.testimonial .pic{
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
	border: 3px solid #425bb5;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .title{
    display: block;
    margin: 0 0 7px 0;
    font-size: 20px;
    font-weight: 600;
    color: #425bb5;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.testimonial .title a{
    font-size: 12px;
}

.testimonial .post{
    display: block;
    font-size: 15px;
    color: #1b1b20;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.testimonial .description{
    color: #1b1b20;
    /*font-size: 16px;
    line-height: 30px;*/
	font-size: 20px;
  line-height: 24px;
	font-family: 'Open Sans', sans-serif;
	/*height: 200px; media - change*/
}
.owl-theme .owl-controls{ margin-top: 0; }
.owl-theme .owl-controls .owl-buttons div{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 35px;
    background: #425bb5;
    color: #fff;
    border-radius: 0;
    margin-right: 5px;
    opacity: 1;
}

.owl-theme .owl-controls {
  text-align: center;
}

.owl-prev:before,
.owl-next:before{
    content: "\f060";
    font-family: "Font Awesome\ 5 Free";
    font-size: 20px;
    font-weight: 900;
}
.owl-next:before{ content: "\f061"; }
@media only screen and (max-width: 990px){
    .testimonial{ margin: 30px; }
}

#testimonial-slider{
	width:90%;
	height: 650px; /*to fix height for autoHeight to not push things down*/	
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
}
.owl-prev, .owl-next {
	position:absolute;
 }

.owl-prev {
	left:0;
	top: 200px;
 }

 .owl-next {
	right:0;
	top:200px;
 }

/* skills section
==================================================*/
#skills {
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 100px;
	padding-left: 0px;
	background:#f3f3f3
}

.skills_div{
  position: relative;
  top: -3.875em;
  width: 100%;  
}

.skills_div ul{
	position: relative;
	margin-left: -28px
}

.skills_div li strong{
	line-height:2em;
	font-family: 'Lato', sans-serif;
	font-size: 1.2em;
	color: #425BB5;
	text-transform: capitalize;
	letter-spacing: 1.5px;
}

#skills .border-bottom {
    border-bottom-style: dashed !important;
}

.box-te{
	height: 290px;
}
.box-te-m{
	height: 240px;
}
.box-te-sm{
	height: 225px;
}
.pt-5, .py-5 {
  padding-top: 3rem !important;
}
.mt-5, .my-5 {
  margin-top: 3rem !important;
}
.border-bottom {
border-bottom: 1px solid #425BB5 !important;
}
.border-right{
	border-right:1px solid rgba(66,91,181,.5);
}
.text-left{
	text-align: left !important;
}
.px-lg-3 {
    padding-left: 1rem !important;
}
.py-lg-4{
padding-top: 1.5rem !important;
}
.text-base-color {
  color: #425BB5 !important;
}
.title-extra-large {
  font-size: 3.125rem !important;
  line-height: 2.875rem !important;
}
.font-alt {
  font-family: Montserrat,sans-serif !important;
  font-size: 2.1rem !important;
  line-height: 2.875rem !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.mt-2, .my-2 {
  margin-top: .9rem !important;
}
.d-block {
  display: block !important;
}
.letter-spacing-2 {
  letter-spacing: .16rem !important;
}
.bg-base-color {
  background-color: #425BB5 !important;
}
.sep-line-thick, .sep-line-thin {
  width: 30px;
}
.sep-line-thick, .sep-line-thick-full, .sep-line-thick-long {
  height: 4px;
}
.sep-line, .sep-line-extra-thick, .sep-line-extra-thick-full, .sep-line-extra-thick-long, .sep-line-full, .sep-line-long, .sep-line-medium-thick, .sep-line-medium-thick-full, .sep-line-medium-thick-long, .sep-line-thick, .sep-line-thick-full, .sep-line-thick-long, .sep-line-thin, .sep-line-thin-full, .sep-line-thin-long {
  display: block;
}
.mt-3, .my-3 {
  margin-top: 1.2rem !important;
}

.tabler-icon i {
	font-size: 42px;
	stroke-width: 1
}
.text-medium {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
p.text-medium {
	margin-right: 25px;
}
p.mt-3, p.my-3 {
  margin-top: 1.5rem !important;
}




/* certifications section
==================================================*/

#certifications {
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 100px;
	padding-left: 0px;
}

.container .ptype {
	clear:both;
}

.certifications .categories-grid span {
    font-size: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.certifications .categories-grid .categories ul li {
    list-style: none;
    margin: 20px 0;
}

.certifications .categories-grid .categories ul li a {
    display: inline-block;
    color: #60606e;
    padding: 0 10px;
    margin: 0 14px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.certifications .categories-grid .categories ul li a:hover,
.certifications .categories-grid .categories ul li a:focus {
    text-decoration: none;
}

.certifications .categories-grid .categories ul li a.active {
    background-color: #425BB5;
    padding: 0px 20px;
    color: white;
    text-decoration: none;
}

.certifications_filter {
    padding-left: 0;
}

.certifications_item {
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 30px;
}

.certifications_item .certifications_item_hover {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: #425BB5;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #333;
}

.certifications_item .certifications_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%;
    font-weight: bold;
	color: #fff;
}

.certifications_item .certifications_item_hover .item_info span {
    display: block;
    color: #fff;
    font-size: 18px;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
}

.certifications_item .certifications_item_hover .item_info em {
    font-style: normal;
    display: inline-block;
    background-color: #425BB5;
    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: 10px;
    letter-spacing: 2px;
}

.certifications_item:hover .certifications_item_hover {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.certifications_item:hover .item_info em,
.certifications_item:hover .item_info span {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
	color: #fff;
}

.certifications_item span {
	color: #fff;
}

.certifications .categories-grid .categories ul li {
    float: left;
}

.certifications .categories-grid .categories ul li a {
    padding: 0 10px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.certifications_filter {
    padding-left: 0;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.certifications-padding {
    padding: 50px 0;
}

.certifications-inner {
    padding-bottom: 0 !important;
    padding-top: 55px;
}

.modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    border: none;
}

.popup-modal {
    background: #fff;
}

.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;
}

#total_certs{ letter-spacing: 2px;  font-size: 14px;  font-weight: bold; color:#7a7a88;}

/* contact
==================================================*/

#contact {
    padding: 50px 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;
}


.social li.icons{
	overflow: hidden;
	width:50px;	
	height:50px;
	display: block;
	margin-right: 15px;
}
.social li.icons a{
	display:block;
    text-indent: 100%;
	white-space: nowrap;
	width:50px;	
	height:100px;
	Background-size: 50px 100px; transform: translate3d(0px, 0px, 0px);
}
.social li.icons a:hover{
   background-size: 50px 100px; transform: translate3d(0px, -50px, 0px);
}

.social li a.linkedin{
	background:url(../img/linkedin_logo.svg) no-repeat; 
}
.social li a.github{
	background:url(../img/github_logo.svg) no-repeat; 
}
/* .social li a.gitlab{
	background:url(../img/gitlab_logo.svg) no-repeat; 
}
.social li a.youtube{
	background:url(../img/youtube_logo.svg) no-repeat; 
}
.social li a.medium{
	background:url(../img/medium_logo.svg) no-repeat; 
}
.social li a.aws{
	background:url(../img/aws_logo.svg) no-repeat; 
} */
.social li a.pdf{
	background:url(../img/pdf_logo.svg) no-repeat; 
}

.item_info span{
	color: #fff;
}


/* Hamburguer Menu - iPhone
==================================================*/
:root{
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
	--blue: #425BB5;
} /* variables*/

.hamb-div{display:none; right:0; z-index:1; }


/* Nav menu */
.nav2{
    width: 100%;
    height: 100%;
    position: absolute;
   /*background-color: var(--black);*/

    /*background: url(../img/home-bg-sm.jpg);*/
    opacity: 0.85;
   
    overflow: hidden;
	z-index: 2;
	height: 100%;
 max-height: 0;
    transition: max-height .5s ease-out;
}



/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
padding-top: 40px;
padding-right: 30px;
padding-bottom: 40px;
padding-left: 30px;
	z-index: 2;
	position: relative;
}/* Style label tag */

.hamb-line {
    background: var(--blue);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--blue);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
	z-index: 1;
	position: relative;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
.side-menu:checked ~ .hamb-div{
    position: relative;
}


.nav2 ul{ display:block; padding: 0; height:100%;  }

    .menu a:hover{
        background-color: var(--gray);
        color: var(--white);

    }

.menu a{
    display: block;
    padding: 30px;
    /*color: var(--white);*/
	font-size: 40px;
	width: 100%;
}



    .menu li{
        float: left;
display: block;
  width: 100%;		
    }



/* Responsive media queries
==================================================*/

@media (max-width: 991px) {
    .certifications .categories-grid .categories ul li a {
        padding: 0 2px;
    }
}

@media (max-width: 768px) {
    /*.timeline-event-copy {
        width: 90%;
        left: 2em;
    }*/
}

@media (max-width: 500px) {
    /*h1 {
        font-family: 'Playfair Display', serif;
        font-size: 50px;
        line-height: 50px;
    }*/
    #home,
    .disply-table {
        /*height: 600px;*/
    }
    .about-border {
        width: 265px;
    }
    .certifications .categories-grid .categories ul li {
        list-style: none;
        margin: 10px 0;
    }
}

@media (max-width: 420px) {
    nav li {
        /*margin: 6px;*/
    }
    nav li a {
        /*font-size: 10px;*/
    }
	h3{
		/*font-size: 21px;*/
	}

	#contact .h-50 {
	  height: 20px;
	}
	.size-50{
	  font-size: 40px;
	}

}

/* iPhone */
@media (max-width: 390px) {
	/*.navbar-fixed-top{ z-index: -10 }
	.navbar-fixed-top nav{ display: none; }
	.hamb-div{display:block; height: 100%;}*/

	.navbar-fixed-top{
		height: 110px;
	}
	.scroll-down-image {
		/*left: 40%;*/
		 margin-top: -185px;
	}

	.table-cell {
		display: block;
		margin-top: 60%;
	}

	#nt h1{
        font-size: 45px;
    }


	#about {
	  padding-top: 30px;
	  padding-bottom: 70px;
	}
	#about .h-50 {
	  height: 20px;
	}
	.about-border{
		height: 400px;
		left: 45px;
	}
	.about-img-div img {
	  height: 485px;
	}

	#experience {
		padding-bottom: 50px;
	}
	.timeline {
	  position: static;
	}
	.timeline-event-icon {
		left: 0.7em;
	}
	#experience h1 {
	  float: none;
	  margin-bottom: 40px;
	}
	.right {
		position: relative;
		left: 55px;
		margin-bottom: 50px;
	}
	.timeline-event-copy {
		left: .7em;
		padding-top: 2em;
		padding-right: 2em;
		padding-bottom: 2em;
		padding-left: 1.9em;
	}
	.timeline-event-copy h3 {
	  font-size: 1.7em;
	}
	.timeline::before {
		margin-left: -4px;
	}
	.ptype h4::before{
		width: 20px;
	}
	.ptype h4{
		letter-spacing:0
	}

	.testimonial {
		padding-right: 25px;
		padding-left: 25px;
	}
	.testimonial .description {
		font-size: 12px;
	}
	#testimonial-slider{
		height: auto;
	}

	
	.border-right {
	  border-right: 0px;
	}

	#skills {
	  padding-bottom: 0px;
	}
	#skills .size-50{
	  font-size: 35px;
	}
	.skills_div{
		top: -5.875em;
	}
	.box-te {
	  height: auto;
	  padding-bottom: 20px;
	}
	.box-te-sm{
		border-bottom: 1px dashed #425BB5 !important;
	}
	
	#certifications {
		padding-bottom:25px;
	}
	.certifications .categories-grid .categories ul li a {
		margin: 0 6px;
	}
	
	.certifications-inner {
	  padding-top: 15px;
	}
	
	#contact .h-50 {
	  height: 0px;
	}
	.size-50{
	  font-size: 40px;
	}
	#contact h3 {
		font-size: 20px;
	}

	.social li.icons{
		width: 45px;
	}
	
	.social li.icons a{
		text-indent: 400%;
		width: 30px;
	}
	.social li.icons {
		margin-right: 0px;
		height: 30px;
		margin-bottom: 25px;
	}
	.social li.icons a:hover{
	   /*width height */
	   background-size: 30px 100px; transform: translate3d(0px, -50px, 0px);
	}

	.copyright{
		font-size:13px;
	}
	
}