body
{
  margin: 0;
  padding: 0;
  font-family:  sans-serif;
}
/*-------------Header Css ------------*/
#header
{
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6),rgba(0, 0, 0, 0.6)),url(img/background.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.user-box
{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.user-box img
{
  border-radius: 50%;
  width: 260px;
  border: 4px solid #696969;
}
.user-box h1
{
  color: #fff;
  font-weight: bold;
  margin: 10px;

}
.user-box p
{
  color: #fff;
  font-size: 22px;
}

.scroll-btn
{
  bottom: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #fff;
  padding: 10px 10px 20px;
  border-radius: 30px
}

.scroll-bar span
{
  border: 2px solid #fff;
  font-size: 10px;
  border-radius: 30px;
}

.scroll-bar
{
  animation: mover 1s infinite alternate;
}
@keyframes mover
{
  0%{transform: translateY(0);}
  100%{transform: translateY(10px);}
}

/*--------------------About----------------------------*/
.about
{
  padding-top: 100px;
  padding-bottom: 190px;
  margin-bottom: -130px;
  background: #0c8f;

}
.profile-img
{
  height: 600px;
}
.nav-bar
{
  top: 0;
  position: sticky;
  z-index: 2;
}
.navbar
{
  background-color: #000;
}
.navbar-brand img
{
  height: 50px;
  float: left;

}
.nav-bar .fa-bars
{
  font-size: 35px;
  color: #fff;
}
.navbar-toggler
{
  outline: none !important;
}
.navbar-nav
{
  float: right;
  text-align: right;
}
.nav-link
{
  color: #fff !important;
}
/*--
.col-md-6 p
{
  font-family: monospace;
  font-size: 16px;
  text-align: justify;
}
--*/
/*--------------------Resume----------------------------*/

.resume
{
  margin-top: -66px;
  padding-top: 50px;
  padding-bottom: 30px;
  background: #FF9000;

}
.resume h3
{
  margin-bottom: 50px;
  font-size: 30px;
  font-family: monospace;
  color: #fff;
}
.timeline
{
  list-style-type: none;
  position: relative;
}
/*----------Timeline line--------*/
.timeline:before
{
  content: '';
  background: #fff;
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 2px;
  height: 100%;
  z-index: 1;
}
/*----------Timeline box--------*/
.timeline li
{
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  background: #FF9000;
  font-family: monospace;

}

/*----------Timeline Title --------*/
.timeline li h4
{
  background-color: #000;
  padding: 5px 0 5px 20px;
  color: #fff;
  font-size: 15px;

}
.timeline li h4 span
{
  font-weight: bold;
  color: #fff;

}

.timeline li p
{
  color: #fff

}

.timeline li:before
{
  content: '';
  background: #fff;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #000;
  left: 20px;
  width: 20px;
  height: 20px;
  z-index: 1;
}
/*--------------------badges----------------------------*/

.badges
{
  padding-top: 50px;
  padding-bottom: 50px;
}
.badges img
{
  align-items: center;
  border-radius: 5%;
  width: 250px;
  border: 2px solid #6caed5;

}
.badges h1
{
  margin-bottom: 15px;
  font-family: monospace;

}
.badges-box
{
  background: #f9f9f9;
  padding: 10px;
  margin-top: 20px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;

}
.badges-box .fa
{
  margin: 0 10px;
  font-size: 20px;
}
.badges-box .fab
{
  margin: 0 10px;
  font-size: 20px;
}
.badges-box span
{
  margin: 3px;
  font-size: 14px;
  font-weight: bold;

}
.badges-box p
{
  font-size: 15px;
  margin-top: 20px;
  color: #777;
}
.badges-box:hover
{
  background: #FF9000;
  color: #fff;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: 1s;
}
.badges-box:hover p
{
  color: #fff;
}
/*--------------------Licenses & Certifications----------------------------*/

.certification
{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #FF9000;
}
.certification img
{
  align-items: center;
  border-radius: 5%;
  width: 250px;
  border: 2px solid #6caed5;

}
.certification h1
{
  margin-bottom: 15px;
  font-family: monospace;
}
.certification-box
{
  background: #FF9000;
  padding: 10px;
  margin-top: 20px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;

}
.certification-box .fa
{
  margin: 0 10px;
  font-size: 20px;
}
.certification-box .fab
{
  margin: 0 15px;
  font-size: 20px;
}
.certification-box span
{
  margin: 3px;
  font-size: 15px;
  font-weight: bold;
}
.certification-box p
{
  font-size: 15px;
  margin-top: 20px;
  color: #777;
}
.certification-box:hover
{
  background: #0c28f;
  color: #fff;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: 1s;
}
.certification-box:hover p
{
  color: #fff;
}
/*--------------------Services----------------------------*/

.services
{
  padding-top: 50px;
  padding-bottom: 50px;
}
.services h1
{
  margin-bottom: 15px;
}
.services-box
{
  background: #f9f9f9;
  padding: 10px;
  margin-top: 20px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;

}
.services-box .fa
{
  margin: 0 10px;
  font-size: 20px;
}
.services-box span
{
  margin: 3px;
  font-size: 20px;
  font-weight: bold;
}
.services-box p
{
  font-size: 15px;
  margin-top: 20px;
  color: #777;
}
.services-box:hover
{
  background: #000;
  color: #fff;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: 1s;
}
.services-box:hover p
{
  color: #fff;
}

/*--------------------Contact----------------------------*/
.contact
{
  padding-top: 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)),url(img/footer.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.contact .row
{
  padding: 15px 0;
  font-size: 22px;
}
.contact .col-md-4 .fa
{
  padding: 10px;
  font-size: 30px;
}
.contact .btn
{
  padding: 10px 25px 10px 25px;
  margin: 5px;
  border-radius: 30px;
  border: 2px solid #fff;
  background: transparent;
}
.contact .btn:focus
{
  box-shadow: none !important;
}
.contact .btn:hover
{
  border: 2px solid #000 !important;
  background: #000 !important;
  transition: 0.6s;
}
.contact .btn .fa
{
  margin-right: 10px;
}
.footer
{
  background: #000;
  height: 50px;
  margin-top: 50px;
  color: #fff;
  padding-top: 10px;
}
.fa-heart-o
{
  color: red;
}
/*----------------Social Icons--------------------------*/
/*
.social-icons
{
  top: 50%;
  transform: translateY(-50%);
  position: sticky;
  z-index: 1;
  width: 80px;
}
.social-icons ul
{
  padding: initial;
}
.social-icons ul li
{
  height: 40px;
  width: 40px;
  list-style-type: none;
  padding-left: 12px;
  padding-top: 6px;
  margin-top: 5px;
  color: #fff;
  background: #000;
}
.social-icons ul li:hover
{
  padding-left: 30px;
  width: 80px;
  transition: 1s;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)}
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}
